@payloadcms/richtext-lexical 0.7.0 → 3.0.0-alpha.18
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 +3 -3
- package/dist/cell/index.d.ts +4 -4
- package/dist/cell/index.d.ts.map +1 -1
- package/dist/cell/index.js +93 -23
- package/dist/exports/components.d.ts +1 -1
- package/dist/exports/components.d.ts.map +1 -1
- package/dist/exports/components.js +3 -3
- package/dist/field/Field.d.ts +8 -3
- package/dist/field/Field.d.ts.map +1 -1
- package/dist/field/Field.js +16 -37
- 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 +81 -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 +26 -0
- package/dist/field/features/align/floatingSelectToolbarAlignDropdownSection.d.ts.map +1 -1
- package/dist/field/features/align/floatingSelectToolbarAlignDropdownSection.js +5 -46
- 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 +77 -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 +56 -0
- package/dist/field/features/blockquote/markdownTransformer.d.ts.map +1 -0
- package/dist/field/features/blockquote/markdownTransformer.js +50 -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 +214 -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 +34 -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 +172 -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 +137 -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 +71 -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 +96 -0
- package/dist/field/features/blocks/nodes/BlocksNode.d.ts.map +1 -0
- package/dist/field/features/blocks/nodes/BlocksNode.js +158 -0
- package/dist/field/features/blocks/plugin/commands.d.ts.map +1 -0
- package/dist/field/features/blocks/plugin/commands.js +14 -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 +91 -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 +55 -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 +59 -0
- package/dist/field/features/common/floatingSelectToolbarFeaturesButtonsSection/index.js +3 -3
- package/dist/field/features/common/floatingSelectToolbarTextDropdownSection/index.d.ts.map +1 -1
- package/dist/field/features/common/floatingSelectToolbarTextDropdownSection/index.js +5 -46
- package/dist/field/features/converters/html/converter/converters/paragraph.d.ts.map +1 -1
- package/dist/field/features/converters/html/converter/converters/paragraph.js +4 -3
- 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 -6
- 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/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 +24 -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 +8 -7
- 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 +20 -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 +24 -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 +30 -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 +25 -0
- package/dist/field/features/debug/testrecorder/plugin/index.d.ts.map +1 -0
- package/dist/field/features/debug/testrecorder/plugin/index.js +504 -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 +30 -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 +25 -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 +70 -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 +57 -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 +37 -0
- package/dist/field/features/format/bold/markdownTransformers.d.ts.map +1 -0
- package/dist/field/features/format/bold/markdownTransformers.js +58 -0
- package/dist/field/features/format/common/floatingSelectToolbarSection.js +3 -3
- 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 +52 -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 +29 -0
- package/dist/field/features/format/inlinecode/markdownTransformers.d.ts.map +1 -0
- package/dist/field/features/format/inlinecode/markdownTransformers.js +19 -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 +53 -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 +30 -0
- package/dist/field/features/format/italic/markdownTransformers.d.ts.map +1 -0
- package/dist/field/features/format/italic/markdownTransformers.js +35 -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 +52 -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 +29 -0
- package/dist/field/features/format/strikethrough/markdownTransformers.js +3 -3
- 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 +48 -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 +25 -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 +48 -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 +25 -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 +48 -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 +25 -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 +104 -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 +67 -0
- package/dist/field/features/heading/markdownTransformer.d.ts.map +1 -0
- package/dist/field/features/heading/markdownTransformer.js +39 -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 +67 -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 +26 -0
- package/dist/field/features/indent/floatingSelectToolbarIndentSection.js +3 -3
- package/dist/field/features/link/drawer/baseFields.d.ts.map +1 -0
- package/dist/field/features/link/drawer/baseFields.js +128 -0
- package/dist/field/features/link/drawer/index.d.ts.map +1 -0
- package/dist/field/features/link/drawer/index.js +133 -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/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 +98 -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 +108 -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 +79 -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 +326 -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/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 +336 -0
- package/dist/field/features/link/plugins/clickableLink/index.d.ts.map +1 -0
- package/dist/field/features/link/plugins/clickableLink/index.js +23 -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 +14 -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 +293 -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 +64 -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/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 +45 -0
- package/dist/field/features/link/plugins/link/index.d.ts.map +1 -0
- package/dist/field/features/link/plugins/link/index.js +69 -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 +56 -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 +91 -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 +45 -0
- package/dist/field/features/lists/checklist/markdownTransformers.d.ts.map +1 -0
- package/dist/field/features/lists/checklist/markdownTransformers.js +26 -0
- package/dist/field/features/lists/checklist/plugin/index.d.ts.map +1 -0
- package/dist/field/features/lists/checklist/plugin/index.js +23 -0
- package/dist/field/features/lists/common/markdown.js +1 -1
- package/dist/field/features/lists/htmlConverter.d.ts.map +1 -1
- package/dist/field/features/lists/htmlConverter.js +7 -5
- 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 +81 -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 +45 -0
- package/dist/field/features/lists/orderedlist/markdownTransformer.d.ts.map +1 -0
- package/dist/field/features/lists/orderedlist/markdownTransformer.js +26 -0
- 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 +81 -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 +45 -0
- package/dist/field/features/lists/unorderedlist/markdownTransformer.d.ts.map +1 -0
- package/dist/field/features/lists/unorderedlist/markdownTransformer.js +26 -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 +16 -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 +30 -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 +18 -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 +16 -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 +41 -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 +18 -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 +16 -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 +32 -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 +18 -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 +16 -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 +32 -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 +18 -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 +16 -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 +30 -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 +18 -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 +16 -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 +36 -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 +18 -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 +16 -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 +35 -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 +18 -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 +28 -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 +87 -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/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 +44 -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 +57 -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 +23 -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 +131 -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 +16 -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 +33 -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 +18 -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 +16 -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 +39 -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 +18 -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 +16 -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 +45 -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 +18 -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 +16 -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 +40 -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 +18 -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 +16 -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 +35 -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 +18 -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 +16 -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 +36 -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 +18 -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 +16 -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 +28 -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 +18 -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 +16 -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 +37 -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 +18 -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 +16 -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 +36 -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 +18 -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 +16 -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 +31 -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 +18 -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 +34 -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 +134 -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 +6 -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 +44 -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 +57 -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 +23 -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 +131 -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 +73 -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 +26 -0
- package/dist/field/features/relationship/drawer/commands.d.ts.map +1 -0
- package/dist/field/features/relationship/drawer/commands.js +14 -0
- package/dist/field/features/relationship/drawer/index.d.ts.map +1 -0
- package/dist/field/features/relationship/drawer/index.js +130 -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 +66 -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 +36 -0
- package/dist/field/features/relationship/nodes/RelationshipNode.d.ts.map +1 -0
- package/dist/field/features/relationship/nodes/RelationshipNode.js +172 -0
- package/dist/field/features/relationship/nodes/components/RelationshipComponent.d.ts.map +1 -0
- package/dist/field/features/relationship/nodes/components/RelationshipComponent.js +154 -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 +107 -0
- package/dist/field/features/relationship/populationPromise.d.ts.map +1 -0
- package/dist/field/features/relationship/populationPromise.js +34 -0
- package/dist/field/features/relationship/utils/EnabledRelationshipsCondition.d.ts.map +1 -0
- package/dist/field/features/relationship/utils/EnabledRelationshipsCondition.js +84 -0
- package/dist/field/features/types.d.ts +139 -70
- package/dist/field/features/types.d.ts.map +1 -1
- package/dist/field/features/upload/component/ExtraFieldsDrawer/index.d.ts.map +1 -0
- package/dist/field/features/upload/component/ExtraFieldsDrawer/index.js +158 -0
- package/dist/field/features/upload/component/index.d.ts.map +1 -0
- package/dist/field/features/upload/component/index.js +186 -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 +15 -0
- package/dist/field/features/upload/drawer/index.d.ts.map +1 -0
- package/dist/field/features/upload/drawer/index.js +127 -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 +65 -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 +113 -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 +160 -0
- package/dist/field/features/upload/plugin/index.d.ts.map +1 -0
- package/dist/field/features/upload/plugin/index.js +111 -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 +56 -0
- package/dist/field/features/upload/validate.d.ts.map +1 -0
- package/dist/field/features/upload/validate.js +29 -0
- package/dist/field/index.d.ts +7 -2
- package/dist/field/index.d.ts.map +1 -1
- package/dist/field/index.js +77 -5
- package/dist/field/index.scss +2 -2
- package/dist/field/lexical/EditorPlugin.d.ts.map +1 -1
- package/dist/field/lexical/EditorPlugin.js +4 -12
- package/dist/field/lexical/LexicalEditor.js +2 -2
- 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 +18 -20
- 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 +99 -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 +18 -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 +53 -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 +144 -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 +75 -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 +136 -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 +83 -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/nodes/index.d.ts +2 -2
- package/dist/field/lexical/nodes/index.d.ts.map +1 -1
- package/dist/field/lexical/nodes/index.js +7 -2
- 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 +9 -9
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarDropdown/index.d.ts.map +1 -1
- package/dist/field/lexical/plugins/FloatingSelectToolbar/ToolbarDropdown/index.js +8 -58
- 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 +8 -28
- 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/MarkdownShortcut/index.js +2 -2
- 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 +1 -8
- 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 +1 -1
- package/dist/field/lexical/plugins/SlashMenu/index.d.ts.map +1 -1
- package/dist/field/lexical/plugins/SlashMenu/index.js +6 -13
- package/dist/field/lexical/plugins/SlashMenu/index.scss +1 -1
- package/dist/field/lexical/plugins/handles/AddBlockHandlePlugin/index.scss +0 -2
- package/dist/field/lexical/plugins/handles/DraggableBlockPlugin/index.scss +0 -2
- package/dist/field/lexical/theme/EditorTheme.scss +0 -2
- package/dist/generateComponentMap.d.ts +6 -0
- package/dist/generateComponentMap.d.ts.map +1 -0
- package/dist/generateComponentMap.js +92 -0
- package/dist/generateSchemaMap.d.ts +6 -0
- package/dist/generateSchemaMap.d.ts.map +1 -0
- package/dist/generateSchemaMap.js +37 -0
- package/dist/index.d.ts +59 -56
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +138 -109
- package/dist/populate/defaultValue.js +6 -6
- package/dist/populate/recurseNestedFields.d.ts.map +1 -1
- package/dist/populate/recurseNestedFields.js +3 -1
- package/dist/populate/richTextRelationshipPromise.js +2 -2
- 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/useLexicalFeature.d.ts +3 -0
- package/dist/useLexicalFeature.d.ts.map +1 -0
- package/dist/useLexicalFeature.js +19 -0
- package/dist/validate/index.d.ts +4 -4
- package/dist/validate/index.d.ts.map +1 -1
- package/dist/validate/index.js +2 -3
- package/dist/validate/validateNodes.d.ts +2 -4
- package/dist/validate/validateNodes.d.ts.map +1 -1
- package/dist/validate/validateNodes.js +2 -4
- 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/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/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/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/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}/drawer/types.js +0 -0
- /package/dist/field/features/{Link/plugins/floatingLinkEditor → link/nodes}/types.js +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/{migrations/LexicalPluginToLexical/converter → link/plugins/floatingLinkEditor}/types.js +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/{SlateToLexical → lexicalPluginToLexical}/converter/types.js +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
|
@@ -18,51 +18,51 @@ _export(exports, {
|
|
|
18
18
|
});
|
|
19
19
|
const defaultRichTextValue = {
|
|
20
20
|
root: {
|
|
21
|
+
type: 'root',
|
|
21
22
|
children: [
|
|
22
23
|
{
|
|
24
|
+
type: 'paragraph',
|
|
23
25
|
children: [
|
|
24
26
|
{
|
|
27
|
+
type: 'text',
|
|
25
28
|
detail: 0,
|
|
26
29
|
format: 0,
|
|
27
30
|
mode: 'normal',
|
|
28
31
|
style: '',
|
|
29
32
|
text: '',
|
|
30
|
-
type: 'text',
|
|
31
33
|
version: 1
|
|
32
34
|
}
|
|
33
35
|
],
|
|
34
36
|
direction: null,
|
|
35
37
|
format: '',
|
|
36
38
|
indent: 0,
|
|
37
|
-
type: 'paragraph',
|
|
38
39
|
version: 1
|
|
39
40
|
}
|
|
40
41
|
],
|
|
41
42
|
direction: null,
|
|
42
43
|
format: '',
|
|
43
44
|
indent: 0,
|
|
44
|
-
type: 'root',
|
|
45
45
|
version: 1
|
|
46
46
|
}
|
|
47
47
|
};
|
|
48
48
|
const defaultRichTextValueV2 = {
|
|
49
49
|
root: {
|
|
50
|
+
type: 'root',
|
|
50
51
|
children: [
|
|
51
52
|
{
|
|
53
|
+
type: 'paragraph',
|
|
52
54
|
children: [],
|
|
53
55
|
direction: null,
|
|
54
56
|
format: '',
|
|
55
57
|
indent: 0,
|
|
56
|
-
type: 'paragraph',
|
|
57
58
|
version: 1
|
|
58
59
|
}
|
|
59
60
|
],
|
|
60
61
|
direction: null,
|
|
61
62
|
format: '',
|
|
62
63
|
indent: 0,
|
|
63
|
-
type: 'root',
|
|
64
64
|
version: 1
|
|
65
65
|
}
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
68
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wb3B1bGF0ZS9kZWZhdWx0VmFsdWUudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUgeyBTZXJpYWxpemVkRWRpdG9yU3RhdGUsIFNlcmlhbGl6ZWRQYXJhZ3JhcGhOb2RlLCBTZXJpYWxpemVkVGV4dE5vZGUgfSBmcm9tICdsZXhpY2FsJ1xuXG5leHBvcnQgY29uc3QgZGVmYXVsdFJpY2hUZXh0VmFsdWU6IFNlcmlhbGl6ZWRFZGl0b3JTdGF0ZSA9IHtcbiAgcm9vdDoge1xuICAgIHR5cGU6ICdyb290JyxcbiAgICBjaGlsZHJlbjogW1xuICAgICAge1xuICAgICAgICB0eXBlOiAncGFyYWdyYXBoJyxcbiAgICAgICAgY2hpbGRyZW46IFtcbiAgICAgICAgICB7XG4gICAgICAgICAgICB0eXBlOiAndGV4dCcsXG4gICAgICAgICAgICBkZXRhaWw6IDAsXG4gICAgICAgICAgICBmb3JtYXQ6IDAsXG4gICAgICAgICAgICBtb2RlOiAnbm9ybWFsJyxcbiAgICAgICAgICAgIHN0eWxlOiAnJyxcbiAgICAgICAgICAgIHRleHQ6ICcnLFxuICAgICAgICAgICAgdmVyc2lvbjogMSxcbiAgICAgICAgICB9IGFzIFNlcmlhbGl6ZWRUZXh0Tm9kZSxcbiAgICAgICAgXSxcbiAgICAgICAgZGlyZWN0aW9uOiBudWxsLFxuICAgICAgICBmb3JtYXQ6ICcnLFxuICAgICAgICBpbmRlbnQ6IDAsXG4gICAgICAgIHZlcnNpb246IDEsXG4gICAgICB9IGFzIFNlcmlhbGl6ZWRQYXJhZ3JhcGhOb2RlLFxuICAgIF0sXG4gICAgZGlyZWN0aW9uOiBudWxsLFxuICAgIGZvcm1hdDogJycsXG4gICAgaW5kZW50OiAwLFxuICAgIHZlcnNpb246IDEsXG4gIH0sXG59XG5cbmV4cG9ydCBjb25zdCBkZWZhdWx0UmljaFRleHRWYWx1ZVYyOiBTZXJpYWxpemVkRWRpdG9yU3RhdGUgPSB7XG4gIHJvb3Q6IHtcbiAgICB0eXBlOiAncm9vdCcsXG4gICAgY2hpbGRyZW46IFtcbiAgICAgIHtcbiAgICAgICAgdHlwZTogJ3BhcmFncmFwaCcsXG4gICAgICAgIGNoaWxkcmVuOiBbXSxcbiAgICAgICAgZGlyZWN0aW9uOiBudWxsLFxuICAgICAgICBmb3JtYXQ6ICcnLFxuICAgICAgICBpbmRlbnQ6IDAsXG4gICAgICAgIHZlcnNpb246IDEsXG4gICAgICB9IGFzIFNlcmlhbGl6ZWRQYXJhZ3JhcGhOb2RlLFxuICAgIF0sXG4gICAgZGlyZWN0aW9uOiBudWxsLFxuICAgIGZvcm1hdDogJycsXG4gICAgaW5kZW50OiAwLFxuICAgIHZlcnNpb246IDEsXG4gIH0sXG59XG4iXSwibmFtZXMiOlsiZGVmYXVsdFJpY2hUZXh0VmFsdWUiLCJkZWZhdWx0UmljaFRleHRWYWx1ZVYyIiwicm9vdCIsInR5cGUiLCJjaGlsZHJlbiIsImRldGFpbCIsImZvcm1hdCIsIm1vZGUiLCJzdHlsZSIsInRleHQiLCJ2ZXJzaW9uIiwiZGlyZWN0aW9uIiwiaW5kZW50Il0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7OztJQUVhQSxvQkFBb0I7ZUFBcEJBOztJQThCQUMsc0JBQXNCO2VBQXRCQTs7O0FBOUJOLE1BQU1ELHVCQUE4QztJQUN6REUsTUFBTTtRQUNKQyxNQUFNO1FBQ05DLFVBQVU7WUFDUjtnQkFDRUQsTUFBTTtnQkFDTkMsVUFBVTtvQkFDUjt3QkFDRUQsTUFBTTt3QkFDTkUsUUFBUTt3QkFDUkMsUUFBUTt3QkFDUkMsTUFBTTt3QkFDTkMsT0FBTzt3QkFDUEMsTUFBTTt3QkFDTkMsU0FBUztvQkFDWDtpQkFDRDtnQkFDREMsV0FBVztnQkFDWEwsUUFBUTtnQkFDUk0sUUFBUTtnQkFDUkYsU0FBUztZQUNYO1NBQ0Q7UUFDREMsV0FBVztRQUNYTCxRQUFRO1FBQ1JNLFFBQVE7UUFDUkYsU0FBUztJQUNYO0FBQ0Y7QUFFTyxNQUFNVCx5QkFBZ0Q7SUFDM0RDLE1BQU07UUFDSkMsTUFBTTtRQUNOQyxVQUFVO1lBQ1I7Z0JBQ0VELE1BQU07Z0JBQ05DLFVBQVUsRUFBRTtnQkFDWk8sV0FBVztnQkFDWEwsUUFBUTtnQkFDUk0sUUFBUTtnQkFDUkYsU0FBUztZQUNYO1NBQ0Q7UUFDREMsV0FBVztRQUNYTCxRQUFRO1FBQ1JNLFFBQVE7UUFDUkYsU0FBUztJQUNYO0FBQ0YifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"recurseNestedFields.d.ts","sourceRoot":"","sources":["../../src/populate/recurseNestedFields.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAC7C,OAAO,KAAK,EAAE,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAI1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAEhE,KAAK,wBAAwB,GAAG;IAC9B,OAAO,EAAE,cAAc,CAAA;IACvB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,IAAI,EAAE,OAAO,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,wBAAwB,EAAE,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAA;IAC/D,MAAM,EAAE,KAAK,EAAE,CAAA;IACf,QAAQ,EAAE,OAAO,CAAA;IACjB,cAAc,EAAE,OAAO,CAAA;IACvB,cAAc,EAAE,OAAO,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IACnC,QAAQ,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IACzB,GAAG,EAAE,cAAc,CAAA;IACnB,gBAAgB,EAAE,OAAO,CAAA;IACzB,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CACpC,CAAA;AAED,eAAO,MAAM,mBAAmB,+JAc7B,wBAAwB,KAAG,
|
|
1
|
+
{"version":3,"file":"recurseNestedFields.d.ts","sourceRoot":"","sources":["../../src/populate/recurseNestedFields.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAC7C,OAAO,KAAK,EAAE,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAI1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAEhE,KAAK,wBAAwB,GAAG;IAC9B,OAAO,EAAE,cAAc,CAAA;IACvB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,IAAI,EAAE,OAAO,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,wBAAwB,EAAE,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAA;IAC/D,MAAM,EAAE,KAAK,EAAE,CAAA;IACf,QAAQ,EAAE,OAAO,CAAA;IACjB,cAAc,EAAE,OAAO,CAAA;IACvB,cAAc,EAAE,OAAO,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IACnC,QAAQ,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IACzB,GAAG,EAAE,cAAc,CAAA;IACnB,gBAAgB,EAAE,OAAO,CAAA;IACzB,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CACpC,CAAA;AAED,eAAO,MAAM,mBAAmB,+JAc7B,wBAAwB,KAAG,IAsB7B,CAAA"}
|
|
@@ -16,11 +16,13 @@ const recurseNestedFields = ({ context, currentDepth = 0, data, depth, fields, f
|
|
|
16
16
|
currentDepth,
|
|
17
17
|
depth,
|
|
18
18
|
doc: data,
|
|
19
|
+
fallbackLocale: req.fallbackLocale,
|
|
19
20
|
fieldPromises: promises,
|
|
20
21
|
fields,
|
|
21
22
|
findMany,
|
|
22
23
|
flattenLocales,
|
|
23
24
|
global: null,
|
|
25
|
+
locale: req.locale,
|
|
24
26
|
overrideAccess,
|
|
25
27
|
populationPromises,
|
|
26
28
|
req,
|
|
@@ -31,4 +33,4 @@ const recurseNestedFields = ({ context, currentDepth = 0, data, depth, fields, f
|
|
|
31
33
|
});
|
|
32
34
|
};
|
|
33
35
|
|
|
34
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wb3B1bGF0ZS9yZWN1cnNlTmVzdGVkRmllbGRzLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgUmVxdWVzdENvbnRleHQgfSBmcm9tICdwYXlsb2FkJ1xuaW1wb3J0IHR5cGUgeyBGaWVsZCwgUGF5bG9hZFJlcXVlc3QgfSBmcm9tICdwYXlsb2FkL3R5cGVzJ1xuXG5pbXBvcnQgeyBhZnRlclJlYWRUcmF2ZXJzZUZpZWxkcyB9IGZyb20gJ3BheWxvYWQvdXRpbGl0aWVzJ1xuXG5pbXBvcnQgdHlwZSB7IFBvcHVsYXRpb25Qcm9taXNlIH0gZnJvbSAnLi4vZmllbGQvZmVhdHVyZXMvdHlwZXMnXG5cbnR5cGUgTmVzdGVkUmljaFRleHRGaWVsZHNBcmdzID0ge1xuICBjb250ZXh0OiBSZXF1ZXN0Q29udGV4dFxuICBjdXJyZW50RGVwdGg/OiBudW1iZXJcbiAgZGF0YTogdW5rbm93blxuICBkZXB0aDogbnVtYmVyXG4gIC8qKlxuICAgKiBUaGlzIG1hcHMgYWxsIHRoZSBwb3B1bGF0aW9uIHByb21pc2VzIHRvIHRoZSBub2RlIHR5cGVzXG4gICAqL1xuICBlZGl0b3JQb3B1bGF0aW9uUHJvbWlzZXM6IE1hcDxzdHJpbmcsIEFycmF5PFBvcHVsYXRpb25Qcm9taXNlPj5cbiAgZmllbGRzOiBGaWVsZFtdXG4gIGZpbmRNYW55OiBib29sZWFuXG4gIGZsYXR0ZW5Mb2NhbGVzOiBib29sZWFuXG4gIG92ZXJyaWRlQWNjZXNzOiBib29sZWFuXG4gIHBvcHVsYXRpb25Qcm9taXNlczogUHJvbWlzZTx2b2lkPltdXG4gIHByb21pc2VzOiBQcm9taXNlPHZvaWQ+W11cbiAgcmVxOiBQYXlsb2FkUmVxdWVzdFxuICBzaG93SGlkZGVuRmllbGRzOiBib29sZWFuXG4gIHNpYmxpbmdEb2M6IFJlY29yZDxzdHJpbmcsIHVua25vd24+XG59XG5cbmV4cG9ydCBjb25zdCByZWN1cnNlTmVzdGVkRmllbGRzID0gKHtcbiAgY29udGV4dCxcbiAgY3VycmVudERlcHRoID0gMCxcbiAgZGF0YSxcbiAgZGVwdGgsXG4gIGZpZWxkcyxcbiAgZmluZE1hbnksXG4gIGZsYXR0ZW5Mb2NhbGVzLFxuICBvdmVycmlkZUFjY2VzcyA9IGZhbHNlLFxuICBwb3B1bGF0aW9uUHJvbWlzZXMsXG4gIHByb21pc2VzLFxuICByZXEsXG4gIHNob3dIaWRkZW5GaWVsZHMsXG4gIHNpYmxpbmdEb2MsXG59OiBOZXN0ZWRSaWNoVGV4dEZpZWxkc0FyZ3MpOiB2b2lkID0+
|
|
36
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wb3B1bGF0ZS9yZWN1cnNlTmVzdGVkRmllbGRzLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgUmVxdWVzdENvbnRleHQgfSBmcm9tICdwYXlsb2FkJ1xuaW1wb3J0IHR5cGUgeyBGaWVsZCwgUGF5bG9hZFJlcXVlc3QgfSBmcm9tICdwYXlsb2FkL3R5cGVzJ1xuXG5pbXBvcnQgeyBhZnRlclJlYWRUcmF2ZXJzZUZpZWxkcyB9IGZyb20gJ3BheWxvYWQvdXRpbGl0aWVzJ1xuXG5pbXBvcnQgdHlwZSB7IFBvcHVsYXRpb25Qcm9taXNlIH0gZnJvbSAnLi4vZmllbGQvZmVhdHVyZXMvdHlwZXMnXG5cbnR5cGUgTmVzdGVkUmljaFRleHRGaWVsZHNBcmdzID0ge1xuICBjb250ZXh0OiBSZXF1ZXN0Q29udGV4dFxuICBjdXJyZW50RGVwdGg/OiBudW1iZXJcbiAgZGF0YTogdW5rbm93blxuICBkZXB0aDogbnVtYmVyXG4gIC8qKlxuICAgKiBUaGlzIG1hcHMgYWxsIHRoZSBwb3B1bGF0aW9uIHByb21pc2VzIHRvIHRoZSBub2RlIHR5cGVzXG4gICAqL1xuICBlZGl0b3JQb3B1bGF0aW9uUHJvbWlzZXM6IE1hcDxzdHJpbmcsIEFycmF5PFBvcHVsYXRpb25Qcm9taXNlPj5cbiAgZmllbGRzOiBGaWVsZFtdXG4gIGZpbmRNYW55OiBib29sZWFuXG4gIGZsYXR0ZW5Mb2NhbGVzOiBib29sZWFuXG4gIG92ZXJyaWRlQWNjZXNzOiBib29sZWFuXG4gIHBvcHVsYXRpb25Qcm9taXNlczogUHJvbWlzZTx2b2lkPltdXG4gIHByb21pc2VzOiBQcm9taXNlPHZvaWQ+W11cbiAgcmVxOiBQYXlsb2FkUmVxdWVzdFxuICBzaG93SGlkZGVuRmllbGRzOiBib29sZWFuXG4gIHNpYmxpbmdEb2M6IFJlY29yZDxzdHJpbmcsIHVua25vd24+XG59XG5cbmV4cG9ydCBjb25zdCByZWN1cnNlTmVzdGVkRmllbGRzID0gKHtcbiAgY29udGV4dCxcbiAgY3VycmVudERlcHRoID0gMCxcbiAgZGF0YSxcbiAgZGVwdGgsXG4gIGZpZWxkcyxcbiAgZmluZE1hbnksXG4gIGZsYXR0ZW5Mb2NhbGVzLFxuICBvdmVycmlkZUFjY2VzcyA9IGZhbHNlLFxuICBwb3B1bGF0aW9uUHJvbWlzZXMsXG4gIHByb21pc2VzLFxuICByZXEsXG4gIHNob3dIaWRkZW5GaWVsZHMsXG4gIHNpYmxpbmdEb2MsXG59OiBOZXN0ZWRSaWNoVGV4dEZpZWxkc0FyZ3MpOiB2b2lkID0+IHtcbiAgYWZ0ZXJSZWFkVHJhdmVyc2VGaWVsZHMoe1xuICAgIGNvbGxlY3Rpb246IG51bGwsIC8vIFBhc3MgZnJvbSBjb3JlPyBUaGlzIGlzIG9ubHkgbmVlZGVkIGZvciBob29rcywgc28gd2UgY2FuIGxlYXZlIHRoaXMgbnVsbCBmb3Igbm93XG4gICAgY29udGV4dCxcbiAgICBjdXJyZW50RGVwdGgsXG4gICAgZGVwdGgsXG4gICAgZG9jOiBkYXRhIGFzIGFueSwgLy8gTG9va3MgbGlrZSBpdCdzIG9ubHkgbmVlZGVkIGZvciBob29rcyBhbmQgYWNjZXNzIGNvbnRyb2wsIHNvIGRvZXNuJ3QgbWF0dGVyIHdoYXQgd2UgcGFzcyBoZXJlIHJpZ2h0IG5vd1xuICAgIGZhbGxiYWNrTG9jYWxlOiByZXEuZmFsbGJhY2tMb2NhbGUsXG4gICAgZmllbGRQcm9taXNlczogcHJvbWlzZXMsIC8vIE5vdCBzdXJlIGlmIHdoYXQgSSBwYXNzIGluIGhlcmUgbWFrZXMgc2Vuc2UuIEJ1dCBpdCBkb2Vzbid0IHNlZW0gbGlrZSBpdCdzIHVzZWQgYXQgYWxsIGFueXdheXNcbiAgICBmaWVsZHMsXG4gICAgZmluZE1hbnksXG4gICAgZmxhdHRlbkxvY2FsZXMsXG4gICAgZ2xvYmFsOiBudWxsLCAvLyBQYXNzIGZyb20gY29yZT8gVGhpcyBpcyBvbmx5IG5lZWRlZCBmb3IgaG9va3MsIHNvIHdlIGNhbiBsZWF2ZSB0aGlzIG51bGwgZm9yIG5vd1xuICAgIGxvY2FsZTogcmVxLmxvY2FsZSxcbiAgICBvdmVycmlkZUFjY2VzcyxcbiAgICBwb3B1bGF0aW9uUHJvbWlzZXMsIC8vIFRoaXMgaXMgbm90IHRoZSBzYW1lIGFzIHBvcHVsYXRpb25Qcm9taXNlcyBwYXNzZWQgaW50byB0aGlzIHJlY3Vyc2VOZXN0ZWRGaWVsZHMuIFRoZXNlIGFyZSBqdXN0IHByb21pc2VzIHJlc29sdmVkIGF0IHRoZSB2ZXJ5IGVuZC5cbiAgICByZXEsXG4gICAgc2hvd0hpZGRlbkZpZWxkcyxcbiAgICBzaWJsaW5nRG9jLFxuICAgIHRyaWdnZXJBY2Nlc3NDb250cm9sOiBmYWxzZSwgLy8gVE9ETzogRW5hYmxlIHRoaXMgdG8gc3VwcG9ydCBhY2Nlc3MgY29udHJvbFxuICAgIHRyaWdnZXJIb29rczogZmFsc2UsIC8vIFRPRE86IEVuYWJsZSB0aGlzIHRvIHN1cHBvcnQgaG9va3NcbiAgfSlcbn1cbiJdLCJuYW1lcyI6WyJyZWN1cnNlTmVzdGVkRmllbGRzIiwiY29udGV4dCIsImN1cnJlbnREZXB0aCIsImRhdGEiLCJkZXB0aCIsImZpZWxkcyIsImZpbmRNYW55IiwiZmxhdHRlbkxvY2FsZXMiLCJvdmVycmlkZUFjY2VzcyIsInBvcHVsYXRpb25Qcm9taXNlcyIsInByb21pc2VzIiwicmVxIiwic2hvd0hpZGRlbkZpZWxkcyIsInNpYmxpbmdEb2MiLCJhZnRlclJlYWRUcmF2ZXJzZUZpZWxkcyIsImNvbGxlY3Rpb24iLCJkb2MiLCJmYWxsYmFja0xvY2FsZSIsImZpZWxkUHJvbWlzZXMiLCJnbG9iYWwiLCJsb2NhbGUiLCJ0cmlnZ2VyQWNjZXNzQ29udHJvbCIsInRyaWdnZXJIb29rcyJdLCJtYXBwaW5ncyI6Ijs7OzsrQkEyQmFBOzs7ZUFBQUE7OzsyQkF4QjJCO0FBd0JqQyxNQUFNQSxzQkFBc0IsQ0FBQyxFQUNsQ0MsT0FBTyxFQUNQQyxlQUFlLENBQUMsRUFDaEJDLElBQUksRUFDSkMsS0FBSyxFQUNMQyxNQUFNLEVBQ05DLFFBQVEsRUFDUkMsY0FBYyxFQUNkQyxpQkFBaUIsS0FBSyxFQUN0QkMsa0JBQWtCLEVBQ2xCQyxRQUFRLEVBQ1JDLEdBQUcsRUFDSEMsZ0JBQWdCLEVBQ2hCQyxVQUFVLEVBQ2U7SUFDekJDLElBQUFBLGtDQUF1QixFQUFDO1FBQ3RCQyxZQUFZO1FBQ1pkO1FBQ0FDO1FBQ0FFO1FBQ0FZLEtBQUtiO1FBQ0xjLGdCQUFnQk4sSUFBSU0sY0FBYztRQUNsQ0MsZUFBZVI7UUFDZkw7UUFDQUM7UUFDQUM7UUFDQVksUUFBUTtRQUNSQyxRQUFRVCxJQUFJUyxNQUFNO1FBQ2xCWjtRQUNBQztRQUNBRTtRQUNBQztRQUNBQztRQUNBUSxzQkFBc0I7UUFDdEJDLGNBQWM7SUFDaEI7QUFDRiJ9
|
|
@@ -32,7 +32,7 @@ const recurseRichText = ({ children, context, currentDepth = 0, depth, editorPop
|
|
|
32
32
|
field,
|
|
33
33
|
findMany,
|
|
34
34
|
flattenLocales,
|
|
35
|
-
node
|
|
35
|
+
node,
|
|
36
36
|
overrideAccess,
|
|
37
37
|
populationPromises,
|
|
38
38
|
req,
|
|
@@ -83,4 +83,4 @@ const richTextRelationshipPromise = async ({ context, currentDepth, depth, edito
|
|
|
83
83
|
await Promise.all(promises);
|
|
84
84
|
};
|
|
85
85
|
|
|
86
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wb3B1bGF0ZS9yaWNoVGV4dFJlbGF0aW9uc2hpcFByb21pc2UudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUgeyBTZXJpYWxpemVkRWRpdG9yU3RhdGUsIFNlcmlhbGl6ZWRMZXhpY2FsTm9kZSB9IGZyb20gJ2xleGljYWwnXG5pbXBvcnQgdHlwZSB7IFBheWxvYWRSZXF1ZXN0LCBSaWNoVGV4dEFkYXB0ZXIsIFJpY2hUZXh0RmllbGQgfSBmcm9tICdwYXlsb2FkL3R5cGVzJ1xuXG5pbXBvcnQgdHlwZSB7IFBvcHVsYXRpb25Qcm9taXNlIH0gZnJvbSAnLi4vZmllbGQvZmVhdHVyZXMvdHlwZXMnXG5pbXBvcnQgdHlwZSB7IEFkYXB0ZXJQcm9wcyB9IGZyb20gJy4uL3R5cGVzJ1xuXG5leHBvcnQgdHlwZSBBcmdzID0gUGFyYW1ldGVyczxcbiAgUmljaFRleHRBZGFwdGVyPFNlcmlhbGl6ZWRFZGl0b3JTdGF0ZSwgQWRhcHRlclByb3BzPlsncG9wdWxhdGlvblByb21pc2UnXVxuPlswXSAmIHtcbiAgZWRpdG9yUG9wdWxhdGlvblByb21pc2VzOiBNYXA8c3RyaW5nLCBBcnJheTxQb3B1bGF0aW9uUHJvbWlzZT4+XG59XG5cbnR5cGUgUmVjdXJzZVJpY2hUZXh0QXJncyA9IHtcbiAgY2hpbGRyZW46IFNlcmlhbGl6ZWRMZXhpY2FsTm9kZVtdXG4gIGN1cnJlbnREZXB0aDogbnVtYmVyXG4gIGRlcHRoOiBudW1iZXJcbiAgZWRpdG9yUG9wdWxhdGlvblByb21pc2VzOiBNYXA8c3RyaW5nLCBBcnJheTxQb3B1bGF0aW9uUHJvbWlzZT4+
|
|
86
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wb3B1bGF0ZS9yaWNoVGV4dFJlbGF0aW9uc2hpcFByb21pc2UudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUgeyBTZXJpYWxpemVkRWRpdG9yU3RhdGUsIFNlcmlhbGl6ZWRMZXhpY2FsTm9kZSB9IGZyb20gJ2xleGljYWwnXG5pbXBvcnQgdHlwZSB7IFBheWxvYWRSZXF1ZXN0LCBSaWNoVGV4dEFkYXB0ZXIsIFJpY2hUZXh0RmllbGQgfSBmcm9tICdwYXlsb2FkL3R5cGVzJ1xuXG5pbXBvcnQgdHlwZSB7IFBvcHVsYXRpb25Qcm9taXNlIH0gZnJvbSAnLi4vZmllbGQvZmVhdHVyZXMvdHlwZXMnXG5pbXBvcnQgdHlwZSB7IEFkYXB0ZXJQcm9wcyB9IGZyb20gJy4uL3R5cGVzJ1xuXG5leHBvcnQgdHlwZSBBcmdzID0gUGFyYW1ldGVyczxcbiAgUmljaFRleHRBZGFwdGVyPFNlcmlhbGl6ZWRFZGl0b3JTdGF0ZSwgQWRhcHRlclByb3BzPlsncG9wdWxhdGlvblByb21pc2UnXVxuPlswXSAmIHtcbiAgZWRpdG9yUG9wdWxhdGlvblByb21pc2VzOiBNYXA8c3RyaW5nLCBBcnJheTxQb3B1bGF0aW9uUHJvbWlzZT4+XG59XG5cbnR5cGUgUmVjdXJzZVJpY2hUZXh0QXJncyA9IHtcbiAgY2hpbGRyZW46IFNlcmlhbGl6ZWRMZXhpY2FsTm9kZVtdXG4gIGN1cnJlbnREZXB0aDogbnVtYmVyXG4gIGRlcHRoOiBudW1iZXJcbiAgZWRpdG9yUG9wdWxhdGlvblByb21pc2VzOiBNYXA8c3RyaW5nLCBBcnJheTxQb3B1bGF0aW9uUHJvbWlzZT4+XG4gIGZpZWxkOiBSaWNoVGV4dEZpZWxkPFNlcmlhbGl6ZWRFZGl0b3JTdGF0ZSwgQWRhcHRlclByb3BzPlxuICBvdmVycmlkZUFjY2VzczogYm9vbGVhblxuICBwcm9taXNlczogUHJvbWlzZTx2b2lkPltdXG4gIHJlcTogUGF5bG9hZFJlcXVlc3RcbiAgc2hvd0hpZGRlbkZpZWxkczogYm9vbGVhblxuICBzaWJsaW5nRG9jPzogUmVjb3JkPHN0cmluZywgdW5rbm93bj5cbn1cblxuZXhwb3J0IGNvbnN0IHJlY3Vyc2VSaWNoVGV4dCA9ICh7XG4gIGNoaWxkcmVuLFxuICBjb250ZXh0LFxuICBjdXJyZW50RGVwdGggPSAwLFxuICBkZXB0aCxcbiAgZWRpdG9yUG9wdWxhdGlvblByb21pc2VzLFxuICBmaWVsZCxcbiAgZmluZE1hbnksXG4gIGZsYXR0ZW5Mb2NhbGVzLFxuICBvdmVycmlkZUFjY2VzcyA9IGZhbHNlLFxuICBwb3B1bGF0aW9uUHJvbWlzZXMsXG4gIHByb21pc2VzLFxuICByZXEsXG4gIHNob3dIaWRkZW5GaWVsZHMsXG4gIHNpYmxpbmdEb2MsXG59OiBSZWN1cnNlUmljaFRleHRBcmdzICYgQXJncyk6IHZvaWQgPT4ge1xuICBpZiAoZGVwdGggPD0gMCB8fCBjdXJyZW50RGVwdGggPiBkZXB0aCkge1xuICAgIHJldHVyblxuICB9XG5cbiAgaWYgKEFycmF5LmlzQXJyYXkoY2hpbGRyZW4pKSB7XG4gICAgY2hpbGRyZW4uZm9yRWFjaCgobm9kZSkgPT4ge1xuICAgICAgaWYgKGVkaXRvclBvcHVsYXRpb25Qcm9taXNlcz8uaGFzKG5vZGUudHlwZSkpIHtcbiAgICAgICAgZm9yIChjb25zdCBwcm9taXNlIG9mIGVkaXRvclBvcHVsYXRpb25Qcm9taXNlcy5nZXQobm9kZS50eXBlKSkge1xuICAgICAgICAgIHByb21pc2VzLnB1c2goXG4gICAgICAgICAgICAuLi5wcm9taXNlKHtcbiAgICAgICAgICAgICAgY29udGV4dCxcbiAgICAgICAgICAgICAgY3VycmVudERlcHRoLFxuICAgICAgICAgICAgICBkZXB0aCxcbiAgICAgICAgICAgICAgZWRpdG9yUG9wdWxhdGlvblByb21pc2VzLFxuICAgICAgICAgICAgICBmaWVsZCxcbiAgICAgICAgICAgICAgZmluZE1hbnksXG4gICAgICAgICAgICAgIGZsYXR0ZW5Mb2NhbGVzLFxuICAgICAgICAgICAgICBub2RlLFxuICAgICAgICAgICAgICBvdmVycmlkZUFjY2VzcyxcbiAgICAgICAgICAgICAgcG9wdWxhdGlvblByb21pc2VzLFxuICAgICAgICAgICAgICByZXEsXG4gICAgICAgICAgICAgIHNob3dIaWRkZW5GaWVsZHMsXG4gICAgICAgICAgICAgIHNpYmxpbmdEb2MsXG4gICAgICAgICAgICB9KSxcbiAgICAgICAgICApXG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgaWYgKCdjaGlsZHJlbicgaW4gbm9kZSAmJiBBcnJheS5pc0FycmF5KG5vZGU/LmNoaWxkcmVuKSAmJiBub2RlPy5jaGlsZHJlbj8ubGVuZ3RoKSB7XG4gICAgICAgIHJlY3Vyc2VSaWNoVGV4dCh7XG4gICAgICAgICAgY2hpbGRyZW46IG5vZGUuY2hpbGRyZW4gYXMgU2VyaWFsaXplZExleGljYWxOb2RlW10sXG4gICAgICAgICAgY29udGV4dCxcbiAgICAgICAgICBjdXJyZW50RGVwdGgsXG4gICAgICAgICAgZGVwdGgsXG4gICAgICAgICAgZWRpdG9yUG9wdWxhdGlvblByb21pc2VzLFxuICAgICAgICAgIGZpZWxkLFxuICAgICAgICAgIGZpbmRNYW55LFxuICAgICAgICAgIGZsYXR0ZW5Mb2NhbGVzLFxuICAgICAgICAgIG92ZXJyaWRlQWNjZXNzLFxuICAgICAgICAgIHBvcHVsYXRpb25Qcm9taXNlcyxcbiAgICAgICAgICBwcm9taXNlcyxcbiAgICAgICAgICByZXEsXG4gICAgICAgICAgc2hvd0hpZGRlbkZpZWxkcyxcbiAgICAgICAgICBzaWJsaW5nRG9jLFxuICAgICAgICB9KVxuICAgICAgfVxuICAgIH0pXG4gIH1cbn1cblxuZXhwb3J0IGNvbnN0IHJpY2hUZXh0UmVsYXRpb25zaGlwUHJvbWlzZSA9IGFzeW5jICh7XG4gIGNvbnRleHQsXG4gIGN1cnJlbnREZXB0aCxcbiAgZGVwdGgsXG4gIGVkaXRvclBvcHVsYXRpb25Qcm9taXNlcyxcbiAgZmllbGQsXG4gIGZpbmRNYW55LFxuICBmbGF0dGVuTG9jYWxlcyxcbiAgb3ZlcnJpZGVBY2Nlc3MsXG4gIHBvcHVsYXRpb25Qcm9taXNlcyxcbiAgcmVxLFxuICBzaG93SGlkZGVuRmllbGRzLFxuICBzaWJsaW5nRG9jLFxufTogQXJncyk6IFByb21pc2U8dm9pZD4gPT4ge1xuICBjb25zdCBwcm9taXNlcyA9IFtdXG5cbiAgcmVjdXJzZVJpY2hUZXh0KHtcbiAgICBjaGlsZHJlbjogKHNpYmxpbmdEb2NbZmllbGQ/Lm5hbWVdIGFzIFNlcmlhbGl6ZWRFZGl0b3JTdGF0ZSk/LnJvb3Q/LmNoaWxkcmVuID8/IFtdLFxuICAgIGNvbnRleHQsXG4gICAgY3VycmVudERlcHRoLFxuICAgIGRlcHRoLFxuICAgIGVkaXRvclBvcHVsYXRpb25Qcm9taXNlcyxcbiAgICBmaWVsZCxcbiAgICBmaW5kTWFueSxcbiAgICBmbGF0dGVuTG9jYWxlcyxcbiAgICBvdmVycmlkZUFjY2VzcyxcbiAgICBwb3B1bGF0aW9uUHJvbWlzZXMsXG4gICAgcHJvbWlzZXMsXG4gICAgcmVxLFxuICAgIHNob3dIaWRkZW5GaWVsZHMsXG4gICAgc2libGluZ0RvYyxcbiAgfSlcblxuICBhd2FpdCBQcm9taXNlLmFsbChwcm9taXNlcylcbn1cbiJdLCJuYW1lcyI6WyJyZWN1cnNlUmljaFRleHQiLCJyaWNoVGV4dFJlbGF0aW9uc2hpcFByb21pc2UiLCJjaGlsZHJlbiIsImNvbnRleHQiLCJjdXJyZW50RGVwdGgiLCJkZXB0aCIsImVkaXRvclBvcHVsYXRpb25Qcm9taXNlcyIsImZpZWxkIiwiZmluZE1hbnkiLCJmbGF0dGVuTG9jYWxlcyIsIm92ZXJyaWRlQWNjZXNzIiwicG9wdWxhdGlvblByb21pc2VzIiwicHJvbWlzZXMiLCJyZXEiLCJzaG93SGlkZGVuRmllbGRzIiwic2libGluZ0RvYyIsIkFycmF5IiwiaXNBcnJheSIsImZvckVhY2giLCJub2RlIiwiaGFzIiwidHlwZSIsInByb21pc2UiLCJnZXQiLCJwdXNoIiwibGVuZ3RoIiwibmFtZSIsInJvb3QiLCJQcm9taXNlIiwiYWxsIl0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7OztJQXlCYUEsZUFBZTtlQUFmQTs7SUFrRUFDLDJCQUEyQjtlQUEzQkE7OztBQWxFTixNQUFNRCxrQkFBa0IsQ0FBQyxFQUM5QkUsUUFBUSxFQUNSQyxPQUFPLEVBQ1BDLGVBQWUsQ0FBQyxFQUNoQkMsS0FBSyxFQUNMQyx3QkFBd0IsRUFDeEJDLEtBQUssRUFDTEMsUUFBUSxFQUNSQyxjQUFjLEVBQ2RDLGlCQUFpQixLQUFLLEVBQ3RCQyxrQkFBa0IsRUFDbEJDLFFBQVEsRUFDUkMsR0FBRyxFQUNIQyxnQkFBZ0IsRUFDaEJDLFVBQVUsRUFDaUI7SUFDM0IsSUFBSVYsU0FBUyxLQUFLRCxlQUFlQyxPQUFPO1FBQ3RDO0lBQ0Y7SUFFQSxJQUFJVyxNQUFNQyxPQUFPLENBQUNmLFdBQVc7UUFDM0JBLFNBQVNnQixPQUFPLENBQUMsQ0FBQ0M7WUFDaEIsSUFBSWIsMEJBQTBCYyxJQUFJRCxLQUFLRSxJQUFJLEdBQUc7Z0JBQzVDLEtBQUssTUFBTUMsV0FBV2hCLHlCQUF5QmlCLEdBQUcsQ0FBQ0osS0FBS0UsSUFBSSxFQUFHO29CQUM3RFQsU0FBU1ksSUFBSSxJQUNSRixRQUFRO3dCQUNUbkI7d0JBQ0FDO3dCQUNBQzt3QkFDQUM7d0JBQ0FDO3dCQUNBQzt3QkFDQUM7d0JBQ0FVO3dCQUNBVDt3QkFDQUM7d0JBQ0FFO3dCQUNBQzt3QkFDQUM7b0JBQ0Y7Z0JBRUo7WUFDRjtZQUVBLElBQUksY0FBY0ksUUFBUUgsTUFBTUMsT0FBTyxDQUFDRSxNQUFNakIsYUFBYWlCLE1BQU1qQixVQUFVdUIsUUFBUTtnQkFDakZ6QixnQkFBZ0I7b0JBQ2RFLFVBQVVpQixLQUFLakIsUUFBUTtvQkFDdkJDO29CQUNBQztvQkFDQUM7b0JBQ0FDO29CQUNBQztvQkFDQUM7b0JBQ0FDO29CQUNBQztvQkFDQUM7b0JBQ0FDO29CQUNBQztvQkFDQUM7b0JBQ0FDO2dCQUNGO1lBQ0Y7UUFDRjtJQUNGO0FBQ0Y7QUFFTyxNQUFNZCw4QkFBOEIsT0FBTyxFQUNoREUsT0FBTyxFQUNQQyxZQUFZLEVBQ1pDLEtBQUssRUFDTEMsd0JBQXdCLEVBQ3hCQyxLQUFLLEVBQ0xDLFFBQVEsRUFDUkMsY0FBYyxFQUNkQyxjQUFjLEVBQ2RDLGtCQUFrQixFQUNsQkUsR0FBRyxFQUNIQyxnQkFBZ0IsRUFDaEJDLFVBQVUsRUFDTDtJQUNMLE1BQU1ILFdBQVcsRUFBRTtJQUVuQlosZ0JBQWdCO1FBQ2RFLFVBQVUsQUFBQ2EsVUFBVSxDQUFDUixPQUFPbUIsS0FBSyxFQUE0QkMsTUFBTXpCLFlBQVksRUFBRTtRQUNsRkM7UUFDQUM7UUFDQUM7UUFDQUM7UUFDQUM7UUFDQUM7UUFDQUM7UUFDQUM7UUFDQUM7UUFDQUM7UUFDQUM7UUFDQUM7UUFDQUM7SUFDRjtJQUVBLE1BQU1hLFFBQVFDLEdBQUcsQ0FBQ2pCO0FBQ3BCIn0=
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
@import 'fonts';
|
|
2
|
+
@import 'styles';
|
|
3
|
+
@import './toastify.scss';
|
|
4
|
+
@import './colors.scss';
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--base-px: 25;
|
|
8
|
+
--base-body-size: 13;
|
|
9
|
+
--base: calc((var(--base-px) / var(--base-body-size)) * 1rem);
|
|
10
|
+
|
|
11
|
+
--breakpoint-xs-width: #{$breakpoint-xs-width};
|
|
12
|
+
--breakpoint-s-width: #{$breakpoint-s-width};
|
|
13
|
+
--breakpoint-m-width: #{$breakpoint-m-width};
|
|
14
|
+
--breakpoint-l-width: #{$breakpoint-l-width};
|
|
15
|
+
--scrollbar-width: 17px;
|
|
16
|
+
|
|
17
|
+
--theme-bg: var(--theme-elevation-0);
|
|
18
|
+
--theme-input-bg: var(--theme-elevation-0);
|
|
19
|
+
--theme-text: var(--theme-elevation-800);
|
|
20
|
+
--theme-overlay: rgba(5, 5, 5, 0.5);
|
|
21
|
+
--theme-baseline: #{$baseline-px};
|
|
22
|
+
--theme-baseline-body-size: #{$baseline-body-size};
|
|
23
|
+
--font-body: 'Suisse Intl', system-ui;
|
|
24
|
+
--font-mono: monospace;
|
|
25
|
+
--font-serif: 'Merriweather', serif;
|
|
26
|
+
|
|
27
|
+
--style-radius-s: #{$style-radius-s};
|
|
28
|
+
--style-radius-m: #{$style-radius-m};
|
|
29
|
+
--style-radius-l: #{$style-radius-l};
|
|
30
|
+
|
|
31
|
+
--z-popup: 10;
|
|
32
|
+
--z-nav: 20;
|
|
33
|
+
--z-modal: 30;
|
|
34
|
+
--z-status: 40;
|
|
35
|
+
|
|
36
|
+
--accessibility-outline: 2px solid var(--theme-text);
|
|
37
|
+
--accessibility-outline-offset: 2px;
|
|
38
|
+
|
|
39
|
+
--gutter-h: #{base(3)};
|
|
40
|
+
--spacing-view-bottom: var(--gutter-h);
|
|
41
|
+
--app-header-height: calc(var(--base) * 3);
|
|
42
|
+
--doc-controls-height: calc(var(--base) * 3);
|
|
43
|
+
--nav-width: 275px;
|
|
44
|
+
--nav-trans-time: 150ms;
|
|
45
|
+
|
|
46
|
+
@include mid-break {
|
|
47
|
+
--gutter-h: #{base(2)};
|
|
48
|
+
--app-header-height: calc(var(--base) * 2);
|
|
49
|
+
--doc-controls-height: calc(var(--base) * 2.5);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@include small-break {
|
|
53
|
+
--gutter-h: #{base(0.5)};
|
|
54
|
+
--spacing-view-bottom: calc(var(--base) * 2);
|
|
55
|
+
--nav-width: 100vw;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/////////////////////////////
|
|
60
|
+
// GLOBAL STYLES
|
|
61
|
+
/////////////////////////////
|
|
62
|
+
|
|
63
|
+
* {
|
|
64
|
+
box-sizing: border-box;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
html {
|
|
68
|
+
@extend %body;
|
|
69
|
+
background: var(--theme-bg);
|
|
70
|
+
-webkit-font-smoothing: antialiased;
|
|
71
|
+
opacity: 0;
|
|
72
|
+
|
|
73
|
+
&[data-theme='dark'],
|
|
74
|
+
&[data-theme='light'] {
|
|
75
|
+
opacity: initial;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&[data-theme='dark'] {
|
|
79
|
+
--theme-bg: var(--theme-elevation-0);
|
|
80
|
+
--theme-text: var(--theme-elevation-1000);
|
|
81
|
+
--theme-input-bg: var(--theme-elevation-50);
|
|
82
|
+
--theme-overlay: rgba(5, 5, 5, 0.75);
|
|
83
|
+
color-scheme: dark;
|
|
84
|
+
|
|
85
|
+
::selection {
|
|
86
|
+
color: var(--color-base-1000);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
::-moz-selection {
|
|
90
|
+
color: var(--color-base-1000);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@include mid-break {
|
|
95
|
+
font-size: 12px;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
html,
|
|
100
|
+
body,
|
|
101
|
+
#app {
|
|
102
|
+
height: 100%;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
body {
|
|
106
|
+
font-family: var(--font-body);
|
|
107
|
+
font-weight: 400;
|
|
108
|
+
color: var(--theme-text);
|
|
109
|
+
margin: 0;
|
|
110
|
+
// this is for the nav to be able to push the document over
|
|
111
|
+
overflow-x: hidden;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
::selection {
|
|
115
|
+
background: var(--theme-success-500);
|
|
116
|
+
color: var(--theme-base-800);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
::-moz-selection {
|
|
120
|
+
background: var(--theme-success-500);
|
|
121
|
+
color: var(--theme-base-800);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
img {
|
|
125
|
+
max-width: 100%;
|
|
126
|
+
height: auto;
|
|
127
|
+
display: block;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
h1 {
|
|
131
|
+
@extend %h1;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
h2 {
|
|
135
|
+
@extend %h2;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
h3 {
|
|
139
|
+
@extend %h3;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
h4 {
|
|
143
|
+
@extend %h4;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
h5 {
|
|
147
|
+
@extend %h5;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
h6 {
|
|
151
|
+
@extend %h6;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
p {
|
|
155
|
+
margin: 0 0 $baseline;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
ul,
|
|
159
|
+
ol {
|
|
160
|
+
padding-left: $baseline;
|
|
161
|
+
margin: 0 0 $baseline;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
:focus-visible {
|
|
165
|
+
outline: var(--accessibility-outline);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
a {
|
|
169
|
+
color: currentColor;
|
|
170
|
+
|
|
171
|
+
&:focus {
|
|
172
|
+
&:not(:focus-visible) {
|
|
173
|
+
opacity: 0.8;
|
|
174
|
+
}
|
|
175
|
+
outline: none;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
&:active {
|
|
179
|
+
opacity: 0.7;
|
|
180
|
+
outline: none;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
svg {
|
|
185
|
+
vertical-align: middle;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
dialog {
|
|
189
|
+
width: 100%;
|
|
190
|
+
border: 0;
|
|
191
|
+
padding: 0;
|
|
192
|
+
color: currentColor;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.payload__modal-item {
|
|
196
|
+
min-height: 100%;
|
|
197
|
+
background: transparent;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.payload__modal-container--enterDone {
|
|
201
|
+
overflow: auto;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.payload__modal-item--enter,
|
|
205
|
+
.payload__modal-item--enterDone {
|
|
206
|
+
z-index: var(--z-modal);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
// @import '~payload-user-css'; TODO: re-enable this
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--color-base-0: rgb(255, 255, 255);
|
|
3
|
+
--color-base-50: rgb(245, 245, 245);
|
|
4
|
+
--color-base-100: rgb(235, 235, 235);
|
|
5
|
+
--color-base-150: rgb(221, 221, 221);
|
|
6
|
+
--color-base-200: rgb(208, 208, 208);
|
|
7
|
+
--color-base-250: rgb(195, 195, 195);
|
|
8
|
+
--color-base-300: rgb(181, 181, 181);
|
|
9
|
+
--color-base-350: rgb(168, 168, 168);
|
|
10
|
+
--color-base-400: rgb(154, 154, 154);
|
|
11
|
+
--color-base-450: rgb(141, 141, 141);
|
|
12
|
+
--color-base-500: rgb(128, 128, 128);
|
|
13
|
+
--color-base-550: rgb(114, 114, 114);
|
|
14
|
+
--color-base-600: rgb(101, 101, 101);
|
|
15
|
+
--color-base-650: rgb(87, 87, 87);
|
|
16
|
+
--color-base-700: rgb(74, 74, 74);
|
|
17
|
+
--color-base-750: rgb(60, 60, 60);
|
|
18
|
+
--color-base-800: rgb(47, 47, 47);
|
|
19
|
+
--color-base-850: rgb(34, 34, 34);
|
|
20
|
+
--color-base-900: rgb(20, 20, 20);
|
|
21
|
+
--color-base-950: rgb(7, 7, 7);
|
|
22
|
+
--color-base-1000: rgb(0, 0, 0);
|
|
23
|
+
|
|
24
|
+
--color-success-50: rgb(247, 255, 251);
|
|
25
|
+
--color-success-100: rgb(240, 255, 247);
|
|
26
|
+
--color-success-150: rgb(232, 255, 243);
|
|
27
|
+
--color-success-200: rgb(224, 255, 239);
|
|
28
|
+
--color-success-250: rgb(217, 255, 235);
|
|
29
|
+
--color-success-300: rgb(209, 255, 230);
|
|
30
|
+
--color-success-350: rgb(201, 255, 226);
|
|
31
|
+
--color-success-400: rgb(193, 255, 222);
|
|
32
|
+
--color-success-450: rgb(186, 255, 218);
|
|
33
|
+
--color-success-500: rgb(178, 255, 214);
|
|
34
|
+
--color-success-550: rgb(160, 230, 193);
|
|
35
|
+
--color-success-600: rgb(142, 204, 171);
|
|
36
|
+
--color-success-650: rgb(125, 179, 150);
|
|
37
|
+
--color-success-700: rgb(107, 153, 128);
|
|
38
|
+
--color-success-750: rgb(89, 128, 107);
|
|
39
|
+
--color-success-800: rgb(71, 102, 86);
|
|
40
|
+
--color-success-850: rgb(53, 77, 64);
|
|
41
|
+
--color-success-900: rgb(36, 51, 43);
|
|
42
|
+
--color-success-950: rgb(18, 25, 21);
|
|
43
|
+
|
|
44
|
+
--color-warning-50: rgb(255, 255, 246);
|
|
45
|
+
--color-warning-100: rgb(255, 255, 237);
|
|
46
|
+
--color-warning-150: rgb(254, 255, 228);
|
|
47
|
+
--color-warning-200: rgb(254, 255, 219);
|
|
48
|
+
--color-warning-250: rgb(254, 255, 210);
|
|
49
|
+
--color-warning-300: rgb(254, 255, 200);
|
|
50
|
+
--color-warning-350: rgb(254, 255, 191);
|
|
51
|
+
--color-warning-400: rgb(253, 255, 182);
|
|
52
|
+
--color-warning-450: rgb(253, 255, 173);
|
|
53
|
+
--color-warning-500: rgb(253, 255, 164);
|
|
54
|
+
--color-warning-550: rgb(228, 230, 148);
|
|
55
|
+
--color-warning-600: rgb(202, 204, 131);
|
|
56
|
+
--color-warning-650: rgb(177, 179, 115);
|
|
57
|
+
--color-warning-700: rgb(152, 153, 98);
|
|
58
|
+
--color-warning-750: rgb(127, 128, 82);
|
|
59
|
+
--color-warning-800: rgb(101, 102, 66);
|
|
60
|
+
--color-warning-850: rgb(76, 77, 49);
|
|
61
|
+
--color-warning-900: rgb(51, 51, 33);
|
|
62
|
+
--color-warning-950: rgb(25, 25, 16);
|
|
63
|
+
|
|
64
|
+
--color-error-50: rgb(255, 241, 241);
|
|
65
|
+
--color-error-100: rgb(255, 226, 228);
|
|
66
|
+
--color-error-150: rgb(255, 212, 214);
|
|
67
|
+
--color-error-200: rgb(255, 197, 200);
|
|
68
|
+
--color-error-250: rgb(255, 183, 187);
|
|
69
|
+
--color-error-300: rgb(255, 169, 173);
|
|
70
|
+
--color-error-350: rgb(255, 154, 159);
|
|
71
|
+
--color-error-400: rgb(255, 140, 145);
|
|
72
|
+
--color-error-450: rgb(255, 125, 132);
|
|
73
|
+
--color-error-500: rgb(255, 111, 118);
|
|
74
|
+
--color-error-550: rgb(230, 100, 106);
|
|
75
|
+
--color-error-600: rgb(204, 89, 94);
|
|
76
|
+
--color-error-650: rgb(179, 78, 83);
|
|
77
|
+
--color-error-700: rgb(153, 67, 71);
|
|
78
|
+
--color-error-750: rgb(128, 56, 59);
|
|
79
|
+
--color-error-800: rgb(102, 44, 47);
|
|
80
|
+
--color-error-850: rgb(77, 33, 35);
|
|
81
|
+
--color-error-900: rgb(51, 22, 24);
|
|
82
|
+
--color-error-950: rgb(25, 11, 12);
|
|
83
|
+
|
|
84
|
+
--color-blue-50: rgb(230, 247, 253);
|
|
85
|
+
--color-blue-100: rgb(204, 238, 252);
|
|
86
|
+
--color-blue-150: rgb(179, 230, 250);
|
|
87
|
+
--color-blue-200: rgb(153, 221, 249);
|
|
88
|
+
--color-blue-250: rgb(128, 213, 247);
|
|
89
|
+
--color-blue-300: rgb(102, 204, 245);
|
|
90
|
+
--color-blue-350: rgb(77, 196, 244);
|
|
91
|
+
--color-blue-400: rgb(51, 187, 242);
|
|
92
|
+
--color-blue-450: rgb(25, 179, 241);
|
|
93
|
+
--color-blue-500: rgb(0, 170, 239);
|
|
94
|
+
--color-blue-550: rgb(0, 153, 215);
|
|
95
|
+
--color-blue-600: rgb(0, 136, 191);
|
|
96
|
+
--color-blue-650: rgb(0, 119, 167);
|
|
97
|
+
--color-blue-700: rgb(0, 102, 143);
|
|
98
|
+
--color-blue-750: rgb(0, 85, 120);
|
|
99
|
+
--color-blue-800: rgb(0, 68, 96);
|
|
100
|
+
--color-blue-850: rgb(0, 51, 72);
|
|
101
|
+
--color-blue-900: rgb(0, 34, 48);
|
|
102
|
+
--color-blue-950: rgb(0, 17, 24);
|
|
103
|
+
|
|
104
|
+
--theme-border-color: var(--theme-elevation-150);
|
|
105
|
+
|
|
106
|
+
--theme-success-50: var(--color-success-50);
|
|
107
|
+
--theme-success-100: var(--color-success-100);
|
|
108
|
+
--theme-success-150: var(--color-success-150);
|
|
109
|
+
--theme-success-200: var(--color-success-200);
|
|
110
|
+
--theme-success-250: var(--color-success-250);
|
|
111
|
+
--theme-success-300: var(--color-success-300);
|
|
112
|
+
--theme-success-350: var(--color-success-350);
|
|
113
|
+
--theme-success-400: var(--color-success-400);
|
|
114
|
+
--theme-success-450: var(--color-success-450);
|
|
115
|
+
--theme-success-500: var(--color-success-500);
|
|
116
|
+
--theme-success-550: var(--color-success-550);
|
|
117
|
+
--theme-success-600: var(--color-success-600);
|
|
118
|
+
--theme-success-650: var(--color-success-650);
|
|
119
|
+
--theme-success-700: var(--color-success-700);
|
|
120
|
+
--theme-success-750: var(--color-success-750);
|
|
121
|
+
--theme-success-800: var(--color-success-800);
|
|
122
|
+
--theme-success-850: var(--color-success-850);
|
|
123
|
+
--theme-success-900: var(--color-success-900);
|
|
124
|
+
--theme-success-950: var(--color-success-950);
|
|
125
|
+
|
|
126
|
+
--theme-warning-50: var(--color-warning-50);
|
|
127
|
+
--theme-warning-100: var(--color-warning-100);
|
|
128
|
+
--theme-warning-150: var(--color-warning-150);
|
|
129
|
+
--theme-warning-200: var(--color-warning-200);
|
|
130
|
+
--theme-warning-250: var(--color-warning-250);
|
|
131
|
+
--theme-warning-300: var(--color-warning-300);
|
|
132
|
+
--theme-warning-350: var(--color-warning-350);
|
|
133
|
+
--theme-warning-400: var(--color-warning-400);
|
|
134
|
+
--theme-warning-450: var(--color-warning-450);
|
|
135
|
+
--theme-warning-500: var(--color-warning-500);
|
|
136
|
+
--theme-warning-550: var(--color-warning-550);
|
|
137
|
+
--theme-warning-600: var(--color-warning-600);
|
|
138
|
+
--theme-warning-650: var(--color-warning-650);
|
|
139
|
+
--theme-warning-700: var(--color-warning-700);
|
|
140
|
+
--theme-warning-750: var(--color-warning-750);
|
|
141
|
+
--theme-warning-800: var(--color-warning-800);
|
|
142
|
+
--theme-warning-850: var(--color-warning-850);
|
|
143
|
+
--theme-warning-900: var(--color-warning-900);
|
|
144
|
+
--theme-warning-950: var(--color-warning-950);
|
|
145
|
+
|
|
146
|
+
--theme-error-50: var(--color-error-50);
|
|
147
|
+
--theme-error-100: var(--color-error-100);
|
|
148
|
+
--theme-error-150: var(--color-error-150);
|
|
149
|
+
--theme-error-200: var(--color-error-200);
|
|
150
|
+
--theme-error-250: var(--color-error-250);
|
|
151
|
+
--theme-error-300: var(--color-error-300);
|
|
152
|
+
--theme-error-350: var(--color-error-350);
|
|
153
|
+
--theme-error-400: var(--color-error-400);
|
|
154
|
+
--theme-error-450: var(--color-error-450);
|
|
155
|
+
--theme-error-500: var(--color-error-500);
|
|
156
|
+
--theme-error-550: var(--color-error-550);
|
|
157
|
+
--theme-error-600: var(--color-error-600);
|
|
158
|
+
--theme-error-650: var(--color-error-650);
|
|
159
|
+
--theme-error-700: var(--color-error-700);
|
|
160
|
+
--theme-error-750: var(--color-error-750);
|
|
161
|
+
--theme-error-800: var(--color-error-800);
|
|
162
|
+
--theme-error-850: var(--color-error-850);
|
|
163
|
+
--theme-error-900: var(--color-error-900);
|
|
164
|
+
--theme-error-950: var(--color-error-950);
|
|
165
|
+
|
|
166
|
+
--theme-elevation-0: var(--color-base-0);
|
|
167
|
+
--theme-elevation-50: var(--color-base-50);
|
|
168
|
+
--theme-elevation-100: var(--color-base-100);
|
|
169
|
+
--theme-elevation-150: var(--color-base-150);
|
|
170
|
+
--theme-elevation-200: var(--color-base-200);
|
|
171
|
+
--theme-elevation-250: var(--color-base-250);
|
|
172
|
+
--theme-elevation-300: var(--color-base-300);
|
|
173
|
+
--theme-elevation-350: var(--color-base-350);
|
|
174
|
+
--theme-elevation-400: var(--color-base-400);
|
|
175
|
+
--theme-elevation-450: var(--color-base-450);
|
|
176
|
+
--theme-elevation-500: var(--color-base-500);
|
|
177
|
+
--theme-elevation-550: var(--color-base-550);
|
|
178
|
+
--theme-elevation-600: var(--color-base-600);
|
|
179
|
+
--theme-elevation-650: var(--color-base-650);
|
|
180
|
+
--theme-elevation-700: var(--color-base-700);
|
|
181
|
+
--theme-elevation-750: var(--color-base-750);
|
|
182
|
+
--theme-elevation-800: var(--color-base-800);
|
|
183
|
+
--theme-elevation-850: var(--color-base-850);
|
|
184
|
+
--theme-elevation-900: var(--color-base-900);
|
|
185
|
+
--theme-elevation-950: var(--color-base-950);
|
|
186
|
+
--theme-elevation-1000: var(--color-base-1000);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
html[data-theme='dark'] {
|
|
190
|
+
--theme-border-color: var(--theme-elevation-150);
|
|
191
|
+
|
|
192
|
+
--theme-elevation-0: var(--color-base-900);
|
|
193
|
+
--theme-elevation-50: var(--color-base-850);
|
|
194
|
+
--theme-elevation-100: var(--color-base-800);
|
|
195
|
+
--theme-elevation-150: var(--color-base-750);
|
|
196
|
+
--theme-elevation-200: var(--color-base-700);
|
|
197
|
+
--theme-elevation-250: var(--color-base-650);
|
|
198
|
+
--theme-elevation-300: var(--color-base-600);
|
|
199
|
+
--theme-elevation-350: var(--color-base-550);
|
|
200
|
+
--theme-elevation-400: var(--color-base-450);
|
|
201
|
+
--theme-elevation-450: var(--color-base-400);
|
|
202
|
+
--theme-elevation-550: var(--color-base-350);
|
|
203
|
+
--theme-elevation-600: var(--color-base-300);
|
|
204
|
+
--theme-elevation-650: var(--color-base-250);
|
|
205
|
+
--theme-elevation-700: var(--color-base-200);
|
|
206
|
+
--theme-elevation-750: var(--color-base-150);
|
|
207
|
+
--theme-elevation-800: var(--color-base-100);
|
|
208
|
+
--theme-elevation-850: var(--color-base-50);
|
|
209
|
+
--theme-elevation-900: var(--color-base-0);
|
|
210
|
+
--theme-elevation-950: var(--color-base-0);
|
|
211
|
+
--theme-elevation-1000: var(--color-base-0);
|
|
212
|
+
|
|
213
|
+
--theme-success-50: var(--color-success-950);
|
|
214
|
+
--theme-success-100: var(--color-success-900);
|
|
215
|
+
--theme-success-150: var(--color-success-850);
|
|
216
|
+
--theme-success-200: var(--color-success-800);
|
|
217
|
+
--theme-success-250: var(--color-success-750);
|
|
218
|
+
--theme-success-300: var(--color-success-700);
|
|
219
|
+
--theme-success-350: var(--color-success-650);
|
|
220
|
+
--theme-success-400: var(--color-success-600);
|
|
221
|
+
--theme-success-450: var(--color-success-550);
|
|
222
|
+
--theme-success-550: var(--color-success-450);
|
|
223
|
+
--theme-success-600: var(--color-success-400);
|
|
224
|
+
--theme-success-650: var(--color-success-350);
|
|
225
|
+
--theme-success-700: var(--color-success-300);
|
|
226
|
+
--theme-success-750: var(--color-success-250);
|
|
227
|
+
--theme-success-800: var(--color-success-200);
|
|
228
|
+
--theme-success-850: var(--color-success-150);
|
|
229
|
+
--theme-success-900: var(--color-success-100);
|
|
230
|
+
--theme-success-950: var(--color-success-50);
|
|
231
|
+
|
|
232
|
+
--theme-warning-50: var(--color-warning-950);
|
|
233
|
+
--theme-warning-100: var(--color-warning-900);
|
|
234
|
+
--theme-warning-150: var(--color-warning-850);
|
|
235
|
+
--theme-warning-200: var(--color-warning-800);
|
|
236
|
+
--theme-warning-250: var(--color-warning-750);
|
|
237
|
+
--theme-warning-300: var(--color-warning-700);
|
|
238
|
+
--theme-warning-350: var(--color-warning-650);
|
|
239
|
+
--theme-warning-400: var(--color-warning-600);
|
|
240
|
+
--theme-warning-450: var(--color-warning-550);
|
|
241
|
+
--theme-warning-550: var(--color-warning-450);
|
|
242
|
+
--theme-warning-600: var(--color-warning-400);
|
|
243
|
+
--theme-warning-650: var(--color-warning-350);
|
|
244
|
+
--theme-warning-700: var(--color-warning-300);
|
|
245
|
+
--theme-warning-750: var(--color-warning-250);
|
|
246
|
+
--theme-warning-800: var(--color-warning-200);
|
|
247
|
+
--theme-warning-850: var(--color-warning-150);
|
|
248
|
+
--theme-warning-900: var(--color-warning-100);
|
|
249
|
+
--theme-warning-950: var(--color-warning-50);
|
|
250
|
+
|
|
251
|
+
--theme-error-50: var(--color-error-950);
|
|
252
|
+
--theme-error-100: var(--color-error-900);
|
|
253
|
+
--theme-error-150: var(--color-error-850);
|
|
254
|
+
--theme-error-200: var(--color-error-800);
|
|
255
|
+
--theme-error-250: var(--color-error-750);
|
|
256
|
+
--theme-error-300: var(--color-error-700);
|
|
257
|
+
--theme-error-350: var(--color-error-650);
|
|
258
|
+
--theme-error-400: var(--color-error-600);
|
|
259
|
+
--theme-error-450: var(--color-error-550);
|
|
260
|
+
--theme-error-550: var(--color-error-450);
|
|
261
|
+
--theme-error-600: var(--color-error-400);
|
|
262
|
+
--theme-error-650: var(--color-error-350);
|
|
263
|
+
--theme-error-700: var(--color-error-300);
|
|
264
|
+
--theme-error-750: var(--color-error-250);
|
|
265
|
+
--theme-error-800: var(--color-error-200);
|
|
266
|
+
--theme-error-850: var(--color-error-150);
|
|
267
|
+
--theme-error-900: var(--color-error-100);
|
|
268
|
+
--theme-error-950: var(--color-error-50);
|
|
269
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Used as a placeholder for when the Payload app does not have custom CSS */
|