@intlayer/design-system 9.0.0-canary.0 → 9.0.0-canary.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/dist/esm/api/hooks/ai.mjs +20 -1
- package/dist/esm/api/hooks/ai.mjs.map +1 -1
- package/dist/esm/api/hooks/asset.mjs +78 -0
- package/dist/esm/api/hooks/asset.mjs.map +1 -0
- package/dist/esm/api/index.mjs +6 -5
- package/dist/esm/api/useIntlayerAPI.mjs +6 -1
- package/dist/esm/api/useIntlayerAPI.mjs.map +1 -1
- package/dist/esm/components/Command/index.mjs +8 -8
- package/dist/esm/components/Command/index.mjs.map +1 -1
- package/dist/esm/components/ContentEditor/ContentEditorTextArea.mjs +1 -1
- package/dist/esm/components/DictionaryFieldEditor/ContentEditor.mjs +132 -35
- package/dist/esm/components/DictionaryFieldEditor/ContentEditor.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/ContentEditorView/TextEditor.mjs +33 -11
- package/dist/esm/components/DictionaryFieldEditor/ContentEditorView/TextEditor.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.mjs +146 -35
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs +308 -0
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.mjs +12 -2
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.mjs +460 -20
- package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.mjs +506 -0
- package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryFieldEditor.mjs +10 -6
- package/dist/esm/components/DictionaryFieldEditor/DictionaryFieldEditor.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/NavigationView/NavigationViewNode.mjs +1 -1
- package/dist/esm/components/DictionaryFieldEditor/SaveForm/SaveForm.mjs +9 -9
- package/dist/esm/components/DictionaryFieldEditor/SaveForm/SaveForm.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/StructureView/StructureView.mjs +2 -2
- package/dist/esm/components/DictionaryFieldEditor/StructureView/StructureView.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/contentEditor.content.mjs +79 -0
- package/dist/esm/components/DictionaryFieldEditor/contentEditor.content.mjs.map +1 -0
- package/dist/esm/components/Form/Form.mjs +3 -43
- package/dist/esm/components/Form/Form.mjs.map +1 -1
- package/dist/esm/components/Form/elements/FormElement.mjs +2 -3
- package/dist/esm/components/Form/elements/FormElement.mjs.map +1 -1
- package/dist/esm/components/Form/elements/MultiselectElement.mjs +2 -3
- package/dist/esm/components/Form/elements/MultiselectElement.mjs.map +1 -1
- package/dist/esm/components/Form/elements/OTPElement.mjs +3 -4
- package/dist/esm/components/Form/elements/OTPElement.mjs.map +1 -1
- package/dist/esm/components/Form/elements/SelectElement.mjs +2 -3
- package/dist/esm/components/Form/elements/SelectElement.mjs.map +1 -1
- package/dist/esm/components/Form/elements/SwitchSelectorElement.mjs +2 -3
- package/dist/esm/components/Form/elements/SwitchSelectorElement.mjs.map +1 -1
- package/dist/esm/components/Form/index.mjs +21 -2
- package/dist/esm/components/Form/layout/FormItemLayout.mjs +8 -5
- package/dist/esm/components/Form/layout/FormItemLayout.mjs.map +1 -1
- package/dist/esm/components/LanguageBackground/LanguageBackground.mjs +3 -8
- package/dist/esm/components/LanguageBackground/LanguageBackground.mjs.map +1 -1
- package/dist/esm/components/LocaleSwitcherContentDropDown/LocaleSwitcherContent.mjs +1 -1
- package/dist/esm/components/MarkDownRender/MarkDownRender.mjs +1 -1
- package/dist/esm/components/MarkDownRender/MarkDownRender.mjs.map +1 -1
- package/dist/esm/components/MarkdownEditor/MarkdownEditor.mjs +113 -0
- package/dist/esm/components/MarkdownEditor/MarkdownEditor.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/extensions.mjs +103 -0
- package/dist/esm/components/MarkdownEditor/extensions.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/generative/AICompletionCommands.mjs +51 -0
- package/dist/esm/components/MarkdownEditor/generative/AICompletionCommands.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/generative/AISelector.mjs +100 -0
- package/dist/esm/components/MarkdownEditor/generative/AISelector.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/generative/AISelectorCommands.mjs +81 -0
- package/dist/esm/components/MarkdownEditor/generative/AISelectorCommands.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/generative/GenerativeMenuSwitch.mjs +47 -0
- package/dist/esm/components/MarkdownEditor/generative/GenerativeMenuSwitch.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/generative/useAICompletion.mjs +83 -0
- package/dist/esm/components/MarkdownEditor/generative/useAICompletion.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/imageUpload.mjs +47 -0
- package/dist/esm/components/MarkdownEditor/imageUpload.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/index.mjs +4 -0
- package/dist/esm/components/MarkdownEditor/markdownEditor.content.mjs +1140 -0
- package/dist/esm/components/MarkdownEditor/markdownEditor.content.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor-bubble-item.mjs +20 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor-bubble-item.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor-bubble.mjs +39 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor-bubble.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor-command-item.mjs +25 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor-command-item.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor-command.mjs +61 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor-command.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor.mjs +27 -0
- package/dist/esm/components/MarkdownEditor/novel/components/editor.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/components/index.mjs +8 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/ai-highlight.mjs +74 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/ai-highlight.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/custom-keymap.mjs +37 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/custom-keymap.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/image-resizer.mjs +49 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/image-resizer.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/index.mjs +51 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/index.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/slash-command.mjs +79 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/slash-command.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/updated-image.mjs +17 -0
- package/dist/esm/components/MarkdownEditor/novel/extensions/updated-image.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/index.mjs +17 -0
- package/dist/esm/components/MarkdownEditor/novel/plugins/index.mjs +3 -0
- package/dist/esm/components/MarkdownEditor/novel/plugins/upload-images.mjs +92 -0
- package/dist/esm/components/MarkdownEditor/novel/plugins/upload-images.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/utils/atoms.mjs +39 -0
- package/dist/esm/components/MarkdownEditor/novel/utils/atoms.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/novel/utils/index.mjs +38 -0
- package/dist/esm/components/MarkdownEditor/novel/utils/index.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/selectors/ColorSelector.mjs +176 -0
- package/dist/esm/components/MarkdownEditor/selectors/ColorSelector.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/selectors/LinkSelector.mjs +95 -0
- package/dist/esm/components/MarkdownEditor/selectors/LinkSelector.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/selectors/NodeSelector.mjs +139 -0
- package/dist/esm/components/MarkdownEditor/selectors/NodeSelector.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/selectors/TextButtons.mjs +81 -0
- package/dist/esm/components/MarkdownEditor/selectors/TextButtons.mjs.map +1 -0
- package/dist/esm/components/MarkdownEditor/slashCommand.mjs +161 -0
- package/dist/esm/components/MarkdownEditor/slashCommand.mjs.map +1 -0
- package/dist/esm/components/Modal/Modal.mjs +2 -2
- package/dist/esm/components/Navbar/MobileNavbar.mjs +1 -1
- package/dist/esm/components/Pagination/Pagination.mjs +1 -1
- package/dist/esm/components/Pattern/GridDistortionPattern.mjs +275 -0
- package/dist/esm/components/Pattern/GridDistortionPattern.mjs.map +1 -0
- package/dist/esm/components/Pattern/index.mjs +2 -1
- package/dist/esm/components/RightDrawer/RightDrawer.mjs +3 -3
- package/dist/esm/components/Tab/Tab.mjs +1 -1
- package/dist/esm/components/Table/Table.mjs +1 -1
- package/dist/esm/components/Table/Table.mjs.map +1 -1
- package/dist/esm/components/Tag/index.mjs +0 -9
- package/dist/esm/components/Tag/index.mjs.map +1 -1
- package/dist/esm/components/Toaster/Toast.mjs +1 -1
- package/dist/esm/components/Toaster/Toast.mjs.map +1 -1
- package/dist/esm/components/index.mjs +27 -6
- package/dist/esm/hooks/index.mjs +8 -8
- package/dist/esm/hooks/useIsMounted.mjs +4 -2
- package/dist/esm/hooks/useIsMounted.mjs.map +1 -1
- package/dist/esm/routes.mjs +2 -1
- package/dist/esm/routes.mjs.map +1 -1
- package/dist/types/api/hooks/ai.d.ts +5 -1
- package/dist/types/api/hooks/ai.d.ts.map +1 -1
- package/dist/types/api/hooks/asset.d.ts +27 -0
- package/dist/types/api/hooks/asset.d.ts.map +1 -0
- package/dist/types/api/hooks/audit.d.ts +1 -1
- package/dist/types/api/index.d.ts +4 -3
- package/dist/types/api/useIntlayerAPI.d.ts +15 -3
- package/dist/types/api/useIntlayerAPI.d.ts.map +1 -1
- package/dist/types/components/Badge/index.d.ts +1 -1
- package/dist/types/components/Breadcrumb/index.d.ts +1 -1
- package/dist/types/components/Button/Button.d.ts +3 -3
- package/dist/types/components/CollapsibleTable/CollapsibleTable.d.ts +2 -2
- package/dist/types/components/Command/index.d.ts.map +1 -1
- package/dist/types/components/Container/index.d.ts +1 -1
- package/dist/types/components/DictionaryFieldEditor/ContentEditor.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/ContentEditorView/TextEditor.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts +308 -0
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.d.ts +12 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.d.ts +2 -0
- package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.d.ts +506 -0
- package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryFieldEditor.d.ts +2 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryFieldEditor.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/contentEditor.content.d.ts +80 -0
- package/dist/types/components/DictionaryFieldEditor/contentEditor.content.d.ts.map +1 -0
- package/dist/types/components/Form/Form.d.ts +27 -47
- package/dist/types/components/Form/Form.d.ts.map +1 -1
- package/dist/types/components/Form/elements/FormElement.d.ts.map +1 -1
- package/dist/types/components/Form/elements/MultiselectElement.d.ts.map +1 -1
- package/dist/types/components/Form/elements/OTPElement.d.ts.map +1 -1
- package/dist/types/components/Form/elements/SelectElement.d.ts.map +1 -1
- package/dist/types/components/Form/elements/SwitchSelectorElement.d.ts.map +1 -1
- package/dist/types/components/Form/index.d.ts +22 -3
- package/dist/types/components/Form/layout/FormItemLayout.d.ts.map +1 -1
- package/dist/types/components/Input/Checkbox.d.ts +3 -3
- package/dist/types/components/Input/Input.d.ts +1 -1
- package/dist/types/components/Input/Radio.d.ts +3 -3
- package/dist/types/components/LanguageBackground/LanguageBackground.d.ts.map +1 -1
- package/dist/types/components/Link/Link.d.ts +1 -1
- package/dist/types/components/MarkdownEditor/MarkdownEditor.d.ts +31 -0
- package/dist/types/components/MarkdownEditor/MarkdownEditor.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/extensions.d.ts +11 -0
- package/dist/types/components/MarkdownEditor/extensions.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/generative/AICompletionCommands.d.ts +18 -0
- package/dist/types/components/MarkdownEditor/generative/AICompletionCommands.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/generative/AISelector.d.ts +22 -0
- package/dist/types/components/MarkdownEditor/generative/AISelector.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/generative/AISelectorCommands.d.ts +17 -0
- package/dist/types/components/MarkdownEditor/generative/AISelectorCommands.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/generative/GenerativeMenuSwitch.d.ts +26 -0
- package/dist/types/components/MarkdownEditor/generative/GenerativeMenuSwitch.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/generative/useAICompletion.d.ts +30 -0
- package/dist/types/components/MarkdownEditor/generative/useAICompletion.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/imageUpload.d.ts +29 -0
- package/dist/types/components/MarkdownEditor/imageUpload.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/index.d.ts +3 -0
- package/dist/types/components/MarkdownEditor/markdownEditor.content.d.ts +1135 -0
- package/dist/types/components/MarkdownEditor/markdownEditor.content.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor-bubble-item.d.ts +14 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor-bubble-item.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor-bubble.d.ts +18 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor-bubble.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor-command-item.d.ts +28 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor-command-item.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor-command.d.ts +34 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor-command.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor.d.ts +23 -0
- package/dist/types/components/MarkdownEditor/novel/components/editor.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/components/index.d.ts +8 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/ai-highlight.d.ts +36 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/ai-highlight.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/custom-keymap.d.ts +17 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/custom-keymap.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/image-resizer.d.ts +7 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/image-resizer.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/index.d.ts +30 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/index.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/slash-command.d.ts +38 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/slash-command.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/updated-image.d.ts +8 -0
- package/dist/types/components/MarkdownEditor/novel/extensions/updated-image.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/index.d.ts +16 -0
- package/dist/types/components/MarkdownEditor/novel/plugins/index.d.ts +2 -0
- package/dist/types/components/MarkdownEditor/novel/plugins/upload-images.d.ts +22 -0
- package/dist/types/components/MarkdownEditor/novel/plugins/upload-images.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/utils/atoms.d.ts +21 -0
- package/dist/types/components/MarkdownEditor/novel/utils/atoms.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/novel/utils/index.d.ts +10 -0
- package/dist/types/components/MarkdownEditor/novel/utils/index.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/selectors/ColorSelector.d.ts +17 -0
- package/dist/types/components/MarkdownEditor/selectors/ColorSelector.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/selectors/LinkSelector.d.ts +15 -0
- package/dist/types/components/MarkdownEditor/selectors/LinkSelector.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/selectors/NodeSelector.d.ts +22 -0
- package/dist/types/components/MarkdownEditor/selectors/NodeSelector.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/selectors/TextButtons.d.ts +11 -0
- package/dist/types/components/MarkdownEditor/selectors/TextButtons.d.ts.map +1 -0
- package/dist/types/components/MarkdownEditor/slashCommand.d.ts +29 -0
- package/dist/types/components/MarkdownEditor/slashCommand.d.ts.map +1 -0
- package/dist/types/components/Pattern/GridDistortionPattern.d.ts +15 -0
- package/dist/types/components/Pattern/GridDistortionPattern.d.ts.map +1 -0
- package/dist/types/components/Pattern/index.d.ts +2 -1
- package/dist/types/components/SwitchSelector/SwitchSelector.d.ts +1 -1
- package/dist/types/components/SwitchSelector/VerticalSwitchSelector.d.ts +1 -1
- package/dist/types/components/Tag/index.d.ts +2 -2
- package/dist/types/components/Tag/index.d.ts.map +1 -1
- package/dist/types/components/Toaster/Toast.d.ts +1 -1
- package/dist/types/components/index.d.ts +24 -3
- package/dist/types/routes.d.ts +2 -1
- package/dist/types/routes.d.ts.map +1 -1
- package/package.json +63 -32
- package/src/components/MarkdownEditor/markdown-editor.css +297 -0
package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.d.ts
CHANGED
|
@@ -541,6 +541,512 @@ declare const dictionaryDetailsContent: {
|
|
|
541
541
|
uk: string;
|
|
542
542
|
}>;
|
|
543
543
|
};
|
|
544
|
+
qualifierSection: {
|
|
545
|
+
title: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
546
|
+
en: string;
|
|
547
|
+
'en-GB': string;
|
|
548
|
+
fr: string;
|
|
549
|
+
es: string;
|
|
550
|
+
de: string;
|
|
551
|
+
ja: string;
|
|
552
|
+
ko: string;
|
|
553
|
+
zh: string;
|
|
554
|
+
it: string;
|
|
555
|
+
pt: string;
|
|
556
|
+
hi: string;
|
|
557
|
+
ar: string;
|
|
558
|
+
ru: string;
|
|
559
|
+
tr: string;
|
|
560
|
+
pl: string;
|
|
561
|
+
id: string;
|
|
562
|
+
vi: string;
|
|
563
|
+
uk: string;
|
|
564
|
+
}>;
|
|
565
|
+
item: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
566
|
+
en: string;
|
|
567
|
+
'en-GB': string;
|
|
568
|
+
fr: string;
|
|
569
|
+
es: string;
|
|
570
|
+
de: string;
|
|
571
|
+
ja: string;
|
|
572
|
+
ko: string;
|
|
573
|
+
zh: string;
|
|
574
|
+
it: string;
|
|
575
|
+
pt: string;
|
|
576
|
+
hi: string;
|
|
577
|
+
ar: string;
|
|
578
|
+
ru: string;
|
|
579
|
+
tr: string;
|
|
580
|
+
pl: string;
|
|
581
|
+
id: string;
|
|
582
|
+
vi: string;
|
|
583
|
+
uk: string;
|
|
584
|
+
}>;
|
|
585
|
+
variant: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
586
|
+
en: string;
|
|
587
|
+
'en-GB': string;
|
|
588
|
+
fr: string;
|
|
589
|
+
es: string;
|
|
590
|
+
de: string;
|
|
591
|
+
ja: string;
|
|
592
|
+
ko: string;
|
|
593
|
+
zh: string;
|
|
594
|
+
it: string;
|
|
595
|
+
pt: string;
|
|
596
|
+
hi: string;
|
|
597
|
+
ar: string;
|
|
598
|
+
ru: string;
|
|
599
|
+
tr: string;
|
|
600
|
+
pl: string;
|
|
601
|
+
id: string;
|
|
602
|
+
vi: string;
|
|
603
|
+
uk: string;
|
|
604
|
+
}>;
|
|
605
|
+
meta: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
606
|
+
en: string;
|
|
607
|
+
'en-GB': string;
|
|
608
|
+
fr: string;
|
|
609
|
+
es: string;
|
|
610
|
+
de: string;
|
|
611
|
+
ja: string;
|
|
612
|
+
ko: string;
|
|
613
|
+
zh: string;
|
|
614
|
+
it: string;
|
|
615
|
+
pt: string;
|
|
616
|
+
hi: string;
|
|
617
|
+
ar: string;
|
|
618
|
+
ru: string;
|
|
619
|
+
tr: string;
|
|
620
|
+
pl: string;
|
|
621
|
+
id: string;
|
|
622
|
+
vi: string;
|
|
623
|
+
uk: string;
|
|
624
|
+
}>;
|
|
625
|
+
};
|
|
626
|
+
siblingDictionaries: {
|
|
627
|
+
title: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
628
|
+
en: string;
|
|
629
|
+
'en-GB': string;
|
|
630
|
+
fr: string;
|
|
631
|
+
es: string;
|
|
632
|
+
de: string;
|
|
633
|
+
ja: string;
|
|
634
|
+
ko: string;
|
|
635
|
+
zh: string;
|
|
636
|
+
it: string;
|
|
637
|
+
pt: string;
|
|
638
|
+
hi: string;
|
|
639
|
+
ar: string;
|
|
640
|
+
ru: string;
|
|
641
|
+
tr: string;
|
|
642
|
+
pl: string;
|
|
643
|
+
id: string;
|
|
644
|
+
vi: string;
|
|
645
|
+
uk: string;
|
|
646
|
+
}>;
|
|
647
|
+
noSiblings: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
648
|
+
en: string;
|
|
649
|
+
'en-GB': string;
|
|
650
|
+
fr: string;
|
|
651
|
+
es: string;
|
|
652
|
+
de: string;
|
|
653
|
+
ja: string;
|
|
654
|
+
ko: string;
|
|
655
|
+
zh: string;
|
|
656
|
+
it: string;
|
|
657
|
+
pt: string;
|
|
658
|
+
hi: string;
|
|
659
|
+
ar: string;
|
|
660
|
+
ru: string;
|
|
661
|
+
tr: string;
|
|
662
|
+
pl: string;
|
|
663
|
+
id: string;
|
|
664
|
+
vi: string;
|
|
665
|
+
uk: string;
|
|
666
|
+
}>;
|
|
667
|
+
collectionItems: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
668
|
+
en: string;
|
|
669
|
+
'en-GB': string;
|
|
670
|
+
fr: string;
|
|
671
|
+
es: string;
|
|
672
|
+
de: string;
|
|
673
|
+
ja: string;
|
|
674
|
+
ko: string;
|
|
675
|
+
zh: string;
|
|
676
|
+
it: string;
|
|
677
|
+
pt: string;
|
|
678
|
+
hi: string;
|
|
679
|
+
ar: string;
|
|
680
|
+
ru: string;
|
|
681
|
+
tr: string;
|
|
682
|
+
pl: string;
|
|
683
|
+
id: string;
|
|
684
|
+
vi: string;
|
|
685
|
+
uk: string;
|
|
686
|
+
}>;
|
|
687
|
+
variants: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
688
|
+
en: string;
|
|
689
|
+
'en-GB': string;
|
|
690
|
+
fr: string;
|
|
691
|
+
es: string;
|
|
692
|
+
de: string;
|
|
693
|
+
ja: string;
|
|
694
|
+
ko: string;
|
|
695
|
+
zh: string;
|
|
696
|
+
it: string;
|
|
697
|
+
pt: string;
|
|
698
|
+
hi: string;
|
|
699
|
+
ar: string;
|
|
700
|
+
ru: string;
|
|
701
|
+
tr: string;
|
|
702
|
+
pl: string;
|
|
703
|
+
id: string;
|
|
704
|
+
vi: string;
|
|
705
|
+
uk: string;
|
|
706
|
+
}>;
|
|
707
|
+
metaRecords: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
708
|
+
en: string;
|
|
709
|
+
'en-GB': string;
|
|
710
|
+
fr: string;
|
|
711
|
+
es: string;
|
|
712
|
+
de: string;
|
|
713
|
+
ja: string;
|
|
714
|
+
ko: string;
|
|
715
|
+
zh: string;
|
|
716
|
+
it: string;
|
|
717
|
+
pt: string;
|
|
718
|
+
hi: string;
|
|
719
|
+
ar: string;
|
|
720
|
+
ru: string;
|
|
721
|
+
tr: string;
|
|
722
|
+
pl: string;
|
|
723
|
+
id: string;
|
|
724
|
+
vi: string;
|
|
725
|
+
uk: string;
|
|
726
|
+
}>;
|
|
727
|
+
itemIndex: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
728
|
+
en: string;
|
|
729
|
+
'en-GB': string;
|
|
730
|
+
fr: string;
|
|
731
|
+
es: string;
|
|
732
|
+
de: string;
|
|
733
|
+
ja: string;
|
|
734
|
+
ko: string;
|
|
735
|
+
zh: string;
|
|
736
|
+
it: string;
|
|
737
|
+
pt: string;
|
|
738
|
+
hi: string;
|
|
739
|
+
ar: string;
|
|
740
|
+
ru: string;
|
|
741
|
+
tr: string;
|
|
742
|
+
pl: string;
|
|
743
|
+
id: string;
|
|
744
|
+
vi: string;
|
|
745
|
+
uk: string;
|
|
746
|
+
}>;
|
|
747
|
+
};
|
|
748
|
+
typeSwitch: {
|
|
749
|
+
label: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
750
|
+
en: string;
|
|
751
|
+
'en-GB': string;
|
|
752
|
+
fr: string;
|
|
753
|
+
es: string;
|
|
754
|
+
de: string;
|
|
755
|
+
ja: string;
|
|
756
|
+
ko: string;
|
|
757
|
+
zh: string;
|
|
758
|
+
it: string;
|
|
759
|
+
pt: string;
|
|
760
|
+
hi: string;
|
|
761
|
+
ar: string;
|
|
762
|
+
ru: string;
|
|
763
|
+
tr: string;
|
|
764
|
+
pl: string;
|
|
765
|
+
id: string;
|
|
766
|
+
vi: string;
|
|
767
|
+
uk: string;
|
|
768
|
+
}>;
|
|
769
|
+
description: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
770
|
+
en: string;
|
|
771
|
+
'en-GB': string;
|
|
772
|
+
fr: string;
|
|
773
|
+
es: string;
|
|
774
|
+
de: string;
|
|
775
|
+
ja: string;
|
|
776
|
+
ko: string;
|
|
777
|
+
zh: string;
|
|
778
|
+
it: string;
|
|
779
|
+
pt: string;
|
|
780
|
+
hi: string;
|
|
781
|
+
ar: string;
|
|
782
|
+
ru: string;
|
|
783
|
+
tr: string;
|
|
784
|
+
pl: string;
|
|
785
|
+
id: string;
|
|
786
|
+
vi: string;
|
|
787
|
+
uk: string;
|
|
788
|
+
}>;
|
|
789
|
+
standard: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
790
|
+
en: string;
|
|
791
|
+
'en-GB': string;
|
|
792
|
+
fr: string;
|
|
793
|
+
es: string;
|
|
794
|
+
de: string;
|
|
795
|
+
ja: string;
|
|
796
|
+
ko: string;
|
|
797
|
+
zh: string;
|
|
798
|
+
it: string;
|
|
799
|
+
pt: string;
|
|
800
|
+
hi: string;
|
|
801
|
+
ar: string;
|
|
802
|
+
ru: string;
|
|
803
|
+
tr: string;
|
|
804
|
+
pl: string;
|
|
805
|
+
id: string;
|
|
806
|
+
vi: string;
|
|
807
|
+
uk: string;
|
|
808
|
+
}>;
|
|
809
|
+
collection: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
810
|
+
en: string;
|
|
811
|
+
'en-GB': string;
|
|
812
|
+
fr: string;
|
|
813
|
+
es: string;
|
|
814
|
+
de: string;
|
|
815
|
+
ja: string;
|
|
816
|
+
ko: string;
|
|
817
|
+
zh: string;
|
|
818
|
+
it: string;
|
|
819
|
+
pt: string;
|
|
820
|
+
hi: string;
|
|
821
|
+
ar: string;
|
|
822
|
+
ru: string;
|
|
823
|
+
tr: string;
|
|
824
|
+
pl: string;
|
|
825
|
+
id: string;
|
|
826
|
+
vi: string;
|
|
827
|
+
uk: string;
|
|
828
|
+
}>;
|
|
829
|
+
variant: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
830
|
+
en: string;
|
|
831
|
+
'en-GB': string;
|
|
832
|
+
fr: string;
|
|
833
|
+
es: string;
|
|
834
|
+
de: string;
|
|
835
|
+
ja: string;
|
|
836
|
+
ko: string;
|
|
837
|
+
zh: string;
|
|
838
|
+
it: string;
|
|
839
|
+
pt: string;
|
|
840
|
+
hi: string;
|
|
841
|
+
ar: string;
|
|
842
|
+
ru: string;
|
|
843
|
+
tr: string;
|
|
844
|
+
pl: string;
|
|
845
|
+
id: string;
|
|
846
|
+
vi: string;
|
|
847
|
+
uk: string;
|
|
848
|
+
}>;
|
|
849
|
+
meta: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
850
|
+
en: string;
|
|
851
|
+
'en-GB': string;
|
|
852
|
+
fr: string;
|
|
853
|
+
es: string;
|
|
854
|
+
de: string;
|
|
855
|
+
ja: string;
|
|
856
|
+
ko: string;
|
|
857
|
+
zh: string;
|
|
858
|
+
it: string;
|
|
859
|
+
pt: string;
|
|
860
|
+
hi: string;
|
|
861
|
+
ar: string;
|
|
862
|
+
ru: string;
|
|
863
|
+
tr: string;
|
|
864
|
+
pl: string;
|
|
865
|
+
id: string;
|
|
866
|
+
vi: string;
|
|
867
|
+
uk: string;
|
|
868
|
+
}>;
|
|
869
|
+
itemValueLabel: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
870
|
+
en: string;
|
|
871
|
+
'en-GB': string;
|
|
872
|
+
fr: string;
|
|
873
|
+
es: string;
|
|
874
|
+
de: string;
|
|
875
|
+
ja: string;
|
|
876
|
+
ko: string;
|
|
877
|
+
zh: string;
|
|
878
|
+
it: string;
|
|
879
|
+
pt: string;
|
|
880
|
+
hi: string;
|
|
881
|
+
ar: string;
|
|
882
|
+
ru: string;
|
|
883
|
+
tr: string;
|
|
884
|
+
pl: string;
|
|
885
|
+
id: string;
|
|
886
|
+
vi: string;
|
|
887
|
+
uk: string;
|
|
888
|
+
}>;
|
|
889
|
+
itemValuePlaceholder: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
890
|
+
en: string;
|
|
891
|
+
'en-GB': string;
|
|
892
|
+
fr: string;
|
|
893
|
+
es: string;
|
|
894
|
+
de: string;
|
|
895
|
+
ja: string;
|
|
896
|
+
ko: string;
|
|
897
|
+
zh: string;
|
|
898
|
+
it: string;
|
|
899
|
+
pt: string;
|
|
900
|
+
hi: string;
|
|
901
|
+
ar: string;
|
|
902
|
+
ru: string;
|
|
903
|
+
tr: string;
|
|
904
|
+
pl: string;
|
|
905
|
+
id: string;
|
|
906
|
+
vi: string;
|
|
907
|
+
uk: string;
|
|
908
|
+
}>;
|
|
909
|
+
variantValueLabel: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
910
|
+
en: string;
|
|
911
|
+
'en-GB': string;
|
|
912
|
+
fr: string;
|
|
913
|
+
es: string;
|
|
914
|
+
de: string;
|
|
915
|
+
ja: string;
|
|
916
|
+
ko: string;
|
|
917
|
+
zh: string;
|
|
918
|
+
it: string;
|
|
919
|
+
pt: string;
|
|
920
|
+
hi: string;
|
|
921
|
+
ar: string;
|
|
922
|
+
ru: string;
|
|
923
|
+
tr: string;
|
|
924
|
+
pl: string;
|
|
925
|
+
id: string;
|
|
926
|
+
vi: string;
|
|
927
|
+
uk: string;
|
|
928
|
+
}>;
|
|
929
|
+
variantValuePlaceholder: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
930
|
+
en: string;
|
|
931
|
+
'en-GB': string;
|
|
932
|
+
fr: string;
|
|
933
|
+
es: string;
|
|
934
|
+
de: string;
|
|
935
|
+
ja: string;
|
|
936
|
+
ko: string;
|
|
937
|
+
zh: string;
|
|
938
|
+
it: string;
|
|
939
|
+
pt: string;
|
|
940
|
+
hi: string;
|
|
941
|
+
ar: string;
|
|
942
|
+
ru: string;
|
|
943
|
+
tr: string;
|
|
944
|
+
pl: string;
|
|
945
|
+
id: string;
|
|
946
|
+
vi: string;
|
|
947
|
+
uk: string;
|
|
948
|
+
}>;
|
|
949
|
+
metaValueLabel: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
950
|
+
en: string;
|
|
951
|
+
'en-GB': string;
|
|
952
|
+
fr: string;
|
|
953
|
+
es: string;
|
|
954
|
+
de: string;
|
|
955
|
+
ja: string;
|
|
956
|
+
ko: string;
|
|
957
|
+
zh: string;
|
|
958
|
+
it: string;
|
|
959
|
+
pt: string;
|
|
960
|
+
hi: string;
|
|
961
|
+
ar: string;
|
|
962
|
+
ru: string;
|
|
963
|
+
tr: string;
|
|
964
|
+
pl: string;
|
|
965
|
+
id: string;
|
|
966
|
+
vi: string;
|
|
967
|
+
uk: string;
|
|
968
|
+
}>;
|
|
969
|
+
metaValuePlaceholder: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
970
|
+
en: string;
|
|
971
|
+
'en-GB': string;
|
|
972
|
+
fr: string;
|
|
973
|
+
es: string;
|
|
974
|
+
de: string;
|
|
975
|
+
ja: string;
|
|
976
|
+
ko: string;
|
|
977
|
+
zh: string;
|
|
978
|
+
it: string;
|
|
979
|
+
pt: string;
|
|
980
|
+
hi: string;
|
|
981
|
+
ar: string;
|
|
982
|
+
ru: string;
|
|
983
|
+
tr: string;
|
|
984
|
+
pl: string;
|
|
985
|
+
id: string;
|
|
986
|
+
vi: string;
|
|
987
|
+
uk: string;
|
|
988
|
+
}>;
|
|
989
|
+
metaJsonError: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
990
|
+
en: string;
|
|
991
|
+
'en-GB': string;
|
|
992
|
+
fr: string;
|
|
993
|
+
es: string;
|
|
994
|
+
de: string;
|
|
995
|
+
ja: string;
|
|
996
|
+
ko: string;
|
|
997
|
+
zh: string;
|
|
998
|
+
it: string;
|
|
999
|
+
pt: string;
|
|
1000
|
+
hi: string;
|
|
1001
|
+
ar: string;
|
|
1002
|
+
ru: string;
|
|
1003
|
+
tr: string;
|
|
1004
|
+
pl: string;
|
|
1005
|
+
id: string;
|
|
1006
|
+
vi: string;
|
|
1007
|
+
uk: string;
|
|
1008
|
+
}>;
|
|
1009
|
+
disablePickerTitle: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
1010
|
+
en: string;
|
|
1011
|
+
'en-GB': string;
|
|
1012
|
+
fr: string;
|
|
1013
|
+
es: string;
|
|
1014
|
+
de: string;
|
|
1015
|
+
ja: string;
|
|
1016
|
+
ko: string;
|
|
1017
|
+
zh: string;
|
|
1018
|
+
it: string;
|
|
1019
|
+
pt: string;
|
|
1020
|
+
hi: string;
|
|
1021
|
+
ar: string;
|
|
1022
|
+
ru: string;
|
|
1023
|
+
tr: string;
|
|
1024
|
+
pl: string;
|
|
1025
|
+
id: string;
|
|
1026
|
+
vi: string;
|
|
1027
|
+
uk: string;
|
|
1028
|
+
}>;
|
|
1029
|
+
disablePickerDescription: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
1030
|
+
en: string;
|
|
1031
|
+
'en-GB': string;
|
|
1032
|
+
fr: string;
|
|
1033
|
+
es: string;
|
|
1034
|
+
de: string;
|
|
1035
|
+
ja: string;
|
|
1036
|
+
ko: string;
|
|
1037
|
+
zh: string;
|
|
1038
|
+
it: string;
|
|
1039
|
+
pt: string;
|
|
1040
|
+
hi: string;
|
|
1041
|
+
ar: string;
|
|
1042
|
+
ru: string;
|
|
1043
|
+
tr: string;
|
|
1044
|
+
pl: string;
|
|
1045
|
+
id: string;
|
|
1046
|
+
vi: string;
|
|
1047
|
+
uk: string;
|
|
1048
|
+
}>;
|
|
1049
|
+
};
|
|
544
1050
|
auditButton: {
|
|
545
1051
|
label: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
546
1052
|
en: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dictionaryDetails.content.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.tsx"],"mappings":";;;cAEM,wBAAA;;;;
|
|
1
|
+
{"version":3,"file":"dictionaryDetails.content.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.tsx"],"mappings":";;;cAEM,wBAAA;;;;aAskCgB,4BAAA,CAAA,kBAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FC } from "react";
|
|
1
|
+
import { FC, ReactNode } from "react";
|
|
2
2
|
import { Dictionary } from "@intlayer/types/dictionary";
|
|
3
3
|
|
|
4
4
|
//#region src/components/DictionaryFieldEditor/DictionaryFieldEditor.d.ts
|
|
@@ -10,6 +10,7 @@ type DictionaryFieldEditorProps = {
|
|
|
10
10
|
isDarkMode?: boolean;
|
|
11
11
|
mode: ('local' | 'remote')[];
|
|
12
12
|
showReturnButton?: boolean;
|
|
13
|
+
rightContent?: ReactNode;
|
|
13
14
|
};
|
|
14
15
|
declare const DictionaryFieldEditor: FC<DictionaryFieldEditorProps>;
|
|
15
16
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DictionaryFieldEditor.d.ts","names":[],"sources":["../../../../src/components/DictionaryFieldEditor/DictionaryFieldEditor.tsx"],"mappings":";;;;KAsBK,0BAAA;EACH,UAAA,EAAY,UAAA;EACZ,qBAAA;EACA,QAAA;EACA,MAAA;EACA,UAAA;EACA,IAAA;EACA,gBAAA;AAAA;AAAA,
|
|
1
|
+
{"version":3,"file":"DictionaryFieldEditor.d.ts","names":[],"sources":["../../../../src/components/DictionaryFieldEditor/DictionaryFieldEditor.tsx"],"mappings":";;;;KAsBK,0BAAA;EACH,UAAA,EAAY,UAAA;EACZ,qBAAA;EACA,QAAA;EACA,MAAA;EACA,UAAA;EACA,IAAA;EACA,gBAAA;EACA,YAAA,GAAe,SAAA;AAAA;AAAA,cAGJ,qBAAA,EAAuB,EAAA,CAAG,0BAAA"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import * as _$_intlayer_core_transpiler0 from "@intlayer/core/transpiler";
|
|
2
|
+
|
|
3
|
+
//#region src/components/DictionaryFieldEditor/contentEditor.content.d.ts
|
|
4
|
+
declare const contentEditorContent: {
|
|
5
|
+
key: string;
|
|
6
|
+
content: {
|
|
7
|
+
itemPagination: {
|
|
8
|
+
label: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
9
|
+
en: string;
|
|
10
|
+
'en-GB': string;
|
|
11
|
+
fr: string;
|
|
12
|
+
es: string;
|
|
13
|
+
de: string;
|
|
14
|
+
ja: string;
|
|
15
|
+
ko: string;
|
|
16
|
+
zh: string;
|
|
17
|
+
it: string;
|
|
18
|
+
pt: string;
|
|
19
|
+
hi: string;
|
|
20
|
+
ar: string;
|
|
21
|
+
ru: string;
|
|
22
|
+
tr: string;
|
|
23
|
+
pl: string;
|
|
24
|
+
id: string;
|
|
25
|
+
vi: string;
|
|
26
|
+
uk: string;
|
|
27
|
+
}>;
|
|
28
|
+
};
|
|
29
|
+
variantSwitcher: {
|
|
30
|
+
label: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
31
|
+
en: string;
|
|
32
|
+
'en-GB': string;
|
|
33
|
+
fr: string;
|
|
34
|
+
es: string;
|
|
35
|
+
de: string;
|
|
36
|
+
ja: string;
|
|
37
|
+
ko: string;
|
|
38
|
+
zh: string;
|
|
39
|
+
it: string;
|
|
40
|
+
pt: string;
|
|
41
|
+
hi: string;
|
|
42
|
+
ar: string;
|
|
43
|
+
ru: string;
|
|
44
|
+
tr: string;
|
|
45
|
+
pl: string;
|
|
46
|
+
id: string;
|
|
47
|
+
vi: string;
|
|
48
|
+
uk: string;
|
|
49
|
+
}>;
|
|
50
|
+
};
|
|
51
|
+
metaSwitcher: {
|
|
52
|
+
label: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
53
|
+
en: string;
|
|
54
|
+
'en-GB': string;
|
|
55
|
+
fr: string;
|
|
56
|
+
es: string;
|
|
57
|
+
de: string;
|
|
58
|
+
ja: string;
|
|
59
|
+
ko: string;
|
|
60
|
+
zh: string;
|
|
61
|
+
it: string;
|
|
62
|
+
pt: string;
|
|
63
|
+
hi: string;
|
|
64
|
+
ar: string;
|
|
65
|
+
ru: string;
|
|
66
|
+
tr: string;
|
|
67
|
+
pl: string;
|
|
68
|
+
id: string;
|
|
69
|
+
vi: string;
|
|
70
|
+
uk: string;
|
|
71
|
+
}>;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
title: string;
|
|
75
|
+
description: string;
|
|
76
|
+
tags: string[];
|
|
77
|
+
};
|
|
78
|
+
//#endregion
|
|
79
|
+
export { contentEditorContent as default };
|
|
80
|
+
//# sourceMappingURL=contentEditor.content.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contentEditor.content.d.ts","names":[],"sources":["../../../../src/components/DictionaryFieldEditor/contentEditor.content.ts"],"mappings":";;;cAEM,oBAAA;;;;aA0EgB,4BAAA,CAAA,kBAAA"}
|
|
@@ -1,48 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import { EditableFieldInputElement } from "./elements/EditableFieldInputElement.js";
|
|
5
|
-
import { EditableFieldTextAreaElement } from "./elements/EditableFieldTextAreaElement.js";
|
|
6
|
-
import { InputElement } from "./elements/InputElement.js";
|
|
7
|
-
import { InputPasswordElement } from "./elements/InputPasswordElement.js";
|
|
8
|
-
import { OTPElement } from "./elements/OTPElement.js";
|
|
9
|
-
import { SearchInputElement } from "./elements/SearchInputElement.js";
|
|
10
|
-
import { TextAreaElement } from "./elements/TextAreaElement.js";
|
|
11
|
-
import { AutoSizedTextAreaElement } from "./elements/AutoSizeTextAreaElement.js";
|
|
12
|
-
import { CheckboxElement } from "./elements/CheckboxElement.js";
|
|
13
|
-
import { MultiSelectElement } from "./elements/MultiselectElement.js";
|
|
14
|
-
import { SelectElement } from "./elements/SelectElement.js";
|
|
15
|
-
import { SwitchSelectorElement } from "./elements/SwitchSelectorElement.js";
|
|
16
|
-
import { Form as Form$1 } from "./FormBase.js";
|
|
17
|
-
import { FormControl } from "./FormControl.js";
|
|
18
|
-
import { FormDescription } from "./FormDescription.js";
|
|
19
|
-
import { FormField } from "./FormField.js";
|
|
20
|
-
import { FormItem } from "./FormItem.js";
|
|
21
|
-
import { FormMessage } from "./FormMessage.js";
|
|
1
|
+
import * as _$react from "react";
|
|
2
|
+
import * as _$zod from "zod";
|
|
3
|
+
import * as _$react_hook_form0 from "react-hook-form";
|
|
22
4
|
|
|
23
5
|
//#region src/components/Form/Form.d.ts
|
|
24
|
-
type FormType = typeof Form$1 & {
|
|
25
|
-
Description: typeof FormDescription;
|
|
26
|
-
Control: typeof FormControl;
|
|
27
|
-
Field: typeof FormField;
|
|
28
|
-
Item: typeof FormItem;
|
|
29
|
-
Label: typeof FormLabelLayout;
|
|
30
|
-
Message: typeof FormMessage;
|
|
31
|
-
Element: typeof FormElement;
|
|
32
|
-
Button: typeof Button;
|
|
33
|
-
Input: typeof InputElement;
|
|
34
|
-
InputPassword: typeof InputPasswordElement;
|
|
35
|
-
Checkbox: typeof CheckboxElement;
|
|
36
|
-
TextArea: typeof TextAreaElement;
|
|
37
|
-
AutoSizedTextArea: typeof AutoSizedTextAreaElement;
|
|
38
|
-
MultiSelect: typeof MultiSelectElement;
|
|
39
|
-
Select: typeof SelectElement;
|
|
40
|
-
EditableFieldInput: typeof EditableFieldInputElement;
|
|
41
|
-
EditableFieldTextArea: typeof EditableFieldTextAreaElement;
|
|
42
|
-
SwitchSelector: typeof SwitchSelectorElement;
|
|
43
|
-
OTP: typeof OTPElement;
|
|
44
|
-
SearchInput: typeof SearchInputElement;
|
|
45
|
-
};
|
|
46
6
|
/**
|
|
47
7
|
* Form components
|
|
48
8
|
*
|
|
@@ -54,14 +14,34 @@ type FormType = typeof Form$1 & {
|
|
|
54
14
|
* onSubmitError={onSubmitError}
|
|
55
15
|
* autoComplete
|
|
56
16
|
* >
|
|
57
|
-
* <
|
|
58
|
-
* <
|
|
17
|
+
* <FormInput name="name" label="Name" />
|
|
18
|
+
* <FormButton type="submit" label="Click to submit">
|
|
59
19
|
* Submit
|
|
60
|
-
* </
|
|
20
|
+
* </FormButton>
|
|
61
21
|
* </Form>
|
|
62
22
|
* ```
|
|
63
23
|
*/
|
|
64
|
-
declare const Form:
|
|
24
|
+
declare const Form: <T extends _$zod.ZodObject>({
|
|
25
|
+
schema,
|
|
26
|
+
onSubmit: onSubmitProp,
|
|
27
|
+
onSubmitSuccess: onSubmitSuccessProp,
|
|
28
|
+
onSubmitError: onSubmitErrorProp,
|
|
29
|
+
className,
|
|
30
|
+
children,
|
|
31
|
+
autoComplete,
|
|
32
|
+
method,
|
|
33
|
+
...props
|
|
34
|
+
}: (_$react.HTMLAttributes<HTMLFormElement> & {
|
|
35
|
+
children: React.ReactNode | React.ReactNode[];
|
|
36
|
+
} & _$react_hook_form0.UseFormReturn<_$zod.infer<T>, any, _$zod.infer<T>> & {
|
|
37
|
+
schema?: T;
|
|
38
|
+
onSubmit?: (data: _$zod.infer<T>) => void | Promise<void>;
|
|
39
|
+
onSubmitSuccess?: (data: _$zod.infer<T>) => void | Promise<void>;
|
|
40
|
+
onSubmitError?: (error: Error) => void | Promise<void>;
|
|
41
|
+
autoComplete?: boolean;
|
|
42
|
+
}) & {
|
|
43
|
+
method?: string;
|
|
44
|
+
}) => _$react.JSX.Element;
|
|
65
45
|
//#endregion
|
|
66
46
|
export { Form };
|
|
67
47
|
//# sourceMappingURL=Form.d.ts.map
|