@code0-tech/pictor 0.9.3 → 0.10.0

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 (291) hide show
  1. package/dist/assets/components/island/Island.style.css +1 -0
  2. package/dist/components/breadcrumb/Breadcrumb.js +7 -7
  3. package/dist/components/button/Button.js +11 -11
  4. package/dist/components/data-table/DataTable.js +15 -15
  5. package/dist/components/data-table/DataTableFilterSuggestionMenu.js +15 -15
  6. package/dist/components/editor/Editor.js +13 -13
  7. package/dist/components/form/CheckboxInput.js +4 -4
  8. package/dist/components/form/EmailInput.js +9 -9
  9. package/dist/components/form/InputContentEditable.hook.js +11 -11
  10. package/dist/components/form/InputWrapper.js +15 -15
  11. package/dist/components/form/NumberInput.js +9 -9
  12. package/dist/components/form/PasswordInput.js +4 -4
  13. package/dist/components/form/SwitchInput.js +7 -7
  14. package/dist/components/form/TextAreaInput.js +6 -6
  15. package/dist/components/form/TextInput.js +6 -6
  16. package/dist/components/form/useForm.js +2 -2
  17. package/dist/components/fullscreen/FullScreen.js +2 -2
  18. package/dist/components/gantt/GanttGroup.js +15 -15
  19. package/dist/components/island/Island.d.ts +6 -0
  20. package/dist/components/island/Island.hook.d.ts +19 -0
  21. package/dist/components/island/Island.hook.js +58 -0
  22. package/dist/components/island/Island.js +71 -0
  23. package/dist/components/progress/Progress.js +18 -18
  24. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.js +17 -0
  25. package/dist/node_modules/framer-motion/dist/es/context/LayoutGroupContext.js +5 -0
  26. package/dist/node_modules/framer-motion/dist/es/context/LazyContext.js +5 -0
  27. package/dist/node_modules/framer-motion/dist/es/context/MotionConfigContext.js +9 -0
  28. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/create.js +13 -0
  29. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/index.js +5 -0
  30. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/utils.js +15 -0
  31. package/dist/node_modules/framer-motion/dist/es/context/PresenceContext.js +5 -0
  32. package/dist/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +5 -0
  33. package/dist/node_modules/framer-motion/dist/es/events/add-pointer-event.js +8 -0
  34. package/dist/node_modules/framer-motion/dist/es/events/event-info.js +14 -0
  35. package/dist/node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +285 -0
  36. package/dist/node_modules/framer-motion/dist/es/gestures/drag/index.js +22 -0
  37. package/dist/node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.js +67 -0
  38. package/dist/node_modules/framer-motion/dist/es/gestures/focus.js +28 -0
  39. package/dist/node_modules/framer-motion/dist/es/gestures/hover.js +21 -0
  40. package/dist/node_modules/framer-motion/dist/es/gestures/pan/PanSession.js +130 -0
  41. package/dist/node_modules/framer-motion/dist/es/gestures/pan/index.js +43 -0
  42. package/dist/node_modules/framer-motion/dist/es/gestures/press.js +29 -0
  43. package/dist/node_modules/framer-motion/dist/es/motion/features/animation/exit.js +45 -0
  44. package/dist/node_modules/framer-motion/dist/es/motion/features/animation/index.js +33 -0
  45. package/dist/node_modules/framer-motion/dist/es/motion/features/animations.js +13 -0
  46. package/dist/node_modules/framer-motion/dist/es/motion/features/definitions.js +39 -0
  47. package/dist/node_modules/framer-motion/dist/es/motion/features/drag.js +17 -0
  48. package/dist/node_modules/framer-motion/dist/es/motion/features/gestures.js +21 -0
  49. package/dist/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +60 -0
  50. package/dist/node_modules/framer-motion/dist/es/motion/features/layout.js +11 -0
  51. package/dist/node_modules/framer-motion/dist/es/motion/features/load-features.js +14 -0
  52. package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/index.js +45 -0
  53. package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/observers.js +21 -0
  54. package/dist/node_modules/framer-motion/dist/es/motion/index.js +62 -0
  55. package/dist/node_modules/framer-motion/dist/es/motion/utils/symbol.js +4 -0
  56. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.js +21 -0
  57. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.js +65 -0
  58. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.js +52 -0
  59. package/dist/node_modules/framer-motion/dist/es/motion/utils/valid-prop.js +39 -0
  60. package/dist/node_modules/framer-motion/dist/es/render/components/create-proxy.js +18 -0
  61. package/dist/node_modules/framer-motion/dist/es/render/components/motion/feature-bundle.js +13 -0
  62. package/dist/node_modules/framer-motion/dist/es/render/components/motion/proxy.js +7 -0
  63. package/dist/node_modules/framer-motion/dist/es/render/dom/create-visual-element.js +10 -0
  64. package/dist/node_modules/framer-motion/dist/es/render/dom/use-render.js +16 -0
  65. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/filter-props.js +21 -0
  66. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-component.js +24 -0
  67. package/dist/node_modules/framer-motion/dist/es/render/html/use-html-visual-state.js +10 -0
  68. package/dist/node_modules/framer-motion/dist/es/render/html/use-props.js +27 -0
  69. package/dist/node_modules/framer-motion/dist/es/render/html/utils/create-render-state.js +9 -0
  70. package/dist/node_modules/framer-motion/dist/es/render/svg/lowercase-elements.js +30 -0
  71. package/dist/node_modules/framer-motion/dist/es/render/svg/use-props.js +22 -0
  72. package/dist/node_modules/framer-motion/dist/es/render/svg/use-svg-visual-state.js +10 -0
  73. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/create-render-state.js +8 -0
  74. package/dist/node_modules/framer-motion/dist/es/utils/distance.js +9 -0
  75. package/dist/node_modules/framer-motion/dist/es/utils/get-context-window.js +4 -0
  76. package/dist/node_modules/framer-motion/dist/es/utils/is-browser.js +4 -0
  77. package/dist/node_modules/framer-motion/dist/es/utils/is-ref-object.js +6 -0
  78. package/dist/node_modules/framer-motion/dist/es/utils/use-constant.js +8 -0
  79. package/dist/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.js +6 -0
  80. package/dist/node_modules/motion-dom/dist/es/animation/AsyncMotionValueAnimation.js +112 -0
  81. package/dist/node_modules/motion-dom/dist/es/animation/JSAnimation.js +144 -0
  82. package/dist/node_modules/motion-dom/dist/es/animation/NativeAnimation.js +106 -0
  83. package/dist/node_modules/motion-dom/dist/es/animation/NativeAnimationExtended.js +38 -0
  84. package/dist/node_modules/motion-dom/dist/es/animation/animate/single-value.js +10 -0
  85. package/dist/node_modules/motion-dom/dist/es/animation/drivers/frame.js +17 -0
  86. package/dist/node_modules/motion-dom/dist/es/animation/generators/inertia.js +37 -0
  87. package/dist/node_modules/motion-dom/dist/es/animation/generators/keyframes.js +30 -0
  88. package/dist/node_modules/motion-dom/dist/es/animation/generators/spring.js +178 -0
  89. package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/calc-duration.js +13 -0
  90. package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/create-generator-easing.js +13 -0
  91. package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/is-generator.js +6 -0
  92. package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/velocity.js +9 -0
  93. package/dist/node_modules/motion-dom/dist/es/animation/interfaces/motion-value.js +46 -0
  94. package/dist/node_modules/motion-dom/dist/es/animation/interfaces/visual-element-target.js +59 -0
  95. package/dist/node_modules/motion-dom/dist/es/animation/interfaces/visual-element-variant.js +29 -0
  96. package/dist/node_modules/motion-dom/dist/es/animation/interfaces/visual-element.js +22 -0
  97. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/DOMKeyframesResolver.js +68 -0
  98. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/KeyframesResolver.js +74 -0
  99. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/get-final.js +8 -0
  100. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/offsets/default.js +8 -0
  101. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/offsets/fill.js +12 -0
  102. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/offsets/time.js +6 -0
  103. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/utils/fill-wildcards.js +7 -0
  104. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/utils/is-none.js +7 -0
  105. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/utils/make-none-animatable.js +16 -0
  106. package/dist/node_modules/motion-dom/dist/es/animation/keyframes/utils/unit-conversion.js +37 -0
  107. package/dist/node_modules/motion-dom/dist/es/animation/optimized-appear/data-id.js +6 -0
  108. package/dist/node_modules/motion-dom/dist/es/animation/optimized-appear/get-appear-id.js +7 -0
  109. package/dist/node_modules/motion-dom/dist/es/animation/utils/WithPromise.js +27 -0
  110. package/dist/node_modules/motion-dom/dist/es/animation/utils/calc-child-stagger.js +7 -0
  111. package/dist/node_modules/motion-dom/dist/es/animation/utils/can-animate.js +23 -0
  112. package/dist/node_modules/motion-dom/dist/es/animation/utils/css-variables-conversion.js +31 -0
  113. package/dist/node_modules/motion-dom/dist/es/animation/utils/default-transitions.js +22 -0
  114. package/dist/node_modules/motion-dom/dist/es/animation/utils/get-value-transition.js +8 -0
  115. package/dist/node_modules/motion-dom/dist/es/animation/utils/is-animatable.js +7 -0
  116. package/dist/node_modules/motion-dom/dist/es/animation/utils/is-css-variable.js +9 -0
  117. package/dist/node_modules/motion-dom/dist/es/animation/utils/is-transition-defined.js +21 -0
  118. package/dist/node_modules/motion-dom/dist/es/animation/utils/make-animation-instant.js +6 -0
  119. package/dist/node_modules/motion-dom/dist/es/animation/utils/replace-transition-type.js +16 -0
  120. package/dist/node_modules/motion-dom/dist/es/animation/utils/resolve-transition.js +10 -0
  121. package/dist/node_modules/motion-dom/dist/es/animation/waapi/easing/cubic-bezier.js +4 -0
  122. package/dist/node_modules/motion-dom/dist/es/animation/waapi/easing/map-easing.js +12 -0
  123. package/dist/node_modules/motion-dom/dist/es/animation/waapi/easing/supported.js +15 -0
  124. package/dist/node_modules/motion-dom/dist/es/animation/waapi/start-waapi-animation.js +21 -0
  125. package/dist/node_modules/motion-dom/dist/es/animation/waapi/supports/waapi.js +33 -0
  126. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/accelerated-values.js +12 -0
  127. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/apply-generator.js +8 -0
  128. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/is-browser-color.js +10 -0
  129. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/linear.js +10 -0
  130. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/unsupported-easing.js +17 -0
  131. package/dist/node_modules/motion-dom/dist/es/events/add-dom-event.js +6 -0
  132. package/dist/node_modules/motion-dom/dist/es/frameloop/batcher.js +27 -0
  133. package/dist/node_modules/motion-dom/dist/es/frameloop/frame.js +9 -0
  134. package/dist/node_modules/motion-dom/dist/es/frameloop/microtask.js +5 -0
  135. package/dist/node_modules/motion-dom/dist/es/frameloop/order.js +21 -0
  136. package/dist/node_modules/motion-dom/dist/es/frameloop/render-step.js +43 -0
  137. package/dist/node_modules/motion-dom/dist/es/frameloop/sync-time.js +15 -0
  138. package/dist/node_modules/motion-dom/dist/es/gestures/drag/state/is-active.js +11 -0
  139. package/dist/node_modules/motion-dom/dist/es/gestures/drag/state/set-active.js +11 -0
  140. package/dist/node_modules/motion-dom/dist/es/gestures/hover.js +38 -0
  141. package/dist/node_modules/motion-dom/dist/es/gestures/press/index.js +34 -0
  142. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +18 -0
  143. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/keyboard.js +27 -0
  144. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/state.js +4 -0
  145. package/dist/node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.js +4 -0
  146. package/dist/node_modules/motion-dom/dist/es/gestures/utils/is-primary-pointer.js +4 -0
  147. package/dist/node_modules/motion-dom/dist/es/gestures/utils/setup.js +12 -0
  148. package/dist/node_modules/motion-dom/dist/es/projection/animation/mix-values.js +32 -0
  149. package/dist/node_modules/motion-dom/dist/es/projection/geometry/conversion.js +25 -0
  150. package/dist/node_modules/motion-dom/dist/es/projection/geometry/copy.js +14 -0
  151. package/dist/node_modules/motion-dom/dist/es/projection/geometry/delta-apply.js +53 -0
  152. package/dist/node_modules/motion-dom/dist/es/projection/geometry/delta-calc.js +38 -0
  153. package/dist/node_modules/motion-dom/dist/es/projection/geometry/delta-remove.js +25 -0
  154. package/dist/node_modules/motion-dom/dist/es/projection/geometry/models.js +18 -0
  155. package/dist/node_modules/motion-dom/dist/es/projection/geometry/utils.js +34 -0
  156. package/dist/node_modules/motion-dom/dist/es/projection/node/DocumentProjectionNode.js +13 -0
  157. package/dist/node_modules/motion-dom/dist/es/projection/node/HTMLProjectionNode.js +25 -0
  158. package/dist/node_modules/motion-dom/dist/es/projection/node/create-projection-node.js +618 -0
  159. package/dist/node_modules/motion-dom/dist/es/projection/node/state.js +15 -0
  160. package/dist/node_modules/motion-dom/dist/es/projection/shared/stack.js +53 -0
  161. package/dist/node_modules/motion-dom/dist/es/projection/styles/scale-border-radius.js +21 -0
  162. package/dist/node_modules/motion-dom/dist/es/projection/styles/scale-box-shadow.js +16 -0
  163. package/dist/node_modules/motion-dom/dist/es/projection/styles/scale-correction.js +21 -0
  164. package/dist/node_modules/motion-dom/dist/es/projection/styles/transform.js +13 -0
  165. package/dist/node_modules/motion-dom/dist/es/projection/utils/compare-by-depth.js +4 -0
  166. package/dist/node_modules/motion-dom/dist/es/projection/utils/each-axis.js +6 -0
  167. package/dist/node_modules/motion-dom/dist/es/projection/utils/flat-tree.js +19 -0
  168. package/dist/node_modules/motion-dom/dist/es/projection/utils/has-transform.js +20 -0
  169. package/dist/node_modules/motion-dom/dist/es/projection/utils/measure.js +13 -0
  170. package/dist/node_modules/motion-dom/dist/es/render/Feature.js +10 -0
  171. package/dist/node_modules/motion-dom/dist/es/render/VisualElement.js +263 -0
  172. package/dist/node_modules/motion-dom/dist/es/render/dom/DOMVisualElement.js +28 -0
  173. package/dist/node_modules/motion-dom/dist/es/render/dom/is-css-var.js +4 -0
  174. package/dist/node_modules/motion-dom/dist/es/render/dom/parse-transform.js +65 -0
  175. package/dist/node_modules/motion-dom/dist/es/render/dom/style-set.js +7 -0
  176. package/dist/node_modules/motion-dom/dist/es/render/dom/utils/camel-to-dash.js +6 -0
  177. package/dist/node_modules/motion-dom/dist/es/render/html/HTMLVisualElement.js +37 -0
  178. package/dist/node_modules/motion-dom/dist/es/render/html/utils/build-styles.js +29 -0
  179. package/dist/node_modules/motion-dom/dist/es/render/html/utils/build-transform.js +38 -0
  180. package/dist/node_modules/motion-dom/dist/es/render/html/utils/render.js +12 -0
  181. package/dist/node_modules/motion-dom/dist/es/render/html/utils/scrape-motion-values.js +13 -0
  182. package/dist/node_modules/motion-dom/dist/es/render/store.js +4 -0
  183. package/dist/node_modules/motion-dom/dist/es/render/svg/SVGVisualElement.js +40 -0
  184. package/dist/node_modules/motion-dom/dist/es/render/svg/utils/build-attrs.js +32 -0
  185. package/dist/node_modules/motion-dom/dist/es/render/svg/utils/camel-case-attrs.js +28 -0
  186. package/dist/node_modules/motion-dom/dist/es/render/svg/utils/is-svg-tag.js +4 -0
  187. package/dist/node_modules/motion-dom/dist/es/render/svg/utils/path.js +15 -0
  188. package/dist/node_modules/motion-dom/dist/es/render/svg/utils/render.js +11 -0
  189. package/dist/node_modules/motion-dom/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
  190. package/dist/node_modules/motion-dom/dist/es/render/utils/animation-state.js +143 -0
  191. package/dist/node_modules/motion-dom/dist/es/render/utils/get-variant-context.js +20 -0
  192. package/dist/node_modules/motion-dom/dist/es/render/utils/is-animation-controls.js +6 -0
  193. package/dist/node_modules/motion-dom/dist/es/render/utils/is-controlling-variants.js +13 -0
  194. package/dist/node_modules/motion-dom/dist/es/render/utils/is-forced-motion-value.js +9 -0
  195. package/dist/node_modules/motion-dom/dist/es/render/utils/is-keyframes-target.js +4 -0
  196. package/dist/node_modules/motion-dom/dist/es/render/utils/is-variant-label.js +6 -0
  197. package/dist/node_modules/motion-dom/dist/es/render/utils/keys-position.js +13 -0
  198. package/dist/node_modules/motion-dom/dist/es/render/utils/keys-transform.js +23 -0
  199. package/dist/node_modules/motion-dom/dist/es/render/utils/motion-values.js +25 -0
  200. package/dist/node_modules/motion-dom/dist/es/render/utils/reduced-motion/index.js +15 -0
  201. package/dist/node_modules/motion-dom/dist/es/render/utils/reduced-motion/state.js +5 -0
  202. package/dist/node_modules/motion-dom/dist/es/render/utils/resolve-dynamic-variants.js +8 -0
  203. package/dist/node_modules/motion-dom/dist/es/render/utils/resolve-variants.js +20 -0
  204. package/dist/node_modules/motion-dom/dist/es/render/utils/setters.js +21 -0
  205. package/dist/node_modules/motion-dom/dist/es/render/utils/shallow-compare.js +14 -0
  206. package/dist/node_modules/motion-dom/dist/es/render/utils/variant-props.js +13 -0
  207. package/dist/node_modules/motion-dom/dist/es/resize/handle-element.js +39 -0
  208. package/dist/node_modules/motion-dom/dist/es/resize/handle-window.js +23 -0
  209. package/dist/node_modules/motion-dom/dist/es/resize/index.js +8 -0
  210. package/dist/node_modules/motion-dom/dist/es/utils/delay.js +12 -0
  211. package/dist/node_modules/motion-dom/dist/es/utils/interpolate.js +42 -0
  212. package/dist/node_modules/motion-dom/dist/es/utils/is-html-element.js +7 -0
  213. package/dist/node_modules/motion-dom/dist/es/utils/is-svg-element.js +7 -0
  214. package/dist/node_modules/motion-dom/dist/es/utils/is-svg-svg-element.js +7 -0
  215. package/dist/node_modules/motion-dom/dist/es/utils/mix/color.js +29 -0
  216. package/dist/node_modules/motion-dom/dist/es/utils/mix/complex.js +51 -0
  217. package/dist/node_modules/motion-dom/dist/es/utils/mix/immediate.js +6 -0
  218. package/dist/node_modules/motion-dom/dist/es/utils/mix/index.js +8 -0
  219. package/dist/node_modules/motion-dom/dist/es/utils/mix/number.js +4 -0
  220. package/dist/node_modules/motion-dom/dist/es/utils/mix/visibility.js +8 -0
  221. package/dist/node_modules/motion-dom/dist/es/utils/resolve-elements.js +15 -0
  222. package/dist/node_modules/motion-dom/dist/es/utils/supports/flags.js +4 -0
  223. package/dist/node_modules/motion-dom/dist/es/utils/supports/linear-easing.js +12 -0
  224. package/dist/node_modules/motion-dom/dist/es/utils/supports/memo.js +9 -0
  225. package/dist/node_modules/motion-dom/dist/es/utils/supports/scroll-timeline.js +5 -0
  226. package/dist/node_modules/motion-dom/dist/es/value/index.js +212 -0
  227. package/dist/node_modules/motion-dom/dist/es/value/types/auto.js +7 -0
  228. package/dist/node_modules/motion-dom/dist/es/value/types/color/hex.js +19 -0
  229. package/dist/node_modules/motion-dom/dist/es/value/types/color/hsla-to-rgba.js +22 -0
  230. package/dist/node_modules/motion-dom/dist/es/value/types/color/hsla.js +12 -0
  231. package/dist/node_modules/motion-dom/dist/es/value/types/color/index.js +15 -0
  232. package/dist/node_modules/motion-dom/dist/es/value/types/color/rgba.js +16 -0
  233. package/dist/node_modules/motion-dom/dist/es/value/types/color/utils.js +18 -0
  234. package/dist/node_modules/motion-dom/dist/es/value/types/complex/filter.js +24 -0
  235. package/dist/node_modules/motion-dom/dist/es/value/types/complex/index.js +51 -0
  236. package/dist/node_modules/motion-dom/dist/es/value/types/complex/mask.js +11 -0
  237. package/dist/node_modules/motion-dom/dist/es/value/types/dimensions.js +9 -0
  238. package/dist/node_modules/motion-dom/dist/es/value/types/int.js +8 -0
  239. package/dist/node_modules/motion-dom/dist/es/value/types/maps/defaults.js +27 -0
  240. package/dist/node_modules/motion-dom/dist/es/value/types/maps/number.js +70 -0
  241. package/dist/node_modules/motion-dom/dist/es/value/types/maps/transform.js +37 -0
  242. package/dist/node_modules/motion-dom/dist/es/value/types/numbers/index.js +17 -0
  243. package/dist/node_modules/motion-dom/dist/es/value/types/numbers/units.js +17 -0
  244. package/dist/node_modules/motion-dom/dist/es/value/types/test.js +4 -0
  245. package/dist/node_modules/motion-dom/dist/es/value/types/utils/animatable-none.js +12 -0
  246. package/dist/node_modules/motion-dom/dist/es/value/types/utils/color-regex.js +4 -0
  247. package/dist/node_modules/motion-dom/dist/es/value/types/utils/find.js +8 -0
  248. package/dist/node_modules/motion-dom/dist/es/value/types/utils/float-regex.js +4 -0
  249. package/dist/node_modules/motion-dom/dist/es/value/types/utils/get-as-type.js +4 -0
  250. package/dist/node_modules/motion-dom/dist/es/value/types/utils/is-nullish.js +6 -0
  251. package/dist/node_modules/motion-dom/dist/es/value/types/utils/sanitize.js +4 -0
  252. package/dist/node_modules/motion-dom/dist/es/value/types/utils/single-color-regex.js +4 -0
  253. package/dist/node_modules/motion-dom/dist/es/value/utils/is-motion-value.js +4 -0
  254. package/dist/node_modules/motion-dom/dist/es/value/utils/resolve-motion-value.js +7 -0
  255. package/dist/node_modules/motion-dom/dist/es/value/will-change/add-will-change.js +14 -0
  256. package/dist/node_modules/motion-dom/dist/es/value/will-change/is.js +7 -0
  257. package/dist/node_modules/motion-utils/dist/es/array.js +11 -0
  258. package/dist/node_modules/motion-utils/dist/es/clamp.js +4 -0
  259. package/dist/node_modules/motion-utils/dist/es/easing/anticipate.js +5 -0
  260. package/dist/node_modules/motion-utils/dist/es/easing/back.js +9 -0
  261. package/dist/node_modules/motion-utils/dist/es/easing/circ.js +8 -0
  262. package/dist/node_modules/motion-utils/dist/es/easing/cubic-bezier.js +19 -0
  263. package/dist/node_modules/motion-utils/dist/es/easing/ease.js +7 -0
  264. package/dist/node_modules/motion-utils/dist/es/easing/modifiers/mirror.js +4 -0
  265. package/dist/node_modules/motion-utils/dist/es/easing/modifiers/reverse.js +4 -0
  266. package/dist/node_modules/motion-utils/dist/es/easing/utils/is-bezier-definition.js +4 -0
  267. package/dist/node_modules/motion-utils/dist/es/easing/utils/is-easing-array.js +4 -0
  268. package/dist/node_modules/motion-utils/dist/es/easing/utils/map.js +32 -0
  269. package/dist/node_modules/motion-utils/dist/es/errors.js +14 -0
  270. package/dist/node_modules/motion-utils/dist/es/format-error-message.js +6 -0
  271. package/dist/node_modules/motion-utils/dist/es/global-config.js +4 -0
  272. package/dist/node_modules/motion-utils/dist/es/is-numerical-string.js +4 -0
  273. package/dist/node_modules/motion-utils/dist/es/is-object.js +4 -0
  274. package/dist/node_modules/motion-utils/dist/es/is-zero-value-string.js +4 -0
  275. package/dist/node_modules/motion-utils/dist/es/memo.js +8 -0
  276. package/dist/node_modules/motion-utils/dist/es/noop.js +4 -0
  277. package/dist/node_modules/motion-utils/dist/es/pipe.js +4 -0
  278. package/dist/node_modules/motion-utils/dist/es/progress.js +7 -0
  279. package/dist/node_modules/motion-utils/dist/es/subscription-manager.js +29 -0
  280. package/dist/node_modules/motion-utils/dist/es/time-conversion.js +5 -0
  281. package/dist/node_modules/motion-utils/dist/es/velocity-per-second.js +4 -0
  282. package/dist/node_modules/motion-utils/dist/es/warn-once.js +8 -0
  283. package/dist/node_modules/react/cjs/react-compiler-runtime.development.js +2 -2
  284. package/dist/node_modules/react/cjs/react-compiler-runtime.production.js +8 -8
  285. package/dist/utils/reactiveArrayService.js +4 -4
  286. package/package.json +9 -6
  287. package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +0 -25
  288. package/dist/node_modules/@radix-ui/react-progress/dist/index.js +0 -81
  289. package/dist/node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-context/dist/index.js +0 -55
  290. package/dist/node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-primitive/dist/index.js +0 -32
  291. package/dist/node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-slot/dist/index.js +0 -58
