@vkzstudio/muza-ui 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Button/Button.js +19 -19
- package/dist/components/Button/ButtonLoader.d.ts +7 -0
- package/dist/components/Button/ButtonLoader.d.ts.map +1 -0
- package/dist/components/Button/ButtonLoader.js +40 -0
- package/dist/components/Button/buttonVariants.d.ts.map +1 -1
- package/dist/components/Button/buttonVariants.js +0 -1
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts.map +1 -1
- package/dist/components/Icons/CustomIcons.d.ts +1 -0
- package/dist/components/Icons/CustomIcons.d.ts.map +1 -1
- package/dist/components/Icons/CustomIcons.js +39 -28
- package/dist/components/ReorderableTable/ReorderableTable.js +1 -1
- package/dist/components/SwipeButton/SwipeButton.js +1 -1
- package/dist/components/TextEditor/EditorToolbar.d.ts +18 -0
- package/dist/components/TextEditor/EditorToolbar.d.ts.map +1 -0
- package/dist/components/TextEditor/EditorToolbar.js +175 -0
- package/dist/components/TextEditor/LinkBubbleMenu.d.ts +52 -0
- package/dist/components/TextEditor/LinkBubbleMenu.d.ts.map +1 -0
- package/dist/components/TextEditor/LinkBubbleMenu.js +97 -0
- package/dist/components/TextEditor/TextEditor.d.ts +134 -0
- package/dist/components/TextEditor/TextEditor.d.ts.map +1 -0
- package/dist/components/TextEditor/TextEditor.js +240 -0
- package/dist/components/TextEditor/TextEditor.stories.d.ts +51 -0
- package/dist/components/TextEditor/TextEditor.stories.d.ts.map +1 -0
- package/dist/components/TextEditor/ToolbarButton.d.ts +38 -0
- package/dist/components/TextEditor/ToolbarButton.d.ts.map +1 -0
- package/dist/components/TextEditor/ToolbarButton.js +68 -0
- package/dist/components/TextEditor/ToolbarSeparator.d.ts +22 -0
- package/dist/components/TextEditor/ToolbarSeparator.d.ts.map +1 -0
- package/dist/components/TextEditor/ToolbarSeparator.js +23 -0
- package/dist/components/TextEditor/index.d.ts +4 -0
- package/dist/components/TextEditor/index.d.ts.map +1 -0
- package/dist/components/TextEditor/useLinkEditor.d.ts +37 -0
- package/dist/components/TextEditor/useLinkEditor.d.ts.map +1 -0
- package/dist/components/TextEditor/useLinkEditor.js +32 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.js +140 -132
- package/dist/muza-ui.css +1 -1
- package/dist/node_modules/@popperjs/core/lib/createPopper.js +122 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/contains.js +18 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js +23 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js +37 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js +32 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js +10 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js +17 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js +9 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js +13 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js +10 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js +35 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js +18 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js +10 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js +21 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindow.js +12 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js +11 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js +9 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js +20 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js +8 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js +16 -0
- package/dist/node_modules/@popperjs/core/lib/enums.js +31 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/applyStyles.js +47 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/arrow.js +37 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/computeStyles.js +99 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/eventListeners.js +26 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/flip.js +74 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/hide.js +44 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/offset.js +31 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js +19 -0
- package/dist/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js +54 -0
- package/dist/node_modules/@popperjs/core/lib/popper.js +27 -0
- package/dist/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js +27 -0
- package/dist/node_modules/@popperjs/core/lib/utils/computeOffsets.js +54 -0
- package/dist/node_modules/@popperjs/core/lib/utils/debounce.js +13 -0
- package/dist/node_modules/@popperjs/core/lib/utils/detectOverflow.js +33 -0
- package/dist/node_modules/@popperjs/core/lib/utils/expandToHashMap.js +8 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getAltAxis.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getBasePlacement.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js +11 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js +14 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js +12 -0
- package/dist/node_modules/@popperjs/core/lib/utils/getVariation.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/math.js +6 -0
- package/dist/node_modules/@popperjs/core/lib/utils/mergeByName.js +15 -0
- package/dist/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js +7 -0
- package/dist/node_modules/@popperjs/core/lib/utils/orderModifiers.js +31 -0
- package/dist/node_modules/@popperjs/core/lib/utils/rectToClientRect.js +11 -0
- package/dist/node_modules/@popperjs/core/lib/utils/userAgent.js +9 -0
- package/dist/node_modules/@popperjs/core/lib/utils/within.js +12 -0
- package/dist/node_modules/@tiptap/core/dist/index.js +2857 -0
- package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js +45 -0
- package/dist/node_modules/@tiptap/extension-bold/dist/index.js +76 -0
- package/dist/node_modules/@tiptap/extension-bubble-menu/dist/index.js +129 -0
- package/dist/node_modules/@tiptap/extension-bullet-list/dist/index.js +55 -0
- package/dist/node_modules/@tiptap/extension-code/dist/index.js +54 -0
- package/dist/node_modules/@tiptap/extension-code-block/dist/index.js +136 -0
- package/dist/node_modules/@tiptap/extension-document/dist/index.js +10 -0
- package/dist/node_modules/@tiptap/extension-dropcursor/dist/index.js +21 -0
- package/dist/node_modules/@tiptap/extension-gapcursor/dist/index.js +25 -0
- package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js +56 -0
- package/dist/node_modules/@tiptap/extension-heading/dist/index.js +55 -0
- package/dist/node_modules/@tiptap/extension-history/dist/index.js +36 -0
- package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js +59 -0
- package/dist/node_modules/@tiptap/extension-italic/dist/index.js +75 -0
- package/dist/node_modules/@tiptap/extension-link/dist/index.js +272 -0
- package/dist/node_modules/@tiptap/extension-list-item/dist/index.js +34 -0
- package/dist/node_modules/@tiptap/extension-ordered-list/dist/index.js +73 -0
- package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js +34 -0
- package/dist/node_modules/@tiptap/extension-placeholder/dist/index.js +53 -0
- package/dist/node_modules/@tiptap/extension-strike/dist/index.js +64 -0
- package/dist/node_modules/@tiptap/extension-text/dist/index.js +9 -0
- package/dist/node_modules/@tiptap/react/dist/index.js +709 -0
- package/dist/node_modules/@tiptap/starter-kit/dist/index.js +30 -0
- package/dist/node_modules/framer-motion/dist/es/animation/animate/resolve-subjects.js +4 -4
- package/dist/node_modules/framer-motion/dist/es/animation/animate/subject.js +24 -24
- package/dist/node_modules/framer-motion/dist/es/animation/sequence/create.js +61 -56
- package/dist/node_modules/framer-motion/dist/es/animation/utils/create-visual-element.js +8 -8
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.js +32 -30
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +22 -22
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/index.js +34 -32
- package/dist/node_modules/framer-motion/dist/es/components/Reorder/Group.js +34 -26
- package/dist/node_modules/framer-motion/dist/es/components/Reorder/Item.js +30 -25
- package/dist/node_modules/framer-motion/dist/es/components/Reorder/utils/auto-scroll.js +64 -0
- package/dist/node_modules/framer-motion/dist/es/context/MotionContext/utils.js +2 -2
- package/dist/node_modules/framer-motion/dist/es/events/add-pointer-event.js +3 -3
- package/dist/node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +100 -89
- package/dist/node_modules/framer-motion/dist/es/gestures/drag/index.js +11 -7
- package/dist/node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.js +4 -4
- package/dist/node_modules/framer-motion/dist/es/gestures/focus.js +2 -2
- package/dist/node_modules/framer-motion/dist/es/gestures/hover.js +1 -1
- package/dist/node_modules/framer-motion/dist/es/gestures/pan/PanSession.js +106 -59
- package/dist/node_modules/framer-motion/dist/es/gestures/pan/index.js +6 -6
- package/dist/node_modules/framer-motion/dist/es/gestures/press.js +1 -1
- package/dist/node_modules/framer-motion/dist/es/motion/features/animation/exit.js +1 -1
- package/dist/node_modules/framer-motion/dist/es/motion/features/animation/index.js +5 -5
- package/dist/node_modules/framer-motion/dist/es/motion/features/definitions.js +18 -6
- package/dist/node_modules/framer-motion/dist/es/motion/features/drag.js +1 -1
- package/dist/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +27 -42
- package/dist/node_modules/framer-motion/dist/es/motion/features/layout.js +4 -4
- package/dist/node_modules/framer-motion/dist/es/motion/features/load-features.js +10 -7
- package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/index.js +4 -4
- package/dist/node_modules/framer-motion/dist/es/motion/index.js +49 -49
- package/dist/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -13
- package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.js +41 -40
- package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.js +13 -13
- package/dist/node_modules/framer-motion/dist/es/render/dom/create-visual-element.js +6 -6
- package/dist/node_modules/framer-motion/dist/es/render/dom/use-render.js +12 -12
- package/dist/node_modules/framer-motion/dist/es/render/html/use-html-visual-state.js +3 -3
- package/dist/node_modules/framer-motion/dist/es/render/html/use-props.js +7 -7
- package/dist/node_modules/framer-motion/dist/es/render/svg/use-props.js +5 -5
- package/dist/node_modules/framer-motion/dist/es/render/svg/use-svg-visual-state.js +1 -1
- package/dist/node_modules/framer-motion/dist/es/value/use-transform.js +26 -18
- package/dist/node_modules/linkifyjs/dist/linkify.js +707 -0
- package/dist/node_modules/motion-dom/dist/es/animation/AsyncMotionValueAnimation.js +33 -30
- package/dist/node_modules/motion-dom/dist/es/animation/NativeAnimation.js +17 -17
- package/dist/node_modules/motion-dom/dist/es/animation/NativeAnimationExtended.js +20 -19
- package/dist/node_modules/motion-dom/dist/es/animation/animate/single-value.js +10 -0
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/interfaces/motion-value.js +13 -13
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/interfaces/visual-element-target.js +11 -11
- package/dist/node_modules/motion-dom/dist/es/animation/keyframes/DOMKeyframesResolver.js +24 -20
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/utils/default-transitions.js +1 -1
- package/dist/node_modules/motion-dom/dist/es/animation/utils/is-css-variable.js +7 -3
- package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +1 -1
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/animation/mix-values.js +2 -2
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/delta-apply.js +4 -4
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/delta-calc.js +1 -1
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/delta-remove.js +6 -6
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/node/DocumentProjectionNode.js +7 -4
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/node/create-projection-node.js +149 -149
- package/dist/node_modules/motion-dom/dist/es/projection/shared/stack.js +60 -0
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/styles/scale-border-radius.js +1 -1
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/styles/scale-box-shadow.js +2 -2
- package/dist/node_modules/motion-dom/dist/es/projection/styles/scale-correction.js +21 -0
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/VisualElement.js +58 -50
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/dom/DOMVisualElement.js +7 -6
- package/dist/node_modules/motion-dom/dist/es/render/dom/utils/camel-to-dash.js +6 -0
- package/dist/node_modules/motion-dom/dist/es/render/html/HTMLVisualElement.js +38 -0
- package/dist/node_modules/motion-dom/dist/es/render/html/utils/build-styles.js +29 -0
- package/dist/node_modules/motion-dom/dist/es/render/html/utils/build-transform.js +37 -0
- package/dist/node_modules/motion-dom/dist/es/render/html/utils/scrape-motion-values.js +14 -0
- package/dist/node_modules/motion-dom/dist/es/render/svg/SVGVisualElement.js +40 -0
- package/dist/node_modules/motion-dom/dist/es/render/svg/utils/build-attrs.js +32 -0
- package/dist/node_modules/motion-dom/dist/es/render/svg/utils/path.js +15 -0
- package/dist/node_modules/motion-dom/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/animation-state.js +31 -31
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/is-controlling-variants.js +1 -1
- package/dist/node_modules/motion-dom/dist/es/render/utils/is-forced-motion-value.js +9 -0
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/motion-values.js +6 -6
- package/dist/node_modules/motion-dom/dist/es/render/utils/reduced-motion/index.js +15 -0
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/setters.js +4 -4
- package/dist/node_modules/{framer-motion → motion-dom}/dist/es/utils/delay.js +2 -2
- package/dist/node_modules/motion-dom/dist/es/utils/resolve-elements.js +8 -6
- package/dist/node_modules/motion-dom/dist/es/value/types/maps/number.js +62 -42
- package/dist/node_modules/motion-dom/dist/es/value/utils/resolve-motion-value.js +7 -0
- package/dist/node_modules/motion-dom/dist/es/value/will-change/is.js +7 -0
- package/dist/node_modules/motion-utils/dist/es/errors.js +10 -9
- package/dist/node_modules/orderedmap/dist/index.js +103 -0
- package/dist/node_modules/prosemirror-commands/dist/index.js +388 -0
- package/dist/node_modules/prosemirror-dropcursor/dist/index.js +86 -0
- package/dist/node_modules/prosemirror-gapcursor/dist/index.js +204 -0
- package/dist/node_modules/prosemirror-history/dist/index.js +248 -0
- package/dist/node_modules/prosemirror-keymap/dist/index.js +62 -0
- package/dist/node_modules/prosemirror-model/dist/index.js +2733 -0
- package/dist/node_modules/prosemirror-schema-list/dist/index.js +88 -0
- package/dist/node_modules/prosemirror-state/dist/index.js +822 -0
- package/dist/node_modules/prosemirror-transform/dist/index.js +1520 -0
- package/dist/node_modules/prosemirror-view/dist/index.js +3794 -0
- package/dist/node_modules/rope-sequence/dist/index.js +100 -0
- package/dist/node_modules/tippy.js/dist/tippy.esm.js +813 -0
- package/dist/node_modules/w3c-keyname/index.js +93 -0
- package/dist/translations/locales/cs.d.ts.map +1 -1
- package/dist/translations/locales/cs.js +18 -0
- package/dist/translations/locales/en.d.ts.map +1 -1
- package/dist/translations/locales/en.js +18 -0
- package/dist/translations/locales/sk.d.ts.map +1 -1
- package/dist/translations/locales/sk.js +18 -0
- package/dist/translations/types.d.ts +22 -0
- package/dist/translations/types.d.ts.map +1 -1
- package/package.json +17 -1
- package/dist/node_modules/framer-motion/dist/es/animation/animate/single-value.js +0 -10
- package/dist/node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +0 -8
- package/dist/node_modules/framer-motion/dist/es/projection/shared/stack.js +0 -58
- package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-correction.js +0 -10
- package/dist/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +0 -4
- package/dist/node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.js +0 -38
- package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-styles.js +0 -29
- package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-transform.js +0 -31
- package/dist/node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +0 -12
- package/dist/node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.js +0 -40
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.js +0 -23
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/path.js +0 -18
- package/dist/node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +0 -15
- package/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/index.js +0 -13
- package/dist/node_modules/framer-motion/dist/es/value/use-will-change/is.js +0 -7
- package/dist/node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.js +0 -7
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/interfaces/visual-element-variant.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/interfaces/visual-element.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/optimized-appear/data-id.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/optimized-appear/get-appear-id.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/utils/calc-child-stagger.js +0 -0
- /package/dist/node_modules/{framer-motion/dist/es/animation/animators/waapi → motion-dom/dist/es/animation}/utils/get-final-keyframe.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/utils/is-transition-defined.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/events/add-dom-event.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/conversion.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/copy.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/models.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/utils.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/node/HTMLProjectionNode.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/node/state.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/styles/transform.js +0 -0
- /package/dist/node_modules/{framer-motion/dist/es/render → motion-dom/dist/es/projection}/utils/compare-by-depth.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/utils/each-axis.js +0 -0
- /package/dist/node_modules/{framer-motion/dist/es/render → motion-dom/dist/es/projection}/utils/flat-tree.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/utils/has-transform.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/utils/measure.js +0 -0
- /package/dist/node_modules/{framer-motion/dist/es/motion/features → motion-dom/dist/es/render}/Feature.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/html/utils/render.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/object/ObjectVisualElement.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/store.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/svg/utils/camel-case-attrs.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/svg/utils/is-svg-tag.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/svg/utils/render.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/get-variant-context.js +0 -0
- /package/dist/node_modules/{framer-motion/dist/es/animation → motion-dom/dist/es/render}/utils/is-animation-controls.js +0 -0
- /package/dist/node_modules/{framer-motion/dist/es/animation → motion-dom/dist/es/render}/utils/is-keyframes-target.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/is-variant-label.js +0 -0
- /package/dist/node_modules/{framer-motion/dist/es → motion-dom/dist/es/render}/utils/reduced-motion/state.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/resolve-dynamic-variants.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/resolve-variants.js +0 -0
- /package/dist/node_modules/{framer-motion/dist/es → motion-dom/dist/es/render}/utils/shallow-compare.js +0 -0
- /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/variant-props.js +0 -0
- /package/dist/node_modules/{framer-motion/dist/es/value/use-will-change → motion-dom/dist/es/value/will-change}/add-will-change.js +0 -0
|
@@ -0,0 +1,388 @@
|
|
|
1
|
+
import { findWrapping as J, canSplit as h, liftTarget as T, canJoin as A, joinPoint as F, replaceStep as B, ReplaceStep as U, ReplaceAroundStep as v } from "../../prosemirror-transform/dist/index.js";
|
|
2
|
+
import { Slice as y, Fragment as S } from "../../prosemirror-model/dist/index.js";
|
|
3
|
+
import { TextSelection as I, NodeSelection as d, Selection as V, AllSelection as P } from "../../prosemirror-state/dist/index.js";
|
|
4
|
+
const M = (t, e) => t.selection.empty ? !1 : (e && e(t.tr.deleteSelection().scrollIntoView()), !0);
|
|
5
|
+
function N(t, e) {
|
|
6
|
+
let { $cursor: r } = t.selection;
|
|
7
|
+
return !r || (e ? !e.endOfTextblock("backward", t) : r.parentOffset > 0) ? null : r;
|
|
8
|
+
}
|
|
9
|
+
const G = (t, e, r) => {
|
|
10
|
+
let n = N(t, r);
|
|
11
|
+
if (!n)
|
|
12
|
+
return !1;
|
|
13
|
+
let o = z(n);
|
|
14
|
+
if (!o) {
|
|
15
|
+
let i = n.blockRange(), f = i && T(i);
|
|
16
|
+
return f == null ? !1 : (e && e(t.tr.lift(i, f).scrollIntoView()), !0);
|
|
17
|
+
}
|
|
18
|
+
let l = o.nodeBefore;
|
|
19
|
+
if (D(t, o, e, -1))
|
|
20
|
+
return !0;
|
|
21
|
+
if (n.parent.content.size == 0 && (x(l, "end") || d.isSelectable(l)))
|
|
22
|
+
for (let i = n.depth; ; i--) {
|
|
23
|
+
let f = B(t.doc, n.before(i), n.after(i), y.empty);
|
|
24
|
+
if (f && f.slice.size < f.to - f.from) {
|
|
25
|
+
if (e) {
|
|
26
|
+
let c = t.tr.step(f);
|
|
27
|
+
c.setSelection(x(l, "end") ? V.findFrom(c.doc.resolve(c.mapping.map(o.pos, -1)), -1) : d.create(c.doc, o.pos - l.nodeSize)), e(c.scrollIntoView());
|
|
28
|
+
}
|
|
29
|
+
return !0;
|
|
30
|
+
}
|
|
31
|
+
if (i == 1 || n.node(i - 1).childCount > 1)
|
|
32
|
+
break;
|
|
33
|
+
}
|
|
34
|
+
return l.isAtom && o.depth == n.depth - 1 ? (e && e(t.tr.delete(o.pos - l.nodeSize, o.pos).scrollIntoView()), !0) : !1;
|
|
35
|
+
}, oe = (t, e, r) => {
|
|
36
|
+
let n = N(t, r);
|
|
37
|
+
if (!n)
|
|
38
|
+
return !1;
|
|
39
|
+
let o = z(n);
|
|
40
|
+
return o ? E(t, o, e) : !1;
|
|
41
|
+
}, le = (t, e, r) => {
|
|
42
|
+
let n = W(t, r);
|
|
43
|
+
if (!n)
|
|
44
|
+
return !1;
|
|
45
|
+
let o = R(n);
|
|
46
|
+
return o ? E(t, o, e) : !1;
|
|
47
|
+
};
|
|
48
|
+
function E(t, e, r) {
|
|
49
|
+
let n = e.nodeBefore, o = n, l = e.pos - 1;
|
|
50
|
+
for (; !o.isTextblock; l--) {
|
|
51
|
+
if (o.type.spec.isolating)
|
|
52
|
+
return !1;
|
|
53
|
+
let s = o.lastChild;
|
|
54
|
+
if (!s)
|
|
55
|
+
return !1;
|
|
56
|
+
o = s;
|
|
57
|
+
}
|
|
58
|
+
let i = e.nodeAfter, f = i, c = e.pos + 1;
|
|
59
|
+
for (; !f.isTextblock; c++) {
|
|
60
|
+
if (f.type.spec.isolating)
|
|
61
|
+
return !1;
|
|
62
|
+
let s = f.firstChild;
|
|
63
|
+
if (!s)
|
|
64
|
+
return !1;
|
|
65
|
+
f = s;
|
|
66
|
+
}
|
|
67
|
+
let p = B(t.doc, l, c, y.empty);
|
|
68
|
+
if (!p || p.from != l || p instanceof U && p.slice.size >= c - l)
|
|
69
|
+
return !1;
|
|
70
|
+
if (r) {
|
|
71
|
+
let s = t.tr.step(p);
|
|
72
|
+
s.setSelection(I.create(s.doc, l)), r(s.scrollIntoView());
|
|
73
|
+
}
|
|
74
|
+
return !0;
|
|
75
|
+
}
|
|
76
|
+
function x(t, e, r = !1) {
|
|
77
|
+
for (let n = t; n; n = e == "start" ? n.firstChild : n.lastChild) {
|
|
78
|
+
if (n.isTextblock)
|
|
79
|
+
return !0;
|
|
80
|
+
if (r && n.childCount != 1)
|
|
81
|
+
return !1;
|
|
82
|
+
}
|
|
83
|
+
return !1;
|
|
84
|
+
}
|
|
85
|
+
const H = (t, e, r) => {
|
|
86
|
+
let { $head: n, empty: o } = t.selection, l = n;
|
|
87
|
+
if (!o)
|
|
88
|
+
return !1;
|
|
89
|
+
if (n.parent.isTextblock) {
|
|
90
|
+
if (r ? !r.endOfTextblock("backward", t) : n.parentOffset > 0)
|
|
91
|
+
return !1;
|
|
92
|
+
l = z(n);
|
|
93
|
+
}
|
|
94
|
+
let i = l && l.nodeBefore;
|
|
95
|
+
return !i || !d.isSelectable(i) ? !1 : (e && e(t.tr.setSelection(d.create(t.doc, l.pos - i.nodeSize)).scrollIntoView()), !0);
|
|
96
|
+
};
|
|
97
|
+
function z(t) {
|
|
98
|
+
if (!t.parent.type.spec.isolating)
|
|
99
|
+
for (let e = t.depth - 1; e >= 0; e--) {
|
|
100
|
+
if (t.index(e) > 0)
|
|
101
|
+
return t.doc.resolve(t.before(e + 1));
|
|
102
|
+
if (t.node(e).type.spec.isolating)
|
|
103
|
+
break;
|
|
104
|
+
}
|
|
105
|
+
return null;
|
|
106
|
+
}
|
|
107
|
+
function W(t, e) {
|
|
108
|
+
let { $cursor: r } = t.selection;
|
|
109
|
+
return !r || (e ? !e.endOfTextblock("forward", t) : r.parentOffset < r.parent.content.size) ? null : r;
|
|
110
|
+
}
|
|
111
|
+
const K = (t, e, r) => {
|
|
112
|
+
let n = W(t, r);
|
|
113
|
+
if (!n)
|
|
114
|
+
return !1;
|
|
115
|
+
let o = R(n);
|
|
116
|
+
if (!o)
|
|
117
|
+
return !1;
|
|
118
|
+
let l = o.nodeAfter;
|
|
119
|
+
if (D(t, o, e, 1))
|
|
120
|
+
return !0;
|
|
121
|
+
if (n.parent.content.size == 0 && (x(l, "start") || d.isSelectable(l))) {
|
|
122
|
+
let i = B(t.doc, n.before(), n.after(), y.empty);
|
|
123
|
+
if (i && i.slice.size < i.to - i.from) {
|
|
124
|
+
if (e) {
|
|
125
|
+
let f = t.tr.step(i);
|
|
126
|
+
f.setSelection(x(l, "start") ? V.findFrom(f.doc.resolve(f.mapping.map(o.pos)), 1) : d.create(f.doc, f.mapping.map(o.pos))), e(f.scrollIntoView());
|
|
127
|
+
}
|
|
128
|
+
return !0;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
return l.isAtom && o.depth == n.depth - 1 ? (e && e(t.tr.delete(o.pos, o.pos + l.nodeSize).scrollIntoView()), !0) : !1;
|
|
132
|
+
}, L = (t, e, r) => {
|
|
133
|
+
let { $head: n, empty: o } = t.selection, l = n;
|
|
134
|
+
if (!o)
|
|
135
|
+
return !1;
|
|
136
|
+
if (n.parent.isTextblock) {
|
|
137
|
+
if (r ? !r.endOfTextblock("forward", t) : n.parentOffset < n.parent.content.size)
|
|
138
|
+
return !1;
|
|
139
|
+
l = R(n);
|
|
140
|
+
}
|
|
141
|
+
let i = l && l.nodeAfter;
|
|
142
|
+
return !i || !d.isSelectable(i) ? !1 : (e && e(t.tr.setSelection(d.create(t.doc, l.pos)).scrollIntoView()), !0);
|
|
143
|
+
};
|
|
144
|
+
function R(t) {
|
|
145
|
+
if (!t.parent.type.spec.isolating)
|
|
146
|
+
for (let e = t.depth - 1; e >= 0; e--) {
|
|
147
|
+
let r = t.node(e);
|
|
148
|
+
if (t.index(e) + 1 < r.childCount)
|
|
149
|
+
return t.doc.resolve(t.after(e + 1));
|
|
150
|
+
if (r.type.spec.isolating)
|
|
151
|
+
break;
|
|
152
|
+
}
|
|
153
|
+
return null;
|
|
154
|
+
}
|
|
155
|
+
const ie = (t, e) => {
|
|
156
|
+
let r = t.selection, n = r instanceof d, o;
|
|
157
|
+
if (n) {
|
|
158
|
+
if (r.node.isTextblock || !A(t.doc, r.from))
|
|
159
|
+
return !1;
|
|
160
|
+
o = r.from;
|
|
161
|
+
} else if (o = F(t.doc, r.from, -1), o == null)
|
|
162
|
+
return !1;
|
|
163
|
+
if (e) {
|
|
164
|
+
let l = t.tr.join(o);
|
|
165
|
+
n && l.setSelection(d.create(l.doc, o - t.doc.resolve(o).nodeBefore.nodeSize)), e(l.scrollIntoView());
|
|
166
|
+
}
|
|
167
|
+
return !0;
|
|
168
|
+
}, fe = (t, e) => {
|
|
169
|
+
let r = t.selection, n;
|
|
170
|
+
if (r instanceof d) {
|
|
171
|
+
if (r.node.isTextblock || !A(t.doc, r.to))
|
|
172
|
+
return !1;
|
|
173
|
+
n = r.to;
|
|
174
|
+
} else if (n = F(t.doc, r.to, 1), n == null)
|
|
175
|
+
return !1;
|
|
176
|
+
return e && e(t.tr.join(n).scrollIntoView()), !0;
|
|
177
|
+
}, ce = (t, e) => {
|
|
178
|
+
let { $from: r, $to: n } = t.selection, o = r.blockRange(n), l = o && T(o);
|
|
179
|
+
return l == null ? !1 : (e && e(t.tr.lift(o, l).scrollIntoView()), !0);
|
|
180
|
+
}, Q = (t, e) => {
|
|
181
|
+
let { $head: r, $anchor: n } = t.selection;
|
|
182
|
+
return !r.parent.type.spec.code || !r.sameParent(n) ? !1 : (e && e(t.tr.insertText(`
|
|
183
|
+
`).scrollIntoView()), !0);
|
|
184
|
+
};
|
|
185
|
+
function j(t) {
|
|
186
|
+
for (let e = 0; e < t.edgeCount; e++) {
|
|
187
|
+
let { type: r } = t.edge(e);
|
|
188
|
+
if (r.isTextblock && !r.hasRequiredAttrs())
|
|
189
|
+
return r;
|
|
190
|
+
}
|
|
191
|
+
return null;
|
|
192
|
+
}
|
|
193
|
+
const se = (t, e) => {
|
|
194
|
+
let { $head: r, $anchor: n } = t.selection;
|
|
195
|
+
if (!r.parent.type.spec.code || !r.sameParent(n))
|
|
196
|
+
return !1;
|
|
197
|
+
let o = r.node(-1), l = r.indexAfter(-1), i = j(o.contentMatchAt(l));
|
|
198
|
+
if (!i || !o.canReplaceWith(l, l, i))
|
|
199
|
+
return !1;
|
|
200
|
+
if (e) {
|
|
201
|
+
let f = r.after(), c = t.tr.replaceWith(f, f, i.createAndFill());
|
|
202
|
+
c.setSelection(V.near(c.doc.resolve(f), 1)), e(c.scrollIntoView());
|
|
203
|
+
}
|
|
204
|
+
return !0;
|
|
205
|
+
}, X = (t, e) => {
|
|
206
|
+
let r = t.selection, { $from: n, $to: o } = r;
|
|
207
|
+
if (r instanceof P || n.parent.inlineContent || o.parent.inlineContent)
|
|
208
|
+
return !1;
|
|
209
|
+
let l = j(o.parent.contentMatchAt(o.indexAfter()));
|
|
210
|
+
if (!l || !l.isTextblock)
|
|
211
|
+
return !1;
|
|
212
|
+
if (e) {
|
|
213
|
+
let i = (!n.parentOffset && o.index() < o.parent.childCount ? n : o).pos, f = t.tr.insert(i, l.createAndFill());
|
|
214
|
+
f.setSelection(I.create(f.doc, i + 1)), e(f.scrollIntoView());
|
|
215
|
+
}
|
|
216
|
+
return !0;
|
|
217
|
+
}, Y = (t, e) => {
|
|
218
|
+
let { $cursor: r } = t.selection;
|
|
219
|
+
if (!r || r.parent.content.size)
|
|
220
|
+
return !1;
|
|
221
|
+
if (r.depth > 1 && r.after() != r.end(-1)) {
|
|
222
|
+
let l = r.before();
|
|
223
|
+
if (h(t.doc, l))
|
|
224
|
+
return e && e(t.tr.split(l).scrollIntoView()), !0;
|
|
225
|
+
}
|
|
226
|
+
let n = r.blockRange(), o = n && T(n);
|
|
227
|
+
return o == null ? !1 : (e && e(t.tr.lift(n, o).scrollIntoView()), !0);
|
|
228
|
+
};
|
|
229
|
+
function Z(t) {
|
|
230
|
+
return (e, r) => {
|
|
231
|
+
let { $from: n, $to: o } = e.selection;
|
|
232
|
+
if (e.selection instanceof d && e.selection.node.isBlock)
|
|
233
|
+
return !n.parentOffset || !h(e.doc, n.pos) ? !1 : (r && r(e.tr.split(n.pos).scrollIntoView()), !0);
|
|
234
|
+
if (!n.depth)
|
|
235
|
+
return !1;
|
|
236
|
+
let l = [], i, f, c = !1, p = !1;
|
|
237
|
+
for (let u = n.depth; ; u--)
|
|
238
|
+
if (n.node(u).isBlock) {
|
|
239
|
+
c = n.end(u) == n.pos + (n.depth - u), p = n.start(u) == n.pos - (n.depth - u), f = j(n.node(u - 1).contentMatchAt(n.indexAfter(u - 1))), l.unshift(c && f ? { type: f } : null), i = u;
|
|
240
|
+
break;
|
|
241
|
+
} else {
|
|
242
|
+
if (u == 1)
|
|
243
|
+
return !1;
|
|
244
|
+
l.unshift(null);
|
|
245
|
+
}
|
|
246
|
+
let s = e.tr;
|
|
247
|
+
(e.selection instanceof I || e.selection instanceof P) && s.deleteSelection();
|
|
248
|
+
let m = s.mapping.map(n.pos), k = h(s.doc, m, l.length, l);
|
|
249
|
+
if (k || (l[0] = f ? { type: f } : null, k = h(s.doc, m, l.length, l)), !k)
|
|
250
|
+
return !1;
|
|
251
|
+
if (s.split(m, l.length, l), !c && p && n.node(i).type != f) {
|
|
252
|
+
let u = s.mapping.map(n.before(i)), a = s.doc.resolve(u);
|
|
253
|
+
f && n.node(i - 1).canReplaceWith(a.index(), a.index() + 1, f) && s.setNodeMarkup(s.mapping.map(n.before(i)), f);
|
|
254
|
+
}
|
|
255
|
+
return r && r(s.scrollIntoView()), !0;
|
|
256
|
+
};
|
|
257
|
+
}
|
|
258
|
+
const _ = Z(), ue = (t, e) => {
|
|
259
|
+
let { $from: r, to: n } = t.selection, o, l = r.sharedDepth(n);
|
|
260
|
+
return l == 0 ? !1 : (o = r.before(l), e && e(t.tr.setSelection(d.create(t.doc, o))), !0);
|
|
261
|
+
};
|
|
262
|
+
function ee(t, e, r) {
|
|
263
|
+
let n = e.nodeBefore, o = e.nodeAfter, l = e.index();
|
|
264
|
+
return !n || !o || !n.type.compatibleContent(o.type) ? !1 : !n.content.size && e.parent.canReplace(l - 1, l) ? (r && r(t.tr.delete(e.pos - n.nodeSize, e.pos).scrollIntoView()), !0) : !e.parent.canReplace(l, l + 1) || !(o.isTextblock || A(t.doc, e.pos)) ? !1 : (r && r(t.tr.join(e.pos).scrollIntoView()), !0);
|
|
265
|
+
}
|
|
266
|
+
function D(t, e, r, n) {
|
|
267
|
+
let o = e.nodeBefore, l = e.nodeAfter, i, f, c = o.type.spec.isolating || l.type.spec.isolating;
|
|
268
|
+
if (!c && ee(t, e, r))
|
|
269
|
+
return !0;
|
|
270
|
+
let p = !c && e.parent.canReplace(e.index(), e.index() + 1);
|
|
271
|
+
if (p && (i = (f = o.contentMatchAt(o.childCount)).findWrapping(l.type)) && f.matchType(i[0] || l.type).validEnd) {
|
|
272
|
+
if (r) {
|
|
273
|
+
let u = e.pos + l.nodeSize, a = S.empty;
|
|
274
|
+
for (let w = i.length - 1; w >= 0; w--)
|
|
275
|
+
a = S.from(i[w].create(null, a));
|
|
276
|
+
a = S.from(o.copy(a));
|
|
277
|
+
let b = t.tr.step(new v(e.pos - 1, u, e.pos, u, new y(a, 1, 0), i.length, !0)), g = b.doc.resolve(u + 2 * i.length);
|
|
278
|
+
g.nodeAfter && g.nodeAfter.type == o.type && A(b.doc, g.pos) && b.join(g.pos), r(b.scrollIntoView());
|
|
279
|
+
}
|
|
280
|
+
return !0;
|
|
281
|
+
}
|
|
282
|
+
let s = l.type.spec.isolating || n > 0 && c ? null : V.findFrom(e, 1), m = s && s.$from.blockRange(s.$to), k = m && T(m);
|
|
283
|
+
if (k != null && k >= e.depth)
|
|
284
|
+
return r && r(t.tr.lift(m, k).scrollIntoView()), !0;
|
|
285
|
+
if (p && x(l, "start", !0) && x(o, "end")) {
|
|
286
|
+
let u = o, a = [];
|
|
287
|
+
for (; a.push(u), !u.isTextblock; )
|
|
288
|
+
u = u.lastChild;
|
|
289
|
+
let b = l, g = 1;
|
|
290
|
+
for (; !b.isTextblock; b = b.firstChild)
|
|
291
|
+
g++;
|
|
292
|
+
if (u.canReplace(u.childCount, u.childCount, b.content)) {
|
|
293
|
+
if (r) {
|
|
294
|
+
let w = S.empty;
|
|
295
|
+
for (let C = a.length - 1; C >= 0; C--)
|
|
296
|
+
w = S.from(a[C].copy(w));
|
|
297
|
+
let q = t.tr.step(new v(e.pos - a.length, e.pos + l.nodeSize, e.pos + g, e.pos + l.nodeSize - g, new y(w, a.length, 0), 0, !0));
|
|
298
|
+
r(q.scrollIntoView());
|
|
299
|
+
}
|
|
300
|
+
return !0;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
return !1;
|
|
304
|
+
}
|
|
305
|
+
function $(t) {
|
|
306
|
+
return function(e, r) {
|
|
307
|
+
let n = e.selection, o = t < 0 ? n.$from : n.$to, l = o.depth;
|
|
308
|
+
for (; o.node(l).isInline; ) {
|
|
309
|
+
if (!l)
|
|
310
|
+
return !1;
|
|
311
|
+
l--;
|
|
312
|
+
}
|
|
313
|
+
return o.node(l).isTextblock ? (r && r(e.tr.setSelection(I.create(e.doc, t < 0 ? o.start(l) : o.end(l)))), !0) : !1;
|
|
314
|
+
};
|
|
315
|
+
}
|
|
316
|
+
const ae = $(-1), pe = $(1);
|
|
317
|
+
function de(t, e = null) {
|
|
318
|
+
return function(r, n) {
|
|
319
|
+
let { $from: o, $to: l } = r.selection, i = o.blockRange(l), f = i && J(i, t, e);
|
|
320
|
+
return f ? (n && n(r.tr.wrap(i, f).scrollIntoView()), !0) : !1;
|
|
321
|
+
};
|
|
322
|
+
}
|
|
323
|
+
function me(t, e = null) {
|
|
324
|
+
return function(r, n) {
|
|
325
|
+
let o = !1;
|
|
326
|
+
for (let l = 0; l < r.selection.ranges.length && !o; l++) {
|
|
327
|
+
let { $from: { pos: i }, $to: { pos: f } } = r.selection.ranges[l];
|
|
328
|
+
r.doc.nodesBetween(i, f, (c, p) => {
|
|
329
|
+
if (o)
|
|
330
|
+
return !1;
|
|
331
|
+
if (!(!c.isTextblock || c.hasMarkup(t, e)))
|
|
332
|
+
if (c.type == t)
|
|
333
|
+
o = !0;
|
|
334
|
+
else {
|
|
335
|
+
let s = r.doc.resolve(p), m = s.index();
|
|
336
|
+
o = s.parent.canReplaceWith(m, m + 1, t);
|
|
337
|
+
}
|
|
338
|
+
});
|
|
339
|
+
}
|
|
340
|
+
if (!o)
|
|
341
|
+
return !1;
|
|
342
|
+
if (n) {
|
|
343
|
+
let l = r.tr;
|
|
344
|
+
for (let i = 0; i < r.selection.ranges.length; i++) {
|
|
345
|
+
let { $from: { pos: f }, $to: { pos: c } } = r.selection.ranges[i];
|
|
346
|
+
l.setBlockType(f, c, t, e);
|
|
347
|
+
}
|
|
348
|
+
n(l.scrollIntoView());
|
|
349
|
+
}
|
|
350
|
+
return !0;
|
|
351
|
+
};
|
|
352
|
+
}
|
|
353
|
+
function O(...t) {
|
|
354
|
+
return function(e, r, n) {
|
|
355
|
+
for (let o = 0; o < t.length; o++)
|
|
356
|
+
if (t[o](e, r, n))
|
|
357
|
+
return !0;
|
|
358
|
+
return !1;
|
|
359
|
+
};
|
|
360
|
+
}
|
|
361
|
+
O(M, G, H);
|
|
362
|
+
O(M, K, L);
|
|
363
|
+
O(Q, X, Y, _);
|
|
364
|
+
typeof navigator < "u" ? /Mac|iP(hone|[oa]d)/.test(navigator.platform) : typeof os < "u" && os.platform && os.platform() == "darwin";
|
|
365
|
+
export {
|
|
366
|
+
O as chainCommands,
|
|
367
|
+
X as createParagraphNear,
|
|
368
|
+
M as deleteSelection,
|
|
369
|
+
se as exitCode,
|
|
370
|
+
G as joinBackward,
|
|
371
|
+
fe as joinDown,
|
|
372
|
+
K as joinForward,
|
|
373
|
+
oe as joinTextblockBackward,
|
|
374
|
+
le as joinTextblockForward,
|
|
375
|
+
ie as joinUp,
|
|
376
|
+
ce as lift,
|
|
377
|
+
Y as liftEmptyBlock,
|
|
378
|
+
Q as newlineInCode,
|
|
379
|
+
H as selectNodeBackward,
|
|
380
|
+
L as selectNodeForward,
|
|
381
|
+
ue as selectParentNode,
|
|
382
|
+
pe as selectTextblockEnd,
|
|
383
|
+
ae as selectTextblockStart,
|
|
384
|
+
me as setBlockType,
|
|
385
|
+
_ as splitBlock,
|
|
386
|
+
Z as splitBlockAs,
|
|
387
|
+
de as wrapIn
|
|
388
|
+
};
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { Plugin as w } from "../../prosemirror-state/dist/index.js";
|
|
2
|
+
import { dropPoint as v } from "../../prosemirror-transform/dist/index.js";
|
|
3
|
+
function y(m = {}) {
|
|
4
|
+
return new w({
|
|
5
|
+
view(e) {
|
|
6
|
+
return new C(e, m);
|
|
7
|
+
}
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
class C {
|
|
11
|
+
constructor(e, t) {
|
|
12
|
+
var i;
|
|
13
|
+
this.editorView = e, this.cursorPos = null, this.element = null, this.timeout = -1, this.width = (i = t.width) !== null && i !== void 0 ? i : 1, this.color = t.color === !1 ? void 0 : t.color || "black", this.class = t.class, this.handlers = ["dragover", "dragend", "drop", "dragleave"].map((s) => {
|
|
14
|
+
let d = (r) => {
|
|
15
|
+
this[s](r);
|
|
16
|
+
};
|
|
17
|
+
return e.dom.addEventListener(s, d), { name: s, handler: d };
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
destroy() {
|
|
21
|
+
this.handlers.forEach(({ name: e, handler: t }) => this.editorView.dom.removeEventListener(e, t));
|
|
22
|
+
}
|
|
23
|
+
update(e, t) {
|
|
24
|
+
this.cursorPos != null && t.doc != e.state.doc && (this.cursorPos > e.state.doc.content.size ? this.setCursor(null) : this.updateOverlay());
|
|
25
|
+
}
|
|
26
|
+
setCursor(e) {
|
|
27
|
+
e != this.cursorPos && (this.cursorPos = e, e == null ? (this.element.parentNode.removeChild(this.element), this.element = null) : this.updateOverlay());
|
|
28
|
+
}
|
|
29
|
+
updateOverlay() {
|
|
30
|
+
let e = this.editorView.state.doc.resolve(this.cursorPos), t = !e.parent.inlineContent, i, s = this.editorView.dom, d = s.getBoundingClientRect(), r = d.width / s.offsetWidth, h = d.height / s.offsetHeight;
|
|
31
|
+
if (t) {
|
|
32
|
+
let o = e.nodeBefore, n = e.nodeAfter;
|
|
33
|
+
if (o || n) {
|
|
34
|
+
let a = this.editorView.nodeDOM(this.cursorPos - (o ? o.nodeSize : 0));
|
|
35
|
+
if (a) {
|
|
36
|
+
let c = a.getBoundingClientRect(), u = o ? c.bottom : c.top;
|
|
37
|
+
o && n && (u = (u + this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top) / 2);
|
|
38
|
+
let g = this.width / 2 * h;
|
|
39
|
+
i = { left: c.left, right: c.right, top: u - g, bottom: u + g };
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
if (!i) {
|
|
44
|
+
let o = this.editorView.coordsAtPos(this.cursorPos), n = this.width / 2 * r;
|
|
45
|
+
i = { left: o.left - n, right: o.left + n, top: o.top, bottom: o.bottom };
|
|
46
|
+
}
|
|
47
|
+
let l = this.editorView.dom.offsetParent;
|
|
48
|
+
this.element || (this.element = l.appendChild(document.createElement("div")), this.class && (this.element.className = this.class), this.element.style.cssText = "position: absolute; z-index: 50; pointer-events: none;", this.color && (this.element.style.backgroundColor = this.color)), this.element.classList.toggle("prosemirror-dropcursor-block", t), this.element.classList.toggle("prosemirror-dropcursor-inline", !t);
|
|
49
|
+
let f, p;
|
|
50
|
+
if (!l || l == document.body && getComputedStyle(l).position == "static")
|
|
51
|
+
f = -pageXOffset, p = -pageYOffset;
|
|
52
|
+
else {
|
|
53
|
+
let o = l.getBoundingClientRect(), n = o.width / l.offsetWidth, a = o.height / l.offsetHeight;
|
|
54
|
+
f = o.left - l.scrollLeft * n, p = o.top - l.scrollTop * a;
|
|
55
|
+
}
|
|
56
|
+
this.element.style.left = (i.left - f) / r + "px", this.element.style.top = (i.top - p) / h + "px", this.element.style.width = (i.right - i.left) / r + "px", this.element.style.height = (i.bottom - i.top) / h + "px";
|
|
57
|
+
}
|
|
58
|
+
scheduleRemoval(e) {
|
|
59
|
+
clearTimeout(this.timeout), this.timeout = setTimeout(() => this.setCursor(null), e);
|
|
60
|
+
}
|
|
61
|
+
dragover(e) {
|
|
62
|
+
if (!this.editorView.editable)
|
|
63
|
+
return;
|
|
64
|
+
let t = this.editorView.posAtCoords({ left: e.clientX, top: e.clientY }), i = t && t.inside >= 0 && this.editorView.state.doc.nodeAt(t.inside), s = i && i.type.spec.disableDropCursor, d = typeof s == "function" ? s(this.editorView, t, e) : s;
|
|
65
|
+
if (t && !d) {
|
|
66
|
+
let r = t.pos;
|
|
67
|
+
if (this.editorView.dragging && this.editorView.dragging.slice) {
|
|
68
|
+
let h = v(this.editorView.state.doc, r, this.editorView.dragging.slice);
|
|
69
|
+
h != null && (r = h);
|
|
70
|
+
}
|
|
71
|
+
this.setCursor(r), this.scheduleRemoval(5e3);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
dragend() {
|
|
75
|
+
this.scheduleRemoval(20);
|
|
76
|
+
}
|
|
77
|
+
drop() {
|
|
78
|
+
this.scheduleRemoval(20);
|
|
79
|
+
}
|
|
80
|
+
dragleave(e) {
|
|
81
|
+
this.editorView.dom.contains(e.relatedTarget) || this.setCursor(null);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
export {
|
|
85
|
+
y as dropCursor
|
|
86
|
+
};
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
import { keydownHandler as v } from "../../prosemirror-keymap/dist/index.js";
|
|
2
|
+
import { Plugin as w, TextSelection as m, NodeSelection as x, Selection as u } from "../../prosemirror-state/dist/index.js";
|
|
3
|
+
import { Fragment as h, Slice as g } from "../../prosemirror-model/dist/index.js";
|
|
4
|
+
import { DecorationSet as S, Decoration as A } from "../../prosemirror-view/dist/index.js";
|
|
5
|
+
class i extends u {
|
|
6
|
+
/**
|
|
7
|
+
Create a gap cursor.
|
|
8
|
+
*/
|
|
9
|
+
constructor(e) {
|
|
10
|
+
super(e, e);
|
|
11
|
+
}
|
|
12
|
+
map(e, t) {
|
|
13
|
+
let o = e.resolve(t.map(this.head));
|
|
14
|
+
return i.valid(o) ? new i(o) : u.near(o);
|
|
15
|
+
}
|
|
16
|
+
content() {
|
|
17
|
+
return g.empty;
|
|
18
|
+
}
|
|
19
|
+
eq(e) {
|
|
20
|
+
return e instanceof i && e.head == this.head;
|
|
21
|
+
}
|
|
22
|
+
toJSON() {
|
|
23
|
+
return { type: "gapcursor", pos: this.head };
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
@internal
|
|
27
|
+
*/
|
|
28
|
+
static fromJSON(e, t) {
|
|
29
|
+
if (typeof t.pos != "number")
|
|
30
|
+
throw new RangeError("Invalid input for GapCursor.fromJSON");
|
|
31
|
+
return new i(e.resolve(t.pos));
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
@internal
|
|
35
|
+
*/
|
|
36
|
+
getBookmark() {
|
|
37
|
+
return new d(this.anchor);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
@internal
|
|
41
|
+
*/
|
|
42
|
+
static valid(e) {
|
|
43
|
+
let t = e.parent;
|
|
44
|
+
if (t.isTextblock || !b(e) || !y(e))
|
|
45
|
+
return !1;
|
|
46
|
+
let o = t.type.spec.allowGapCursor;
|
|
47
|
+
if (o != null)
|
|
48
|
+
return o;
|
|
49
|
+
let r = t.contentMatchAt(e.index()).defaultType;
|
|
50
|
+
return r && r.isTextblock;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
@internal
|
|
54
|
+
*/
|
|
55
|
+
static findGapCursorFrom(e, t, o = !1) {
|
|
56
|
+
e: for (; ; ) {
|
|
57
|
+
if (!o && i.valid(e))
|
|
58
|
+
return e;
|
|
59
|
+
let r = e.pos, s = null;
|
|
60
|
+
for (let l = e.depth; ; l--) {
|
|
61
|
+
let a = e.node(l);
|
|
62
|
+
if (t > 0 ? e.indexAfter(l) < a.childCount : e.index(l) > 0) {
|
|
63
|
+
s = a.child(t > 0 ? e.indexAfter(l) : e.index(l) - 1);
|
|
64
|
+
break;
|
|
65
|
+
} else if (l == 0)
|
|
66
|
+
return null;
|
|
67
|
+
r += t;
|
|
68
|
+
let f = e.doc.resolve(r);
|
|
69
|
+
if (i.valid(f))
|
|
70
|
+
return f;
|
|
71
|
+
}
|
|
72
|
+
for (; ; ) {
|
|
73
|
+
let l = t > 0 ? s.firstChild : s.lastChild;
|
|
74
|
+
if (!l) {
|
|
75
|
+
if (s.isAtom && !s.isText && !x.isSelectable(s)) {
|
|
76
|
+
e = e.doc.resolve(r + s.nodeSize * t), o = !1;
|
|
77
|
+
continue e;
|
|
78
|
+
}
|
|
79
|
+
break;
|
|
80
|
+
}
|
|
81
|
+
s = l, r += t;
|
|
82
|
+
let a = e.doc.resolve(r);
|
|
83
|
+
if (i.valid(a))
|
|
84
|
+
return a;
|
|
85
|
+
}
|
|
86
|
+
return null;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
i.prototype.visible = !1;
|
|
91
|
+
i.findFrom = i.findGapCursorFrom;
|
|
92
|
+
u.jsonID("gapcursor", i);
|
|
93
|
+
class d {
|
|
94
|
+
constructor(e) {
|
|
95
|
+
this.pos = e;
|
|
96
|
+
}
|
|
97
|
+
map(e) {
|
|
98
|
+
return new d(e.map(this.pos));
|
|
99
|
+
}
|
|
100
|
+
resolve(e) {
|
|
101
|
+
let t = e.resolve(this.pos);
|
|
102
|
+
return i.valid(t) ? new i(t) : u.near(t);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
function C(n) {
|
|
106
|
+
return n.isAtom || n.spec.isolating || n.spec.createGapCursor;
|
|
107
|
+
}
|
|
108
|
+
function b(n) {
|
|
109
|
+
for (let e = n.depth; e >= 0; e--) {
|
|
110
|
+
let t = n.index(e), o = n.node(e);
|
|
111
|
+
if (t == 0) {
|
|
112
|
+
if (o.type.spec.isolating)
|
|
113
|
+
return !0;
|
|
114
|
+
continue;
|
|
115
|
+
}
|
|
116
|
+
for (let r = o.child(t - 1); ; r = r.lastChild) {
|
|
117
|
+
if (r.childCount == 0 && !r.inlineContent || C(r.type))
|
|
118
|
+
return !0;
|
|
119
|
+
if (r.inlineContent)
|
|
120
|
+
return !1;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
return !0;
|
|
124
|
+
}
|
|
125
|
+
function y(n) {
|
|
126
|
+
for (let e = n.depth; e >= 0; e--) {
|
|
127
|
+
let t = n.indexAfter(e), o = n.node(e);
|
|
128
|
+
if (t == o.childCount) {
|
|
129
|
+
if (o.type.spec.isolating)
|
|
130
|
+
return !0;
|
|
131
|
+
continue;
|
|
132
|
+
}
|
|
133
|
+
for (let r = o.child(t); ; r = r.firstChild) {
|
|
134
|
+
if (r.childCount == 0 && !r.inlineContent || C(r.type))
|
|
135
|
+
return !0;
|
|
136
|
+
if (r.inlineContent)
|
|
137
|
+
return !1;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
return !0;
|
|
141
|
+
}
|
|
142
|
+
function B() {
|
|
143
|
+
return new w({
|
|
144
|
+
props: {
|
|
145
|
+
decorations: F,
|
|
146
|
+
createSelectionBetween(n, e, t) {
|
|
147
|
+
return e.pos == t.pos && i.valid(t) ? new i(t) : null;
|
|
148
|
+
},
|
|
149
|
+
handleClick: T,
|
|
150
|
+
handleKeyDown: k,
|
|
151
|
+
handleDOMEvents: { beforeinput: D }
|
|
152
|
+
}
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
const k = v({
|
|
156
|
+
ArrowLeft: c("horiz", -1),
|
|
157
|
+
ArrowRight: c("horiz", 1),
|
|
158
|
+
ArrowUp: c("vert", -1),
|
|
159
|
+
ArrowDown: c("vert", 1)
|
|
160
|
+
});
|
|
161
|
+
function c(n, e) {
|
|
162
|
+
const t = n == "vert" ? e > 0 ? "down" : "up" : e > 0 ? "right" : "left";
|
|
163
|
+
return function(o, r, s) {
|
|
164
|
+
let l = o.selection, a = e > 0 ? l.$to : l.$from, f = l.empty;
|
|
165
|
+
if (l instanceof m) {
|
|
166
|
+
if (!s.endOfTextblock(t) || a.depth == 0)
|
|
167
|
+
return !1;
|
|
168
|
+
f = !1, a = o.doc.resolve(e > 0 ? a.after() : a.before());
|
|
169
|
+
}
|
|
170
|
+
let p = i.findGapCursorFrom(a, e, f);
|
|
171
|
+
return p ? (r && r(o.tr.setSelection(new i(p))), !0) : !1;
|
|
172
|
+
};
|
|
173
|
+
}
|
|
174
|
+
function T(n, e, t) {
|
|
175
|
+
if (!n || !n.editable)
|
|
176
|
+
return !1;
|
|
177
|
+
let o = n.state.doc.resolve(e);
|
|
178
|
+
if (!i.valid(o))
|
|
179
|
+
return !1;
|
|
180
|
+
let r = n.posAtCoords({ left: t.clientX, top: t.clientY });
|
|
181
|
+
return r && r.inside > -1 && x.isSelectable(n.state.doc.nodeAt(r.inside)) ? !1 : (n.dispatch(n.state.tr.setSelection(new i(o))), !0);
|
|
182
|
+
}
|
|
183
|
+
function D(n, e) {
|
|
184
|
+
if (e.inputType != "insertCompositionText" || !(n.state.selection instanceof i))
|
|
185
|
+
return !1;
|
|
186
|
+
let { $from: t } = n.state.selection, o = t.parent.contentMatchAt(t.index()).findWrapping(n.state.schema.nodes.text);
|
|
187
|
+
if (!o)
|
|
188
|
+
return !1;
|
|
189
|
+
let r = h.empty;
|
|
190
|
+
for (let l = o.length - 1; l >= 0; l--)
|
|
191
|
+
r = h.from(o[l].createAndFill(null, r));
|
|
192
|
+
let s = n.state.tr.replace(t.pos, t.pos, new g(r, 0, 0));
|
|
193
|
+
return s.setSelection(m.near(s.doc.resolve(t.pos + 1))), n.dispatch(s), !1;
|
|
194
|
+
}
|
|
195
|
+
function F(n) {
|
|
196
|
+
if (!(n.selection instanceof i))
|
|
197
|
+
return null;
|
|
198
|
+
let e = document.createElement("div");
|
|
199
|
+
return e.className = "ProseMirror-gapcursor", S.create(n.doc, [A.widget(n.selection.head, e, { key: "gapcursor" })]);
|
|
200
|
+
}
|
|
201
|
+
export {
|
|
202
|
+
i as GapCursor,
|
|
203
|
+
B as gapCursor
|
|
204
|
+
};
|