@sveltia/cms 0.49.7 → 0.49.9
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 +20 -9
- package/dist/sveltia-cms.js +49 -50
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +46 -47
- package/dist/sveltia-cms.mjs.map +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -39,7 +39,8 @@ The free, open source alternative to Netlify/Decap CMS is now in public beta, tu
|
|
|
39
39
|
- [Better localization](#better-localization)
|
|
40
40
|
- [Compatibility](#compatibility)
|
|
41
41
|
- [Features not to be implemented](#features-not-to-be-implemented)
|
|
42
|
-
- [
|
|
42
|
+
- [Features to be implemented before GA](#features-to-be-implemented-before-ga)
|
|
43
|
+
- [Features to be implemented after GA](#features-to-be-implemented-after-ga)
|
|
43
44
|
- [Other notes](#other-notes)
|
|
44
45
|
- [Getting started](#getting-started)
|
|
45
46
|
- [New users](#new-users)
|
|
@@ -377,6 +378,8 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
|
|
|
377
378
|
- Compute
|
|
378
379
|
- The experimental `compute` widget allows to reference the value of other fields in the same collection, similar to the `summary` property for the List and Object widgets[^104]. Use the `value` property to define the value template, e.g. `posts-{{fields.slug}}` ([example](https://github.com/sveltia/sveltia-cms/issues/111)).
|
|
379
380
|
- The `value` property also supports a value of `{{index}}`, which can hold the index of a list item ([example](https://github.com/sveltia/sveltia-cms/issues/172)).
|
|
381
|
+
- KeyValue
|
|
382
|
+
- Coming soon!
|
|
380
383
|
- UUID
|
|
381
384
|
- In addition to [generating UUIDs for entry slugs](#using-a-random-id-for-an-entry-slug), Sveltia CMS also supports the proposed `uuid` widget with the following properties[^12]:
|
|
382
385
|
- `prefix`: A string to be prepended to the value. Default: an empty string.
|
|
@@ -427,17 +430,17 @@ However, 100% feature parity is not planned, and some features are still missing
|
|
|
427
430
|
|
|
428
431
|
### Features not to be implemented
|
|
429
432
|
|
|
430
|
-
- **The Bitbucket, Gitea/Forgejo and Git Gateway backends will not be supported** for performance reasons.
|
|
431
|
-
- **
|
|
433
|
+
- **The Bitbucket, Gitea/Forgejo and Git Gateway backends will not be supported** for performance reasons. [Git Gateway](https://github.com/netlify/git-gateway) has not been actively maintained; we plan to develop a high-performance alternative in the future. We may also support the other platforms if their APIs improve to allow the CMS to fetch multiple entries at once.
|
|
434
|
+
- **Netlify Identity Widget will not be supported**, as it’s not useful without Git Gateway. The [widget](https://github.com/netlify/netlify-identity-widget) has been unmaintained for years, and Netlify no longer officially supports it [according to a Netlify customer](https://github.com/sveltia/sveltia-cms/discussions/284). We plan to develop an alternative solution in the future, most likely using [Cloudflare Workers](https://workers.cloudflare.com/) and [Auth.js](https://authjs.dev/).
|
|
432
435
|
- The deprecated client-side implicit grant for the GitLab backend will not be supported, as it has already been [removed from GitLab 15.0](https://gitlab.com/gitlab-org/gitlab/-/issues/344609). Use the client-side PKCE authorization instead.
|
|
433
436
|
- The deprecated Netlify Large Media service will not be supported. Consider other storage providers.
|
|
434
437
|
- The deprecated Date widget will not be supported, as it has already been removed from Decap CMS 3.0. Use the DateTime widget instead.
|
|
435
438
|
- Remark plugins will not be supported, as they are not compatible with our Lexical-based rich text editor.
|
|
436
439
|
- [Undocumented methods](https://github.com/sveltia/sveltia-cms/blob/c69446da7bb0bab7405be741c0f92850c5dddfa8/src/main.js#L14-L37) exposed on the `window.CMS` object will not be implemented. This includes custom backends and custom media libraries, if any; we may support these features in the future, but our implementation would likely be incompatible with Netlify/Decap CMS.
|
|
437
440
|
|
|
438
|
-
###
|
|
441
|
+
### Features to be implemented before GA
|
|
439
442
|
|
|
440
|
-
These limitations are expected to be resolved before
|
|
443
|
+
These limitations are expected to be resolved before the 1.0 release:
|
|
441
444
|
|
|
442
445
|
| Feature | Status in Sveltia CMS |
|
|
443
446
|
| --- | --- |
|
|
@@ -445,8 +448,6 @@ These limitations are expected to be resolved before or shortly after GA:
|
|
|
445
448
|
| Configuration | Comprehensive config validation is not yet implemented. |
|
|
446
449
|
| Localization | The application UI is only available in English and Japanese at this time. |
|
|
447
450
|
| Media Libraries | [Cloudinary](https://decapcms.org/docs/cloudinary/) and [Uploadcare](https://decapcms.org/docs/uploadcare/) are not yet supported. |
|
|
448
|
-
| Workflow | [Editorial Workflow](https://decapcms.org/docs/editorial-workflows/) and [Open Authoring](https://decapcms.org/docs/open-authoring/) are not yet supported and will be implemented after the 1.0 release. |
|
|
449
|
-
| Collections | [Nested collections](https://decapcms.org/docs/collection-nested/) (beta) are not yet supported and will be implemented after the 1.0 release. |
|
|
450
451
|
| Widgets | [Custom widgets](https://decapcms.org/docs/custom-widgets/) are not yet supported. See the table below for other limitations. |
|
|
451
452
|
| Customizations | [Custom previews](https://decapcms.org/docs/customization/) and [event subscriptions](https://decapcms.org/docs/registering-events/) are not yet supported. |
|
|
452
453
|
|
|
@@ -458,6 +459,14 @@ These limitations are expected to be resolved before or shortly after GA:
|
|
|
458
459
|
| [Map](https://decapcms.org/docs/widgets/#map) | Not yet supported. |
|
|
459
460
|
| [Markdown](https://decapcms.org/docs/widgets/#markdown) | The built-in `code-block` component and custom components are not yet supported. |
|
|
460
461
|
|
|
462
|
+
### Features to be implemented after GA
|
|
463
|
+
|
|
464
|
+
Due to the complexity, the following features are planned for after the 1.0 release. We know Netlify/Decap CMS has a number of issues with these advanced features and we want to implement them the right way.
|
|
465
|
+
|
|
466
|
+
- [Editorial Workflow](https://decapcms.org/docs/editorial-workflows/)
|
|
467
|
+
- [Open Authoring](https://decapcms.org/docs/open-authoring/)
|
|
468
|
+
- [Nested Collections](https://decapcms.org/docs/collection-nested/)
|
|
469
|
+
|
|
461
470
|
### Other notes
|
|
462
471
|
|
|
463
472
|
- Make sure you’re using the latest stable version of a web browser. Firefox ESR and its derivatives, including Tor Browser and Mullvad Browser, are not supported, although they may still work. The [local repository workflow](#working-with-a-local-git-repository) requires Chrome, Edge or another Chromium-based browser.
|
|
@@ -521,7 +530,7 @@ Once you have migrated from the Git Gateway and Netlify Identity combo, you can
|
|
|
521
530
|
-<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
|
|
522
531
|
```
|
|
523
532
|
|
|
524
|
-
If you want to stay with Netlify Identity, unfortunately you can’t migrate to Sveltia CMS right now. We plan to develop
|
|
533
|
+
If you want to stay with Netlify Identity, unfortunately you can’t migrate to Sveltia CMS right now. We plan to develop an alternative to Git Gateway and Netlify Identity Widget in the future.
|
|
525
534
|
|
|
526
535
|
### Installing with npm
|
|
527
536
|
|
|
@@ -928,7 +937,9 @@ img-src 'self' blob: data: https://*;
|
|
|
928
937
|
|
|
929
938
|
While we don’t have dedicated developer/user support resources, [quick questions](https://github.com/sveltia/sveltia-cms/discussions/new?category=q-a) and [feedback](https://github.com/sveltia/sveltia-cms/discussions/new?category=general) are welcome on the [Discussions](https://github.com/sveltia/sveltia-cms/discussions) page of our GitHub repository. We also have a [Discord channel](https://discord.gg/5hwCGqup5b) for casual chat.
|
|
930
939
|
|
|
931
|
-
|
|
940
|
+
As described throughout this README, Sveltia CMS is being built as a replacement for Netlify/Decap CMS. At this point, we assume that most developers and users are migrating from the other product. We are happy to help you migrate, but unfortunately we cannot help you set up Sveltia CMS from scratch through our free support channels.
|
|
941
|
+
|
|
942
|
+
Planning to build a website with Sveltia CMS? Looking for professional support? Maintainer [@kyoshino](https://github.com/kyoshino) is available for hire depending on your needs. Feel free to reach out today!
|
|
932
943
|
|
|
933
944
|
## Contributions
|
|
934
945
|
|