@sveltia/cms 0.122.1 → 0.123.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/types/public.d.ts CHANGED
@@ -659,13 +659,13 @@ export type HiddenFieldProps = {
659
659
  */
660
660
  default?: any;
661
661
  /**
662
- * Whether to enable the field in locales other than the
663
- * default. Unlike other visible fields, hidden fields can be configured to be enabled in
662
+ * Whether to enable the field in locales other than
663
+ * the default. Unlike other visible fields, hidden fields can be configured to be enabled in
664
664
  * non-default locales only when set to `duplicate`. In that case, the default locale’s value is
665
665
  * automatically copied to other locales. Default: `false`. This option only works when i18n is set
666
666
  * up with the global and collection-level `i18n` option.
667
667
  */
668
- i18n?: false | "duplicate";
668
+ i18n?: false | "duplicate" | "none";
669
669
  };
670
670
  /**
671
671
  * Hidden field definition.
@@ -1695,7 +1695,8 @@ export type EntryCollectionProps = {
1695
1695
  filter?: CollectionFilter;
1696
1696
  /**
1697
1697
  * Whether to allow users to create entries in the collection. Default:
1698
- * `false`.
1698
+ * `true`. Note that the default value is `false` in Netlify/Decap CMS, whereas Sveltia CMS sets it
1699
+ * to `true` to provide a better out-of-the-box experience.
1699
1700
  */
1700
1701
  create?: boolean;
1701
1702
  /**