@@ -0,0 +1,51 @@
1
+ import { color as c } from "../color/index.js";
2
+ import { colorRegex as g } from "../utils/color-regex.js";
3
+ import { floatRegex as N } from "../utils/float-regex.js";
4
+ import { sanitize as d } from "../utils/sanitize.js";
5
+ function b(t) {
6
+ return isNaN(t) && typeof t == "string" && (t.match(N)?.length || 0) + (t.match(g)?.length || 0) > 0;
7
+ }
8
+ const a = "number", f = "color", T = "var", x = "var(", m = "${}", O = /var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;
9
+ function l(t) {
10
+ const r = t.toString(), s = [], o = {
11
+ color: [],
12
+ number: [],
13
+ var: []
14
+ }, n = [];
15
+ let e = 0;
16
+ const h = r.replace(O, (i) => (c.test(i) ? (o.color.push(e), n.push(f), s.push(c.parse(i))) : i.startsWith(x) ? (o.var.push(e), n.push(T), s.push(i)) : (o.number.push(e), n.push(a), s.push(parseFloat(i))), ++e, m)).split(m);
17
+ return { values: s, split: h, indexes: o, types: n };
18
+ }
19
+ function R(t) {
20
+ return l(t).values;
21
+ }
22
+ function p({ split: t, types: r }) {
23
+ const s = t.length;
24
+ return (o) => {
25
+ let n = "";
26
+ for (let e = 0; e < s; e++)
27
+ if (n += t[e], o[e] !== void 0) {
28
+ const u = r[e];
29
+ u === a ? n += d(o[e]) : u === f ? n += c.transform(o[e]) : n += o[e];
30
+ }
31
+ return n;
32
+ };
33
+ }
34
+ function y(t) {
35
+ return p(l(t));
36
+ }
37
+ const E = (t) => typeof t == "number" ? 0 : c.test(t) ? c.getAnimatableNone(t) : t, _ = (t, r) => typeof t == "number" ? r?.trim().endsWith("/") ? t : 0 : E(t);
38
+ function K(t) {
39
+ const r = l(t);
40
+ return p(r)(r.values.map((o, n) => _(o, r.split[n])));
41
+ }
42
+ const w = {
43
+ test: b,
44
+ parse: R,
45
+ createTransformer: y,
46
+ getAnimatableNone: K
47
+ };
48
+ export {
49
+ l as analyseComplexValue,
50
+ w as complex
51
+ };
@@ -0,0 +1,11 @@
1
+ import { complex as e } from "./index.js";
2
+ const n = {
3
+ ...e,
4
+ getAnimatableNone: (o) => {
5
+ const t = e.parse(o);
6
+ return e.createTransformer(o)(t.map((r) => typeof r == "number" ? 0 : typeof r == "object" ? { ...r, alpha: 1 } : r));
7
+ }
8
+ };
9
+ export {
10
+ n as mask
11
+ };
@@ -0,0 +1,9 @@
1
+ import { auto as o } from "./auto.js";
2
+ import { number as r } from "./numbers/index.js";
3
+ import { px as m, percent as t, degrees as i, vw as n, vh as p } from "./numbers/units.js";
4
+ import { testValueType as s } from "./test.js";
5
+ const f = [r, m, t, i, n, p, o], l = (e) => f.find(s(e));
6
+ export {
7
+ f as dimensionValueTypes,
8
+ l as findDimensionValueType
9
+ };
@@ -0,0 +1,8 @@
1
+ import { number as r } from "./numbers/index.js";
2
+ const t = {
3
+ ...r,
4
+ transform: Math.round
5
+ };
6
+ export {
7
+ t as int
8
+ };
@@ -0,0 +1,27 @@
1
+ import { color as o } from "../color/index.js";
2
+ import { filter as r } from "../complex/filter.js";
3
+ import { mask as e } from "../complex/mask.js";
4
+ import { numberValueTypes as l } from "./number.js";
5
+ const i = {
6
+ ...l,
7
+ // Color props
8
+ color: o,
9
+ backgroundColor: o,
10
+ outlineColor: o,
11
+ fill: o,
12
+ stroke: o,
13
+ // Border props
14
+ borderColor: o,
15
+ borderTopColor: o,
16
+ borderRightColor: o,
17
+ borderBottomColor: o,
18
+ borderLeftColor: o,
19
+ filter: r,
20
+ WebkitFilter: r,
21
+ mask: e,
22
+ WebkitMask: e
23
+ }, a = (t) => i[t];
24
+ export {
25
+ i as defaultValueTypes,
26
+ a as getDefaultValueType
27
+ };
@@ -0,0 +1,70 @@
1
+ import { int as t } from "../int.js";
2
+ import { alpha as n } from "../numbers/index.js";
3
+ import { px as i } from "../numbers/units.js";
4
+ import { transformValueTypes as o } from "./transform.js";
5
+ const g = {
6
+ // Border props
7
+ borderWidth: i,
8
+ borderTopWidth: i,
9
+ borderRightWidth: i,
10
+ borderBottomWidth: i,
11
+ borderLeftWidth: i,
12
+ borderRadius: i,
13
+ borderTopLeftRadius: i,
14
+ borderTopRightRadius: i,
15
+ borderBottomRightRadius: i,
16
+ borderBottomLeftRadius: i,
17
+ // Positioning props
18
+ width: i,
19
+ maxWidth: i,
20
+ height: i,
21
+ maxHeight: i,
22
+ top: i,
23
+ right: i,
24
+ bottom: i,
25
+ left: i,
26
+ inset: i,
27
+ insetBlock: i,
28
+ insetBlockStart: i,
29
+ insetBlockEnd: i,
30
+ insetInline: i,
31
+ insetInlineStart: i,
32
+ insetInlineEnd: i,
33
+ // Spacing props
34
+ padding: i,
35
+ paddingTop: i,
36
+ paddingRight: i,
37
+ paddingBottom: i,
38
+ paddingLeft: i,
39
+ paddingBlock: i,
40
+ paddingBlockStart: i,
41
+ paddingBlockEnd: i,
42
+ paddingInline: i,
43
+ paddingInlineStart: i,
44
+ paddingInlineEnd: i,
45
+ margin: i,
46
+ marginTop: i,
47
+ marginRight: i,
48
+ marginBottom: i,
49
+ marginLeft: i,
50
+ marginBlock: i,
51
+ marginBlockStart: i,
52
+ marginBlockEnd: i,
53
+ marginInline: i,
54
+ marginInlineStart: i,
55
+ marginInlineEnd: i,
56
+ // Typography
57
+ fontSize: i,
58
+ // Misc
59
+ backgroundPositionX: i,
60
+ backgroundPositionY: i,
61
+ ...o,
62
+ zIndex: t,
63
+ // SVG
64
+ fillOpacity: n,
65
+ strokeOpacity: n,
66
+ numOctaves: t
67
+ };
68
+ export {
69
+ g as numberValueTypes
70
+ };
@@ -0,0 +1,37 @@
1
+ import { alpha as s, scale as r } from "../numbers/index.js";
2
+ import { px as e, progressPercentage as a, degrees as t } from "../numbers/units.js";
3
+ const n = {
4
+ rotate: t,
5
+ /**
6
+ * Internal channel for `transition.path` orientToPath. Composed onto
7
+ * `rotate` at the transform-build sites so the user's `rotate` is
8
+ * never read or overwritten. Not part of `transformPropOrder`.
9
+ */
10
+ pathRotation: t,
11
+ rotateX: t,
12
+ rotateY: t,
13
+ rotateZ: t,
14
+ scale: r,
15
+ scaleX: r,
16
+ scaleY: r,
17
+ scaleZ: r,
18
+ skew: t,
19
+ skewX: t,
20
+ skewY: t,
21
+ distance: e,
22
+ translateX: e,
23
+ translateY: e,
24
+ translateZ: e,
25
+ x: e,
26
+ y: e,
27
+ z: e,
28
+ perspective: e,
29
+ transformPerspective: e,
30
+ opacity: s,
31
+ originX: a,
32
+ originY: a,
33
+ originZ: e
34
+ };
35
+ export {
36
+ n as transformValueTypes
37
+ };
@@ -0,0 +1,17 @@
1
+ import { clamp as a } from "../../../../../../motion-utils/dist/es/clamp.js";
2
+ const r = {
3
+ test: (t) => typeof t == "number",
4
+ parse: parseFloat,
5
+ transform: (t) => t
6
+ }, e = {
7
+ ...r,
8
+ transform: (t) => a(0, 1, t)
9
+ }, s = {
10
+ ...r,
11
+ default: 1
12
+ };
13
+ export {
14
+ e as alpha,
15
+ r as number,
16
+ s as scale
17
+ };
@@ -0,0 +1,17 @@
1
+ const s = /* @__NO_SIDE_EFFECTS__ */ (e) => ({
2
+ test: (t) => typeof t == "string" && t.endsWith(e) && t.split(" ").length === 1,
3
+ parse: parseFloat,
4
+ transform: (t) => `${t}${e}`
5
+ }), n = /* @__PURE__ */ s("deg"), r = /* @__PURE__ */ s("%"), o = /* @__PURE__ */ s("px"), p = /* @__PURE__ */ s("vh"), a = /* @__PURE__ */ s("vw"), c = {
6
+ ...r,
7
+ parse: (e) => r.parse(e) / 100,
8
+ transform: (e) => r.transform(e * 100)
9
+ };
10
+ export {
11
+ n as degrees,
12
+ r as percent,
13
+ c as progressPercentage,
14
+ o as px,
15
+ p as vh,
16
+ a as vw
17
+ };
@@ -0,0 +1,4 @@
1
+ const s = (t) => (e) => e.test(t);
2
+ export {
3
+ s as testValueType
4
+ };
@@ -0,0 +1,12 @@
1
+ import { complex as m } from "../complex/index.js";
2
+ import { filter as n } from "../complex/filter.js";
3
+ import { mask as a } from "../complex/mask.js";
4
+ import { getDefaultValueType as r } from "../maps/defaults.js";
5
+ const i = /* @__PURE__ */ new Set([n, a]);
6
+ function s(t, o) {
7
+ let e = r(t);
8
+ return i.has(e) || (e = m), e.getAnimatableNone ? e.getAnimatableNone(o) : void 0;
9
+ }
10
+ export {
11
+ s as getAnimatableNone
12
+ };
@@ -0,0 +1,4 @@
1
+ const d = /(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu;
2
+ export {
3
+ d as colorRegex
4
+ };
@@ -0,0 +1,8 @@
1
+ import { color as e } from "../color/index.js";
2
+ import { complex as m } from "../complex/index.js";
3
+ import { dimensionValueTypes as p } from "../dimensions.js";
4
+ import { testValueType as r } from "../test.js";
5
+ const t = [...p, e, m], s = (o) => t.find(r(o));
6
+ export {
7
+ s as findValueType
8
+ };
@@ -0,0 +1,4 @@
1
+ const d = /-?(?:\d+(?:\.\d+)?|\.\d+)/gu;
2
+ export {
3
+ d as floatRegex
4
+ };
@@ -0,0 +1,4 @@
1
+ const e = (r, t) => t && typeof r == "number" ? t.transform(r) : r;
2
+ export {
3
+ e as getValueAsType
4
+ };
@@ -0,0 +1,6 @@
1
+ function n(l) {
2
+ return l == null;
3
+ }
4
+ export {
5
+ n as isNullish
6
+ };
@@ -0,0 +1,4 @@
1
+ const n = (t) => Math.round(t * 1e5) / 1e5;
2
+ export {
3
+ n as sanitize
4
+ };
@@ -0,0 +1,4 @@
1
+ const d = /^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu;
2
+ export {
3
+ d as singleColorRegex
4
+ };
@@ -0,0 +1,4 @@
1
+ const t = (o) => !!(o && o.getVelocity);
2
+ export {
3
+ t as isMotionValue
4
+ };
@@ -0,0 +1,7 @@
1
+ import { isMotionValue as t } from "./is-motion-value.js";
2
+ function e(o) {
3
+ return t(o) ? o.get() : o;
4
+ }
5
+ export {
6
+ e as resolveMotionValue
7
+ };
@@ -0,0 +1,14 @@
1
+ import { isWillChangeMotionValue as o } from "./is.js";
2
+ import { MotionGlobalConfig as i } from "../../../../../motion-utils/dist/es/global-config.js";
3
+ function C(a, n) {
4
+ const l = a.getValue("willChange");
5
+ if (o(l))
6
+ return l.add(n);
7
+ if (!l && i.WillChange) {
8
+ const e = new i.WillChange("auto");
9
+ a.addValue("willChange", e), e.add(n);
10
+ }
11
+ }
12
+ export {
13
+ C as addValueToWillChange
14
+ };
@@ -0,0 +1,7 @@
1
+ import { isMotionValue as i } from "../utils/is-motion-value.js";
2
+ function t(o) {
3
+ return !!(i(o) && o.add);
4
+ }
5
+ export {
6
+ t as isWillChangeMotionValue
7
+ };
@@ -0,0 +1,11 @@
1
+ function f(e, n) {
2
+ e.indexOf(n) === -1 && e.push(n);
3
+ }
4
+ function d(e, n) {
5
+ const i = e.indexOf(n);
6
+ i > -1 && e.splice(i, 1);
7
+ }
8
+ export {
9
+ f as addUniqueItem,
10
+ d as removeItem
11
+ };
@@ -0,0 +1,4 @@
1
+ const n = (t, e, r) => r > e ? e : r < t ? t : r;
2
+ export {
3
+ n as clamp
4
+ };
@@ -0,0 +1,5 @@
1
+ import { backIn as o } from "./back.js";
2
+ const c = (t) => t >= 1 ? 1 : (t *= 2) < 1 ? 0.5 * o(t) : 0.5 * (2 - Math.pow(2, -10 * (t - 1)));
3
+ export {
4
+ c as anticipate
5
+ };
@@ -0,0 +1,9 @@
1
+ import { cubicBezier as r } from "./cubic-bezier.js";
2
+ import { mirrorEasing as o } from "./modifiers/mirror.js";
3
+ import { reverseEasing as t } from "./modifiers/reverse.js";
4
+ const c = /* @__PURE__ */ r(0.33, 1.53, 0.69, 0.99), i = /* @__PURE__ */ t(c), s = /* @__PURE__ */ o(i);
5
+ export {
6
+ i as backIn,
7
+ s as backInOut,
8
+ c as backOut
9
+ };
@@ -0,0 +1,8 @@
1
+ import { mirrorEasing as o } from "./modifiers/mirror.js";
2
+ import { reverseEasing as t } from "./modifiers/reverse.js";
3
+ const r = (c) => 1 - Math.sin(Math.acos(c)), s = t(r), a = o(r);
4
+ export {
5
+ r as circIn,
6
+ a as circInOut,
7
+ s as circOut
8
+ };
@@ -0,0 +1,19 @@
1
+ import { noop as b } from "../noop.js";
2
+ const s = (n, i, r) => (((1 - 3 * r + 3 * i) * n + (3 * r - 6 * i)) * n + 3 * i) * n, f = 1e-7, l = 12;
3
+ function a(n, i, r, c, o) {
4
+ let e, t, u = 0;
5
+ do
6
+ t = i + (r - i) / 2, e = s(t, c, o) - n, e > 0 ? r = t : i = t;
7
+ while (Math.abs(e) > f && ++u < l);
8
+ return t;
9
+ }
10
+ // @__NO_SIDE_EFFECTS__
11
+ function d(n, i, r, c) {
12
+ if (n === i && r === c)
13
+ return b;
14
+ const o = (e) => a(e, 0, 1, n, r);
15
+ return (e) => e === 0 || e === 1 ? e : s(o(e), i, c);
16
+ }
17
+ export {
18
+ d as cubicBezier
19
+ };
@@ -0,0 +1,7 @@
1
+ import { cubicBezier as e } from "./cubic-bezier.js";
2
+ const o = /* @__PURE__ */ e(0.42, 0, 1, 1), s = /* @__PURE__ */ e(0, 0, 0.58, 1), c = /* @__PURE__ */ e(0.42, 0, 0.58, 1);
3
+ export {
4
+ o as easeIn,
5
+ c as easeInOut,
6
+ s as easeOut
7
+ };
@@ -0,0 +1,4 @@
1
+ const t = /* @__NO_SIDE_EFFECTS__ */ (o) => (r) => r <= 0.5 ? o(2 * r) / 2 : (2 - o(2 * (1 - r))) / 2;
2
+ export {
3
+ t as mirrorEasing
4
+ };
@@ -0,0 +1,4 @@
1
+ const s = /* @__NO_SIDE_EFFECTS__ */ (e) => (r) => 1 - e(1 - r);
2
+ export {
3
+ s as reverseEasing
4
+ };
@@ -0,0 +1,4 @@
1
+ const e = /* @__NO_SIDE_EFFECTS__ */ (r) => Array.isArray(r) && typeof r[0] == "number";
2
+ export {
3
+ e as isBezierDefinition
4
+ };
@@ -0,0 +1,4 @@
1
+ const n = /* @__NO_SIDE_EFFECTS__ */ (r) => Array.isArray(r) && typeof r[0] != "number";
2
+ export {
3
+ n as isEasingArray
4
+ };
@@ -0,0 +1,32 @@
1
+ import { invariant as e } from "../../errors.js";
2
+ import { noop as c } from "../../noop.js";
3
+ import { anticipate as u } from "../anticipate.js";
4
+ import { backOut as s, backInOut as m, backIn as p } from "../back.js";
5
+ import { circOut as l, circInOut as b, circIn as f } from "../circ.js";
6
+ import { cubicBezier as g } from "../cubic-bezier.js";
7
+ import { easeOut as I, easeInOut as y, easeIn as O } from "../ease.js";
8
+ import { isBezierDefinition as k } from "./is-bezier-definition.js";
9
+ const t = {
10
+ linear: c,
11
+ easeIn: O,
12
+ easeInOut: y,
13
+ easeOut: I,
14
+ circIn: f,
15
+ circInOut: b,
16
+ circOut: l,
17
+ backIn: p,
18
+ backInOut: m,
19
+ backOut: s,
20
+ anticipate: u
21
+ }, v = (r) => typeof r == "string", L = (r) => {
22
+ if (k(r)) {
23
+ e(r.length === 4, "Cubic bezier arrays must contain four numerical values.", "cubic-bezier-length");
24
+ const [i, n, o, a] = r;
25
+ return g(i, n, o, a);
26
+ } else if (v(r))
27
+ return e(t[r] !== void 0, `Invalid easing type '${r}'`, "invalid-easing-type"), t[r];
28
+ return r;
29
+ };
30
+ export {
31
+ L as easingDefinitionToFunction
32
+ };
@@ -0,0 +1,14 @@
1
+ import { formatErrorMessage as n } from "./format-error-message.js";
2
+ let i = () => {
3
+ }, t = () => {
4
+ };
5
+ typeof process < "u" && process.env?.NODE_ENV !== "production" && (i = (e, o, r) => {
6
+ !e && typeof console < "u" && console.warn(n(o, r));
7
+ }, t = (e, o, r) => {
8
+ if (!e)
9
+ throw new Error(n(o, r));
10
+ });
11
+ export {
12
+ t as invariant,
13
+ i as warning
14
+ };
@@ -0,0 +1,6 @@
1
+ function n(o, t) {
2
+ return t ? `${o}. For more information and steps for solving, visit https://motion.dev/troubleshooting/${t}` : o;
3
+ }
4
+ export {
5
+ n as formatErrorMessage
6
+ };
@@ -0,0 +1,4 @@
1
+ const o = {};
2
+ export {
3
+ o as MotionGlobalConfig
4
+ };
@@ -0,0 +1,4 @@
1
+ const d = (t) => /^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(t);
2
+ export {
3
+ d as isNumericalString
4
+ };
@@ -0,0 +1,4 @@
1
+ const o = (t) => typeof t == "object" && t !== null;
2
+ export {
3
+ o as isObject
4
+ };
@@ -0,0 +1,4 @@
1
+ const e = (t) => /^0[^.\s]+$/u.test(t);
2
+ export {
3
+ e as isZeroValueString
4
+ };
@@ -0,0 +1,8 @@
1
+ // @__NO_SIDE_EFFECTS__
2
+ function r(n) {
3
+ let e;
4
+ return () => (e === void 0 && (e = n()), e);
5
+ }
6
+ export {
7
+ r as memo
8
+ };
@@ -0,0 +1,4 @@
1
+ const n = /* @__NO_SIDE_EFFECTS__ */ (o) => o;
2
+ export {
3
+ n as noop
4
+ };
@@ -0,0 +1,4 @@
1
+ const r = (...e) => e.reduce((p, c) => (o) => c(p(o)));
2
+ export {
3
+ r as pipe
4
+ };
@@ -0,0 +1,7 @@
1
+ const t = /* @__NO_SIDE_EFFECTS__ */ (r, n, s) => {
2
+ const e = n - r;
3
+ return e ? (s - r) / e : 1;
4
+ };
5
+ export {
6
+ t as progress
7
+ };
@@ -0,0 +1,29 @@
1
+ import { addUniqueItem as e, removeItem as u } from "./array.js";
2
+ class h {
3
+ constructor() {
4
+ this.subscriptions = [];
5
+ }
6
+ add(s) {
7
+ return e(this.subscriptions, s), () => u(this.subscriptions, s);
8
+ }
9
+ notify(s, r, n) {
10
+ const i = this.subscriptions.length;
11
+ if (i)
12
+ if (i === 1)
13
+ this.subscriptions[0](s, r, n);
14
+ else
15
+ for (let t = 0; t < i; t++) {
16
+ const o = this.subscriptions[t];
17
+ o && o(s, r, n);
18
+ }
19
+ }
20
+ getSize() {
21
+ return this.subscriptions.length;
22
+ }
23
+ clear() {
24
+ this.subscriptions.length = 0;
25
+ }
26
+ }
27
+ export {
28
+ h as SubscriptionManager
29
+ };
@@ -0,0 +1,5 @@
1
+ const s = /* @__NO_SIDE_EFFECTS__ */ (o) => o * 1e3, c = /* @__NO_SIDE_EFFECTS__ */ (o) => o / 1e3;
2
+ export {
3
+ c as millisecondsToSeconds,
4
+ s as secondsToMilliseconds
5
+ };
@@ -0,0 +1,4 @@
1
+ const o = /* @__NO_SIDE_EFFECTS__ */ (e, c) => c ? e * (1e3 / c) : 0;
2
+ export {
3
+ o as velocityPerSecond
4
+ };
@@ -0,0 +1,8 @@
1
+ import { formatErrorMessage as a } from "./format-error-message.js";
2
+ const n = /* @__PURE__ */ new Set();
3
+ function c(o, r, t) {
4
+ o || n.has(r) || (console.warn(a(r, t)), n.add(r));
5
+ }
6
+ export {
7
+ c as warnOnce
8
+ };
@@ -1,7 +1,7 @@
1
1
  import { __exports as e } from "../../../_virtual/react-compiler-runtime.development.js";
2
2
  import a from "react";
3
3
  var n;
4
- function l() {
4
+ function s() {
5
5
  return n ? e : (n = 1, process.env.NODE_ENV !== "production" && (function() {
6
6
  var t = a.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
7
7
  e.c = function(r) {
@@ -17,5 +17,5 @@ See https://react.dev/link/invalid-hook-call for tips about how to debug and fix
17
17
  })(), e);
18
18
  }
19
19
  export {
20
- l as __require
20
+ s as __require
21
21
  };