@sveltia/cms 0.3.2 → 0.3.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 +11 -5
- package/dist/sveltia-cms.js +41 -41
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ While recreating all the features found in Netlify/Decap CMS is not our goal, we
|
|
|
92
92
|
| File/Image | The `media_library` options are not yet supported other than `max_file_size` and `choose_url`. |
|
|
93
93
|
| Map | Not yet supported. |
|
|
94
94
|
| Markdown | It’s a plain text editor at this time. We’ll soon implement a rich text editor with i18n issues addressed. |
|
|
95
|
-
| Relation | The `search_fields` and `file` options are not yet supported. The `options_length` option will be ignored because it confuses users and Sveltia CMS doesn’t have the search performance issue. |
|
|
95
|
+
| Relation | The `search_fields` and `file` options are not yet supported. The `options_length` option will be ignored because it confuses users and Sveltia CMS doesn’t have the search performance issue. Referencing a file collection list field (with wildcards) is not yet supported. |
|
|
96
96
|
|
|
97
97
|
### Beta features in Netlify/Decap CMS
|
|
98
98
|
|
|
@@ -121,7 +121,8 @@ While recreating all the features found in Netlify/Decap CMS is not our goal, we
|
|
|
121
121
|
|
|
122
122
|
### Known issues
|
|
123
123
|
|
|
124
|
-
- Auto-saving a draft entry
|
|
124
|
+
- Auto-saving a draft entry is not implemented yet.
|
|
125
|
+
- Duplicating an entry is not implemented yet.
|
|
125
126
|
- Accessibility support is limited.
|
|
126
127
|
|
|
127
128
|
### Roadmap
|
|
@@ -132,6 +133,11 @@ While recreating all the features found in Netlify/Decap CMS is not our goal, we
|
|
|
132
133
|
- Demo site
|
|
133
134
|
- Starter templates
|
|
134
135
|
|
|
136
|
+
### Non goals
|
|
137
|
+
|
|
138
|
+
- Mobile support
|
|
139
|
+
- WYSIWYG editing
|
|
140
|
+
|
|
135
141
|
## Getting started
|
|
136
142
|
|
|
137
143
|
### New users
|
|
@@ -169,10 +175,10 @@ You can host your Sveltia CMS-managed site anywhere, such as [Cloudflare Pages](
|
|
|
169
175
|
|
|
170
176
|
### Work with a local Git repository
|
|
171
177
|
|
|
172
|
-
You can use Sveltia CMS with a local Git repository, just like the [beta feature](https://decapcms.org/docs/beta-features/#working-with-a-local-git-repository) in Netlify/Decap CMS, but Sveltia CMS has simplified the workflow by removing the necessity of the additional configuration (the `local_backend` property) and proxy server, thanks to the [File System Access API](https://developer.chrome.com/articles/file-system-access/) available in some modern browsers.
|
|
178
|
+
You can use Sveltia CMS with a local Git repository, just like the [beta feature](https://decapcms.org/docs/beta-features/#working-with-a-local-git-repository) in Netlify/Decap CMS, but Sveltia CMS has simplified the workflow by removing the necessity of the additional configuration (the `local_backend` property) and proxy server, thanks to the [File System Access API](https://developer.chrome.com/articles/file-system-access/) available in [some modern browsers](https://developer.mozilla.org/en-US/docs/web/api/window/showopenfilepicker#browser_compatibility).
|
|
173
179
|
|
|
174
180
|
1. Launch the local development server for your frontend framework, typically with `npm run dev`.
|
|
175
|
-
1. Visit `http://localhost:[port]/admin/index.html` with
|
|
181
|
+
1. Visit `http://localhost:[port]/admin/index.html` with Chrome, Edge or other Chromium-based desktop browser. The port number depends on your framework.
|
|
176
182
|
1. Click “Work with Local Repository” and select the project’s root directory once prompted.
|
|
177
183
|
1. Make some changes on Sveltia CMS.
|
|
178
184
|
1. See if the produced changes look good using `git diff` or a GUI like [GitHub Desktop](https://desktop.github.com/).
|
|
@@ -299,7 +305,7 @@ Sveltia CMS is open source for sure! You can host it on your server rather than
|
|
|
299
305
|
1. Run `pnpm install && pnpm build` at the project root.
|
|
300
306
|
1. `sveltia-cms.js` will be generated under the `dist` directory.
|
|
301
307
|
|
|
302
|
-
Importing the CMS as an npm package is not supported
|
|
308
|
+
Importing the CMS as an npm package is not yet supported.
|
|
303
309
|
|
|
304
310
|
## Support & feedback
|
|
305
311
|
|