@sveltia/cms 0.53.3 → 0.53.4

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 CHANGED
@@ -4,6 +4,8 @@ Sveltia CMS is a Git-based lightweight headless CMS under active development as
4
4
 
5
5
  The free, open source alternative to Netlify/Decap CMS is now in public beta, turbocharged with great UX, performance, i18n support and so many more enhancements.
6
6
 
7
+ Welcome to the only Netlify CMS successor you can bank on!
8
+
7
9
  ![Screenshot: Open Source Git-based Headless CMS](https://raw.githubusercontent.com/sveltia/sveltia-cms/main/docs/screenshot-1-20240507.webp)<br>
8
10
 
9
11
  ![Screenshot: Fast and Lightweight; Modern UX with Dark Mode](https://raw.githubusercontent.com/sveltia/sveltia-cms/main/docs/screenshot-2-20240507.webp)<br>
@@ -305,7 +307,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
305
307
  - When you click on a field in the Preview pane, the corresponding field in the Edit pane is highlighted[^41]. It will be automatically expanded if collapsed.
306
308
  - The Preview pane won’t cause a scrolling issue[^136].
307
309
  - Provides better scroll synchronization between the panes when editing or previewing an entry[^92].
308
- - The preview of a specific field can be hidden with `preview: false`[^126].
310
+ - Developers can hide the preview of a specific field using a new field option: `preview: false`[^126].
309
311
  - [See below](#better-widgets) for widget-specific enhancements, including support for variable types[^42] and YouTube videos.
310
312
 
311
313
  ### Better data output
@@ -397,7 +399,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
397
399
  - A required field containing only spaces or line breaks will result in a validation error, as if no characters were entered.
398
400
  - Relation and Select
399
401
  - If a dropdown list has options with long wrapping labels, they won’t overlap with the next option[^83].
400
- - When there are 5 or fewer options, the UI switches from a dropdown list to radio buttons (single-select) or checkboxes (multi-select) for faster data entry[^61]. This number can be changed with the `dropdown_threshold` option for the `relation` and `select` widgets.
402
+ - When there are 5 or fewer options, the UI automatically switches from a dropdown list to radio buttons (single-select) or checkboxes (multi-select) for faster data entry[^61]. This number can be changed with the `dropdown_threshold` option for the `relation` and `select` widgets.
401
403
  - String and Text
402
404
  - Supports the `minlength` and `maxlength` options, which allow developers to specify the minimum and maximum number of characters required for input without having to write a custom regular expression with the `pattern` option. A character counter is available when one of the options is given, and a user-friendly validation error is displayed if the condition is not met.
403
405
 
@@ -506,6 +508,7 @@ We plan to provide partial compatibility with [Static CMS](https://github.com/St
506
508
  - The UUID widget is also implemented, but with different options.
507
509
  - The `prefix` and `suffix` options for the Boolean, Number and String widgets are implemented as `before_input` and `after_input` in Sveltia CMS. Our `prefix` and `suffix` options for the String widget are literally a prefix and suffix to the value.
508
510
  - The `multiple` option for the File and Image widgets will be implemented in Sveltia CMS soon. ([#10](https://github.com/sveltia/sveltia-cms/issues/10))
511
+ - Directory navigation in the Asset Library is partially supported in Sveltia CMS. If you define [collection-specific `media_folder`s](#using-a-custom-media-folder-for-a-collection), these folders will be displayed in the Asset Library and Select File/Image dialog. Display of subfolders within a configured folder will be implemented soon. ([#301](https://github.com/sveltia/sveltia-cms/issues/301))
509
512
  - `CMS.registerIcon()` will not be supported, as Sveltia CMS includes the Material Symbols font for [custom collection icons](#using-a-custom-icon-for-a-collection) that doesn’t require manual registration.
510
513
  - The `enforce_required_non_default` i18n option will not be supported. Sveitia CMS enforces required fields in all locales by default. However, the `save_all_locales` i18n option allows users to [disable non-default locales](#disabling-non-default-locale-content) if needed. Developers can also specify a subset of locales with the `required` field option, e.g. `required: [en]`.
511
514
 
@@ -704,6 +707,8 @@ In Sveltia CMS, those collection media folders are displayed prominently for eas
704
707
  - Save an entry: `Ctrl+S` (Windows/Linux) or `Command+S` (macOS)
705
708
  - Cancel entry editing: `Escape`
706
709
 
710
+ Standard keyboard shortcuts are also available in the Markdown editor, including `Ctrl+B`/`Command+B` for bold text, `Ctrl+I`/`Command+I` for italics, and `Tab` to indent a list item.
711
+
707
712
  ### Using DeepL to translate entry fields
708
713
 
709
714
  Sveltia CMS comes with a handy DeepL integration so that you can translate any text field from another locale without leaving the Content Editor. To enable the high quality, AI-powered, quick translation feature:
@@ -1016,7 +1021,7 @@ See [Contributing to Sveltia CMS](https://github.com/sveltia/sveltia-cms/blob/ma
1016
1021
 
1017
1022
  ### After the 1.0 release
1018
1023
 
1019
- - Implementing the remaining Netlify/Decap CMS features: Editorial Workflow, Open Authoring and Nested Collections
1024
+ - Implementing the [remaining Netlify/Decap CMS features](#features-to-be-implemented-after-ga)
1020
1025
  - Tackling more Netlify/Decap CMS issues, including MDX support[^122], manual entry sorting[^125], mobile optimization[^18], config editor[^10] and other [top-voted features](https://github.com/decaporg/decap-cms/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc)
1021
1026
  - Exploring features that require server-side implementation, including user management (Netlify Identity alternative), roles[^23], commits without a GitHub or GitLab account (Git Gateway alternative), post locking (like [WordPress](https://codex.wordpress.org/Post_Locking))[^166] and scheduled posts[^167]
1022
1027
  - Considering further [compatibility with Static CMS](#compatibility-with-static-cms)