@vkzstudio/muza-ui 1.0.8 → 1.0.9

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.
Files changed (143) hide show
  1. package/dist/components/Button/Button.js +19 -19
  2. package/dist/components/Button/ButtonLoader.d.ts +7 -0
  3. package/dist/components/Button/ButtonLoader.d.ts.map +1 -0
  4. package/dist/components/Button/ButtonLoader.js +40 -0
  5. package/dist/components/Icons/CustomIcons.js +1 -1
  6. package/dist/components/ReorderableTable/ReorderableTable.js +1 -1
  7. package/dist/components/SwipeButton/SwipeButton.js +1 -1
  8. package/dist/node_modules/framer-motion/dist/es/animation/animate/resolve-subjects.js +4 -4
  9. package/dist/node_modules/framer-motion/dist/es/animation/animate/subject.js +24 -24
  10. package/dist/node_modules/framer-motion/dist/es/animation/sequence/create.js +61 -56
  11. package/dist/node_modules/framer-motion/dist/es/animation/utils/create-visual-element.js +8 -8
  12. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.js +32 -30
  13. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +22 -22
  14. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/index.js +34 -32
  15. package/dist/node_modules/framer-motion/dist/es/components/Reorder/Group.js +34 -26
  16. package/dist/node_modules/framer-motion/dist/es/components/Reorder/Item.js +30 -25
  17. package/dist/node_modules/framer-motion/dist/es/components/Reorder/utils/auto-scroll.js +64 -0
  18. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/utils.js +2 -2
  19. package/dist/node_modules/framer-motion/dist/es/events/add-pointer-event.js +3 -3
  20. package/dist/node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +100 -89
  21. package/dist/node_modules/framer-motion/dist/es/gestures/drag/index.js +11 -7
  22. package/dist/node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.js +4 -4
  23. package/dist/node_modules/framer-motion/dist/es/gestures/focus.js +2 -2
  24. package/dist/node_modules/framer-motion/dist/es/gestures/hover.js +1 -1
  25. package/dist/node_modules/framer-motion/dist/es/gestures/pan/PanSession.js +106 -59
  26. package/dist/node_modules/framer-motion/dist/es/gestures/pan/index.js +6 -6
  27. package/dist/node_modules/framer-motion/dist/es/gestures/press.js +1 -1
  28. package/dist/node_modules/framer-motion/dist/es/motion/features/animation/exit.js +1 -1
  29. package/dist/node_modules/framer-motion/dist/es/motion/features/animation/index.js +5 -5
  30. package/dist/node_modules/framer-motion/dist/es/motion/features/definitions.js +18 -6
  31. package/dist/node_modules/framer-motion/dist/es/motion/features/drag.js +1 -1
  32. package/dist/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +27 -42
  33. package/dist/node_modules/framer-motion/dist/es/motion/features/layout.js +4 -4
  34. package/dist/node_modules/framer-motion/dist/es/motion/features/load-features.js +10 -7
  35. package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/index.js +4 -4
  36. package/dist/node_modules/framer-motion/dist/es/motion/index.js +49 -49
  37. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -13
  38. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.js +41 -40
  39. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.js +13 -13
  40. package/dist/node_modules/framer-motion/dist/es/render/dom/create-visual-element.js +6 -6
  41. package/dist/node_modules/framer-motion/dist/es/render/dom/use-render.js +12 -12
  42. package/dist/node_modules/framer-motion/dist/es/render/html/use-html-visual-state.js +3 -3
  43. package/dist/node_modules/framer-motion/dist/es/render/html/use-props.js +7 -7
  44. package/dist/node_modules/framer-motion/dist/es/render/svg/use-props.js +5 -5
  45. package/dist/node_modules/framer-motion/dist/es/render/svg/use-svg-visual-state.js +1 -1
  46. package/dist/node_modules/framer-motion/dist/es/value/use-transform.js +26 -18
  47. package/dist/node_modules/motion-dom/dist/es/animation/AsyncMotionValueAnimation.js +33 -30
  48. package/dist/node_modules/motion-dom/dist/es/animation/NativeAnimation.js +17 -17
  49. package/dist/node_modules/motion-dom/dist/es/animation/NativeAnimationExtended.js +20 -19
  50. package/dist/node_modules/motion-dom/dist/es/animation/animate/single-value.js +10 -0
  51. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/interfaces/motion-value.js +13 -13
  52. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/interfaces/visual-element-target.js +11 -11
  53. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/DOMKeyframesResolver.js +24 -20
  54. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/utils/default-transitions.js +1 -1
  55. package/dist/node_modules/motion-dom/dist/es/animation/utils/is-css-variable.js +7 -3
  56. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +1 -1
  57. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/animation/mix-values.js +2 -2
  58. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/delta-apply.js +4 -4
  59. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/delta-calc.js +1 -1
  60. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/delta-remove.js +6 -6
  61. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/node/DocumentProjectionNode.js +7 -4
  62. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/node/create-projection-node.js +149 -149
  63. package/dist/node_modules/motion-dom/dist/es/projection/shared/stack.js +60 -0
  64. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/styles/scale-border-radius.js +1 -1
  65. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/styles/scale-box-shadow.js +2 -2
  66. package/dist/node_modules/motion-dom/dist/es/projection/styles/scale-correction.js +21 -0
  67. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/VisualElement.js +58 -50
  68. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/dom/DOMVisualElement.js +7 -6
  69. package/dist/node_modules/motion-dom/dist/es/render/dom/utils/camel-to-dash.js +6 -0
  70. package/dist/node_modules/motion-dom/dist/es/render/html/HTMLVisualElement.js +38 -0
  71. package/dist/node_modules/motion-dom/dist/es/render/html/utils/build-styles.js +29 -0
  72. package/dist/node_modules/motion-dom/dist/es/render/html/utils/build-transform.js +37 -0
  73. package/dist/node_modules/motion-dom/dist/es/render/html/utils/scrape-motion-values.js +14 -0
  74. package/dist/node_modules/motion-dom/dist/es/render/svg/SVGVisualElement.js +40 -0
  75. package/dist/node_modules/motion-dom/dist/es/render/svg/utils/build-attrs.js +32 -0
  76. package/dist/node_modules/motion-dom/dist/es/render/svg/utils/path.js +15 -0
  77. package/dist/node_modules/motion-dom/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
  78. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/animation-state.js +31 -31
  79. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/is-controlling-variants.js +1 -1
  80. package/dist/node_modules/motion-dom/dist/es/render/utils/is-forced-motion-value.js +9 -0
  81. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/motion-values.js +6 -6
  82. package/dist/node_modules/motion-dom/dist/es/render/utils/reduced-motion/index.js +15 -0
  83. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/setters.js +4 -4
  84. package/dist/node_modules/{framer-motion → motion-dom}/dist/es/utils/delay.js +2 -2
  85. package/dist/node_modules/motion-dom/dist/es/utils/resolve-elements.js +8 -6
  86. package/dist/node_modules/motion-dom/dist/es/value/types/maps/number.js +62 -42
  87. package/dist/node_modules/motion-dom/dist/es/value/utils/resolve-motion-value.js +7 -0
  88. package/dist/node_modules/motion-dom/dist/es/value/will-change/is.js +7 -0
  89. package/dist/node_modules/motion-utils/dist/es/errors.js +10 -9
  90. package/package.json +1 -1
  91. package/dist/node_modules/framer-motion/dist/es/animation/animate/single-value.js +0 -10
  92. package/dist/node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +0 -8
  93. package/dist/node_modules/framer-motion/dist/es/projection/shared/stack.js +0 -58
  94. package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-correction.js +0 -10
  95. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +0 -4
  96. package/dist/node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.js +0 -38
  97. package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-styles.js +0 -29
  98. package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-transform.js +0 -31
  99. package/dist/node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +0 -12
  100. package/dist/node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.js +0 -40
  101. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.js +0 -23
  102. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/path.js +0 -18
  103. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +0 -15
  104. package/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/index.js +0 -13
  105. package/dist/node_modules/framer-motion/dist/es/value/use-will-change/is.js +0 -7
  106. package/dist/node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.js +0 -7
  107. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/interfaces/visual-element-variant.js +0 -0
  108. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/interfaces/visual-element.js +0 -0
  109. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/optimized-appear/data-id.js +0 -0
  110. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/optimized-appear/get-appear-id.js +0 -0
  111. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/utils/calc-child-stagger.js +0 -0
  112. /package/dist/node_modules/{framer-motion/dist/es/animation/animators/waapi → motion-dom/dist/es/animation}/utils/get-final-keyframe.js +0 -0
  113. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/animation/utils/is-transition-defined.js +0 -0
  114. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/events/add-dom-event.js +0 -0
  115. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/conversion.js +0 -0
  116. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/copy.js +0 -0
  117. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/models.js +0 -0
  118. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/geometry/utils.js +0 -0
  119. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/node/HTMLProjectionNode.js +0 -0
  120. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/node/state.js +0 -0
  121. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/styles/transform.js +0 -0
  122. /package/dist/node_modules/{framer-motion/dist/es/render → motion-dom/dist/es/projection}/utils/compare-by-depth.js +0 -0
  123. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/utils/each-axis.js +0 -0
  124. /package/dist/node_modules/{framer-motion/dist/es/render → motion-dom/dist/es/projection}/utils/flat-tree.js +0 -0
  125. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/utils/has-transform.js +0 -0
  126. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/projection/utils/measure.js +0 -0
  127. /package/dist/node_modules/{framer-motion/dist/es/motion/features → motion-dom/dist/es/render}/Feature.js +0 -0
  128. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/html/utils/render.js +0 -0
  129. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/object/ObjectVisualElement.js +0 -0
  130. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/store.js +0 -0
  131. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/svg/utils/camel-case-attrs.js +0 -0
  132. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/svg/utils/is-svg-tag.js +0 -0
  133. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/svg/utils/render.js +0 -0
  134. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/get-variant-context.js +0 -0
  135. /package/dist/node_modules/{framer-motion/dist/es/animation → motion-dom/dist/es/render}/utils/is-animation-controls.js +0 -0
  136. /package/dist/node_modules/{framer-motion/dist/es/animation → motion-dom/dist/es/render}/utils/is-keyframes-target.js +0 -0
  137. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/is-variant-label.js +0 -0
  138. /package/dist/node_modules/{framer-motion/dist/es → motion-dom/dist/es/render}/utils/reduced-motion/state.js +0 -0
  139. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/resolve-dynamic-variants.js +0 -0
  140. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/resolve-variants.js +0 -0
  141. /package/dist/node_modules/{framer-motion/dist/es → motion-dom/dist/es/render}/utils/shallow-compare.js +0 -0
  142. /package/dist/node_modules/{framer-motion → motion-dom}/dist/es/render/utils/variant-props.js +0 -0
  143. /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