@sveltia/cms 0.37.2 → 0.38.1
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 +27 -18
- package/dist/sveltia-cms.js +116 -116
- package/dist/sveltia-cms.mjs +116 -116
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Sveltia CMS is a Git-based lightweight headless CMS under active development as a modern, quick replacement for Netlify CMS and Decap CMS. In some simple cases, migration is as easy as a single line of code change, although we are still working on improving compatibility. The free, open source, UX-focused alternative to Netlify/Decap CMS is now in public beta — with more features to come.
|
|
4
4
|
|
|
5
|
-
<br>
|
|
5
|
+
<br>
|
|
6
6
|
|
|
7
|
-
<br>
|
|
7
|
+
<br>
|
|
8
8
|
|
|
9
|
-
<br>
|
|
9
|
+
<br>
|
|
10
10
|
|
|
11
|
-
<br>
|
|
11
|
+
<br>
|
|
12
12
|
|
|
13
|
-
<br>
|
|
13
|
+
<br>
|
|
14
14
|
|
|
15
15
|
## Motivation
|
|
16
16
|
|
|
@@ -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,
|
|
49
|
+
- So far, 115+ 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
|
|
@@ -55,7 +55,7 @@ While we are fixing reported bugs as fast as we can, the overall progress may be
|
|
|
55
55
|
|
|
56
56
|
Sveltia CMS **version 1.0 is expected to ship by the end of 2024**. Check our [release notes](https://github.com/sveltia/sveltia-cms/releases) for updates. See also our [roadmap](#roadmap).
|
|
57
57
|
|
|
58
|
-
<br>
|
|
59
59
|
|
|
60
60
|
## Features
|
|
61
61
|
|
|
@@ -106,6 +106,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
106
106
|
|
|
107
107
|
- Improved keyboard handling lets you efficiently navigate through UI elements using the Tab, Space, Enter and arrow keys[^17][^67].
|
|
108
108
|
- Comprehensive [WAI-ARIA](https://w3c.github.io/aria/) support enables users who rely on screen readers such as NVDA and VoiceOver.
|
|
109
|
+
- The rich text editor is built with [Lexical](https://lexical.dev/), which is said to follow accessibility best practices. The [Dragon NaturallySpeaking support](https://lexical.dev/docs/packages/lexical-dragon) is enabled.
|
|
109
110
|
- Ensures sufficient contrast between the foreground text and background colours.
|
|
110
111
|
- Enabled and disabled buttons can be clearly distinguished[^105].
|
|
111
112
|
- Links are underlined by default to make them easier to recognize. This behaviour can be changed in the Accessibility Settings if you prefer.
|
|
@@ -182,6 +183,8 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
182
183
|
- You can set the maximum number of characters for an entry slug with the new `slug_length` collection option[^25].
|
|
183
184
|
- Entry listing
|
|
184
185
|
- A folder collection filter with a boolean value works as expected[^93].
|
|
186
|
+
- Hugo’s special `_index.md` files are ignored in folder collections. You can still manage these files as part of a file collection if necessary[^120].
|
|
187
|
+
- If there was an error while parsing an entry file, such as duplicate front matter keys, it won’t show up as a blank entry, and a clear error message will be displayed in the browser console[^121].
|
|
185
188
|
- Sorting entries by a DateTime field works as expected[^110].
|
|
186
189
|
- Assets stored in a [per-collection media folder](#using-a-custom-media-folder-for-a-collection) can be displayed next to the entries.
|
|
187
190
|
- The New Entry button won’t appear when a developer accidentally sets the `create: true` option on a file collection because it’s useless[^89].
|
|
@@ -230,7 +233,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
230
233
|
- You can enter spaces in a simple text-based List field[^50].
|
|
231
234
|
- You can preview variable types without having to register a preview template[^42].
|
|
232
235
|
- Markdown
|
|
233
|
-
- The rich text editor is built with [Lexical](https://
|
|
236
|
+
- The rich text editor is built with [Lexical](https://lexical.dev/) instead of [Slate](https://github.com/ianstormtaylor/slate), which solves various problems found in Netlify/Decap CMS, including fatal application crashes[^53][^70][^71][^72][^73][^111].
|
|
234
237
|
- You can set the default editor mode by changing the order of the `modes` option[^58]. If you want to use the plain text editor by default, add `modes: [raw, rich_text]` to the field configuration.
|
|
235
238
|
- Line breaks are rendered as line breaks in the preview pane according to GitHub Flavored Markdown.
|
|
236
239
|
- Object
|
|
@@ -345,24 +348,24 @@ Missing any other features? Let us know by [filing an issue](https://github.com/
|
|
|
345
348
|
|
|
346
349
|
### Before the 1.0 release
|
|
347
350
|
|
|
348
|
-
- Enhanced [compatibility with Netlify/Decap CMS](#compatibility)
|
|
349
|
-
- [Tackling more Netlify/Decap CMS issues](#development-status)
|
|
350
|
-
- Broad automation test coverage (Vitest + Playwright)
|
|
351
351
|
- [Svelte 5](https://svelte.dev/blog/svelte-5-release-candidate) migration
|
|
352
|
-
-
|
|
353
|
-
-
|
|
352
|
+
- Enhanced [compatibility with Netlify/Decap CMS](#compatibility)
|
|
353
|
+
- Localization with the new [Fluent](https://projectfluent.org)-powered sveltia-i18n library
|
|
354
|
+
- Accessibility audit
|
|
355
|
+
- Developer documentation (implementation guide)
|
|
354
356
|
- Marketing site
|
|
355
357
|
- Live demo site
|
|
356
358
|
- Official starter templates for the most popular frameworks, including SvelteKit and Next.js
|
|
359
|
+
- Broad automation test coverage (Vitest + Playwright)
|
|
357
360
|
|
|
358
361
|
### After the 1.0 release
|
|
359
362
|
|
|
360
|
-
-
|
|
361
|
-
-
|
|
362
|
-
- Config editor[^10]
|
|
363
|
-
- Mobile support[^18]
|
|
364
|
-
- AI integrations
|
|
363
|
+
- Tackling more Netlify/Decap CMS issues, especially [top voted features](https://github.com/decaporg/decap-cms/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc), including MDX support[^122], roles[^23], mobile optimization[^18] and config editor[^10] — Some features are already implemented in Sveltia CMS
|
|
364
|
+
- Compatibility with Static CMS, a community fork of Netlify CMS
|
|
365
365
|
- Advanced digital asset management (DAM) features, including image editing and tagging[^114]
|
|
366
|
+
- AI integrations
|
|
367
|
+
- End-user documentation
|
|
368
|
+
- Contributor documentation
|
|
366
369
|
- and more!
|
|
367
370
|
|
|
368
371
|
## Getting started
|
|
@@ -1029,3 +1032,9 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
1029
1032
|
[^118]: Netlify/Decap CMS [#7267](https://github.com/decaporg/decap-cms/issues/7267)
|
|
1030
1033
|
|
|
1031
1034
|
[^119]: Netlify/Decap CMS [#5640](https://github.com/decaporg/decap-cms/issues/5640)
|
|
1035
|
+
|
|
1036
|
+
[^120]: Netlify/Decap CMS [#2727](https://github.com/decaporg/decap-cms/issues/2727), [#4884](https://github.com/decaporg/decap-cms/issues/4884)
|
|
1037
|
+
|
|
1038
|
+
[^121]: Netlify/Decap CMS [#7262](https://github.com/decaporg/decap-cms/issues/7262)
|
|
1039
|
+
|
|
1040
|
+
[^122]: Netlify/Decap CMS [#1776](https://github.com/decaporg/decap-cms/issues/1776), [#2064](https://github.com/decaporg/decap-cms/issues/2064), [#7158](https://github.com/decaporg/decap-cms/issues/7158), [#7259](https://github.com/decaporg/decap-cms/issues/7259)
|