@sveltia/cms 0.3.11 → 0.4.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 +4 -3
- package/dist/sveltia-cms.js +231 -231
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -105,7 +105,7 @@ While recreating all the features found in Netlify/Decap CMS is not our goal, we
|
|
|
105
105
|
| GitLab GraphQL API | The GitLab backend is not yet supported. |
|
|
106
106
|
| Open Authoring | Not yet supported. |
|
|
107
107
|
| Folder Collections Path | Supported. |
|
|
108
|
-
| Folder Collections Media and Public Folder |
|
|
108
|
+
| Folder Collections Media and Public Folder | Supported. We recommend using an [absolute path per-collection folder](#use-a-custom-media-folder-for-a-collection) for easier asset management rather than a relative path per-entry folder. |
|
|
109
109
|
| List Widget: Variable Types | Supported. |
|
|
110
110
|
| Custom Mount Element | Supported. |
|
|
111
111
|
| Manual Initialization | Not yet supported. |
|
|
@@ -115,7 +115,7 @@ While recreating all the features found in Netlify/Decap CMS is not our goal, we
|
|
|
115
115
|
| Image widget file size limit | Supported. |
|
|
116
116
|
| Summary string template transformations | Supported. |
|
|
117
117
|
| Registering to CMS Events | Not yet supported. |
|
|
118
|
-
| Dynamic Default Values |
|
|
118
|
+
| Dynamic Default Values | Supported. |
|
|
119
119
|
| Nested Collections | Not yet supported. |
|
|
120
120
|
| Remark plugins | Not yet supported. |
|
|
121
121
|
|
|
@@ -124,6 +124,7 @@ While recreating all the features found in Netlify/Decap CMS is not our goal, we
|
|
|
124
124
|
- Auto-saving a draft entry is not implemented yet.
|
|
125
125
|
- Duplicating an entry is not implemented yet.
|
|
126
126
|
- Accessibility support is limited.
|
|
127
|
+
- Assets cannot be previewed when using relative path per-entry media folders.
|
|
127
128
|
|
|
128
129
|
### Roadmap
|
|
129
130
|
|
|
@@ -264,7 +265,7 @@ And combine the following policies depending on your Git backend and enabled int
|
|
|
264
265
|
|
|
265
266
|
- GitHub:
|
|
266
267
|
```csp
|
|
267
|
-
img-src https://avatars.githubusercontent.com;
|
|
268
|
+
img-src https://avatars.githubusercontent.com https://raw.githubusercontent.com;
|
|
268
269
|
connect-src https://api.github.com https://www.githubstatus.com;
|
|
269
270
|
```
|
|
270
271
|
- Pexels:
|