@sveltia/cms 0.36.5 → 0.37.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 +8 -2
- package/dist/sveltia-cms.js +119 -119
- package/dist/sveltia-cms.mjs +144 -144
- package/package.json +19 -11
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ While we are fixing reported bugs as fast as we can, the overall progress may be
|
|
|
46
46
|
|
|
47
47
|
- Ensuring maximum [compatibility with existing versions of Netlify/Decap CMS](#compatibility)
|
|
48
48
|
- Tackling as many [issues reported to Netlify/Decap CMS](https://github.com/decaporg/decap-cms/issues) as possible
|
|
49
|
-
- So far, 110+ of them (or
|
|
49
|
+
- So far, 110+ of them (or 190+ including duplicates) have been effectively solved in Sveltia CMS
|
|
50
50
|
- Target: 125 issues by GA, 250 in a future release
|
|
51
51
|
- [Let us know](https://github.com/sveltia/sveltia-cms/issues/new) if you have any specific issues you’d like to see solved!
|
|
52
52
|
- Responding to user feedback
|
|
@@ -191,6 +191,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
191
191
|
|
|
192
192
|
- Required fields, not optional fields, are clearly marked for efficient data entry.
|
|
193
193
|
- You can revert changes to all fields or a specific field.
|
|
194
|
+
- If you revert changes and there are no unsaved changes, the Save button is disabled as expected[^118].
|
|
194
195
|
- You can hide the preview of a specific field with `preview: false`.
|
|
195
196
|
- Fields with validation errors are automatically expanded if they are part of nested, collapsed objects[^40].
|
|
196
197
|
- When you click on a field in the preview pane, the corresponding field in the edit pane is highlighted. It will be automatically expanded if collapsed[^41].
|
|
@@ -207,6 +208,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
207
208
|
- Leading and trailing spaces in text-type field values are automatically removed when you save an entry[^37].
|
|
208
209
|
- JSON/TOML/YAML data is saved with a new line at the end of the file to prevent unnecessary changes being made to the file[^11][^69].
|
|
209
210
|
- String values in YAML files can be quoted with the new `yaml_quote: true` option for a collection, mainly for framework compatibility[^9].
|
|
211
|
+
- YAML string folding (maximum line width) is disabled, mainly for framework compatibility[^119].
|
|
210
212
|
|
|
211
213
|
### Better widgets
|
|
212
214
|
|
|
@@ -322,7 +324,7 @@ These limitations are expected to be resolved before or shortly after GA:
|
|
|
322
324
|
| Widget | Status in Sveltia CMS |
|
|
323
325
|
| --- | --- |
|
|
324
326
|
| Code | Not yet supported. |
|
|
325
|
-
| DateTime | The `date_format` and `time_format` options with Moment.js tokens are not yet supported.
|
|
327
|
+
| DateTime | The `date_format` and `time_format` options with Moment.js tokens are not yet supported. [Decap CMS 3.1.1](https://github.com/decaporg/decap-cms/releases/tag/decap-cms%403.1.1) replaced Moment.js with [Day.js](https://day.js.org/), and [Decap CMS 3.3.0](https://github.com/decaporg/decap-cms/releases/tag/decap-cms%403.3.0) made other changes to the widget behaviour; we’ll follow the change soon. |
|
|
326
328
|
| File/Image | Field-specific media folders and media library options are not yet supported other than `media_library.config.max_file_size` for the default media library. |
|
|
327
329
|
| Map | Not yet supported. |
|
|
328
330
|
| Markdown | Editor components, including built-in `image` and `code-block` as well as custom components, are not yet supported. |
|
|
@@ -1023,3 +1025,7 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
1023
1025
|
[^116]: Netlify/Decap CMS [#3431](https://github.com/decaporg/decap-cms/issues/3431)
|
|
1024
1026
|
|
|
1025
1027
|
[^117]: Netlify/Decap CMS [#3562](https://github.com/decaporg/decap-cms/issues/3562)
|
|
1028
|
+
|
|
1029
|
+
[^118]: Netlify/Decap CMS [#7267](https://github.com/decaporg/decap-cms/issues/7267)
|
|
1030
|
+
|
|
1031
|
+
[^119]: Netlify/Decap CMS [#5640](https://github.com/decaporg/decap-cms/issues/5640)
|