@sveltia/cms 0.122.2 → 0.124.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -22
- package/dist/sveltia-cms.js +230 -231
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +230 -231
- package/dist/sveltia-cms.mjs.map +1 -1
- package/main.d.ts +15 -14
- package/package.json +1 -1
- package/schema/sveltia-cms.json +1 -1
- package/types/public.d.ts +62 -43
package/README.md
CHANGED
|
@@ -43,6 +43,7 @@ This free, open source successor to Netlify/Decap CMS is currently in public bet
|
|
|
43
43
|
- [Better asset management](#better-asset-management)
|
|
44
44
|
- [Better customization](#better-customization)
|
|
45
45
|
- [Better localization](#better-localization)
|
|
46
|
+
- [Better documentation](#better-documentation)
|
|
46
47
|
- [Compatibility](#compatibility)
|
|
47
48
|
- [Current limitations](#current-limitations)
|
|
48
49
|
- [Features not to be implemented](#features-not-to-be-implemented)
|
|
@@ -125,17 +126,17 @@ Due to its unfortunate abandonment in early 2022, Netlify CMS spawned 3 successo
|
|
|
125
126
|
- ❌ Discontinued in September 2024 after making meaningful improvements
|
|
126
127
|
- **Sveltia CMS**: not a fork but a **complete rewrite**
|
|
127
128
|
- Started in November 2022, first appeared on GitHub in March 2023
|
|
128
|
-
- ✅ Relevant issues are being resolved regardless of their age or status
|
|
129
129
|
- ✅ Actively developed with frequent releases and numerous improvements
|
|
130
|
-
- ✅
|
|
131
|
-
- ✅
|
|
130
|
+
- ✅ Relevant issues are being resolved regardless of their age or status
|
|
131
|
+
- ✅ Most of new bug reports are addressed promptly, usually within a day
|
|
132
|
+
- ✅ An [extensive roadmap](#roadmap) is available to keep users informed
|
|
132
133
|
- ✅ No known unpatched security vulnerabilities, with dependencies kept up-to-date
|
|
133
134
|
- [Decap CMS](https://github.com/decaporg/decap-cms): a rebranded version
|
|
134
135
|
- [Announced in February 2023](https://www.netlify.com/blog/netlify-cms-to-become-decap-cms/) as an official continuation with a Netlify agency partner taking ownership
|
|
135
|
-
- ⚠️ Seemingly random issues were closed as stale following the takeover
|
|
136
136
|
- ⚠️ Mostly low activity with only occasional releases and a few minor improvements
|
|
137
|
+
- ⚠️ Seemingly random issues were closed as stale following the takeover
|
|
137
138
|
- ⚠️ Bug reports continue to pile up, often without any response
|
|
138
|
-
- ⚠️ No roadmap
|
|
139
|
+
- ⚠️ No public roadmap is available, leaving users in the dark
|
|
139
140
|
- ❌ A moderate severity [XSS vulnerability](https://github.com/advisories/GHSA-xp8g-32qh-mv28), high severity dependency vulnerabilities and fatal crashes remain unaddressed
|
|
140
141
|
|
|
141
142
|
Sveltia CMS is the only project that doesn’t inherit the complexity, technical debt, and numerous bugs of Netlify CMS, which was launched in 2015. Our product is **better by design**:
|
|
@@ -146,12 +147,11 @@ Sveltia CMS is the only project that doesn’t inherit the complexity, technical
|
|
|
146
147
|
- We closely monitor and analyze the predecessor’s issue tracker
|
|
147
148
|
- We rearchitect the entire user experience (UX) and developer experience (DX)
|
|
148
149
|
|
|
149
|
-
This “total reboot” has enabled us to implement hundreds of improvements without getting stuck in a legacy system.
|
|
150
|
+
This “total reboot” has enabled us to implement hundreds of improvements without getting stuck in a legacy system. Furthermore:
|
|
150
151
|
|
|
151
152
|
- We dedicate significant time and effort to modernizing the platform
|
|
152
153
|
- We continue to address [issues](https://github.com/decaporg/decap-cms/issues) reported in the predecessor’s repository
|
|
153
154
|
- We materialize the enhancements that Netlify CMS users have long desired
|
|
154
|
-
- We deliver [regular updates](https://github.com/sveltia/sveltia-cms/releases) and [clear goals](#roadmap)
|
|
155
155
|
|
|
156
156
|
For that reason, Sveltia CMS is the **true successor to Netlify CMS** — not just a spiritual successor or a mere alternative — and the best choice for users looking to migrate from the predecessor, other successors, or even other CMS solutions.
|
|
157
157
|
|
|
@@ -173,7 +173,6 @@ While we fix reported bugs as quickly as possible, usually within 24 hours, our
|
|
|
173
173
|
- The vast majority of existing configurations work out of the box
|
|
174
174
|
- It works as a drop-in replacement for most use cases
|
|
175
175
|
- Some missing features will be implemented before or shortly after GA
|
|
176
|
-
- Providing partial [compatibility with Static CMS](#compatibility-with-static-cms)
|
|
177
176
|
- Tackling as many [Netlify/Decap CMS issues](https://github.com/decaporg/decap-cms/issues) as possible
|
|
178
177
|
- So far, **275+ issues, or 595+ if including duplicates, have been effectively solved** in Sveltia CMS (Yes, you read it right)
|
|
179
178
|
- Target:
|
|
@@ -189,7 +188,7 @@ While we fix reported bugs as quickly as possible, usually within 24 hours, our
|
|
|
189
188
|
- The remaining bugs are mostly related to [unimplemented features](#current-limitations)
|
|
190
189
|
- Many of their [top-voted features](https://github.com/decaporg/decap-cms/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc) are [on our table](#roadmap) or already implemented in Sveltia CMS
|
|
191
190
|
- Solving [our own issues](https://github.com/sveltia/sveltia-cms/issues)
|
|
192
|
-
- Preparing
|
|
191
|
+
- Preparing top-notch [documentation](https://github.com/sveltia/sveltia-cms/issues/485)
|
|
193
192
|
- Implementing our own enhancement ideas for every part of the product
|
|
194
193
|
|
|
195
194
|
<br>
|
|
@@ -294,12 +293,11 @@ We’ve made various improvements to help you get your work done faster and more
|
|
|
294
293
|
|
|
295
294
|
### Better configuration
|
|
296
295
|
|
|
297
|
-
- We provide comprehensive [compatibility information](#compatibility) to help you avoid unsupported options and configurations that might cause errors. By contrast, the Netlify/Decap CMS documentation does not mention the deprecation of camel case options, the removal of the Date widget and the replacement of Moment.js.
|
|
298
296
|
- Sveltia CMS supports a [JSON configuration file](#providing-a-json-configuration-file) that can be generated for bulk or complex collections.[^60] A [TOML configuration file](#providing-a-toml-configuration-file) is also supported.
|
|
299
297
|
- Also supports [multiple configuration files](#providing-multiple-configuration-files) to allow developers to modularize the configuration.[^197]
|
|
300
298
|
- We provide an [up-to-date JSON schema](#enabling-autocomplete-and-validation-for-the-configuration-file) for YAML/JSON configuration files, which enables autocomplete and validation in VS Code and other editors.[^253] If you use [deprecated options](#deprecations) in a supported code editor, you should receive a warning.
|
|
301
299
|
- Improved TypeScript support:
|
|
302
|
-
- We keep our type definitions for `CMS.init()` and other methods complete, accurate, up-to-date and annotated.[^190][^191][^192][^193][^227] This makes it easier to provide a
|
|
300
|
+
- We keep our type definitions for `CMS.init()` and other methods complete, accurate, up-to-date and annotated.[^190][^191][^192][^193][^227] This makes it easier to provide a config object when [manually initializing](https://decapcms.org/docs/manual-initialization/) the CMS.
|
|
303
301
|
- Config validation enhancements:
|
|
304
302
|
- Sveltia CMS has additional validation rules designed to prevent common misconfigurations that could lead to runtime errors:
|
|
305
303
|
- Common backend misconfigurations, such as an incorrect repository name or a missing OAuth client ID[^303]
|
|
@@ -354,7 +352,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
354
352
|
- The List and Object widgets support the `i18n: duplicate` field configuration so that changes made with these widgets are duplicated between locales.[^7][^68] The `i18n` configuration can normally be used for the subfields.
|
|
355
353
|
- Gives more control over [entry file paths](#controlling-entry-file-paths):
|
|
356
354
|
- The new `multiple_folders_i18n_root` i18n structure allows to have locale folders below the project root: `/<locale>/<folder>/<path>.<extension>`.[^182]
|
|
357
|
-
- The new `omit_default_locale_from_filename` i18n option allows to exclude the default locale from filenames. This option applies to
|
|
355
|
+
- The new `omit_default_locale_from_filename` i18n option allows to exclude the default locale from filenames. This option applies to folder collections with the `multiple_files` i18n structure enabled, as well as to file collection items with the `file` path ending with `.{{locale}}.<extension>`, aiming to support [Zola’s multilingual sites](https://www.getzola.org/documentation/content/multilingual/). ([Discussion](https://github.com/sveltia/sveltia-cms/discussions/394))
|
|
358
356
|
- [Entry-relative media folders](https://decapcms.org/docs/collection-folder/#media-and-public-folder) can be used in conjunction with the `multiple_folders` i18n structure.[^21]
|
|
359
357
|
- Entry slug enhancements:
|
|
360
358
|
- It’s possible to [use a random UUID for an entry slug](#using-a-random-id-for-an-entry-slug), which is a good option for locales that write in non-Latin characters.
|
|
@@ -414,6 +412,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
414
412
|
- Sveltia CMS supports [singletons](#using-singletons), a simple form of a file collection.[^233]
|
|
415
413
|
- File collections support files without extensions.[^255] This is useful for [editing site deployment configuration files](#editing-site-deployment-configuration-files), such as `_headers` and `_redirects`.
|
|
416
414
|
- Each file in a file collection has the `format` and `frontmatter_delimiter` options, which can be used to specify the file format, making it possible to have `yaml-frontmatter`, `toml-frontmatter` and `json-frontmatter` side by side.[^218]
|
|
415
|
+
- The `create` option for folder collections defaults to `true`, providing a better out-of-the-box experience.
|
|
417
416
|
- The collection `label` defaults to the `name` value according to the [Decap CMS document](https://decapcms.org/docs/configuration-options/#collections), while Netlify/Decap CMS actually throws a configuration error if the `label` option is omitted.
|
|
418
417
|
- Nested fields (dot notation) can be used in the `path` option for a folder collection, e.g. `{{fields.state.name}}/{{slug}}`.[^62]
|
|
419
418
|
- Markdown is supported in the `description` collection option.[^79] Bold, italic, strikethrough, code and links are allowed.
|
|
@@ -625,6 +624,8 @@ Sveltia CMS supports all the [built-in widgets](https://decapcms.org/docs/widget
|
|
|
625
624
|
- KeyValue (Dictionary)
|
|
626
625
|
- The new `keyvalue` widget allows users to add arbitrary key-value string pairs to a field.[^123]
|
|
627
626
|
- While the implementation is compatible with [Static CMS](https://staticjscms.netlify.app/docs/widget-keyvalue), we provide a more intuitive UI. You can press Enter to move focus or add a new row while editing, and the preview is displayed in a clean table.
|
|
627
|
+
- RichText
|
|
628
|
+
- Currently, the `richtext` widget is a simple alias of `markdown`. We plan to add HTML output support in the future.
|
|
628
629
|
- UUID
|
|
629
630
|
- In addition to [generating UUIDs for entry slugs](#using-a-random-id-for-an-entry-slug), Sveltia CMS supports the proposed `uuid` widget with the following properties:[^12]
|
|
630
631
|
- `prefix`: A string to be prepended to the value. Default: an empty string.
|
|
@@ -684,6 +685,8 @@ Sveltia CMS supports all the [built-in widgets](https://decapcms.org/docs/widget
|
|
|
684
685
|
- Enhancements to [event hooks](https://decapcms.org/docs/registering-events/):
|
|
685
686
|
- Missing `identifier_field` won’t cause an error when the `preSave` hook is triggered.[^306]
|
|
686
687
|
<!-- - Content can be modified in the `prePublish` hook (once we support editorial workflow).[^307] -->
|
|
688
|
+
- Enhancements to custom field types (widgets):
|
|
689
|
+
- The API method has been renamed from `CMS.registerWidget()` to `CMS.registerFieldType()` for better clarity, while keeping the old name for backward compatibility.[^314]
|
|
687
690
|
- Async functions can be used for [custom parsers/formatters](https://decapcms.org/docs/custom-formatters/).[^149]
|
|
688
691
|
- The application renders within the dimensions of a [custom mount element](https://decapcms.org/docs/custom-mounting/), if exists.[^109]
|
|
689
692
|
|
|
@@ -694,6 +697,10 @@ Sveltia CMS supports all the [built-in widgets](https://decapcms.org/docs/widget
|
|
|
694
697
|
- The List widget’s `label` and `label_singular` are not converted to lowercase, which is especially problematic in German, where all nouns are capitalized.[^98]
|
|
695
698
|
- Long menu item labels, especially in non-English locales, don’t overflow the dropdown container.[^117][^265]
|
|
696
699
|
|
|
700
|
+
### Better documentation
|
|
701
|
+
|
|
702
|
+
- Our [compatibility information](#compatibility) to help you avoid unsupported options and configurations that might cause errors. By contrast, the Netlify/Decap CMS documentation does not mention anything about the deprecation of camel case options, the removal of the Date widget and the replacement of Moment.js. Furthermore, the [Decap blog](https://decapcms.org/blog/decap-3/) claims that Decap CMS 3.0 is ”fully backward compatible” even though it removed the Date widget.
|
|
703
|
+
|
|
697
704
|
## Compatibility
|
|
698
705
|
|
|
699
706
|
We are working to make Sveltia CMS compatible with Netlify/Decap CMS wherever possible so that more users can seamlessly switch to our modern successor. In some casual use cases, Sveltia CMS can be used as a drop-in replacement for Netlify/Decap CMS with [just a one-line code update](#migration).
|
|
@@ -708,7 +715,7 @@ We are working hard to implement several missing features from Netlify/Decap CMS
|
|
|
708
715
|
- Preview for [custom editor components](https://decapcms.org/docs/custom-widgets/#registereditorcomponent) (`CMS.registerEditorComponent`)
|
|
709
716
|
- [Custom widgets](https://decapcms.org/docs/custom-widgets/) (`CMS.registerWidget`)
|
|
710
717
|
- [Custom preview templates](https://decapcms.org/docs/customization/#registerpreviewtemplate) (`CMS.registerPreviewTemplate`) ([#51](https://github.com/sveltia/sveltia-cms/issues/51))
|
|
711
|
-
- [Documentation](https://github.com/sveltia/sveltia-cms/issues/485) and
|
|
718
|
+
- [Documentation](https://github.com/sveltia/sveltia-cms/issues/485) and config validation are under development.
|
|
712
719
|
- [Localization](https://github.com/sveltia/sveltia-cms/blob/main/src/lib/locales/README.md) and a [demo site](https://github.com/sveltia/sveltia-cms/issues/1) will follow soon.
|
|
713
720
|
- Due to the complexity, we have decided to **defer the following features to the 1.x or 2.0 release** due mid-2026. Netlify/Decap CMS has dozens of open issues with these collaboration and beta features — we want to implement them the right way.
|
|
714
721
|
- [Editorial workflow](https://decapcms.org/docs/editorial-workflows/)
|
|
@@ -720,7 +727,7 @@ We are working hard to implement several missing features from Netlify/Decap CMS
|
|
|
720
727
|
The following Netlify/Decap CMS features will not be added to Sveltia CMS, primarily due to considerations relating to their deprecation.
|
|
721
728
|
|
|
722
729
|
- **Azure and Bitbucket backends**: For performance reasons. We’ll support these platforms if their APIs improve to allow the CMS to fetch multiple entries at once.
|
|
723
|
-
- **Git Gateway backend**: Git Gateway is now [deprecated](https://docs.netlify.com/manage/security/secure-access-to-sites/git-gateway/) by Netlify. Like the Azure and Bitbucket backends, it also has performance issues. We plan to develop a GraphQL-based high-performance alternative [in the future](#roadmap) to provide a migration path for existing Git Gateway users.
|
|
730
|
+
- **Git Gateway backend**: Git Gateway is now officially [deprecated](https://docs.netlify.com/manage/security/secure-access-to-sites/git-gateway/) by Netlify. Like the Azure and Bitbucket backends, it also has performance issues. We plan to develop a GraphQL-based high-performance alternative [in the future](#roadmap) to provide a migration path for existing Git Gateway users.
|
|
724
731
|
- **Netlify Identity Widget**: It’s not useful without Git Gateway, and the Netlify Identity service itself is now [deprecated](https://www.netlify.com/changelog/deprecation-netlify-identity/). We plan to develop an alternative solution with role support [in the future](#roadmap), most likely using [Cloudflare Workers](https://workers.cloudflare.com/) and [Auth.js](https://authjs.dev/).
|
|
725
732
|
- [Gatsby plugin](https://github.com/decaporg/gatsby-plugin-decap-cms): In light of Gatsby’s [uncertainty](https://github.com/gatsbyjs/gatsby/discussions/39062), we won’t be investing time in developing a plugin for it. Gatsby users can still create `index.html` themselves. Note: We don’t support Netlify Identity Widget; the favicon can be specified with the `logo.src` option.
|
|
726
733
|
- The deprecated client-side implicit grant for the GitLab backend: It has already been [removed from GitLab 15.0](https://gitlab.com/gitlab-org/gitlab/-/issues/344609). Use the client-side PKCE authorization instead.
|
|
@@ -757,6 +764,7 @@ There are some differences in behaviour between Sveltia CMS and Netlify/Decap CM
|
|
|
757
764
|
- In some cases, the [data output](#better-data-output) of Sveltia CMS may differ from that of Netlify/Decap CMS. Notably, Sveltia CMS does not omit empty optional fields by default. If you have data validation in your site generator, this could cause issues. Use the `omit_empty_optional_fields` [output option](#controlling-data-output) if needed.
|
|
758
765
|
- Sveltia CMS requires a [secure context](https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts), meaning it only works with HTTPS, `localhost` or `127.0.0.1` URLs. If you’re running your own remote server and serving content over HTTP, the CMS will not work. We recommend obtaining a TLS certificate from [Let’s Encrypt](https://letsencrypt.org/).
|
|
759
766
|
- As of [Sveltia CMS 0.105.0](https://github.com/sveltia/sveltia-cms/releases/tag/v0.105.0), the `sanitize_preview` option for the [Markdown](https://decapcms.org/docs/widgets/#Markdown) widget is set to `true` by default to prevent potential XSS attacks via entry previews. We recommend keeping this option enabled unless disabling it fixes a broken preview and you fully trust all users of your CMS.
|
|
767
|
+
- As of [Sveltia CMS 0.123.0](https://github.com/sveltia/sveltia-cms/releases/tag/v0.123.0), the `create` option for folder collections defaults to `true` because, in 99.99% of cases, users want to create new entries and adding `create: true` to every collection is redundant. To disable entry creation, set `create: false` explicitly.
|
|
760
768
|
|
|
761
769
|
There may be other minor differences in behaviour that are not listed here.
|
|
762
770
|
|
|
@@ -830,13 +838,14 @@ Currently, Sveltia CMS is primarily intended for existing Netlify/Decap CMS user
|
|
|
830
838
|
Or try one of the starter kits for popular frameworks created by community:
|
|
831
839
|
|
|
832
840
|
- Astro
|
|
833
|
-
- [
|
|
841
|
+
- [Astros](https://github.com/zankhq/astros) by [@zanhk](https://github.com/zanhk)
|
|
834
842
|
- [Astro i18n Starter](https://github.com/yacosta738/astro-cms) by [@yacosta738](https://github.com/yacosta738)
|
|
835
843
|
- Eleventy (11ty)
|
|
836
844
|
- [Eleventy starter template](https://github.com/danurbanowicz/eleventy-sveltia-cms-starter) by [@danurbanowicz](https://github.com/danurbanowicz)
|
|
845
|
+
- [ZeroPoint](https://getzeropoint.com/) by [@MWDelaney](https://github.com/MWDelaney)
|
|
837
846
|
- Hugo
|
|
838
847
|
- [Hugo module](https://github.com/privatemaker/headless-cms) by [@privatemaker](https://github.com/privatemaker)
|
|
839
|
-
- [
|
|
848
|
+
- [Hugolify](https://www.hugolify.io/) by [@sebousan](https://github.com/sebousan)
|
|
840
849
|
|
|
841
850
|
The Netlify/Decap CMS website has more [templates](https://decapcms.org/docs/start-with-a-template/) and [examples](https://decapcms.org/docs/examples/). You can probably use one of them and switch to Sveltia CMS. (Note: These third-party resources are not necessarily reviewed by the Sveltia CMS team.)
|
|
842
851
|
|
|
@@ -2020,7 +2029,7 @@ Due early 2026
|
|
|
2020
2029
|
- Enhanced [compatibility with Netlify/Decap CMS](#compatibility)
|
|
2021
2030
|
- Tackling some more Netlify/Decap CMS issues:
|
|
2022
2031
|
- PKCE for GitHub[^285] — It’s [not yet supported](https://github.com/orgs/community/discussions/15752) by GitHub but is [planned for Q4 2025](https://github.com/github/roadmap/issues/1153)
|
|
2023
|
-
- Thorough
|
|
2032
|
+
- Thorough config validation[^246]
|
|
2024
2033
|
- [Entry pre-validation/normalization](https://github.com/sveltia/sveltia-cms/issues/395)[^248]
|
|
2025
2034
|
- Accessibility audit
|
|
2026
2035
|
- [Localization](https://github.com/sveltia/sveltia-cms/blob/main/src/lib/locales/README.md)
|
|
@@ -2050,7 +2059,6 @@ Due late 2026
|
|
|
2050
2059
|
- User management (Netlify Identity alternative) with roles[^23]
|
|
2051
2060
|
- Commits without a Git service account (Git Gateway alternative)
|
|
2052
2061
|
- more enhancements are planned for the future; see the TBD list below
|
|
2053
|
-
- End-user documentation
|
|
2054
2062
|
- Contributor documentation
|
|
2055
2063
|
|
|
2056
2064
|
### TBD
|
|
@@ -2058,7 +2066,7 @@ Due late 2026
|
|
|
2058
2066
|
- Tackling the remaining relevant Netlify/Decap CMS issues (some may be included in v2.0 or v3.0):
|
|
2059
2067
|
- Their [top-voted features](https://github.com/decaporg/decap-cms/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc), including:
|
|
2060
2068
|
- MDX support[^122]
|
|
2061
|
-
- [
|
|
2069
|
+
- [Preview Workflow](https://github.com/sveltia/sveltia-cms/discussions/440)[^261]
|
|
2062
2070
|
- [Tables in Markdown](https://github.com/sveltia/sveltia-cms/issues/455)[^256]
|
|
2063
2071
|
- [Config editor](https://github.com/sveltia/sveltia-cms/discussions/452)[^10]
|
|
2064
2072
|
- [Theming](https://github.com/sveltia/sveltia-cms/issues/29)[^262]
|
|
@@ -2068,7 +2076,6 @@ Due late 2026
|
|
|
2068
2076
|
- Advanced Relation fields[^242]
|
|
2069
2077
|
- Cascade updates/deletes[^243]
|
|
2070
2078
|
- [Quick item additions](https://github.com/sveltia/sveltia-cms/issues/493)[^266]
|
|
2071
|
-
- [Reverse reference lists](https://github.com/sveltia/sveltia-cms/discussions/416)
|
|
2072
2079
|
- Autoincrement fields[^286]
|
|
2073
2080
|
- Unique constraints[^287]
|
|
2074
2081
|
- Data integrity checks
|
|
@@ -2081,13 +2088,25 @@ Due late 2026
|
|
|
2081
2088
|
- Proxy for services that don’t support [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS):
|
|
2082
2089
|
- [DeepL Translate](https://github.com/sveltia/sveltia-cms/issues/437)
|
|
2083
2090
|
- [Git LFS support for GitHub](https://github.com/sveltia/sveltia-cms/discussions/353)[^244]
|
|
2091
|
+
- Content editor enhancements:
|
|
2092
|
+
- Field navigator
|
|
2093
|
+
- Sidebar
|
|
2094
|
+
- View, compare and restore revisions (like [WordPress](https://wordpress.com/support/page-post-revisions/))
|
|
2095
|
+
- [Reverse reference lists](https://github.com/sveltia/sveltia-cms/discussions/416)
|
|
2096
|
+
- Validation errors
|
|
2097
|
+
- Input UI improvements
|
|
2098
|
+
- Slider input for number fields
|
|
2099
|
+
- Custom color picker
|
|
2100
|
+
- Custom date/time picker
|
|
2101
|
+
- Image field enhancements:
|
|
2102
|
+
- Camera input, screen capture, QR code generation, AI image generation, etc.
|
|
2103
|
+
- Quick cropping and resizing
|
|
2084
2104
|
- Search enhancements:
|
|
2085
2105
|
- Customizable search fields[^274]
|
|
2086
2106
|
- Advanced search options
|
|
2087
2107
|
- [Fuzzy search](https://www.fusejs.io/)
|
|
2088
2108
|
- [Local repository workflow](#working-with-a-local-git-repository) improvements: Git mode[^131] and change detection
|
|
2089
2109
|
- [Preact+HTM](https://github.com/sveltia/sveltia-cms/discussions/153) or Vue support for custom widgets, editor components and preview templates[^289]
|
|
2090
|
-
- View, compare and restore revisions (like [WordPress](https://wordpress.com/support/page-post-revisions/))
|
|
2091
2110
|
- More integration options: stock photos, stock videos, cloud storage providers, translation services, maps, analytics tools, etc.
|
|
2092
2111
|
- More AI features for image generation, content writing, etc.
|
|
2093
2112
|
- Advanced digital asset management (DAM) features, including image editing and tagging[^114]
|
|
@@ -2341,7 +2360,7 @@ This project would not have been possible without the open source Netlify CMS pr
|
|
|
2341
2360
|
|
|
2342
2361
|
[^106]: Netlify/Decap CMS [#2822](https://github.com/decaporg/decap-cms/issues/2822)
|
|
2343
2362
|
|
|
2344
|
-
[^107]: Netlify/Decap CMS [#332](https://github.com/decaporg/decap-cms/issues/332), [#683](https://github.com/decaporg/decap-cms/issues/683), [#999](https://github.com/decaporg/decap-cms/issues/999), [#1456](https://github.com/decaporg/decap-cms/issues/1456), [#4175](https://github.com/decaporg/decap-cms/issues/4175), [#4818](https://github.com/decaporg/decap-cms/issues/4818), [#5688](https://github.com/decaporg/decap-cms/issues/5688), [#6828](https://github.com/decaporg/decap-cms/issues/6828), [#6829](https://github.com/decaporg/decap-cms/issues/6829), [#6862](https://github.com/decaporg/decap-cms/issues/6862), [#7023](https://github.com/decaporg/decap-cms/issues/7023)
|
|
2363
|
+
[^107]: Netlify/Decap CMS [#332](https://github.com/decaporg/decap-cms/issues/332), [#683](https://github.com/decaporg/decap-cms/issues/683), [#999](https://github.com/decaporg/decap-cms/issues/999), [#1456](https://github.com/decaporg/decap-cms/issues/1456), [#4175](https://github.com/decaporg/decap-cms/issues/4175), [#4818](https://github.com/decaporg/decap-cms/issues/4818), [#5688](https://github.com/decaporg/decap-cms/issues/5688), [#6828](https://github.com/decaporg/decap-cms/issues/6828), [#6829](https://github.com/decaporg/decap-cms/issues/6829), [#6862](https://github.com/decaporg/decap-cms/issues/6862), [#7023](https://github.com/decaporg/decap-cms/issues/7023), [#7680](https://github.com/decaporg/decap-cms/issues/7680)
|
|
2345
2364
|
|
|
2346
2365
|
[^108]: Netlify/Decap CMS [#6879](https://github.com/decaporg/decap-cms/discussions/6879)
|
|
2347
2366
|
|
|
@@ -2746,3 +2765,5 @@ This project would not have been possible without the open source Netlify CMS pr
|
|
|
2746
2765
|
[^312]: Netlify/Decap CMS [#1004](https://github.com/decaporg/decap-cms/issues/1004)
|
|
2747
2766
|
|
|
2748
2767
|
[^313]: Netlify/Decap CMS [#542](https://github.com/decaporg/decap-cms/issues/542)
|
|
2768
|
+
|
|
2769
|
+
[^314]: Netlify/Decap CMS [#3719](https://github.com/decaporg/decap-cms/issues/3719)
|