@sveltia/cms 0.122.1 → 0.122.2
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 +5 -14
- package/dist/sveltia-cms.js +186 -185
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +199 -198
- package/dist/sveltia-cms.mjs.map +1 -1
- package/package.json +1 -1
- package/schema/sveltia-cms.json +1 -1
- package/types/public.d.ts +3 -3
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
|
|
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.
|