@sveltia/cms 0.29.2 → 0.30.0
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 +61 -31
- package/dist/sveltia-cms.js +160 -160
- package/dist/sveltia-cms.mjs +159 -159
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -22,12 +22,14 @@ Our goal is to make it a viable successor to Netlify CMS, expand the Git-based h
|
|
|
22
22
|
|
|
23
23
|
## Development status
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
Sveltia CMS is **still in beta**, so please be careful when trying it out.
|
|
26
26
|
|
|
27
27
|
While we are fixing reported bugs as fast as we can, usually within 24 hours, the overall progress may be slower than you think. The thing is, it’s not just a personal project of [@kyoshino](https://github.com/kyoshino), but also involves different kinds of activities:
|
|
28
28
|
|
|
29
29
|
- Ensuring maximum compatibility with existing versions of Netlify/Decap CMS
|
|
30
|
-
- Tackling as many [issues reported to Netlify/Decap CMS](https://github.com/decaporg/decap-cms/issues) as possible
|
|
30
|
+
- Tackling as many [issues reported to Netlify/Decap CMS](https://github.com/decaporg/decap-cms/issues) as possible
|
|
31
|
+
- So far, 95+ of them have been effectively solved in Sveltia CMS, with the goal of solving 125 by GA and 200 in later releases.
|
|
32
|
+
- [Let us know](https://github.com/sveltia/sveltia-cms/issues/new) if you have a specific issue you’d like us to fix!
|
|
31
33
|
- Responding to user feedback
|
|
32
34
|
- Implementing our own enhancement ideas
|
|
33
35
|
|
|
@@ -39,7 +41,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
39
41
|
|
|
40
42
|
### Compatible with Netlify/Decap CMS
|
|
41
43
|
|
|
42
|
-
- Ready to
|
|
44
|
+
- Ready to be used as a drop-in replacement for Netlify/Decap CMS _in some casual use case scenarios_ with a single line of code update.
|
|
43
45
|
- Your existing [configuration file](https://decapcms.org/docs/configuration-options/) can be reused as is.
|
|
44
46
|
- Various features are still missing though — look at the [compatibility info](#compatibility) below to see if you can migrate now or soon.
|
|
45
47
|
|
|
@@ -48,7 +50,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
48
50
|
- Created and maintained by an [experienced UX engineer](https://github.com/kyoshino) who loves code, design and marketing. You can expect constant UX improvements across the platform.
|
|
49
51
|
- Offers a modern, intuitive user interface, including an immersive dark mode[^2], inspired in part by the Netlify CMS v3 prototype[^1].
|
|
50
52
|
- Comes with touch device support. While the UI is not yet optimized for small screens, large tablets like iPad Pro or Pixel Tablet should work well. Mobile support is planned after the 1.0 release.
|
|
51
|
-
- Made with Svelte, not React, means we can spend more time on UX rather than tedious state management. It also allows us to avoid fatal React app crashes[^
|
|
53
|
+
- Made with Svelte, not React, means we can spend more time on UX rather than tedious state management. It also allows us to avoid fatal React app crashes[^999]. Best of all, Svelte offers great performance!
|
|
52
54
|
- The screenshots above are worth a thousand words, but read on to learn about many other improvements in detail.
|
|
53
55
|
|
|
54
56
|
### Better performance
|
|
@@ -73,13 +75,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
73
75
|
- The editor closes automatically when an entry is saved.
|
|
74
76
|
- You can upload multiple assets at once[^5].
|
|
75
77
|
- You can delete multiple entries and assets at once.
|
|
76
|
-
- Some keyboard shortcuts are available for faster editing.
|
|
77
|
-
- View the Content Library: `Alt+1`
|
|
78
|
-
- View the Asset Library: `Alt+2`
|
|
79
|
-
- Search for entries and assets: `Ctrl+F` (Windows/Linux) or `Command+F` (macOS)
|
|
80
|
-
- Create a new entry: `Ctrl+E` (Windows/Linux) or `Command+E` (macOS)
|
|
81
|
-
- Save an entry: `Ctrl+S` (Windows/Linux) or `Command+S` (macOS)
|
|
82
|
-
- Cancel entry editing: `Escape`
|
|
78
|
+
- Some [keyboard shortcuts](#using-keyboard-shortcuts) are available for faster editing.
|
|
83
79
|
- Never miss out on the latest features and bug fixes by being notified when an update to the CMS is available[^31]. Then update to the latest version with a single click[^66].
|
|
84
80
|
|
|
85
81
|
### Better accessibility
|
|
@@ -100,7 +96,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
100
96
|
### Better backend support
|
|
101
97
|
|
|
102
98
|
- Uses the GraphQL API where possible for better performance, as mentioned above. You don’t need to set the `use_graphql` option to enable it for GitHub and GitLab.
|
|
103
|
-
- The Git branch name is automatically set to the repository’s default branch (`main`, `master` or whatever) if not specified in the configuration file, preventing data loading errors due to a hardcoded fallback to `master`[^27].
|
|
99
|
+
- The Git branch name is automatically set to the repository’s default branch (`main`, `master` or whatever) if not specified in the configuration file, preventing data loading errors due to a hardcoded fallback to `master`[^95][^27].
|
|
104
100
|
- You can [disable automatic deployments](#disabling-automatic-deployments) by default or on demand to save costs and resources associated with CI/CD and to publish multiple changes at once[^24].
|
|
105
101
|
- The GitLab backend support comes with background [service status](https://status.gitlab.com/) checking, just like GitHub. Checks are performed frequently and an incident notification is displayed prominently for both services.
|
|
106
102
|
- You can quickly open the source file of an entry or asset in your repository using View on GitHub (or GitLab) under the 3-dot menu.
|
|
@@ -125,6 +121,9 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
125
121
|
- Solves problems with Chinese, Japanese and Korean (CJK) [IME](https://en.wikipedia.org/wiki/Input_method) text input in the rich text editor for the Markdown widget[^54].
|
|
126
122
|
- You can use the `{{locale}}` template tag in the [`preview_path`](https://decapcms.org/docs/configuration-options/#preview_path) collection option to provide site preview links for each language[^63].
|
|
127
123
|
- You can [localize entry slugs](#localizing-entry-slugs) while linking the localized files[^80], thanks to the support for Hugo’s `translationKey`[^81].
|
|
124
|
+
- The List widget’s `label` and `label_singular` are not converted to lowercase, which is especially problematic in German, where all nouns are capitalized[^98].
|
|
125
|
+
- When the `clean_accents` option is enabled for entry slugs, the certain characters, such as German umlauts, will be [transliterated](https://www.npmjs.com/package/@sindresorhus/transliterate)[^99].
|
|
126
|
+
- You can embed the locale code in an entry by using `widget: hidden` along with `default: '{{locale}}'`[^101].
|
|
128
127
|
|
|
129
128
|
### Better collections
|
|
130
129
|
|
|
@@ -138,7 +137,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
138
137
|
- You can use nested fields (dot notation) in the `path` option for a folder collection, e.g. `{{fields.state.name}}/{{slug}}`[^62].
|
|
139
138
|
- You can use Markdown in collection descriptions[^79]. Bold, italic, strikethrough, code and links are allowed.
|
|
140
139
|
- 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].
|
|
141
|
-
- The Delete Entry button won’t appear when a developer accidentally sets the `delete: true` option on a file collection because
|
|
140
|
+
- The Delete Entry button won’t appear when a developer accidentally sets the `delete: true` option on a file collection because the preconfigured files should not be deleted.
|
|
142
141
|
- A folder collection filter with a boolean value works as expected[^93].
|
|
143
142
|
|
|
144
143
|
### Better content editing
|
|
@@ -152,6 +151,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
152
151
|
- Provides better scroll synchronization between the panes when editing or previewing an entry[^92].
|
|
153
152
|
- You can use a full regular expression, including flags, for the widget `pattern` option[^82]. For example, if you want to allow 280 characters or less in a multiline text field, you could write `/^.{0,280}$/s` (but you can now use the `maxlength` option instead).
|
|
154
153
|
- A long validation error message is displayed in full, without being hidden behind the field label[^59].
|
|
154
|
+
- Any links to other entries will work as expected, with the Content Editor being updated for the other[^100].
|
|
155
155
|
|
|
156
156
|
### Better data output
|
|
157
157
|
|
|
@@ -170,7 +170,10 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
170
170
|
- A DateTime field doesn’t trigger a change in the content draft status when you’ve just started editing a new entry[^90].
|
|
171
171
|
- Hidden
|
|
172
172
|
- The `default` value is saved when you create a file collection item, not just a folder collection item[^78].
|
|
173
|
+
- The `default` value supports the `{{locale}}` and `{{datetime}}` template tags, which will be replaced by the locale code and the current date/time in [ISO 8601 format](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#date_time_string_format), respectively[^101][^102].
|
|
173
174
|
- List
|
|
175
|
+
- The Add Item button appears at the bottom of the list when the `add_to_top` option is not `true`, so you don’t have to scroll up each time to add new items.
|
|
176
|
+
- You can expand or collapse the entire list, while the Expand All and Collapse All buttons allow you to expand or collapse all items in the list at once.
|
|
174
177
|
- A required List field with no subfield or value is marked as invalid[^43].
|
|
175
178
|
- An optional List field with no subfield or value is saved as an empty array, rather than nothing[^44].
|
|
176
179
|
- You can enter spaces in a simple text-based List field[^50].
|
|
@@ -187,11 +190,11 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
187
190
|
- Field options are displayed with no additional API requests[^14]. The confusing `options_length` option, which defaults to 20, is therefore ignored[^76].
|
|
188
191
|
- `slug` can be used for `value_field` to show all available options instead of just one in some situations[^91].
|
|
189
192
|
- Template strings with a wildcard like `{{cities.*.name}}` can also be used for `value_field`[^94].
|
|
190
|
-
- `display_fields` is displayed in the Preview
|
|
193
|
+
- `display_fields` is displayed in the Preview pane instead of `value_field`.
|
|
191
194
|
- The redundant `search_fields` option is not required in Sveltia CMS, as it defaults to `display_fields` (and `value_field`).
|
|
192
195
|
- Select
|
|
193
196
|
- It’s possible to select an option with value `0`[^56].
|
|
194
|
-
- `label` is displayed in the Preview
|
|
197
|
+
- `label` is displayed in the Preview pane instead of `value`.
|
|
195
198
|
- String
|
|
196
199
|
- When a YouTube video URL is entered in a String field, it appears as an embedded video in the Preview pane.
|
|
197
200
|
- Check your site’s [CSP](#setting-up-content-security-policy) if the preview doesn’t work.
|
|
@@ -229,7 +232,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
229
232
|
|
|
230
233
|
### Better asset management
|
|
231
234
|
|
|
232
|
-
- A completely new Asset Library, built separately from the image selection dialog, makes it easy to manage all of your files, including images, videos and documents.
|
|
235
|
+
- A completely new Asset Library, built separately from the image selection dialog, makes it easy to manage all of your files, including images, videos and documents[^96].
|
|
233
236
|
- Navigate between the global media folder and per-collection media folders[^6].
|
|
234
237
|
- Preview image, audio, video, text and PDF files.
|
|
235
238
|
- Check your site’s [CSP](#setting-up-content-security-policy) if the preview doesn’t work.
|
|
@@ -247,6 +250,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
247
250
|
- Assets stored in an entry-relative media folder are automatically deleted when the associated entry is deleted because these assets are not available for other entries[^22].
|
|
248
251
|
- Hidden files (dot files) don’t appear in the Asset Library[^47].
|
|
249
252
|
- You can add assets using the Quick Add button in the upper right corner of the application.
|
|
253
|
+
- Files are uploaded with their original names, without converting uppercase letters and spaces to lowercase letters and hyphens[^97].
|
|
250
254
|
|
|
251
255
|
## Compatibility
|
|
252
256
|
|
|
@@ -274,12 +278,12 @@ These limitations are expected to be resolved before GA:
|
|
|
274
278
|
| Map | Not yet supported. |
|
|
275
279
|
| Markdown | Editor components, including built-in `image` and `code-block` as well as custom components, are not yet supported. |
|
|
276
280
|
|
|
277
|
-
|
|
281
|
+
Missing other features? Let us know by [filing an issue](https://github.com/sveltia/sveltia-cms/issues/new).
|
|
278
282
|
|
|
279
283
|
### Features not to be implemented
|
|
280
284
|
|
|
281
285
|
- 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.
|
|
282
|
-
- The Bitbucket, Gitea/Forgejo and Git Gateway backends will not be supported due to performance limitations. We may implement a performant Git Gateway alternative in the future.
|
|
286
|
+
- **The Bitbucket, Gitea/Forgejo and Git Gateway backends will not be supported** due to performance limitations. We may implement a performant Git Gateway alternative in the future.
|
|
283
287
|
- The Netlify Identity Widget will not be supported, as it’s not useful without Git Gateway. We may be able to support it in the future if/when a Git Gateway alternative is created.
|
|
284
288
|
- The deprecated Netlify Large Media service will not be supported. Consider other storage providers.
|
|
285
289
|
- Sveltia CMS has dropped the support for the deprecated Date widget following Decap CMS 3.0. Use the DateTime widget instead.
|
|
@@ -369,7 +373,7 @@ Depending on your server or framework’s configuration, when you access the CMS
|
|
|
369
373
|
- Rename `/admin/index.html` to `/admin/cms.html`, and access `/admin/cms`
|
|
370
374
|
- [Specify the configuration file path](https://decapcms.org/docs/configuration-options/#configuration-file) with a `<link>` tag in `/admin/index.html`:
|
|
371
375
|
```html
|
|
372
|
-
<link href="/admin/config.yml" type="
|
|
376
|
+
<link href="/admin/config.yml" type="application/yaml" rel="cms-config-url" />
|
|
373
377
|
```
|
|
374
378
|
|
|
375
379
|
### Providing a JSON configuration file
|
|
@@ -409,7 +413,9 @@ You can use Sveltia CMS with a local Git repository like [Netlify/Decap CMS](htt
|
|
|
409
413
|
1. Open the dev site at `http://localhost:[port]/` to check the rendered pages.
|
|
410
414
|
1. Commit and push the changes if satisfied, or discard them if you’re just testing.
|
|
411
415
|
|
|
412
|
-
|
|
416
|
+
Keep in mind that the local repository support doesn’t perform any Git operations. You’ll have to manually fetch, pull, commit and push all changes using a Git client. In the near future, we’ll figure out if there’s a way to do this in a browser (because `netlify-cms-proxy-server` actually has undocumented `git` mode that allows developers to create commits to a local repository).
|
|
417
|
+
|
|
418
|
+
Also, at this point, you have to reload the CMS to see the latest content after retrieving remote updates. This will be unnecessary once browsers support the proposed `FileSystemObserver` API.
|
|
413
419
|
|
|
414
420
|
### Using a custom icon for a collection
|
|
415
421
|
|
|
@@ -466,16 +472,32 @@ Rather, if you’d like to add all the media files for a collection in one singl
|
|
|
466
472
|
|
|
467
473
|
In Sveltia CMS, those per-collection media folders are displayed prominently for easier asset management.
|
|
468
474
|
|
|
475
|
+
### Using keyboard shortcuts
|
|
476
|
+
|
|
477
|
+
- View the Content Library: `Alt+1`
|
|
478
|
+
- View the Asset Library: `Alt+2`
|
|
479
|
+
- Search for entries and assets: `Ctrl+F` (Windows/Linux) or `Command+F` (macOS)
|
|
480
|
+
- Create a new entry: `Ctrl+E` (Windows/Linux) or `Command+E` (macOS)
|
|
481
|
+
- Save an entry: `Ctrl+S` (Windows/Linux) or `Command+S` (macOS)
|
|
482
|
+
- Cancel entry editing: `Escape`
|
|
483
|
+
|
|
469
484
|
### Using DeepL to translate entry fields
|
|
470
485
|
|
|
471
486
|
Sveltia CMS comes with a handy DeepL integration so that you can translate any text field from another locale without leaving the content editor. To enable the high-quality, quick translation feature:
|
|
472
487
|
|
|
473
488
|
1. Update your configuration file to enable the [i18n support](https://decapcms.org/docs/i18n/) with multiple locales.
|
|
474
489
|
1. Sign up for [DeepL API](https://www.deepl.com/pro-api/) and copy your Authentication Key from DeepL’s Account page.
|
|
475
|
-
1.
|
|
476
|
-
1.
|
|
477
|
-
1.
|
|
478
|
-
1.
|
|
490
|
+
1. Open an entry in Sveltia CMS.
|
|
491
|
+
1. Click on the Translation button on the header or each field, right next to the 3-dot menu.
|
|
492
|
+
1. Paste your key when prompted.
|
|
493
|
+
1. The field(s) will be automatically translated.
|
|
494
|
+
|
|
495
|
+
If you have upgraded to DeepL API Pro, provide your new Authentication Key:
|
|
496
|
+
|
|
497
|
+
1. Click the Account button in the upper right corner, then click Settings.
|
|
498
|
+
1. Select the Language tab.
|
|
499
|
+
1. Paste your key to the DeepL API Authentication Key field.
|
|
500
|
+
1. Close the Settings dialog.
|
|
479
501
|
|
|
480
502
|
### Localizing entry slugs
|
|
481
503
|
|
|
@@ -694,7 +716,7 @@ img-src 'self' blob: data: https://*;
|
|
|
694
716
|
|
|
695
717
|
Visit the [Discussions](https://github.com/sveltia/sveltia-cms/discussions) page on this GitHub repository and start a new discussion. Tell us about your use cases!
|
|
696
718
|
|
|
697
|
-
|
|
719
|
+
Looking to build a website with Sveltia CMS? Maintainer [@kyoshino](https://github.com/kyoshino) is available for hire depending on your requirements. Feel free to reach out!
|
|
698
720
|
|
|
699
721
|
## Contributions
|
|
700
722
|
|
|
@@ -702,7 +724,7 @@ Since Sveltia CMS is still in beta, we expect various problems. Please [report a
|
|
|
702
724
|
|
|
703
725
|
Tips are always welcome! The project hasn’t set up a sponsorship program, but maintainer [@kyoshino](https://github.com/kyoshino) has a [PayPal account](https://paypal.me/kohei).
|
|
704
726
|
|
|
705
|
-
Last but not least, don’t forget to star this project and spread the word so more users can benefit from
|
|
727
|
+
Last but not least, don’t forget to star this project and spread the word so more users can benefit from a better CMS experience!
|
|
706
728
|
|
|
707
729
|
## Related links
|
|
708
730
|
|
|
@@ -725,7 +747,7 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
725
747
|
[^6]: Netlify/Decap CMS [#3240](https://github.com/decaporg/decap-cms/issues/3240)
|
|
726
748
|
[^7]: Netlify/Decap CMS [#4386](https://github.com/decaporg/decap-cms/issues/4386)
|
|
727
749
|
[^8]: Netlify/Decap CMS [#2579](https://github.com/decaporg/decap-cms/issues/2579)
|
|
728
|
-
[^9]: Netlify/Decap CMS [#3505](https://github.com/decaporg/decap-cms/issues/3505)
|
|
750
|
+
[^9]: Netlify/Decap CMS [#3505](https://github.com/decaporg/decap-cms/issues/3505), [#4211](https://github.com/decaporg/decap-cms/issues/4211)
|
|
729
751
|
[^10]: Netlify/Decap CMS [#341](https://github.com/decaporg/decap-cms/issues/341), [#1167](https://github.com/decaporg/decap-cms/issues/1167)
|
|
730
752
|
[^11]: Netlify/Decap CMS [#1382](https://github.com/decaporg/decap-cms/issues/1382)
|
|
731
753
|
[^12]: Netlify/Decap CMS [#1975](https://github.com/decaporg/decap-cms/issues/1975), [#3712](https://github.com/decaporg/decap-cms/issues/3712)
|
|
@@ -744,7 +766,7 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
744
766
|
[^25]: Netlify/Decap CMS [#526](https://github.com/decaporg/decap-cms/issues/526), [#6987](https://github.com/decaporg/decap-cms/issues/6987)
|
|
745
767
|
[^26]: Netlify/Decap CMS [#3285](https://github.com/decaporg/decap-cms/issues/3285)
|
|
746
768
|
[^27]: Netlify/Decap CMS [#3285](https://github.com/decaporg/decap-cms/issues/5617)
|
|
747
|
-
[^28]: Netlify/Decap CMS [#6836](https://github.com/decaporg/decap-cms/pull/6836)
|
|
769
|
+
[^28]: Netlify/Decap CMS [#2677](https://github.com/decaporg/decap-cms/pull/2677), [#6836](https://github.com/decaporg/decap-cms/pull/6836)
|
|
748
770
|
[^29]: Netlify/Decap CMS [#4783](https://github.com/decaporg/decap-cms/issues/4783)
|
|
749
771
|
[^30]: Netlify/Decap CMS [#565](https://github.com/decaporg/decap-cms/issues/565)
|
|
750
772
|
[^31]: Netlify/Decap CMS [#1045](https://github.com/decaporg/decap-cms/issues/1045)
|
|
@@ -759,7 +781,7 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
759
781
|
[^40]: Netlify/Decap CMS [#5630](https://github.com/decaporg/decap-cms/issues/5630)
|
|
760
782
|
[^41]: Netlify/Decap CMS [#7011](https://github.com/decaporg/decap-cms/issues/7011)
|
|
761
783
|
[^42]: Netlify/Decap CMS [#2307](https://github.com/decaporg/decap-cms/issues/2307)
|
|
762
|
-
[^43]: Netlify/Decap CMS [#5381](https://github.com/decaporg/decap-cms/issues/5381)
|
|
784
|
+
[^43]: Netlify/Decap CMS [#4387](https://github.com/decaporg/decap-cms/issues/4387), [#5381](https://github.com/decaporg/decap-cms/issues/5381)
|
|
763
785
|
[^44]: Netlify/Decap CMS [#2613](https://github.com/decaporg/decap-cms/issues/2613)
|
|
764
786
|
[^45]: Netlify/Decap CMS [#1424](https://github.com/decaporg/decap-cms/issues/1424)
|
|
765
787
|
[^46]: Netlify/Decap CMS [#4726](https://github.com/decaporg/decap-cms/issues/4726)
|
|
@@ -777,7 +799,7 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
777
799
|
[^58]: Netlify/Decap CMS [#5125](https://github.com/decaporg/decap-cms/issues/5125)
|
|
778
800
|
[^59]: Netlify/Decap CMS [#1654](https://github.com/decaporg/decap-cms/issues/1654)
|
|
779
801
|
[^60]: Netlify/Decap CMS [#386](https://github.com/decaporg/decap-cms/issues/386)
|
|
780
|
-
[^61]: Netlify/Decap CMS [#1489](https://github.com/decaporg/decap-cms/issues/1489)
|
|
802
|
+
[^61]: Netlify/Decap CMS [#1489](https://github.com/decaporg/decap-cms/issues/1489), [#5838](https://github.com/decaporg/decap-cms/issues/5838)
|
|
781
803
|
[^62]: Netlify/Decap CMS [#7192](https://github.com/decaporg/decap-cms/issues/7192)
|
|
782
804
|
[^63]: Netlify/Decap CMS [#4877](https://github.com/decaporg/decap-cms/issues/4877)
|
|
783
805
|
[^64]: Netlify/Decap CMS [#3853](https://github.com/decaporg/decap-cms/issues/3853)
|
|
@@ -811,4 +833,12 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
811
833
|
[^92]: Netlify/Decap CMS [#1466](https://github.com/decaporg/decap-cms/issues/1466)
|
|
812
834
|
[^93]: Netlify/Decap CMS [#1000](https://github.com/decaporg/decap-cms/issues/1000)
|
|
813
835
|
[^94]: Netlify/Decap CMS [#5487](https://github.com/decaporg/decap-cms/issues/5487)
|
|
814
|
-
[^
|
|
836
|
+
[^95]: Netlify/Decap CMS [#4417](https://github.com/decaporg/decap-cms/issues/4417)
|
|
837
|
+
[^96]: Netlify/Decap CMS [#962](https://github.com/decaporg/decap-cms/issues/962)
|
|
838
|
+
[^97]: Netlify/Decap CMS [#4288](https://github.com/decaporg/decap-cms/issues/4288)
|
|
839
|
+
[^98]: Netlify/Decap CMS [#3856](https://github.com/decaporg/decap-cms/issues/3856)
|
|
840
|
+
[^99]: Netlify/Decap CMS [#1685](https://github.com/decaporg/decap-cms/issues/1685)
|
|
841
|
+
[^100]: Netlify/Decap CMS [#4147](https://github.com/decaporg/decap-cms/issues/4147)
|
|
842
|
+
[^101]: Netlify/Decap CMS [#5969](https://github.com/decaporg/decap-cms/issues/5969)
|
|
843
|
+
[^102]: Netlify/Decap CMS [#1270](https://github.com/decaporg/decap-cms/issues/1270)
|
|
844
|
+
[^999]: Netlify/Decap CMS [#5656](https://github.com/decaporg/decap-cms/issues/5656), [#5837](https://github.com/decaporg/decap-cms/issues/5837), [#5972](https://github.com/decaporg/decap-cms/issues/5972), [#6476](https://github.com/decaporg/decap-cms/issues/6476), [#6516](https://github.com/decaporg/decap-cms/issues/6516), [#6930](https://github.com/decaporg/decap-cms/issues/6930), [#6965](https://github.com/decaporg/decap-cms/issues/6965), [#7080](https://github.com/decaporg/decap-cms/issues/7080), [#7105](https://github.com/decaporg/decap-cms/issues/7105), [#7106](https://github.com/decaporg/decap-cms/issues/7106), [#7119](https://github.com/decaporg/decap-cms/issues/7119), [#7176](https://github.com/decaporg/decap-cms/issues/7176), [#7194](https://github.com/decaporg/decap-cms/issues/7194) — These `removeChild` crashes are common in React apps and seem to be caused by a [browser extension](https://github.com/facebook/react/issues/17256) or [Google Translate](https://github.com/facebook/react/issues/11538).
|