@sveltia/cms 0.93.0 → 0.93.2
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 +16 -10
- package/dist/sveltia-cms.js +226 -222
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +226 -222
- package/dist/sveltia-cms.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -132,7 +132,7 @@ Sveltia CMS is currently in **beta** and version 1.0 (GA) is expected to ship in
|
|
|
132
132
|
|
|
133
133
|
While we fix reported bugs as quickly as possible, usually within 24 hours, our overall progress may be slower than you think. The thing is, it’s not just a personal project of [@kyoshino](https://github.com/kyoshino), but also a complicated system involving various kinds of activities that require considerable effort:
|
|
134
134
|
|
|
135
|
-
- Ensuring substantial [compatibility with Netlify/Decap CMS](#
|
|
135
|
+
- Ensuring substantial [compatibility with Netlify/Decap CMS](#current-limitations)
|
|
136
136
|
- Tackling as many [Netlify/Decap CMS issues](https://github.com/decaporg/decap-cms/issues) as possible
|
|
137
137
|
- So far, 240+ issues, or 500+ if including duplicates, have been effectively solved in Sveltia CMS (Yes, you read it right)
|
|
138
138
|
- Target:
|
|
@@ -566,7 +566,9 @@ Sveltia CMS supports all the [built-in widgets](https://decapcms.org/docs/widget
|
|
|
566
566
|
- The application renders within the dimensions of a [custom mount element](https://decapcms.org/docs/custom-mounting/), if exists.[^109]
|
|
567
567
|
- A custom logo defined with the `logo_url` property is displayed on the global application header and the browser tab (favicon).[^134] A smaller logo is also correctly positioned on the authentication page.[^135]
|
|
568
568
|
- [`CMS.registerCustomFormat()`](https://decapcms.org/docs/custom-formatters/) supports async parser/formatter functions.[^149]
|
|
569
|
-
-
|
|
569
|
+
- Enhancements to [`CMS.registerEditorComponent()`](https://decapcms.org/docs/custom-widgets/#registereditorcomponent):
|
|
570
|
+
- A component definition accepts the `icon` property. Developers can specify a Material Symbols icon name just like [custom collection icons](#using-a-custom-icon-for-a-collection).
|
|
571
|
+
- The `fromBlock` function can be omitted if the `pattern` regex contains [named capturing groups](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Named_capturing_group) for the values.
|
|
570
572
|
|
|
571
573
|
### Better localization
|
|
572
574
|
|
|
@@ -616,7 +618,7 @@ These Netlify/Decap CMS features are not yet implemented in Sveltia CMS. We are
|
|
|
616
618
|
- [Cloudinary](https://decapcms.org/docs/cloudinary/) and [Uploadcare](https://decapcms.org/docs/uploadcare/) media libraries ([#4](https://github.com/sveltia/sveltia-cms/discussions/4))
|
|
617
619
|
- LineString and Polygon types for the [Map](https://decapcms.org/docs/widgets/#map) widget
|
|
618
620
|
- [Custom widgets](https://decapcms.org/docs/custom-widgets/)
|
|
619
|
-
- [Custom editor components](https://decapcms.org/docs/custom-widgets/#registereditorcomponent): Support for preview, widgets with complex values (Code with `output_code_only:false`, Hidden, KeyValue, List, Object, Select/Relation with `multiple:true`), as well as the `default` field option, [multiline components](https://github.com/sveltia/sveltia-cms/issues/410) and [inline components](https://github.com/sveltia/sveltia-cms/issues/460)
|
|
621
|
+
- [Custom editor components](https://decapcms.org/docs/custom-widgets/#registereditorcomponent): Support for preview, widgets with complex values (Code with `output_code_only: false`, Hidden, KeyValue, List, Object, Select/Relation with `multiple: true`), as well as the `default` field option, [multiline components](https://github.com/sveltia/sveltia-cms/issues/410) and [inline components](https://github.com/sveltia/sveltia-cms/issues/460)
|
|
620
622
|
- [Custom preview templates](https://decapcms.org/docs/customization/#registerpreviewtemplate) ([#51](https://github.com/sveltia/sveltia-cms/issues/51))
|
|
621
623
|
- [Event hooks](https://decapcms.org/docs/registering-events/) ([#167](https://github.com/sveltia/sveltia-cms/issues/167))
|
|
622
624
|
|
|
@@ -1620,10 +1622,8 @@ Due late 2025
|
|
|
1620
1622
|
|
|
1621
1623
|
- Enhanced [compatibility with Netlify/Decap CMS](#current-limitations)
|
|
1622
1624
|
- Tackling some more Netlify/Decap CMS issues:
|
|
1623
|
-
- [Directory navigation in the Asset Library](https://github.com/sveltia/sveltia-cms/issues/420)[^240]
|
|
1624
1625
|
- [Multiple file selection with the File and Image widgets](https://github.com/sveltia/sveltia-cms/issues/10)[^239]
|
|
1625
1626
|
- Several Cloudinary and Uploadcare media library issues, including selection of existing files[^247]
|
|
1626
|
-
- [Automatic asset file renaming with templates](https://github.com/sveltia/sveltia-cms/issues/422)[^241]
|
|
1627
1627
|
- [RTL localization support](https://github.com/sveltia/sveltia-cms/issues/385)[^245]
|
|
1628
1628
|
- Thorough site config validation[^246]
|
|
1629
1629
|
- [Entry pre-validation/normalization](https://github.com/sveltia/sveltia-cms/issues/395)[^248]
|
|
@@ -1639,13 +1639,19 @@ Due late 2025
|
|
|
1639
1639
|
Due early 2026
|
|
1640
1640
|
|
|
1641
1641
|
- Implementing [a few deferred Netlify/Decap CMS features](#current-limitations), including editorial workflow and nested collections
|
|
1642
|
+
- Tackling even more Netlify/Decap CMS issues:
|
|
1643
|
+
- [Manual entry sorting](https://github.com/sveltia/sveltia-cms/issues/214)[^125]
|
|
1644
|
+
- [Directory navigation in the Asset Library](https://github.com/sveltia/sveltia-cms/issues/420)[^240]
|
|
1645
|
+
- [Automatic asset file renaming with templates](https://github.com/sveltia/sveltia-cms/issues/422)[^241]
|
|
1646
|
+
- Advanced Relation fields[^242], including cascade updates/deletes[^243] and quick item additions[^266]
|
|
1647
|
+
- We’ll also implement [reverse reference lists](https://github.com/sveltia/sveltia-cms/discussions/416)
|
|
1648
|
+
- (some of them may be included in v1.0)
|
|
1642
1649
|
- End-user documentation
|
|
1643
1650
|
|
|
1644
1651
|
### Future
|
|
1645
1652
|
|
|
1646
|
-
- Tackling many of the remaining Netlify/Decap CMS issues
|
|
1653
|
+
- Tackling many of the remaining Netlify/Decap CMS issues:
|
|
1647
1654
|
- MDX support[^122]
|
|
1648
|
-
- [Manual entry sorting](https://github.com/sveltia/sveltia-cms/issues/214)[^125]
|
|
1649
1655
|
- [Saving drafts without editorial workflow](https://github.com/sveltia/sveltia-cms/discussions/440)[^261]
|
|
1650
1656
|
- [Tables in Markdown](https://github.com/sveltia/sveltia-cms/issues/455)[^256]
|
|
1651
1657
|
- [Config editor](https://github.com/sveltia/sveltia-cms/discussions/452)[^10]
|
|
@@ -1653,8 +1659,6 @@ Due early 2026
|
|
|
1653
1659
|
- [Reusable field groups](https://github.com/sveltia/sveltia-cms/discussions/463)[^263]
|
|
1654
1660
|
- Offline support[^238]
|
|
1655
1661
|
- and other [top-voted features](https://github.com/decaporg/decap-cms/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc)
|
|
1656
|
-
- Advanced Relation fields[^242], including cascade updates/deletes[^243]
|
|
1657
|
-
- We’ll also implement [reverse reference lists](https://github.com/sveltia/sveltia-cms/discussions/416)
|
|
1658
1662
|
- (some of them may be included in v2.0)
|
|
1659
1663
|
- **Sveltia CMS Additions**: edge functions for Cloudflare Workers and possibly other platforms that provide features that cannot be implemented client-side:
|
|
1660
1664
|
- User management (Netlify Identity alternative) with roles[^23]
|
|
@@ -1663,7 +1667,7 @@ Due early 2026
|
|
|
1663
1667
|
- Scheduled posts[^167]
|
|
1664
1668
|
- Credential management for service API keys, deploy hook URL, etc.
|
|
1665
1669
|
- Proxy for services that don’t support [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS):
|
|
1666
|
-
- [DeepL](https://github.com/sveltia/sveltia-cms/issues/437)
|
|
1670
|
+
- [DeepL Translate](https://github.com/sveltia/sveltia-cms/issues/437)
|
|
1667
1671
|
- [Git LFS support for GitHub](https://github.com/sveltia/sveltia-cms/discussions/353)[^244]
|
|
1668
1672
|
- [Local repository workflow](#working-with-a-local-git-repository) improvements: Git mode[^131] and File System Observer support
|
|
1669
1673
|
- [Preact+HTM support](https://github.com/sveltia/sveltia-cms/discussions/153) for custom widgets, editor components and preview templates
|
|
@@ -2224,3 +2228,5 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
2224
2228
|
[^264]: Netlify/Decap CMS [#7557](https://github.com/decaporg/decap-cms/issues/7557)
|
|
2225
2229
|
|
|
2226
2230
|
[^265]: Netlify/Decap CMS [#7550](https://github.com/decaporg/decap-cms/issues/7550), [#7562](https://github.com/decaporg/decap-cms/issues/7562)
|
|
2231
|
+
|
|
2232
|
+
[^266]: Netlify/Decap CMS [#3821](https://github.com/decaporg/decap-cms/issues/3821), [#4369](https://github.com/decaporg/decap-cms/issues/4369)
|