@sveltia/cms 0.59.0 → 0.60.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 +6 -3
- package/dist/sveltia-cms.js +178 -178
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +178 -178
- package/dist/sveltia-cms.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -117,7 +117,7 @@ While we fix reported bugs as quickly as possible, usually within 24 hours, our
|
|
|
117
117
|
- We even work proactively to adopt changes suggested in their [pull requests](https://github.com/decaporg/decap-cms/pulls)
|
|
118
118
|
- Providing partial [compatibility with Static CMS](#compatibility-with-static-cms)
|
|
119
119
|
- Tackling as many [Netlify/Decap CMS issues](https://github.com/decaporg/decap-cms/issues) as possible
|
|
120
|
-
- So far,
|
|
120
|
+
- So far, 175+ of them, or 340+ including duplicates, have been effectively solved in Sveltia CMS
|
|
121
121
|
- Target: 200 by GA; 300, or 500 including duplicates, in the future (yes, you read that right)
|
|
122
122
|
- Issues include everything from feature requests to bug reports and [issues closed as stale](https://github.com/decaporg/decap-cms/issues?q=is%3Aissue+%22Closing+as+stale%22) or without a real solution, as well as [discussions](https://github.com/decaporg/decap-cms/discussions)
|
|
123
123
|
- 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 or already implemented in Sveltia CMS
|
|
@@ -126,7 +126,7 @@ While we fix reported bugs as quickly as possible, usually within 24 hours, our
|
|
|
126
126
|
- Responding to requests from the maintainer’s clients
|
|
127
127
|
- Making the code clean and maintainable
|
|
128
128
|
|
|
129
|
-
<br>
|
|
130
130
|
|
|
131
131
|
## Differentiators
|
|
132
132
|
|
|
@@ -255,12 +255,13 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
255
255
|
- Configuration
|
|
256
256
|
- Provides some new options, including:
|
|
257
257
|
- `icon`: [Choose a custom icon for each collection](#using-a-custom-icon-for-a-collection).[^3]
|
|
258
|
-
- `divider`: [Add dividers to the collection list](#adding-dividers-to-the-collection-list).
|
|
259
258
|
- `thumbnail`: Specify the field name for a thumbnail displayed on the entry list, like `thumbnail: featuredImage`.[^130]
|
|
260
259
|
- A nested field can be specified using dot notation, e.g. `heroImage.src`.
|
|
261
260
|
- A wildcard in the field name is also supported, e.g. `images.*.src`.
|
|
262
261
|
- Multiple field names can be specified as an array for fallback purpose, e.g. `[thumbnail, cover]`.
|
|
263
262
|
- If this option is omitted, any non-nested, non-empty Image or File field will be used.[^173]
|
|
263
|
+
- `limit`: Specify the maximum number of entries that can be created in a folder collection.[^185]
|
|
264
|
+
- `divider`: [Add dividers to the collection list](#adding-dividers-to-the-collection-list).
|
|
264
265
|
- Enhancements to the entry `filter` option for folder collections:
|
|
265
266
|
- Boolean `value` works as expected.[^93]
|
|
266
267
|
- `value` accepts `null` to match an undefined field value.
|
|
@@ -1490,3 +1491,5 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
1490
1491
|
[^183]: Netlify/Decap CMS [#1275](https://github.com/decaporg/decap-cms/issues/1275)
|
|
1491
1492
|
|
|
1492
1493
|
[^184]: Netlify/Decap CMS [#377](https://github.com/decaporg/decap-cms/issues/377)
|
|
1494
|
+
|
|
1495
|
+
[^185]: Netlify/Decap CMS [#6203](https://github.com/decaporg/decap-cms/issues/6203), [#7417](https://github.com/decaporg/decap-cms/issues/7417)
|