@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,23 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as t } from "react";
|
|
3
|
+
import { cn as i } from "../../utils/cn.js";
|
|
4
|
+
const p = t(
|
|
5
|
+
({ className: r, ...o }, a) => /* @__PURE__ */ e(
|
|
6
|
+
"div",
|
|
7
|
+
{
|
|
8
|
+
ref: a,
|
|
9
|
+
className: i(
|
|
10
|
+
"w-px bg-stroke-base-secondary",
|
|
11
|
+
"h-comp-texteditor-ico-bg-size",
|
|
12
|
+
r
|
|
13
|
+
),
|
|
14
|
+
role: "separator",
|
|
15
|
+
"aria-orientation": "vertical",
|
|
16
|
+
...o
|
|
17
|
+
}
|
|
18
|
+
)
|
|
19
|
+
);
|
|
20
|
+
p.displayName = "ToolbarSeparator";
|
|
21
|
+
export {
|
|
22
|
+
p as ToolbarSeparator
|
|
23
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { TextEditor, type TextEditorProps, type TextEditorRef, type TextEditorToolbarConfig, } from './TextEditor';
|
|
2
|
+
export { ToolbarButton, toolbarButtonVariants, type ToolbarButtonProps, } from './ToolbarButton';
|
|
3
|
+
export { ToolbarSeparator, type ToolbarSeparatorProps, } from './ToolbarSeparator';
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/TextEditor/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EACV,KAAK,eAAe,EACpB,KAAK,aAAa,EAClB,KAAK,uBAAuB,GAC7B,MAAM,cAAc,CAAA;AACrB,OAAO,EACL,aAAa,EACb,qBAAqB,EACrB,KAAK,kBAAkB,GACxB,MAAM,iBAAiB,CAAA;AACxB,OAAO,EACL,gBAAgB,EAChB,KAAK,qBAAqB,GAC3B,MAAM,oBAAoB,CAAA"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Editor } from '@tiptap/react';
|
|
2
|
+
/**
|
|
3
|
+
* Return type for the useLinkEditor hook.
|
|
4
|
+
*/
|
|
5
|
+
export interface UseLinkEditorReturn {
|
|
6
|
+
/** Current URL being edited */
|
|
7
|
+
linkUrl: string;
|
|
8
|
+
/** Sets the URL value */
|
|
9
|
+
setLinkUrl: (url: string) => void;
|
|
10
|
+
/** Whether the link edit input is visible */
|
|
11
|
+
isEditingLink: boolean;
|
|
12
|
+
/** Sets the editing state */
|
|
13
|
+
setIsEditingLink: (editing: boolean) => void;
|
|
14
|
+
/** Opens the link edit input with the current link's URL */
|
|
15
|
+
handleOpenLinkEdit: () => void;
|
|
16
|
+
/** Saves the current URL to the selected text */
|
|
17
|
+
handleSaveLink: () => void;
|
|
18
|
+
/** Removes the link from the selected text */
|
|
19
|
+
handleRemoveLink: () => void;
|
|
20
|
+
/** Cancels editing — removes the link if it was newly created with an empty href */
|
|
21
|
+
handleCancelEdit: () => void;
|
|
22
|
+
/** Handles toolbar link button click - opens edit for existing links or creates new */
|
|
23
|
+
handleLinkToolbarClick: () => void;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Hook for managing link editing state and actions in the TextEditor.
|
|
27
|
+
*
|
|
28
|
+
* Handles the link bubble menu interactions including opening the edit input,
|
|
29
|
+
* saving links, and removing links from selected text.
|
|
30
|
+
*
|
|
31
|
+
* @param editor - The TipTap editor instance
|
|
32
|
+
* @returns Object containing link state and handler functions
|
|
33
|
+
*
|
|
34
|
+
* @internal
|
|
35
|
+
*/
|
|
36
|
+
export declare const useLinkEditor: (editor: Editor | null) => UseLinkEditorReturn;
|
|
37
|
+
//# sourceMappingURL=useLinkEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useLinkEditor.d.ts","sourceRoot":"","sources":["../../../src/components/TextEditor/useLinkEditor.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AAE3C;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,+BAA+B;IAC/B,OAAO,EAAE,MAAM,CAAA;IACf,yBAAyB;IACzB,UAAU,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAA;IACjC,6CAA6C;IAC7C,aAAa,EAAE,OAAO,CAAA;IACtB,6BAA6B;IAC7B,gBAAgB,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAA;IAC5C,4DAA4D;IAC5D,kBAAkB,EAAE,MAAM,IAAI,CAAA;IAC9B,iDAAiD;IACjD,cAAc,EAAE,MAAM,IAAI,CAAA;IAC1B,8CAA8C;IAC9C,gBAAgB,EAAE,MAAM,IAAI,CAAA;IAC5B,oFAAoF;IACpF,gBAAgB,EAAE,MAAM,IAAI,CAAA;IAC5B,uFAAuF;IACvF,sBAAsB,EAAE,MAAM,IAAI,CAAA;CACnC;AAED;;;;;;;;;;GAUG;AACH,eAAO,MAAM,aAAa,GAAI,QAAQ,MAAM,GAAG,IAAI,KAAG,mBAgErD,CAAA"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { useState as l, useCallback as s } from "react";
|
|
2
|
+
const g = (n) => {
|
|
3
|
+
const [i, k] = l(""), [c, e] = l(!1), t = s(() => {
|
|
4
|
+
if (!n) return;
|
|
5
|
+
const a = n.getAttributes("link").href ?? "";
|
|
6
|
+
k(a || "https://"), e(!0);
|
|
7
|
+
}, [n]), u = s(() => {
|
|
8
|
+
n && (i === "" ? n.chain().focus().extendMarkRange("link").unsetLink().run() : n.chain().focus().extendMarkRange("link").setLink({ href: i }).run(), e(!1));
|
|
9
|
+
}, [n, i]), f = s(() => {
|
|
10
|
+
n && (n.chain().focus().extendMarkRange("link").unsetLink().run(), e(!1));
|
|
11
|
+
}, [n]), r = s(() => {
|
|
12
|
+
if (!n) return;
|
|
13
|
+
const a = n.getAttributes("link").href;
|
|
14
|
+
n.isActive("link") && (!a || a === "") && n.chain().focus().extendMarkRange("link").unsetLink().run(), e(!1);
|
|
15
|
+
}, [n]), h = s(() => {
|
|
16
|
+
n && (n.isActive("link") || n.chain().focus().setLink({ href: "" }).run(), t());
|
|
17
|
+
}, [n, t]);
|
|
18
|
+
return {
|
|
19
|
+
linkUrl: i,
|
|
20
|
+
setLinkUrl: k,
|
|
21
|
+
isEditingLink: c,
|
|
22
|
+
setIsEditingLink: e,
|
|
23
|
+
handleOpenLinkEdit: t,
|
|
24
|
+
handleSaveLink: u,
|
|
25
|
+
handleRemoveLink: f,
|
|
26
|
+
handleCancelEdit: r,
|
|
27
|
+
handleLinkToolbarClick: h
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
export {
|
|
31
|
+
g as useLinkEditor
|
|
32
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,cAAc,iBAAiB,CAAA;AAG/B,cAAc,aAAa,CAAA;AAC3B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,QAAQ,CAAA;AACtB,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,QAAQ,CAAA;AACtB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,WAAW,CAAA;AACzB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,UAAU,CAAA;AACxB,cAAc,oBAAoB,CAAA;AAClC,cAAc,wBAAwB,CAAA;AACtC,cAAc,oBAAoB,CAAA;AAClC,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AACzB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA;AACrB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,YAAY,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,cAAc,iBAAiB,CAAA;AAG/B,cAAc,aAAa,CAAA;AAC3B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,QAAQ,CAAA;AACtB,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,QAAQ,CAAA;AACtB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,WAAW,CAAA;AACzB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,UAAU,CAAA;AACxB,cAAc,oBAAoB,CAAA;AAClC,cAAc,wBAAwB,CAAA;AACtC,cAAc,oBAAoB,CAAA;AAClC,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AACzB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA;AACrB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,YAAY,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -6,14 +6,14 @@ import { skTranslations as d } from "./translations/locales/sk.js";
|
|
|
6
6
|
import { Accordion as u, AccordionContent as s, AccordionHeader as c, AccordionItem as T } from "./components/Accordion/Accordion.js";
|
|
7
7
|
import { Alert as b } from "./components/Alert/Alert.js";
|
|
8
8
|
import { Avatar as I, AvatarFallback as S, AvatarImage as B } from "./components/Avatar/Avatar.js";
|
|
9
|
-
import { Breadcrumb as h, BreadcrumbEllipsis as L, BreadcrumbItem as w, BreadcrumbLink as R, BreadcrumbList as y, BreadcrumbPage as P, BreadcrumbSeparator as
|
|
10
|
-
import { Button as
|
|
9
|
+
import { Breadcrumb as h, BreadcrumbEllipsis as L, BreadcrumbItem as w, BreadcrumbLink as R, BreadcrumbList as y, BreadcrumbPage as P, BreadcrumbSeparator as E } from "./components/Breadcrumb/Breadcrumb.js";
|
|
10
|
+
import { Button as V } from "./components/Button/Button.js";
|
|
11
11
|
import { buttonVariants as v } from "./components/Button/buttonVariants.js";
|
|
12
12
|
import { Calendar as F, CalendarBase as H, CalendarDayButton as z } from "./components/Calendar/Calendar.js";
|
|
13
13
|
import { formatDate as U } from "./components/Calendar/utils/formatDate.js";
|
|
14
14
|
import { formatDateRange as K } from "./components/Calendar/utils/formatDateRange.js";
|
|
15
|
-
import { Checkbox as
|
|
16
|
-
import { Chip as
|
|
15
|
+
import { Checkbox as q } from "./components/Checkbox/Checkbox.js";
|
|
16
|
+
import { Chip as Z, chipVariants as j } from "./components/Chip/Chip.js";
|
|
17
17
|
import { DatePicker as Q } from "./components/DatePicker/DatePicker.js";
|
|
18
18
|
import { Dialog as Y, DialogClose as $, DialogContent as oo, DialogDescription as ro, DialogOverlay as eo, DialogPortal as to, DialogTitle as ao, DialogTrigger as no } from "./components/Dialog/Dialog.js";
|
|
19
19
|
import { DropdownMenu as io, DropdownMenuButtonItem as mo, DropdownMenuCheckboxItem as lo, DropdownMenuContent as xo, DropdownMenuItem as fo, DropdownMenuPortal as go, DropdownMenuRadioGroup as uo, DropdownMenuRadioItem as so, DropdownMenuSeparator as co, DropdownMenuTrigger as To } from "./components/DropdownMenu/DropdownMenu.js";
|
|
@@ -21,46 +21,49 @@ import { EdgeButton as bo, edgeButtonVariants as Do } from "./components/EdgeBut
|
|
|
21
21
|
import { EmptyState as So } from "./components/EmptyState/EmptyState.js";
|
|
22
22
|
import { FileUpload as Mo } from "./components/FileUpload/FileUpload.js";
|
|
23
23
|
import { Flex as Lo, flexVariants as wo } from "./components/Flex/Flex.js";
|
|
24
|
-
import { ArrowsSorting as yo, Barcode as Po, BulletList as
|
|
24
|
+
import { ArrowsSorting as yo, Barcode as Po, BulletList as Eo, CZK as ko, CheckMinus as Vo, Checked as Ao, Coins as vo, Coins2Bold as Go, Coins2Outline as Fo, Coins3 as Ho, ColorSquare as zo, Colour as Oo, Cutlery as Uo, DoubleArrowRight as _o, EUR as Ko, EditorBold as No, EditorItalic as qo, EditorStrikethrough as Xo, EmptyCircle as Zo, ExternalLink as jo, EyeClosed as Jo, Fingerprint as Qo, FlagCz as Wo, FlagEn as Yo, FlagSk as $o, LayoutHorizontal as or, LayoutVertical as rr, MagnifyingGlass as er, MenuDotsVertical as tr, MuzaIcon as ar, NumberList as nr, Plus as pr, RemoveTextFormat as ir, Reorder as mr, SKMap as lr, Scan as xr, Spinner as fr, TextH1 as dr, TextH2 as gr, TextH3 as ur, XClose as sr } from "./components/Icons/CustomIcons.js";
|
|
25
25
|
export * from "@solar-icons/react-perf";
|
|
26
|
-
import { Input as
|
|
27
|
-
import { Lightbox as
|
|
28
|
-
import { Item as
|
|
29
|
-
import { LanguageSwitcher as
|
|
30
|
-
import { Loader as
|
|
31
|
-
import { DEFAULT_LOGIN_GLB_PATH as
|
|
26
|
+
import { Input as Cr } from "./components/Input/Input.js";
|
|
27
|
+
import { Lightbox as Dr, LightboxGalleryOnlyImage as Ir, LightboxTrigger as Sr } from "./components/Lightbox/Lightbox.js";
|
|
28
|
+
import { Item as Mr } from "./node_modules/react-photoswipe-gallery/dist/item.js";
|
|
29
|
+
import { LanguageSwitcher as Lr } from "./components/LanguageSwitcher/LanguageSwitcher.js";
|
|
30
|
+
import { Loader as Rr } from "./components/Loader/Loader.js";
|
|
31
|
+
import { DEFAULT_LOGIN_GLB_PATH as Pr } from "./components/LoginScreen/LoginScreen3D/LoginScreen3DModel.js";
|
|
32
32
|
import { LoginScreen as kr } from "./components/LoginScreen/LoginScreen.js";
|
|
33
33
|
import { LoginScreenItem as Ar } from "./components/LoginScreen/LoginScreenItem.js";
|
|
34
|
-
import { MultiSelect as
|
|
35
|
-
import { MuzaUIProvider as
|
|
36
|
-
import { PasswordInput as
|
|
37
|
-
import { PinIndicator as
|
|
38
|
-
import { Popover as
|
|
39
|
-
import { RadioGroup as jr, RadioGroupItem as
|
|
40
|
-
import { ReorderableGroup as
|
|
41
|
-
import { ReorderableTable as
|
|
42
|
-
import { Searchbar as
|
|
43
|
-
import { Select as
|
|
44
|
-
import { SegmentedControl as
|
|
45
|
-
import { SegmentedIconControl as
|
|
46
|
-
import { SliderIndicators as
|
|
47
|
-
import { toast as
|
|
48
|
-
import { ToastContainer as
|
|
49
|
-
import { Stepper as
|
|
50
|
-
import { SwipeButton as
|
|
51
|
-
import { Switch as
|
|
52
|
-
import { Tag as
|
|
53
|
-
import { Textarea as
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
34
|
+
import { MultiSelect as Gr } from "./components/MultiSelect/MultiSelect.js";
|
|
35
|
+
import { MuzaUIProvider as Hr } from "./components/MuzaUIProvider/MuzaUIProvider.js";
|
|
36
|
+
import { PasswordInput as Or } from "./components/PasswordInput/PasswordInput.js";
|
|
37
|
+
import { PinIndicator as _r } from "./components/PinIndicator/PinIndicator.js";
|
|
38
|
+
import { Popover as Nr, PopoverContent as qr, PopoverTrigger as Xr } from "./components/Popover/Popover.js";
|
|
39
|
+
import { RadioGroup as jr, RadioGroupItem as Jr } from "./components/Radio/Radio.js";
|
|
40
|
+
import { ReorderableGroup as Wr, ReorderableHandle as Yr, ReorderableItem as $r, ReorderableStaticItem as oe, useReorderableGroup as re, useReorderableItem as ee } from "./components/Reorderable/Reorderable.js";
|
|
41
|
+
import { ReorderableTable as ae } from "./components/ReorderableTable/ReorderableTable.js";
|
|
42
|
+
import { Searchbar as pe } from "./components/Searchbar/Searchbar.js";
|
|
43
|
+
import { Select as me } from "./components/Select/Select.js";
|
|
44
|
+
import { SegmentedControl as xe, SegmentedControlItem as fe } from "./components/SegmentedControl/SegmentedControl.js";
|
|
45
|
+
import { SegmentedIconControl as ge, SegmentedIconControlItem as ue } from "./components/SegmentedIconControl/SegmentedIconControl.js";
|
|
46
|
+
import { SliderIndicators as ce } from "./components/SliderIndicators/SliderIndicators.js";
|
|
47
|
+
import { toast as Ce } from "./components/Toast/Toast.js";
|
|
48
|
+
import { ToastContainer as De } from "./components/Toast/ToastContainer.js";
|
|
49
|
+
import { Stepper as Se } from "./components/Stepper/Stepper.js";
|
|
50
|
+
import { SwipeButton as Me } from "./components/SwipeButton/SwipeButton.js";
|
|
51
|
+
import { Switch as Le } from "./components/Switch/Switch.js";
|
|
52
|
+
import { Tag as Re, tagVariants as ye } from "./components/Tag/Tag.js";
|
|
53
|
+
import { Textarea as Ee } from "./components/Textarea/Textarea.js";
|
|
54
|
+
import { TextEditor as Ve } from "./components/TextEditor/TextEditor.js";
|
|
55
|
+
import { ToolbarButton as ve, toolbarButtonVariants as Ge } from "./components/TextEditor/ToolbarButton.js";
|
|
56
|
+
import { ToolbarSeparator as He } from "./components/TextEditor/ToolbarSeparator.js";
|
|
57
|
+
import { TimePicker as Oe } from "./components/TimePicker/TimePicker.js";
|
|
58
|
+
import { Toggle as _e, toggleVariants as Ke } from "./components/Toggle/Toggle.js";
|
|
59
|
+
import { ToggleGroup as qe, ToggleGroupItem as Xe } from "./components/ToggleGroup/ToggleGroup.js";
|
|
60
|
+
import { Tooltip as je, TooltipContent as Je, TooltipProvider as Qe, TooltipTrigger as We } from "./components/Tooltip/Tooltip.js";
|
|
61
|
+
import { Typography as $e, typographyVariants as ot } from "./components/Typography/Typography.js";
|
|
62
|
+
import { DataTable as et, dataTableCellVariants as tt } from "./components/DataTable/DataTable.js";
|
|
63
|
+
import { ExpandableTable as nt } from "./components/ExpandableTable/ExpandableTable.js";
|
|
64
|
+
import { Skeleton as it } from "./components/Skeleton/Skeleton.js";
|
|
65
|
+
import { cn as lt } from "./utils/cn.js";
|
|
66
|
+
import { getSpacingVariants as ft, spacingVariantDefinitions as dt } from "./utils/spacing.js";
|
|
64
67
|
export {
|
|
65
68
|
u as Accordion,
|
|
66
69
|
s as AccordionContent,
|
|
@@ -78,25 +81,26 @@ export {
|
|
|
78
81
|
R as BreadcrumbLink,
|
|
79
82
|
y as BreadcrumbList,
|
|
80
83
|
P as BreadcrumbPage,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
84
|
+
E as BreadcrumbSeparator,
|
|
85
|
+
Eo as BulletList,
|
|
86
|
+
V as Button,
|
|
87
|
+
ko as CZK,
|
|
85
88
|
F as Calendar,
|
|
86
89
|
H as CalendarBase,
|
|
87
90
|
z as CalendarDayButton,
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
91
|
+
Vo as CheckMinus,
|
|
92
|
+
q as Checkbox,
|
|
93
|
+
Ao as Checked,
|
|
94
|
+
Z as Chip,
|
|
92
95
|
vo as Coins,
|
|
93
96
|
Go as Coins2Bold,
|
|
94
97
|
Fo as Coins2Outline,
|
|
95
98
|
Ho as Coins3,
|
|
96
|
-
zo as
|
|
97
|
-
Oo as
|
|
98
|
-
|
|
99
|
-
|
|
99
|
+
zo as ColorSquare,
|
|
100
|
+
Oo as Colour,
|
|
101
|
+
Uo as Cutlery,
|
|
102
|
+
Pr as DEFAULT_LOGIN_GLB_PATH,
|
|
103
|
+
et as DataTable,
|
|
100
104
|
Q as DatePicker,
|
|
101
105
|
Y as Dialog,
|
|
102
106
|
$ as DialogClose,
|
|
@@ -106,7 +110,7 @@ export {
|
|
|
106
110
|
to as DialogPortal,
|
|
107
111
|
ao as DialogTitle,
|
|
108
112
|
no as DialogTrigger,
|
|
109
|
-
|
|
113
|
+
_o as DoubleArrowRight,
|
|
110
114
|
io as DropdownMenu,
|
|
111
115
|
mo as DropdownMenuButtonItem,
|
|
112
116
|
lo as DropdownMenuCheckboxItem,
|
|
@@ -117,105 +121,109 @@ export {
|
|
|
117
121
|
so as DropdownMenuRadioItem,
|
|
118
122
|
co as DropdownMenuSeparator,
|
|
119
123
|
To as DropdownMenuTrigger,
|
|
120
|
-
|
|
124
|
+
Ko as EUR,
|
|
121
125
|
bo as EdgeButton,
|
|
122
|
-
|
|
123
|
-
|
|
126
|
+
No as EditorBold,
|
|
127
|
+
qo as EditorItalic,
|
|
124
128
|
Xo as EditorStrikethrough,
|
|
125
129
|
Zo as EmptyCircle,
|
|
126
130
|
So as EmptyState,
|
|
127
|
-
|
|
131
|
+
nt as ExpandableTable,
|
|
128
132
|
jo as ExternalLink,
|
|
129
|
-
|
|
133
|
+
Jo as EyeClosed,
|
|
130
134
|
Mo as FileUpload,
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
+
Qo as Fingerprint,
|
|
136
|
+
Wo as FlagCz,
|
|
137
|
+
Yo as FlagEn,
|
|
138
|
+
$o as FlagSk,
|
|
135
139
|
Lo as Flex,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
140
|
+
Cr as Input,
|
|
141
|
+
Lr as LanguageSwitcher,
|
|
142
|
+
or as LayoutHorizontal,
|
|
143
|
+
rr as LayoutVertical,
|
|
144
|
+
Dr as Lightbox,
|
|
145
|
+
Ir as LightboxGalleryOnlyImage,
|
|
146
|
+
Mr as LightboxItem,
|
|
147
|
+
Sr as LightboxTrigger,
|
|
148
|
+
Rr as Loader,
|
|
145
149
|
kr as LoginScreen,
|
|
146
150
|
Ar as LoginScreenItem,
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
151
|
+
er as MagnifyingGlass,
|
|
152
|
+
tr as MenuDotsVertical,
|
|
153
|
+
Gr as MultiSelect,
|
|
154
|
+
ar as MuzaIcon,
|
|
155
|
+
Hr as MuzaUIProvider,
|
|
156
|
+
nr as NumberList,
|
|
157
|
+
Or as PasswordInput,
|
|
158
|
+
_r as PinIndicator,
|
|
159
|
+
pr as Plus,
|
|
160
|
+
Nr as Popover,
|
|
161
|
+
qr as PopoverContent,
|
|
158
162
|
Xr as PopoverTrigger,
|
|
159
163
|
jr as RadioGroup,
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
dr as
|
|
185
|
-
gr as
|
|
186
|
-
|
|
187
|
-
Ee as
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
164
|
+
Jr as RadioGroupItem,
|
|
165
|
+
ir as RemoveTextFormat,
|
|
166
|
+
mr as Reorder,
|
|
167
|
+
Wr as ReorderableGroup,
|
|
168
|
+
Yr as ReorderableHandle,
|
|
169
|
+
$r as ReorderableItem,
|
|
170
|
+
oe as ReorderableStaticItem,
|
|
171
|
+
ae as ReorderableTable,
|
|
172
|
+
lr as SKMap,
|
|
173
|
+
xr as Scan,
|
|
174
|
+
pe as Searchbar,
|
|
175
|
+
xe as SegmentedControl,
|
|
176
|
+
fe as SegmentedControlItem,
|
|
177
|
+
ge as SegmentedIconControl,
|
|
178
|
+
ue as SegmentedIconControlItem,
|
|
179
|
+
me as Select,
|
|
180
|
+
it as Skeleton,
|
|
181
|
+
ce as SliderIndicators,
|
|
182
|
+
fr as Spinner,
|
|
183
|
+
Se as Stepper,
|
|
184
|
+
Me as SwipeButton,
|
|
185
|
+
Le as Switch,
|
|
186
|
+
Re as Tag,
|
|
187
|
+
Ve as TextEditor,
|
|
188
|
+
dr as TextH1,
|
|
189
|
+
gr as TextH2,
|
|
190
|
+
ur as TextH3,
|
|
191
|
+
Ee as Textarea,
|
|
192
|
+
Oe as TimePicker,
|
|
193
|
+
De as ToastContainer,
|
|
194
|
+
_e as Toggle,
|
|
195
|
+
qe as ToggleGroup,
|
|
196
|
+
Xe as ToggleGroupItem,
|
|
197
|
+
ve as ToolbarButton,
|
|
198
|
+
He as ToolbarSeparator,
|
|
199
|
+
je as Tooltip,
|
|
200
|
+
Je as TooltipContent,
|
|
201
|
+
Qe as TooltipProvider,
|
|
202
|
+
We as TooltipTrigger,
|
|
196
203
|
t as TranslationContext,
|
|
197
204
|
a as TranslationProvider,
|
|
198
|
-
|
|
199
|
-
|
|
205
|
+
$e as Typography,
|
|
206
|
+
sr as XClose,
|
|
200
207
|
v as buttonVariants,
|
|
201
|
-
|
|
202
|
-
|
|
208
|
+
j as chipVariants,
|
|
209
|
+
lt as cn,
|
|
203
210
|
x as csTranslations,
|
|
204
|
-
|
|
211
|
+
tt as dataTableCellVariants,
|
|
205
212
|
Do as edgeButtonVariants,
|
|
206
213
|
m as enTranslations,
|
|
207
214
|
wo as flexVariants,
|
|
208
215
|
U as formatDate,
|
|
209
216
|
K as formatDateRange,
|
|
210
|
-
|
|
217
|
+
ft as getSpacingVariants,
|
|
211
218
|
d as skTranslations,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
219
|
+
dt as spacingVariantDefinitions,
|
|
220
|
+
ye as tagVariants,
|
|
221
|
+
Ce as toast,
|
|
222
|
+
Ke as toggleVariants,
|
|
223
|
+
Ge as toolbarButtonVariants,
|
|
224
|
+
ot as typographyVariants,
|
|
217
225
|
n as useMuzaTranslationContext,
|
|
218
226
|
p as useMuzaTranslations,
|
|
219
|
-
|
|
220
|
-
|
|
227
|
+
re as useReorderableGroup,
|
|
228
|
+
ee as useReorderableItem
|
|
221
229
|
};
|