@sveltia/cms 0.1.1 → 0.1.3
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 +9 -9
- package/dist/sveltia-cms.js +235 -239
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -26,22 +26,22 @@ Here are some highlights mainly compared to Netlify/Decap CMS:
|
|
|
26
26
|
### Better productivity
|
|
27
27
|
|
|
28
28
|
- Integrating Pexels, Pixabay and Unsplash to allow inserting free stock photos into image fields with no hassle.
|
|
29
|
-
- Able to work on a local Git repository without installing a proxy server. See below for details.
|
|
29
|
+
- Able to work on a local Git repository without installing a proxy server. [See below](#work-with-a-local-git-repository) for details.
|
|
30
30
|
- Able to delete multiple entries and assets at once.
|
|
31
31
|
- Solving various outstanding Netlify/Decap CMS bugs[^11].
|
|
32
32
|
|
|
33
33
|
### Better i18n support
|
|
34
34
|
|
|
35
35
|
- Making it easier to switch between locales while editing.
|
|
36
|
-
- Integrating DeepL to allow translating text fields from another locale with one click. See below for details.
|
|
37
|
-
- You can now use a random ID for an entry slug, which is a good option for locales writing in non-Latin characters. See below for details.
|
|
36
|
+
- Integrating DeepL to allow translating text fields from another locale with one click. [See below](#use-deepl-to-translate-entry-fields) for details.
|
|
37
|
+
- You can now use a random ID for an entry slug, which is a good option for locales writing in non-Latin characters. [See below](#use-a-random-id-for-an-entry-slug) for details.
|
|
38
38
|
- Solving limitations in Netlify/Decap CMS’s [list and object widgets](https://www.netlifycms.org/docs/beta-features/#i18n-support) so that changes made with these widgets will be duplicated between locales as expected[^7].
|
|
39
39
|
- Users can now choose their preferred UI locale. English and Japanese only at this time.
|
|
40
40
|
|
|
41
41
|
### Collection enhancements
|
|
42
42
|
|
|
43
|
-
- You can set an icon for each collection[^3]. See below for details.
|
|
44
|
-
- A per-collection media folder will now appear aside of entries. See below for details.
|
|
43
|
+
- You can set an icon for each collection[^3]. [See below](#use-a-custom-icon-for-a-collection) for details.
|
|
44
|
+
- A per-collection media folder will now appear aside of entries. [See below](#use-a-custom-media-folder-for-a-collection) for details.
|
|
45
45
|
|
|
46
46
|
### Media library enhancements
|
|
47
47
|
|
|
@@ -65,7 +65,7 @@ While we’re not recreating all the features found in Netlify/Decap CMS, we pla
|
|
|
65
65
|
| Custom widgets | Not yet supported. |
|
|
66
66
|
| Custom previews | Not yet supported. |
|
|
67
67
|
|
|
68
|
-
###
|
|
68
|
+
### Widget limitations
|
|
69
69
|
|
|
70
70
|
| Widget | Status in Sveltia CMS |
|
|
71
71
|
| --- | --- |
|
|
@@ -82,14 +82,14 @@ While we’re not recreating all the features found in Netlify/Decap CMS, we pla
|
|
|
82
82
|
|
|
83
83
|
| Feature | Status in Sveltia CMS |
|
|
84
84
|
| --- | --- |
|
|
85
|
-
| Working with a Local Git Repository | Supported. See below for details. |
|
|
85
|
+
| Working with a Local Git Repository | Supported. [See below](#work-with-a-local-git-repository) for details. |
|
|
86
86
|
| GitLab and BitBucket Editorial Workflow Support | The GitLab backend is not yet supported. No plan to support BitBucket. |
|
|
87
87
|
| i18n Support | Supported. In fact, i18n is at the core of Sveltia CMS! |
|
|
88
88
|
| GitHub GraphQL API | Sveltia CMS uses GraphQL with no configuration. It cannot be disabled. |
|
|
89
89
|
| GitLab GraphQL API | The GitLab backend is not yet supported. |
|
|
90
90
|
| Open Authoring | Not yet supported. |
|
|
91
91
|
| Folder Collections Path | Not yet supported. |
|
|
92
|
-
| Folder Collections Media and Public Folder | Only the _undocumented_, absolute path per-collection folder configuration is currently supported. See below. |
|
|
92
|
+
| Folder Collections Media and Public Folder | Only the _undocumented_, absolute path per-collection folder configuration is currently supported. [See below](#use-a-custom-media-folder-for-a-collection). |
|
|
93
93
|
| List Widget: Variable Types | Coming soon. |
|
|
94
94
|
| Custom Mount Element | Supported. |
|
|
95
95
|
| Manual Initialization | Not yet supported. |
|
|
@@ -123,7 +123,7 @@ Currently, Sveltia CMS is aimed at existing Netlify/Decap CMS users. If you don
|
|
|
123
123
|
|
|
124
124
|
### Migration
|
|
125
125
|
|
|
126
|
-
If you’re already using Netlify/Decap CMS with the GitHub backend and don’t have any custom widget, custom preview or plugin, migrating to Sveltia CMS is super easy. Edit `/admin/index.html` to replace the CMS script
|
|
126
|
+
If you’re already using Netlify/Decap CMS with the GitHub backend and don’t have any custom widget, custom preview or plugin, migrating to Sveltia CMS is super easy. Edit `/admin/index.html` to replace the CMS script tag, and push the change to your repository:
|
|
127
127
|
|
|
128
128
|
```diff
|
|
129
129
|
-<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
|