forked from decaporg/decap-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
feature/processing and duplicate #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Collaborator
dfdez
commented
May 16, 2025
- feat(nested collections): allow non-index files (feat(nested collections): allow non-index files decaporg/decap-cms#7359)
- fix(markdown): convert inline CSS from Google Docs to Markdown (fix(markdown): convert inline CSS from Google Docs to Markdown decaporg/decap-cms#7351)
- feat: visual editing (click-to-edit) (feat: visual editing (click-to-edit) decaporg/decap-cms#7374)
- fix(widgetsFor): return widgets for variable type lists (fix(widgetsFor): return widgets for variable type lists decaporg/decap-cms#7296)
- chore(release): publish
- fix(ObjectControl): hotfix nested object validation (fix(ObjectControl): hotfix nested object validation decaporg/decap-cms#7385)
- chore(release): publish
- chore: update to upload-artifact@v4 (chore: update to upload-artifact@v4 decaporg/decap-cms#7388)
- feat(nested collections) legacy mode (feat(nested collections) legacy mode decaporg/decap-cms#7387)
- chore(release): publish
- fix(nested-i18n): pass newPath only when customPath differs from current path (Fix: nested + i18n customPath issue decaporg/decap-cms#7418)
- feat: processing wip
- feat: processing wip
- feat: added validation nested fix
- wip
- feat: custom context wip
- feat: custom context wip
- feat: custom context wip
- feat: custom context final
- fix: fixed Listcontrol ref
- fix: fixed search fzf
* feat(nested collections): allow non-index files This commit fixes decaporg#4972 to allow nested folders with additional content beyond an index file. Side effect: To keep the feature simple, this will now show index files as pages within a folder in NetlifyCMS. This enables creating additional files alongside the given index, but is a change in behavior from the current implementation. Co-authored-by: Eric Gade <[email protected]> * test(e2e): adapt to new way nested collections work We use regexps as otherwise .contains("Sub Directory") would also match "Another Sub Directory" --------- Co-authored-by: Andrew Dunkman <[email protected]> Co-authored-by: Eric Gade <[email protected]> Co-authored-by: Anze Demsar <[email protected]>
…org#7351) Extends the HTML to Markdown conversion to better support bold and italic formatting from Google Docs, which generates inline styles on a `span` element instead of strong/b/em/i type elements. Co-authored-by: Anze Demsar <[email protected]>
* refactor: clean up controlRef handling * feat: add click-to-edit * test: update snapshots --------- Co-authored-by: Anze Demsar <[email protected]>
When using a Variable Type list widget and a custom preview component, the `widgetsFor` helper would only return a `data` list with each of the items in the list, not a `widgets` list, e.g. {"data" => {"markdown" => "# Title"} {"type" => "block_body"} } {"widgets" => undefined} 🚫 The `widgets` list should also be supplied, particularly for nested Markdown widgets, so a fully formatted preview can be rendered: {"data" => {"markdown" => "# Title"} {"type" => "block_body"} } {"widgets" => {"markdown" => Object} ✅ } This extends support in `widgetsFor` to detect variable type list widgets and correctly construct the `widgets` return value. As reported at decaporg#2307 (comment) Co-authored-by: Anze Demsar <[email protected]>
* feat(nested-collections): opt-in to legacy nested folder behaviour * style: lint * feat(nested-collection): default subfolders to true * test(nested-collections): keep the tests in the subfolders: false scenario
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.