@sveltia/cms 0.31.2 → 0.32.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 CHANGED
@@ -101,7 +101,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
101
101
 
102
102
  - Some servers and frameworks remove the trailing slash from the CMS URL (`/admin`) depending on the configuration. In such cases, the config file is loaded from a root-relative URL (`/admin/config.yml`) instead of a regular relative URL (`./config.yml` = `/config.yml`) that results in a 404 Not Found error[^107].
103
103
  - Supports a [JSON configuration file](#providing-a-json-configuration-file) that can be generated for bulk or complex collections[^60].
104
- - The application renders within the dimensions of the custom mount element (`<div id="nc-root">`), if it exists[^109].
104
+ - The application renders within the dimensions of a [custom mount element](https://decapcms.org/docs/custom-mounting/), if it exists[^109].
105
105
 
106
106
  ### Better backend support
107
107
 
@@ -150,7 +150,8 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
150
150
  - 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].
151
151
  - 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.
152
152
  - A folder collection filter with a boolean value works as expected[^93].
153
- - Sort by a DateTime field works as expected[^110].
153
+ - Sorting entries by a DateTime field works as expected[^110].
154
+ - You can use the `thumbnail` option for a collection to specify the field name for an entry thumbnail displayed on the entry list. A nested field can be specified using dot notation, e.g. `images.0.src`. If omitted, the `name` of the first image field is used.
154
155
  - Improved entry slugs
155
156
  - You can [use a random UUID for an entry slug](#using-a-random-id-for-an-entry-slug).
156
157
  - Entry slug template tags support [filter transformations](https://decapcms.org/docs/summary-strings/) just like summary string template tags[^29].