@payloadcms/richtext-lexical 0.7.0 → 3.0.0-alpha.19
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 +1 -3
- package/components.d.ts +1 -1
- package/components.js +6 -33
- package/dist/cell/index.d.ts +4 -4
- package/dist/cell/index.d.ts.map +1 -1
- package/dist/cell/index.js +98 -79
- package/dist/exports/components.d.ts +1 -1
- package/dist/exports/components.d.ts.map +1 -1
- package/dist/exports/components.js +6 -33
- package/dist/field/Field.d.ts +8 -3
- package/dist/field/Field.d.ts.map +1 -1
- package/dist/field/Field.js +26 -98
- package/dist/field/features/align/feature.client.d.ts +3 -0
- package/dist/field/features/align/feature.client.d.ts.map +1 -0
- package/dist/field/features/align/feature.client.js +71 -0
- package/dist/field/features/align/feature.server.d.ts +3 -0
- package/dist/field/features/align/feature.server.d.ts.map +1 -0
- package/dist/field/features/align/feature.server.js +16 -0
- package/dist/field/features/align/floatingSelectToolbarAlignDropdownSection.d.ts.map +1 -1
- package/dist/field/features/align/floatingSelectToolbarAlignDropdownSection.js +6 -57
- package/dist/field/features/blockquote/feature.client.d.ts +3 -0
- package/dist/field/features/blockquote/feature.client.d.ts.map +1 -0
- package/dist/field/features/blockquote/feature.client.js +67 -0
- package/dist/field/features/blockquote/feature.server.d.ts +3 -0
- package/dist/field/features/blockquote/feature.server.d.ts.map +1 -0
- package/dist/field/features/blockquote/feature.server.js +46 -0
- package/dist/field/features/blockquote/markdownTransformer.d.ts.map +1 -0
- package/dist/field/features/blockquote/markdownTransformer.js +40 -0
- package/dist/field/features/blocks/component/BlockContent.d.ts +25 -0
- package/dist/field/features/blocks/component/BlockContent.d.ts.map +1 -0
- package/dist/field/features/blocks/component/BlockContent.js +163 -0
- package/dist/field/features/blocks/component/FormSavePlugin.d.ts +12 -0
- package/dist/field/features/blocks/component/FormSavePlugin.d.ts.map +1 -0
- package/dist/field/features/blocks/component/FormSavePlugin.js +24 -0
- package/dist/field/features/blocks/component/index.d.ts +16 -0
- package/dist/field/features/blocks/component/index.d.ts.map +1 -0
- package/dist/field/features/blocks/component/index.js +121 -0
- package/dist/field/features/blocks/component/index.scss +153 -0
- package/dist/field/features/blocks/drawer/index.d.ts.map +1 -0
- package/dist/field/features/blocks/drawer/index.js +78 -0
- package/dist/field/features/blocks/feature.client.d.ts +7 -0
- package/dist/field/features/blocks/feature.client.d.ts.map +1 -0
- package/dist/field/features/blocks/feature.client.js +61 -0
- package/dist/field/features/blocks/feature.server.d.ts +8 -0
- package/dist/field/features/blocks/feature.server.d.ts.map +1 -0
- package/dist/field/features/blocks/feature.server.js +86 -0
- package/dist/field/features/blocks/nodes/BlocksNode.d.ts.map +1 -0
- package/dist/field/features/blocks/nodes/BlocksNode.js +91 -0
- package/dist/field/features/blocks/plugin/commands.d.ts.map +1 -0
- package/dist/field/features/blocks/plugin/commands.js +4 -0
- package/dist/field/features/blocks/plugin/index.d.ts +5 -0
- package/dist/field/features/blocks/plugin/index.d.ts.map +1 -0
- package/dist/field/features/blocks/plugin/index.js +40 -0
- package/dist/field/features/blocks/populationPromise.d.ts +5 -0
- package/dist/field/features/blocks/populationPromise.d.ts.map +1 -0
- package/dist/field/features/blocks/populationPromise.js +45 -0
- package/dist/field/features/blocks/validate.d.ts +5 -0
- package/dist/field/features/blocks/validate.d.ts.map +1 -0
- package/dist/field/features/blocks/validate.js +49 -0
- package/dist/field/features/common/floatingSelectToolbarFeaturesButtonsSection/index.js +4 -14
- package/dist/field/features/common/floatingSelectToolbarTextDropdownSection/index.d.ts.map +1 -1
- package/dist/field/features/common/floatingSelectToolbarTextDropdownSection/index.js +6 -57
- package/dist/field/features/converters/html/converter/converters/linebreak.js +2 -12
- package/dist/field/features/converters/html/converter/converters/paragraph.d.ts.map +1 -1
- package/dist/field/features/converters/html/converter/converters/paragraph.js +7 -16
- package/dist/field/features/converters/html/converter/converters/text.js +10 -20
- package/dist/field/features/converters/html/converter/defaultConverters.js +8 -18
- package/dist/field/features/converters/html/converter/index.d.ts +11 -2
- package/dist/field/features/converters/html/converter/index.d.ts.map +1 -1
- package/dist/field/features/converters/html/converter/index.js +9 -24
- package/dist/field/features/converters/html/converter/types.d.ts +6 -1
- package/dist/field/features/converters/html/converter/types.d.ts.map +1 -1
- package/dist/field/features/converters/html/converter/types.js +2 -5
- package/dist/field/features/converters/html/feature.server.d.ts +9 -0
- package/dist/field/features/converters/html/feature.server.d.ts.map +1 -0
- package/dist/field/features/converters/html/feature.server.js +14 -0
- package/dist/field/features/converters/html/field/index.d.ts +2 -2
- package/dist/field/features/converters/html/field/index.d.ts.map +1 -1
- package/dist/field/features/converters/html/field/index.js +18 -31
- package/dist/field/features/createClientComponent.d.ts +7 -0
- package/dist/field/features/createClientComponent.d.ts.map +1 -0
- package/dist/field/features/createClientComponent.js +12 -0
- package/dist/field/features/createFeaturePropComponent.d.ts +6 -0
- package/dist/field/features/createFeaturePropComponent.d.ts.map +1 -0
- package/dist/field/features/createFeaturePropComponent.js +14 -0
- package/dist/field/features/debug/testrecorder/feature.client.d.ts +3 -0
- package/dist/field/features/debug/testrecorder/feature.client.d.ts.map +1 -0
- package/dist/field/features/debug/testrecorder/feature.client.js +20 -0
- package/dist/field/features/debug/testrecorder/feature.server.d.ts +3 -0
- package/dist/field/features/debug/testrecorder/feature.server.d.ts.map +1 -0
- package/dist/field/features/debug/testrecorder/feature.server.js +15 -0
- package/dist/field/features/debug/testrecorder/plugin/index.d.ts.map +1 -0
- package/dist/field/features/debug/testrecorder/plugin/index.js +446 -0
- package/dist/field/features/debug/testrecorder/plugin/index.scss +49 -0
- package/dist/field/features/debug/treeview/feature.client.d.ts +3 -0
- package/dist/field/features/debug/treeview/feature.client.d.ts.map +1 -0
- package/dist/field/features/debug/treeview/feature.client.js +20 -0
- package/dist/field/features/debug/treeview/feature.server.d.ts +3 -0
- package/dist/field/features/debug/treeview/feature.server.d.ts.map +1 -0
- package/dist/field/features/debug/treeview/feature.server.js +15 -0
- package/dist/field/features/debug/treeview/plugin/index.d.ts +4 -0
- package/dist/field/features/debug/treeview/plugin/index.d.ts.map +1 -0
- package/dist/field/features/debug/treeview/plugin/index.js +19 -0
- package/dist/field/features/format/bold/feature.client.d.ts +3 -0
- package/dist/field/features/format/bold/feature.client.d.ts.map +1 -0
- package/dist/field/features/format/bold/feature.client.js +47 -0
- package/dist/field/features/format/bold/feature.server.d.ts +3 -0
- package/dist/field/features/format/bold/feature.server.d.ts.map +1 -0
- package/dist/field/features/format/bold/feature.server.js +27 -0
- package/dist/field/features/format/bold/markdownTransformers.d.ts.map +1 -0
- package/dist/field/features/format/bold/markdownTransformers.js +34 -0
- package/dist/field/features/format/common/floatingSelectToolbarSection.js +4 -14
- package/dist/field/features/format/inlinecode/feature.client.d.ts +3 -0
- package/dist/field/features/format/inlinecode/feature.client.d.ts.map +1 -0
- package/dist/field/features/format/inlinecode/feature.client.js +42 -0
- package/dist/field/features/format/inlinecode/feature.server.d.ts +3 -0
- package/dist/field/features/format/inlinecode/feature.server.d.ts.map +1 -0
- package/dist/field/features/format/inlinecode/feature.server.js +19 -0
- package/dist/field/features/format/inlinecode/markdownTransformers.d.ts.map +1 -0
- package/dist/field/features/format/inlinecode/markdownTransformers.js +9 -0
- package/dist/field/features/format/italic/feature.client.d.ts +3 -0
- package/dist/field/features/format/italic/feature.client.d.ts.map +1 -0
- package/dist/field/features/format/italic/feature.client.js +43 -0
- package/dist/field/features/format/italic/feature.server.d.ts +3 -0
- package/dist/field/features/format/italic/feature.server.d.ts.map +1 -0
- package/dist/field/features/format/italic/feature.server.js +20 -0
- package/dist/field/features/format/italic/markdownTransformers.d.ts.map +1 -0
- package/dist/field/features/format/italic/markdownTransformers.js +17 -0
- package/dist/field/features/format/strikethrough/feature.client.d.ts +3 -0
- package/dist/field/features/format/strikethrough/feature.client.d.ts.map +1 -0
- package/dist/field/features/format/strikethrough/feature.client.js +42 -0
- package/dist/field/features/format/strikethrough/feature.server.d.ts +3 -0
- package/dist/field/features/format/strikethrough/feature.server.d.ts.map +1 -0
- package/dist/field/features/format/strikethrough/feature.server.js +19 -0
- package/dist/field/features/format/strikethrough/markdownTransformers.js +4 -14
- package/dist/field/features/format/subscript/feature.client.d.ts +3 -0
- package/dist/field/features/format/subscript/feature.client.d.ts.map +1 -0
- package/dist/field/features/format/subscript/feature.client.js +38 -0
- package/dist/field/features/format/subscript/feature.server.d.ts +3 -0
- package/dist/field/features/format/subscript/feature.server.d.ts.map +1 -0
- package/dist/field/features/format/subscript/feature.server.js +15 -0
- package/dist/field/features/format/superscript/feature.client.d.ts +3 -0
- package/dist/field/features/format/superscript/feature.client.d.ts.map +1 -0
- package/dist/field/features/format/superscript/feature.client.js +38 -0
- package/dist/field/features/format/superscript/feature.server.d.ts +3 -0
- package/dist/field/features/format/superscript/feature.server.d.ts.map +1 -0
- package/dist/field/features/format/superscript/feature.server.js +15 -0
- package/dist/field/features/format/underline/feature.client.d.ts +3 -0
- package/dist/field/features/format/underline/feature.client.d.ts.map +1 -0
- package/dist/field/features/format/underline/feature.client.js +38 -0
- package/dist/field/features/format/underline/feature.server.d.ts +3 -0
- package/dist/field/features/format/underline/feature.server.d.ts.map +1 -0
- package/dist/field/features/format/underline/feature.server.js +15 -0
- package/dist/field/features/heading/feature.client.d.ts +4 -0
- package/dist/field/features/heading/feature.client.d.ts.map +1 -0
- package/dist/field/features/heading/feature.client.js +95 -0
- package/dist/field/features/heading/feature.server.d.ts +7 -0
- package/dist/field/features/heading/feature.server.d.ts.map +1 -0
- package/dist/field/features/heading/feature.server.js +57 -0
- package/dist/field/features/heading/markdownTransformer.d.ts.map +1 -0
- package/dist/field/features/heading/markdownTransformer.js +29 -0
- package/dist/field/features/indent/feature.client.d.ts +3 -0
- package/dist/field/features/indent/feature.client.d.ts.map +1 -0
- package/dist/field/features/indent/feature.client.js +57 -0
- package/dist/field/features/indent/feature.server.d.ts +3 -0
- package/dist/field/features/indent/feature.server.d.ts.map +1 -0
- package/dist/field/features/indent/feature.server.js +16 -0
- package/dist/field/features/indent/floatingSelectToolbarIndentSection.js +4 -14
- package/dist/field/features/link/drawer/baseFields.d.ts.map +1 -0
- package/dist/field/features/link/drawer/baseFields.js +118 -0
- package/dist/field/features/link/drawer/index.d.ts.map +1 -0
- package/dist/field/features/link/drawer/index.js +83 -0
- package/dist/field/features/link/drawer/index.scss +50 -0
- package/dist/field/features/link/drawer/types.d.ts +8 -0
- package/dist/field/features/link/drawer/types.d.ts.map +1 -0
- package/dist/field/features/link/drawer/types.js +3 -0
- package/dist/field/features/link/feature.client.d.ts +5 -0
- package/dist/field/features/link/feature.client.d.ts.map +1 -0
- package/dist/field/features/link/feature.client.js +88 -0
- package/dist/field/features/link/feature.server.d.ts +33 -0
- package/dist/field/features/link/feature.server.d.ts.map +1 -0
- package/dist/field/features/link/feature.server.js +98 -0
- package/dist/field/features/link/nodes/AutoLinkNode.d.ts +16 -0
- package/dist/field/features/link/nodes/AutoLinkNode.d.ts.map +1 -0
- package/dist/field/features/link/nodes/AutoLinkNode.js +60 -0
- package/dist/field/features/link/nodes/LinkNode.d.ts +35 -0
- package/dist/field/features/link/nodes/LinkNode.d.ts.map +1 -0
- package/dist/field/features/link/nodes/LinkNode.js +299 -0
- package/dist/field/features/link/nodes/types.d.ts +19 -0
- package/dist/field/features/link/nodes/types.d.ts.map +1 -0
- package/dist/field/features/link/nodes/types.js +3 -0
- package/dist/field/features/link/plugins/autoLink/index.d.ts +19 -0
- package/dist/field/features/link/plugins/autoLink/index.d.ts.map +1 -0
- package/dist/field/features/link/plugins/autoLink/index.js +318 -0
- package/dist/field/features/link/plugins/clickableLink/index.d.ts.map +1 -0
- package/dist/field/features/link/plugins/clickableLink/index.js +8 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/LinkEditor/commands.d.ts.map +1 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/LinkEditor/commands.js +4 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/LinkEditor/index.d.ts +5 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/LinkEditor/index.d.ts.map +1 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/LinkEditor/index.js +243 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/index.d.ts +6 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/index.d.ts.map +1 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/index.js +13 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/index.scss +78 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/types.d.ts +13 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/types.d.ts.map +1 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/types.js +6 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/utilities.d.ts +12 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/utilities.d.ts.map +1 -0
- package/dist/field/features/link/plugins/floatingLinkEditor/utilities.js +37 -0
- package/dist/field/features/link/plugins/link/index.d.ts.map +1 -0
- package/dist/field/features/link/plugins/link/index.js +59 -0
- package/dist/field/features/link/populationPromise.d.ts +5 -0
- package/dist/field/features/link/populationPromise.d.ts.map +1 -0
- package/dist/field/features/link/populationPromise.js +46 -0
- package/dist/field/features/lists/checklist/feature.client.d.ts +3 -0
- package/dist/field/features/lists/checklist/feature.client.d.ts.map +1 -0
- package/dist/field/features/lists/checklist/feature.client.js +81 -0
- package/dist/field/features/lists/checklist/feature.server.d.ts +3 -0
- package/dist/field/features/lists/checklist/feature.server.d.ts.map +1 -0
- package/dist/field/features/lists/checklist/feature.server.js +35 -0
- package/dist/field/features/lists/checklist/markdownTransformers.d.ts.map +1 -0
- package/dist/field/features/lists/checklist/markdownTransformers.js +16 -0
- package/dist/field/features/lists/checklist/plugin/index.d.ts.map +1 -0
- package/dist/field/features/lists/checklist/plugin/index.js +8 -0
- package/dist/field/features/lists/common/markdown.js +10 -28
- package/dist/field/features/lists/htmlConverter.d.ts.map +1 -1
- package/dist/field/features/lists/htmlConverter.js +15 -31
- package/dist/field/features/lists/orderedlist/feature.client.d.ts +3 -0
- package/dist/field/features/lists/orderedlist/feature.client.d.ts.map +1 -0
- package/dist/field/features/lists/orderedlist/feature.client.js +71 -0
- package/dist/field/features/lists/orderedlist/feature.server.d.ts +3 -0
- package/dist/field/features/lists/orderedlist/feature.server.d.ts.map +1 -0
- package/dist/field/features/lists/orderedlist/feature.server.js +35 -0
- package/dist/field/features/lists/orderedlist/markdownTransformer.d.ts.map +1 -0
- package/dist/field/features/lists/orderedlist/markdownTransformer.js +16 -0
- package/dist/field/features/lists/plugin/index.js +5 -20
- package/dist/field/features/lists/unorderedlist/feature.client.d.ts +3 -0
- package/dist/field/features/lists/unorderedlist/feature.client.d.ts.map +1 -0
- package/dist/field/features/lists/unorderedlist/feature.client.js +71 -0
- package/dist/field/features/lists/unorderedlist/feature.server.d.ts +3 -0
- package/dist/field/features/lists/unorderedlist/feature.server.d.ts.map +1 -0
- package/dist/field/features/lists/unorderedlist/feature.server.js +35 -0
- package/dist/field/features/lists/unorderedlist/markdownTransformer.d.ts.map +1 -0
- package/dist/field/features/lists/unorderedlist/markdownTransformer.js +16 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/heading/client.d.ts +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/heading/client.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/heading/client.js +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/heading/converter.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/heading/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/heading/converter.js +20 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/heading/index.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/heading/index.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/heading/index.js +8 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/link/client.d.ts +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/link/client.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/link/client.js +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/link/converter.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/link/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/link/converter.js +31 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/link/index.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/link/index.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/link/index.js +8 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/list/client.d.ts +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/list/client.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/list/client.js +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/list/converter.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/list/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/list/converter.js +22 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/list/index.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/list/index.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/list/index.js +8 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/listItem/client.d.ts +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/listItem/client.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/listItem/client.js +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/listItem/converter.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/listItem/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/listItem/converter.js +22 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/listItem/index.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/listItem/index.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/listItem/index.js +8 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/quote/client.d.ts +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/quote/client.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/quote/client.js +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/quote/converter.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/quote/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/quote/converter.js +20 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/quote/index.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/quote/index.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/quote/index.js +8 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/unknown/client.d.ts +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/unknown/client.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/unknown/client.js +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/unknown/converter.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/unknown/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/unknown/converter.js +26 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/unknown/index.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/unknown/index.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/unknown/index.js +8 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/upload/client.d.ts +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/upload/client.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/upload/client.js +6 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/upload/converter.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/upload/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/upload/converter.js +25 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/upload/index.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/upload/index.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/converters/upload/index.js +8 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/defaultConverters.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/defaultConverters.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/defaultConverters.js +18 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/index.d.ts +17 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/index.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/index.js +63 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/types.d.ts +31 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/types.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/converter/types.js +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/feature.client.d.ts +3 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/feature.client.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/feature.client.js +34 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/feature.server.d.ts +9 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/feature.server.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/feature.server.js +47 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/Component.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/Component.js +8 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/index.d.ts.map +1 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/index.js +69 -0
- package/dist/field/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/index.scss +14 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/blockquote/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/blockquote/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/blockquote/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/blockquote/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/blockquote/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/blockquote/converter.js +23 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/blockquote/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/blockquote/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/blockquote/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/heading/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/heading/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/heading/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/heading/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/heading/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/heading/converter.js +29 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/heading/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/heading/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/heading/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/indent/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/indent/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/indent/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/indent/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/indent/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/indent/converter.js +35 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/indent/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/indent/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/indent/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/link/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/link/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/link/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/link/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/link/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/link/converter.js +30 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/link/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/link/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/link/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/listItem/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/listItem/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/listItem/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/listItem/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/listItem/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/listItem/converter.js +25 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/listItem/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/listItem/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/listItem/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/orderedList/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/orderedList/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/orderedList/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/orderedList/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/orderedList/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/orderedList/converter.js +26 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/orderedList/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/orderedList/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/orderedList/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/relationship/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/relationship/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/relationship/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/relationship/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/relationship/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/relationship/converter.js +18 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/relationship/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/relationship/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/relationship/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unknown/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unknown/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unknown/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unknown/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unknown/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unknown/converter.js +27 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unknown/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unknown/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unknown/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unorderedList/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unorderedList/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unorderedList/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unorderedList/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unorderedList/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unorderedList/converter.js +26 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unorderedList/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unorderedList/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/unorderedList/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/upload/client.d.ts +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/upload/client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/upload/client.js +6 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/upload/converter.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/upload/converter.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/upload/converter.js +21 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/upload/index.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/upload/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/converters/upload/index.js +8 -0
- package/dist/field/features/migrations/slateToLexical/converter/defaultConverters.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/converter/defaultConverters.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/defaultConverters.js +24 -0
- package/dist/field/features/migrations/slateToLexical/converter/index.d.ts +19 -0
- package/dist/field/features/migrations/slateToLexical/converter/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/index.js +107 -0
- package/dist/field/features/migrations/slateToLexical/converter/types.d.ts +25 -0
- package/dist/field/features/migrations/slateToLexical/converter/types.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/converter/types.js +3 -0
- package/dist/field/features/migrations/slateToLexical/feature.client.d.ts +3 -0
- package/dist/field/features/migrations/slateToLexical/feature.client.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/feature.client.js +34 -0
- package/dist/field/features/migrations/slateToLexical/feature.server.d.ts +9 -0
- package/dist/field/features/migrations/slateToLexical/feature.server.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/feature.server.js +47 -0
- package/dist/field/features/migrations/slateToLexical/nodes/unknownConvertedNode/Component.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/nodes/unknownConvertedNode/Component.js +8 -0
- package/dist/field/features/migrations/slateToLexical/nodes/unknownConvertedNode/index.d.ts.map +1 -0
- package/dist/field/features/migrations/slateToLexical/nodes/unknownConvertedNode/index.js +69 -0
- package/dist/field/features/migrations/slateToLexical/nodes/unknownConvertedNode/index.scss +14 -0
- package/dist/field/features/paragraph/feature.client.d.ts +3 -0
- package/dist/field/features/paragraph/feature.client.d.ts.map +1 -0
- package/dist/field/features/paragraph/feature.client.js +63 -0
- package/dist/field/features/paragraph/feature.server.d.ts +3 -0
- package/dist/field/features/paragraph/feature.server.d.ts.map +1 -0
- package/dist/field/features/paragraph/feature.server.js +16 -0
- package/dist/field/features/relationship/drawer/commands.d.ts.map +1 -0
- package/dist/field/features/relationship/drawer/commands.js +4 -0
- package/dist/field/features/relationship/drawer/index.d.ts.map +1 -0
- package/dist/field/features/relationship/drawer/index.js +79 -0
- package/dist/field/features/relationship/feature.client.d.ts +4 -0
- package/dist/field/features/relationship/feature.client.d.ts.map +1 -0
- package/dist/field/features/relationship/feature.client.js +56 -0
- package/dist/field/features/relationship/feature.server.d.ts +18 -0
- package/dist/field/features/relationship/feature.server.d.ts.map +1 -0
- package/dist/field/features/relationship/feature.server.js +26 -0
- package/dist/field/features/relationship/nodes/RelationshipNode.d.ts.map +1 -0
- package/dist/field/features/relationship/nodes/RelationshipNode.js +110 -0
- package/dist/field/features/relationship/nodes/components/RelationshipComponent.d.ts.map +1 -0
- package/dist/field/features/relationship/nodes/components/RelationshipComponent.js +103 -0
- package/dist/field/features/relationship/nodes/components/index.scss +97 -0
- package/dist/field/features/relationship/plugins/index.d.ts +7 -0
- package/dist/field/features/relationship/plugins/index.d.ts.map +1 -0
- package/dist/field/features/relationship/plugins/index.js +49 -0
- package/dist/field/features/relationship/populationPromise.d.ts.map +1 -0
- package/dist/field/features/relationship/populationPromise.js +24 -0
- package/dist/field/features/relationship/utils/EnabledRelationshipsCondition.d.ts.map +1 -0
- package/dist/field/features/relationship/utils/EnabledRelationshipsCondition.js +33 -0
- package/dist/field/features/types.d.ts +139 -70
- package/dist/field/features/types.d.ts.map +1 -1
- package/dist/field/features/types.js +2 -5
- package/dist/field/features/upload/component/ExtraFieldsDrawer/index.d.ts.map +1 -0
- package/dist/field/features/upload/component/ExtraFieldsDrawer/index.js +110 -0
- package/dist/field/features/upload/component/index.d.ts.map +1 -0
- package/dist/field/features/upload/component/index.js +135 -0
- package/dist/field/features/upload/component/index.scss +152 -0
- package/dist/field/features/upload/drawer/commands.d.ts.map +1 -0
- package/dist/field/features/upload/drawer/commands.js +5 -0
- package/dist/field/features/upload/drawer/index.d.ts.map +1 -0
- package/dist/field/features/upload/drawer/index.js +76 -0
- package/dist/field/features/upload/feature.client.d.ts +10 -0
- package/dist/field/features/upload/feature.client.d.ts.map +1 -0
- package/dist/field/features/upload/feature.client.js +55 -0
- package/dist/field/features/upload/feature.server.d.ts +12 -0
- package/dist/field/features/upload/feature.server.d.ts.map +1 -0
- package/dist/field/features/upload/feature.server.js +103 -0
- package/dist/field/features/upload/nodes/UploadNode.d.ts +47 -0
- package/dist/field/features/upload/nodes/UploadNode.d.ts.map +1 -0
- package/dist/field/features/upload/nodes/UploadNode.js +98 -0
- package/dist/field/features/upload/plugin/index.d.ts.map +1 -0
- package/dist/field/features/upload/plugin/index.js +52 -0
- package/dist/field/features/upload/populationPromise.d.ts +5 -0
- package/dist/field/features/upload/populationPromise.d.ts.map +1 -0
- package/dist/field/features/upload/populationPromise.js +46 -0
- package/dist/field/features/upload/validate.d.ts.map +1 -0
- package/dist/field/features/upload/validate.js +19 -0
- package/dist/field/index.d.ts +7 -2
- package/dist/field/index.d.ts.map +1 -1
- package/dist/field/index.js +78 -57
- package/dist/field/index.scss +2 -2
- package/dist/field/lexical/EditorPlugin.d.ts.map +1 -1
- package/dist/field/lexical/EditorPlugin.js +6 -65
- package/dist/field/lexical/LexicalEditor.js +39 -94
- package/dist/field/lexical/LexicalEditor.scss +1 -3
- package/dist/field/lexical/LexicalProvider.d.ts +8 -4
- package/dist/field/lexical/LexicalProvider.d.ts.map +1 -1
- package/dist/field/lexical/LexicalProvider.js +30 -83
- package/dist/field/lexical/config/client/EditorConfigProvider.d.ts +24 -0
- package/dist/field/lexical/config/client/EditorConfigProvider.d.ts.map +1 -0
- package/dist/field/lexical/config/client/EditorConfigProvider.js +41 -0
- package/dist/field/lexical/config/client/default.d.ts +3 -0
- package/dist/field/lexical/config/client/default.d.ts.map +1 -0
- package/dist/field/lexical/config/client/default.js +8 -0
- package/dist/field/lexical/config/client/loader.d.ts +11 -0
- package/dist/field/lexical/config/client/loader.d.ts.map +1 -0
- package/dist/field/lexical/config/client/loader.js +46 -0
- package/dist/field/lexical/config/client/sanitize.d.ts +6 -0
- package/dist/field/lexical/config/client/sanitize.d.ts.map +1 -0
- package/dist/field/lexical/config/client/sanitize.js +126 -0
- package/dist/field/lexical/config/server/default.d.ts +8 -0
- package/dist/field/lexical/config/server/default.d.ts.map +1 -0
- package/dist/field/lexical/config/server/default.js +51 -0
- package/dist/field/lexical/config/server/loader.d.ts +7 -0
- package/dist/field/lexical/config/server/loader.d.ts.map +1 -0
- package/dist/field/lexical/config/server/loader.js +118 -0
- package/dist/field/lexical/config/server/sanitize.d.ts +5 -0
- package/dist/field/lexical/config/server/sanitize.d.ts.map +1 -0
- package/dist/field/lexical/config/server/sanitize.js +65 -0
- package/dist/field/lexical/config/types.d.ts +18 -9
- package/dist/field/lexical/config/types.d.ts.map +1 -1
- package/dist/field/lexical/config/types.js +2 -5
- package/dist/field/lexical/nodes/index.d.ts +2 -2
- package/dist/field/lexical/nodes/index.d.ts.map +1 -1
- package/dist/field/lexical/nodes/index.js +8 -13
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarButton/index.js +19 -70
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarButton/index.scss +0 -2
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarDropdown/DropDown.d.ts +3 -3
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarDropdown/DropDown.d.ts.map +1 -1
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarDropdown/DropDown.js +40 -98
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarDropdown/index.d.ts.map +1 -1
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarDropdown/index.js +12 -85
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarDropdown/index.scss +1 -1
- package/dist/field/lexical/plugins/FloatingSelectToolbar/index.d.ts.map +1 -1
- package/dist/field/lexical/plugins/FloatingSelectToolbar/index.js +57 -127
- package/dist/field/lexical/plugins/FloatingSelectToolbar/index.scss +1 -1
- package/dist/field/lexical/plugins/FloatingSelectToolbar/types.d.ts +4 -4
- package/dist/field/lexical/plugins/FloatingSelectToolbar/types.d.ts.map +1 -1
- package/dist/field/lexical/plugins/FloatingSelectToolbar/types.js +2 -5
- package/dist/field/lexical/plugins/MarkdownShortcut/index.js +7 -58
- package/dist/field/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/LexicalMenu.js +39 -64
- package/dist/field/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/index.d.ts +2 -2
- package/dist/field/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/index.d.ts.map +1 -1
- package/dist/field/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/index.js +32 -104
- package/dist/field/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/types.d.ts +6 -6
- package/dist/field/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/types.d.ts.map +1 -1
- package/dist/field/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/types.js +3 -21
- package/dist/field/lexical/plugins/SlashMenu/index.d.ts.map +1 -1
- package/dist/field/lexical/plugins/SlashMenu/index.js +27 -84
- package/dist/field/lexical/plugins/SlashMenu/index.scss +1 -1
- package/dist/field/lexical/plugins/SlashMenu/useMenuTriggerMatch.js +8 -16
- package/dist/field/lexical/plugins/handles/AddBlockHandlePlugin/index.js +35 -84
- package/dist/field/lexical/plugins/handles/AddBlockHandlePlugin/index.scss +0 -2
- package/dist/field/lexical/plugins/handles/DraggableBlockPlugin/debounce.js +2 -12
- package/dist/field/lexical/plugins/handles/DraggableBlockPlugin/getBoundingRectWithoutTransform.js +2 -12
- package/dist/field/lexical/plugins/handles/DraggableBlockPlugin/getNodeCloseToPoint.js +18 -28
- package/dist/field/lexical/plugins/handles/DraggableBlockPlugin/highlightElemOriginalPosition.js +4 -14
- package/dist/field/lexical/plugins/handles/DraggableBlockPlugin/index.js +52 -102
- package/dist/field/lexical/plugins/handles/DraggableBlockPlugin/index.scss +0 -2
- package/dist/field/lexical/plugins/handles/DraggableBlockPlugin/setTargetLine.js +8 -18
- package/dist/field/lexical/plugins/handles/utils/getCollapsedMargins.js +2 -12
- package/dist/field/lexical/plugins/handles/utils/getTopLevelNodeKeys.js +4 -14
- package/dist/field/lexical/plugins/handles/utils/isOnHandleElement.js +2 -12
- package/dist/field/lexical/plugins/handles/utils/setHandlePosition.js +2 -12
- package/dist/field/lexical/theme/EditorTheme.js +3 -13
- package/dist/field/lexical/theme/EditorTheme.scss +0 -2
- package/dist/field/lexical/ui/ContentEditable.js +6 -57
- package/dist/field/lexical/ui/icons/AI/index.js +7 -22
- package/dist/field/lexical/ui/icons/AlignCenter/index.js +6 -21
- package/dist/field/lexical/ui/icons/AlignJustify/index.js +6 -21
- package/dist/field/lexical/ui/icons/AlignLeft/index.js +6 -21
- package/dist/field/lexical/ui/icons/AlignRight/index.js +6 -21
- package/dist/field/lexical/ui/icons/Block/index.js +6 -21
- package/dist/field/lexical/ui/icons/Blockquote/index.js +4 -19
- package/dist/field/lexical/ui/icons/Bold/index.js +4 -19
- package/dist/field/lexical/ui/icons/Checklist/index.js +5 -20
- package/dist/field/lexical/ui/icons/Code/index.js +5 -20
- package/dist/field/lexical/ui/icons/CodeBlock/index.js +5 -20
- package/dist/field/lexical/ui/icons/H1/index.js +4 -19
- package/dist/field/lexical/ui/icons/H2/index.js +4 -19
- package/dist/field/lexical/ui/icons/H3/index.js +4 -19
- package/dist/field/lexical/ui/icons/H4/index.js +4 -19
- package/dist/field/lexical/ui/icons/H5/index.js +4 -19
- package/dist/field/lexical/ui/icons/H6/index.js +4 -19
- package/dist/field/lexical/ui/icons/IndentDecrease/index.js +7 -22
- package/dist/field/lexical/ui/icons/IndentIncrease/index.js +7 -22
- package/dist/field/lexical/ui/icons/Italic/index.js +4 -19
- package/dist/field/lexical/ui/icons/Link/index.js +7 -22
- package/dist/field/lexical/ui/icons/OrderedList/index.js +8 -23
- package/dist/field/lexical/ui/icons/Relationship/index.js +7 -22
- package/dist/field/lexical/ui/icons/Strikethrough/index.js +5 -20
- package/dist/field/lexical/ui/icons/Subscript/index.js +4 -19
- package/dist/field/lexical/ui/icons/Superscript/index.js +4 -19
- package/dist/field/lexical/ui/icons/Text/index.js +4 -19
- package/dist/field/lexical/ui/icons/Underline/index.js +5 -20
- package/dist/field/lexical/ui/icons/UnorderedList/index.js +9 -24
- package/dist/field/lexical/ui/icons/Upload/index.js +6 -21
- package/dist/field/lexical/utils/canUseDOM.js +2 -12
- package/dist/field/lexical/utils/cloneDeep.js +2 -12
- package/dist/field/lexical/utils/environment.js +13 -51
- package/dist/field/lexical/utils/getDOMRangeRect.js +2 -12
- package/dist/field/lexical/utils/getSelectedNode.js +5 -15
- package/dist/field/lexical/utils/guard.js +2 -12
- package/dist/field/lexical/utils/invariant.js +2 -12
- package/dist/field/lexical/utils/joinClasses.js +2 -12
- package/dist/field/lexical/utils/markdown/createBlockNode.js +2 -12
- package/dist/field/lexical/utils/nodeFormat.js +17 -61
- package/dist/field/lexical/utils/point.js +3 -21
- package/dist/field/lexical/utils/rect.js +4 -14
- package/dist/field/lexical/utils/setFloatingElemPosition.js +5 -12
- package/dist/field/lexical/utils/setFloatingElemPositionForLinkEditor.js +2 -12
- package/dist/field/lexical/utils/swipe.js +5 -29
- package/dist/field/lexical/utils/url.js +3 -21
- package/dist/generateComponentMap.d.ts +6 -0
- package/dist/generateComponentMap.d.ts.map +1 -0
- package/dist/generateComponentMap.js +77 -0
- package/dist/generateSchemaMap.d.ts +6 -0
- package/dist/generateSchemaMap.d.ts.map +1 -0
- package/dist/generateSchemaMap.js +27 -0
- package/dist/index.d.ts +59 -56
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +130 -488
- package/dist/populate/defaultValue.js +8 -26
- package/dist/populate/populate.js +2 -12
- package/dist/populate/recurseNestedFields.d.ts.map +1 -1
- package/dist/populate/recurseNestedFields.js +6 -14
- package/dist/populate/richTextRelationshipPromise.js +4 -22
- package/dist/scss/app.scss +209 -0
- package/dist/scss/colors.scss +269 -0
- package/dist/scss/custom.css +1 -0
- package/dist/scss/fonts.scss +75 -0
- package/dist/scss/queries.scss +27 -0
- package/dist/scss/resets.scss +17 -0
- package/dist/scss/styles.scss +11 -0
- package/dist/scss/svg.scss +10 -0
- package/dist/scss/toastify.scss +58 -0
- package/dist/scss/type.scss +117 -0
- package/dist/scss/vars.scss +220 -0
- package/dist/scss/z-index.scss +9 -0
- package/dist/types.d.ts +8 -2
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +2 -5
- package/dist/useLexicalFeature.d.ts +3 -0
- package/dist/useLexicalFeature.d.ts.map +1 -0
- package/dist/useLexicalFeature.js +9 -0
- package/dist/validate/index.d.ts +4 -4
- package/dist/validate/index.d.ts.map +1 -1
- package/dist/validate/index.js +7 -18
- package/dist/validate/validateNodes.d.ts +2 -4
- package/dist/validate/validateNodes.d.ts.map +1 -1
- package/dist/validate/validateNodes.js +2 -14
- package/package.json +13 -7
- package/dist/field/features/BlockQuote/index.d.ts +0 -3
- package/dist/field/features/BlockQuote/index.d.ts.map +0 -1
- package/dist/field/features/BlockQuote/index.js +0 -140
- package/dist/field/features/BlockQuote/markdownTransformer.d.ts.map +0 -1
- package/dist/field/features/BlockQuote/markdownTransformer.js +0 -50
- package/dist/field/features/Blocks/component/BlockContent.d.ts +0 -20
- package/dist/field/features/Blocks/component/BlockContent.d.ts.map +0 -1
- package/dist/field/features/Blocks/component/BlockContent.js +0 -220
- package/dist/field/features/Blocks/component/FormSavePlugin.d.ts +0 -11
- package/dist/field/features/Blocks/component/FormSavePlugin.d.ts.map +0 -1
- package/dist/field/features/Blocks/component/FormSavePlugin.js +0 -34
- package/dist/field/features/Blocks/component/index.d.ts +0 -15
- package/dist/field/features/Blocks/component/index.d.ts.map +0 -1
- package/dist/field/features/Blocks/component/index.js +0 -150
- package/dist/field/features/Blocks/component/index.scss +0 -153
- package/dist/field/features/Blocks/drawer/index.d.ts.map +0 -1
- package/dist/field/features/Blocks/drawer/index.js +0 -140
- package/dist/field/features/Blocks/index.d.ts +0 -7
- package/dist/field/features/Blocks/index.d.ts.map +0 -1
- package/dist/field/features/Blocks/index.js +0 -147
- package/dist/field/features/Blocks/nodes/BlocksNode.d.ts.map +0 -1
- package/dist/field/features/Blocks/nodes/BlocksNode.js +0 -173
- package/dist/field/features/Blocks/plugin/commands.d.ts.map +0 -1
- package/dist/field/features/Blocks/plugin/commands.js +0 -14
- package/dist/field/features/Blocks/plugin/index.d.ts +0 -5
- package/dist/field/features/Blocks/plugin/index.d.ts.map +0 -1
- package/dist/field/features/Blocks/plugin/index.js +0 -91
- package/dist/field/features/Blocks/populationPromise.d.ts +0 -5
- package/dist/field/features/Blocks/populationPromise.d.ts.map +0 -1
- package/dist/field/features/Blocks/populationPromise.js +0 -55
- package/dist/field/features/Blocks/utils/transformInputFormData.d.ts +0 -11
- package/dist/field/features/Blocks/utils/transformInputFormData.d.ts.map +0 -1
- package/dist/field/features/Blocks/utils/transformInputFormData.js +0 -35
- package/dist/field/features/Blocks/utils/transformInputFormSchema.d.ts +0 -3
- package/dist/field/features/Blocks/utils/transformInputFormSchema.d.ts.map +0 -1
- package/dist/field/features/Blocks/utils/transformInputFormSchema.js +0 -43
- package/dist/field/features/Blocks/validate.d.ts +0 -5
- package/dist/field/features/Blocks/validate.d.ts.map +0 -1
- package/dist/field/features/Blocks/validate.js +0 -62
- package/dist/field/features/Heading/index.d.ts +0 -8
- package/dist/field/features/Heading/index.d.ts.map +0 -1
- package/dist/field/features/Heading/index.js +0 -164
- package/dist/field/features/Heading/markdownTransformer.d.ts.map +0 -1
- package/dist/field/features/Heading/markdownTransformer.js +0 -39
- package/dist/field/features/Link/drawer/baseFields.d.ts.map +0 -1
- package/dist/field/features/Link/drawer/baseFields.js +0 -128
- package/dist/field/features/Link/drawer/index.d.ts.map +0 -1
- package/dist/field/features/Link/drawer/index.js +0 -40
- package/dist/field/features/Link/drawer/index.scss +0 -50
- package/dist/field/features/Link/drawer/types.d.ts +0 -8
- package/dist/field/features/Link/drawer/types.d.ts.map +0 -1
- package/dist/field/features/Link/drawer/types.js +0 -6
- package/dist/field/features/Link/index.d.ts +0 -33
- package/dist/field/features/Link/index.d.ts.map +0 -1
- package/dist/field/features/Link/index.js +0 -201
- package/dist/field/features/Link/nodes/AutoLinkNode.d.ts +0 -16
- package/dist/field/features/Link/nodes/AutoLinkNode.d.ts.map +0 -1
- package/dist/field/features/Link/nodes/AutoLinkNode.js +0 -79
- package/dist/field/features/Link/nodes/LinkNode.d.ts +0 -50
- package/dist/field/features/Link/nodes/LinkNode.d.ts.map +0 -1
- package/dist/field/features/Link/nodes/LinkNode.js +0 -326
- package/dist/field/features/Link/plugins/autoLink/index.d.ts +0 -19
- package/dist/field/features/Link/plugins/autoLink/index.d.ts.map +0 -1
- package/dist/field/features/Link/plugins/autoLink/index.js +0 -336
- package/dist/field/features/Link/plugins/clickableLink/index.d.ts.map +0 -1
- package/dist/field/features/Link/plugins/clickableLink/index.js +0 -23
- package/dist/field/features/Link/plugins/floatingLinkEditor/LinkEditor/commands.d.ts.map +0 -1
- package/dist/field/features/Link/plugins/floatingLinkEditor/LinkEditor/commands.js +0 -14
- package/dist/field/features/Link/plugins/floatingLinkEditor/LinkEditor/index.d.ts +0 -6
- package/dist/field/features/Link/plugins/floatingLinkEditor/LinkEditor/index.d.ts.map +0 -1
- package/dist/field/features/Link/plugins/floatingLinkEditor/LinkEditor/index.js +0 -336
- package/dist/field/features/Link/plugins/floatingLinkEditor/index.d.ts +0 -7
- package/dist/field/features/Link/plugins/floatingLinkEditor/index.d.ts.map +0 -1
- package/dist/field/features/Link/plugins/floatingLinkEditor/index.js +0 -65
- package/dist/field/features/Link/plugins/floatingLinkEditor/index.scss +0 -78
- package/dist/field/features/Link/plugins/floatingLinkEditor/types.d.ts +0 -13
- package/dist/field/features/Link/plugins/floatingLinkEditor/types.d.ts.map +0 -1
- package/dist/field/features/Link/plugins/floatingLinkEditor/types.js +0 -6
- package/dist/field/features/Link/plugins/floatingLinkEditor/utilities.d.ts +0 -12
- package/dist/field/features/Link/plugins/floatingLinkEditor/utilities.d.ts.map +0 -1
- package/dist/field/features/Link/plugins/floatingLinkEditor/utilities.js +0 -45
- package/dist/field/features/Link/plugins/link/index.d.ts.map +0 -1
- package/dist/field/features/Link/plugins/link/index.js +0 -69
- package/dist/field/features/Link/populationPromise.d.ts +0 -5
- package/dist/field/features/Link/populationPromise.d.ts.map +0 -1
- package/dist/field/features/Link/populationPromise.js +0 -56
- package/dist/field/features/Paragraph/index.d.ts +0 -3
- package/dist/field/features/Paragraph/index.d.ts.map +0 -1
- package/dist/field/features/Paragraph/index.js +0 -114
- package/dist/field/features/Relationship/drawer/commands.d.ts.map +0 -1
- package/dist/field/features/Relationship/drawer/commands.js +0 -14
- package/dist/field/features/Relationship/drawer/index.d.ts.map +0 -1
- package/dist/field/features/Relationship/drawer/index.js +0 -130
- package/dist/field/features/Relationship/index.d.ts +0 -18
- package/dist/field/features/Relationship/index.d.ts.map +0 -1
- package/dist/field/features/Relationship/index.js +0 -115
- package/dist/field/features/Relationship/nodes/RelationshipNode.d.ts.map +0 -1
- package/dist/field/features/Relationship/nodes/RelationshipNode.js +0 -172
- package/dist/field/features/Relationship/nodes/components/RelationshipComponent.d.ts.map +0 -1
- package/dist/field/features/Relationship/nodes/components/RelationshipComponent.js +0 -161
- package/dist/field/features/Relationship/nodes/components/index.scss +0 -97
- package/dist/field/features/Relationship/plugins/index.d.ts +0 -7
- package/dist/field/features/Relationship/plugins/index.d.ts.map +0 -1
- package/dist/field/features/Relationship/plugins/index.js +0 -107
- package/dist/field/features/Relationship/populationPromise.d.ts.map +0 -1
- package/dist/field/features/Relationship/populationPromise.js +0 -34
- package/dist/field/features/Relationship/utils/EnabledRelationshipsCondition.d.ts.map +0 -1
- package/dist/field/features/Relationship/utils/EnabledRelationshipsCondition.js +0 -84
- package/dist/field/features/Upload/component/ExtraFieldsDrawer/index.d.ts.map +0 -1
- package/dist/field/features/Upload/component/ExtraFieldsDrawer/index.js +0 -148
- package/dist/field/features/Upload/component/index.d.ts.map +0 -1
- package/dist/field/features/Upload/component/index.js +0 -191
- package/dist/field/features/Upload/component/index.scss +0 -152
- package/dist/field/features/Upload/drawer/commands.d.ts.map +0 -1
- package/dist/field/features/Upload/drawer/commands.js +0 -14
- package/dist/field/features/Upload/drawer/index.d.ts.map +0 -1
- package/dist/field/features/Upload/drawer/index.js +0 -127
- package/dist/field/features/Upload/index.d.ts +0 -11
- package/dist/field/features/Upload/index.d.ts.map +0 -1
- package/dist/field/features/Upload/index.js +0 -168
- package/dist/field/features/Upload/nodes/UploadNode.d.ts +0 -47
- package/dist/field/features/Upload/nodes/UploadNode.d.ts.map +0 -1
- package/dist/field/features/Upload/nodes/UploadNode.js +0 -160
- package/dist/field/features/Upload/plugin/index.d.ts.map +0 -1
- package/dist/field/features/Upload/plugin/index.js +0 -111
- package/dist/field/features/Upload/populationPromise.d.ts +0 -5
- package/dist/field/features/Upload/populationPromise.d.ts.map +0 -1
- package/dist/field/features/Upload/populationPromise.js +0 -56
- package/dist/field/features/Upload/validate.d.ts.map +0 -1
- package/dist/field/features/Upload/validate.js +0 -29
- package/dist/field/features/align/index.d.ts +0 -3
- package/dist/field/features/align/index.d.ts.map +0 -1
- package/dist/field/features/align/index.js +0 -121
- package/dist/field/features/converters/html/index.d.ts +0 -13
- package/dist/field/features/converters/html/index.d.ts.map +0 -1
- package/dist/field/features/converters/html/index.js +0 -25
- package/dist/field/features/debug/TestRecorder/index.d.ts +0 -3
- package/dist/field/features/debug/TestRecorder/index.d.ts.map +0 -1
- package/dist/field/features/debug/TestRecorder/index.js +0 -70
- package/dist/field/features/debug/TestRecorder/plugin/index.d.ts.map +0 -1
- package/dist/field/features/debug/TestRecorder/plugin/index.js +0 -500
- package/dist/field/features/debug/TestRecorder/plugin/index.scss +0 -51
- package/dist/field/features/debug/TreeView/index.d.ts +0 -3
- package/dist/field/features/debug/TreeView/index.d.ts.map +0 -1
- package/dist/field/features/debug/TreeView/index.js +0 -70
- package/dist/field/features/debug/TreeView/plugin.d.ts +0 -4
- package/dist/field/features/debug/TreeView/plugin.d.ts.map +0 -1
- package/dist/field/features/debug/TreeView/plugin.js +0 -70
- package/dist/field/features/format/Bold/index.d.ts +0 -3
- package/dist/field/features/format/Bold/index.d.ts.map +0 -1
- package/dist/field/features/format/Bold/index.js +0 -98
- package/dist/field/features/format/Bold/markdownTransformers.d.ts.map +0 -1
- package/dist/field/features/format/Bold/markdownTransformers.js +0 -58
- package/dist/field/features/format/InlineCode/index.d.ts +0 -3
- package/dist/field/features/format/InlineCode/index.d.ts.map +0 -1
- package/dist/field/features/format/InlineCode/index.js +0 -90
- package/dist/field/features/format/InlineCode/markdownTransformers.d.ts.map +0 -1
- package/dist/field/features/format/InlineCode/markdownTransformers.js +0 -19
- package/dist/field/features/format/Italic/index.d.ts +0 -3
- package/dist/field/features/format/Italic/index.d.ts.map +0 -1
- package/dist/field/features/format/Italic/index.js +0 -91
- package/dist/field/features/format/Italic/markdownTransformers.d.ts.map +0 -1
- package/dist/field/features/format/Italic/markdownTransformers.js +0 -35
- package/dist/field/features/format/strikethrough/index.d.ts +0 -3
- package/dist/field/features/format/strikethrough/index.d.ts.map +0 -1
- package/dist/field/features/format/strikethrough/index.js +0 -90
- package/dist/field/features/format/subscript/index.d.ts +0 -3
- package/dist/field/features/format/subscript/index.d.ts.map +0 -1
- package/dist/field/features/format/subscript/index.js +0 -86
- package/dist/field/features/format/superscript/index.d.ts +0 -3
- package/dist/field/features/format/superscript/index.d.ts.map +0 -1
- package/dist/field/features/format/superscript/index.js +0 -86
- package/dist/field/features/format/underline/index.d.ts +0 -3
- package/dist/field/features/format/underline/index.d.ts.map +0 -1
- package/dist/field/features/format/underline/index.js +0 -86
- package/dist/field/features/indent/index.d.ts +0 -3
- package/dist/field/features/indent/index.d.ts.map +0 -1
- package/dist/field/features/indent/index.js +0 -114
- package/dist/field/features/indent/plugin.d.ts +0 -3
- package/dist/field/features/indent/plugin.d.ts.map +0 -1
- package/dist/field/features/indent/plugin.js +0 -17
- package/dist/field/features/lists/CheckList/index.d.ts +0 -3
- package/dist/field/features/lists/CheckList/index.d.ts.map +0 -1
- package/dist/field/features/lists/CheckList/index.js +0 -135
- package/dist/field/features/lists/CheckList/markdownTransformers.d.ts.map +0 -1
- package/dist/field/features/lists/CheckList/markdownTransformers.js +0 -26
- package/dist/field/features/lists/CheckList/plugin/index.d.ts.map +0 -1
- package/dist/field/features/lists/CheckList/plugin/index.js +0 -23
- package/dist/field/features/lists/OrderedList/index.d.ts +0 -3
- package/dist/field/features/lists/OrderedList/index.d.ts.map +0 -1
- package/dist/field/features/lists/OrderedList/index.js +0 -133
- package/dist/field/features/lists/OrderedList/markdownTransformer.d.ts.map +0 -1
- package/dist/field/features/lists/OrderedList/markdownTransformer.js +0 -26
- package/dist/field/features/lists/UnorderedList/index.d.ts +0 -3
- package/dist/field/features/lists/UnorderedList/index.d.ts.map +0 -1
- package/dist/field/features/lists/UnorderedList/index.js +0 -133
- package/dist/field/features/lists/UnorderedList/markdownTransformer.d.ts.map +0 -1
- package/dist/field/features/lists/UnorderedList/markdownTransformer.js +0 -26
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/heading.d.ts +0 -3
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/heading.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/heading.js +0 -30
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/link.d.ts +0 -3
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/link.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/link.js +0 -41
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/list.d.ts +0 -3
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/list.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/list.js +0 -32
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/listItem.d.ts +0 -3
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/listItem.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/listItem.js +0 -32
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/quote.d.ts +0 -3
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/quote.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/quote.js +0 -30
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/unknown.d.ts +0 -3
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/unknown.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/unknown.js +0 -36
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/upload.d.ts +0 -3
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/upload.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/converters/upload.js +0 -35
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/defaultConverters.d.ts +0 -3
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/defaultConverters.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/defaultConverters.js +0 -28
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/index.d.ts +0 -18
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/index.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/index.js +0 -90
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/types.d.ts +0 -20
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/types.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/converter/types.js +0 -6
- package/dist/field/features/migrations/LexicalPluginToLexical/index.d.ts +0 -10
- package/dist/field/features/migrations/LexicalPluginToLexical/index.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/index.js +0 -50
- package/dist/field/features/migrations/LexicalPluginToLexical/nodes/unknownConvertedNode/Component.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/nodes/unknownConvertedNode/Component.js +0 -23
- package/dist/field/features/migrations/LexicalPluginToLexical/nodes/unknownConvertedNode/index.d.ts.map +0 -1
- package/dist/field/features/migrations/LexicalPluginToLexical/nodes/unknownConvertedNode/index.js +0 -131
- package/dist/field/features/migrations/LexicalPluginToLexical/nodes/unknownConvertedNode/index.scss +0 -16
- package/dist/field/features/migrations/SlateToLexical/converter/converters/blockquote.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/blockquote.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/blockquote.js +0 -33
- package/dist/field/features/migrations/SlateToLexical/converter/converters/heading.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/heading.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/heading.js +0 -39
- package/dist/field/features/migrations/SlateToLexical/converter/converters/indent.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/indent.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/indent.js +0 -57
- package/dist/field/features/migrations/SlateToLexical/converter/converters/link.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/link.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/link.js +0 -40
- package/dist/field/features/migrations/SlateToLexical/converter/converters/listItem.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/listItem.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/listItem.js +0 -35
- package/dist/field/features/migrations/SlateToLexical/converter/converters/orderedList.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/orderedList.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/orderedList.js +0 -36
- package/dist/field/features/migrations/SlateToLexical/converter/converters/relationship.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/relationship.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/relationship.js +0 -28
- package/dist/field/features/migrations/SlateToLexical/converter/converters/unknown.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/unknown.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/unknown.js +0 -37
- package/dist/field/features/migrations/SlateToLexical/converter/converters/unorderedList.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/unorderedList.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/unorderedList.js +0 -36
- package/dist/field/features/migrations/SlateToLexical/converter/converters/upload.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/converters/upload.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/converters/upload.js +0 -31
- package/dist/field/features/migrations/SlateToLexical/converter/defaultConverters.d.ts +0 -3
- package/dist/field/features/migrations/SlateToLexical/converter/defaultConverters.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/defaultConverters.js +0 -34
- package/dist/field/features/migrations/SlateToLexical/converter/index.d.ts +0 -19
- package/dist/field/features/migrations/SlateToLexical/converter/index.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/index.js +0 -131
- package/dist/field/features/migrations/SlateToLexical/converter/types.d.ts +0 -16
- package/dist/field/features/migrations/SlateToLexical/converter/types.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/converter/types.js +0 -6
- package/dist/field/features/migrations/SlateToLexical/index.d.ts +0 -10
- package/dist/field/features/migrations/SlateToLexical/index.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/index.js +0 -50
- package/dist/field/features/migrations/SlateToLexical/nodes/unknownConvertedNode/Component.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/nodes/unknownConvertedNode/Component.js +0 -23
- package/dist/field/features/migrations/SlateToLexical/nodes/unknownConvertedNode/index.d.ts.map +0 -1
- package/dist/field/features/migrations/SlateToLexical/nodes/unknownConvertedNode/index.js +0 -131
- package/dist/field/features/migrations/SlateToLexical/nodes/unknownConvertedNode/index.scss +0 -16
- package/dist/field/lexical/config/EditorConfigProvider.d.ts +0 -16
- package/dist/field/lexical/config/EditorConfigProvider.d.ts.map +0 -1
- package/dist/field/lexical/config/EditorConfigProvider.js +0 -99
- package/dist/field/lexical/config/default.d.ts +0 -6
- package/dist/field/lexical/config/default.d.ts.map +0 -1
- package/dist/field/lexical/config/default.js +0 -112
- package/dist/field/lexical/config/defaultClient.d.ts +0 -3
- package/dist/field/lexical/config/defaultClient.d.ts.map +0 -1
- package/dist/field/lexical/config/defaultClient.js +0 -17
- package/dist/field/lexical/config/loader.d.ts +0 -7
- package/dist/field/lexical/config/loader.d.ts.map +0 -1
- package/dist/field/lexical/config/loader.js +0 -133
- package/dist/field/lexical/config/sanitize.d.ts +0 -5
- package/dist/field/lexical/config/sanitize.d.ts.map +0 -1
- package/dist/field/lexical/config/sanitize.js +0 -170
- /package/dist/field/features/{BlockQuote → blockquote}/markdownTransformer.d.ts +0 -0
- /package/dist/field/features/{Blocks → blocks}/drawer/index.d.ts +0 -0
- /package/dist/field/features/{Blocks → blocks}/nodes/BlocksNode.d.ts +0 -0
- /package/dist/field/features/{Blocks → blocks}/plugin/commands.d.ts +0 -0
- /package/dist/field/features/debug/{TestRecorder → testrecorder}/plugin/index.d.ts +0 -0
- /package/dist/field/features/debug/{TreeView → treeview/plugin}/index.scss +0 -0
- /package/dist/field/features/format/{Bold → bold}/markdownTransformers.d.ts +0 -0
- /package/dist/field/features/format/{InlineCode → inlinecode}/markdownTransformers.d.ts +0 -0
- /package/dist/field/features/format/{Italic → italic}/markdownTransformers.d.ts +0 -0
- /package/dist/field/features/{Heading → heading}/markdownTransformer.d.ts +0 -0
- /package/dist/field/features/{Link → link}/drawer/baseFields.d.ts +0 -0
- /package/dist/field/features/{Link → link}/drawer/index.d.ts +0 -0
- /package/dist/field/features/{Link → link}/plugins/clickableLink/index.d.ts +0 -0
- /package/dist/field/features/{Link → link}/plugins/floatingLinkEditor/LinkEditor/commands.d.ts +0 -0
- /package/dist/field/features/{Link → link}/plugins/link/index.d.ts +0 -0
- /package/dist/field/features/lists/{CheckList → checklist}/markdownTransformers.d.ts +0 -0
- /package/dist/field/features/lists/{CheckList → checklist}/plugin/index.d.ts +0 -0
- /package/dist/field/features/lists/{OrderedList → orderedlist}/markdownTransformer.d.ts +0 -0
- /package/dist/field/features/lists/{UnorderedList → unorderedlist}/markdownTransformer.d.ts +0 -0
- /package/dist/field/features/migrations/{LexicalPluginToLexical → lexicalPluginToLexical}/nodes/unknownConvertedNode/Component.d.ts +0 -0
- /package/dist/field/features/migrations/{LexicalPluginToLexical → lexicalPluginToLexical}/nodes/unknownConvertedNode/index.d.ts +0 -0
- /package/dist/field/features/migrations/{SlateToLexical → slateToLexical}/nodes/unknownConvertedNode/Component.d.ts +0 -0
- /package/dist/field/features/migrations/{SlateToLexical → slateToLexical}/nodes/unknownConvertedNode/index.d.ts +0 -0
- /package/dist/field/features/{Relationship → relationship}/drawer/commands.d.ts +0 -0
- /package/dist/field/features/{Relationship → relationship}/drawer/index.d.ts +0 -0
- /package/dist/field/features/{Relationship → relationship}/nodes/RelationshipNode.d.ts +0 -0
- /package/dist/field/features/{Relationship → relationship}/nodes/components/RelationshipComponent.d.ts +0 -0
- /package/dist/field/features/{Relationship → relationship}/populationPromise.d.ts +0 -0
- /package/dist/field/features/{Relationship → relationship}/utils/EnabledRelationshipsCondition.d.ts +0 -0
- /package/dist/field/features/{Upload → upload}/component/ExtraFieldsDrawer/index.d.ts +0 -0
- /package/dist/field/features/{Upload → upload}/component/index.d.ts +0 -0
- /package/dist/field/features/{Upload → upload}/drawer/commands.d.ts +0 -0
- /package/dist/field/features/{Upload → upload}/drawer/index.d.ts +0 -0
- /package/dist/field/features/{Upload → upload}/plugin/index.d.ts +0 -0
- /package/dist/field/features/{Upload → upload}/validate.d.ts +0 -0
package/dist/field/features/migrations/LexicalPluginToLexical/nodes/unknownConvertedNode/index.js
DELETED
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
function _export(target, all) {
|
|
6
|
-
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: all[name]
|
|
9
|
-
});
|
|
10
|
-
}
|
|
11
|
-
_export(exports, {
|
|
12
|
-
$createUnknownConvertedNode: function() {
|
|
13
|
-
return $createUnknownConvertedNode;
|
|
14
|
-
},
|
|
15
|
-
$isUnknownConvertedNode: function() {
|
|
16
|
-
return $isUnknownConvertedNode;
|
|
17
|
-
},
|
|
18
|
-
UnknownConvertedNode: function() {
|
|
19
|
-
return UnknownConvertedNode;
|
|
20
|
-
}
|
|
21
|
-
});
|
|
22
|
-
const _utils = require("@lexical/utils");
|
|
23
|
-
const _lexical = require("lexical");
|
|
24
|
-
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
25
|
-
function _getRequireWildcardCache(nodeInterop) {
|
|
26
|
-
if (typeof WeakMap !== "function") return null;
|
|
27
|
-
var cacheBabelInterop = new WeakMap();
|
|
28
|
-
var cacheNodeInterop = new WeakMap();
|
|
29
|
-
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
30
|
-
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
31
|
-
})(nodeInterop);
|
|
32
|
-
}
|
|
33
|
-
function _interop_require_wildcard(obj, nodeInterop) {
|
|
34
|
-
if (!nodeInterop && obj && obj.__esModule) {
|
|
35
|
-
return obj;
|
|
36
|
-
}
|
|
37
|
-
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
38
|
-
return {
|
|
39
|
-
default: obj
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
var cache = _getRequireWildcardCache(nodeInterop);
|
|
43
|
-
if (cache && cache.has(obj)) {
|
|
44
|
-
return cache.get(obj);
|
|
45
|
-
}
|
|
46
|
-
var newObj = {
|
|
47
|
-
__proto__: null
|
|
48
|
-
};
|
|
49
|
-
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
50
|
-
for(var key in obj){
|
|
51
|
-
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
52
|
-
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
53
|
-
if (desc && (desc.get || desc.set)) {
|
|
54
|
-
Object.defineProperty(newObj, key, desc);
|
|
55
|
-
} else {
|
|
56
|
-
newObj[key] = obj[key];
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
newObj.default = obj;
|
|
61
|
-
if (cache) {
|
|
62
|
-
cache.set(obj, newObj);
|
|
63
|
-
}
|
|
64
|
-
return newObj;
|
|
65
|
-
}
|
|
66
|
-
const Component = /*#__PURE__*/ _react.lazy(()=>// @ts-expect-error TypeScript being dumb
|
|
67
|
-
Promise.resolve().then(()=>/*#__PURE__*/ _interop_require_wildcard(require("./Component"))).then((module)=>({
|
|
68
|
-
default: module.UnknownConvertedNodeComponent
|
|
69
|
-
})));
|
|
70
|
-
class UnknownConvertedNode extends _lexical.DecoratorNode {
|
|
71
|
-
__data;
|
|
72
|
-
constructor({ data, key }){
|
|
73
|
-
super(key);
|
|
74
|
-
this.__data = data;
|
|
75
|
-
}
|
|
76
|
-
static clone(node) {
|
|
77
|
-
return new UnknownConvertedNode({
|
|
78
|
-
data: node.__data,
|
|
79
|
-
key: node.__key
|
|
80
|
-
});
|
|
81
|
-
}
|
|
82
|
-
static getType() {
|
|
83
|
-
return 'unknownConverted';
|
|
84
|
-
}
|
|
85
|
-
static importJSON(serializedNode) {
|
|
86
|
-
const node = $createUnknownConvertedNode({
|
|
87
|
-
data: serializedNode.data
|
|
88
|
-
});
|
|
89
|
-
return node;
|
|
90
|
-
}
|
|
91
|
-
canInsertTextAfter() {
|
|
92
|
-
return true;
|
|
93
|
-
}
|
|
94
|
-
canInsertTextBefore() {
|
|
95
|
-
return true;
|
|
96
|
-
}
|
|
97
|
-
createDOM(config) {
|
|
98
|
-
const element = document.createElement('span');
|
|
99
|
-
(0, _utils.addClassNamesToElement)(element, 'unknownConverted');
|
|
100
|
-
return element;
|
|
101
|
-
}
|
|
102
|
-
decorate() {
|
|
103
|
-
return /*#__PURE__*/ _react.createElement(Component, {
|
|
104
|
-
data: this.__data
|
|
105
|
-
});
|
|
106
|
-
}
|
|
107
|
-
exportJSON() {
|
|
108
|
-
return {
|
|
109
|
-
data: this.__data,
|
|
110
|
-
type: this.getType(),
|
|
111
|
-
version: 1
|
|
112
|
-
};
|
|
113
|
-
}
|
|
114
|
-
// Mutation
|
|
115
|
-
isInline() {
|
|
116
|
-
return true;
|
|
117
|
-
}
|
|
118
|
-
updateDOM(prevNode, dom) {
|
|
119
|
-
return false;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
function $createUnknownConvertedNode({ data }) {
|
|
123
|
-
return new UnknownConvertedNode({
|
|
124
|
-
data
|
|
125
|
-
});
|
|
126
|
-
}
|
|
127
|
-
function $isUnknownConvertedNode(node) {
|
|
128
|
-
return node instanceof UnknownConvertedNode;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL0xleGljYWxQbHVnaW5Ub0xleGljYWwvbm9kZXMvdW5rbm93bkNvbnZlcnRlZE5vZGUvaW5kZXgudHN4Il0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgU2VyaWFsaXplZExleGljYWxOb2RlLCBTcHJlYWQgfSBmcm9tICdsZXhpY2FsJ1xuXG5pbXBvcnQgeyBhZGRDbGFzc05hbWVzVG9FbGVtZW50IH0gZnJvbSAnQGxleGljYWwvdXRpbHMnXG5pbXBvcnQgeyBEZWNvcmF0b3JOb2RlLCB0eXBlIEVkaXRvckNvbmZpZywgdHlwZSBMZXhpY2FsTm9kZSwgdHlwZSBOb2RlS2V5IH0gZnJvbSAnbGV4aWNhbCdcbmltcG9ydCAqIGFzIFJlYWN0IGZyb20gJ3JlYWN0J1xuXG5leHBvcnQgdHlwZSBVbmtub3duQ29udmVydGVkTm9kZURhdGEgPSB7XG4gIG5vZGVEYXRhOiB1bmtub3duXG4gIG5vZGVUeXBlOiBzdHJpbmdcbn1cblxuZXhwb3J0IHR5cGUgU2VyaWFsaXplZFVua25vd25Db252ZXJ0ZWROb2RlID0gU3ByZWFkPFxuICB7XG4gICAgZGF0YTogVW5rbm93bkNvbnZlcnRlZE5vZGVEYXRhXG4gIH0sXG4gIFNlcmlhbGl6ZWRMZXhpY2FsTm9kZVxuPlxuXG5jb25zdCBDb21wb25lbnQgPSBSZWFjdC5sYXp5KCgpID0+XG4gIC8vIEB0cy1leHBlY3QtZXJyb3IgVHlwZVNjcmlwdCBiZWluZyBkdW1iXG4gIGltcG9ydCgnLi9Db21wb25lbnQnKS50aGVuKChtb2R1bGUpID0+ICh7XG4gICAgZGVmYXVsdDogbW9kdWxlLlVua25vd25Db252ZXJ0ZWROb2RlQ29tcG9uZW50LFxuICB9KSksXG4pXG5cbi8qKiBAbm9Jbmhlcml0RG9jICovXG5leHBvcnQgY2xhc3MgVW5rbm93bkNvbnZlcnRlZE5vZGUgZXh0ZW5kcyBEZWNvcmF0b3JOb2RlPEpTWC5FbGVtZW50PiB7XG4gIF9fZGF0YTogVW5rbm93bkNvbnZlcnRlZE5vZGVEYXRhXG5cbiAgY29uc3RydWN0b3IoeyBkYXRhLCBrZXkgfTogeyBkYXRhOiBVbmtub3duQ29udmVydGVkTm9kZURhdGE7IGtleT86IE5vZGVLZXkgfSkge1xuICAgIHN1cGVyKGtleSlcbiAgICB0aGlzLl9fZGF0YSA9IGRhdGFcbiAgfVxuXG4gIHN0YXRpYyBjbG9uZShub2RlOiBVbmtub3duQ29udmVydGVkTm9kZSk6IFVua25vd25Db252ZXJ0ZWROb2RlIHtcbiAgICByZXR1cm4gbmV3IFVua25vd25Db252ZXJ0ZWROb2RlKHtcbiAgICAgIGRhdGE6IG5vZGUuX19kYXRhLFxuICAgICAga2V5OiBub2RlLl9fa2V5LFxuICAgIH0pXG4gIH1cblxuICBzdGF0aWMgZ2V0VHlwZSgpOiBzdHJpbmcge1xuICAgIHJldHVybiAndW5rbm93bkNvbnZlcnRlZCdcbiAgfVxuXG4gIHN0YXRpYyBpbXBvcnRKU09OKHNlcmlhbGl6ZWROb2RlOiBTZXJpYWxpemVkVW5rbm93bkNvbnZlcnRlZE5vZGUpOiBVbmtub3duQ29udmVydGVkTm9kZSB7XG4gICAgY29uc3Qgbm9kZSA9ICRjcmVhdGVVbmtub3duQ29udmVydGVkTm9kZSh7IGRhdGE6IHNlcmlhbGl6ZWROb2RlLmRhdGEgfSlcbiAgICByZXR1cm4gbm9kZVxuICB9XG5cbiAgY2FuSW5zZXJ0VGV4dEFmdGVyKCk6IHRydWUge1xuICAgIHJldHVybiB0cnVlXG4gIH1cblxuICBjYW5JbnNlcnRUZXh0QmVmb3JlKCk6IHRydWUge1xuICAgIHJldHVybiB0cnVlXG4gIH1cblxuICBjcmVhdGVET00oY29uZmlnOiBFZGl0b3JDb25maWcpOiBIVE1MRWxlbWVudCB7XG4gICAgY29uc3QgZWxlbWVudCA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoJ3NwYW4nKVxuICAgIGFkZENsYXNzTmFtZXNUb0VsZW1lbnQoZWxlbWVudCwgJ3Vua25vd25Db252ZXJ0ZWQnKVxuICAgIHJldHVybiBlbGVtZW50XG4gIH1cblxuICBkZWNvcmF0ZSgpOiBKU1guRWxlbWVudCB8IG51bGwge1xuICAgIHJldHVybiA8Q29tcG9uZW50IGRhdGE9e3RoaXMuX19kYXRhfSAvPlxuICB9XG5cbiAgZXhwb3J0SlNPTigpOiBTZXJpYWxpemVkVW5rbm93bkNvbnZlcnRlZE5vZGUge1xuICAgIHJldHVybiB7XG4gICAgICBkYXRhOiB0aGlzLl9fZGF0YSxcbiAgICAgIHR5cGU6IHRoaXMuZ2V0VHlwZSgpLFxuICAgICAgdmVyc2lvbjogMSxcbiAgICB9XG4gIH1cblxuICAvLyBNdXRhdGlvblxuXG4gIGlzSW5saW5lKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0cnVlXG4gIH1cblxuICB1cGRhdGVET00ocHJldk5vZGU6IFVua25vd25Db252ZXJ0ZWROb2RlLCBkb206IEhUTUxFbGVtZW50KTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIGZhbHNlXG4gIH1cbn1cblxuZXhwb3J0IGZ1bmN0aW9uICRjcmVhdGVVbmtub3duQ29udmVydGVkTm9kZSh7XG4gIGRhdGEsXG59OiB7XG4gIGRhdGE6IFVua25vd25Db252ZXJ0ZWROb2RlRGF0YVxufSk6IFVua25vd25Db252ZXJ0ZWROb2RlIHtcbiAgcmV0dXJuIG5ldyBVbmtub3duQ29udmVydGVkTm9kZSh7XG4gICAgZGF0YSxcbiAgfSlcbn1cblxuZXhwb3J0IGZ1bmN0aW9uICRpc1Vua25vd25Db252ZXJ0ZWROb2RlKFxuICBub2RlOiBMZXhpY2FsTm9kZSB8IG51bGwgfCB1bmRlZmluZWQsXG4pOiBub2RlIGlzIFVua25vd25Db252ZXJ0ZWROb2RlIHtcbiAgcmV0dXJuIG5vZGUgaW5zdGFuY2VvZiBVbmtub3duQ29udmVydGVkTm9kZVxufVxuIl0sIm5hbWVzIjpbIiRjcmVhdGVVbmtub3duQ29udmVydGVkTm9kZSIsIiRpc1Vua25vd25Db252ZXJ0ZWROb2RlIiwiVW5rbm93bkNvbnZlcnRlZE5vZGUiLCJDb21wb25lbnQiLCJSZWFjdCIsImxhenkiLCJ0aGVuIiwibW9kdWxlIiwiZGVmYXVsdCIsIlVua25vd25Db252ZXJ0ZWROb2RlQ29tcG9uZW50IiwiRGVjb3JhdG9yTm9kZSIsIl9fZGF0YSIsImNvbnN0cnVjdG9yIiwiZGF0YSIsImtleSIsImNsb25lIiwibm9kZSIsIl9fa2V5IiwiZ2V0VHlwZSIsImltcG9ydEpTT04iLCJzZXJpYWxpemVkTm9kZSIsImNhbkluc2VydFRleHRBZnRlciIsImNhbkluc2VydFRleHRCZWZvcmUiLCJjcmVhdGVET00iLCJjb25maWciLCJlbGVtZW50IiwiZG9jdW1lbnQiLCJjcmVhdGVFbGVtZW50IiwiYWRkQ2xhc3NOYW1lc1RvRWxlbWVudCIsImRlY29yYXRlIiwiZXhwb3J0SlNPTiIsInR5cGUiLCJ2ZXJzaW9uIiwiaXNJbmxpbmUiLCJ1cGRhdGVET00iLCJwcmV2Tm9kZSIsImRvbSJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7SUF1RmdCQSwyQkFBMkI7ZUFBM0JBOztJQVVBQyx1QkFBdUI7ZUFBdkJBOztJQXZFSEMsb0JBQW9CO2VBQXBCQTs7O3VCQXhCMEI7eUJBQzBDOytEQUMxRDs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBY3ZCLE1BQU1DLDBCQUFZQyxPQUFNQyxJQUFJLENBQUMsSUFDM0IseUNBQXlDO0lBQ3pDLG1FQUFBLFFBQU8saUJBQWVDLElBQUksQ0FBQyxDQUFDQyxTQUFZLENBQUE7WUFDdENDLFNBQVNELE9BQU9FLDZCQUE2QjtRQUMvQyxDQUFBO0FBSUssTUFBTVAsNkJBQTZCUSxzQkFBYTtJQUNyREMsT0FBZ0M7SUFFaENDLFlBQVksRUFBRUMsSUFBSSxFQUFFQyxHQUFHLEVBQXFELENBQUU7UUFDNUUsS0FBSyxDQUFDQTtRQUNOLElBQUksQ0FBQ0gsTUFBTSxHQUFHRTtJQUNoQjtJQUVBLE9BQU9FLE1BQU1DLElBQTBCLEVBQXdCO1FBQzdELE9BQU8sSUFBSWQscUJBQXFCO1lBQzlCVyxNQUFNRyxLQUFLTCxNQUFNO1lBQ2pCRyxLQUFLRSxLQUFLQyxLQUFLO1FBQ2pCO0lBQ0Y7SUFFQSxPQUFPQyxVQUFrQjtRQUN2QixPQUFPO0lBQ1Q7SUFFQSxPQUFPQyxXQUFXQyxjQUE4QyxFQUF3QjtRQUN0RixNQUFNSixPQUFPaEIsNEJBQTRCO1lBQUVhLE1BQU1PLGVBQWVQLElBQUk7UUFBQztRQUNyRSxPQUFPRztJQUNUO0lBRUFLLHFCQUEyQjtRQUN6QixPQUFPO0lBQ1Q7SUFFQUMsc0JBQTRCO1FBQzFCLE9BQU87SUFDVDtJQUVBQyxVQUFVQyxNQUFvQixFQUFlO1FBQzNDLE1BQU1DLFVBQVVDLFNBQVNDLGFBQWEsQ0FBQztRQUN2Q0MsSUFBQUEsNkJBQXNCLEVBQUNILFNBQVM7UUFDaEMsT0FBT0E7SUFDVDtJQUVBSSxXQUErQjtRQUM3QixxQkFBTyxxQkFBQzFCO1lBQVVVLE1BQU0sSUFBSSxDQUFDRixNQUFNOztJQUNyQztJQUVBbUIsYUFBNkM7UUFDM0MsT0FBTztZQUNMakIsTUFBTSxJQUFJLENBQUNGLE1BQU07WUFDakJvQixNQUFNLElBQUksQ0FBQ2IsT0FBTztZQUNsQmMsU0FBUztRQUNYO0lBQ0Y7SUFFQSxXQUFXO0lBRVhDLFdBQW9CO1FBQ2xCLE9BQU87SUFDVDtJQUVBQyxVQUFVQyxRQUE4QixFQUFFQyxHQUFnQixFQUFXO1FBQ25FLE9BQU87SUFDVDtBQUNGO0FBRU8sU0FBU3BDLDRCQUE0QixFQUMxQ2EsSUFBSSxFQUdMO0lBQ0MsT0FBTyxJQUFJWCxxQkFBcUI7UUFDOUJXO0lBQ0Y7QUFDRjtBQUVPLFNBQVNaLHdCQUNkZSxJQUFvQztJQUVwQyxPQUFPQSxnQkFBZ0JkO0FBQ3pCIn0=
|
package/dist/field/features/migrations/LexicalPluginToLexical/nodes/unknownConvertedNode/index.scss
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
@import 'payload/scss';
|
|
2
|
-
|
|
3
|
-
span.unknownConverted {
|
|
4
|
-
text-transform: uppercase;
|
|
5
|
-
font-family: 'Roboto Mono', monospace;
|
|
6
|
-
letter-spacing: 2px;
|
|
7
|
-
font-size: base(0.5);
|
|
8
|
-
margin: 0 0 base(1);
|
|
9
|
-
background: red;
|
|
10
|
-
color: white;
|
|
11
|
-
display: inline-block;
|
|
12
|
-
|
|
13
|
-
div {
|
|
14
|
-
background: red;
|
|
15
|
-
}
|
|
16
|
-
}
|
package/dist/field/features/migrations/SlateToLexical/converter/converters/blockquote.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"blockquote.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/blockquote.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAIlD,eAAO,MAAM,wBAAwB,EAAE,kBAiBtC,CAAA"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "SlateBlockquoteConverter", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return SlateBlockquoteConverter;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const _index = require("../index");
|
|
12
|
-
const SlateBlockquoteConverter = {
|
|
13
|
-
converter ({ converters, slateNode }) {
|
|
14
|
-
return {
|
|
15
|
-
children: (0, _index.convertSlateNodesToLexical)({
|
|
16
|
-
canContainParagraphs: false,
|
|
17
|
-
converters,
|
|
18
|
-
parentNodeType: 'quote',
|
|
19
|
-
slateNodes: slateNode.children || []
|
|
20
|
-
}),
|
|
21
|
-
direction: 'ltr',
|
|
22
|
-
format: '',
|
|
23
|
-
indent: 0,
|
|
24
|
-
type: 'quote',
|
|
25
|
-
version: 1
|
|
26
|
-
};
|
|
27
|
-
},
|
|
28
|
-
nodeTypes: [
|
|
29
|
-
'blockquote'
|
|
30
|
-
]
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL1NsYXRlVG9MZXhpY2FsL2NvbnZlcnRlci9jb252ZXJ0ZXJzL2Jsb2NrcXVvdGUudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUgeyBTZXJpYWxpemVkUXVvdGVOb2RlIH0gZnJvbSAnQGxleGljYWwvcmljaC10ZXh0J1xuXG5pbXBvcnQgdHlwZSB7IFNsYXRlTm9kZUNvbnZlcnRlciB9IGZyb20gJy4uL3R5cGVzJ1xuXG5pbXBvcnQgeyBjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCB9IGZyb20gJy4uL2luZGV4J1xuXG5leHBvcnQgY29uc3QgU2xhdGVCbG9ja3F1b3RlQ29udmVydGVyOiBTbGF0ZU5vZGVDb252ZXJ0ZXIgPSB7XG4gIGNvbnZlcnRlcih7IGNvbnZlcnRlcnMsIHNsYXRlTm9kZSB9KSB7XG4gICAgcmV0dXJuIHtcbiAgICAgIGNoaWxkcmVuOiBjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCh7XG4gICAgICAgIGNhbkNvbnRhaW5QYXJhZ3JhcGhzOiBmYWxzZSxcbiAgICAgICAgY29udmVydGVycyxcbiAgICAgICAgcGFyZW50Tm9kZVR5cGU6ICdxdW90ZScsXG4gICAgICAgIHNsYXRlTm9kZXM6IHNsYXRlTm9kZS5jaGlsZHJlbiB8fCBbXSxcbiAgICAgIH0pLFxuICAgICAgZGlyZWN0aW9uOiAnbHRyJyxcbiAgICAgIGZvcm1hdDogJycsXG4gICAgICBpbmRlbnQ6IDAsXG4gICAgICB0eXBlOiAncXVvdGUnLFxuICAgICAgdmVyc2lvbjogMSxcbiAgICB9IGFzIGNvbnN0IGFzIFNlcmlhbGl6ZWRRdW90ZU5vZGVcbiAgfSxcbiAgbm9kZVR5cGVzOiBbJ2Jsb2NrcXVvdGUnXSxcbn1cbiJdLCJuYW1lcyI6WyJTbGF0ZUJsb2NrcXVvdGVDb252ZXJ0ZXIiLCJjb252ZXJ0ZXIiLCJjb252ZXJ0ZXJzIiwic2xhdGVOb2RlIiwiY2hpbGRyZW4iLCJjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCIsImNhbkNvbnRhaW5QYXJhZ3JhcGhzIiwicGFyZW50Tm9kZVR5cGUiLCJzbGF0ZU5vZGVzIiwiZGlyZWN0aW9uIiwiZm9ybWF0IiwiaW5kZW50IiwidHlwZSIsInZlcnNpb24iLCJub2RlVHlwZXMiXSwibWFwcGluZ3MiOiI7Ozs7K0JBTWFBOzs7ZUFBQUE7Ozt1QkFGOEI7QUFFcEMsTUFBTUEsMkJBQStDO0lBQzFEQyxXQUFVLEVBQUVDLFVBQVUsRUFBRUMsU0FBUyxFQUFFO1FBQ2pDLE9BQU87WUFDTEMsVUFBVUMsSUFBQUEsaUNBQTBCLEVBQUM7Z0JBQ25DQyxzQkFBc0I7Z0JBQ3RCSjtnQkFDQUssZ0JBQWdCO2dCQUNoQkMsWUFBWUwsVUFBVUMsUUFBUSxJQUFJLEVBQUU7WUFDdEM7WUFDQUssV0FBVztZQUNYQyxRQUFRO1lBQ1JDLFFBQVE7WUFDUkMsTUFBTTtZQUNOQyxTQUFTO1FBQ1g7SUFDRjtJQUNBQyxXQUFXO1FBQUM7S0FBYTtBQUMzQiJ9
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"heading.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/heading.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAIlD,eAAO,MAAM,qBAAqB,EAAE,kBAkBnC,CAAA"}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "SlateHeadingConverter", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return SlateHeadingConverter;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const _ = require("..");
|
|
12
|
-
const SlateHeadingConverter = {
|
|
13
|
-
converter ({ converters, slateNode }) {
|
|
14
|
-
return {
|
|
15
|
-
children: (0, _.convertSlateNodesToLexical)({
|
|
16
|
-
canContainParagraphs: false,
|
|
17
|
-
converters,
|
|
18
|
-
parentNodeType: 'heading',
|
|
19
|
-
slateNodes: slateNode.children || []
|
|
20
|
-
}),
|
|
21
|
-
direction: 'ltr',
|
|
22
|
-
format: '',
|
|
23
|
-
indent: 0,
|
|
24
|
-
tag: slateNode.type,
|
|
25
|
-
type: 'heading',
|
|
26
|
-
version: 1
|
|
27
|
-
};
|
|
28
|
-
},
|
|
29
|
-
nodeTypes: [
|
|
30
|
-
'h1',
|
|
31
|
-
'h2',
|
|
32
|
-
'h3',
|
|
33
|
-
'h4',
|
|
34
|
-
'h5',
|
|
35
|
-
'h6'
|
|
36
|
-
]
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL1NsYXRlVG9MZXhpY2FsL2NvbnZlcnRlci9jb252ZXJ0ZXJzL2hlYWRpbmcudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUgeyBTZXJpYWxpemVkSGVhZGluZ05vZGUgfSBmcm9tICdAbGV4aWNhbC9yaWNoLXRleHQnXG5cbmltcG9ydCB0eXBlIHsgU2xhdGVOb2RlQ29udmVydGVyIH0gZnJvbSAnLi4vdHlwZXMnXG5cbmltcG9ydCB7IGNvbnZlcnRTbGF0ZU5vZGVzVG9MZXhpY2FsIH0gZnJvbSAnLi4nXG5cbmV4cG9ydCBjb25zdCBTbGF0ZUhlYWRpbmdDb252ZXJ0ZXI6IFNsYXRlTm9kZUNvbnZlcnRlciA9IHtcbiAgY29udmVydGVyKHsgY29udmVydGVycywgc2xhdGVOb2RlIH0pIHtcbiAgICByZXR1cm4ge1xuICAgICAgY2hpbGRyZW46IGNvbnZlcnRTbGF0ZU5vZGVzVG9MZXhpY2FsKHtcbiAgICAgICAgY2FuQ29udGFpblBhcmFncmFwaHM6IGZhbHNlLFxuICAgICAgICBjb252ZXJ0ZXJzLFxuICAgICAgICBwYXJlbnROb2RlVHlwZTogJ2hlYWRpbmcnLFxuICAgICAgICBzbGF0ZU5vZGVzOiBzbGF0ZU5vZGUuY2hpbGRyZW4gfHwgW10sXG4gICAgICB9KSxcbiAgICAgIGRpcmVjdGlvbjogJ2x0cicsXG4gICAgICBmb3JtYXQ6ICcnLFxuICAgICAgaW5kZW50OiAwLFxuICAgICAgdGFnOiBzbGF0ZU5vZGUudHlwZSBhcyAnaDEnIHwgJ2gyJyB8ICdoMycgfCAnaDQnIHwgJ2g1JyB8ICdoNicsIC8vIFNsYXRlIHB1dHMgdGhlIHRhZyAoaDEgLyBoMiAvIC4uLikgaW5zaWRlIG9mIG5vZGUudHlwZVxuICAgICAgdHlwZTogJ2hlYWRpbmcnLFxuICAgICAgdmVyc2lvbjogMSxcbiAgICB9IGFzIGNvbnN0IGFzIFNlcmlhbGl6ZWRIZWFkaW5nTm9kZVxuICB9LFxuICBub2RlVHlwZXM6IFsnaDEnLCAnaDInLCAnaDMnLCAnaDQnLCAnaDUnLCAnaDYnXSxcbn1cbiJdLCJuYW1lcyI6WyJTbGF0ZUhlYWRpbmdDb252ZXJ0ZXIiLCJjb252ZXJ0ZXIiLCJjb252ZXJ0ZXJzIiwic2xhdGVOb2RlIiwiY2hpbGRyZW4iLCJjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCIsImNhbkNvbnRhaW5QYXJhZ3JhcGhzIiwicGFyZW50Tm9kZVR5cGUiLCJzbGF0ZU5vZGVzIiwiZGlyZWN0aW9uIiwiZm9ybWF0IiwiaW5kZW50IiwidGFnIiwidHlwZSIsInZlcnNpb24iLCJub2RlVHlwZXMiXSwibWFwcGluZ3MiOiI7Ozs7K0JBTWFBOzs7ZUFBQUE7OztrQkFGOEI7QUFFcEMsTUFBTUEsd0JBQTRDO0lBQ3ZEQyxXQUFVLEVBQUVDLFVBQVUsRUFBRUMsU0FBUyxFQUFFO1FBQ2pDLE9BQU87WUFDTEMsVUFBVUMsSUFBQUEsNEJBQTBCLEVBQUM7Z0JBQ25DQyxzQkFBc0I7Z0JBQ3RCSjtnQkFDQUssZ0JBQWdCO2dCQUNoQkMsWUFBWUwsVUFBVUMsUUFBUSxJQUFJLEVBQUU7WUFDdEM7WUFDQUssV0FBVztZQUNYQyxRQUFRO1lBQ1JDLFFBQVE7WUFDUkMsS0FBS1QsVUFBVVUsSUFBSTtZQUNuQkEsTUFBTTtZQUNOQyxTQUFTO1FBQ1g7SUFDRjtJQUNBQyxXQUFXO1FBQUM7UUFBTTtRQUFNO1FBQU07UUFBTTtRQUFNO0tBQUs7QUFDakQifQ==
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/indent.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAIlD,eAAO,MAAM,oBAAoB,EAAE,kBA0DlC,CAAA"}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "SlateIndentConverter", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return SlateIndentConverter;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const _ = require("..");
|
|
12
|
-
const SlateIndentConverter = {
|
|
13
|
-
converter ({ converters, slateNode }) {
|
|
14
|
-
console.log('slateToLexical > IndentConverter > converter', JSON.stringify(slateNode, null, 2));
|
|
15
|
-
const convertChildren = (node, indentLevel = 0)=>{
|
|
16
|
-
if (node?.type && (!node.children || node.type !== 'indent') || !node?.type && node?.text) {
|
|
17
|
-
console.log('slateToLexical > IndentConverter > convertChildren > node', JSON.stringify(node, null, 2));
|
|
18
|
-
console.log('slateToLexical > IndentConverter > convertChildren > nodeOutput', JSON.stringify((0, _.convertSlateNodesToLexical)({
|
|
19
|
-
canContainParagraphs: false,
|
|
20
|
-
converters,
|
|
21
|
-
parentNodeType: 'indent',
|
|
22
|
-
slateNodes: [
|
|
23
|
-
node
|
|
24
|
-
]
|
|
25
|
-
}), null, 2));
|
|
26
|
-
return {
|
|
27
|
-
...(0, _.convertSlateNodesToLexical)({
|
|
28
|
-
canContainParagraphs: false,
|
|
29
|
-
converters,
|
|
30
|
-
parentNodeType: 'indent',
|
|
31
|
-
slateNodes: [
|
|
32
|
-
node
|
|
33
|
-
]
|
|
34
|
-
})[0],
|
|
35
|
-
indent: indentLevel
|
|
36
|
-
};
|
|
37
|
-
}
|
|
38
|
-
const children = node.children.map((child)=>convertChildren(child, indentLevel + 1));
|
|
39
|
-
console.log('slateToLexical > IndentConverter > children', JSON.stringify(children, null, 2));
|
|
40
|
-
return {
|
|
41
|
-
children: children,
|
|
42
|
-
direction: 'ltr',
|
|
43
|
-
format: '',
|
|
44
|
-
indent: indentLevel,
|
|
45
|
-
type: 'paragraph',
|
|
46
|
-
version: 1
|
|
47
|
-
};
|
|
48
|
-
};
|
|
49
|
-
console.log('slateToLexical > IndentConverter > output', JSON.stringify(convertChildren(slateNode), null, 2));
|
|
50
|
-
return convertChildren(slateNode);
|
|
51
|
-
},
|
|
52
|
-
nodeTypes: [
|
|
53
|
-
'indent'
|
|
54
|
-
]
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL1NsYXRlVG9MZXhpY2FsL2NvbnZlcnRlci9jb252ZXJ0ZXJzL2luZGVudC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7IFNlcmlhbGl6ZWRMZXhpY2FsTm9kZSwgU2VyaWFsaXplZFBhcmFncmFwaE5vZGUgfSBmcm9tICdsZXhpY2FsJ1xuXG5pbXBvcnQgdHlwZSB7IFNsYXRlTm9kZUNvbnZlcnRlciB9IGZyb20gJy4uL3R5cGVzJ1xuXG5pbXBvcnQgeyBjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCB9IGZyb20gJy4uJ1xuXG5leHBvcnQgY29uc3QgU2xhdGVJbmRlbnRDb252ZXJ0ZXI6IFNsYXRlTm9kZUNvbnZlcnRlciA9IHtcbiAgY29udmVydGVyKHsgY29udmVydGVycywgc2xhdGVOb2RlIH0pIHtcbiAgICBjb25zb2xlLmxvZygnc2xhdGVUb0xleGljYWwgPiBJbmRlbnRDb252ZXJ0ZXIgPiBjb252ZXJ0ZXInLCBKU09OLnN0cmluZ2lmeShzbGF0ZU5vZGUsIG51bGwsIDIpKVxuICAgIGNvbnN0IGNvbnZlcnRDaGlsZHJlbiA9IChub2RlOiBhbnksIGluZGVudExldmVsOiBudW1iZXIgPSAwKTogU2VyaWFsaXplZExleGljYWxOb2RlID0+IHtcbiAgICAgIGlmIChcbiAgICAgICAgKG5vZGU/LnR5cGUgJiYgKCFub2RlLmNoaWxkcmVuIHx8IG5vZGUudHlwZSAhPT0gJ2luZGVudCcpKSB8fFxuICAgICAgICAoIW5vZGU/LnR5cGUgJiYgbm9kZT8udGV4dClcbiAgICAgICkge1xuICAgICAgICBjb25zb2xlLmxvZyhcbiAgICAgICAgICAnc2xhdGVUb0xleGljYWwgPiBJbmRlbnRDb252ZXJ0ZXIgPiBjb252ZXJ0Q2hpbGRyZW4gPiBub2RlJyxcbiAgICAgICAgICBKU09OLnN0cmluZ2lmeShub2RlLCBudWxsLCAyKSxcbiAgICAgICAgKVxuICAgICAgICBjb25zb2xlLmxvZyhcbiAgICAgICAgICAnc2xhdGVUb0xleGljYWwgPiBJbmRlbnRDb252ZXJ0ZXIgPiBjb252ZXJ0Q2hpbGRyZW4gPiBub2RlT3V0cHV0JyxcbiAgICAgICAgICBKU09OLnN0cmluZ2lmeShcbiAgICAgICAgICAgIGNvbnZlcnRTbGF0ZU5vZGVzVG9MZXhpY2FsKHtcbiAgICAgICAgICAgICAgY2FuQ29udGFpblBhcmFncmFwaHM6IGZhbHNlLFxuICAgICAgICAgICAgICBjb252ZXJ0ZXJzLFxuICAgICAgICAgICAgICBwYXJlbnROb2RlVHlwZTogJ2luZGVudCcsXG4gICAgICAgICAgICAgIHNsYXRlTm9kZXM6IFtub2RlXSxcbiAgICAgICAgICAgIH0pLFxuXG4gICAgICAgICAgICBudWxsLFxuICAgICAgICAgICAgMixcbiAgICAgICAgICApLFxuICAgICAgICApXG5cbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAuLi5jb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCh7XG4gICAgICAgICAgICBjYW5Db250YWluUGFyYWdyYXBoczogZmFsc2UsXG4gICAgICAgICAgICBjb252ZXJ0ZXJzLFxuICAgICAgICAgICAgcGFyZW50Tm9kZVR5cGU6ICdpbmRlbnQnLFxuICAgICAgICAgICAgc2xhdGVOb2RlczogW25vZGVdLFxuICAgICAgICAgIH0pWzBdLFxuICAgICAgICAgIGluZGVudDogaW5kZW50TGV2ZWwsXG4gICAgICAgIH0gYXMgY29uc3QgYXMgU2VyaWFsaXplZExleGljYWxOb2RlXG4gICAgICB9XG5cbiAgICAgIGNvbnN0IGNoaWxkcmVuID0gbm9kZS5jaGlsZHJlbi5tYXAoKGNoaWxkOiBhbnkpID0+IGNvbnZlcnRDaGlsZHJlbihjaGlsZCwgaW5kZW50TGV2ZWwgKyAxKSlcbiAgICAgIGNvbnNvbGUubG9nKCdzbGF0ZVRvTGV4aWNhbCA+IEluZGVudENvbnZlcnRlciA+IGNoaWxkcmVuJywgSlNPTi5zdHJpbmdpZnkoY2hpbGRyZW4sIG51bGwsIDIpKVxuICAgICAgcmV0dXJuIHtcbiAgICAgICAgY2hpbGRyZW46IGNoaWxkcmVuLFxuICAgICAgICBkaXJlY3Rpb246ICdsdHInLFxuICAgICAgICBmb3JtYXQ6ICcnLFxuICAgICAgICBpbmRlbnQ6IGluZGVudExldmVsLFxuICAgICAgICB0eXBlOiAncGFyYWdyYXBoJyxcbiAgICAgICAgdmVyc2lvbjogMSxcbiAgICAgIH0gYXMgY29uc3QgYXMgU2VyaWFsaXplZFBhcmFncmFwaE5vZGVcbiAgICB9XG5cbiAgICBjb25zb2xlLmxvZyhcbiAgICAgICdzbGF0ZVRvTGV4aWNhbCA+IEluZGVudENvbnZlcnRlciA+IG91dHB1dCcsXG4gICAgICBKU09OLnN0cmluZ2lmeShjb252ZXJ0Q2hpbGRyZW4oc2xhdGVOb2RlKSwgbnVsbCwgMiksXG4gICAgKVxuXG4gICAgcmV0dXJuIGNvbnZlcnRDaGlsZHJlbihzbGF0ZU5vZGUpXG4gIH0sXG4gIG5vZGVUeXBlczogWydpbmRlbnQnXSxcbn1cbiJdLCJuYW1lcyI6WyJTbGF0ZUluZGVudENvbnZlcnRlciIsImNvbnZlcnRlciIsImNvbnZlcnRlcnMiLCJzbGF0ZU5vZGUiLCJjb25zb2xlIiwibG9nIiwiSlNPTiIsInN0cmluZ2lmeSIsImNvbnZlcnRDaGlsZHJlbiIsIm5vZGUiLCJpbmRlbnRMZXZlbCIsInR5cGUiLCJjaGlsZHJlbiIsInRleHQiLCJjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCIsImNhbkNvbnRhaW5QYXJhZ3JhcGhzIiwicGFyZW50Tm9kZVR5cGUiLCJzbGF0ZU5vZGVzIiwiaW5kZW50IiwibWFwIiwiY2hpbGQiLCJkaXJlY3Rpb24iLCJmb3JtYXQiLCJ2ZXJzaW9uIiwibm9kZVR5cGVzIl0sIm1hcHBpbmdzIjoiOzs7OytCQU1hQTs7O2VBQUFBOzs7a0JBRjhCO0FBRXBDLE1BQU1BLHVCQUEyQztJQUN0REMsV0FBVSxFQUFFQyxVQUFVLEVBQUVDLFNBQVMsRUFBRTtRQUNqQ0MsUUFBUUMsR0FBRyxDQUFDLGdEQUFnREMsS0FBS0MsU0FBUyxDQUFDSixXQUFXLE1BQU07UUFDNUYsTUFBTUssa0JBQWtCLENBQUNDLE1BQVdDLGNBQXNCLENBQUM7WUFDekQsSUFDRSxBQUFDRCxNQUFNRSxRQUFTLENBQUEsQ0FBQ0YsS0FBS0csUUFBUSxJQUFJSCxLQUFLRSxJQUFJLEtBQUssUUFBTyxLQUN0RCxDQUFDRixNQUFNRSxRQUFRRixNQUFNSSxNQUN0QjtnQkFDQVQsUUFBUUMsR0FBRyxDQUNULDZEQUNBQyxLQUFLQyxTQUFTLENBQUNFLE1BQU0sTUFBTTtnQkFFN0JMLFFBQVFDLEdBQUcsQ0FDVCxtRUFDQUMsS0FBS0MsU0FBUyxDQUNaTyxJQUFBQSw0QkFBMEIsRUFBQztvQkFDekJDLHNCQUFzQjtvQkFDdEJiO29CQUNBYyxnQkFBZ0I7b0JBQ2hCQyxZQUFZO3dCQUFDUjtxQkFBSztnQkFDcEIsSUFFQSxNQUNBO2dCQUlKLE9BQU87b0JBQ0wsR0FBR0ssSUFBQUEsNEJBQTBCLEVBQUM7d0JBQzVCQyxzQkFBc0I7d0JBQ3RCYjt3QkFDQWMsZ0JBQWdCO3dCQUNoQkMsWUFBWTs0QkFBQ1I7eUJBQUs7b0JBQ3BCLEVBQUUsQ0FBQyxFQUFFO29CQUNMUyxRQUFRUjtnQkFDVjtZQUNGO1lBRUEsTUFBTUUsV0FBV0gsS0FBS0csUUFBUSxDQUFDTyxHQUFHLENBQUMsQ0FBQ0MsUUFBZVosZ0JBQWdCWSxPQUFPVixjQUFjO1lBQ3hGTixRQUFRQyxHQUFHLENBQUMsK0NBQStDQyxLQUFLQyxTQUFTLENBQUNLLFVBQVUsTUFBTTtZQUMxRixPQUFPO2dCQUNMQSxVQUFVQTtnQkFDVlMsV0FBVztnQkFDWEMsUUFBUTtnQkFDUkosUUFBUVI7Z0JBQ1JDLE1BQU07Z0JBQ05ZLFNBQVM7WUFDWDtRQUNGO1FBRUFuQixRQUFRQyxHQUFHLENBQ1QsNkNBQ0FDLEtBQUtDLFNBQVMsQ0FBQ0MsZ0JBQWdCTCxZQUFZLE1BQU07UUFHbkQsT0FBT0ssZ0JBQWdCTDtJQUN6QjtJQUNBcUIsV0FBVztRQUFDO0tBQVM7QUFDdkIifQ==
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"link.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/link.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAIlD,eAAO,MAAM,kBAAkB,EAAE,kBAwBhC,CAAA"}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "SlateLinkConverter", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return SlateLinkConverter;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const _ = require("..");
|
|
12
|
-
const SlateLinkConverter = {
|
|
13
|
-
converter ({ converters, slateNode }) {
|
|
14
|
-
return {
|
|
15
|
-
children: (0, _.convertSlateNodesToLexical)({
|
|
16
|
-
canContainParagraphs: false,
|
|
17
|
-
converters,
|
|
18
|
-
parentNodeType: 'link',
|
|
19
|
-
slateNodes: slateNode.children || []
|
|
20
|
-
}),
|
|
21
|
-
direction: 'ltr',
|
|
22
|
-
fields: {
|
|
23
|
-
...slateNode.fields || {},
|
|
24
|
-
doc: slateNode.doc || null,
|
|
25
|
-
linkType: slateNode.linkType || 'custom',
|
|
26
|
-
newTab: slateNode.newTab || false,
|
|
27
|
-
url: slateNode.url || undefined
|
|
28
|
-
},
|
|
29
|
-
format: '',
|
|
30
|
-
indent: 0,
|
|
31
|
-
type: 'link',
|
|
32
|
-
version: 2
|
|
33
|
-
};
|
|
34
|
-
},
|
|
35
|
-
nodeTypes: [
|
|
36
|
-
'link'
|
|
37
|
-
]
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL1NsYXRlVG9MZXhpY2FsL2NvbnZlcnRlci9jb252ZXJ0ZXJzL2xpbmsudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUgeyBTZXJpYWxpemVkTGlua05vZGUgfSBmcm9tICcuLi8uLi8uLi8uLi9MaW5rL25vZGVzL0xpbmtOb2RlJ1xuaW1wb3J0IHR5cGUgeyBTbGF0ZU5vZGVDb252ZXJ0ZXIgfSBmcm9tICcuLi90eXBlcydcblxuaW1wb3J0IHsgY29udmVydFNsYXRlTm9kZXNUb0xleGljYWwgfSBmcm9tICcuLidcblxuZXhwb3J0IGNvbnN0IFNsYXRlTGlua0NvbnZlcnRlcjogU2xhdGVOb2RlQ29udmVydGVyID0ge1xuICBjb252ZXJ0ZXIoeyBjb252ZXJ0ZXJzLCBzbGF0ZU5vZGUgfSkge1xuICAgIHJldHVybiB7XG4gICAgICBjaGlsZHJlbjogY29udmVydFNsYXRlTm9kZXNUb0xleGljYWwoe1xuICAgICAgICBjYW5Db250YWluUGFyYWdyYXBoczogZmFsc2UsXG4gICAgICAgIGNvbnZlcnRlcnMsXG4gICAgICAgIHBhcmVudE5vZGVUeXBlOiAnbGluaycsXG4gICAgICAgIHNsYXRlTm9kZXM6IHNsYXRlTm9kZS5jaGlsZHJlbiB8fCBbXSxcbiAgICAgIH0pLFxuICAgICAgZGlyZWN0aW9uOiAnbHRyJyxcbiAgICAgIGZpZWxkczoge1xuICAgICAgICAuLi4oc2xhdGVOb2RlLmZpZWxkcyB8fCB7fSksXG4gICAgICAgIGRvYzogc2xhdGVOb2RlLmRvYyB8fCBudWxsLFxuICAgICAgICBsaW5rVHlwZTogc2xhdGVOb2RlLmxpbmtUeXBlIHx8ICdjdXN0b20nLFxuICAgICAgICBuZXdUYWI6IHNsYXRlTm9kZS5uZXdUYWIgfHwgZmFsc2UsXG4gICAgICAgIHVybDogc2xhdGVOb2RlLnVybCB8fCB1bmRlZmluZWQsXG4gICAgICB9LFxuICAgICAgZm9ybWF0OiAnJyxcbiAgICAgIGluZGVudDogMCxcbiAgICAgIHR5cGU6ICdsaW5rJyxcbiAgICAgIHZlcnNpb246IDIsXG4gICAgfSBhcyBjb25zdCBhcyBTZXJpYWxpemVkTGlua05vZGVcbiAgfSxcbiAgbm9kZVR5cGVzOiBbJ2xpbmsnXSxcbn1cbiJdLCJuYW1lcyI6WyJTbGF0ZUxpbmtDb252ZXJ0ZXIiLCJjb252ZXJ0ZXIiLCJjb252ZXJ0ZXJzIiwic2xhdGVOb2RlIiwiY2hpbGRyZW4iLCJjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCIsImNhbkNvbnRhaW5QYXJhZ3JhcGhzIiwicGFyZW50Tm9kZVR5cGUiLCJzbGF0ZU5vZGVzIiwiZGlyZWN0aW9uIiwiZmllbGRzIiwiZG9jIiwibGlua1R5cGUiLCJuZXdUYWIiLCJ1cmwiLCJ1bmRlZmluZWQiLCJmb3JtYXQiLCJpbmRlbnQiLCJ0eXBlIiwidmVyc2lvbiIsIm5vZGVUeXBlcyJdLCJtYXBwaW5ncyI6Ijs7OzsrQkFLYUE7OztlQUFBQTs7O2tCQUY4QjtBQUVwQyxNQUFNQSxxQkFBeUM7SUFDcERDLFdBQVUsRUFBRUMsVUFBVSxFQUFFQyxTQUFTLEVBQUU7UUFDakMsT0FBTztZQUNMQyxVQUFVQyxJQUFBQSw0QkFBMEIsRUFBQztnQkFDbkNDLHNCQUFzQjtnQkFDdEJKO2dCQUNBSyxnQkFBZ0I7Z0JBQ2hCQyxZQUFZTCxVQUFVQyxRQUFRLElBQUksRUFBRTtZQUN0QztZQUNBSyxXQUFXO1lBQ1hDLFFBQVE7Z0JBQ04sR0FBSVAsVUFBVU8sTUFBTSxJQUFJLENBQUMsQ0FBQztnQkFDMUJDLEtBQUtSLFVBQVVRLEdBQUcsSUFBSTtnQkFDdEJDLFVBQVVULFVBQVVTLFFBQVEsSUFBSTtnQkFDaENDLFFBQVFWLFVBQVVVLE1BQU0sSUFBSTtnQkFDNUJDLEtBQUtYLFVBQVVXLEdBQUcsSUFBSUM7WUFDeEI7WUFDQUMsUUFBUTtZQUNSQyxRQUFRO1lBQ1JDLE1BQU07WUFDTkMsU0FBUztRQUNYO0lBQ0Y7SUFDQUMsV0FBVztRQUFDO0tBQU87QUFDckIifQ==
|
package/dist/field/features/migrations/SlateToLexical/converter/converters/listItem.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"listItem.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/listItem.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAIlD,eAAO,MAAM,sBAAsB,EAAE,kBAmBpC,CAAA"}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "SlateListItemConverter", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return SlateListItemConverter;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const _ = require("..");
|
|
12
|
-
const SlateListItemConverter = {
|
|
13
|
-
converter ({ childIndex, converters, slateNode }) {
|
|
14
|
-
return {
|
|
15
|
-
checked: undefined,
|
|
16
|
-
children: (0, _.convertSlateNodesToLexical)({
|
|
17
|
-
canContainParagraphs: false,
|
|
18
|
-
converters,
|
|
19
|
-
parentNodeType: 'listitem',
|
|
20
|
-
slateNodes: slateNode.children || []
|
|
21
|
-
}),
|
|
22
|
-
direction: 'ltr',
|
|
23
|
-
format: '',
|
|
24
|
-
indent: 0,
|
|
25
|
-
type: 'listitem',
|
|
26
|
-
value: childIndex + 1,
|
|
27
|
-
version: 1
|
|
28
|
-
};
|
|
29
|
-
},
|
|
30
|
-
nodeTypes: [
|
|
31
|
-
'li'
|
|
32
|
-
]
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL1NsYXRlVG9MZXhpY2FsL2NvbnZlcnRlci9jb252ZXJ0ZXJzL2xpc3RJdGVtLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgU2VyaWFsaXplZExpc3RJdGVtTm9kZSB9IGZyb20gJ0BsZXhpY2FsL2xpc3QnXG5cbmltcG9ydCB0eXBlIHsgU2xhdGVOb2RlQ29udmVydGVyIH0gZnJvbSAnLi4vdHlwZXMnXG5cbmltcG9ydCB7IGNvbnZlcnRTbGF0ZU5vZGVzVG9MZXhpY2FsIH0gZnJvbSAnLi4nXG5cbmV4cG9ydCBjb25zdCBTbGF0ZUxpc3RJdGVtQ29udmVydGVyOiBTbGF0ZU5vZGVDb252ZXJ0ZXIgPSB7XG4gIGNvbnZlcnRlcih7IGNoaWxkSW5kZXgsIGNvbnZlcnRlcnMsIHNsYXRlTm9kZSB9KSB7XG4gICAgcmV0dXJuIHtcbiAgICAgIGNoZWNrZWQ6IHVuZGVmaW5lZCxcbiAgICAgIGNoaWxkcmVuOiBjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCh7XG4gICAgICAgIGNhbkNvbnRhaW5QYXJhZ3JhcGhzOiBmYWxzZSxcbiAgICAgICAgY29udmVydGVycyxcbiAgICAgICAgcGFyZW50Tm9kZVR5cGU6ICdsaXN0aXRlbScsXG4gICAgICAgIHNsYXRlTm9kZXM6IHNsYXRlTm9kZS5jaGlsZHJlbiB8fCBbXSxcbiAgICAgIH0pLFxuICAgICAgZGlyZWN0aW9uOiAnbHRyJyxcbiAgICAgIGZvcm1hdDogJycsXG4gICAgICBpbmRlbnQ6IDAsXG4gICAgICB0eXBlOiAnbGlzdGl0ZW0nLFxuICAgICAgdmFsdWU6IGNoaWxkSW5kZXggKyAxLFxuICAgICAgdmVyc2lvbjogMSxcbiAgICB9IGFzIGNvbnN0IGFzIFNlcmlhbGl6ZWRMaXN0SXRlbU5vZGVcbiAgfSxcbiAgbm9kZVR5cGVzOiBbJ2xpJ10sXG59XG4iXSwibmFtZXMiOlsiU2xhdGVMaXN0SXRlbUNvbnZlcnRlciIsImNvbnZlcnRlciIsImNoaWxkSW5kZXgiLCJjb252ZXJ0ZXJzIiwic2xhdGVOb2RlIiwiY2hlY2tlZCIsInVuZGVmaW5lZCIsImNoaWxkcmVuIiwiY29udmVydFNsYXRlTm9kZXNUb0xleGljYWwiLCJjYW5Db250YWluUGFyYWdyYXBocyIsInBhcmVudE5vZGVUeXBlIiwic2xhdGVOb2RlcyIsImRpcmVjdGlvbiIsImZvcm1hdCIsImluZGVudCIsInR5cGUiLCJ2YWx1ZSIsInZlcnNpb24iLCJub2RlVHlwZXMiXSwibWFwcGluZ3MiOiI7Ozs7K0JBTWFBOzs7ZUFBQUE7OztrQkFGOEI7QUFFcEMsTUFBTUEseUJBQTZDO0lBQ3hEQyxXQUFVLEVBQUVDLFVBQVUsRUFBRUMsVUFBVSxFQUFFQyxTQUFTLEVBQUU7UUFDN0MsT0FBTztZQUNMQyxTQUFTQztZQUNUQyxVQUFVQyxJQUFBQSw0QkFBMEIsRUFBQztnQkFDbkNDLHNCQUFzQjtnQkFDdEJOO2dCQUNBTyxnQkFBZ0I7Z0JBQ2hCQyxZQUFZUCxVQUFVRyxRQUFRLElBQUksRUFBRTtZQUN0QztZQUNBSyxXQUFXO1lBQ1hDLFFBQVE7WUFDUkMsUUFBUTtZQUNSQyxNQUFNO1lBQ05DLE9BQU9kLGFBQWE7WUFDcEJlLFNBQVM7UUFDWDtJQUNGO0lBQ0FDLFdBQVc7UUFBQztLQUFLO0FBQ25CIn0=
|
package/dist/field/features/migrations/SlateToLexical/converter/converters/orderedList.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"orderedList.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/orderedList.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAIlD,eAAO,MAAM,yBAAyB,EAAE,kBAoBvC,CAAA"}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "SlateOrderedListConverter", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return SlateOrderedListConverter;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const _ = require("..");
|
|
12
|
-
const SlateOrderedListConverter = {
|
|
13
|
-
converter ({ converters, slateNode }) {
|
|
14
|
-
return {
|
|
15
|
-
children: (0, _.convertSlateNodesToLexical)({
|
|
16
|
-
canContainParagraphs: false,
|
|
17
|
-
converters,
|
|
18
|
-
parentNodeType: 'list',
|
|
19
|
-
slateNodes: slateNode.children || []
|
|
20
|
-
}),
|
|
21
|
-
direction: 'ltr',
|
|
22
|
-
format: '',
|
|
23
|
-
indent: 0,
|
|
24
|
-
listType: 'number',
|
|
25
|
-
start: 1,
|
|
26
|
-
tag: 'ol',
|
|
27
|
-
type: 'list',
|
|
28
|
-
version: 1
|
|
29
|
-
};
|
|
30
|
-
},
|
|
31
|
-
nodeTypes: [
|
|
32
|
-
'ol'
|
|
33
|
-
]
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL1NsYXRlVG9MZXhpY2FsL2NvbnZlcnRlci9jb252ZXJ0ZXJzL29yZGVyZWRMaXN0LnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgU2VyaWFsaXplZExpc3ROb2RlIH0gZnJvbSAnQGxleGljYWwvbGlzdCdcblxuaW1wb3J0IHR5cGUgeyBTbGF0ZU5vZGVDb252ZXJ0ZXIgfSBmcm9tICcuLi90eXBlcydcblxuaW1wb3J0IHsgY29udmVydFNsYXRlTm9kZXNUb0xleGljYWwgfSBmcm9tICcuLidcblxuZXhwb3J0IGNvbnN0IFNsYXRlT3JkZXJlZExpc3RDb252ZXJ0ZXI6IFNsYXRlTm9kZUNvbnZlcnRlciA9IHtcbiAgY29udmVydGVyKHsgY29udmVydGVycywgc2xhdGVOb2RlIH0pIHtcbiAgICByZXR1cm4ge1xuICAgICAgY2hpbGRyZW46IGNvbnZlcnRTbGF0ZU5vZGVzVG9MZXhpY2FsKHtcbiAgICAgICAgY2FuQ29udGFpblBhcmFncmFwaHM6IGZhbHNlLFxuICAgICAgICBjb252ZXJ0ZXJzLFxuICAgICAgICBwYXJlbnROb2RlVHlwZTogJ2xpc3QnLFxuICAgICAgICBzbGF0ZU5vZGVzOiBzbGF0ZU5vZGUuY2hpbGRyZW4gfHwgW10sXG4gICAgICB9KSxcbiAgICAgIGRpcmVjdGlvbjogJ2x0cicsXG4gICAgICBmb3JtYXQ6ICcnLFxuICAgICAgaW5kZW50OiAwLFxuICAgICAgbGlzdFR5cGU6ICdudW1iZXInLFxuICAgICAgc3RhcnQ6IDEsXG4gICAgICB0YWc6ICdvbCcsXG4gICAgICB0eXBlOiAnbGlzdCcsXG4gICAgICB2ZXJzaW9uOiAxLFxuICAgIH0gYXMgY29uc3QgYXMgU2VyaWFsaXplZExpc3ROb2RlXG4gIH0sXG4gIG5vZGVUeXBlczogWydvbCddLFxufVxuIl0sIm5hbWVzIjpbIlNsYXRlT3JkZXJlZExpc3RDb252ZXJ0ZXIiLCJjb252ZXJ0ZXIiLCJjb252ZXJ0ZXJzIiwic2xhdGVOb2RlIiwiY2hpbGRyZW4iLCJjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCIsImNhbkNvbnRhaW5QYXJhZ3JhcGhzIiwicGFyZW50Tm9kZVR5cGUiLCJzbGF0ZU5vZGVzIiwiZGlyZWN0aW9uIiwiZm9ybWF0IiwiaW5kZW50IiwibGlzdFR5cGUiLCJzdGFydCIsInRhZyIsInR5cGUiLCJ2ZXJzaW9uIiwibm9kZVR5cGVzIl0sIm1hcHBpbmdzIjoiOzs7OytCQU1hQTs7O2VBQUFBOzs7a0JBRjhCO0FBRXBDLE1BQU1BLDRCQUFnRDtJQUMzREMsV0FBVSxFQUFFQyxVQUFVLEVBQUVDLFNBQVMsRUFBRTtRQUNqQyxPQUFPO1lBQ0xDLFVBQVVDLElBQUFBLDRCQUEwQixFQUFDO2dCQUNuQ0Msc0JBQXNCO2dCQUN0Qko7Z0JBQ0FLLGdCQUFnQjtnQkFDaEJDLFlBQVlMLFVBQVVDLFFBQVEsSUFBSSxFQUFFO1lBQ3RDO1lBQ0FLLFdBQVc7WUFDWEMsUUFBUTtZQUNSQyxRQUFRO1lBQ1JDLFVBQVU7WUFDVkMsT0FBTztZQUNQQyxLQUFLO1lBQ0xDLE1BQU07WUFDTkMsU0FBUztRQUNYO0lBQ0Y7SUFDQUMsV0FBVztRQUFDO0tBQUs7QUFDbkIifQ==
|
package/dist/field/features/migrations/SlateToLexical/converter/converters/relationship.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"relationship.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/relationship.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAElD,eAAO,MAAM,0BAA0B,EAAE,kBAaxC,CAAA"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "SlateRelationshipConverter", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return SlateRelationshipConverter;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const SlateRelationshipConverter = {
|
|
12
|
-
converter ({ slateNode }) {
|
|
13
|
-
return {
|
|
14
|
-
format: '',
|
|
15
|
-
relationTo: slateNode.relationTo,
|
|
16
|
-
type: 'relationship',
|
|
17
|
-
value: {
|
|
18
|
-
id: slateNode?.value?.id || ''
|
|
19
|
-
},
|
|
20
|
-
version: 1
|
|
21
|
-
};
|
|
22
|
-
},
|
|
23
|
-
nodeTypes: [
|
|
24
|
-
'relationship'
|
|
25
|
-
]
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL1NsYXRlVG9MZXhpY2FsL2NvbnZlcnRlci9jb252ZXJ0ZXJzL3JlbGF0aW9uc2hpcC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7IFNlcmlhbGl6ZWRSZWxhdGlvbnNoaXBOb2RlIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4nXG5pbXBvcnQgdHlwZSB7IFNsYXRlTm9kZUNvbnZlcnRlciB9IGZyb20gJy4uL3R5cGVzJ1xuXG5leHBvcnQgY29uc3QgU2xhdGVSZWxhdGlvbnNoaXBDb252ZXJ0ZXI6IFNsYXRlTm9kZUNvbnZlcnRlciA9IHtcbiAgY29udmVydGVyKHsgc2xhdGVOb2RlIH0pIHtcbiAgICByZXR1cm4ge1xuICAgICAgZm9ybWF0OiAnJyxcbiAgICAgIHJlbGF0aW9uVG86IHNsYXRlTm9kZS5yZWxhdGlvblRvLFxuICAgICAgdHlwZTogJ3JlbGF0aW9uc2hpcCcsXG4gICAgICB2YWx1ZToge1xuICAgICAgICBpZDogc2xhdGVOb2RlPy52YWx1ZT8uaWQgfHwgJycsXG4gICAgICB9LFxuICAgICAgdmVyc2lvbjogMSxcbiAgICB9IGFzIGNvbnN0IGFzIFNlcmlhbGl6ZWRSZWxhdGlvbnNoaXBOb2RlXG4gIH0sXG4gIG5vZGVUeXBlczogWydyZWxhdGlvbnNoaXAnXSxcbn1cbiJdLCJuYW1lcyI6WyJTbGF0ZVJlbGF0aW9uc2hpcENvbnZlcnRlciIsImNvbnZlcnRlciIsInNsYXRlTm9kZSIsImZvcm1hdCIsInJlbGF0aW9uVG8iLCJ0eXBlIiwidmFsdWUiLCJpZCIsInZlcnNpb24iLCJub2RlVHlwZXMiXSwibWFwcGluZ3MiOiI7Ozs7K0JBR2FBOzs7ZUFBQUE7OztBQUFOLE1BQU1BLDZCQUFpRDtJQUM1REMsV0FBVSxFQUFFQyxTQUFTLEVBQUU7UUFDckIsT0FBTztZQUNMQyxRQUFRO1lBQ1JDLFlBQVlGLFVBQVVFLFVBQVU7WUFDaENDLE1BQU07WUFDTkMsT0FBTztnQkFDTEMsSUFBSUwsV0FBV0ksT0FBT0MsTUFBTTtZQUM5QjtZQUNBQyxTQUFTO1FBQ1g7SUFDRjtJQUNBQyxXQUFXO1FBQUM7S0FBZTtBQUM3QiJ9
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"unknown.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/unknown.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAIlD,eAAO,MAAM,qBAAqB,EAAE,kBAqBnC,CAAA"}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "SlateUnknownConverter", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return SlateUnknownConverter;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const _ = require("..");
|
|
12
|
-
const SlateUnknownConverter = {
|
|
13
|
-
converter ({ converters, slateNode }) {
|
|
14
|
-
return {
|
|
15
|
-
children: (0, _.convertSlateNodesToLexical)({
|
|
16
|
-
canContainParagraphs: false,
|
|
17
|
-
converters,
|
|
18
|
-
parentNodeType: 'unknownConverted',
|
|
19
|
-
slateNodes: slateNode.children || []
|
|
20
|
-
}),
|
|
21
|
-
data: {
|
|
22
|
-
nodeData: slateNode,
|
|
23
|
-
nodeType: slateNode.type
|
|
24
|
-
},
|
|
25
|
-
direction: 'ltr',
|
|
26
|
-
format: '',
|
|
27
|
-
indent: 0,
|
|
28
|
-
type: 'unknownConverted',
|
|
29
|
-
version: 1
|
|
30
|
-
};
|
|
31
|
-
},
|
|
32
|
-
nodeTypes: [
|
|
33
|
-
'unknown'
|
|
34
|
-
]
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL1NsYXRlVG9MZXhpY2FsL2NvbnZlcnRlci9jb252ZXJ0ZXJzL3Vua25vd24udHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUgeyBTZXJpYWxpemVkVW5rbm93bkNvbnZlcnRlZE5vZGUgfSBmcm9tICcuLi8uLi9ub2Rlcy91bmtub3duQ29udmVydGVkTm9kZSdcbmltcG9ydCB0eXBlIHsgU2xhdGVOb2RlQ29udmVydGVyIH0gZnJvbSAnLi4vdHlwZXMnXG5cbmltcG9ydCB7IGNvbnZlcnRTbGF0ZU5vZGVzVG9MZXhpY2FsIH0gZnJvbSAnLi4nXG5cbmV4cG9ydCBjb25zdCBTbGF0ZVVua25vd25Db252ZXJ0ZXI6IFNsYXRlTm9kZUNvbnZlcnRlciA9IHtcbiAgY29udmVydGVyKHsgY29udmVydGVycywgc2xhdGVOb2RlIH0pIHtcbiAgICByZXR1cm4ge1xuICAgICAgY2hpbGRyZW46IGNvbnZlcnRTbGF0ZU5vZGVzVG9MZXhpY2FsKHtcbiAgICAgICAgY2FuQ29udGFpblBhcmFncmFwaHM6IGZhbHNlLFxuICAgICAgICBjb252ZXJ0ZXJzLFxuICAgICAgICBwYXJlbnROb2RlVHlwZTogJ3Vua25vd25Db252ZXJ0ZWQnLFxuICAgICAgICBzbGF0ZU5vZGVzOiBzbGF0ZU5vZGUuY2hpbGRyZW4gfHwgW10sXG4gICAgICB9KSxcbiAgICAgIGRhdGE6IHtcbiAgICAgICAgbm9kZURhdGE6IHNsYXRlTm9kZSxcbiAgICAgICAgbm9kZVR5cGU6IHNsYXRlTm9kZS50eXBlLFxuICAgICAgfSxcbiAgICAgIGRpcmVjdGlvbjogJ2x0cicsXG4gICAgICBmb3JtYXQ6ICcnLFxuICAgICAgaW5kZW50OiAwLFxuICAgICAgdHlwZTogJ3Vua25vd25Db252ZXJ0ZWQnLFxuICAgICAgdmVyc2lvbjogMSxcbiAgICB9IGFzIGNvbnN0IGFzIFNlcmlhbGl6ZWRVbmtub3duQ29udmVydGVkTm9kZVxuICB9LFxuICBub2RlVHlwZXM6IFsndW5rbm93biddLFxufVxuIl0sIm5hbWVzIjpbIlNsYXRlVW5rbm93bkNvbnZlcnRlciIsImNvbnZlcnRlciIsImNvbnZlcnRlcnMiLCJzbGF0ZU5vZGUiLCJjaGlsZHJlbiIsImNvbnZlcnRTbGF0ZU5vZGVzVG9MZXhpY2FsIiwiY2FuQ29udGFpblBhcmFncmFwaHMiLCJwYXJlbnROb2RlVHlwZSIsInNsYXRlTm9kZXMiLCJkYXRhIiwibm9kZURhdGEiLCJub2RlVHlwZSIsInR5cGUiLCJkaXJlY3Rpb24iLCJmb3JtYXQiLCJpbmRlbnQiLCJ2ZXJzaW9uIiwibm9kZVR5cGVzIl0sIm1hcHBpbmdzIjoiOzs7OytCQUthQTs7O2VBQUFBOzs7a0JBRjhCO0FBRXBDLE1BQU1BLHdCQUE0QztJQUN2REMsV0FBVSxFQUFFQyxVQUFVLEVBQUVDLFNBQVMsRUFBRTtRQUNqQyxPQUFPO1lBQ0xDLFVBQVVDLElBQUFBLDRCQUEwQixFQUFDO2dCQUNuQ0Msc0JBQXNCO2dCQUN0Qko7Z0JBQ0FLLGdCQUFnQjtnQkFDaEJDLFlBQVlMLFVBQVVDLFFBQVEsSUFBSSxFQUFFO1lBQ3RDO1lBQ0FLLE1BQU07Z0JBQ0pDLFVBQVVQO2dCQUNWUSxVQUFVUixVQUFVUyxJQUFJO1lBQzFCO1lBQ0FDLFdBQVc7WUFDWEMsUUFBUTtZQUNSQyxRQUFRO1lBQ1JILE1BQU07WUFDTkksU0FBUztRQUNYO0lBQ0Y7SUFDQUMsV0FBVztRQUFDO0tBQVU7QUFDeEIifQ==
|
package/dist/field/features/migrations/SlateToLexical/converter/converters/unorderedList.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"unorderedList.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/unorderedList.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAIlD,eAAO,MAAM,2BAA2B,EAAE,kBAoBzC,CAAA"}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "SlateUnorderedListConverter", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return SlateUnorderedListConverter;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const _ = require("..");
|
|
12
|
-
const SlateUnorderedListConverter = {
|
|
13
|
-
converter ({ converters, slateNode }) {
|
|
14
|
-
return {
|
|
15
|
-
children: (0, _.convertSlateNodesToLexical)({
|
|
16
|
-
canContainParagraphs: false,
|
|
17
|
-
converters,
|
|
18
|
-
parentNodeType: 'list',
|
|
19
|
-
slateNodes: slateNode.children || []
|
|
20
|
-
}),
|
|
21
|
-
direction: 'ltr',
|
|
22
|
-
format: '',
|
|
23
|
-
indent: 0,
|
|
24
|
-
listType: 'bullet',
|
|
25
|
-
start: 1,
|
|
26
|
-
tag: 'ul',
|
|
27
|
-
type: 'list',
|
|
28
|
-
version: 1
|
|
29
|
-
};
|
|
30
|
-
},
|
|
31
|
-
nodeTypes: [
|
|
32
|
-
'ul'
|
|
33
|
-
]
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9maWVsZC9mZWF0dXJlcy9taWdyYXRpb25zL1NsYXRlVG9MZXhpY2FsL2NvbnZlcnRlci9jb252ZXJ0ZXJzL3Vub3JkZXJlZExpc3QudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUgeyBTZXJpYWxpemVkTGlzdE5vZGUgfSBmcm9tICdAbGV4aWNhbC9saXN0J1xuXG5pbXBvcnQgdHlwZSB7IFNsYXRlTm9kZUNvbnZlcnRlciB9IGZyb20gJy4uL3R5cGVzJ1xuXG5pbXBvcnQgeyBjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCB9IGZyb20gJy4uJ1xuXG5leHBvcnQgY29uc3QgU2xhdGVVbm9yZGVyZWRMaXN0Q29udmVydGVyOiBTbGF0ZU5vZGVDb252ZXJ0ZXIgPSB7XG4gIGNvbnZlcnRlcih7IGNvbnZlcnRlcnMsIHNsYXRlTm9kZSB9KSB7XG4gICAgcmV0dXJuIHtcbiAgICAgIGNoaWxkcmVuOiBjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCh7XG4gICAgICAgIGNhbkNvbnRhaW5QYXJhZ3JhcGhzOiBmYWxzZSxcbiAgICAgICAgY29udmVydGVycyxcbiAgICAgICAgcGFyZW50Tm9kZVR5cGU6ICdsaXN0JyxcbiAgICAgICAgc2xhdGVOb2Rlczogc2xhdGVOb2RlLmNoaWxkcmVuIHx8IFtdLFxuICAgICAgfSksXG4gICAgICBkaXJlY3Rpb246ICdsdHInLFxuICAgICAgZm9ybWF0OiAnJyxcbiAgICAgIGluZGVudDogMCxcbiAgICAgIGxpc3RUeXBlOiAnYnVsbGV0JyxcbiAgICAgIHN0YXJ0OiAxLFxuICAgICAgdGFnOiAndWwnLFxuICAgICAgdHlwZTogJ2xpc3QnLFxuICAgICAgdmVyc2lvbjogMSxcbiAgICB9IGFzIGNvbnN0IGFzIFNlcmlhbGl6ZWRMaXN0Tm9kZVxuICB9LFxuICBub2RlVHlwZXM6IFsndWwnXSxcbn1cbiJdLCJuYW1lcyI6WyJTbGF0ZVVub3JkZXJlZExpc3RDb252ZXJ0ZXIiLCJjb252ZXJ0ZXIiLCJjb252ZXJ0ZXJzIiwic2xhdGVOb2RlIiwiY2hpbGRyZW4iLCJjb252ZXJ0U2xhdGVOb2Rlc1RvTGV4aWNhbCIsImNhbkNvbnRhaW5QYXJhZ3JhcGhzIiwicGFyZW50Tm9kZVR5cGUiLCJzbGF0ZU5vZGVzIiwiZGlyZWN0aW9uIiwiZm9ybWF0IiwiaW5kZW50IiwibGlzdFR5cGUiLCJzdGFydCIsInRhZyIsInR5cGUiLCJ2ZXJzaW9uIiwibm9kZVR5cGVzIl0sIm1hcHBpbmdzIjoiOzs7OytCQU1hQTs7O2VBQUFBOzs7a0JBRjhCO0FBRXBDLE1BQU1BLDhCQUFrRDtJQUM3REMsV0FBVSxFQUFFQyxVQUFVLEVBQUVDLFNBQVMsRUFBRTtRQUNqQyxPQUFPO1lBQ0xDLFVBQVVDLElBQUFBLDRCQUEwQixFQUFDO2dCQUNuQ0Msc0JBQXNCO2dCQUN0Qko7Z0JBQ0FLLGdCQUFnQjtnQkFDaEJDLFlBQVlMLFVBQVVDLFFBQVEsSUFBSSxFQUFFO1lBQ3RDO1lBQ0FLLFdBQVc7WUFDWEMsUUFBUTtZQUNSQyxRQUFRO1lBQ1JDLFVBQVU7WUFDVkMsT0FBTztZQUNQQyxLQUFLO1lBQ0xDLE1BQU07WUFDTkMsU0FBUztRQUNYO0lBQ0Y7SUFDQUMsV0FBVztRQUFDO0tBQUs7QUFDbkIifQ==
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"upload.d.ts","sourceRoot":"","sources":["../../../../../../../src/field/features/migrations/SlateToLexical/converter/converters/upload.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAElD,eAAO,MAAM,oBAAoB,EAAE,kBAgBlC,CAAA"}
|