art-bd-ui 1.0.44 → 1.0.45
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 +58 -0
- package/dist/cjs/_virtual/get.js +11 -0
- package/dist/cjs/_virtual/index.js +3 -7
- package/dist/cjs/_virtual/index2.js +7 -3
- package/dist/cjs/_virtual/index7.js +2 -8
- package/dist/cjs/_virtual/index8.js +2 -8
- package/dist/cjs/_virtual/isPlainObject.js +11 -0
- package/dist/cjs/_virtual/lodash.js +0 -5
- package/dist/cjs/_virtual/map.js +4 -4
- package/dist/cjs/_virtual/pick.js +4 -4
- package/dist/cjs/components/buttons/button/button.js +5 -3
- package/dist/cjs/components/buttons/button-group/button-group.js +3 -2
- package/dist/cjs/components/buttons/icon-button/icon-button.js +2 -2
- package/dist/cjs/components/buttons/toggle/toggle.js +2 -1
- package/dist/cjs/components/buttons/toggle-group/toggle-group.js +3 -2
- package/dist/cjs/components/forms/checkbox/checkbox.js +3 -2
- package/dist/cjs/components/forms/country-select/country-select.js +44 -0
- package/dist/cjs/components/forms/currency-amount-input/currency-amount-input.js +97 -0
- package/dist/cjs/components/forms/currency-select/currency-select.js +111 -0
- package/dist/cjs/components/forms/dropzone/dropzone.js +3 -2
- package/dist/cjs/components/forms/dropzone/file-preview.js +4 -3
- package/dist/cjs/components/forms/dynamic-form/capabilities/condition-operator-capabilities.js +21 -0
- package/dist/cjs/components/forms/dynamic-form/capabilities/field-type-capabilities.js +118 -0
- package/dist/cjs/components/forms/dynamic-form/conditions/condition-operator-registry.js +98 -0
- package/dist/cjs/components/forms/dynamic-form/conditions/evaluate-field-condition.js +66 -0
- package/dist/cjs/components/forms/dynamic-form/conditions/validate-field-condition.js +61 -0
- package/dist/cjs/components/forms/dynamic-form/dynamic-form-field.js +20 -0
- package/dist/cjs/components/forms/dynamic-form/dynamic-form.js +61 -0
- package/dist/cjs/components/forms/dynamic-form/field-renderer-registry.js +48 -0
- package/dist/cjs/components/forms/dynamic-form/field-renderer-resolver.js +13 -0
- package/dist/cjs/components/forms/dynamic-form/is-plain-record.js +9 -0
- package/dist/cjs/components/forms/dynamic-form/layout/dynamic-form-field-renderer.js +116 -0
- package/dist/cjs/components/forms/dynamic-form/layout/dynamic-form-grid-layout-renderer.js +37 -0
- package/dist/cjs/components/forms/dynamic-form/layout/dynamic-form-layout-renderer.js +12 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/checkbox-field-renderer.js +20 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/country-select-field-renderer.js +29 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/currency-select-field-renderer.js +30 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/date-field-renderer.js +15 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/date-range-field-renderer.js +19 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/date-time-field-renderer.js +15 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/date-value-utils.js +64 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/file-field-renderer.js +55 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/hidden-field-renderer.js +6 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/month-field-renderer.js +21 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/multi-select-field-renderer.js +24 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/number-field-renderer.js +17 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/phone-input-field-renderer.js +33 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/rich-text-field-renderer.js +23 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/select-field-renderer.js +26 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/tags-input-field-renderer.js +15 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/text-field-renderer.js +23 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/textarea-field-renderer.js +22 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/time-field-renderer.js +16 -0
- package/dist/cjs/components/forms/dynamic-form/renderers/year-field-renderer.js +18 -0
- package/dist/cjs/components/forms/dynamic-form/types/field-condition.js +27 -0
- package/dist/cjs/components/forms/dynamic-form/utils.js +48 -0
- package/dist/cjs/components/forms/dynamic-form-builder/condition/condition-builder-adapter.js +148 -0
- package/dist/cjs/components/forms/dynamic-form-builder/condition/dynamic-form-field-condition-editor.js +78 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder-field-palette.js +18 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder-inspector-sheet.js +23 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder-json-panel.js +36 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder-layout-canvas.js +54 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder-layout-inspector.js +18 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder-preview.js +86 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder-selection.js +5 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder-toolbar.js +14 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder.js +69 -0
- package/dist/cjs/components/forms/dynamic-form-builder/dynamic-form-builder.utils.js +227 -0
- package/dist/cjs/components/forms/dynamic-form-builder/inspectors/field-advanced-tab.js +18 -0
- package/dist/cjs/components/forms/dynamic-form-builder/inspectors/field-conditions-tab.js +9 -0
- package/dist/cjs/components/forms/dynamic-form-builder/inspectors/field-general-tab.js +38 -0
- package/dist/cjs/components/forms/dynamic-form-builder/inspectors/field-inspector.js +21 -0
- package/dist/cjs/components/forms/dynamic-form-builder/inspectors/field-options-tab.js +16 -0
- package/dist/cjs/components/forms/dynamic-form-builder/inspectors/form-inspector.js +35 -0
- package/dist/cjs/components/forms/dynamic-form-builder/inspectors/shared.js +31 -0
- package/dist/cjs/components/forms/dynamic-form-builder/layout/form-layout-utils.js +98 -0
- package/dist/cjs/components/forms/dynamic-form-builder/options/dynamic-form-field-options-editor.js +18 -0
- package/dist/cjs/components/forms/file-upload/file-input.js +84 -0
- package/dist/cjs/components/forms/file-upload/file-token.js +28 -0
- package/dist/cjs/components/forms/file-upload/file-upload.js +64 -35
- package/dist/cjs/components/forms/file-upload/files-input.js +85 -0
- package/dist/cjs/components/forms/file-upload/use-file-selection.js +103 -0
- package/dist/cjs/components/forms/file-upload/utils.js +126 -0
- package/dist/cjs/components/forms/form/form.js +3 -2
- package/dist/cjs/components/forms/input/input-variants.js +15 -0
- package/dist/cjs/components/forms/input/input.js +3 -12
- package/dist/cjs/components/forms/input-group/input-group.js +6 -6
- package/dist/cjs/components/forms/input-number/input-number.js +14 -2
- package/dist/cjs/components/forms/label/label.js +2 -1
- package/dist/cjs/components/forms/masked-input/masked-input.js +47 -0
- package/dist/cjs/components/forms/password-input/password-input.js +42 -0
- package/dist/cjs/components/forms/phone-input/phone-input.js +68 -0
- package/dist/cjs/components/forms/phone-input/phone-input.utils.js +18 -0
- package/dist/cjs/components/forms/radio/radio.js +3 -2
- package/dist/cjs/components/forms/select/select.js +41 -21
- package/dist/cjs/components/forms/switch/switch.js +2 -1
- package/dist/cjs/components/forms/tags-input/components/suggestions.js +50 -0
- package/dist/cjs/components/forms/tags-input/components/tags-input-field.js +102 -0
- package/dist/cjs/components/forms/tags-input/components/tags-list.js +12 -0
- package/dist/cjs/components/forms/tags-input/tags-input.js +124 -0
- package/dist/cjs/components/forms/tags-input/tags-input.utils.js +73 -0
- package/dist/cjs/components/layout/box/box.js +3 -2
- package/dist/cjs/components/layout/grid-layout/components/grid-background.js +13 -0
- package/dist/cjs/components/layout/grid-layout/components/grid-canvas.js +31 -0
- package/dist/cjs/components/layout/grid-layout/components/grid-editor-item.js +67 -0
- package/dist/cjs/components/layout/grid-layout/components/grid-editor.js +274 -0
- package/dist/cjs/components/layout/grid-layout/components/grid-item.js +12 -0
- package/dist/cjs/components/layout/grid-layout/components/grid-placeholder.js +11 -0
- package/dist/cjs/components/layout/grid-layout/core/collision.js +46 -0
- package/dist/cjs/components/layout/grid-layout/core/compact.js +113 -0
- package/dist/cjs/components/layout/grid-layout/core/constraints.js +62 -0
- package/dist/cjs/components/layout/grid-layout/core/geometry.js +298 -0
- package/dist/cjs/components/layout/grid-layout/core/move.js +238 -0
- package/dist/cjs/components/layout/grid-layout/core/normalize.js +102 -0
- package/dist/cjs/components/layout/grid-layout/core/resize.js +92 -0
- package/dist/cjs/components/layout/grid-layout/core/responsive.js +51 -0
- package/dist/cjs/components/layout/grid-layout/core/spatial-index.js +11 -0
- package/dist/cjs/components/layout/grid-layout/core/validation.js +127 -0
- package/dist/cjs/components/layout/grid-layout/hooks/use-container-measurement.js +66 -0
- package/dist/cjs/components/layout/grid-layout/hooks/use-grid-drag.js +26 -0
- package/dist/cjs/components/layout/grid-layout/hooks/use-grid-editor-drag.js +153 -0
- package/dist/cjs/components/layout/grid-layout/hooks/use-grid-editor-state.js +61 -0
- package/dist/cjs/components/layout/grid-layout/hooks/use-grid-keyboard.js +17 -0
- package/dist/cjs/components/layout/grid-layout/types.js +23 -0
- package/dist/cjs/components/media/avatar/avatar.js +4 -3
- package/dist/cjs/components/media/country-flag/country-flag.js +41 -0
- package/dist/cjs/components/media/icon/icon.js +2 -1
- package/dist/cjs/components/popovers/dialog/dialog.js +9 -8
- package/dist/cjs/components/popovers/overlay-manager/dynamic-dialog.js +89 -0
- package/dist/cjs/components/popovers/overlay-manager/overlay-manager.js +34 -0
- package/dist/cjs/components/popovers/overlay-manager/store.js +87 -0
- package/dist/cjs/components/popovers/overlay-manager/types.js +7 -0
- package/dist/cjs/components/popovers/popover/popover.js +5 -4
- package/dist/cjs/components/popovers/sheet/sheet.js +9 -8
- package/dist/cjs/components/popovers/toast/toast.js +8 -7
- package/dist/cjs/components/popovers/tooltip/tooltip.js +5 -4
- package/dist/cjs/components/quiz/builder/components/question-card/question-card.js +68 -7
- package/dist/cjs/components/quiz/builder/components/question-prompt-editor/question-prompt-editor.js +1 -1
- package/dist/cjs/components/quiz/builder/components/questions-sidebar/questions-sidebar.js +25 -19
- package/dist/cjs/components/quiz/builder/editors/choice-task-editor.js +22 -18
- package/dist/cjs/components/quiz/builder/editors/sequence-task-editor.js +16 -15
- package/dist/cjs/components/quiz/runner/question/question.js +3 -2
- package/dist/cjs/components/quiz/runner/viewers/match-pairs-viewer/match-pairs-viewer.js +15 -16
- package/dist/cjs/components/quiz/runner/viewers/sequence-viewer/sequence-viewer.js +21 -21
- package/dist/cjs/components/schema/types.js +5 -0
- package/dist/cjs/components/schema/utils.js +11 -0
- package/dist/cjs/components/selectors/multi-field-picker/components/fields-list.js +2 -2
- package/dist/cjs/components/selectors/multi-field-picker/multi-field-picker.js +3 -0
- package/dist/cjs/components/selectors/multi-field-picker/prisma-utils.js +1 -1
- package/dist/cjs/components/selectors/multi-field-picker/utils.js +1 -1
- package/dist/cjs/components/selectors/multiselect/multiselect.js +12 -0
- package/dist/cjs/components/selectors/single-select/single-select.js +12 -0
- package/dist/cjs/components/typography/heading/heading.js +3 -2
- package/dist/cjs/components/typography/text/text.js +3 -2
- package/dist/cjs/components/ui/accordion/accordion.js +1 -1
- package/dist/cjs/components/ui/badge/badge.js +3 -2
- package/dist/cjs/components/ui/breadcrumb/breadcrumb.js +3 -2
- package/dist/cjs/components/ui/code-editor/Panel.js +3 -0
- package/dist/cjs/components/ui/condition-builder/components/condition-field-editor.js +55 -0
- package/dist/cjs/components/ui/condition-builder/components/group-editor.js +81 -28
- package/dist/cjs/components/ui/condition-builder/condition-builder.js +8 -64
- package/dist/cjs/components/ui/condition-builder/condition-defaults.js +25 -0
- package/dist/cjs/components/ui/condition-builder/condition-operators.js +21 -0
- package/dist/cjs/components/ui/condition-builder/condition-selectors.js +28 -0
- package/dist/cjs/components/ui/condition-builder/operators/default-condition-operators.js +161 -0
- package/dist/cjs/components/ui/condition-builder/operators/get-condition-definitions-for-field.js +17 -0
- package/dist/cjs/components/ui/condition-builder/value-editors/condition-value-editor-registry.js +60 -0
- package/dist/cjs/components/ui/context-menu/context-menu.js +1 -1
- package/dist/cjs/components/ui/course-composer/components/course-composer-lesson-content-editor.js +1 -1
- package/dist/cjs/components/ui/course-composer/components/empty-chapter-droppable.js +6 -5
- package/dist/cjs/components/ui/course-composer/components/sortable-tree-row.js +48 -24
- package/dist/cjs/components/ui/course-composer/components/sortable-tree.js +24 -16
- package/dist/cjs/components/ui/course-composer/components/sortable-tree.utils.js +72 -0
- package/dist/cjs/components/ui/data-list/data-list.js +34 -16
- package/dist/cjs/components/ui/data-table/components/cell.js +1 -1
- package/dist/cjs/components/ui/data-table/components/column-group.js +1 -1
- package/dist/cjs/components/ui/data-table/components/table-body.js +47 -20
- package/dist/cjs/components/ui/data-table/components/table-head.js +27 -17
- package/dist/cjs/components/ui/data-table/data-table.js +30 -10
- package/dist/cjs/components/ui/data-table/hooks/use-sticky-columns.js +96 -0
- package/dist/cjs/components/ui/data-table/hooks/use-table-pagination.js +70 -0
- package/dist/cjs/components/ui/data-table/hooks/use-table-sort.js +25 -0
- package/dist/cjs/components/ui/data-table/renderer-context.js +58 -0
- package/dist/cjs/components/ui/data-table/utils.js +1 -1
- package/dist/cjs/components/ui/date-pickers/date-input/date-input.js +3 -14
- package/dist/cjs/components/ui/dropdown-menu/dropdown-menu.js +17 -16
- package/dist/cjs/components/ui/item/item.js +3 -2
- package/dist/cjs/components/ui/link/link.js +3 -2
- package/dist/cjs/components/ui/menubar/menubar.js +1 -1
- package/dist/cjs/components/ui/navigation-menu/navigation-menu.js +1 -1
- package/dist/cjs/components/ui/pdf-content/hooks/use-page-layout.js +3 -8
- package/dist/cjs/components/ui/pdf-content/pdf-content.js +42 -80
- package/dist/cjs/components/ui/pdf-content/pdf-page.js +6 -2
- package/dist/cjs/components/ui/pdf-content/pdf-virtual-row.js +14 -0
- package/dist/cjs/components/ui/pdf-content/utils.js +46 -0
- package/dist/cjs/components/ui/poll-builder/poll-builder.js +18 -26
- package/dist/cjs/components/ui/progress/progress.js +2 -1
- package/dist/cjs/components/ui/query-composer/query-composer.js +8 -7
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/bg-shadow-mini-popover.js +32 -6
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/border-mini-popover.js +176 -67
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/dimensions-dropdown.js +84 -44
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/glyphs.js +24 -56
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/shared.js +0 -5
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/spacing-popover.js +240 -68
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/style-popover.js +0 -8
- package/dist/cjs/components/ui/rich-editor/bubble-menus/floating-bubble-controls.js +1 -1
- package/dist/cjs/components/ui/rich-editor/bubble-menus/layout-bubble-menu.js +326 -154
- package/dist/cjs/components/ui/rich-editor/bubble-menus/shared.js +0 -2
- package/dist/cjs/components/ui/rich-editor/extensions/box/utils.js +46 -32
- package/dist/cjs/components/ui/rich-editor/extensions/code-block/utils.js +1 -1
- package/dist/cjs/components/ui/rich-editor/extensions/image/config.js +38 -0
- package/dist/cjs/components/ui/rich-editor/extensions/image/extension.js +9 -39
- package/dist/cjs/components/ui/rich-editor/extensions/image/image-node-view.js +7 -7
- package/dist/cjs/components/ui/rich-editor/extensions/layout/drag-state.js +16 -0
- package/dist/cjs/components/ui/rich-editor/extensions/layout/editor.js +27 -0
- package/dist/cjs/components/ui/rich-editor/extensions/layout/extension.js +49 -23
- package/dist/cjs/components/ui/rich-editor/extensions/layout/interactions.js +8 -45
- package/dist/cjs/components/ui/rich-editor/extensions/layout/node-view.js +60 -13
- package/dist/cjs/components/ui/rich-editor/extensions/node-interactions/node-selection-frame.js +2 -2
- package/dist/cjs/components/ui/rich-editor/extensions/slash/slash-suggestion-renderer.js +0 -1
- package/dist/cjs/components/ui/rich-editor/extensions.js +0 -2
- package/dist/cjs/components/ui/rich-editor/rich-content-renderer.js +7 -4
- package/dist/cjs/components/ui/rich-editor/rich-editor.js +64 -1
- package/dist/cjs/components/ui/rich-editor/toolbar.js +2 -0
- package/dist/cjs/components/ui/schedule-editor/schedule-editor.js +68 -0
- package/dist/cjs/components/ui/schedule-editor/schedule-editor.layout.js +63 -0
- package/dist/cjs/components/ui/schedule-editor/schedule-editor.segments.js +174 -0
- package/dist/cjs/components/ui/schedule-editor/schedule-editor.utils.js +176 -0
- package/dist/cjs/components/ui/schedule-editor/schedule-row.js +147 -0
- package/dist/cjs/components/ui/schedule-editor/schedule-timeline-header.js +11 -0
- package/dist/cjs/components/ui/schedule-editor/schedule-timeline-slider.js +42 -0
- package/dist/cjs/components/ui/schedule-editor/schedule-timeline-slider.utils.js +7 -0
- package/dist/cjs/components/ui/schedule-editor/schedule-timeline.js +78 -0
- package/dist/cjs/components/ui/schedule-editor/selected-range-popover.js +36 -0
- package/dist/cjs/components/ui/schema-condition-builder/prisma-utils.js +155 -0
- package/dist/cjs/components/ui/schema-condition-builder/schema-condition-builder.js +92 -0
- package/dist/cjs/components/ui/schema-condition-builder/schema-utils.js +37 -0
- package/dist/cjs/components/ui/sidebar/sidebar.js +7 -6
- package/dist/cjs/components/ui/slider/slider.js +8 -3
- package/dist/cjs/components/ui/syntax-input/lowlight-syntax-input.js +119 -0
- package/dist/cjs/components/ui/syntax-input/syntax-input.js +461 -0
- package/dist/cjs/components/ui/tabs/tabs.js +1 -1
- package/dist/cjs/components/utility/color-indicator/color-indicator.js +26 -0
- package/dist/cjs/components/utility/filters-list/adapters/multi-select.js +42 -0
- package/dist/cjs/components/utility/filters-list/adapters/single-select.js +27 -0
- package/dist/cjs/components/utility/filters-list/adapters/use-filter-source.js +11 -0
- package/dist/cjs/components/utility/filters-list/context.js +24 -0
- package/dist/cjs/components/utility/filters-list/filter-item.js +60 -0
- package/dist/cjs/components/utility/filters-list/filters-list.js +35 -0
- package/dist/cjs/components/utility/filters-list/utils.js +141 -0
- package/dist/cjs/components/utility/input-container/input-container.js +31 -2
- package/dist/cjs/components/utility/resizable/resizable.js +150 -0
- package/dist/cjs/components/utility/scroll-area/scroll-area.js +1 -1
- package/dist/cjs/components/utility/separator/separator.js +3 -2
- package/dist/cjs/components/utility/style-selectors/alignment-selector.js +69 -0
- package/dist/cjs/components/utility/style-selectors/border-style-selector.js +19 -0
- package/dist/cjs/components/utility/style-selectors/color-input.js +15 -0
- package/dist/cjs/components/utility/style-selectors/dimension-input.js +43 -0
- package/dist/cjs/components/utility/style-selectors/spacing-slider.js +73 -0
- package/dist/cjs/hooks/use-event-callback.js +16 -0
- package/dist/cjs/hooks/use-external-store-selector.js +190 -0
- package/dist/cjs/hooks/use-isomorphic-layout-effect.js +27 -0
- package/dist/cjs/hooks/use-masked-input.js +103 -0
- package/dist/cjs/hooks/use-phone-input.js +438 -0
- package/dist/cjs/hooks/use-resizable/a11y.js +21 -0
- package/dist/cjs/hooks/use-resizable/callbacks.js +30 -0
- package/dist/cjs/hooks/use-resizable/composed-ref.js +37 -0
- package/dist/cjs/hooks/use-resizable/constants.js +20 -0
- package/dist/cjs/hooks/use-resizable/dom.js +79 -0
- package/dist/cjs/hooks/use-resizable/geometry.js +250 -0
- package/dist/cjs/hooks/use-resizable/hook.js +204 -0
- package/dist/cjs/hooks/use-resizable/keyboard.js +129 -0
- package/dist/cjs/hooks/use-resizable/resize-session.js +280 -0
- package/dist/cjs/hooks/use-resizable/size-state.js +100 -0
- package/dist/cjs/hooks/use-resizable/style.js +43 -0
- package/dist/cjs/hooks/use-resize-observer.js +33 -10
- package/dist/cjs/hooks/use-shallow-stable.js +28 -0
- package/dist/cjs/index.js +351 -16
- package/dist/cjs/lib/countries.js +38 -0
- package/dist/cjs/lib/currencies.js +103 -0
- package/dist/cjs/node_modules/@date-fns/tz/date/index.js +2 -20
- package/dist/cjs/node_modules/@date-fns/tz/date/mini.js +297 -54
- package/dist/cjs/node_modules/@date-fns/tz/tzName/index.js +41 -0
- package/dist/cjs/node_modules/@date-fns/tz/tzOffset/index.js +25 -12
- package/dist/cjs/node_modules/@dnd-kit/abstract/index.js +357 -271
- package/dist/cjs/node_modules/@dnd-kit/abstract/modifiers.js +19 -1
- package/dist/cjs/node_modules/@dnd-kit/collision/dist/index.js +24 -0
- package/dist/cjs/node_modules/@dnd-kit/dom/index.js +196 -131
- package/dist/cjs/node_modules/@dnd-kit/dom/modifiers.js +79 -0
- package/dist/cjs/node_modules/@dnd-kit/dom/sortable.js +121 -67
- package/dist/cjs/node_modules/@dnd-kit/dom/utilities.js +116 -79
- package/dist/cjs/node_modules/@dnd-kit/helpers/dist/index.js +17 -11
- package/dist/cjs/node_modules/@dnd-kit/react/hooks.js +5 -1
- package/dist/cjs/node_modules/@dnd-kit/react/index.js +213 -2
- package/dist/cjs/node_modules/@dnd-kit/react/sortable.js +21 -7
- package/dist/cjs/node_modules/@hookform/resolvers/dist/resolvers.js +8 -0
- package/dist/cjs/node_modules/@hookform/resolvers/zod/dist/zod.js +8 -0
- package/dist/cjs/node_modules/@preact/signals-core/dist/signals-core.js +7 -7
- package/dist/cjs/node_modules/@radix-ui/primitive/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-accordion/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-arrow/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-aspect-ratio/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-avatar/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-checkbox/dist/index.js +13 -13
- package/dist/cjs/node_modules/@radix-ui/react-collapsible/dist/index.js +10 -6
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/dist/index.js +2 -2
- package/dist/cjs/node_modules/@radix-ui/react-dialog/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot/dist/index.js +3 -4
- package/dist/cjs/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-dropdown-menu/dist/index.js +36 -34
- package/dist/cjs/node_modules/@radix-ui/react-focus-scope/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-label/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-menu/dist/index.js +62 -62
- package/dist/cjs/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-slot/dist/index.js +3 -4
- package/dist/cjs/node_modules/@radix-ui/react-menubar/dist/index.js +3 -3
- package/dist/cjs/node_modules/@radix-ui/react-navigation-menu/dist/index.js +4 -4
- package/dist/cjs/node_modules/@radix-ui/react-popover/dist/index.js +30 -30
- package/dist/cjs/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-slot/dist/index.js +3 -4
- package/dist/cjs/node_modules/@radix-ui/react-popper/dist/index.js +14 -9
- package/dist/cjs/node_modules/@radix-ui/react-portal/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-presence/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-progress/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-radio-group/dist/index.js +25 -25
- package/dist/cjs/node_modules/@radix-ui/react-roving-focus/dist/index.js +2 -2
- package/dist/cjs/node_modules/@radix-ui/react-scroll-area/dist/index.js +23 -23
- package/dist/cjs/node_modules/@radix-ui/react-select/dist/index.js +77 -75
- package/dist/cjs/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-slot/dist/index.js +3 -4
- package/dist/cjs/node_modules/@radix-ui/react-slider/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-switch/dist/index.js +8 -8
- package/dist/cjs/node_modules/@radix-ui/react-tabs/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-toast/dist/index.js +36 -41
- package/dist/cjs/node_modules/@radix-ui/react-toggle/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-toggle-group/dist/index.js +6 -6
- package/dist/cjs/node_modules/@radix-ui/react-tooltip/dist/index.js +20 -20
- package/dist/cjs/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-slot/dist/index.js +2 -105
- package/dist/cjs/node_modules/@radix-ui/react-use-is-hydrated/dist/index.js +1 -1
- package/dist/cjs/node_modules/@radix-ui/react-visually-hidden/dist/index.js +1 -1
- package/dist/cjs/node_modules/@tiptap/core/dist/index.js +185 -49
- package/dist/cjs/node_modules/@tiptap/extension-blockquote/dist/index.js +6 -3
- package/dist/cjs/node_modules/@tiptap/extension-bold/dist/index.js +6 -0
- package/dist/cjs/node_modules/@tiptap/extension-bubble-menu/dist/index.js +12 -1
- package/dist/cjs/node_modules/@tiptap/extension-code-block/dist/index.js +2 -2
- package/dist/cjs/node_modules/@tiptap/extension-collaboration/dist/index.js +23 -28
- package/dist/cjs/node_modules/@tiptap/extension-details/dist/index.js +34 -4
- package/dist/cjs/node_modules/@tiptap/extension-drag-handle/dist/index.js +57 -7
- package/dist/cjs/node_modules/@tiptap/extension-emoji/dist/index.js +4242 -1790
- package/dist/cjs/node_modules/@tiptap/extension-floating-menu/dist/index.js +5 -0
- package/dist/cjs/node_modules/@tiptap/extension-italic/dist/index.js +6 -0
- package/dist/cjs/node_modules/@tiptap/extension-list/dist/index.js +5 -3
- package/dist/cjs/node_modules/@tiptap/extension-node-range/dist/index.js +14 -1
- package/dist/cjs/node_modules/@tiptap/extension-paragraph/dist/index.js +7 -3
- package/dist/cjs/node_modules/@tiptap/extension-table/dist/index.js +75 -8
- package/dist/cjs/node_modules/@tiptap/extension-youtube/dist/index.js +2 -0
- package/dist/cjs/node_modules/@tiptap/extensions/dist/index.js +9 -1
- package/dist/cjs/node_modules/@tiptap/react/dist/index.js +44 -28
- package/dist/cjs/node_modules/@tiptap/react/dist/menus/index.js +285 -23
- package/dist/cjs/node_modules/@tiptap/suggestion/dist/index.js +69 -33
- package/dist/cjs/node_modules/@tiptap/y-tiptap/dist/y-tiptap.js +0 -75
- package/dist/cjs/node_modules/attr-accept/dist/es/index.js +1 -1
- package/dist/cjs/node_modules/awesome-phonenumber/index-esm.js +820 -0
- package/dist/cjs/node_modules/countries-list/mjs/index.js +9 -0
- package/dist/cjs/node_modules/date-fns/eachYearOfInterval.js +70 -0
- package/dist/cjs/node_modules/imask/esm/controls/html-contenteditable-mask-element.js +58 -0
- package/dist/cjs/node_modules/imask/esm/controls/html-input-mask-element.js +41 -0
- package/dist/cjs/node_modules/imask/esm/controls/html-mask-element.js +88 -0
- package/dist/cjs/node_modules/imask/esm/controls/input-history.js +40 -0
- package/dist/cjs/node_modules/imask/esm/controls/input.js +354 -0
- package/dist/cjs/node_modules/imask/esm/controls/mask-element.js +53 -0
- package/dist/cjs/node_modules/imask/esm/core/action-details.js +81 -0
- package/dist/cjs/node_modules/imask/esm/core/change-details.js +51 -0
- package/dist/cjs/node_modules/imask/esm/core/continuous-tail-details.js +59 -0
- package/dist/cjs/node_modules/imask/esm/core/holder.js +11 -0
- package/dist/cjs/node_modules/imask/esm/core/utils.js +88 -0
- package/dist/cjs/node_modules/imask/esm/index.js +53 -0
- package/dist/cjs/node_modules/imask/esm/masked/base.js +426 -0
- package/dist/cjs/node_modules/imask/esm/masked/date.js +148 -0
- package/dist/cjs/node_modules/imask/esm/masked/dynamic.js +344 -0
- package/dist/cjs/node_modules/imask/esm/masked/enum.js +105 -0
- package/dist/cjs/node_modules/imask/esm/masked/factory.js +127 -0
- package/dist/cjs/node_modules/imask/esm/masked/function.js +33 -0
- package/dist/cjs/node_modules/imask/esm/masked/number.js +317 -0
- package/dist/cjs/node_modules/imask/esm/masked/pattern/chunk-tail-details.js +162 -0
- package/dist/cjs/node_modules/imask/esm/masked/pattern/cursor.js +135 -0
- package/dist/cjs/node_modules/imask/esm/masked/pattern/fixed-definition.js +155 -0
- package/dist/cjs/node_modules/imask/esm/masked/pattern/input-definition.js +190 -0
- package/dist/cjs/node_modules/imask/esm/masked/pattern.js +467 -0
- package/dist/cjs/node_modules/imask/esm/masked/pipe.js +37 -0
- package/dist/cjs/node_modules/imask/esm/masked/range.js +119 -0
- package/dist/cjs/node_modules/imask/esm/masked/regexp.js +32 -0
- package/dist/cjs/node_modules/imask/esm/masked/repeat.js +136 -0
- package/dist/cjs/node_modules/lodash/_getPrototype.js +20 -0
- package/dist/cjs/node_modules/lodash/isPlainObject.js +78 -0
- package/dist/cjs/node_modules/prop-types/node_modules/react-is/index.js +1 -1
- package/dist/cjs/node_modules/radix-ui/node_modules/@radix-ui/react-separator/dist/index.js +52 -0
- package/dist/cjs/node_modules/radix-ui/node_modules/@radix-ui/react-slot/dist/index.js +125 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/DayPicker.js +162 -49
- package/dist/cjs/node_modules/react-day-picker/dist/esm/UI.js +6 -8
- package/dist/cjs/node_modules/react-day-picker/dist/esm/classes/CalendarDay.js +12 -6
- package/dist/cjs/node_modules/react-day-picker/dist/esm/classes/CalendarMonth.js +6 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/classes/CalendarWeek.js +5 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/classes/DateLib.js +113 -32
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Chevron.js +2 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Day.js +4 -4
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/DayButton.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Dropdown.js +7 -5
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/DropdownNav.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Footer.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Month.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/MonthCaption.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/MonthGrid.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Months.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/MonthsDropdown.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Nav.js +6 -6
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/NextMonthButton.js +2 -4
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Option.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.js +2 -4
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Root.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Select.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Week.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/WeekNumber.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Weekday.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Weekdays.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Weeks.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/YearsDropdown.js +1 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/custom-components.js +0 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/formatters/formatCaption.js +9 -10
- package/dist/cjs/node_modules/react-day-picker/dist/esm/formatters/formatDay.js +7 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.js +6 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.js +11 -5
- package/dist/cjs/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.js +3 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.js +7 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.js +5 -8
- package/dist/cjs/node_modules/react-day-picker/dist/esm/formatters/index.js +2 -4
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/calculateFocusTarget.js +24 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/createGetModifiers.js +97 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/endOfBroadcastWeek.js +7 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getBroadcastWeeksInMonth.js +8 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getClassNamesForModifiers.js +12 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getComponents.js +11 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getDataAttributes.js +11 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getDates.js +27 -8
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getDays.js +8 -5
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.js +5 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getDisplayMonths.js +10 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getFocusableDate.js +19 -4
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getFormatters.js +8 -9
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getInitialMonth.js +18 -14
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getLabels.js +55 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getMonthOptions.js +17 -3
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getMonths.js +17 -10
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getNavMonth.js +9 -23
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getNextFocus.js +21 -6
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getNextMonth.js +13 -6
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getPreviousMonth.js +13 -5
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getStyleForModifiers.js +12 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getWeekdays.js +15 -13
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getWeeks.js +8 -3
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/getYearOptions.js +20 -10
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/startOfBroadcastWeek.js +8 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/helpers/useControlledValue.js +10 -6
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/index.js +4 -6
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelDayButton.js +9 -12
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelGrid.js +9 -10
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelGridcell.js +7 -4
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.js +4 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelNav.js +2 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelNext.js +7 -5
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelPrevious.js +5 -4
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.js +5 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.js +4 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelWeekday.js +5 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.js +4 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/locale/en-US.js +69 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/noonDateLib.js +165 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/selection/useMulti.js +11 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/selection/useRange.js +32 -5
- package/dist/cjs/node_modules/react-day-picker/dist/esm/selection/useSingle.js +11 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/useAnimation.js +15 -7
- package/dist/cjs/node_modules/react-day-picker/dist/esm/useCalendar.js +52 -16
- package/dist/cjs/node_modules/react-day-picker/dist/esm/useDayPicker.js +4 -6
- package/dist/cjs/node_modules/react-day-picker/dist/esm/useFocus.js +21 -2
- package/dist/cjs/node_modules/react-day-picker/dist/esm/useSelection.js +10 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/utils/addToRange.js +14 -12
- package/dist/cjs/node_modules/react-day-picker/dist/esm/utils/convertMatchersToTimeZone.js +63 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.js +6 -16
- package/dist/cjs/node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.js +7 -9
- package/dist/cjs/node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.js +6 -15
- package/dist/cjs/node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.js +7 -4
- package/dist/cjs/node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.js +5 -1
- package/dist/cjs/node_modules/react-day-picker/dist/esm/utils/toTimeZone.js +18 -0
- package/dist/cjs/node_modules/react-day-picker/dist/esm/utils/typeguards.js +19 -6
- package/dist/cjs/node_modules/react-dropzone/dist/es/index.js +1 -1
- package/dist/cjs/node_modules/react-hook-form/dist/index.esm.js +1798 -1
- package/dist/cjs/node_modules/react-imask/esm/hook.js +131 -0
- package/dist/cjs/node_modules/react-imask/esm/input.js +28 -0
- package/dist/cjs/node_modules/react-imask/esm/mixin.js +173 -0
- package/dist/cjs/node_modules/react-window/dist/react-window.js +9 -0
- package/dist/cjs/node_modules/yjs/dist/yjs.js +1 -1
- package/dist/cjs/node_modules/zod/dist/esm/v3/ZodError.js +134 -0
- package/dist/cjs/node_modules/zod/dist/esm/v3/errors.js +11 -0
- package/dist/cjs/node_modules/zod/dist/esm/v3/helpers/errorUtil.js +8 -0
- package/dist/cjs/node_modules/zod/dist/esm/v3/helpers/parseUtil.js +122 -0
- package/dist/cjs/node_modules/zod/dist/esm/v3/helpers/util.js +138 -0
- package/dist/cjs/node_modules/zod/dist/esm/v3/locales/en.js +113 -0
- package/dist/cjs/node_modules/zod/dist/esm/v3/types.js +3358 -0
- package/dist/cjs/utils/create-observer.js +31 -0
- package/dist/cjs/utils/data-picker.js +87 -0
- package/dist/cjs/utils/dnd-kit.js +22 -0
- package/dist/esm/_virtual/get.js +7 -0
- package/dist/esm/_virtual/index.js +3 -5
- package/dist/esm/_virtual/index2.js +5 -3
- package/dist/esm/_virtual/index7.js +2 -6
- package/dist/esm/_virtual/index8.js +2 -6
- package/dist/esm/_virtual/isPlainObject.js +7 -0
- package/dist/esm/_virtual/lodash.js +1 -3
- package/dist/esm/_virtual/map.js +2 -2
- package/dist/esm/_virtual/pick.js +2 -2
- package/dist/esm/components/buttons/button/button.js +3 -1
- package/dist/esm/components/buttons/button-group/button-group.js +2 -1
- package/dist/esm/components/buttons/icon-button/icon-button.js +2 -2
- package/dist/esm/components/buttons/toggle/toggle.js +2 -1
- package/dist/esm/components/buttons/toggle-group/toggle-group.js +4 -3
- package/dist/esm/components/forms/checkbox/checkbox.js +4 -3
- package/dist/esm/components/forms/country-select/country-select.js +23 -0
- package/dist/esm/components/forms/currency-amount-input/currency-amount-input.js +76 -0
- package/dist/esm/components/forms/currency-select/currency-select.js +90 -0
- package/dist/esm/components/forms/dropzone/dropzone.js +2 -1
- package/dist/esm/components/forms/dropzone/file-preview.js +4 -3
- package/dist/esm/components/forms/dynamic-form/capabilities/condition-operator-capabilities.js +17 -0
- package/dist/esm/components/forms/dynamic-form/capabilities/field-type-capabilities.js +115 -0
- package/dist/esm/components/forms/dynamic-form/conditions/condition-operator-registry.js +93 -0
- package/dist/esm/components/forms/dynamic-form/conditions/evaluate-field-condition.js +63 -0
- package/dist/esm/components/forms/dynamic-form/conditions/validate-field-condition.js +59 -0
- package/dist/esm/components/forms/dynamic-form/dynamic-form-field.js +18 -0
- package/dist/esm/components/forms/dynamic-form/dynamic-form.js +59 -0
- package/dist/esm/components/forms/dynamic-form/field-renderer-registry.js +46 -0
- package/dist/esm/components/forms/dynamic-form/field-renderer-resolver.js +11 -0
- package/dist/esm/components/forms/dynamic-form/is-plain-record.js +7 -0
- package/dist/esm/components/forms/dynamic-form/layout/dynamic-form-field-renderer.js +110 -0
- package/dist/esm/components/forms/dynamic-form/layout/dynamic-form-grid-layout-renderer.js +35 -0
- package/dist/esm/components/forms/dynamic-form/layout/dynamic-form-layout-renderer.js +9 -0
- package/dist/esm/components/forms/dynamic-form/renderers/checkbox-field-renderer.js +18 -0
- package/dist/esm/components/forms/dynamic-form/renderers/country-select-field-renderer.js +27 -0
- package/dist/esm/components/forms/dynamic-form/renderers/currency-select-field-renderer.js +28 -0
- package/dist/esm/components/forms/dynamic-form/renderers/date-field-renderer.js +13 -0
- package/dist/esm/components/forms/dynamic-form/renderers/date-range-field-renderer.js +17 -0
- package/dist/esm/components/forms/dynamic-form/renderers/date-time-field-renderer.js +13 -0
- package/dist/esm/components/forms/dynamic-form/renderers/date-value-utils.js +58 -0
- package/dist/esm/components/forms/dynamic-form/renderers/file-field-renderer.js +53 -0
- package/dist/esm/components/forms/dynamic-form/renderers/hidden-field-renderer.js +4 -0
- package/dist/esm/components/forms/dynamic-form/renderers/month-field-renderer.js +19 -0
- package/dist/esm/components/forms/dynamic-form/renderers/multi-select-field-renderer.js +22 -0
- package/dist/esm/components/forms/dynamic-form/renderers/number-field-renderer.js +15 -0
- package/dist/esm/components/forms/dynamic-form/renderers/phone-input-field-renderer.js +31 -0
- package/dist/esm/components/forms/dynamic-form/renderers/rich-text-field-renderer.js +21 -0
- package/dist/esm/components/forms/dynamic-form/renderers/select-field-renderer.js +24 -0
- package/dist/esm/components/forms/dynamic-form/renderers/tags-input-field-renderer.js +13 -0
- package/dist/esm/components/forms/dynamic-form/renderers/text-field-renderer.js +21 -0
- package/dist/esm/components/forms/dynamic-form/renderers/textarea-field-renderer.js +20 -0
- package/dist/esm/components/forms/dynamic-form/renderers/time-field-renderer.js +14 -0
- package/dist/esm/components/forms/dynamic-form/renderers/year-field-renderer.js +16 -0
- package/dist/esm/components/forms/dynamic-form/types/field-condition.js +25 -0
- package/dist/esm/components/forms/dynamic-form/utils.js +42 -0
- package/dist/esm/components/forms/dynamic-form-builder/condition/condition-builder-adapter.js +144 -0
- package/dist/esm/components/forms/dynamic-form-builder/condition/dynamic-form-field-condition-editor.js +76 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder-field-palette.js +16 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder-inspector-sheet.js +21 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder-json-panel.js +34 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder-layout-canvas.js +52 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder-layout-inspector.js +16 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder-preview.js +84 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder-selection.js +3 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder-toolbar.js +12 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder.js +67 -0
- package/dist/esm/components/forms/dynamic-form-builder/dynamic-form-builder.utils.js +212 -0
- package/dist/esm/components/forms/dynamic-form-builder/inspectors/field-advanced-tab.js +16 -0
- package/dist/esm/components/forms/dynamic-form-builder/inspectors/field-conditions-tab.js +7 -0
- package/dist/esm/components/forms/dynamic-form-builder/inspectors/field-general-tab.js +36 -0
- package/dist/esm/components/forms/dynamic-form-builder/inspectors/field-inspector.js +19 -0
- package/dist/esm/components/forms/dynamic-form-builder/inspectors/field-options-tab.js +13 -0
- package/dist/esm/components/forms/dynamic-form-builder/inspectors/form-inspector.js +31 -0
- package/dist/esm/components/forms/dynamic-form-builder/inspectors/shared.js +27 -0
- package/dist/esm/components/forms/dynamic-form-builder/layout/form-layout-utils.js +86 -0
- package/dist/esm/components/forms/dynamic-form-builder/options/dynamic-form-field-options-editor.js +16 -0
- package/dist/esm/components/forms/file-upload/file-input.js +63 -0
- package/dist/esm/components/forms/file-upload/file-token.js +26 -0
- package/dist/esm/components/forms/file-upload/file-upload.js +64 -35
- package/dist/esm/components/forms/file-upload/files-input.js +64 -0
- package/dist/esm/components/forms/file-upload/use-file-selection.js +82 -0
- package/dist/esm/components/forms/file-upload/utils.js +115 -0
- package/dist/esm/components/forms/form/form.js +4 -3
- package/dist/esm/components/forms/input/input-variants.js +13 -0
- package/dist/esm/components/forms/input/input.js +1 -10
- package/dist/esm/components/forms/input-group/input-group.js +5 -5
- package/dist/esm/components/forms/input-number/input-number.js +14 -2
- package/dist/esm/components/forms/label/label.js +2 -1
- package/dist/esm/components/forms/masked-input/masked-input.js +26 -0
- package/dist/esm/components/forms/password-input/password-input.js +21 -0
- package/dist/esm/components/forms/phone-input/phone-input.js +47 -0
- package/dist/esm/components/forms/phone-input/phone-input.utils.js +16 -0
- package/dist/esm/components/forms/radio/radio.js +4 -3
- package/dist/esm/components/forms/select/select.js +32 -12
- package/dist/esm/components/forms/switch/switch.js +2 -1
- package/dist/esm/components/forms/tags-input/components/suggestions.js +29 -0
- package/dist/esm/components/forms/tags-input/components/tags-input-field.js +81 -0
- package/dist/esm/components/forms/tags-input/components/tags-list.js +10 -0
- package/dist/esm/components/forms/tags-input/tags-input.js +103 -0
- package/dist/esm/components/forms/tags-input/tags-input.utils.js +65 -0
- package/dist/esm/components/layout/box/box.js +2 -1
- package/dist/esm/components/layout/grid-layout/components/grid-background.js +11 -0
- package/dist/esm/components/layout/grid-layout/components/grid-canvas.js +28 -0
- package/dist/esm/components/layout/grid-layout/components/grid-editor-item.js +64 -0
- package/dist/esm/components/layout/grid-layout/components/grid-editor.js +253 -0
- package/dist/esm/components/layout/grid-layout/components/grid-item.js +10 -0
- package/dist/esm/components/layout/grid-layout/components/grid-placeholder.js +9 -0
- package/dist/esm/components/layout/grid-layout/core/collision.js +40 -0
- package/dist/esm/components/layout/grid-layout/core/compact.js +109 -0
- package/dist/esm/components/layout/grid-layout/core/constraints.js +55 -0
- package/dist/esm/components/layout/grid-layout/core/geometry.js +263 -0
- package/dist/esm/components/layout/grid-layout/core/move.js +234 -0
- package/dist/esm/components/layout/grid-layout/core/normalize.js +99 -0
- package/dist/esm/components/layout/grid-layout/core/resize.js +88 -0
- package/dist/esm/components/layout/grid-layout/core/responsive.js +45 -0
- package/dist/esm/components/layout/grid-layout/core/spatial-index.js +9 -0
- package/dist/esm/components/layout/grid-layout/core/validation.js +124 -0
- package/dist/esm/components/layout/grid-layout/hooks/use-container-measurement.js +45 -0
- package/dist/esm/components/layout/grid-layout/hooks/use-grid-drag.js +23 -0
- package/dist/esm/components/layout/grid-layout/hooks/use-grid-editor-drag.js +125 -0
- package/dist/esm/components/layout/grid-layout/hooks/use-grid-editor-state.js +40 -0
- package/dist/esm/components/layout/grid-layout/hooks/use-grid-keyboard.js +15 -0
- package/dist/esm/components/layout/grid-layout/types.js +21 -0
- package/dist/esm/components/media/avatar/avatar.js +2 -1
- package/dist/esm/components/media/country-flag/country-flag.js +20 -0
- package/dist/esm/components/media/icon/icon.js +2 -1
- package/dist/esm/components/popovers/dialog/dialog.js +2 -1
- package/dist/esm/components/popovers/overlay-manager/dynamic-dialog.js +87 -0
- package/dist/esm/components/popovers/overlay-manager/overlay-manager.js +32 -0
- package/dist/esm/components/popovers/overlay-manager/store.js +81 -0
- package/dist/esm/components/popovers/overlay-manager/types.js +5 -0
- package/dist/esm/components/popovers/popover/popover.js +5 -4
- package/dist/esm/components/popovers/sheet/sheet.js +2 -1
- package/dist/esm/components/popovers/toast/toast.js +3 -2
- package/dist/esm/components/popovers/tooltip/tooltip.js +4 -3
- package/dist/esm/components/quiz/builder/components/question-card/question-card.js +68 -7
- package/dist/esm/components/quiz/builder/components/question-prompt-editor/question-prompt-editor.js +1 -1
- package/dist/esm/components/quiz/builder/components/questions-sidebar/questions-sidebar.js +25 -19
- package/dist/esm/components/quiz/builder/editors/choice-task-editor.js +22 -18
- package/dist/esm/components/quiz/builder/editors/sequence-task-editor.js +15 -14
- package/dist/esm/components/quiz/runner/question/question.js +3 -2
- package/dist/esm/components/quiz/runner/viewers/match-pairs-viewer/match-pairs-viewer.js +15 -16
- package/dist/esm/components/quiz/runner/viewers/sequence-viewer/sequence-viewer.js +20 -20
- package/dist/esm/components/schema/types.js +3 -0
- package/dist/esm/components/schema/utils.js +7 -0
- package/dist/esm/components/selectors/multi-field-picker/components/fields-list.js +2 -2
- package/dist/esm/components/selectors/multi-field-picker/multi-field-picker.js +3 -0
- package/dist/esm/components/selectors/multi-field-picker/prisma-utils.js +1 -1
- package/dist/esm/components/selectors/multi-field-picker/utils.js +1 -1
- package/dist/esm/components/selectors/multiselect/multiselect.js +12 -0
- package/dist/esm/components/selectors/single-select/single-select.js +12 -0
- package/dist/esm/components/typography/heading/heading.js +2 -1
- package/dist/esm/components/typography/text/text.js +2 -1
- package/dist/esm/components/ui/accordion/accordion.js +1 -1
- package/dist/esm/components/ui/badge/badge.js +2 -1
- package/dist/esm/components/ui/breadcrumb/breadcrumb.js +2 -1
- package/dist/esm/components/ui/code-editor/Panel.js +3 -0
- package/dist/esm/components/ui/condition-builder/components/condition-field-editor.js +53 -0
- package/dist/esm/components/ui/condition-builder/components/group-editor.js +80 -28
- package/dist/esm/components/ui/condition-builder/components/value-editor/components/select-simple.js +2 -2
- package/dist/esm/components/ui/condition-builder/condition-builder.js +11 -65
- package/dist/esm/components/ui/condition-builder/condition-defaults.js +23 -0
- package/dist/esm/components/ui/condition-builder/condition-operators.js +15 -0
- package/dist/esm/components/ui/condition-builder/condition-selectors.js +24 -0
- package/dist/esm/components/ui/condition-builder/operators/default-condition-operators.js +159 -0
- package/dist/esm/components/ui/condition-builder/operators/get-condition-definitions-for-field.js +15 -0
- package/dist/esm/components/ui/condition-builder/value-editors/condition-value-editor-registry.js +58 -0
- package/dist/esm/components/ui/context-menu/context-menu.js +1 -1
- package/dist/esm/components/ui/course-composer/components/course-composer-lesson-content-editor.js +1 -1
- package/dist/esm/components/ui/course-composer/components/empty-chapter-droppable.js +6 -5
- package/dist/esm/components/ui/course-composer/components/sortable-tree-row.js +48 -24
- package/dist/esm/components/ui/course-composer/components/sortable-tree.js +25 -17
- package/dist/esm/components/ui/course-composer/components/sortable-tree.utils.js +68 -1
- package/dist/esm/components/ui/data-list/data-list.js +33 -15
- package/dist/esm/components/ui/data-table/components/cell.js +1 -1
- package/dist/esm/components/ui/data-table/components/column-group.js +1 -1
- package/dist/esm/components/ui/data-table/components/table-body.js +48 -21
- package/dist/esm/components/ui/data-table/components/table-head.js +29 -19
- package/dist/esm/components/ui/data-table/data-table.js +32 -12
- package/dist/esm/components/ui/data-table/hooks/use-sticky-columns.js +94 -0
- package/dist/esm/components/ui/data-table/hooks/use-table-pagination.js +68 -0
- package/dist/esm/components/ui/data-table/hooks/use-table-sort.js +23 -0
- package/dist/esm/components/ui/data-table/renderer-context.js +55 -0
- package/dist/esm/components/ui/data-table/utils.js +1 -1
- package/dist/esm/components/ui/date-pickers/date-input/date-input.js +2 -13
- package/dist/esm/components/ui/dropdown-menu/dropdown-menu.js +17 -16
- package/dist/esm/components/ui/item/item.js +2 -1
- package/dist/esm/components/ui/link/link.js +2 -1
- package/dist/esm/components/ui/menubar/menubar.js +1 -1
- package/dist/esm/components/ui/navigation-menu/navigation-menu.js +1 -1
- package/dist/esm/components/ui/pdf-content/hooks/use-page-layout.js +3 -8
- package/dist/esm/components/ui/pdf-content/pdf-content.js +40 -78
- package/dist/esm/components/ui/pdf-content/pdf-page.js +6 -2
- package/dist/esm/components/ui/pdf-content/pdf-virtual-row.js +12 -0
- package/dist/esm/components/ui/pdf-content/utils.js +41 -1
- package/dist/esm/components/ui/poll-builder/poll-builder.js +16 -24
- package/dist/esm/components/ui/progress/progress.js +2 -1
- package/dist/esm/components/ui/query-composer/query-composer.js +8 -7
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/bg-shadow-mini-popover.js +34 -8
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/border-mini-popover.js +180 -71
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/dimensions-dropdown.js +87 -46
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/glyphs.js +22 -49
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/shared.js +2 -6
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/spacing-popover.js +242 -70
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/style-popover.js +1 -7
- package/dist/esm/components/ui/rich-editor/bubble-menus/floating-bubble-controls.js +2 -2
- package/dist/esm/components/ui/rich-editor/bubble-menus/layout-bubble-menu.js +329 -156
- package/dist/esm/components/ui/rich-editor/bubble-menus/shared.js +1 -2
- package/dist/esm/components/ui/rich-editor/extensions/box/utils.js +47 -32
- package/dist/esm/components/ui/rich-editor/extensions/code-block/utils.js +1 -1
- package/dist/esm/components/ui/rich-editor/extensions/image/config.js +33 -0
- package/dist/esm/components/ui/rich-editor/extensions/image/extension.js +3 -32
- package/dist/esm/components/ui/rich-editor/extensions/image/image-node-view.js +1 -1
- package/dist/esm/components/ui/rich-editor/extensions/layout/drag-state.js +12 -0
- package/dist/esm/components/ui/rich-editor/extensions/layout/editor.js +27 -0
- package/dist/esm/components/ui/rich-editor/extensions/layout/extension.js +49 -23
- package/dist/esm/components/ui/rich-editor/extensions/layout/interactions.js +9 -44
- package/dist/esm/components/ui/rich-editor/extensions/layout/node-view.js +61 -14
- package/dist/esm/components/ui/rich-editor/extensions/node-interactions/node-selection-frame.js +2 -2
- package/dist/esm/components/ui/rich-editor/extensions/slash/slash-suggestion-renderer.js +0 -1
- package/dist/esm/components/ui/rich-editor/extensions.js +0 -2
- package/dist/esm/components/ui/rich-editor/rich-content-renderer.js +7 -4
- package/dist/esm/components/ui/rich-editor/rich-editor.js +65 -2
- package/dist/esm/components/ui/rich-editor/toolbar.js +2 -0
- package/dist/esm/components/ui/schedule-editor/schedule-editor.js +47 -0
- package/dist/esm/components/ui/schedule-editor/schedule-editor.layout.js +53 -0
- package/dist/esm/components/ui/schedule-editor/schedule-editor.segments.js +160 -0
- package/dist/esm/components/ui/schedule-editor/schedule-editor.utils.js +158 -0
- package/dist/esm/components/ui/schedule-editor/schedule-row.js +126 -0
- package/dist/esm/components/ui/schedule-editor/schedule-timeline-header.js +9 -0
- package/dist/esm/components/ui/schedule-editor/schedule-timeline-slider.js +21 -0
- package/dist/esm/components/ui/schedule-editor/schedule-timeline-slider.utils.js +5 -0
- package/dist/esm/components/ui/schedule-editor/schedule-timeline.js +57 -0
- package/dist/esm/components/ui/schedule-editor/selected-range-popover.js +34 -0
- package/dist/esm/components/ui/schema-condition-builder/prisma-utils.js +153 -0
- package/dist/esm/components/ui/schema-condition-builder/schema-condition-builder.js +89 -0
- package/dist/esm/components/ui/schema-condition-builder/schema-utils.js +33 -0
- package/dist/esm/components/ui/sidebar/sidebar.js +2 -1
- package/dist/esm/components/ui/slider/slider.js +8 -3
- package/dist/esm/components/ui/syntax-input/lowlight-syntax-input.js +98 -0
- package/dist/esm/components/ui/syntax-input/syntax-input.js +440 -0
- package/dist/esm/components/ui/tabs/tabs.js +1 -1
- package/dist/esm/components/utility/color-indicator/color-indicator.js +24 -0
- package/dist/esm/components/utility/filters-list/adapters/multi-select.js +40 -0
- package/dist/esm/components/utility/filters-list/adapters/single-select.js +25 -0
- package/dist/esm/components/utility/filters-list/adapters/use-filter-source.js +7 -0
- package/dist/esm/components/utility/filters-list/context.js +21 -0
- package/dist/esm/components/utility/filters-list/filter-item.js +57 -0
- package/dist/esm/components/utility/filters-list/filters-list.js +33 -0
- package/dist/esm/components/utility/filters-list/utils.js +138 -0
- package/dist/esm/components/utility/input-container/input-container.js +32 -3
- package/dist/esm/components/utility/resizable/resizable.js +132 -2
- package/dist/esm/components/utility/scroll-area/scroll-area.js +2 -2
- package/dist/esm/components/utility/separator/separator.js +2 -1
- package/dist/esm/components/utility/style-selectors/alignment-selector.js +67 -0
- package/dist/esm/components/utility/style-selectors/border-style-selector.js +17 -0
- package/dist/esm/components/utility/style-selectors/color-input.js +13 -0
- package/dist/esm/components/utility/style-selectors/dimension-input.js +39 -0
- package/dist/esm/components/utility/style-selectors/spacing-slider.js +65 -0
- package/dist/esm/hooks/use-event-callback.js +14 -0
- package/dist/esm/hooks/use-external-store-selector.js +188 -0
- package/dist/esm/hooks/use-isomorphic-layout-effect.js +6 -0
- package/dist/esm/hooks/use-masked-input.js +82 -0
- package/dist/esm/hooks/use-phone-input.js +417 -0
- package/dist/esm/hooks/use-resizable/a11y.js +17 -0
- package/dist/esm/hooks/use-resizable/callbacks.js +28 -0
- package/dist/esm/hooks/use-resizable/composed-ref.js +16 -0
- package/dist/esm/hooks/use-resizable/constants.js +15 -0
- package/dist/esm/hooks/use-resizable/dom.js +71 -0
- package/dist/esm/hooks/use-resizable/geometry.js +238 -0
- package/dist/esm/hooks/use-resizable/hook.js +183 -0
- package/dist/esm/hooks/use-resizable/keyboard.js +108 -0
- package/dist/esm/hooks/use-resizable/resize-session.js +259 -0
- package/dist/esm/hooks/use-resizable/size-state.js +79 -0
- package/dist/esm/hooks/use-resizable/style.js +39 -0
- package/dist/esm/hooks/use-resize-observer.js +34 -12
- package/dist/esm/hooks/use-shallow-stable.js +25 -0
- package/dist/esm/index.js +111 -7
- package/dist/esm/lib/countries.js +33 -0
- package/dist/esm/lib/currencies.js +98 -0
- package/dist/esm/node_modules/@date-fns/tz/date/index.js +1 -19
- package/dist/esm/node_modules/@date-fns/tz/date/mini.js +297 -54
- package/dist/esm/node_modules/@date-fns/tz/tzName/index.js +39 -0
- package/dist/esm/node_modules/@date-fns/tz/tzOffset/index.js +25 -12
- package/dist/esm/node_modules/@dnd-kit/abstract/index.js +361 -275
- package/dist/esm/node_modules/@dnd-kit/abstract/modifiers.js +18 -2
- package/dist/esm/node_modules/@dnd-kit/collision/dist/index.js +24 -1
- package/dist/esm/node_modules/@dnd-kit/dom/index.js +188 -123
- package/dist/esm/node_modules/@dnd-kit/dom/modifiers.js +77 -0
- package/dist/esm/node_modules/@dnd-kit/dom/sortable.js +113 -59
- package/dist/esm/node_modules/@dnd-kit/dom/utilities.js +116 -78
- package/dist/esm/node_modules/@dnd-kit/helpers/dist/index.js +17 -11
- package/dist/esm/node_modules/@dnd-kit/react/hooks.js +8 -4
- package/dist/esm/node_modules/@dnd-kit/react/index.js +215 -7
- package/dist/esm/node_modules/@dnd-kit/react/sortable.js +21 -7
- package/dist/esm/node_modules/@dnd-kit/state/dist/index.js +6 -6
- package/dist/esm/node_modules/@hookform/resolvers/dist/resolvers.js +5 -0
- package/dist/esm/node_modules/@hookform/resolvers/zod/dist/zod.js +6 -0
- package/dist/esm/node_modules/@preact/signals-core/dist/signals-core.js +2 -2
- package/dist/esm/node_modules/@radix-ui/primitive/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-accordion/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-arrow/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-aspect-ratio/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-avatar/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-checkbox/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-collapsible/dist/index.js +5 -3
- package/dist/esm/node_modules/@radix-ui/react-context-menu/dist/index.js +2 -2
- package/dist/esm/node_modules/@radix-ui/react-dialog/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot/dist/index.js +4 -5
- package/dist/esm/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-dropdown-menu/dist/index.js +5 -4
- package/dist/esm/node_modules/@radix-ui/react-focus-scope/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-label/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-menu/dist/index.js +3 -3
- package/dist/esm/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-slot/dist/index.js +4 -5
- package/dist/esm/node_modules/@radix-ui/react-menubar/dist/index.js +3 -3
- package/dist/esm/node_modules/@radix-ui/react-navigation-menu/dist/index.js +4 -4
- package/dist/esm/node_modules/@radix-ui/react-popover/dist/index.js +2 -2
- package/dist/esm/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-slot/dist/index.js +4 -5
- package/dist/esm/node_modules/@radix-ui/react-popper/dist/index.js +7 -2
- package/dist/esm/node_modules/@radix-ui/react-portal/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-presence/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-progress/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-radio-group/dist/index.js +2 -2
- package/dist/esm/node_modules/@radix-ui/react-roving-focus/dist/index.js +2 -2
- package/dist/esm/node_modules/@radix-ui/react-scroll-area/dist/index.js +2 -2
- package/dist/esm/node_modules/@radix-ui/react-select/dist/index.js +5 -4
- package/dist/esm/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-slot/dist/index.js +4 -5
- package/dist/esm/node_modules/@radix-ui/react-slider/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-switch/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-tabs/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-toast/dist/index.js +3 -8
- package/dist/esm/node_modules/@radix-ui/react-toggle/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-toggle-group/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-tooltip/dist/index.js +2 -2
- package/dist/esm/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-slot/dist/index.js +3 -86
- package/dist/esm/node_modules/@radix-ui/react-use-is-hydrated/dist/index.js +1 -1
- package/dist/esm/node_modules/@radix-ui/react-visually-hidden/dist/index.js +1 -1
- package/dist/esm/node_modules/@tiptap/core/dist/index.js +167 -33
- package/dist/esm/node_modules/@tiptap/extension-blockquote/dist/index.js +6 -3
- package/dist/esm/node_modules/@tiptap/extension-bold/dist/index.js +6 -0
- package/dist/esm/node_modules/@tiptap/extension-bubble-menu/dist/index.js +12 -1
- package/dist/esm/node_modules/@tiptap/extension-code-block/dist/index.js +2 -2
- package/dist/esm/node_modules/@tiptap/extension-collaboration/dist/index.js +24 -29
- package/dist/esm/node_modules/@tiptap/extension-details/dist/index.js +34 -4
- package/dist/esm/node_modules/@tiptap/extension-drag-handle/dist/index.js +57 -7
- package/dist/esm/node_modules/@tiptap/extension-emoji/dist/index.js +4243 -1791
- package/dist/esm/node_modules/@tiptap/extension-floating-menu/dist/index.js +5 -0
- package/dist/esm/node_modules/@tiptap/extension-italic/dist/index.js +6 -0
- package/dist/esm/node_modules/@tiptap/extension-list/dist/index.js +5 -3
- package/dist/esm/node_modules/@tiptap/extension-node-range/dist/index.js +14 -1
- package/dist/esm/node_modules/@tiptap/extension-paragraph/dist/index.js +7 -3
- package/dist/esm/node_modules/@tiptap/extension-table/dist/index.js +75 -8
- package/dist/esm/node_modules/@tiptap/extension-youtube/dist/index.js +1 -1
- package/dist/esm/node_modules/@tiptap/extensions/dist/index.js +9 -2
- package/dist/esm/node_modules/@tiptap/react/dist/index.js +44 -30
- package/dist/esm/node_modules/@tiptap/react/dist/menus/index.js +284 -22
- package/dist/esm/node_modules/@tiptap/suggestion/dist/index.js +69 -33
- package/dist/esm/node_modules/@tiptap/y-tiptap/dist/y-tiptap.js +1 -75
- package/dist/esm/node_modules/attr-accept/dist/es/index.js +1 -1
- package/dist/esm/node_modules/awesome-phonenumber/index-esm.js +806 -0
- package/dist/esm/node_modules/countries-list/mjs/index.js +4 -0
- package/dist/esm/node_modules/date-fns/eachYearOfInterval.js +65 -0
- package/dist/esm/node_modules/imask/esm/controls/html-contenteditable-mask-element.js +54 -0
- package/dist/esm/node_modules/imask/esm/controls/html-input-mask-element.js +37 -0
- package/dist/esm/node_modules/imask/esm/controls/html-mask-element.js +84 -0
- package/dist/esm/node_modules/imask/esm/controls/input-history.js +36 -0
- package/dist/esm/node_modules/imask/esm/controls/input.js +350 -0
- package/dist/esm/node_modules/imask/esm/controls/mask-element.js +49 -0
- package/dist/esm/node_modules/imask/esm/core/action-details.js +77 -0
- package/dist/esm/node_modules/imask/esm/core/change-details.js +47 -0
- package/dist/esm/node_modules/imask/esm/core/continuous-tail-details.js +55 -0
- package/dist/esm/node_modules/imask/esm/core/holder.js +7 -0
- package/dist/esm/node_modules/imask/esm/core/utils.js +80 -0
- package/dist/esm/node_modules/imask/esm/index.js +27 -0
- package/dist/esm/node_modules/imask/esm/masked/base.js +422 -0
- package/dist/esm/node_modules/imask/esm/masked/date.js +144 -0
- package/dist/esm/node_modules/imask/esm/masked/dynamic.js +340 -0
- package/dist/esm/node_modules/imask/esm/masked/enum.js +101 -0
- package/dist/esm/node_modules/imask/esm/masked/factory.js +121 -0
- package/dist/esm/node_modules/imask/esm/masked/function.js +29 -0
- package/dist/esm/node_modules/imask/esm/masked/number.js +313 -0
- package/dist/esm/node_modules/imask/esm/masked/pattern/chunk-tail-details.js +158 -0
- package/dist/esm/node_modules/imask/esm/masked/pattern/cursor.js +131 -0
- package/dist/esm/node_modules/imask/esm/masked/pattern/fixed-definition.js +151 -0
- package/dist/esm/node_modules/imask/esm/masked/pattern/input-definition.js +186 -0
- package/dist/esm/node_modules/imask/esm/masked/pattern.js +463 -0
- package/dist/esm/node_modules/imask/esm/masked/pipe.js +33 -0
- package/dist/esm/node_modules/imask/esm/masked/range.js +115 -0
- package/dist/esm/node_modules/imask/esm/masked/regexp.js +28 -0
- package/dist/esm/node_modules/imask/esm/masked/repeat.js +132 -0
- package/dist/esm/node_modules/lodash/_getPrototype.js +18 -0
- package/dist/esm/node_modules/lodash/isPlainObject.js +76 -0
- package/dist/esm/node_modules/prop-types/node_modules/react-is/index.js +1 -1
- package/dist/esm/node_modules/radix-ui/node_modules/@radix-ui/react-separator/dist/index.js +30 -0
- package/dist/esm/node_modules/radix-ui/node_modules/@radix-ui/react-slot/dist/index.js +100 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/DayPicker.js +162 -49
- package/dist/esm/node_modules/react-day-picker/dist/esm/UI.js +6 -8
- package/dist/esm/node_modules/react-day-picker/dist/esm/classes/CalendarDay.js +12 -6
- package/dist/esm/node_modules/react-day-picker/dist/esm/classes/CalendarMonth.js +6 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/classes/CalendarWeek.js +5 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/classes/DateLib.js +113 -32
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Chevron.js +2 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Day.js +4 -4
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/DayButton.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Dropdown.js +7 -5
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/DropdownNav.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Footer.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Month.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/MonthCaption.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/MonthGrid.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Months.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/MonthsDropdown.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Nav.js +6 -6
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/NextMonthButton.js +2 -4
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Option.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.js +2 -4
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Root.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Select.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Week.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/WeekNumber.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Weekday.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Weekdays.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Weeks.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/YearsDropdown.js +1 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/custom-components.js +0 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/formatters/formatCaption.js +10 -10
- package/dist/esm/node_modules/react-day-picker/dist/esm/formatters/formatDay.js +7 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.js +6 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.js +11 -5
- package/dist/esm/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.js +3 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.js +7 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.js +6 -8
- package/dist/esm/node_modules/react-day-picker/dist/esm/formatters/index.js +3 -3
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/calculateFocusTarget.js +24 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/createGetModifiers.js +95 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/endOfBroadcastWeek.js +7 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getBroadcastWeeksInMonth.js +8 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getClassNamesForModifiers.js +12 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getComponents.js +11 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getDataAttributes.js +11 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getDates.js +27 -8
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getDays.js +8 -5
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.js +5 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getDisplayMonths.js +10 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getFocusableDate.js +19 -4
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getFormatters.js +8 -9
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getInitialMonth.js +18 -14
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getLabels.js +53 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getMonthOptions.js +17 -3
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getMonths.js +17 -10
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getNavMonth.js +9 -23
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getNextFocus.js +21 -6
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getNextMonth.js +13 -6
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getPreviousMonth.js +13 -5
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getStyleForModifiers.js +12 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getWeekdays.js +15 -13
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getWeeks.js +8 -3
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/getYearOptions.js +20 -10
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/startOfBroadcastWeek.js +8 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/helpers/useControlledValue.js +10 -6
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/index.js +3 -3
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelDayButton.js +10 -12
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelGrid.js +10 -10
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelGridcell.js +7 -4
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.js +4 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelNav.js +2 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelNext.js +7 -5
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelPrevious.js +5 -4
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.js +5 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.js +4 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelWeekday.js +5 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.js +4 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/locale/en-US.js +67 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/noonDateLib.js +163 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/selection/useMulti.js +11 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/selection/useRange.js +32 -5
- package/dist/esm/node_modules/react-day-picker/dist/esm/selection/useSingle.js +11 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/useAnimation.js +15 -7
- package/dist/esm/node_modules/react-day-picker/dist/esm/useCalendar.js +53 -17
- package/dist/esm/node_modules/react-day-picker/dist/esm/useDayPicker.js +4 -6
- package/dist/esm/node_modules/react-day-picker/dist/esm/useFocus.js +21 -2
- package/dist/esm/node_modules/react-day-picker/dist/esm/useSelection.js +10 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/utils/addToRange.js +14 -12
- package/dist/esm/node_modules/react-day-picker/dist/esm/utils/convertMatchersToTimeZone.js +61 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.js +6 -16
- package/dist/esm/node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.js +7 -9
- package/dist/esm/node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.js +6 -15
- package/dist/esm/node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.js +7 -4
- package/dist/esm/node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.js +5 -1
- package/dist/esm/node_modules/react-day-picker/dist/esm/utils/toTimeZone.js +16 -0
- package/dist/esm/node_modules/react-day-picker/dist/esm/utils/typeguards.js +19 -6
- package/dist/esm/node_modules/react-dropzone/dist/es/index.js +1 -1
- package/dist/esm/node_modules/react-hook-form/dist/index.esm.js +1796 -2
- package/dist/esm/node_modules/react-imask/esm/hook.js +127 -0
- package/dist/esm/node_modules/react-imask/esm/input.js +26 -0
- package/dist/esm/node_modules/react-imask/esm/mixin.js +169 -0
- package/dist/esm/node_modules/react-window/dist/react-window.js +9 -1
- package/dist/esm/node_modules/yjs/dist/yjs.js +1 -1
- package/dist/esm/node_modules/zod/dist/esm/v3/ZodError.js +131 -0
- package/dist/esm/node_modules/zod/dist/esm/v3/errors.js +8 -0
- package/dist/esm/node_modules/zod/dist/esm/v3/helpers/errorUtil.js +8 -0
- package/dist/esm/node_modules/zod/dist/esm/v3/helpers/parseUtil.js +111 -0
- package/dist/esm/node_modules/zod/dist/esm/v3/helpers/util.js +135 -0
- package/dist/esm/node_modules/zod/dist/esm/v3/locales/en.js +109 -0
- package/dist/esm/node_modules/zod/dist/esm/v3/types.js +3317 -0
- package/dist/esm/utils/create-observer.js +29 -0
- package/dist/esm/utils/data-picker.js +84 -0
- package/dist/esm/utils/dnd-kit.js +18 -0
- package/dist/styles.css +1120 -492
- package/dist/types/index.d.ts +3149 -373
- package/package.json +74 -90
- package/dist/cjs/_virtual/browser.js +0 -11
- package/dist/cjs/_virtual/debounce.js +0 -11
- package/dist/cjs/_virtual/find.js +0 -11
- package/dist/cjs/_virtual/forEach.js +0 -11
- package/dist/cjs/_virtual/index10.js +0 -5
- package/dist/cjs/_virtual/index9.js +0 -5
- package/dist/cjs/_virtual/isEmpty.js +0 -11
- package/dist/cjs/_virtual/join.js +0 -11
- package/dist/cjs/_virtual/react.js +0 -11
- package/dist/cjs/_virtual/take.js +0 -11
- package/dist/cjs/_virtual/zip.js +0 -11
- package/dist/cjs/components/ui/condition-builder/components/field-picker.js +0 -83
- package/dist/cjs/components/ui/condition-builder/components/relation-editor.js +0 -48
- package/dist/cjs/components/ui/condition-builder/components/rule-editor.js +0 -68
- package/dist/cjs/components/ui/condition-builder/components/value-editor/components/array-editor.js +0 -14
- package/dist/cjs/components/ui/condition-builder/components/value-editor/value-editor.js +0 -63
- package/dist/cjs/components/ui/condition-builder/constants/operators.js +0 -38
- package/dist/cjs/components/ui/condition-builder/prisma-utils.js +0 -174
- package/dist/cjs/components/ui/condition-builder/reducer.js +0 -115
- package/dist/cjs/components/ui/condition-builder/utils.js +0 -93
- package/dist/cjs/components/ui/data-table/hooks/useStickyColumns.js +0 -74
- package/dist/cjs/components/ui/pdf-content/hooks/use-virtual-pages.js +0 -90
- package/dist/cjs/components/ui/rich-editor/bubble-menus/box-bubble-menu.js +0 -60
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/align-dropdown.js +0 -32
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/edge-trigger-button.js +0 -16
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/edge-trigger-cluster.js +0 -88
- package/dist/cjs/components/ui/rich-editor/bubble-menus/controls/uniform-per-side-toggle.js +0 -31
- package/dist/cjs/components/ui/rich-editor/bubble-menus/layout-item-bubble-menu.js +0 -92
- package/dist/cjs/components/ui/rich-editor/extensions/box/editor.js +0 -58
- package/dist/cjs/components/ui/rich-editor/extensions/box/extension.js +0 -90
- package/dist/cjs/components/ui/rich-editor/extensions/box/node-view.js +0 -32
- package/dist/cjs/components/ui/rich-editor/extensions/carousel.js +0 -111
- package/dist/cjs/components/ui/rich-editor/extensions/code-block-lowlight-base.js +0 -108
- package/dist/cjs/components/ui/rich-editor/extensions/code-block-lowlight.js +0 -27
- package/dist/cjs/components/ui/rich-editor/extensions/code-block-utils.js +0 -159
- package/dist/cjs/components/ui/rich-editor/extensions/columns-utils.js +0 -76
- package/dist/cjs/components/ui/rich-editor/extensions/columns.js +0 -241
- package/dist/cjs/components/ui/rich-editor/extensions/image.js +0 -236
- package/dist/cjs/components/ui/rich-editor/extensions/layout/use-layout-edge-trigger-state.js +0 -88
- package/dist/cjs/components/ui/rich-editor/extensions/layout/use-layout-item-update.js +0 -16
- package/dist/cjs/components/ui/rich-editor/extensions/table/node-alignment.js +0 -54
- package/dist/cjs/components/ui/rich-editor/extensions/table/node-background.js +0 -38
- package/dist/cjs/components/ui/rich-editor/extensions/table/table-grid-selector.js +0 -59
- package/dist/cjs/components/ui/rich-editor/extensions/table-cell.js +0 -23
- package/dist/cjs/components/ui/rich-editor/extensions/table-header.js +0 -23
- package/dist/cjs/components/ui/rich-editor/extensions/table-kit.js +0 -58
- package/dist/cjs/components/ui/rich-editor/extensions/table-row.js +0 -14
- package/dist/cjs/components/ui/rich-editor/extensions/table.js +0 -24
- package/dist/cjs/components/ui/rich-editor/rich-content-preview.js +0 -342
- package/dist/cjs/components/ui/rich-editor/views/carousel-node-view.js +0 -340
- package/dist/cjs/components/ui/rich-editor/views/code-block-node-view.js +0 -63
- package/dist/cjs/components/ui/rich-editor/views/columns-node-view.js +0 -12
- package/dist/cjs/components/ui/rich-text-editor/rich-text-editor.js +0 -166
- package/dist/cjs/components/ui/rich-text-editor/rich-text-viewer.js +0 -11
- package/dist/cjs/main.js +0 -483
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-alignment/dist/index.js +0 -563
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-autoformat/dist/index.js +0 -524
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-autosave/dist/index.js +0 -253
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-basic-styles/dist/index.js +0 -647
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-block-quote/dist/index.js +0 -377
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-clipboard/dist/index.js +0 -2193
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-core/dist/index.js +0 -2602
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-editor-classic/dist/index.js +0 -464
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-engine/dist/index.js +0 -36488
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-enter/dist/index.js +0 -385
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-essentials/dist/index.js +0 -57
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-heading/dist/index.js +0 -406
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-horizontal-line/dist/index.js +0 -208
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-image/dist/index.js +0 -6121
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-indent/dist/index.js +0 -471
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-integrations-common/dist/index.js +0 -181
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-link/dist/index.js +0 -2587
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-list/dist/index.js +0 -4008
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/marked/lib/marked.esm.js +0 -2709
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-media-embed/dist/index.js +0 -1081
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-mention/dist/index.js +0 -23
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-paragraph/dist/index.js +0 -249
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-paste-from-office/dist/index.js +0 -1163
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-react/dist/index.js +0 -721
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-select-all/dist/index.js +0 -195
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-table/dist/index.js +0 -11427
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-typing/dist/index.js +0 -2503
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-ui/dist/index.js +0 -14966
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-undo/dist/index.js +0 -550
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-upload/dist/index.js +0 -602
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-utils/dist/index.js +0 -5836
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-watchdog/dist/index.js +0 -1100
- package/dist/cjs/node_modules/@ckeditor/ckeditor5-widget/dist/index.js +0 -3010
- package/dist/cjs/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +0 -64
- package/dist/cjs/node_modules/@dnd-kit/core/dist/core.esm.js +0 -3933
- package/dist/cjs/node_modules/@dnd-kit/modifiers/dist/modifiers.esm.js +0 -49
- package/dist/cjs/node_modules/@dnd-kit/sortable/dist/sortable.esm.js +0 -671
- package/dist/cjs/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +0 -358
- package/dist/cjs/node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-collapsible/dist/index.js +0 -173
- package/dist/cjs/node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-aspect-ratio/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-aspect-ratio/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-avatar/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-avatar/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/primitive/dist/index.js +0 -13
- package/dist/cjs/node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-presence/dist/index.js +0 -152
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/primitive/dist/index.js +0 -13
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-arrow/dist/index.js +0 -47
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +0 -234
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-focus-guards/dist/index.js +0 -51
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-focus-scope/dist/index.js +0 -229
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-menu/dist/index.js +0 -888
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-popper/dist/index.js +0 -313
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-portal/dist/index.js +0 -39
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-presence/dist/index.js +0 -152
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-roving-focus/dist/index.js +0 -249
- package/dist/cjs/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-slot/dist/index.js +0 -110
- package/dist/cjs/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-primitive/dist/index.js +0 -66
- package/dist/cjs/node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-collection/dist/index.js +0 -73
- package/dist/cjs/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-primitive/dist/index.js +0 -66
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/primitive/dist/index.js +0 -13
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-arrow/dist/index.js +0 -47
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +0 -234
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-focus-guards/dist/index.js +0 -51
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-focus-scope/dist/index.js +0 -229
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-menu/dist/index.js +0 -888
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-popper/dist/index.js +0 -313
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-portal/dist/index.js +0 -39
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-presence/dist/index.js +0 -152
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-roving-focus/dist/index.js +0 -249
- package/dist/cjs/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-slot/dist/index.js +0 -110
- package/dist/cjs/node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/primitive/dist/index.js +0 -13
- package/dist/cjs/node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +0 -234
- package/dist/cjs/node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-presence/dist/index.js +0 -152
- package/dist/cjs/node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-visually-hidden/dist/index.js +0 -58
- package/dist/cjs/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-collection/dist/index.js +0 -73
- package/dist/cjs/node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/primitive/dist/index.js +0 -13
- package/dist/cjs/node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/react-presence/dist/index.js +0 -152
- package/dist/cjs/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-collection/dist/index.js +0 -73
- package/dist/cjs/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-separator/dist/index.js +0 -52
- package/dist/cjs/node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-slider/node_modules/@radix-ui/primitive/dist/index.js +0 -13
- package/dist/cjs/node_modules/@radix-ui/react-slot/dist/index.js +0 -139
- package/dist/cjs/node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-collection/dist/index.js +0 -73
- package/dist/cjs/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-primitive/dist/index.js +0 -66
- package/dist/cjs/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-primitive/dist/index.js +0 -61
- package/dist/cjs/node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-slot/dist/index.js +0 -111
- package/dist/cjs/node_modules/@tiptap/extension-table/dist/table/index.js +0 -458
- package/dist/cjs/node_modules/ckeditor5/dist/ckeditor5.css.js +0 -10
- package/dist/cjs/node_modules/color-convert/conversions.js +0 -854
- package/dist/cjs/node_modules/color-convert/index.js +0 -96
- package/dist/cjs/node_modules/color-convert/route.js +0 -110
- package/dist/cjs/node_modules/color-name/index.js +0 -163
- package/dist/cjs/node_modules/color-parse/index.js +0 -173
- package/dist/cjs/node_modules/dompurify/dist/purify.cjs.js +0 -1361
- package/dist/cjs/node_modules/fast-deep-equal/es6/react.js +0 -85
- package/dist/cjs/node_modules/isomorphic-dompurify/browser.js +0 -15
- package/dist/cjs/node_modules/lodash/_arrayEach.js +0 -35
- package/dist/cjs/node_modules/lodash/_baseSlice.js +0 -44
- package/dist/cjs/node_modules/lodash/_castFunction.js +0 -28
- package/dist/cjs/node_modules/lodash/_createFind.js +0 -41
- package/dist/cjs/node_modules/lodash/find.js +0 -57
- package/dist/cjs/node_modules/lodash/findIndex.js +0 -71
- package/dist/cjs/node_modules/lodash/forEach.js +0 -58
- package/dist/cjs/node_modules/lodash/isEmpty.js +0 -98
- package/dist/cjs/node_modules/lodash/join.js +0 -39
- package/dist/cjs/node_modules/lodash/take.js +0 -52
- package/dist/cjs/node_modules/lodash/toInteger.js +0 -50
- package/dist/cjs/node_modules/lodash/unzip.js +0 -63
- package/dist/cjs/node_modules/lodash/zip.js +0 -37
- package/dist/cjs/node_modules/lodash-es/_DataView.js +0 -11
- package/dist/cjs/node_modules/lodash-es/_Hash.js +0 -36
- package/dist/cjs/node_modules/lodash-es/_ListCache.js +0 -36
- package/dist/cjs/node_modules/lodash-es/_Map.js +0 -11
- package/dist/cjs/node_modules/lodash-es/_MapCache.js +0 -36
- package/dist/cjs/node_modules/lodash-es/_Promise.js +0 -11
- package/dist/cjs/node_modules/lodash-es/_Set.js +0 -11
- package/dist/cjs/node_modules/lodash-es/_SetCache.js +0 -31
- package/dist/cjs/node_modules/lodash-es/_Stack.js +0 -31
- package/dist/cjs/node_modules/lodash-es/_Symbol.js +0 -10
- package/dist/cjs/node_modules/lodash-es/_Uint8Array.js +0 -10
- package/dist/cjs/node_modules/lodash-es/_WeakMap.js +0 -11
- package/dist/cjs/node_modules/lodash-es/_apply.js +0 -25
- package/dist/cjs/node_modules/lodash-es/_arrayEach.js +0 -26
- package/dist/cjs/node_modules/lodash-es/_arrayFilter.js +0 -29
- package/dist/cjs/node_modules/lodash-es/_arrayLikeKeys.js +0 -53
- package/dist/cjs/node_modules/lodash-es/_arrayMap.js +0 -25
- package/dist/cjs/node_modules/lodash-es/_arrayPush.js +0 -24
- package/dist/cjs/node_modules/lodash-es/_arraySome.js +0 -27
- package/dist/cjs/node_modules/lodash-es/_asciiToArray.js +0 -16
- package/dist/cjs/node_modules/lodash-es/_assignMergeValue.js +0 -24
- package/dist/cjs/node_modules/lodash-es/_assignValue.js +0 -32
- package/dist/cjs/node_modules/lodash-es/_assocIndexOf.js +0 -25
- package/dist/cjs/node_modules/lodash-es/_baseAssign.js +0 -21
- package/dist/cjs/node_modules/lodash-es/_baseAssignIn.js +0 -21
- package/dist/cjs/node_modules/lodash-es/_baseAssignValue.js +0 -29
- package/dist/cjs/node_modules/lodash-es/_baseClone.js +0 -170
- package/dist/cjs/node_modules/lodash-es/_baseCreate.js +0 -34
- package/dist/cjs/node_modules/lodash-es/_baseEach.js +0 -18
- package/dist/cjs/node_modules/lodash-es/_baseFor.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_baseForOwn.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_baseGet.js +0 -28
- package/dist/cjs/node_modules/lodash-es/_baseGetAllKeys.js +0 -24
- package/dist/cjs/node_modules/lodash-es/_baseGetTag.js +0 -32
- package/dist/cjs/node_modules/lodash-es/_baseHasIn.js +0 -17
- package/dist/cjs/node_modules/lodash-es/_baseIsArguments.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_baseIsEqual.js +0 -32
- package/dist/cjs/node_modules/lodash-es/_baseIsEqualDeep.js +0 -87
- package/dist/cjs/node_modules/lodash-es/_baseIsMap.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_baseIsMatch.js +0 -63
- package/dist/cjs/node_modules/lodash-es/_baseIsNative.js +0 -51
- package/dist/cjs/node_modules/lodash-es/_baseIsSet.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_baseIsTypedArray.js +0 -64
- package/dist/cjs/node_modules/lodash-es/_baseIteratee.js +0 -35
- package/dist/cjs/node_modules/lodash-es/_baseKeys.js +0 -34
- package/dist/cjs/node_modules/lodash-es/_baseKeysIn.js +0 -37
- package/dist/cjs/node_modules/lodash-es/_baseMap.js +0 -26
- package/dist/cjs/node_modules/lodash-es/_baseMatches.js +0 -26
- package/dist/cjs/node_modules/lodash-es/_baseMatchesProperty.js +0 -37
- package/dist/cjs/node_modules/lodash-es/_baseMerge.js +0 -46
- package/dist/cjs/node_modules/lodash-es/_baseMergeDeep.js +0 -98
- package/dist/cjs/node_modules/lodash-es/_baseProperty.js +0 -18
- package/dist/cjs/node_modules/lodash-es/_basePropertyDeep.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_baseRest.js +0 -21
- package/dist/cjs/node_modules/lodash-es/_baseSet.js +0 -55
- package/dist/cjs/node_modules/lodash-es/_baseSetToString.js +0 -26
- package/dist/cjs/node_modules/lodash-es/_baseSlice.js +0 -35
- package/dist/cjs/node_modules/lodash-es/_baseTimes.js +0 -24
- package/dist/cjs/node_modules/lodash-es/_baseToString.js +0 -38
- package/dist/cjs/node_modules/lodash-es/_baseTrim.js +0 -23
- package/dist/cjs/node_modules/lodash-es/_baseUnary.js +0 -18
- package/dist/cjs/node_modules/lodash-es/_baseUnset.js +0 -24
- package/dist/cjs/node_modules/lodash-es/_cacheHas.js +0 -17
- package/dist/cjs/node_modules/lodash-es/_castPath.js +0 -25
- package/dist/cjs/node_modules/lodash-es/_castSlice.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_cloneArrayBuffer.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_cloneBuffer.js +0 -39
- package/dist/cjs/node_modules/lodash-es/_cloneDataView.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_cloneRegExp.js +0 -21
- package/dist/cjs/node_modules/lodash-es/_cloneSymbol.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_cloneTypedArray.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_copyArray.js +0 -24
- package/dist/cjs/node_modules/lodash-es/_copyObject.js +0 -42
- package/dist/cjs/node_modules/lodash-es/_copySymbols.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_copySymbolsIn.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_coreJsData.js +0 -10
- package/dist/cjs/node_modules/lodash-es/_createAssigner.js +0 -41
- package/dist/cjs/node_modules/lodash-es/_createBaseEach.js +0 -36
- package/dist/cjs/node_modules/lodash-es/_createBaseFor.js +0 -29
- package/dist/cjs/node_modules/lodash-es/_createCaseFirst.js +0 -37
- package/dist/cjs/node_modules/lodash-es/_defineProperty.js +0 -15
- package/dist/cjs/node_modules/lodash-es/_equalArrays.js +0 -88
- package/dist/cjs/node_modules/lodash-es/_equalByTag.js +0 -116
- package/dist/cjs/node_modules/lodash-es/_equalObjects.js +0 -94
- package/dist/cjs/node_modules/lodash-es/_freeGlobal.js +0 -8
- package/dist/cjs/node_modules/lodash-es/_getAllKeys.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_getAllKeysIn.js +0 -21
- package/dist/cjs/node_modules/lodash-es/_getMapData.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_getMatchData.js +0 -28
- package/dist/cjs/node_modules/lodash-es/_getNative.js +0 -21
- package/dist/cjs/node_modules/lodash-es/_getPrototype.js +0 -10
- package/dist/cjs/node_modules/lodash-es/_getRawTag.js +0 -50
- package/dist/cjs/node_modules/lodash-es/_getSymbols.js +0 -34
- package/dist/cjs/node_modules/lodash-es/_getSymbolsIn.js +0 -29
- package/dist/cjs/node_modules/lodash-es/_getTag.js +0 -60
- package/dist/cjs/node_modules/lodash-es/_getValue.js +0 -17
- package/dist/cjs/node_modules/lodash-es/_hasPath.js +0 -43
- package/dist/cjs/node_modules/lodash-es/_hasUnicode.js +0 -30
- package/dist/cjs/node_modules/lodash-es/_hashClear.js +0 -19
- package/dist/cjs/node_modules/lodash-es/_hashDelete.js +0 -21
- package/dist/cjs/node_modules/lodash-es/_hashGet.js +0 -34
- package/dist/cjs/node_modules/lodash-es/_hashHas.js +0 -27
- package/dist/cjs/node_modules/lodash-es/_hashSet.js +0 -27
- package/dist/cjs/node_modules/lodash-es/_initCloneArray.js +0 -30
- package/dist/cjs/node_modules/lodash-es/_initCloneByTag.js +0 -81
- package/dist/cjs/node_modules/lodash-es/_initCloneObject.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_isIndex.js +0 -29
- package/dist/cjs/node_modules/lodash-es/_isIterateeCall.js +0 -34
- package/dist/cjs/node_modules/lodash-es/_isKey.js +0 -33
- package/dist/cjs/node_modules/lodash-es/_isKeyable.js +0 -19
- package/dist/cjs/node_modules/lodash-es/_isMasked.js +0 -24
- package/dist/cjs/node_modules/lodash-es/_isPrototype.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_isStrictComparable.js +0 -19
- package/dist/cjs/node_modules/lodash-es/_listCacheClear.js +0 -17
- package/dist/cjs/node_modules/lodash-es/_listCacheDelete.js +0 -39
- package/dist/cjs/node_modules/lodash-es/_listCacheGet.js +0 -23
- package/dist/cjs/node_modules/lodash-es/_listCacheHas.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_listCacheSet.js +0 -30
- package/dist/cjs/node_modules/lodash-es/_mapCacheClear.js +0 -25
- package/dist/cjs/node_modules/lodash-es/_mapCacheDelete.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_mapCacheGet.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_mapCacheHas.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_mapCacheSet.js +0 -26
- package/dist/cjs/node_modules/lodash-es/_mapToArray.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_matchesStrictComparable.js +0 -24
- package/dist/cjs/node_modules/lodash-es/_memoizeCapped.js +0 -30
- package/dist/cjs/node_modules/lodash-es/_nativeCreate.js +0 -10
- package/dist/cjs/node_modules/lodash-es/_nativeKeys.js +0 -10
- package/dist/cjs/node_modules/lodash-es/_nativeKeysIn.js +0 -24
- package/dist/cjs/node_modules/lodash-es/_nodeUtil.js +0 -34
- package/dist/cjs/node_modules/lodash-es/_objectToString.js +0 -26
- package/dist/cjs/node_modules/lodash-es/_overArg.js +0 -19
- package/dist/cjs/node_modules/lodash-es/_overRest.js +0 -40
- package/dist/cjs/node_modules/lodash-es/_parent.js +0 -20
- package/dist/cjs/node_modules/lodash-es/_root.js +0 -13
- package/dist/cjs/node_modules/lodash-es/_safeGet.js +0 -25
- package/dist/cjs/node_modules/lodash-es/_setCacheAdd.js +0 -23
- package/dist/cjs/node_modules/lodash-es/_setCacheHas.js +0 -18
- package/dist/cjs/node_modules/lodash-es/_setToArray.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_setToString.js +0 -18
- package/dist/cjs/node_modules/lodash-es/_shortOut.js +0 -41
- package/dist/cjs/node_modules/lodash-es/_stackClear.js +0 -19
- package/dist/cjs/node_modules/lodash-es/_stackDelete.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_stackGet.js +0 -18
- package/dist/cjs/node_modules/lodash-es/_stackHas.js +0 -18
- package/dist/cjs/node_modules/lodash-es/_stackSet.js +0 -38
- package/dist/cjs/node_modules/lodash-es/_stringToArray.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_stringToPath.js +0 -31
- package/dist/cjs/node_modules/lodash-es/_toKey.js +0 -22
- package/dist/cjs/node_modules/lodash-es/_toSource.js +0 -30
- package/dist/cjs/node_modules/lodash-es/_trimmedEndIndex.js +0 -23
- package/dist/cjs/node_modules/lodash-es/_unicodeToArray.js +0 -44
- package/dist/cjs/node_modules/lodash-es/assignIn.js +0 -44
- package/dist/cjs/node_modules/lodash-es/clone.js +0 -40
- package/dist/cjs/node_modules/lodash-es/cloneDeep.js +0 -33
- package/dist/cjs/node_modules/lodash-es/cloneDeepWith.js +0 -44
- package/dist/cjs/node_modules/lodash-es/constant.js +0 -30
- package/dist/cjs/node_modules/lodash-es/debounce.js +0 -195
- package/dist/cjs/node_modules/lodash-es/eq.js +0 -41
- package/dist/cjs/node_modules/lodash-es/escapeRegExp.js +0 -36
- package/dist/cjs/node_modules/lodash-es/get.js +0 -37
- package/dist/cjs/node_modules/lodash-es/hasIn.js +0 -38
- package/dist/cjs/node_modules/lodash-es/identity.js +0 -25
- package/dist/cjs/node_modules/lodash-es/isArguments.js +0 -40
- package/dist/cjs/node_modules/lodash-es/isArray.js +0 -30
- package/dist/cjs/node_modules/lodash-es/isArrayLike.js +0 -37
- package/dist/cjs/node_modules/lodash-es/isArrayLikeObject.js +0 -37
- package/dist/cjs/node_modules/lodash-es/isBuffer.js +0 -42
- package/dist/cjs/node_modules/lodash-es/isElement.js +0 -29
- package/dist/cjs/node_modules/lodash-es/isEqual.js +0 -39
- package/dist/cjs/node_modules/lodash-es/isEqualWith.js +0 -45
- package/dist/cjs/node_modules/lodash-es/isFunction.js +0 -41
- package/dist/cjs/node_modules/lodash-es/isLength.js +0 -39
- package/dist/cjs/node_modules/lodash-es/isMap.js +0 -31
- package/dist/cjs/node_modules/lodash-es/isObject.js +0 -35
- package/dist/cjs/node_modules/lodash-es/isObjectLike.js +0 -33
- package/dist/cjs/node_modules/lodash-es/isPlainObject.js +0 -66
- package/dist/cjs/node_modules/lodash-es/isSet.js +0 -31
- package/dist/cjs/node_modules/lodash-es/isString.js +0 -34
- package/dist/cjs/node_modules/lodash-es/isSymbol.js +0 -33
- package/dist/cjs/node_modules/lodash-es/isTypedArray.js +0 -31
- package/dist/cjs/node_modules/lodash-es/keys.js +0 -41
- package/dist/cjs/node_modules/lodash-es/keysIn.js +0 -36
- package/dist/cjs/node_modules/lodash-es/last.js +0 -24
- package/dist/cjs/node_modules/lodash-es/map.js +0 -57
- package/dist/cjs/node_modules/lodash-es/mapValues.js +0 -47
- package/dist/cjs/node_modules/lodash-es/memoize.js +0 -77
- package/dist/cjs/node_modules/lodash-es/merge.js +0 -43
- package/dist/cjs/node_modules/lodash-es/now.js +0 -27
- package/dist/cjs/node_modules/lodash-es/property.js +0 -36
- package/dist/cjs/node_modules/lodash-es/set.js +0 -39
- package/dist/cjs/node_modules/lodash-es/stubArray.js +0 -27
- package/dist/cjs/node_modules/lodash-es/stubFalse.js +0 -22
- package/dist/cjs/node_modules/lodash-es/throttle.js +0 -73
- package/dist/cjs/node_modules/lodash-es/toNumber.js +0 -68
- package/dist/cjs/node_modules/lodash-es/toPlainObject.js +0 -36
- package/dist/cjs/node_modules/lodash-es/toString.js +0 -32
- package/dist/cjs/node_modules/lodash-es/unset.js +0 -38
- package/dist/cjs/node_modules/lodash-es/upperFirst.js +0 -26
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/align-center.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/align-justify.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/align-left.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/align-right.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/badge-help.js +0 -29
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/chrome.js +0 -25
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/circle-help.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-audio-2.js +0 -25
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-audio.js +0 -29
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-badge-2.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-check-2.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-code-2.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-json-2.js +0 -30
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-json.js +0 -30
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-key-2.js +0 -25
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-lock-2.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-minus-2.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-plus-2.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-question.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-search-2.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-type-2.js +0 -25
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-video-2.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-video.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-volume-2.js +0 -25
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-warning.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/file-x-2.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/fingerprint.js +0 -29
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/flip-horizontal.js +0 -26
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/flip-vertical.js +0 -26
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/grab.js +0 -28
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/indent-decrease.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/indent-increase.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/letter-text.js +0 -25
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/mail-question.js +0 -30
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/message-circle-question.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/shield-question.js +0 -29
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/text.js +0 -23
- package/dist/cjs/node_modules/lucide-react/dist/esm/icons/wrap-text.js +0 -24
- package/dist/cjs/node_modules/lucide-react/dist/esm/shared/src/utils.js +0 -26
- package/dist/cjs/node_modules/react-day-picker/dist/esm/components/Button.js +0 -15
- package/dist/cjs/node_modules/react-day-picker/dist/esm/useGetModifiers.js +0 -91
- package/dist/cjs/node_modules/turndown/lib/turndown.es.js +0 -41
- package/dist/cjs/node_modules/vanilla-colorful/lib/components/color-picker.js +0 -88
- package/dist/cjs/node_modules/vanilla-colorful/lib/components/hue.js +0 -27
- package/dist/cjs/node_modules/vanilla-colorful/lib/components/saturation.js +0 -34
- package/dist/cjs/node_modules/vanilla-colorful/lib/components/slider.js +0 -108
- package/dist/cjs/node_modules/vanilla-colorful/lib/entrypoints/hex.js +0 -20
- package/dist/cjs/node_modules/vanilla-colorful/lib/styles/color-picker.js +0 -7
- package/dist/cjs/node_modules/vanilla-colorful/lib/styles/hue.js +0 -7
- package/dist/cjs/node_modules/vanilla-colorful/lib/styles/saturation.js +0 -7
- package/dist/cjs/node_modules/vanilla-colorful/lib/utils/compare.js +0 -28
- package/dist/cjs/node_modules/vanilla-colorful/lib/utils/convert.js +0 -84
- package/dist/cjs/node_modules/vanilla-colorful/lib/utils/dom.js +0 -21
- package/dist/cjs/node_modules/vanilla-colorful/lib/utils/math.js +0 -14
- package/dist/cjs/worker.js +0 -25
- package/dist/esm/_virtual/browser.js +0 -7
- package/dist/esm/_virtual/debounce.js +0 -7
- package/dist/esm/_virtual/find.js +0 -7
- package/dist/esm/_virtual/forEach.js +0 -7
- package/dist/esm/_virtual/index10.js +0 -3
- package/dist/esm/_virtual/index9.js +0 -3
- package/dist/esm/_virtual/isEmpty.js +0 -7
- package/dist/esm/_virtual/join.js +0 -7
- package/dist/esm/_virtual/react.js +0 -7
- package/dist/esm/_virtual/take.js +0 -7
- package/dist/esm/_virtual/zip.js +0 -7
- package/dist/esm/components/ui/condition-builder/components/field-picker.js +0 -81
- package/dist/esm/components/ui/condition-builder/components/relation-editor.js +0 -46
- package/dist/esm/components/ui/condition-builder/components/rule-editor.js +0 -66
- package/dist/esm/components/ui/condition-builder/components/value-editor/components/array-editor.js +0 -12
- package/dist/esm/components/ui/condition-builder/components/value-editor/value-editor.js +0 -61
- package/dist/esm/components/ui/condition-builder/constants/operators.js +0 -34
- package/dist/esm/components/ui/condition-builder/prisma-utils.js +0 -172
- package/dist/esm/components/ui/condition-builder/reducer.js +0 -113
- package/dist/esm/components/ui/condition-builder/utils.js +0 -83
- package/dist/esm/components/ui/data-table/hooks/useStickyColumns.js +0 -72
- package/dist/esm/components/ui/pdf-content/hooks/use-virtual-pages.js +0 -88
- package/dist/esm/components/ui/rich-editor/bubble-menus/box-bubble-menu.js +0 -58
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/align-dropdown.js +0 -30
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/edge-trigger-button.js +0 -14
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/edge-trigger-cluster.js +0 -86
- package/dist/esm/components/ui/rich-editor/bubble-menus/controls/uniform-per-side-toggle.js +0 -29
- package/dist/esm/components/ui/rich-editor/bubble-menus/layout-item-bubble-menu.js +0 -90
- package/dist/esm/components/ui/rich-editor/extensions/box/editor.js +0 -56
- package/dist/esm/components/ui/rich-editor/extensions/box/extension.js +0 -88
- package/dist/esm/components/ui/rich-editor/extensions/box/node-view.js +0 -30
- package/dist/esm/components/ui/rich-editor/extensions/carousel.js +0 -106
- package/dist/esm/components/ui/rich-editor/extensions/code-block-lowlight-base.js +0 -106
- package/dist/esm/components/ui/rich-editor/extensions/code-block-lowlight.js +0 -14
- package/dist/esm/components/ui/rich-editor/extensions/code-block-utils.js +0 -148
- package/dist/esm/components/ui/rich-editor/extensions/columns-utils.js +0 -73
- package/dist/esm/components/ui/rich-editor/extensions/columns.js +0 -238
- package/dist/esm/components/ui/rich-editor/extensions/image.js +0 -234
- package/dist/esm/components/ui/rich-editor/extensions/layout/use-layout-edge-trigger-state.js +0 -85
- package/dist/esm/components/ui/rich-editor/extensions/layout/use-layout-item-update.js +0 -14
- package/dist/esm/components/ui/rich-editor/extensions/table/node-alignment.js +0 -52
- package/dist/esm/components/ui/rich-editor/extensions/table/node-background.js +0 -36
- package/dist/esm/components/ui/rich-editor/extensions/table/table-grid-selector.js +0 -57
- package/dist/esm/components/ui/rich-editor/extensions/table-cell.js +0 -21
- package/dist/esm/components/ui/rich-editor/extensions/table-header.js +0 -21
- package/dist/esm/components/ui/rich-editor/extensions/table-kit.js +0 -56
- package/dist/esm/components/ui/rich-editor/extensions/table-row.js +0 -12
- package/dist/esm/components/ui/rich-editor/extensions/table.js +0 -22
- package/dist/esm/components/ui/rich-editor/rich-content-preview.js +0 -321
- package/dist/esm/components/ui/rich-editor/views/carousel-node-view.js +0 -338
- package/dist/esm/components/ui/rich-editor/views/code-block-node-view.js +0 -42
- package/dist/esm/components/ui/rich-editor/views/columns-node-view.js +0 -10
- package/dist/esm/components/ui/rich-text-editor/rich-text-editor.js +0 -164
- package/dist/esm/components/ui/rich-text-editor/rich-text-viewer.js +0 -9
- package/dist/esm/main.js +0 -125
- package/dist/esm/node_modules/@ckeditor/ckeditor5-alignment/dist/index.js +0 -559
- package/dist/esm/node_modules/@ckeditor/ckeditor5-autoformat/dist/index.js +0 -520
- package/dist/esm/node_modules/@ckeditor/ckeditor5-autosave/dist/index.js +0 -251
- package/dist/esm/node_modules/@ckeditor/ckeditor5-basic-styles/dist/index.js +0 -633
- package/dist/esm/node_modules/@ckeditor/ckeditor5-block-quote/dist/index.js +0 -373
- package/dist/esm/node_modules/@ckeditor/ckeditor5-clipboard/dist/index.js +0 -2184
- package/dist/esm/node_modules/@ckeditor/ckeditor5-core/dist/index.js +0 -2591
- package/dist/esm/node_modules/@ckeditor/ckeditor5-editor-classic/dist/index.js +0 -462
- package/dist/esm/node_modules/@ckeditor/ckeditor5-engine/dist/index.js +0 -36404
- package/dist/esm/node_modules/@ckeditor/ckeditor5-enter/dist/index.js +0 -382
- package/dist/esm/node_modules/@ckeditor/ckeditor5-essentials/dist/index.js +0 -55
- package/dist/esm/node_modules/@ckeditor/ckeditor5-heading/dist/index.js +0 -402
- package/dist/esm/node_modules/@ckeditor/ckeditor5-horizontal-line/dist/index.js +0 -204
- package/dist/esm/node_modules/@ckeditor/ckeditor5-image/dist/index.js +0 -6089
- package/dist/esm/node_modules/@ckeditor/ckeditor5-indent/dist/index.js +0 -466
- package/dist/esm/node_modules/@ckeditor/ckeditor5-integrations-common/dist/index.js +0 -174
- package/dist/esm/node_modules/@ckeditor/ckeditor5-link/dist/index.js +0 -2573
- package/dist/esm/node_modules/@ckeditor/ckeditor5-list/dist/index.js +0 -3997
- package/dist/esm/node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/marked/lib/marked.esm.js +0 -2700
- package/dist/esm/node_modules/@ckeditor/ckeditor5-media-embed/dist/index.js +0 -1076
- package/dist/esm/node_modules/@ckeditor/ckeditor5-mention/dist/index.js +0 -21
- package/dist/esm/node_modules/@ckeditor/ckeditor5-paragraph/dist/index.js +0 -247
- package/dist/esm/node_modules/@ckeditor/ckeditor5-paste-from-office/dist/index.js +0 -1159
- package/dist/esm/node_modules/@ckeditor/ckeditor5-react/dist/index.js +0 -719
- package/dist/esm/node_modules/@ckeditor/ckeditor5-select-all/dist/index.js +0 -191
- package/dist/esm/node_modules/@ckeditor/ckeditor5-table/dist/index.js +0 -11405
- package/dist/esm/node_modules/@ckeditor/ckeditor5-typing/dist/index.js +0 -2491
- package/dist/esm/node_modules/@ckeditor/ckeditor5-ui/dist/index.js +0 -14891
- package/dist/esm/node_modules/@ckeditor/ckeditor5-undo/dist/index.js +0 -546
- package/dist/esm/node_modules/@ckeditor/ckeditor5-upload/dist/index.js +0 -599
- package/dist/esm/node_modules/@ckeditor/ckeditor5-utils/dist/index.js +0 -5770
- package/dist/esm/node_modules/@ckeditor/ckeditor5-watchdog/dist/index.js +0 -1096
- package/dist/esm/node_modules/@ckeditor/ckeditor5-widget/dist/index.js +0 -2994
- package/dist/esm/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +0 -60
- package/dist/esm/node_modules/@dnd-kit/core/dist/core.esm.js +0 -3907
- package/dist/esm/node_modules/@dnd-kit/modifiers/dist/modifiers.esm.js +0 -46
- package/dist/esm/node_modules/@dnd-kit/sortable/dist/sortable.esm.js +0 -661
- package/dist/esm/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +0 -332
- package/dist/esm/node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-collapsible/dist/index.js +0 -146
- package/dist/esm/node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-aspect-ratio/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-aspect-ratio/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-avatar/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-avatar/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/primitive/dist/index.js +0 -11
- package/dist/esm/node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-presence/dist/index.js +0 -131
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/primitive/dist/index.js +0 -11
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-arrow/dist/index.js +0 -25
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +0 -212
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-focus-guards/dist/index.js +0 -30
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-focus-scope/dist/index.js +0 -208
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-menu/dist/index.js +0 -835
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-popper/dist/index.js +0 -284
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-portal/dist/index.js +0 -18
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-presence/dist/index.js +0 -131
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-roving-focus/dist/index.js +0 -224
- package/dist/esm/node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-slot/dist/index.js +0 -89
- package/dist/esm/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-primitive/dist/index.js +0 -43
- package/dist/esm/node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-collection/dist/index.js +0 -71
- package/dist/esm/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-primitive/dist/index.js +0 -43
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/primitive/dist/index.js +0 -11
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-arrow/dist/index.js +0 -25
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +0 -212
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-focus-guards/dist/index.js +0 -30
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-focus-scope/dist/index.js +0 -208
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-menu/dist/index.js +0 -835
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-popper/dist/index.js +0 -284
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-portal/dist/index.js +0 -18
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-presence/dist/index.js +0 -131
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-roving-focus/dist/index.js +0 -224
- package/dist/esm/node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-slot/dist/index.js +0 -89
- package/dist/esm/node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/primitive/dist/index.js +0 -11
- package/dist/esm/node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +0 -212
- package/dist/esm/node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-presence/dist/index.js +0 -131
- package/dist/esm/node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-visually-hidden/dist/index.js +0 -35
- package/dist/esm/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-collection/dist/index.js +0 -71
- package/dist/esm/node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/primitive/dist/index.js +0 -11
- package/dist/esm/node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/react-presence/dist/index.js +0 -131
- package/dist/esm/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-collection/dist/index.js +0 -71
- package/dist/esm/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-separator/dist/index.js +0 -30
- package/dist/esm/node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-slider/node_modules/@radix-ui/primitive/dist/index.js +0 -11
- package/dist/esm/node_modules/@radix-ui/react-slot/dist/index.js +0 -114
- package/dist/esm/node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-collection/dist/index.js +0 -71
- package/dist/esm/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-primitive/dist/index.js +0 -43
- package/dist/esm/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-primitive/dist/index.js +0 -40
- package/dist/esm/node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-slot/dist/index.js +0 -90
- package/dist/esm/node_modules/@tiptap/extension-table/dist/table/index.js +0 -452
- package/dist/esm/node_modules/ckeditor5/dist/ckeditor5.css.js +0 -6
- package/dist/esm/node_modules/color-convert/conversions.js +0 -852
- package/dist/esm/node_modules/color-convert/index.js +0 -94
- package/dist/esm/node_modules/color-convert/route.js +0 -108
- package/dist/esm/node_modules/color-name/index.js +0 -161
- package/dist/esm/node_modules/color-parse/index.js +0 -169
- package/dist/esm/node_modules/dompurify/dist/purify.cjs.js +0 -1359
- package/dist/esm/node_modules/fast-deep-equal/es6/react.js +0 -83
- package/dist/esm/node_modules/isomorphic-dompurify/browser.js +0 -13
- package/dist/esm/node_modules/lodash/_arrayEach.js +0 -33
- package/dist/esm/node_modules/lodash/_baseSlice.js +0 -42
- package/dist/esm/node_modules/lodash/_castFunction.js +0 -26
- package/dist/esm/node_modules/lodash/_createFind.js +0 -39
- package/dist/esm/node_modules/lodash/find.js +0 -55
- package/dist/esm/node_modules/lodash/findIndex.js +0 -69
- package/dist/esm/node_modules/lodash/forEach.js +0 -56
- package/dist/esm/node_modules/lodash/isEmpty.js +0 -96
- package/dist/esm/node_modules/lodash/join.js +0 -37
- package/dist/esm/node_modules/lodash/take.js +0 -50
- package/dist/esm/node_modules/lodash/toInteger.js +0 -48
- package/dist/esm/node_modules/lodash/unzip.js +0 -61
- package/dist/esm/node_modules/lodash/zip.js +0 -35
- package/dist/esm/node_modules/lodash-es/_DataView.js +0 -7
- package/dist/esm/node_modules/lodash-es/_Hash.js +0 -32
- package/dist/esm/node_modules/lodash-es/_ListCache.js +0 -32
- package/dist/esm/node_modules/lodash-es/_Map.js +0 -7
- package/dist/esm/node_modules/lodash-es/_MapCache.js +0 -32
- package/dist/esm/node_modules/lodash-es/_Promise.js +0 -7
- package/dist/esm/node_modules/lodash-es/_Set.js +0 -7
- package/dist/esm/node_modules/lodash-es/_SetCache.js +0 -27
- package/dist/esm/node_modules/lodash-es/_Stack.js +0 -27
- package/dist/esm/node_modules/lodash-es/_Symbol.js +0 -6
- package/dist/esm/node_modules/lodash-es/_Uint8Array.js +0 -6
- package/dist/esm/node_modules/lodash-es/_WeakMap.js +0 -7
- package/dist/esm/node_modules/lodash-es/_apply.js +0 -21
- package/dist/esm/node_modules/lodash-es/_arrayEach.js +0 -22
- package/dist/esm/node_modules/lodash-es/_arrayFilter.js +0 -25
- package/dist/esm/node_modules/lodash-es/_arrayLikeKeys.js +0 -49
- package/dist/esm/node_modules/lodash-es/_arrayMap.js +0 -21
- package/dist/esm/node_modules/lodash-es/_arrayPush.js +0 -20
- package/dist/esm/node_modules/lodash-es/_arraySome.js +0 -23
- package/dist/esm/node_modules/lodash-es/_asciiToArray.js +0 -12
- package/dist/esm/node_modules/lodash-es/_assignMergeValue.js +0 -20
- package/dist/esm/node_modules/lodash-es/_assignValue.js +0 -28
- package/dist/esm/node_modules/lodash-es/_assocIndexOf.js +0 -21
- package/dist/esm/node_modules/lodash-es/_baseAssign.js +0 -17
- package/dist/esm/node_modules/lodash-es/_baseAssignIn.js +0 -17
- package/dist/esm/node_modules/lodash-es/_baseAssignValue.js +0 -25
- package/dist/esm/node_modules/lodash-es/_baseClone.js +0 -166
- package/dist/esm/node_modules/lodash-es/_baseCreate.js +0 -30
- package/dist/esm/node_modules/lodash-es/_baseEach.js +0 -14
- package/dist/esm/node_modules/lodash-es/_baseFor.js +0 -16
- package/dist/esm/node_modules/lodash-es/_baseForOwn.js +0 -16
- package/dist/esm/node_modules/lodash-es/_baseGet.js +0 -24
- package/dist/esm/node_modules/lodash-es/_baseGetAllKeys.js +0 -20
- package/dist/esm/node_modules/lodash-es/_baseGetTag.js +0 -28
- package/dist/esm/node_modules/lodash-es/_baseHasIn.js +0 -13
- package/dist/esm/node_modules/lodash-es/_baseIsArguments.js +0 -18
- package/dist/esm/node_modules/lodash-es/_baseIsEqual.js +0 -28
- package/dist/esm/node_modules/lodash-es/_baseIsEqualDeep.js +0 -83
- package/dist/esm/node_modules/lodash-es/_baseIsMap.js +0 -18
- package/dist/esm/node_modules/lodash-es/_baseIsMatch.js +0 -59
- package/dist/esm/node_modules/lodash-es/_baseIsNative.js +0 -47
- package/dist/esm/node_modules/lodash-es/_baseIsSet.js +0 -18
- package/dist/esm/node_modules/lodash-es/_baseIsTypedArray.js +0 -60
- package/dist/esm/node_modules/lodash-es/_baseIteratee.js +0 -31
- package/dist/esm/node_modules/lodash-es/_baseKeys.js +0 -30
- package/dist/esm/node_modules/lodash-es/_baseKeysIn.js +0 -33
- package/dist/esm/node_modules/lodash-es/_baseMap.js +0 -22
- package/dist/esm/node_modules/lodash-es/_baseMatches.js +0 -22
- package/dist/esm/node_modules/lodash-es/_baseMatchesProperty.js +0 -33
- package/dist/esm/node_modules/lodash-es/_baseMerge.js +0 -42
- package/dist/esm/node_modules/lodash-es/_baseMergeDeep.js +0 -94
- package/dist/esm/node_modules/lodash-es/_baseProperty.js +0 -14
- package/dist/esm/node_modules/lodash-es/_basePropertyDeep.js +0 -16
- package/dist/esm/node_modules/lodash-es/_baseRest.js +0 -17
- package/dist/esm/node_modules/lodash-es/_baseSet.js +0 -51
- package/dist/esm/node_modules/lodash-es/_baseSetToString.js +0 -22
- package/dist/esm/node_modules/lodash-es/_baseSlice.js +0 -31
- package/dist/esm/node_modules/lodash-es/_baseTimes.js +0 -20
- package/dist/esm/node_modules/lodash-es/_baseToString.js +0 -34
- package/dist/esm/node_modules/lodash-es/_baseTrim.js +0 -19
- package/dist/esm/node_modules/lodash-es/_baseUnary.js +0 -14
- package/dist/esm/node_modules/lodash-es/_baseUnset.js +0 -20
- package/dist/esm/node_modules/lodash-es/_cacheHas.js +0 -13
- package/dist/esm/node_modules/lodash-es/_castPath.js +0 -21
- package/dist/esm/node_modules/lodash-es/_castSlice.js +0 -18
- package/dist/esm/node_modules/lodash-es/_cloneArrayBuffer.js +0 -16
- package/dist/esm/node_modules/lodash-es/_cloneBuffer.js +0 -35
- package/dist/esm/node_modules/lodash-es/_cloneDataView.js +0 -16
- package/dist/esm/node_modules/lodash-es/_cloneRegExp.js +0 -17
- package/dist/esm/node_modules/lodash-es/_cloneSymbol.js +0 -18
- package/dist/esm/node_modules/lodash-es/_cloneTypedArray.js +0 -16
- package/dist/esm/node_modules/lodash-es/_copyArray.js +0 -20
- package/dist/esm/node_modules/lodash-es/_copyObject.js +0 -38
- package/dist/esm/node_modules/lodash-es/_copySymbols.js +0 -16
- package/dist/esm/node_modules/lodash-es/_copySymbolsIn.js +0 -16
- package/dist/esm/node_modules/lodash-es/_coreJsData.js +0 -6
- package/dist/esm/node_modules/lodash-es/_createAssigner.js +0 -37
- package/dist/esm/node_modules/lodash-es/_createBaseEach.js +0 -32
- package/dist/esm/node_modules/lodash-es/_createBaseFor.js +0 -25
- package/dist/esm/node_modules/lodash-es/_createCaseFirst.js +0 -33
- package/dist/esm/node_modules/lodash-es/_defineProperty.js +0 -11
- package/dist/esm/node_modules/lodash-es/_equalArrays.js +0 -84
- package/dist/esm/node_modules/lodash-es/_equalByTag.js +0 -112
- package/dist/esm/node_modules/lodash-es/_equalObjects.js +0 -90
- package/dist/esm/node_modules/lodash-es/_freeGlobal.js +0 -4
- package/dist/esm/node_modules/lodash-es/_getAllKeys.js +0 -16
- package/dist/esm/node_modules/lodash-es/_getAllKeysIn.js +0 -17
- package/dist/esm/node_modules/lodash-es/_getMapData.js +0 -18
- package/dist/esm/node_modules/lodash-es/_getMatchData.js +0 -24
- package/dist/esm/node_modules/lodash-es/_getNative.js +0 -17
- package/dist/esm/node_modules/lodash-es/_getPrototype.js +0 -6
- package/dist/esm/node_modules/lodash-es/_getRawTag.js +0 -46
- package/dist/esm/node_modules/lodash-es/_getSymbols.js +0 -30
- package/dist/esm/node_modules/lodash-es/_getSymbolsIn.js +0 -25
- package/dist/esm/node_modules/lodash-es/_getTag.js +0 -58
- package/dist/esm/node_modules/lodash-es/_getValue.js +0 -13
- package/dist/esm/node_modules/lodash-es/_hasPath.js +0 -39
- package/dist/esm/node_modules/lodash-es/_hasUnicode.js +0 -26
- package/dist/esm/node_modules/lodash-es/_hashClear.js +0 -15
- package/dist/esm/node_modules/lodash-es/_hashDelete.js +0 -17
- package/dist/esm/node_modules/lodash-es/_hashGet.js +0 -30
- package/dist/esm/node_modules/lodash-es/_hashHas.js +0 -23
- package/dist/esm/node_modules/lodash-es/_hashSet.js +0 -23
- package/dist/esm/node_modules/lodash-es/_initCloneArray.js +0 -26
- package/dist/esm/node_modules/lodash-es/_initCloneByTag.js +0 -77
- package/dist/esm/node_modules/lodash-es/_initCloneObject.js +0 -18
- package/dist/esm/node_modules/lodash-es/_isIndex.js +0 -25
- package/dist/esm/node_modules/lodash-es/_isIterateeCall.js +0 -30
- package/dist/esm/node_modules/lodash-es/_isKey.js +0 -29
- package/dist/esm/node_modules/lodash-es/_isKeyable.js +0 -15
- package/dist/esm/node_modules/lodash-es/_isMasked.js +0 -20
- package/dist/esm/node_modules/lodash-es/_isPrototype.js +0 -18
- package/dist/esm/node_modules/lodash-es/_isStrictComparable.js +0 -15
- package/dist/esm/node_modules/lodash-es/_listCacheClear.js +0 -13
- package/dist/esm/node_modules/lodash-es/_listCacheDelete.js +0 -35
- package/dist/esm/node_modules/lodash-es/_listCacheGet.js +0 -19
- package/dist/esm/node_modules/lodash-es/_listCacheHas.js +0 -16
- package/dist/esm/node_modules/lodash-es/_listCacheSet.js +0 -26
- package/dist/esm/node_modules/lodash-es/_mapCacheClear.js +0 -21
- package/dist/esm/node_modules/lodash-es/_mapCacheDelete.js +0 -18
- package/dist/esm/node_modules/lodash-es/_mapCacheGet.js +0 -16
- package/dist/esm/node_modules/lodash-es/_mapCacheHas.js +0 -16
- package/dist/esm/node_modules/lodash-es/_mapCacheSet.js +0 -22
- package/dist/esm/node_modules/lodash-es/_mapToArray.js +0 -18
- package/dist/esm/node_modules/lodash-es/_matchesStrictComparable.js +0 -20
- package/dist/esm/node_modules/lodash-es/_memoizeCapped.js +0 -26
- package/dist/esm/node_modules/lodash-es/_nativeCreate.js +0 -6
- package/dist/esm/node_modules/lodash-es/_nativeKeys.js +0 -6
- package/dist/esm/node_modules/lodash-es/_nativeKeysIn.js +0 -20
- package/dist/esm/node_modules/lodash-es/_nodeUtil.js +0 -30
- package/dist/esm/node_modules/lodash-es/_objectToString.js +0 -22
- package/dist/esm/node_modules/lodash-es/_overArg.js +0 -15
- package/dist/esm/node_modules/lodash-es/_overRest.js +0 -36
- package/dist/esm/node_modules/lodash-es/_parent.js +0 -16
- package/dist/esm/node_modules/lodash-es/_root.js +0 -9
- package/dist/esm/node_modules/lodash-es/_safeGet.js +0 -21
- package/dist/esm/node_modules/lodash-es/_setCacheAdd.js +0 -19
- package/dist/esm/node_modules/lodash-es/_setCacheHas.js +0 -14
- package/dist/esm/node_modules/lodash-es/_setToArray.js +0 -18
- package/dist/esm/node_modules/lodash-es/_setToString.js +0 -14
- package/dist/esm/node_modules/lodash-es/_shortOut.js +0 -37
- package/dist/esm/node_modules/lodash-es/_stackClear.js +0 -15
- package/dist/esm/node_modules/lodash-es/_stackDelete.js +0 -18
- package/dist/esm/node_modules/lodash-es/_stackGet.js +0 -14
- package/dist/esm/node_modules/lodash-es/_stackHas.js +0 -14
- package/dist/esm/node_modules/lodash-es/_stackSet.js +0 -34
- package/dist/esm/node_modules/lodash-es/_stringToArray.js +0 -18
- package/dist/esm/node_modules/lodash-es/_stringToPath.js +0 -27
- package/dist/esm/node_modules/lodash-es/_toKey.js +0 -18
- package/dist/esm/node_modules/lodash-es/_toSource.js +0 -26
- package/dist/esm/node_modules/lodash-es/_trimmedEndIndex.js +0 -19
- package/dist/esm/node_modules/lodash-es/_unicodeToArray.js +0 -40
- package/dist/esm/node_modules/lodash-es/assignIn.js +0 -40
- package/dist/esm/node_modules/lodash-es/clone.js +0 -36
- package/dist/esm/node_modules/lodash-es/cloneDeep.js +0 -29
- package/dist/esm/node_modules/lodash-es/cloneDeepWith.js +0 -40
- package/dist/esm/node_modules/lodash-es/constant.js +0 -26
- package/dist/esm/node_modules/lodash-es/debounce.js +0 -191
- package/dist/esm/node_modules/lodash-es/eq.js +0 -37
- package/dist/esm/node_modules/lodash-es/escapeRegExp.js +0 -32
- package/dist/esm/node_modules/lodash-es/get.js +0 -33
- package/dist/esm/node_modules/lodash-es/hasIn.js +0 -34
- package/dist/esm/node_modules/lodash-es/identity.js +0 -21
- package/dist/esm/node_modules/lodash-es/isArguments.js +0 -36
- package/dist/esm/node_modules/lodash-es/isArray.js +0 -26
- package/dist/esm/node_modules/lodash-es/isArrayLike.js +0 -33
- package/dist/esm/node_modules/lodash-es/isArrayLikeObject.js +0 -33
- package/dist/esm/node_modules/lodash-es/isBuffer.js +0 -38
- package/dist/esm/node_modules/lodash-es/isElement.js +0 -25
- package/dist/esm/node_modules/lodash-es/isEqual.js +0 -35
- package/dist/esm/node_modules/lodash-es/isEqualWith.js +0 -41
- package/dist/esm/node_modules/lodash-es/isFunction.js +0 -37
- package/dist/esm/node_modules/lodash-es/isLength.js +0 -35
- package/dist/esm/node_modules/lodash-es/isMap.js +0 -27
- package/dist/esm/node_modules/lodash-es/isObject.js +0 -31
- package/dist/esm/node_modules/lodash-es/isObjectLike.js +0 -29
- package/dist/esm/node_modules/lodash-es/isPlainObject.js +0 -62
- package/dist/esm/node_modules/lodash-es/isSet.js +0 -27
- package/dist/esm/node_modules/lodash-es/isString.js +0 -30
- package/dist/esm/node_modules/lodash-es/isSymbol.js +0 -29
- package/dist/esm/node_modules/lodash-es/isTypedArray.js +0 -27
- package/dist/esm/node_modules/lodash-es/keys.js +0 -37
- package/dist/esm/node_modules/lodash-es/keysIn.js +0 -32
- package/dist/esm/node_modules/lodash-es/last.js +0 -20
- package/dist/esm/node_modules/lodash-es/map.js +0 -53
- package/dist/esm/node_modules/lodash-es/mapValues.js +0 -43
- package/dist/esm/node_modules/lodash-es/memoize.js +0 -73
- package/dist/esm/node_modules/lodash-es/merge.js +0 -39
- package/dist/esm/node_modules/lodash-es/now.js +0 -23
- package/dist/esm/node_modules/lodash-es/property.js +0 -32
- package/dist/esm/node_modules/lodash-es/set.js +0 -35
- package/dist/esm/node_modules/lodash-es/stubArray.js +0 -23
- package/dist/esm/node_modules/lodash-es/stubFalse.js +0 -18
- package/dist/esm/node_modules/lodash-es/throttle.js +0 -69
- package/dist/esm/node_modules/lodash-es/toNumber.js +0 -64
- package/dist/esm/node_modules/lodash-es/toPlainObject.js +0 -32
- package/dist/esm/node_modules/lodash-es/toString.js +0 -28
- package/dist/esm/node_modules/lodash-es/unset.js +0 -34
- package/dist/esm/node_modules/lodash-es/upperFirst.js +0 -22
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/align-center.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/align-justify.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/align-left.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/align-right.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/badge-help.js +0 -24
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/chrome.js +0 -20
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/circle-help.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-audio-2.js +0 -20
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-audio.js +0 -24
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-badge-2.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-check-2.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-code-2.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-json-2.js +0 -25
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-json.js +0 -25
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-key-2.js +0 -20
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-lock-2.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-minus-2.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-plus-2.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-question.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-search-2.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-type-2.js +0 -20
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-video-2.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-video.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-volume-2.js +0 -20
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-warning.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/file-x-2.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/fingerprint.js +0 -24
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/flip-horizontal.js +0 -21
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/flip-vertical.js +0 -21
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/grab.js +0 -23
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/indent-decrease.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/indent-increase.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/letter-text.js +0 -20
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/mail-question.js +0 -25
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/message-circle-question.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/shield-question.js +0 -24
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/text.js +0 -18
- package/dist/esm/node_modules/lucide-react/dist/esm/icons/wrap-text.js +0 -19
- package/dist/esm/node_modules/lucide-react/dist/esm/shared/src/utils.js +0 -21
- package/dist/esm/node_modules/react-day-picker/dist/esm/components/Button.js +0 -13
- package/dist/esm/node_modules/react-day-picker/dist/esm/useGetModifiers.js +0 -89
- package/dist/esm/node_modules/turndown/lib/turndown.es.js +0 -39
- package/dist/esm/node_modules/vanilla-colorful/lib/components/color-picker.js +0 -84
- package/dist/esm/node_modules/vanilla-colorful/lib/components/hue.js +0 -25
- package/dist/esm/node_modules/vanilla-colorful/lib/components/saturation.js +0 -32
- package/dist/esm/node_modules/vanilla-colorful/lib/components/slider.js +0 -106
- package/dist/esm/node_modules/vanilla-colorful/lib/entrypoints/hex.js +0 -18
- package/dist/esm/node_modules/vanilla-colorful/lib/styles/color-picker.js +0 -3
- package/dist/esm/node_modules/vanilla-colorful/lib/styles/hue.js +0 -3
- package/dist/esm/node_modules/vanilla-colorful/lib/styles/saturation.js +0 -3
- package/dist/esm/node_modules/vanilla-colorful/lib/utils/compare.js +0 -25
- package/dist/esm/node_modules/vanilla-colorful/lib/utils/convert.js +0 -75
- package/dist/esm/node_modules/vanilla-colorful/lib/utils/dom.js +0 -18
- package/dist/esm/node_modules/vanilla-colorful/lib/utils/math.js +0 -11
- package/dist/esm/worker.js +0 -23
- /package/dist/cjs/components/ui/data-table/hooks/{contextHooks.js → context-hooks.js} +0 -0
- /package/dist/cjs/node_modules/{@tiptap/extension-emoji/node_modules/emoji-regex → emoji-regex}/index.js +0 -0
- /package/dist/esm/components/ui/data-table/hooks/{contextHooks.js → context-hooks.js} +0 -0
- /package/dist/esm/node_modules/{@tiptap/extension-emoji/node_modules/emoji-regex → emoji-regex}/index.js +0 -0
|
@@ -1,719 +0,0 @@
|
|
|
1
|
-
import React__default, { memo, forwardRef, useRef, useEffect } from 'react';
|
|
2
|
-
import { createIntegrationUsageDataPlugin, uid, once, createDefer, isCKEditorFreeLicense, appendExtraPluginsToEditorConfig } from '../../ckeditor5-integrations-common/dist/index.js';
|
|
3
|
-
|
|
4
|
-
var __defProp = Object.defineProperty;
|
|
5
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
6
|
-
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
7
|
-
/**
|
|
8
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
9
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
10
|
-
*/
|
|
11
|
-
const _LifeCycleElementSemaphore = class _LifeCycleElementSemaphore {
|
|
12
|
-
constructor(element, lifecycle) {
|
|
13
|
-
/**
|
|
14
|
-
* This should define async methods for initializing and destroying the editor.
|
|
15
|
-
* Essentially, it's an async version of basic React lifecycle methods like `componentDidMount`, `componentWillUnmount`.
|
|
16
|
-
*
|
|
17
|
-
* * Result of {@link LifeCycleAsyncOperators#mount} method is passed to {@link LifeCycleAsyncOperators#unmount} as an argument.
|
|
18
|
-
*/
|
|
19
|
-
__publicField(this, "_lifecycle");
|
|
20
|
-
/**
|
|
21
|
-
* This is the element instance that the editor uses for mounting. This element should contain the `ckeditorInstance` member
|
|
22
|
-
* once the editor has been successfully mounted to it. The semaphore ensures that a new instance of the editor, which will
|
|
23
|
-
* be assigned to this element by the {@link #_lifecycle:mount} method, will always be initialized after the successful
|
|
24
|
-
* destruction of the underlying `ckeditorInstance` that was previously mounted on this element.
|
|
25
|
-
*/
|
|
26
|
-
__publicField(this, "_element");
|
|
27
|
-
/**
|
|
28
|
-
* This is the lock mechanism utilized by the {@link #lock} and {@link #release} methods.
|
|
29
|
-
*
|
|
30
|
-
* * If the editor is not yet mounted and is awaiting mounting (for instance, when another editor is
|
|
31
|
-
* occupying the element), then it is null.
|
|
32
|
-
*
|
|
33
|
-
* * When the editor is mounted on the element, this variable holds an unresolved promise that will be
|
|
34
|
-
* resolved after the editor is destroyed.
|
|
35
|
-
*
|
|
36
|
-
* * Once the editor is destroyed (and it was previously mounted), the promise is resolved.
|
|
37
|
-
*/
|
|
38
|
-
__publicField(this, "_releaseLock", null);
|
|
39
|
-
/**
|
|
40
|
-
* This is the result of the {@link #_lifecycle:mount} function. This value should be reset to `null`
|
|
41
|
-
* once the semaphore is released. It is utilized to store certain data that must be removed following
|
|
42
|
-
* the destruction of the editor. This data may include the editor's instance, the assigned watchdog,
|
|
43
|
-
* or handles for additional window listeners.
|
|
44
|
-
*/
|
|
45
|
-
__publicField(this, "_value", null);
|
|
46
|
-
/**
|
|
47
|
-
* This is a list of callbacks that are triggered if the semaphore {@link #_lifecycle:mount} method executes successfully.
|
|
48
|
-
* It is utilized in scenarios where we need to assign certain properties to an editor that is currently in the process of mounting.
|
|
49
|
-
* An instance of such usage could be two-way binding. We aim to prevent the loss of all `setData` calls if the editor has not
|
|
50
|
-
* yet been mounted, therefore these calls will be executed immediately following the completion of the mounting process.
|
|
51
|
-
*/
|
|
52
|
-
__publicField(this, "_afterMountCallbacks", []);
|
|
53
|
-
/**
|
|
54
|
-
* This represents the actual mounting state of the semaphore. It is primarily used by the {@link #release} method to
|
|
55
|
-
* determine whether the initialization of the editor should be skipped or, if the editor is already initialized, the editor
|
|
56
|
-
* should be destroyed.
|
|
57
|
-
*
|
|
58
|
-
* * If `destroyedBeforeInitialization` is true, then the {@link #release} method was invoked before the editor began to mount.
|
|
59
|
-
* This often occurs in strict mode when we assign a promise to the {@link LifeCycleEditorElementSemaphore#_semaphores} map
|
|
60
|
-
* and the assigned `mount` callback has not yet been called. In this scenario, it is safe to skip the initialization of the editor
|
|
61
|
-
* and simply release the semaphore.
|
|
62
|
-
*
|
|
63
|
-
* * If `mountingInProgress` is a Promise, then the {@link #release} method was invoked after the initialization of the editor and
|
|
64
|
-
the editor must be destroyed before the semaphore is released.
|
|
65
|
-
*/
|
|
66
|
-
__publicField(this, "_state", {
|
|
67
|
-
destroyedBeforeInitialization: false,
|
|
68
|
-
mountingInProgress: null
|
|
69
|
-
});
|
|
70
|
-
/**
|
|
71
|
-
* Inverse of {@link #_lock} method that tries to destroy attached editor.
|
|
72
|
-
*
|
|
73
|
-
* * If editor is being already attached to element (or is in attaching process) then after fully initialization of editor
|
|
74
|
-
* destroy is performed and semaphore is released. The {@link #_lifecycle} unmount method is called.
|
|
75
|
-
*
|
|
76
|
-
* * If editor is being destroyed before initialization then it does nothing but sets `destroyedBeforeInitialization` flag that
|
|
77
|
-
* will be later checked by {@link #_lock} method in initialization. The {@link #_lifecycle} unmount method is not called.
|
|
78
|
-
*
|
|
79
|
-
* *Important note:*
|
|
80
|
-
*
|
|
81
|
-
* It’s really important to keep this method *sync*. If we make this method *async*, it won’t work well because
|
|
82
|
-
* it will cause problems when we’re trying to set up the {@link LifeCycleEditorElementSemaphore#_semaphores} map entries.
|
|
83
|
-
*/
|
|
84
|
-
__publicField(this, "release", once(() => {
|
|
85
|
-
const { _releaseLock, _state, _element, _lifecycle } = this;
|
|
86
|
-
if (_state.mountingInProgress) {
|
|
87
|
-
_state.mountingInProgress.then(() => _lifecycle.unmount({
|
|
88
|
-
element: _element,
|
|
89
|
-
// Mount result might be overridden by watchdog during restart so use instance variable.
|
|
90
|
-
mountResult: this.value
|
|
91
|
-
})).catch((error) => {
|
|
92
|
-
console.error("CKEditor unmounting error:", error);
|
|
93
|
-
}).then(_releaseLock.resolve).then(() => {
|
|
94
|
-
this._value = null;
|
|
95
|
-
});
|
|
96
|
-
} else {
|
|
97
|
-
_state.destroyedBeforeInitialization = true;
|
|
98
|
-
_releaseLock.resolve();
|
|
99
|
-
}
|
|
100
|
-
}));
|
|
101
|
-
this._element = element;
|
|
102
|
-
this._lifecycle = lifecycle;
|
|
103
|
-
this._lock();
|
|
104
|
-
}
|
|
105
|
-
/**
|
|
106
|
-
* Getter for {@link #_value}.
|
|
107
|
-
*/
|
|
108
|
-
get value() {
|
|
109
|
-
return this._value;
|
|
110
|
-
}
|
|
111
|
-
/**
|
|
112
|
-
* Resets the semaphore to its initial state.
|
|
113
|
-
*/
|
|
114
|
-
discard() {
|
|
115
|
-
this._value = null;
|
|
116
|
-
this._releaseLock = null;
|
|
117
|
-
this._afterMountCallbacks = [];
|
|
118
|
-
this._state = {
|
|
119
|
-
destroyedBeforeInitialization: false,
|
|
120
|
-
mountingInProgress: null
|
|
121
|
-
};
|
|
122
|
-
}
|
|
123
|
-
/**
|
|
124
|
-
* Occasionally, the Watchdog restarts the editor instance, resulting in a new instance being assigned to the semaphore.
|
|
125
|
-
* In terms of race conditions, it's generally safer to simply override the semaphore value rather than recreating it
|
|
126
|
-
* with a different one.
|
|
127
|
-
*/
|
|
128
|
-
unsafeSetValue(value) {
|
|
129
|
-
this._value = value;
|
|
130
|
-
this._afterMountCallbacks.forEach((callback) => {
|
|
131
|
-
if (this._lifecycle.isValueValid && !this._lifecycle.isValueValid(value)) {
|
|
132
|
-
return;
|
|
133
|
-
}
|
|
134
|
-
callback(value);
|
|
135
|
-
});
|
|
136
|
-
this._afterMountCallbacks = [];
|
|
137
|
-
}
|
|
138
|
-
/**
|
|
139
|
-
* This registers a callback that will be triggered after the editor has been successfully mounted.
|
|
140
|
-
*
|
|
141
|
-
* * If the editor is already mounted, the callback will be executed immediately.
|
|
142
|
-
* * If the editor is in the process of mounting, the callback will be executed upon successful mounting.
|
|
143
|
-
* * If the editor is never mounted, the passed callback will not be executed.
|
|
144
|
-
* * If an exception is thrown within the callback, it will be re-thrown in the semaphore.
|
|
145
|
-
* * If the value is not valid (determined by isValueValid), the callback will not be executed.
|
|
146
|
-
*/
|
|
147
|
-
runAfterMount(callback) {
|
|
148
|
-
const { _value, _afterMountCallbacks } = this;
|
|
149
|
-
if (_value) {
|
|
150
|
-
if (this._lifecycle.isValueValid && !this._lifecycle.isValueValid(_value)) {
|
|
151
|
-
return;
|
|
152
|
-
}
|
|
153
|
-
callback(_value);
|
|
154
|
-
} else {
|
|
155
|
-
_afterMountCallbacks.push(callback);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
/**
|
|
159
|
-
* This method is used to inform other components that the {@link #_element} will be used by the editor,
|
|
160
|
-
* which is initialized by the {@link #_lifecycle} methods.
|
|
161
|
-
*
|
|
162
|
-
* * If an editor is already present on the provided element, the initialization of the current one
|
|
163
|
-
* will be postponed until the previous one is destroyed.
|
|
164
|
-
*
|
|
165
|
-
* * If the element is empty and does not have an editor attached to it, the currently locked editor will
|
|
166
|
-
* be mounted immediately.
|
|
167
|
-
*
|
|
168
|
-
* After the successful initialization of the editor and the assignment of the {@link #_value} member,
|
|
169
|
-
* the `onReady` lifecycle method is called.
|
|
170
|
-
*
|
|
171
|
-
* *Important note:*
|
|
172
|
-
*
|
|
173
|
-
* It’s really important to keep this method *sync*. If we make this method *async*, it won’t work well because
|
|
174
|
-
* it will cause problems when we’re trying to set up the {@link LifeCycleEditorElementSemaphore#_semaphores} map entries.
|
|
175
|
-
*/
|
|
176
|
-
_lock() {
|
|
177
|
-
const { _semaphores } = _LifeCycleElementSemaphore;
|
|
178
|
-
const { _state, _element, _lifecycle } = this;
|
|
179
|
-
const prevElementSemaphore = _semaphores.get(_element) || Promise.resolve(null);
|
|
180
|
-
const releaseLock = createDefer();
|
|
181
|
-
this._releaseLock = releaseLock;
|
|
182
|
-
const newElementSemaphore = prevElementSemaphore.then(() => {
|
|
183
|
-
if (_state.destroyedBeforeInitialization) {
|
|
184
|
-
return Promise.resolve(void 0);
|
|
185
|
-
}
|
|
186
|
-
_state.mountingInProgress = _lifecycle.mount().then((mountResult) => {
|
|
187
|
-
if (mountResult) {
|
|
188
|
-
this.unsafeSetValue(mountResult);
|
|
189
|
-
}
|
|
190
|
-
return mountResult;
|
|
191
|
-
});
|
|
192
|
-
return _state.mountingInProgress;
|
|
193
|
-
}).then(async (mountResult) => {
|
|
194
|
-
if (mountResult && _lifecycle.afterMount) {
|
|
195
|
-
await _lifecycle.afterMount({
|
|
196
|
-
element: _element,
|
|
197
|
-
mountResult
|
|
198
|
-
});
|
|
199
|
-
}
|
|
200
|
-
}).then(() => releaseLock.promise).catch((error) => {
|
|
201
|
-
console.error("CKEditor mounting error:", error);
|
|
202
|
-
}).then(() => {
|
|
203
|
-
if (_semaphores.get(_element) === newElementSemaphore) {
|
|
204
|
-
_semaphores.delete(_element);
|
|
205
|
-
}
|
|
206
|
-
});
|
|
207
|
-
_semaphores.set(_element, newElementSemaphore);
|
|
208
|
-
}
|
|
209
|
-
};
|
|
210
|
-
/**
|
|
211
|
-
* This is a map of elements associated with promises. It informs the semaphore that the underlying HTML element, used as a key,
|
|
212
|
-
* is currently in use by another editor. Each element is assigned a promise, which allows for the easy chaining of new
|
|
213
|
-
* editor instances on an element that is already in use by another instance. The process works as follows:
|
|
214
|
-
*
|
|
215
|
-
* 1. If an element is being used by an editor, then the initialization of a new editor
|
|
216
|
-
* instance is chained using the `.then()` method of the Promise.
|
|
217
|
-
*
|
|
218
|
-
* 2. If the editor associated with the underlying element is destroyed, then `Promise.resolve()` is called
|
|
219
|
-
* and the previously assigned `.then()` editor callback is executed.
|
|
220
|
-
*
|
|
221
|
-
* @see {@link #lock} for more detailed information on the implementation.
|
|
222
|
-
*/
|
|
223
|
-
__publicField(_LifeCycleElementSemaphore, "_semaphores", /* @__PURE__ */ new Map());
|
|
224
|
-
let LifeCycleElementSemaphore = _LifeCycleElementSemaphore;
|
|
225
|
-
/**
|
|
226
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
227
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
228
|
-
*/
|
|
229
|
-
const ReactContextMetadataKey = "$__CKEditorReactContextMetadata";
|
|
230
|
-
function withCKEditorReactContextMetadata(metadata, config) {
|
|
231
|
-
return {
|
|
232
|
-
...config,
|
|
233
|
-
[ReactContextMetadataKey]: metadata
|
|
234
|
-
};
|
|
235
|
-
}
|
|
236
|
-
/**
|
|
237
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
238
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
239
|
-
*/
|
|
240
|
-
const ContextWatchdogContext = React__default.createContext(null);
|
|
241
|
-
const isContextWatchdogValue = (obj) => !!obj && typeof obj === "object" && "status" in obj && ["initializing", "initialized", "error"].includes(obj.status);
|
|
242
|
-
const isContextWatchdogValueWithStatus = (status) => (obj) => isContextWatchdogValue(obj) && obj.status === status;
|
|
243
|
-
const isContextWatchdogInitializing = isContextWatchdogValueWithStatus("initializing");
|
|
244
|
-
const isContextWatchdogReadyToUse = (obj) => isContextWatchdogValueWithStatus("initialized")(obj) && obj.watchdog.state === "ready";
|
|
245
|
-
/**
|
|
246
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
247
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
248
|
-
*/
|
|
249
|
-
const ReactIntegrationUsageDataPlugin = createIntegrationUsageDataPlugin(
|
|
250
|
-
"react",
|
|
251
|
-
{
|
|
252
|
-
version: "10.0.0",
|
|
253
|
-
frameworkVersion: React__default.version
|
|
254
|
-
}
|
|
255
|
-
);
|
|
256
|
-
/**
|
|
257
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
258
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
259
|
-
*/
|
|
260
|
-
function appendAllIntegrationPluginsToConfig(editorConfig) {
|
|
261
|
-
if (isCKEditorFreeLicense(editorConfig.licenseKey)) {
|
|
262
|
-
return editorConfig;
|
|
263
|
-
}
|
|
264
|
-
return appendExtraPluginsToEditorConfig(editorConfig, [
|
|
265
|
-
/**
|
|
266
|
-
* This part of the code is not executed in open-source implementations using a GPL key.
|
|
267
|
-
* It only runs when a specific license key is provided. If you are uncertain whether
|
|
268
|
-
* this applies to your installation, please contact our support team.
|
|
269
|
-
*/
|
|
270
|
-
ReactIntegrationUsageDataPlugin
|
|
271
|
-
]);
|
|
272
|
-
}
|
|
273
|
-
/**
|
|
274
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
275
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
276
|
-
*/
|
|
277
|
-
const REACT_INTEGRATION_READ_ONLY_LOCK_ID$1 = "Lock from React integration (@ckeditor/ckeditor5-react)";
|
|
278
|
-
class CKEditor extends React__default.Component {
|
|
279
|
-
constructor(props) {
|
|
280
|
-
super(props);
|
|
281
|
-
/**
|
|
282
|
-
* After mounting the editor, the variable will contain a reference to the created editor.
|
|
283
|
-
* @see: https://ckeditor.com/docs/ckeditor5/latest/api/module_core_editor_editor-Editor.html
|
|
284
|
-
*/
|
|
285
|
-
__publicField(this, "domContainer", React__default.createRef());
|
|
286
|
-
/**
|
|
287
|
-
* Unlocks element in editor semaphore after destroy editor instance.
|
|
288
|
-
*/
|
|
289
|
-
__publicField(this, "editorSemaphore", null);
|
|
290
|
-
this._checkVersion();
|
|
291
|
-
}
|
|
292
|
-
/**
|
|
293
|
-
* Checks if the CKEditor version used in the application is compatible with the component.
|
|
294
|
-
*/
|
|
295
|
-
_checkVersion() {
|
|
296
|
-
const { CKEDITOR_VERSION } = window;
|
|
297
|
-
if (!CKEDITOR_VERSION) {
|
|
298
|
-
return console.warn('Cannot find the "CKEDITOR_VERSION" in the "window" scope.');
|
|
299
|
-
}
|
|
300
|
-
const [major] = CKEDITOR_VERSION.split(".").map(Number);
|
|
301
|
-
if (major >= 42 || CKEDITOR_VERSION.startsWith("0.0.0")) {
|
|
302
|
-
return;
|
|
303
|
-
}
|
|
304
|
-
console.warn("The <CKEditor> component requires using CKEditor 5 in version 42+ or nightly build.");
|
|
305
|
-
}
|
|
306
|
-
get _semaphoreValue() {
|
|
307
|
-
const { editorSemaphore } = this;
|
|
308
|
-
return editorSemaphore ? editorSemaphore.value : null;
|
|
309
|
-
}
|
|
310
|
-
/**
|
|
311
|
-
* An watchdog instance.
|
|
312
|
-
*/
|
|
313
|
-
get watchdog() {
|
|
314
|
-
const { _semaphoreValue } = this;
|
|
315
|
-
return _semaphoreValue ? _semaphoreValue.watchdog : null;
|
|
316
|
-
}
|
|
317
|
-
/**
|
|
318
|
-
* An editor instance.
|
|
319
|
-
*/
|
|
320
|
-
get editor() {
|
|
321
|
-
const { _semaphoreValue } = this;
|
|
322
|
-
return _semaphoreValue ? _semaphoreValue.instance : null;
|
|
323
|
-
}
|
|
324
|
-
/**
|
|
325
|
-
* The CKEditor component should not be updated by React itself.
|
|
326
|
-
* However, if the component identifier changes, the whole structure should be created once again.
|
|
327
|
-
*/
|
|
328
|
-
shouldComponentUpdate(nextProps) {
|
|
329
|
-
const { props, editorSemaphore } = this;
|
|
330
|
-
if (nextProps.id !== props.id) {
|
|
331
|
-
return true;
|
|
332
|
-
}
|
|
333
|
-
if (nextProps.disableWatchdog !== props.disableWatchdog) {
|
|
334
|
-
return true;
|
|
335
|
-
}
|
|
336
|
-
if (editorSemaphore) {
|
|
337
|
-
editorSemaphore.runAfterMount(({ instance }) => {
|
|
338
|
-
if (this._shouldUpdateEditorData(props, nextProps, instance)) {
|
|
339
|
-
instance.data.set(nextProps.data);
|
|
340
|
-
}
|
|
341
|
-
});
|
|
342
|
-
if ("disabled" in nextProps) {
|
|
343
|
-
editorSemaphore.runAfterMount(({ instance }) => {
|
|
344
|
-
if (nextProps.disabled) {
|
|
345
|
-
instance.enableReadOnlyMode(REACT_INTEGRATION_READ_ONLY_LOCK_ID$1);
|
|
346
|
-
} else {
|
|
347
|
-
instance.disableReadOnlyMode(REACT_INTEGRATION_READ_ONLY_LOCK_ID$1);
|
|
348
|
-
}
|
|
349
|
-
});
|
|
350
|
-
}
|
|
351
|
-
}
|
|
352
|
-
return false;
|
|
353
|
-
}
|
|
354
|
-
/**
|
|
355
|
-
* Initialize the editor when the component is mounted.
|
|
356
|
-
*/
|
|
357
|
-
componentDidMount() {
|
|
358
|
-
if (!isContextWatchdogInitializing(this.context)) {
|
|
359
|
-
this._initLifeCycleSemaphore();
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
/**
|
|
363
|
-
* Re-render the entire component once again. The old editor will be destroyed and the new one will be created.
|
|
364
|
-
*/
|
|
365
|
-
componentDidUpdate() {
|
|
366
|
-
if (!isContextWatchdogInitializing(this.context)) {
|
|
367
|
-
this._initLifeCycleSemaphore();
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
/**
|
|
371
|
-
* Destroy the editor before unmounting the component.
|
|
372
|
-
*/
|
|
373
|
-
componentWillUnmount() {
|
|
374
|
-
this._unlockLifeCycleSemaphore();
|
|
375
|
-
}
|
|
376
|
-
/**
|
|
377
|
-
* Async destroy attached editor and unlock element semaphore.
|
|
378
|
-
*/
|
|
379
|
-
_unlockLifeCycleSemaphore() {
|
|
380
|
-
if (this.editorSemaphore) {
|
|
381
|
-
this.editorSemaphore.release();
|
|
382
|
-
this.editorSemaphore = null;
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
/**
|
|
386
|
-
* Unlocks previous editor semaphore and creates new one..
|
|
387
|
-
*/
|
|
388
|
-
_initLifeCycleSemaphore() {
|
|
389
|
-
this._unlockLifeCycleSemaphore();
|
|
390
|
-
this.editorSemaphore = new LifeCycleElementSemaphore(this.domContainer.current, {
|
|
391
|
-
isValueValid: (value) => value && !!value.instance,
|
|
392
|
-
mount: async () => {
|
|
393
|
-
var _a, _b;
|
|
394
|
-
try {
|
|
395
|
-
return await this._initializeEditor();
|
|
396
|
-
} catch (error) {
|
|
397
|
-
(_b = (_a = this.props).onError) == null ? void 0 : _b.call(_a, error, { phase: "initialization", willEditorRestart: false });
|
|
398
|
-
throw error;
|
|
399
|
-
}
|
|
400
|
-
},
|
|
401
|
-
afterMount: ({ mountResult }) => {
|
|
402
|
-
const { onReady } = this.props;
|
|
403
|
-
if (onReady && this.domContainer.current !== null) {
|
|
404
|
-
onReady(mountResult.instance);
|
|
405
|
-
}
|
|
406
|
-
},
|
|
407
|
-
unmount: async ({ element, mountResult }) => {
|
|
408
|
-
const { onAfterDestroy } = this.props;
|
|
409
|
-
try {
|
|
410
|
-
await this._destroyEditor(mountResult);
|
|
411
|
-
element.innerHTML = "";
|
|
412
|
-
} finally {
|
|
413
|
-
if (onAfterDestroy) {
|
|
414
|
-
onAfterDestroy(mountResult.instance);
|
|
415
|
-
}
|
|
416
|
-
}
|
|
417
|
-
}
|
|
418
|
-
});
|
|
419
|
-
}
|
|
420
|
-
/**
|
|
421
|
-
* Render a <div> element which will be replaced by CKEditor.
|
|
422
|
-
*/
|
|
423
|
-
render() {
|
|
424
|
-
return /* @__PURE__ */ React__default.createElement("div", { ref: this.domContainer });
|
|
425
|
-
}
|
|
426
|
-
/**
|
|
427
|
-
* Initializes the editor by creating a proper watchdog and initializing it with the editor's configuration.
|
|
428
|
-
*/
|
|
429
|
-
async _initializeEditor() {
|
|
430
|
-
if (this.props.disableWatchdog) {
|
|
431
|
-
const instance = await this._createEditor(this.domContainer.current, this._getConfig());
|
|
432
|
-
return {
|
|
433
|
-
instance,
|
|
434
|
-
watchdog: null
|
|
435
|
-
};
|
|
436
|
-
}
|
|
437
|
-
const watchdog = (() => {
|
|
438
|
-
if (isContextWatchdogReadyToUse(this.context)) {
|
|
439
|
-
return new EditorWatchdogAdapter(this.context.watchdog);
|
|
440
|
-
}
|
|
441
|
-
return new this.props.editor.EditorWatchdog(this.props.editor, this.props.watchdogConfig);
|
|
442
|
-
})();
|
|
443
|
-
const totalRestartsRef = {
|
|
444
|
-
current: 0
|
|
445
|
-
};
|
|
446
|
-
watchdog.setCreator(async (el, config) => {
|
|
447
|
-
var _a;
|
|
448
|
-
const { editorSemaphore } = this;
|
|
449
|
-
const { onAfterDestroy } = this.props;
|
|
450
|
-
if (totalRestartsRef.current > 0 && onAfterDestroy && ((_a = editorSemaphore == null ? void 0 : editorSemaphore.value) == null ? void 0 : _a.instance)) {
|
|
451
|
-
onAfterDestroy(editorSemaphore.value.instance);
|
|
452
|
-
}
|
|
453
|
-
const instance = await this._createEditor(el, config);
|
|
454
|
-
if (editorSemaphore && totalRestartsRef.current > 0) {
|
|
455
|
-
editorSemaphore.unsafeSetValue({
|
|
456
|
-
instance,
|
|
457
|
-
watchdog
|
|
458
|
-
});
|
|
459
|
-
setTimeout(() => {
|
|
460
|
-
if (this.props.onReady) {
|
|
461
|
-
this.props.onReady(watchdog.editor);
|
|
462
|
-
}
|
|
463
|
-
});
|
|
464
|
-
}
|
|
465
|
-
totalRestartsRef.current++;
|
|
466
|
-
return instance;
|
|
467
|
-
});
|
|
468
|
-
watchdog.on("error", (_, { error, causesRestart }) => {
|
|
469
|
-
const onError = this.props.onError || console.error;
|
|
470
|
-
onError(error, { phase: "runtime", willEditorRestart: causesRestart });
|
|
471
|
-
});
|
|
472
|
-
await watchdog.create(this.domContainer.current, this._getConfig());
|
|
473
|
-
return {
|
|
474
|
-
watchdog,
|
|
475
|
-
instance: watchdog.editor
|
|
476
|
-
};
|
|
477
|
-
}
|
|
478
|
-
/**
|
|
479
|
-
* Creates an editor from the element and configuration.
|
|
480
|
-
*
|
|
481
|
-
* @param element The source element.
|
|
482
|
-
* @param config CKEditor 5 editor configuration.
|
|
483
|
-
*/
|
|
484
|
-
_createEditor(element, config) {
|
|
485
|
-
const { contextItemMetadata } = this.props;
|
|
486
|
-
if (contextItemMetadata) {
|
|
487
|
-
config = withCKEditorReactContextMetadata(contextItemMetadata, config);
|
|
488
|
-
}
|
|
489
|
-
return this.props.editor.create(
|
|
490
|
-
element,
|
|
491
|
-
appendAllIntegrationPluginsToConfig(config)
|
|
492
|
-
).then((editor) => {
|
|
493
|
-
if ("disabled" in this.props) {
|
|
494
|
-
/* istanbul ignore else -- @preserve */
|
|
495
|
-
if (this.props.disabled) {
|
|
496
|
-
editor.enableReadOnlyMode(REACT_INTEGRATION_READ_ONLY_LOCK_ID$1);
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
const modelDocument = editor.model.document;
|
|
500
|
-
const viewDocument = editor.editing.view.document;
|
|
501
|
-
modelDocument.on("change:data", (event) => {
|
|
502
|
-
/* istanbul ignore else -- @preserve */
|
|
503
|
-
if (this.props.onChange) {
|
|
504
|
-
this.props.onChange(event, editor);
|
|
505
|
-
}
|
|
506
|
-
});
|
|
507
|
-
viewDocument.on("focus", (event) => {
|
|
508
|
-
/* istanbul ignore else -- @preserve */
|
|
509
|
-
if (this.props.onFocus) {
|
|
510
|
-
this.props.onFocus(event, editor);
|
|
511
|
-
}
|
|
512
|
-
});
|
|
513
|
-
viewDocument.on("blur", (event) => {
|
|
514
|
-
/* istanbul ignore else -- @preserve */
|
|
515
|
-
if (this.props.onBlur) {
|
|
516
|
-
this.props.onBlur(event, editor);
|
|
517
|
-
}
|
|
518
|
-
});
|
|
519
|
-
return editor;
|
|
520
|
-
});
|
|
521
|
-
}
|
|
522
|
-
/**
|
|
523
|
-
* Destroys the editor by destroying the watchdog.
|
|
524
|
-
*/
|
|
525
|
-
async _destroyEditor(initializeResult) {
|
|
526
|
-
const { watchdog, instance } = initializeResult;
|
|
527
|
-
return new Promise((resolve, reject) => {
|
|
528
|
-
/* istanbul ignore next -- @preserve */
|
|
529
|
-
setTimeout(async () => {
|
|
530
|
-
try {
|
|
531
|
-
if (watchdog) {
|
|
532
|
-
await watchdog.destroy();
|
|
533
|
-
return resolve();
|
|
534
|
-
}
|
|
535
|
-
if (instance) {
|
|
536
|
-
await instance.destroy();
|
|
537
|
-
return resolve();
|
|
538
|
-
}
|
|
539
|
-
resolve();
|
|
540
|
-
} catch (e) {
|
|
541
|
-
console.error(e);
|
|
542
|
-
reject(e);
|
|
543
|
-
}
|
|
544
|
-
});
|
|
545
|
-
});
|
|
546
|
-
}
|
|
547
|
-
/**
|
|
548
|
-
* Returns true when the editor should be updated.
|
|
549
|
-
*
|
|
550
|
-
* @param prevProps Previous react's properties.
|
|
551
|
-
* @param nextProps React's properties.
|
|
552
|
-
* @param editor Current editor instance.
|
|
553
|
-
*/
|
|
554
|
-
_shouldUpdateEditorData(prevProps, nextProps, editor) {
|
|
555
|
-
if (prevProps.data === nextProps.data) {
|
|
556
|
-
return false;
|
|
557
|
-
}
|
|
558
|
-
if (editor.data.get() === nextProps.data) {
|
|
559
|
-
return false;
|
|
560
|
-
}
|
|
561
|
-
return true;
|
|
562
|
-
}
|
|
563
|
-
/**
|
|
564
|
-
* Returns the editor configuration.
|
|
565
|
-
*/
|
|
566
|
-
_getConfig() {
|
|
567
|
-
const config = this.props.config || {};
|
|
568
|
-
if (this.props.data && config.initialData) {
|
|
569
|
-
console.warn(
|
|
570
|
-
"Editor data should be provided either using `config.initialData` or `content` property. The config value takes precedence over `content` property and will be used when both are specified."
|
|
571
|
-
);
|
|
572
|
-
}
|
|
573
|
-
return {
|
|
574
|
-
...config,
|
|
575
|
-
initialData: config.initialData || this.props.data || ""
|
|
576
|
-
};
|
|
577
|
-
}
|
|
578
|
-
}
|
|
579
|
-
__publicField(CKEditor, "contextType", ContextWatchdogContext);
|
|
580
|
-
class EditorWatchdogAdapter {
|
|
581
|
-
/**
|
|
582
|
-
* @param contextWatchdog The context watchdog instance that will be wrapped into editor watchdog API.
|
|
583
|
-
*/
|
|
584
|
-
constructor(contextWatchdog) {
|
|
585
|
-
/**
|
|
586
|
-
* The context watchdog instance that will be wrapped into editor watchdog API.
|
|
587
|
-
*/
|
|
588
|
-
__publicField(this, "_contextWatchdog");
|
|
589
|
-
/**
|
|
590
|
-
* A unique id for the adapter to distinguish editor items when using the context watchdog API.
|
|
591
|
-
*/
|
|
592
|
-
__publicField(this, "_id");
|
|
593
|
-
/**
|
|
594
|
-
* A watchdog's editor creator function.
|
|
595
|
-
*/
|
|
596
|
-
__publicField(this, "_creator");
|
|
597
|
-
this._contextWatchdog = contextWatchdog;
|
|
598
|
-
this._id = uid();
|
|
599
|
-
}
|
|
600
|
-
/**
|
|
601
|
-
* @param creator A watchdog's editor creator function.
|
|
602
|
-
*/
|
|
603
|
-
setCreator(creator) {
|
|
604
|
-
this._creator = creator;
|
|
605
|
-
}
|
|
606
|
-
/**
|
|
607
|
-
* Adds an editor configuration to the context watchdog registry. Creates an instance of it.
|
|
608
|
-
*
|
|
609
|
-
* @param sourceElementOrData A source element or data for the new editor.
|
|
610
|
-
* @param config CKEditor 5 editor config.
|
|
611
|
-
*/
|
|
612
|
-
create(sourceElementOrData, config) {
|
|
613
|
-
return this._contextWatchdog.add({
|
|
614
|
-
sourceElementOrData,
|
|
615
|
-
config,
|
|
616
|
-
creator: this._creator,
|
|
617
|
-
id: this._id,
|
|
618
|
-
type: "editor"
|
|
619
|
-
});
|
|
620
|
-
}
|
|
621
|
-
/**
|
|
622
|
-
* Creates a listener that is attached to context watchdog's item and run when the context watchdog fires.
|
|
623
|
-
* Currently works only for the `error` event.
|
|
624
|
-
*/
|
|
625
|
-
on(_, callback) {
|
|
626
|
-
this._contextWatchdog.on("itemError", (_2, { itemId, error }) => {
|
|
627
|
-
if (itemId === this._id) {
|
|
628
|
-
callback(null, { error, causesRestart: void 0 });
|
|
629
|
-
}
|
|
630
|
-
});
|
|
631
|
-
}
|
|
632
|
-
destroy() {
|
|
633
|
-
if (this._contextWatchdog.state === "ready") {
|
|
634
|
-
return this._contextWatchdog.remove(this._id);
|
|
635
|
-
}
|
|
636
|
-
return Promise.resolve();
|
|
637
|
-
}
|
|
638
|
-
/**
|
|
639
|
-
* An editor instance.
|
|
640
|
-
*/
|
|
641
|
-
get editor() {
|
|
642
|
-
return this._contextWatchdog.getItem(this._id);
|
|
643
|
-
}
|
|
644
|
-
}
|
|
645
|
-
/**
|
|
646
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
647
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
648
|
-
*/
|
|
649
|
-
function mergeRefs(...refs) {
|
|
650
|
-
return (value) => {
|
|
651
|
-
refs.forEach((ref) => {
|
|
652
|
-
if (typeof ref === "function") {
|
|
653
|
-
ref(value);
|
|
654
|
-
} else if (ref != null) {
|
|
655
|
-
ref.current = value;
|
|
656
|
-
}
|
|
657
|
-
});
|
|
658
|
-
};
|
|
659
|
-
}
|
|
660
|
-
const EditorEditable = memo(forwardRef(({ id, semaphore, rootName }, ref) => {
|
|
661
|
-
const innerRef = useRef(null);
|
|
662
|
-
useEffect(() => {
|
|
663
|
-
let editable;
|
|
664
|
-
let editor;
|
|
665
|
-
semaphore.runAfterMount(({ instance }) => {
|
|
666
|
-
if (!innerRef.current) {
|
|
667
|
-
return;
|
|
668
|
-
}
|
|
669
|
-
editor = instance;
|
|
670
|
-
const { ui, model } = editor;
|
|
671
|
-
const root = model.document.getRoot(rootName);
|
|
672
|
-
if (root && editor.ui.getEditableElement(rootName)) {
|
|
673
|
-
editor.detachEditable(root);
|
|
674
|
-
}
|
|
675
|
-
editable = ui.view.createEditable(rootName, innerRef.current);
|
|
676
|
-
ui.addEditable(editable);
|
|
677
|
-
instance.editing.view.forceRender();
|
|
678
|
-
});
|
|
679
|
-
return () => {
|
|
680
|
-
/* istanbul ignore next -- @preserve: It depends on the version of the React and may not happen all of the times. */
|
|
681
|
-
if (editor && editor.state !== "destroyed" && innerRef.current) {
|
|
682
|
-
const root = editor.model.document.getRoot(rootName);
|
|
683
|
-
/* istanbul ignore else -- @preserve */
|
|
684
|
-
if (root) {
|
|
685
|
-
editor.detachEditable(root);
|
|
686
|
-
}
|
|
687
|
-
}
|
|
688
|
-
};
|
|
689
|
-
}, [semaphore.revision]);
|
|
690
|
-
return /* @__PURE__ */ React__default.createElement(
|
|
691
|
-
"div",
|
|
692
|
-
{
|
|
693
|
-
key: semaphore.revision,
|
|
694
|
-
id,
|
|
695
|
-
ref: mergeRefs(ref, innerRef)
|
|
696
|
-
}
|
|
697
|
-
);
|
|
698
|
-
}));
|
|
699
|
-
EditorEditable.displayName = "EditorEditable";
|
|
700
|
-
const EditorToolbarWrapper = forwardRef(({ editor }, ref) => {
|
|
701
|
-
const toolbarRef = useRef(null);
|
|
702
|
-
useEffect(() => {
|
|
703
|
-
const toolbarContainer = toolbarRef.current;
|
|
704
|
-
if (!editor || !toolbarContainer) {
|
|
705
|
-
return void 0;
|
|
706
|
-
}
|
|
707
|
-
const element = editor.ui.view.toolbar.element;
|
|
708
|
-
toolbarContainer.appendChild(element);
|
|
709
|
-
return () => {
|
|
710
|
-
if (toolbarContainer.contains(element)) {
|
|
711
|
-
toolbarContainer.removeChild(element);
|
|
712
|
-
}
|
|
713
|
-
};
|
|
714
|
-
}, [editor && editor.id]);
|
|
715
|
-
return /* @__PURE__ */ React__default.createElement("div", { ref: mergeRefs(toolbarRef, ref) });
|
|
716
|
-
});
|
|
717
|
-
EditorToolbarWrapper.displayName = "EditorToolbarWrapper";
|
|
718
|
-
|
|
719
|
-
export { CKEditor };
|