@functionalcms/svelte-components 4.11.5 → 4.11.7
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/dist/components/form/Form.svelte +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
label={translate(field.name)}
|
|
69
69
|
options={mapEntiresToOptions(field)}
|
|
70
70
|
singleSelected={$form[field.name]}
|
|
71
|
-
defaultOptionLabel={
|
|
71
|
+
defaultOptionLabel={translate('selectOption')}
|
|
72
72
|
/>
|
|
73
73
|
{:else if field.type === 'enum'}
|
|
74
74
|
<ChoiceInput
|
package/dist/index.d.ts
CHANGED
|
@@ -38,3 +38,7 @@ export { type Field, serialize, createForm, readForm, mapEntiresToOptions } from
|
|
|
38
38
|
export { default as Markdown } from './components/content/Markdown.svelte';
|
|
39
39
|
export { type BlogPost, listAllPosts, importPost } from './components/blog/blog.js';
|
|
40
40
|
export { default as EasyTools } from './components/integrations/EasyTools.svelte';
|
|
41
|
+
/**
|
|
42
|
+
* Translations
|
|
43
|
+
*/
|
|
44
|
+
export { translator } from './translations/translator.js';
|
package/dist/index.js
CHANGED
|
@@ -59,3 +59,7 @@ export { listAllPosts, importPost } from './components/blog/blog.js';
|
|
|
59
59
|
* Integrations
|
|
60
60
|
*/
|
|
61
61
|
export { default as EasyTools } from './components/integrations/EasyTools.svelte';
|
|
62
|
+
/**
|
|
63
|
+
* Translations
|
|
64
|
+
*/
|
|
65
|
+
export { translator } from './translations/translator.js';
|