lawgic-dev-kit 0.2.4 → 0.3.4

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 (683) hide show
  1. package/dist/_virtual/_commonjsHelpers.js +8 -0
  2. package/dist/_virtual/client.js +5 -0
  3. package/dist/_virtual/client2.js +4 -0
  4. package/dist/_virtual/index.js +7 -0
  5. package/dist/_virtual/index2.js +4 -0
  6. package/dist/_virtual/index3.js +5 -0
  7. package/dist/_virtual/index4.js +5 -0
  8. package/dist/_virtual/index5.js +7 -0
  9. package/dist/_virtual/index6.js +4 -0
  10. package/dist/_virtual/index7.js +4 -0
  11. package/dist/_virtual/index8.js +4 -0
  12. package/dist/_virtual/jsx-runtime.js +5 -0
  13. package/dist/_virtual/jsx-runtime2.js +4 -0
  14. package/dist/_virtual/lodash.js +5 -0
  15. package/dist/_virtual/lodash2.js +4 -0
  16. package/dist/_virtual/react-dom-client.development.js +4 -0
  17. package/dist/_virtual/react-dom-client.production.js +4 -0
  18. package/dist/_virtual/react-is.development.js +4 -0
  19. package/dist/_virtual/react-is.production.min.js +4 -0
  20. package/dist/_virtual/react-jsx-runtime.development.js +4 -0
  21. package/dist/_virtual/react-jsx-runtime.production.js +4 -0
  22. package/dist/_virtual/scheduler.development.js +4 -0
  23. package/dist/_virtual/scheduler.production.js +4 -0
  24. package/dist/components/atoms/ActionButton/ActionButton.js +51 -0
  25. package/dist/components/atoms/AsyncToast/index.js +33 -0
  26. package/dist/components/atoms/Avatar/Avatar.js +100 -0
  27. package/dist/components/atoms/BoxContainer/BoxContainer.js +18 -0
  28. package/dist/components/atoms/Button/Button.js +25 -0
  29. package/dist/components/atoms/Button/Button.styles.js +43 -0
  30. package/dist/components/atoms/CenterModal/CenterModal.js +79 -0
  31. package/dist/components/atoms/CountrySelectInput/CountryDropdown.js +256 -0
  32. package/dist/components/atoms/Divider/Divider.js +5 -0
  33. package/dist/components/atoms/FullLogo/FullLogo.js +21 -0
  34. package/dist/components/atoms/IconButton/IconButton.js +35 -0
  35. package/dist/components/atoms/IconButton/IconButton.styles.js +34 -0
  36. package/dist/components/atoms/ImageProfileInput/ImageProfileInput.js +115 -0
  37. package/dist/components/atoms/ImageProfileInput/ImageProfileInput.validators.js +8 -0
  38. package/dist/components/atoms/InfoCard/InfoCard.js +17 -0
  39. package/dist/components/atoms/LoadingSpinner/LoadingSpinner.js +20 -0
  40. package/dist/components/atoms/PasswordInput/PasswordInput.js +91 -0
  41. package/dist/components/atoms/ProgressBar/ProgressBar.js +23 -0
  42. package/dist/components/atoms/SearchBar/index.js +44 -0
  43. package/dist/components/atoms/SectionButton/SectionButton.js +10 -0
  44. package/dist/components/atoms/SectionButton/desktop/SectionButton.js +60 -0
  45. package/dist/components/atoms/SectionButton/desktop/SectionButton.styles.js +11 -0
  46. package/dist/components/atoms/SectionButton/mobile/MobileSectionButton.styles.js +19 -0
  47. package/dist/components/atoms/SectionButton/mobile/SectionButton.js +59 -0
  48. package/dist/components/atoms/SelectDropdown/SelectDropdown.js +178 -0
  49. package/dist/components/atoms/Tab/Tab.js +23 -0
  50. package/dist/components/atoms/Tab/Tab.styles.js +15 -0
  51. package/dist/components/atoms/TextButton/TextButton.js +23 -0
  52. package/dist/components/atoms/TextButton/TextButton.styles.js +13 -0
  53. package/dist/components/atoms/TextInput/TextInput.js +81 -0
  54. package/dist/components/atoms/Toast/Toast.js +113 -0
  55. package/dist/components/atoms/UncontrolledSelector/UncontrolledSelector.js +58 -0
  56. package/dist/components/atoms/UncontrolledTextInput/UncontrolledTextInput.js +80 -0
  57. package/dist/components/atoms/UploadContainer/UploadContainer.js +115 -0
  58. package/dist/components/molecules/AlertModal/AlertModal.js +112 -0
  59. package/dist/components/molecules/CalendarSelector/CalendarSelector.js +221 -0
  60. package/dist/components/molecules/CalendarSelector/PeriodToggle.js +51 -0
  61. package/dist/components/molecules/CalendarSelector/TimeDisplay.js +16 -0
  62. package/dist/components/molecules/DateInput/DateInput.js +73 -0
  63. package/dist/components/molecules/DialogModal/DialogModal.js +125 -0
  64. package/dist/components/molecules/Dropdown/Dropdown.js +77 -0
  65. package/dist/components/molecules/FileUpload/FileUpload.js +121 -0
  66. package/dist/components/molecules/FileUpload/FileUpload.types.js +8 -0
  67. package/dist/components/molecules/FloatingMenu/FloatingMenu.js +82 -0
  68. package/dist/components/molecules/SearchModal/SearchModal.js +64 -0
  69. package/dist/components/molecules/Stepper/Stepper.js +225 -0
  70. package/dist/components/molecules/Tabs/Tabs.js +36 -0
  71. package/dist/components/organisms/index.js +4 -0
  72. package/dist/index.d.ts +1 -0
  73. package/dist/index.js +106 -0
  74. package/dist/lawgic-dev-kit.css +1 -0
  75. package/dist/lawgic-dev-kit.umd.js +136 -136
  76. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +428 -0
  77. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +393 -0
  78. package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.js +586 -0
  79. package/dist/node_modules/@floating-ui/react/dist/floating-ui.react.utils.js +55 -0
  80. package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +199 -0
  81. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +131 -0
  82. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +128 -0
  83. package/dist/node_modules/@fortawesome/fontawesome-svg-core/index.js +2661 -0
  84. package/dist/node_modules/@fortawesome/free-solid-svg-icons/index.js +23 -0
  85. package/dist/node_modules/@fortawesome/pro-light-svg-icons/index.js +73 -0
  86. package/dist/node_modules/@fortawesome/pro-regular-svg-icons/index.js +13 -0
  87. package/dist/node_modules/@fortawesome/pro-solid-svg-icons/index.js +28 -0
  88. package/dist/node_modules/@fortawesome/react-fontawesome/index.es.js +266 -0
  89. package/dist/node_modules/clsx/dist/clsx.js +17 -0
  90. package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +7 -0
  91. package/dist/node_modules/date-fns/_lib/defaultOptions.js +7 -0
  92. package/dist/node_modules/date-fns/_lib/format/formatters.js +583 -0
  93. package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +59 -0
  94. package/dist/node_modules/date-fns/_lib/format/longFormatters.js +52 -0
  95. package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +18 -0
  96. package/dist/node_modules/date-fns/_lib/normalizeDates.js +11 -0
  97. package/dist/node_modules/date-fns/_lib/normalizeInterval.js +8 -0
  98. package/dist/node_modules/date-fns/_lib/protectedTokens.js +20 -0
  99. package/dist/node_modules/date-fns/addMonths.js +20 -0
  100. package/dist/node_modules/date-fns/constants.js +6 -0
  101. package/dist/node_modules/date-fns/constructFrom.js +8 -0
  102. package/dist/node_modules/date-fns/constructNow.js +8 -0
  103. package/dist/node_modules/date-fns/differenceInCalendarDays.js +16 -0
  104. package/dist/node_modules/date-fns/eachDayOfInterval.js +17 -0
  105. package/dist/node_modules/date-fns/endOfMonth.js +9 -0
  106. package/dist/node_modules/date-fns/endOfWeek.js +11 -0
  107. package/dist/node_modules/date-fns/format.js +59 -0
  108. package/dist/node_modules/date-fns/getDayOfYear.js +11 -0
  109. package/dist/node_modules/date-fns/getISOWeek.js +12 -0
  110. package/dist/node_modules/date-fns/getISOWeekYear.js +15 -0
  111. package/dist/node_modules/date-fns/getWeek.js +12 -0
  112. package/dist/node_modules/date-fns/getWeekYear.js +17 -0
  113. package/dist/node_modules/date-fns/isDate.js +7 -0
  114. package/dist/node_modules/date-fns/isSameDay.js +14 -0
  115. package/dist/node_modules/date-fns/isSameMonth.js +13 -0
  116. package/dist/node_modules/date-fns/isToday.js +13 -0
  117. package/dist/node_modules/date-fns/isValid.js +9 -0
  118. package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +9 -0
  119. package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +18 -0
  120. package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +31 -0
  121. package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +15 -0
  122. package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +70 -0
  123. package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +33 -0
  124. package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +11 -0
  125. package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +155 -0
  126. package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +110 -0
  127. package/dist/node_modules/date-fns/locale/en-US.js +21 -0
  128. package/dist/node_modules/date-fns/locale/es/_lib/formatDistance.js +70 -0
  129. package/dist/node_modules/date-fns/locale/es/_lib/formatLong.js +33 -0
  130. package/dist/node_modules/date-fns/locale/es/_lib/formatRelative.js +18 -0
  131. package/dist/node_modules/date-fns/locale/es/_lib/localize.js +143 -0
  132. package/dist/node_modules/date-fns/locale/es/_lib/match.js +116 -0
  133. package/dist/node_modules/date-fns/locale/es.js +21 -0
  134. package/dist/node_modules/date-fns/setHours.js +9 -0
  135. package/dist/node_modules/date-fns/setMinutes.js +9 -0
  136. package/dist/node_modules/date-fns/setSeconds.js +9 -0
  137. package/dist/node_modules/date-fns/startOfDay.js +9 -0
  138. package/dist/node_modules/date-fns/startOfISOWeek.js +8 -0
  139. package/dist/node_modules/date-fns/startOfISOWeekYear.js +11 -0
  140. package/dist/node_modules/date-fns/startOfMonth.js +9 -0
  141. package/dist/node_modules/date-fns/startOfWeek.js +11 -0
  142. package/dist/node_modules/date-fns/startOfWeekYear.js +13 -0
  143. package/dist/node_modules/date-fns/startOfYear.js +9 -0
  144. package/dist/node_modules/date-fns/subMonths.js +8 -0
  145. package/dist/node_modules/date-fns/toDate.js +8 -0
  146. package/dist/node_modules/framer-motion/dist/es/animation/animate/single-value.js +11 -0
  147. package/dist/node_modules/framer-motion/dist/es/animation/animators/AcceleratedAnimation.js +205 -0
  148. package/dist/node_modules/framer-motion/dist/es/animation/animators/BaseAnimation.js +83 -0
  149. package/dist/node_modules/framer-motion/dist/es/animation/animators/MainThreadAnimation.js +147 -0
  150. package/dist/node_modules/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.js +18 -0
  151. package/dist/node_modules/framer-motion/dist/es/animation/animators/utils/accelerated-values.js +12 -0
  152. package/dist/node_modules/framer-motion/dist/es/animation/animators/utils/can-animate.js +23 -0
  153. package/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/index.js +18 -0
  154. package/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.js +8 -0
  155. package/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.js +6 -0
  156. package/dist/node_modules/framer-motion/dist/es/animation/generators/inertia.js +37 -0
  157. package/dist/node_modules/framer-motion/dist/es/animation/generators/keyframes.js +30 -0
  158. package/dist/node_modules/framer-motion/dist/es/animation/generators/spring/defaults.js +32 -0
  159. package/dist/node_modules/framer-motion/dist/es/animation/generators/spring/find.js +52 -0
  160. package/dist/node_modules/framer-motion/dist/es/animation/generators/spring/index.js +92 -0
  161. package/dist/node_modules/framer-motion/dist/es/animation/generators/utils/velocity.js +10 -0
  162. package/dist/node_modules/framer-motion/dist/es/animation/interfaces/motion-value.js +47 -0
  163. package/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-target.js +46 -0
  164. package/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-variant.js +33 -0
  165. package/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element.js +22 -0
  166. package/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
  167. package/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/get-appear-id.js +7 -0
  168. package/dist/node_modules/framer-motion/dist/es/animation/utils/default-transitions.js +22 -0
  169. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-animatable.js +7 -0
  170. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-animation-controls.js +6 -0
  171. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-keyframes-target.js +4 -0
  172. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-none.js +7 -0
  173. package/dist/node_modules/framer-motion/dist/es/animation/utils/is-transition-defined.js +6 -0
  174. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.js +53 -0
  175. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +41 -0
  176. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/index.js +45 -0
  177. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.js +17 -0
  178. package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/utils.js +12 -0
  179. package/dist/node_modules/framer-motion/dist/es/context/LayoutGroupContext.js +5 -0
  180. package/dist/node_modules/framer-motion/dist/es/context/LazyContext.js +5 -0
  181. package/dist/node_modules/framer-motion/dist/es/context/MotionConfigContext.js +9 -0
  182. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/create.js +13 -0
  183. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/index.js +5 -0
  184. package/dist/node_modules/framer-motion/dist/es/context/MotionContext/utils.js +15 -0
  185. package/dist/node_modules/framer-motion/dist/es/context/PresenceContext.js +5 -0
  186. package/dist/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +5 -0
  187. package/dist/node_modules/framer-motion/dist/es/easing/anticipate.js +5 -0
  188. package/dist/node_modules/framer-motion/dist/es/easing/back.js +9 -0
  189. package/dist/node_modules/framer-motion/dist/es/easing/circ.js +8 -0
  190. package/dist/node_modules/framer-motion/dist/es/easing/cubic-bezier.js +19 -0
  191. package/dist/node_modules/framer-motion/dist/es/easing/ease.js +7 -0
  192. package/dist/node_modules/framer-motion/dist/es/easing/modifiers/mirror.js +4 -0
  193. package/dist/node_modules/framer-motion/dist/es/easing/modifiers/reverse.js +4 -0
  194. package/dist/node_modules/framer-motion/dist/es/easing/utils/is-easing-array.js +4 -0
  195. package/dist/node_modules/framer-motion/dist/es/easing/utils/map.js +32 -0
  196. package/dist/node_modules/framer-motion/dist/es/events/add-dom-event.js +6 -0
  197. package/dist/node_modules/framer-motion/dist/es/events/add-pointer-event.js +8 -0
  198. package/dist/node_modules/framer-motion/dist/es/events/event-info.js +15 -0
  199. package/dist/node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +256 -0
  200. package/dist/node_modules/framer-motion/dist/es/gestures/drag/index.js +19 -0
  201. package/dist/node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.js +68 -0
  202. package/dist/node_modules/framer-motion/dist/es/gestures/focus.js +28 -0
  203. package/dist/node_modules/framer-motion/dist/es/gestures/hover.js +22 -0
  204. package/dist/node_modules/framer-motion/dist/es/gestures/pan/PanSession.js +85 -0
  205. package/dist/node_modules/framer-motion/dist/es/gestures/pan/index.js +44 -0
  206. package/dist/node_modules/framer-motion/dist/es/gestures/press.js +24 -0
  207. package/dist/node_modules/framer-motion/dist/es/motion/features/Feature.js +10 -0
  208. package/dist/node_modules/framer-motion/dist/es/motion/features/animation/exit.js +27 -0
  209. package/dist/node_modules/framer-motion/dist/es/motion/features/animation/index.js +34 -0
  210. package/dist/node_modules/framer-motion/dist/es/motion/features/animations.js +13 -0
  211. package/dist/node_modules/framer-motion/dist/es/motion/features/definitions.js +27 -0
  212. package/dist/node_modules/framer-motion/dist/es/motion/features/drag.js +17 -0
  213. package/dist/node_modules/framer-motion/dist/es/motion/features/gestures.js +21 -0
  214. package/dist/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +75 -0
  215. package/dist/node_modules/framer-motion/dist/es/motion/features/layout.js +11 -0
  216. package/dist/node_modules/framer-motion/dist/es/motion/features/load-features.js +11 -0
  217. package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/index.js +44 -0
  218. package/dist/node_modules/framer-motion/dist/es/motion/features/viewport/observers.js +21 -0
  219. package/dist/node_modules/framer-motion/dist/es/motion/index.js +59 -0
  220. package/dist/node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +8 -0
  221. package/dist/node_modules/framer-motion/dist/es/motion/utils/symbol.js +4 -0
  222. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -0
  223. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.js +65 -0
  224. package/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.js +53 -0
  225. package/dist/node_modules/framer-motion/dist/es/motion/utils/valid-prop.js +38 -0
  226. package/dist/node_modules/framer-motion/dist/es/projection/animation/mix-values.js +33 -0
  227. package/dist/node_modules/framer-motion/dist/es/projection/geometry/conversion.js +25 -0
  228. package/dist/node_modules/framer-motion/dist/es/projection/geometry/copy.js +14 -0
  229. package/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-apply.js +52 -0
  230. package/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-calc.js +36 -0
  231. package/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-remove.js +25 -0
  232. package/dist/node_modules/framer-motion/dist/es/projection/geometry/models.js +18 -0
  233. package/dist/node_modules/framer-motion/dist/es/projection/geometry/utils.js +34 -0
  234. package/dist/node_modules/framer-motion/dist/es/projection/node/DocumentProjectionNode.js +13 -0
  235. package/dist/node_modules/framer-motion/dist/es/projection/node/HTMLProjectionNode.js +25 -0
  236. package/dist/node_modules/framer-motion/dist/es/projection/node/create-projection-node.js +608 -0
  237. package/dist/node_modules/framer-motion/dist/es/projection/node/state.js +15 -0
  238. package/dist/node_modules/framer-motion/dist/es/projection/shared/stack.js +59 -0
  239. package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-border-radius.js +21 -0
  240. package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-box-shadow.js +16 -0
  241. package/dist/node_modules/framer-motion/dist/es/projection/styles/scale-correction.js +10 -0
  242. package/dist/node_modules/framer-motion/dist/es/projection/styles/transform.js +13 -0
  243. package/dist/node_modules/framer-motion/dist/es/projection/utils/each-axis.js +6 -0
  244. package/dist/node_modules/framer-motion/dist/es/projection/utils/has-transform.js +20 -0
  245. package/dist/node_modules/framer-motion/dist/es/projection/utils/measure.js +13 -0
  246. package/dist/node_modules/framer-motion/dist/es/render/VisualElement.js +229 -0
  247. package/dist/node_modules/framer-motion/dist/es/render/components/create-factory.js +20 -0
  248. package/dist/node_modules/framer-motion/dist/es/render/components/create-proxy.js +18 -0
  249. package/dist/node_modules/framer-motion/dist/es/render/components/motion/create.js +15 -0
  250. package/dist/node_modules/framer-motion/dist/es/render/components/motion/proxy.js +6 -0
  251. package/dist/node_modules/framer-motion/dist/es/render/dom/DOMKeyframesResolver.js +66 -0
  252. package/dist/node_modules/framer-motion/dist/es/render/dom/DOMVisualElement.js +27 -0
  253. package/dist/node_modules/framer-motion/dist/es/render/dom/create-visual-element.js +10 -0
  254. package/dist/node_modules/framer-motion/dist/es/render/dom/use-render.js +18 -0
  255. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
  256. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/css-variables-conversion.js +31 -0
  257. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/filter-props.js +20 -0
  258. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-css-variable.js +5 -0
  259. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-component.js +24 -0
  260. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-element.js +6 -0
  261. package/dist/node_modules/framer-motion/dist/es/render/dom/utils/unit-conversion.js +31 -0
  262. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/animatable-none.js +10 -0
  263. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/defaults.js +24 -0
  264. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/dimensions.js +9 -0
  265. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/find.js +8 -0
  266. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/get-as-type.js +4 -0
  267. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number-browser.js +41 -0
  268. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number.js +18 -0
  269. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/test.js +4 -0
  270. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/transform.js +31 -0
  271. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-auto.js +7 -0
  272. package/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-int.js +8 -0
  273. package/dist/node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.js +37 -0
  274. package/dist/node_modules/framer-motion/dist/es/render/html/config-motion.js +12 -0
  275. package/dist/node_modules/framer-motion/dist/es/render/html/use-props.js +27 -0
  276. package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-styles.js +29 -0
  277. package/dist/node_modules/framer-motion/dist/es/render/html/utils/build-transform.js +31 -0
  278. package/dist/node_modules/framer-motion/dist/es/render/html/utils/create-render-state.js +9 -0
  279. package/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-position.js +13 -0
  280. package/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
  281. package/dist/node_modules/framer-motion/dist/es/render/html/utils/make-none-animatable.js +16 -0
  282. package/dist/node_modules/framer-motion/dist/es/render/html/utils/parse-transform.js +64 -0
  283. package/dist/node_modules/framer-motion/dist/es/render/html/utils/render.js +8 -0
  284. package/dist/node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +12 -0
  285. package/dist/node_modules/framer-motion/dist/es/render/store.js +4 -0
  286. package/dist/node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.js +48 -0
  287. package/dist/node_modules/framer-motion/dist/es/render/svg/config-motion.js +44 -0
  288. package/dist/node_modules/framer-motion/dist/es/render/svg/lowercase-elements.js +30 -0
  289. package/dist/node_modules/framer-motion/dist/es/render/svg/use-props.js +22 -0
  290. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.js +26 -0
  291. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/camel-case-attrs.js +28 -0
  292. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/create-render-state.js +8 -0
  293. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/is-svg-tag.js +4 -0
  294. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/measure.js +15 -0
  295. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/path.js +18 -0
  296. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/render.js +11 -0
  297. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
  298. package/dist/node_modules/framer-motion/dist/es/render/svg/utils/transform-origin.js +11 -0
  299. package/dist/node_modules/framer-motion/dist/es/render/utils/KeyframesResolver.js +77 -0
  300. package/dist/node_modules/framer-motion/dist/es/render/utils/animation-state.js +128 -0
  301. package/dist/node_modules/framer-motion/dist/es/render/utils/compare-by-depth.js +4 -0
  302. package/dist/node_modules/framer-motion/dist/es/render/utils/flat-tree.js +20 -0
  303. package/dist/node_modules/framer-motion/dist/es/render/utils/get-variant-context.js +20 -0
  304. package/dist/node_modules/framer-motion/dist/es/render/utils/is-controlling-variants.js +13 -0
  305. package/dist/node_modules/framer-motion/dist/es/render/utils/is-variant-label.js +6 -0
  306. package/dist/node_modules/framer-motion/dist/es/render/utils/motion-values.js +27 -0
  307. package/dist/node_modules/framer-motion/dist/es/render/utils/resolve-dynamic-variants.js +8 -0
  308. package/dist/node_modules/framer-motion/dist/es/render/utils/resolve-variants.js +20 -0
  309. package/dist/node_modules/framer-motion/dist/es/render/utils/setters.js +19 -0
  310. package/dist/node_modules/framer-motion/dist/es/render/utils/variant-props.js +13 -0
  311. package/dist/node_modules/framer-motion/dist/es/utils/clamp.js +4 -0
  312. package/dist/node_modules/framer-motion/dist/es/utils/delay.js +13 -0
  313. package/dist/node_modules/framer-motion/dist/es/utils/distance.js +9 -0
  314. package/dist/node_modules/framer-motion/dist/es/utils/get-context-window.js +4 -0
  315. package/dist/node_modules/framer-motion/dist/es/utils/hsla-to-rgba.js +22 -0
  316. package/dist/node_modules/framer-motion/dist/es/utils/interpolate.js +41 -0
  317. package/dist/node_modules/framer-motion/dist/es/utils/is-browser.js +4 -0
  318. package/dist/node_modules/framer-motion/dist/es/utils/is-numerical-string.js +4 -0
  319. package/dist/node_modules/framer-motion/dist/es/utils/is-ref-object.js +6 -0
  320. package/dist/node_modules/framer-motion/dist/es/utils/is-zero-value-string.js +4 -0
  321. package/dist/node_modules/framer-motion/dist/es/utils/mix/color.js +29 -0
  322. package/dist/node_modules/framer-motion/dist/es/utils/mix/complex.js +52 -0
  323. package/dist/node_modules/framer-motion/dist/es/utils/mix/immediate.js +6 -0
  324. package/dist/node_modules/framer-motion/dist/es/utils/mix/index.js +8 -0
  325. package/dist/node_modules/framer-motion/dist/es/utils/mix/number.js +4 -0
  326. package/dist/node_modules/framer-motion/dist/es/utils/mix/visibility.js +8 -0
  327. package/dist/node_modules/framer-motion/dist/es/utils/offsets/default.js +8 -0
  328. package/dist/node_modules/framer-motion/dist/es/utils/offsets/fill.js +13 -0
  329. package/dist/node_modules/framer-motion/dist/es/utils/offsets/time.js +6 -0
  330. package/dist/node_modules/framer-motion/dist/es/utils/pipe.js +4 -0
  331. package/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/index.js +13 -0
  332. package/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/state.js +5 -0
  333. package/dist/node_modules/framer-motion/dist/es/utils/resolve-value.js +6 -0
  334. package/dist/node_modules/framer-motion/dist/es/utils/shallow-compare.js +14 -0
  335. package/dist/node_modules/framer-motion/dist/es/utils/use-constant.js +8 -0
  336. package/dist/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.js +6 -0
  337. package/dist/node_modules/framer-motion/dist/es/value/types/color/hex.js +19 -0
  338. package/dist/node_modules/framer-motion/dist/es/value/types/color/hsla.js +12 -0
  339. package/dist/node_modules/framer-motion/dist/es/value/types/color/index.js +11 -0
  340. package/dist/node_modules/framer-motion/dist/es/value/types/color/rgba.js +16 -0
  341. package/dist/node_modules/framer-motion/dist/es/value/types/color/utils.js +18 -0
  342. package/dist/node_modules/framer-motion/dist/es/value/types/complex/filter.js +24 -0
  343. package/dist/node_modules/framer-motion/dist/es/value/types/complex/index.js +49 -0
  344. package/dist/node_modules/framer-motion/dist/es/value/types/numbers/index.js +17 -0
  345. package/dist/node_modules/framer-motion/dist/es/value/types/numbers/units.js +17 -0
  346. package/dist/node_modules/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
  347. package/dist/node_modules/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
  348. package/dist/node_modules/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
  349. package/dist/node_modules/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
  350. package/dist/node_modules/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
  351. package/dist/node_modules/framer-motion/dist/es/value/use-will-change/add-will-change.js +9 -0
  352. package/dist/node_modules/framer-motion/dist/es/value/use-will-change/is.js +7 -0
  353. package/dist/node_modules/framer-motion/dist/es/value/utils/is-motion-value.js +4 -0
  354. package/dist/node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.js +9 -0
  355. package/dist/node_modules/lodash/lodash.js +3677 -0
  356. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animate/single-value.js +10 -0
  357. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/AcceleratedAnimation.js +204 -0
  358. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/BaseAnimation.js +82 -0
  359. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/MainThreadAnimation.js +147 -0
  360. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.js +17 -0
  361. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/utils/accelerated-values.js +12 -0
  362. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/utils/can-animate.js +23 -0
  363. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/waapi/index.js +17 -0
  364. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.js +8 -0
  365. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.js +5 -0
  366. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/inertia.js +37 -0
  367. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/keyframes.js +30 -0
  368. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/spring/defaults.js +32 -0
  369. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/spring/find.js +52 -0
  370. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/spring/index.js +91 -0
  371. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/generators/utils/velocity.js +9 -0
  372. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/motion-value.js +46 -0
  373. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/visual-element-target.js +45 -0
  374. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/visual-element-variant.js +33 -0
  375. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/interfaces/visual-element.js +22 -0
  376. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
  377. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/optimized-appear/get-appear-id.js +7 -0
  378. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/default-transitions.js +22 -0
  379. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-animatable.js +7 -0
  380. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-animation-controls.js +6 -0
  381. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-keyframes-target.js +4 -0
  382. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-none.js +7 -0
  383. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/utils/is-transition-defined.js +6 -0
  384. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PopChild.js +53 -0
  385. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +41 -0
  386. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/index.js +45 -0
  387. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/use-presence.js +17 -0
  388. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/utils.js +12 -0
  389. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LayoutGroupContext.js +5 -0
  390. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LazyContext.js +5 -0
  391. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionConfigContext.js +9 -0
  392. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionContext/create.js +13 -0
  393. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionContext/index.js +5 -0
  394. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionContext/utils.js +15 -0
  395. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/PresenceContext.js +5 -0
  396. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +5 -0
  397. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/anticipate.js +5 -0
  398. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/back.js +9 -0
  399. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/circ.js +8 -0
  400. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/cubic-bezier.js +18 -0
  401. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/ease.js +7 -0
  402. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/modifiers/mirror.js +4 -0
  403. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/modifiers/reverse.js +4 -0
  404. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/utils/is-easing-array.js +4 -0
  405. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/easing/utils/map.js +32 -0
  406. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/events/add-dom-event.js +6 -0
  407. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/events/add-pointer-event.js +8 -0
  408. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/events/event-info.js +14 -0
  409. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +256 -0
  410. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/drag/index.js +18 -0
  411. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/drag/utils/constraints.js +67 -0
  412. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/focus.js +28 -0
  413. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/hover.js +21 -0
  414. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/pan/PanSession.js +84 -0
  415. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/pan/index.js +43 -0
  416. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/gestures/press.js +23 -0
  417. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/Feature.js +10 -0
  418. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/animation/exit.js +27 -0
  419. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/animation/index.js +34 -0
  420. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/animations.js +13 -0
  421. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/definitions.js +27 -0
  422. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/drag.js +17 -0
  423. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/gestures.js +21 -0
  424. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +74 -0
  425. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/layout.js +11 -0
  426. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/load-features.js +11 -0
  427. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/viewport/index.js +44 -0
  428. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/features/viewport/observers.js +21 -0
  429. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/index.js +59 -0
  430. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +8 -0
  431. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/symbol.js +4 -0
  432. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -0
  433. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/use-visual-element.js +64 -0
  434. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/use-visual-state.js +53 -0
  435. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/motion/utils/valid-prop.js +38 -0
  436. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/animation/mix-values.js +32 -0
  437. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/conversion.js +25 -0
  438. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/copy.js +14 -0
  439. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/delta-apply.js +52 -0
  440. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/delta-calc.js +36 -0
  441. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/delta-remove.js +25 -0
  442. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/models.js +18 -0
  443. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/geometry/utils.js +34 -0
  444. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/DocumentProjectionNode.js +13 -0
  445. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/HTMLProjectionNode.js +25 -0
  446. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/create-projection-node.js +607 -0
  447. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/state.js +15 -0
  448. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/shared/stack.js +58 -0
  449. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/scale-border-radius.js +21 -0
  450. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/scale-box-shadow.js +16 -0
  451. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/scale-correction.js +10 -0
  452. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/styles/transform.js +13 -0
  453. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/utils/each-axis.js +6 -0
  454. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/utils/has-transform.js +20 -0
  455. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/utils/measure.js +13 -0
  456. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/VisualElement.js +228 -0
  457. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/create-factory.js +20 -0
  458. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/create-proxy.js +17 -0
  459. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/motion/create.js +15 -0
  460. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/components/motion/proxy.js +6 -0
  461. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/DOMKeyframesResolver.js +66 -0
  462. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/DOMVisualElement.js +27 -0
  463. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/create-visual-element.js +10 -0
  464. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/use-render.js +18 -0
  465. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
  466. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/css-variables-conversion.js +31 -0
  467. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/filter-props.js +20 -0
  468. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/is-css-variable.js +5 -0
  469. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/is-svg-component.js +24 -0
  470. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/is-svg-element.js +6 -0
  471. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/unit-conversion.js +31 -0
  472. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/animatable-none.js +10 -0
  473. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/defaults.js +24 -0
  474. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/dimensions.js +9 -0
  475. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/find.js +8 -0
  476. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/get-as-type.js +4 -0
  477. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/number-browser.js +41 -0
  478. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/number.js +18 -0
  479. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/test.js +4 -0
  480. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/transform.js +31 -0
  481. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/type-auto.js +7 -0
  482. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/type-int.js +8 -0
  483. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/HTMLVisualElement.js +37 -0
  484. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/config-motion.js +12 -0
  485. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/use-props.js +27 -0
  486. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/build-styles.js +29 -0
  487. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/build-transform.js +31 -0
  488. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/create-render-state.js +9 -0
  489. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/keys-position.js +13 -0
  490. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
  491. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/make-none-animatable.js +16 -0
  492. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/parse-transform.js +64 -0
  493. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/render.js +8 -0
  494. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +12 -0
  495. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/store.js +4 -0
  496. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/SVGVisualElement.js +47 -0
  497. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/config-motion.js +43 -0
  498. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/lowercase-elements.js +30 -0
  499. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/use-props.js +22 -0
  500. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/build-attrs.js +26 -0
  501. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/camel-case-attrs.js +28 -0
  502. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/create-render-state.js +8 -0
  503. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/is-svg-tag.js +4 -0
  504. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/measure.js +15 -0
  505. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/path.js +18 -0
  506. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/render.js +11 -0
  507. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
  508. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/svg/utils/transform-origin.js +11 -0
  509. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/KeyframesResolver.js +76 -0
  510. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/animation-state.js +128 -0
  511. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/compare-by-depth.js +4 -0
  512. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/flat-tree.js +19 -0
  513. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/get-variant-context.js +20 -0
  514. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/is-controlling-variants.js +13 -0
  515. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/is-variant-label.js +6 -0
  516. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/motion-values.js +26 -0
  517. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/resolve-dynamic-variants.js +8 -0
  518. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/resolve-variants.js +20 -0
  519. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/setters.js +18 -0
  520. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/utils/variant-props.js +13 -0
  521. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/clamp.js +4 -0
  522. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/delay.js +12 -0
  523. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/distance.js +9 -0
  524. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/get-context-window.js +4 -0
  525. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/hsla-to-rgba.js +22 -0
  526. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/interpolate.js +41 -0
  527. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/is-browser.js +4 -0
  528. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/is-numerical-string.js +4 -0
  529. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/is-ref-object.js +6 -0
  530. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/is-zero-value-string.js +4 -0
  531. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/color.js +29 -0
  532. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/complex.js +52 -0
  533. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/immediate.js +6 -0
  534. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/index.js +8 -0
  535. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/number.js +4 -0
  536. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/mix/visibility.js +8 -0
  537. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/offsets/default.js +8 -0
  538. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/offsets/fill.js +12 -0
  539. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/offsets/time.js +6 -0
  540. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/pipe.js +4 -0
  541. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/reduced-motion/index.js +13 -0
  542. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/reduced-motion/state.js +5 -0
  543. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/resolve-value.js +6 -0
  544. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/shallow-compare.js +14 -0
  545. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/use-constant.js +8 -0
  546. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/use-isomorphic-effect.js +6 -0
  547. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hex.js +19 -0
  548. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hsla.js +12 -0
  549. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/index.js +11 -0
  550. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/rgba.js +16 -0
  551. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/utils.js +18 -0
  552. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/filter.js +24 -0
  553. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/index.js +49 -0
  554. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/index.js +17 -0
  555. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/units.js +17 -0
  556. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
  557. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
  558. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
  559. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
  560. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
  561. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/use-will-change/add-will-change.js +9 -0
  562. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/use-will-change/is.js +7 -0
  563. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/utils/is-motion-value.js +4 -0
  564. package/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/utils/resolve-motion-value.js +9 -0
  565. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/controls/BaseGroup.js +74 -0
  566. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/controls/Group.js +9 -0
  567. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/generators/utils/calc-duration.js +13 -0
  568. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/generators/utils/is-generator.js +6 -0
  569. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/utils/get-value-transition.js +6 -0
  570. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/waapi/utils/attach-timeline.js +6 -0
  571. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/waapi/utils/easing.js +27 -0
  572. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/animation/waapi/utils/linear.js +11 -0
  573. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/batcher.js +26 -0
  574. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/frame.js +9 -0
  575. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/microtask.js +5 -0
  576. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/order.js +17 -0
  577. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/render-step.js +42 -0
  578. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/frameloop/sync-time.js +15 -0
  579. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/drag/state/is-active.js +11 -0
  580. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/drag/state/set-active.js +11 -0
  581. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/hover.js +24 -0
  582. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/index.js +32 -0
  583. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +13 -0
  584. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/utils/keyboard.js +27 -0
  585. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/press/utils/state.js +4 -0
  586. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/is-node-or-child.js +4 -0
  587. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/is-primary-pointer.js +4 -0
  588. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/gestures/utils/setup.js +12 -0
  589. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/stats/buffer.js +6 -0
  590. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/is-bezier-definition.js +4 -0
  591. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/resolve-elements.js +14 -0
  592. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/flags.js +6 -0
  593. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/linear-easing.js +12 -0
  594. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/memo.js +12 -0
  595. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/utils/supports/scroll-timeline.js +5 -0
  596. package/dist/node_modules/motion/dist/es/motion-dom/dist/es/value/index.js +201 -0
  597. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/array.js +11 -0
  598. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/errors.js +12 -0
  599. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/global-config.js +6 -0
  600. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/memo.js +8 -0
  601. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/noop.js +4 -0
  602. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/progress.js +7 -0
  603. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/subscription-manager.js +29 -0
  604. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/time-conversion.js +5 -0
  605. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/velocity-per-second.js +6 -0
  606. package/dist/node_modules/motion/dist/es/motion-utils/dist/es/warn-once.js +7 -0
  607. package/dist/node_modules/motion-dom/dist/es/animation/controls/BaseGroup.js +74 -0
  608. package/dist/node_modules/motion-dom/dist/es/animation/controls/Group.js +9 -0
  609. package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/calc-duration.js +13 -0
  610. package/dist/node_modules/motion-dom/dist/es/animation/generators/utils/is-generator.js +6 -0
  611. package/dist/node_modules/motion-dom/dist/es/animation/utils/get-value-transition.js +6 -0
  612. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/attach-timeline.js +6 -0
  613. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/easing.js +27 -0
  614. package/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/linear.js +12 -0
  615. package/dist/node_modules/motion-dom/dist/es/frameloop/batcher.js +27 -0
  616. package/dist/node_modules/motion-dom/dist/es/frameloop/frame.js +10 -0
  617. package/dist/node_modules/motion-dom/dist/es/frameloop/microtask.js +5 -0
  618. package/dist/node_modules/motion-dom/dist/es/frameloop/order.js +17 -0
  619. package/dist/node_modules/motion-dom/dist/es/frameloop/render-step.js +42 -0
  620. package/dist/node_modules/motion-dom/dist/es/frameloop/sync-time.js +16 -0
  621. package/dist/node_modules/motion-dom/dist/es/gestures/drag/state/is-active.js +11 -0
  622. package/dist/node_modules/motion-dom/dist/es/gestures/drag/state/set-active.js +11 -0
  623. package/dist/node_modules/motion-dom/dist/es/gestures/hover.js +24 -0
  624. package/dist/node_modules/motion-dom/dist/es/gestures/press/index.js +32 -0
  625. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +13 -0
  626. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/keyboard.js +27 -0
  627. package/dist/node_modules/motion-dom/dist/es/gestures/press/utils/state.js +4 -0
  628. package/dist/node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.js +4 -0
  629. package/dist/node_modules/motion-dom/dist/es/gestures/utils/is-primary-pointer.js +4 -0
  630. package/dist/node_modules/motion-dom/dist/es/gestures/utils/setup.js +12 -0
  631. package/dist/node_modules/motion-dom/dist/es/stats/buffer.js +6 -0
  632. package/dist/node_modules/motion-dom/dist/es/utils/is-bezier-definition.js +4 -0
  633. package/dist/node_modules/motion-dom/dist/es/utils/resolve-elements.js +14 -0
  634. package/dist/node_modules/motion-dom/dist/es/utils/supports/flags.js +6 -0
  635. package/dist/node_modules/motion-dom/dist/es/utils/supports/linear-easing.js +12 -0
  636. package/dist/node_modules/motion-dom/dist/es/utils/supports/memo.js +13 -0
  637. package/dist/node_modules/motion-dom/dist/es/utils/supports/scroll-timeline.js +6 -0
  638. package/dist/node_modules/motion-dom/dist/es/value/index.js +202 -0
  639. package/dist/node_modules/motion-utils/dist/es/array.js +11 -0
  640. package/dist/node_modules/motion-utils/dist/es/errors.js +12 -0
  641. package/dist/node_modules/motion-utils/dist/es/global-config.js +6 -0
  642. package/dist/node_modules/motion-utils/dist/es/memo.js +8 -0
  643. package/dist/node_modules/motion-utils/dist/es/noop.js +4 -0
  644. package/dist/node_modules/motion-utils/dist/es/progress.js +7 -0
  645. package/dist/node_modules/motion-utils/dist/es/subscription-manager.js +29 -0
  646. package/dist/node_modules/motion-utils/dist/es/time-conversion.js +5 -0
  647. package/dist/node_modules/motion-utils/dist/es/velocity-per-second.js +6 -0
  648. package/dist/node_modules/motion-utils/dist/es/warn-once.js +7 -0
  649. package/dist/node_modules/object-assign/index.js +54 -0
  650. package/dist/node_modules/prop-types/checkPropTypes.js +54 -0
  651. package/dist/node_modules/prop-types/factoryWithThrowingShims.js +52 -0
  652. package/dist/node_modules/prop-types/factoryWithTypeCheckers.js +329 -0
  653. package/dist/node_modules/prop-types/index.js +17 -0
  654. package/dist/node_modules/prop-types/lib/ReactPropTypesSecret.js +10 -0
  655. package/dist/node_modules/prop-types/lib/has.js +7 -0
  656. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +95 -0
  657. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +78 -0
  658. package/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
  659. package/dist/node_modules/property-expr/index.js +82 -0
  660. package/dist/node_modules/react/cjs/react-jsx-runtime.development.js +247 -0
  661. package/dist/node_modules/react/cjs/react-jsx-runtime.production.js +35 -0
  662. package/dist/node_modules/react/jsx-runtime.js +10 -0
  663. package/dist/node_modules/react-dom/cjs/react-dom-client.development.js +15314 -0
  664. package/dist/node_modules/react-dom/cjs/react-dom-client.production.js +9408 -0
  665. package/dist/node_modules/react-dom/client.js +23 -0
  666. package/dist/node_modules/react-hook-form/dist/index.esm.js +203 -0
  667. package/dist/node_modules/scheduler/cjs/scheduler.development.js +236 -0
  668. package/dist/node_modules/scheduler/cjs/scheduler.production.js +233 -0
  669. package/dist/node_modules/scheduler/index.js +10 -0
  670. package/dist/node_modules/tiny-case/index.js +22 -0
  671. package/dist/node_modules/toposort/index.js +66 -0
  672. package/dist/node_modules/yup/index.esm.js +1359 -0
  673. package/dist/providers/ThemeProvider.js +19 -0
  674. package/dist/themes/default.js +9 -0
  675. package/dist/utils/dates.js +14 -0
  676. package/dist/utils/files.js +29 -0
  677. package/dist/utils/images.js +4 -0
  678. package/dist/utils/modal.js +87 -0
  679. package/dist/utils/renderContentOptions.js +15 -0
  680. package/dist/utils/strings.js +16 -0
  681. package/dist/utils/toast.js +114 -0
  682. package/package.json +15 -14
  683. package/dist/lawgic-dev-kit.es.js +0 -50777
@@ -0,0 +1,608 @@
1
+ import "../../../../../motion-utils/dist/es/errors.js";
2
+ import { noop as at } from "../../../../../motion-utils/dist/es/noop.js";
3
+ import { SubscriptionManager as rt } from "../../../../../motion-utils/dist/es/subscription-manager.js";
4
+ import { getValueTransition as nt } from "../../../../../motion-dom/dist/es/animation/utils/get-value-transition.js";
5
+ import { cancelFrame as M, frameData as g, frameSteps as C, frame as U } from "../../../../../motion-dom/dist/es/frameloop/frame.js";
6
+ import { microtask as lt } from "../../../../../motion-dom/dist/es/frameloop/microtask.js";
7
+ import { time as ht } from "../../../../../motion-dom/dist/es/frameloop/sync-time.js";
8
+ import { animateSingleValue as ut } from "../../animation/animate/single-value.js";
9
+ import { getOptimisedAppearId as ct } from "../../animation/optimized-appear/get-appear-id.js";
10
+ import { isSVGElement as dt } from "../../render/dom/utils/is-svg-element.js";
11
+ import { FlatTree as ft } from "../../render/utils/flat-tree.js";
12
+ import { clamp as mt } from "../../utils/clamp.js";
13
+ import { delay as pt } from "../../utils/delay.js";
14
+ import { mixNumber as w } from "../../utils/mix/number.js";
15
+ import { resolveMotionValue as F } from "../../value/utils/resolve-motion-value.js";
16
+ import { mixValues as yt } from "../animation/mix-values.js";
17
+ import { copyBoxInto as y, copyAxisDeltaInto as z } from "../geometry/copy.js";
18
+ import { translateAxis as L, transformBox as E, applyBoxDelta as gt, applyTreeDeltas as vt } from "../geometry/delta-apply.js";
19
+ import { calcLength as B, calcRelativePosition as V, calcRelativeBox as Tt, calcBoxDelta as k, isNear as xt } from "../geometry/delta-calc.js";
20
+ import { removeBoxTransforms as N } from "../geometry/delta-remove.js";
21
+ import { createBox as f, createDelta as A } from "../geometry/models.js";
22
+ import { boxEqualsRounded as et, isDeltaZero as it, axisDeltaEquals as _, boxEquals as Dt, aspectRatio as W } from "../geometry/utils.js";
23
+ import { NodeStack as St } from "../shared/stack.js";
24
+ import { scaleCorrectors as H } from "../styles/scale-correction.js";
25
+ import { buildProjectionTransform as Pt } from "../styles/transform.js";
26
+ import { eachAxis as q } from "../utils/each-axis.js";
27
+ import { hasTransform as P, hasScale as G, has2DTranslate as Bt } from "../utils/has-transform.js";
28
+ import { globalProjectionState as O } from "./state.js";
29
+ const b = ["", "X", "Y", "Z"], At = { visibility: "hidden" }, X = 1e3;
30
+ let jt = 0;
31
+ function I(e, l, h, c) {
32
+ const { latestValues: v } = l;
33
+ v[e] && (h[e] = v[e], l.setStaticValue(e, 0), c && (c[e] = 0));
34
+ }
35
+ function st(e) {
36
+ if (e.hasCheckedOptimisedAppear = !0, e.root === e)
37
+ return;
38
+ const { visualElement: l } = e.options;
39
+ if (!l)
40
+ return;
41
+ const h = ct(l);
42
+ if (window.MotionHasOptimisedAnimation(h, "transform")) {
43
+ const { layout: v, layoutId: j } = e.options;
44
+ window.MotionCancelOptimisedAnimation(h, "transform", U, !(v || j));
45
+ }
46
+ const { parent: c } = e;
47
+ c && !c.hasCheckedOptimisedAppear && st(c);
48
+ }
49
+ function ve({ attachResizeListener: e, defaultParent: l, measureScroll: h, checkIsScrollRoot: c, resetTransform: v }) {
50
+ return class {
51
+ constructor(t = {}, i = l == null ? void 0 : l()) {
52
+ this.id = jt++, this.animationId = 0, this.children = /* @__PURE__ */ new Set(), this.options = {}, this.isTreeAnimating = !1, this.isAnimationBlocked = !1, this.isLayoutDirty = !1, this.isProjectionDirty = !1, this.isSharedProjectionDirty = !1, this.isTransformDirty = !1, this.updateManuallyBlocked = !1, this.updateBlockedByResize = !1, this.isUpdating = !1, this.isSVG = !1, this.needsReset = !1, this.shouldResetTransform = !1, this.hasCheckedOptimisedAppear = !1, this.treeScale = { x: 1, y: 1 }, this.eventHandlers = /* @__PURE__ */ new Map(), this.hasTreeAnimated = !1, this.updateScheduled = !1, this.scheduleUpdate = () => this.update(), this.projectionUpdateScheduled = !1, this.checkUpdateFailed = () => {
53
+ this.isUpdating && (this.isUpdating = !1, this.clearAllSnapshots());
54
+ }, this.updateProjection = () => {
55
+ this.projectionUpdateScheduled = !1, this.nodes.forEach(kt), this.nodes.forEach(Ct), this.nodes.forEach(Ft), this.nodes.forEach(Lt);
56
+ }, this.resolvedRelativeTargetAt = 0, this.hasProjected = !1, this.isVisible = !0, this.animationProgress = 0, this.sharedNodes = /* @__PURE__ */ new Map(), this.latestValues = t, this.root = i ? i.root || i : this, this.path = i ? [...i.path, i] : [], this.parent = i, this.depth = i ? i.depth + 1 : 0;
57
+ for (let s = 0; s < this.path.length; s++)
58
+ this.path[s].shouldResetTransform = !0;
59
+ this.root === this && (this.nodes = new ft());
60
+ }
61
+ addEventListener(t, i) {
62
+ return this.eventHandlers.has(t) || this.eventHandlers.set(t, new rt()), this.eventHandlers.get(t).add(i);
63
+ }
64
+ notifyListeners(t, ...i) {
65
+ const s = this.eventHandlers.get(t);
66
+ s && s.notify(...i);
67
+ }
68
+ hasListeners(t) {
69
+ return this.eventHandlers.has(t);
70
+ }
71
+ /**
72
+ * Lifecycles
73
+ */
74
+ mount(t, i = this.root.hasTreeAnimated) {
75
+ if (this.instance)
76
+ return;
77
+ this.isSVG = dt(t), this.instance = t;
78
+ const { layoutId: s, layout: o, visualElement: a } = this.options;
79
+ if (a && !a.current && a.mount(t), this.root.nodes.add(this), this.parent && this.parent.children.add(this), i && (o || s) && (this.isLayoutDirty = !0), e) {
80
+ let r;
81
+ const n = () => this.root.updateBlockedByResize = !1;
82
+ e(t, () => {
83
+ this.root.updateBlockedByResize = !0, r && r(), r = pt(n, 250), O.hasAnimatedSinceResize && (O.hasAnimatedSinceResize = !1, this.nodes.forEach($));
84
+ });
85
+ }
86
+ s && this.root.registerSharedNode(s, this), this.options.animate !== !1 && a && (s || o) && this.addEventListener("didUpdate", ({ delta: r, hasLayoutChanged: n, hasRelativeLayoutChanged: u, layout: m }) => {
87
+ if (this.isTreeAnimationBlocked()) {
88
+ this.target = void 0, this.relativeTarget = void 0;
89
+ return;
90
+ }
91
+ const d = this.options.transition || a.getDefaultTransition() || zt, { onLayoutAnimationStart: S, onLayoutAnimationComplete: x } = a.getProps(), R = !this.targetLayout || !et(this.targetLayout, m), p = !n && u;
92
+ if (this.options.layoutRoot || this.resumeFrom || p || n && (R || !this.currentAnimation)) {
93
+ this.resumeFrom && (this.resumingFrom = this.resumeFrom, this.resumingFrom.resumingFrom = void 0), this.setAnimationOrigin(r, p);
94
+ const D = {
95
+ ...nt(d, "layout"),
96
+ onPlay: S,
97
+ onComplete: x
98
+ };
99
+ (a.shouldReduceMotion || this.options.layoutRoot) && (D.delay = 0, D.type = !1), this.startAnimation(D);
100
+ } else
101
+ n || $(this), this.isLead() && this.options.onExitComplete && this.options.onExitComplete();
102
+ this.targetLayout = m;
103
+ });
104
+ }
105
+ unmount() {
106
+ this.options.layoutId && this.willUpdate(), this.root.nodes.remove(this);
107
+ const t = this.getStack();
108
+ t && t.remove(this), this.parent && this.parent.children.delete(this), this.instance = void 0, M(this.updateProjection);
109
+ }
110
+ // only on the root
111
+ blockUpdate() {
112
+ this.updateManuallyBlocked = !0;
113
+ }
114
+ unblockUpdate() {
115
+ this.updateManuallyBlocked = !1;
116
+ }
117
+ isUpdateBlocked() {
118
+ return this.updateManuallyBlocked || this.updateBlockedByResize;
119
+ }
120
+ isTreeAnimationBlocked() {
121
+ return this.isAnimationBlocked || this.parent && this.parent.isTreeAnimationBlocked() || !1;
122
+ }
123
+ // Note: currently only running on root node
124
+ startUpdate() {
125
+ this.isUpdateBlocked() || (this.isUpdating = !0, this.nodes && this.nodes.forEach(Ot), this.animationId++);
126
+ }
127
+ getTransformTemplate() {
128
+ const { visualElement: t } = this.options;
129
+ return t && t.getProps().transformTemplate;
130
+ }
131
+ willUpdate(t = !0) {
132
+ if (this.root.hasTreeAnimated = !0, this.root.isUpdateBlocked()) {
133
+ this.options.onExitComplete && this.options.onExitComplete();
134
+ return;
135
+ }
136
+ if (window.MotionCancelOptimisedAnimation && !this.hasCheckedOptimisedAppear && st(this), !this.root.isUpdating && this.root.startUpdate(), this.isLayoutDirty)
137
+ return;
138
+ this.isLayoutDirty = !0;
139
+ for (let a = 0; a < this.path.length; a++) {
140
+ const r = this.path[a];
141
+ r.shouldResetTransform = !0, r.updateScroll("snapshot"), r.options.layoutRoot && r.willUpdate(!1);
142
+ }
143
+ const { layoutId: i, layout: s } = this.options;
144
+ if (i === void 0 && !s)
145
+ return;
146
+ const o = this.getTransformTemplate();
147
+ this.prevTransformTemplateValue = o ? o(this.latestValues, "") : void 0, this.updateSnapshot(), t && this.notifyListeners("willUpdate");
148
+ }
149
+ update() {
150
+ if (this.updateScheduled = !1, this.isUpdateBlocked()) {
151
+ this.unblockUpdate(), this.clearAllSnapshots(), this.nodes.forEach(Y);
152
+ return;
153
+ }
154
+ this.isUpdating || this.nodes.forEach(Ut), this.isUpdating = !1, this.nodes.forEach(wt), this.nodes.forEach(Rt), this.nodes.forEach(Vt), this.clearAllSnapshots();
155
+ const i = ht.now();
156
+ g.delta = mt(0, 1e3 / 60, i - g.timestamp), g.timestamp = i, g.isProcessing = !0, C.update.process(g), C.preRender.process(g), C.render.process(g), g.isProcessing = !1;
157
+ }
158
+ didUpdate() {
159
+ this.updateScheduled || (this.updateScheduled = !0, lt.read(this.scheduleUpdate));
160
+ }
161
+ clearAllSnapshots() {
162
+ this.nodes.forEach(Et), this.sharedNodes.forEach(bt);
163
+ }
164
+ scheduleUpdateProjection() {
165
+ this.projectionUpdateScheduled || (this.projectionUpdateScheduled = !0, U.preRender(this.updateProjection, !1, !0));
166
+ }
167
+ scheduleCheckAfterUnmount() {
168
+ U.postRender(() => {
169
+ this.isLayoutDirty ? this.root.didUpdate() : this.root.checkUpdateFailed();
170
+ });
171
+ }
172
+ /**
173
+ * Update measurements
174
+ */
175
+ updateSnapshot() {
176
+ this.snapshot || !this.instance || (this.snapshot = this.measure(), this.snapshot && !B(this.snapshot.measuredBox.x) && !B(this.snapshot.measuredBox.y) && (this.snapshot = void 0));
177
+ }
178
+ updateLayout() {
179
+ if (!this.instance || (this.updateScroll(), !(this.options.alwaysMeasureLayout && this.isLead()) && !this.isLayoutDirty))
180
+ return;
181
+ if (this.resumeFrom && !this.resumeFrom.instance)
182
+ for (let s = 0; s < this.path.length; s++)
183
+ this.path[s].updateScroll();
184
+ const t = this.layout;
185
+ this.layout = this.measure(!1), this.layoutCorrected = f(), this.isLayoutDirty = !1, this.projectionDelta = void 0, this.notifyListeners("measure", this.layout.layoutBox);
186
+ const { visualElement: i } = this.options;
187
+ i && i.notify("LayoutMeasure", this.layout.layoutBox, t ? t.layoutBox : void 0);
188
+ }
189
+ updateScroll(t = "measure") {
190
+ let i = !!(this.options.layoutScroll && this.instance);
191
+ if (this.scroll && this.scroll.animationId === this.root.animationId && this.scroll.phase === t && (i = !1), i) {
192
+ const s = c(this.instance);
193
+ this.scroll = {
194
+ animationId: this.root.animationId,
195
+ phase: t,
196
+ isRoot: s,
197
+ offset: h(this.instance),
198
+ wasRoot: this.scroll ? this.scroll.isRoot : s
199
+ };
200
+ }
201
+ }
202
+ resetTransform() {
203
+ if (!v)
204
+ return;
205
+ const t = this.isLayoutDirty || this.shouldResetTransform || this.options.alwaysMeasureLayout, i = this.projectionDelta && !it(this.projectionDelta), s = this.getTransformTemplate(), o = s ? s(this.latestValues, "") : void 0, a = o !== this.prevTransformTemplateValue;
206
+ t && (i || P(this.latestValues) || a) && (v(this.instance, o), this.shouldResetTransform = !1, this.scheduleRender());
207
+ }
208
+ measure(t = !0) {
209
+ const i = this.measurePageBox();
210
+ let s = this.removeElementScroll(i);
211
+ return t && (s = this.removeTransform(s)), Nt(s), {
212
+ animationId: this.root.animationId,
213
+ measuredBox: i,
214
+ layoutBox: s,
215
+ latestValues: {},
216
+ source: this.id
217
+ };
218
+ }
219
+ measurePageBox() {
220
+ var t;
221
+ const { visualElement: i } = this.options;
222
+ if (!i)
223
+ return f();
224
+ const s = i.measureViewportBox();
225
+ if (!(((t = this.scroll) === null || t === void 0 ? void 0 : t.wasRoot) || this.path.some(_t))) {
226
+ const { scroll: a } = this.root;
227
+ a && (L(s.x, a.offset.x), L(s.y, a.offset.y));
228
+ }
229
+ return s;
230
+ }
231
+ removeElementScroll(t) {
232
+ var i;
233
+ const s = f();
234
+ if (y(s, t), !((i = this.scroll) === null || i === void 0) && i.wasRoot)
235
+ return s;
236
+ for (let o = 0; o < this.path.length; o++) {
237
+ const a = this.path[o], { scroll: r, options: n } = a;
238
+ a !== this.root && r && n.layoutScroll && (r.wasRoot && y(s, t), L(s.x, r.offset.x), L(s.y, r.offset.y));
239
+ }
240
+ return s;
241
+ }
242
+ applyTransform(t, i = !1) {
243
+ const s = f();
244
+ y(s, t);
245
+ for (let o = 0; o < this.path.length; o++) {
246
+ const a = this.path[o];
247
+ !i && a.options.layoutScroll && a.scroll && a !== a.root && E(s, {
248
+ x: -a.scroll.offset.x,
249
+ y: -a.scroll.offset.y
250
+ }), P(a.latestValues) && E(s, a.latestValues);
251
+ }
252
+ return P(this.latestValues) && E(s, this.latestValues), s;
253
+ }
254
+ removeTransform(t) {
255
+ const i = f();
256
+ y(i, t);
257
+ for (let s = 0; s < this.path.length; s++) {
258
+ const o = this.path[s];
259
+ if (!o.instance || !P(o.latestValues))
260
+ continue;
261
+ G(o.latestValues) && o.updateSnapshot();
262
+ const a = f(), r = o.measurePageBox();
263
+ y(a, r), N(i, o.latestValues, o.snapshot ? o.snapshot.layoutBox : void 0, a);
264
+ }
265
+ return P(this.latestValues) && N(i, this.latestValues), i;
266
+ }
267
+ setTargetDelta(t) {
268
+ this.targetDelta = t, this.root.scheduleUpdateProjection(), this.isProjectionDirty = !0;
269
+ }
270
+ setOptions(t) {
271
+ this.options = {
272
+ ...this.options,
273
+ ...t,
274
+ crossfade: t.crossfade !== void 0 ? t.crossfade : !0
275
+ };
276
+ }
277
+ clearMeasurements() {
278
+ this.scroll = void 0, this.layout = void 0, this.snapshot = void 0, this.prevTransformTemplateValue = void 0, this.targetDelta = void 0, this.target = void 0, this.isLayoutDirty = !1;
279
+ }
280
+ forceRelativeParentToResolveTarget() {
281
+ this.relativeParent && this.relativeParent.resolvedRelativeTargetAt !== g.timestamp && this.relativeParent.resolveTargetDelta(!0);
282
+ }
283
+ resolveTargetDelta(t = !1) {
284
+ var i;
285
+ const s = this.getLead();
286
+ this.isProjectionDirty || (this.isProjectionDirty = s.isProjectionDirty), this.isTransformDirty || (this.isTransformDirty = s.isTransformDirty), this.isSharedProjectionDirty || (this.isSharedProjectionDirty = s.isSharedProjectionDirty);
287
+ const o = !!this.resumingFrom || this !== s;
288
+ if (!(t || o && this.isSharedProjectionDirty || this.isProjectionDirty || !((i = this.parent) === null || i === void 0) && i.isProjectionDirty || this.attemptToResolveRelativeTarget || this.root.updateBlockedByResize))
289
+ return;
290
+ const { layout: r, layoutId: n } = this.options;
291
+ if (!(!this.layout || !(r || n))) {
292
+ if (this.resolvedRelativeTargetAt = g.timestamp, !this.targetDelta && !this.relativeTarget) {
293
+ const u = this.getClosestProjectingParent();
294
+ u && u.layout && this.animationProgress !== 1 ? (this.relativeParent = u, this.forceRelativeParentToResolveTarget(), this.relativeTarget = f(), this.relativeTargetOrigin = f(), V(this.relativeTargetOrigin, this.layout.layoutBox, u.layout.layoutBox), y(this.relativeTarget, this.relativeTargetOrigin)) : this.relativeParent = this.relativeTarget = void 0;
295
+ }
296
+ if (!(!this.relativeTarget && !this.targetDelta) && (this.target || (this.target = f(), this.targetWithTransforms = f()), this.relativeTarget && this.relativeTargetOrigin && this.relativeParent && this.relativeParent.target ? (this.forceRelativeParentToResolveTarget(), Tt(this.target, this.relativeTarget, this.relativeParent.target)) : this.targetDelta ? (this.resumingFrom ? this.target = this.applyTransform(this.layout.layoutBox) : y(this.target, this.layout.layoutBox), gt(this.target, this.targetDelta)) : y(this.target, this.layout.layoutBox), this.attemptToResolveRelativeTarget)) {
297
+ this.attemptToResolveRelativeTarget = !1;
298
+ const u = this.getClosestProjectingParent();
299
+ u && !!u.resumingFrom == !!this.resumingFrom && !u.options.layoutScroll && u.target && this.animationProgress !== 1 ? (this.relativeParent = u, this.forceRelativeParentToResolveTarget(), this.relativeTarget = f(), this.relativeTargetOrigin = f(), V(this.relativeTargetOrigin, this.target, u.target), y(this.relativeTarget, this.relativeTargetOrigin)) : this.relativeParent = this.relativeTarget = void 0;
300
+ }
301
+ }
302
+ }
303
+ getClosestProjectingParent() {
304
+ if (!(!this.parent || G(this.parent.latestValues) || Bt(this.parent.latestValues)))
305
+ return this.parent.isProjecting() ? this.parent : this.parent.getClosestProjectingParent();
306
+ }
307
+ isProjecting() {
308
+ return !!((this.relativeTarget || this.targetDelta || this.options.layoutRoot) && this.layout);
309
+ }
310
+ calcProjection() {
311
+ var t;
312
+ const i = this.getLead(), s = !!this.resumingFrom || this !== i;
313
+ let o = !0;
314
+ if ((this.isProjectionDirty || !((t = this.parent) === null || t === void 0) && t.isProjectionDirty) && (o = !1), s && (this.isSharedProjectionDirty || this.isTransformDirty) && (o = !1), this.resolvedRelativeTargetAt === g.timestamp && (o = !1), o)
315
+ return;
316
+ const { layout: a, layoutId: r } = this.options;
317
+ if (this.isTreeAnimating = !!(this.parent && this.parent.isTreeAnimating || this.currentAnimation || this.pendingAnimation), this.isTreeAnimating || (this.targetDelta = this.relativeTarget = void 0), !this.layout || !(a || r))
318
+ return;
319
+ y(this.layoutCorrected, this.layout.layoutBox);
320
+ const n = this.treeScale.x, u = this.treeScale.y;
321
+ vt(this.layoutCorrected, this.treeScale, this.path, s), i.layout && !i.target && (this.treeScale.x !== 1 || this.treeScale.y !== 1) && (i.target = i.layout.layoutBox, i.targetWithTransforms = f());
322
+ const { target: m } = i;
323
+ if (!m) {
324
+ this.prevProjectionDelta && (this.createProjectionDeltas(), this.scheduleRender());
325
+ return;
326
+ }
327
+ !this.projectionDelta || !this.prevProjectionDelta ? this.createProjectionDeltas() : (z(this.prevProjectionDelta.x, this.projectionDelta.x), z(this.prevProjectionDelta.y, this.projectionDelta.y)), k(this.projectionDelta, this.layoutCorrected, m, this.latestValues), (this.treeScale.x !== n || this.treeScale.y !== u || !_(this.projectionDelta.x, this.prevProjectionDelta.x) || !_(this.projectionDelta.y, this.prevProjectionDelta.y)) && (this.hasProjected = !0, this.scheduleRender(), this.notifyListeners("projectionUpdate", m));
328
+ }
329
+ hide() {
330
+ this.isVisible = !1;
331
+ }
332
+ show() {
333
+ this.isVisible = !0;
334
+ }
335
+ scheduleRender(t = !0) {
336
+ var i;
337
+ if ((i = this.options.visualElement) === null || i === void 0 || i.scheduleRender(), t) {
338
+ const s = this.getStack();
339
+ s && s.scheduleRender();
340
+ }
341
+ this.resumingFrom && !this.resumingFrom.instance && (this.resumingFrom = void 0);
342
+ }
343
+ createProjectionDeltas() {
344
+ this.prevProjectionDelta = A(), this.projectionDelta = A(), this.projectionDeltaWithTransform = A();
345
+ }
346
+ setAnimationOrigin(t, i = !1) {
347
+ const s = this.snapshot, o = s ? s.latestValues : {}, a = { ...this.latestValues }, r = A();
348
+ (!this.relativeParent || !this.relativeParent.options.layoutRoot) && (this.relativeTarget = this.relativeTargetOrigin = void 0), this.attemptToResolveRelativeTarget = !i;
349
+ const n = f(), u = s ? s.source : void 0, m = this.layout ? this.layout.source : void 0, d = u !== m, S = this.getStack(), x = !S || S.members.length <= 1, R = !!(d && !x && this.options.crossfade === !0 && !this.path.some(Mt));
350
+ this.animationProgress = 0;
351
+ let p;
352
+ this.mixTargetDelta = (D) => {
353
+ const T = D / 1e3;
354
+ Z(r.x, t.x, T), Z(r.y, t.y, T), this.setTargetDelta(r), this.relativeTarget && this.relativeTargetOrigin && this.layout && this.relativeParent && this.relativeParent.layout && (V(n, this.layout.layoutBox, this.relativeParent.layout.layoutBox), It(this.relativeTarget, this.relativeTargetOrigin, n, T), p && Dt(this.relativeTarget, p) && (this.isProjectionDirty = !1), p || (p = f()), y(p, this.relativeTarget)), d && (this.animationValues = a, yt(a, o, this.latestValues, T, R, x)), this.root.scheduleUpdateProjection(), this.scheduleRender(), this.animationProgress = T;
355
+ }, this.mixTargetDelta(this.options.layoutRoot ? 1e3 : 0);
356
+ }
357
+ startAnimation(t) {
358
+ this.notifyListeners("animationStart"), this.currentAnimation && this.currentAnimation.stop(), this.resumingFrom && this.resumingFrom.currentAnimation && this.resumingFrom.currentAnimation.stop(), this.pendingAnimation && (M(this.pendingAnimation), this.pendingAnimation = void 0), this.pendingAnimation = U.update(() => {
359
+ O.hasAnimatedSinceResize = !0, this.currentAnimation = ut(0, X, {
360
+ ...t,
361
+ onUpdate: (i) => {
362
+ this.mixTargetDelta(i), t.onUpdate && t.onUpdate(i);
363
+ },
364
+ onStop: () => {
365
+ },
366
+ onComplete: () => {
367
+ t.onComplete && t.onComplete(), this.completeAnimation();
368
+ }
369
+ }), this.resumingFrom && (this.resumingFrom.currentAnimation = this.currentAnimation), this.pendingAnimation = void 0;
370
+ });
371
+ }
372
+ completeAnimation() {
373
+ this.resumingFrom && (this.resumingFrom.currentAnimation = void 0, this.resumingFrom.preserveOpacity = void 0);
374
+ const t = this.getStack();
375
+ t && t.exitAnimationComplete(), this.resumingFrom = this.currentAnimation = this.animationValues = void 0, this.notifyListeners("animationComplete");
376
+ }
377
+ finishAnimation() {
378
+ this.currentAnimation && (this.mixTargetDelta && this.mixTargetDelta(X), this.currentAnimation.stop()), this.completeAnimation();
379
+ }
380
+ applyTransformsToTarget() {
381
+ const t = this.getLead();
382
+ let { targetWithTransforms: i, target: s, layout: o, latestValues: a } = t;
383
+ if (!(!i || !s || !o)) {
384
+ if (this !== t && this.layout && o && ot(this.options.animationType, this.layout.layoutBox, o.layoutBox)) {
385
+ s = this.target || f();
386
+ const r = B(this.layout.layoutBox.x);
387
+ s.x.min = t.target.x.min, s.x.max = s.x.min + r;
388
+ const n = B(this.layout.layoutBox.y);
389
+ s.y.min = t.target.y.min, s.y.max = s.y.min + n;
390
+ }
391
+ y(i, s), E(i, a), k(this.projectionDeltaWithTransform, this.layoutCorrected, i, a);
392
+ }
393
+ }
394
+ registerSharedNode(t, i) {
395
+ this.sharedNodes.has(t) || this.sharedNodes.set(t, new St()), this.sharedNodes.get(t).add(i);
396
+ const o = i.options.initialPromotionConfig;
397
+ i.promote({
398
+ transition: o ? o.transition : void 0,
399
+ preserveFollowOpacity: o && o.shouldPreserveFollowOpacity ? o.shouldPreserveFollowOpacity(i) : void 0
400
+ });
401
+ }
402
+ isLead() {
403
+ const t = this.getStack();
404
+ return t ? t.lead === this : !0;
405
+ }
406
+ getLead() {
407
+ var t;
408
+ const { layoutId: i } = this.options;
409
+ return i ? ((t = this.getStack()) === null || t === void 0 ? void 0 : t.lead) || this : this;
410
+ }
411
+ getPrevLead() {
412
+ var t;
413
+ const { layoutId: i } = this.options;
414
+ return i ? (t = this.getStack()) === null || t === void 0 ? void 0 : t.prevLead : void 0;
415
+ }
416
+ getStack() {
417
+ const { layoutId: t } = this.options;
418
+ if (t)
419
+ return this.root.sharedNodes.get(t);
420
+ }
421
+ promote({ needsReset: t, transition: i, preserveFollowOpacity: s } = {}) {
422
+ const o = this.getStack();
423
+ o && o.promote(this, s), t && (this.projectionDelta = void 0, this.needsReset = !0), i && this.setOptions({ transition: i });
424
+ }
425
+ relegate() {
426
+ const t = this.getStack();
427
+ return t ? t.relegate(this) : !1;
428
+ }
429
+ resetSkewAndRotation() {
430
+ const { visualElement: t } = this.options;
431
+ if (!t)
432
+ return;
433
+ let i = !1;
434
+ const { latestValues: s } = t;
435
+ if ((s.z || s.rotate || s.rotateX || s.rotateY || s.rotateZ || s.skewX || s.skewY) && (i = !0), !i)
436
+ return;
437
+ const o = {};
438
+ s.z && I("z", t, o, this.animationValues);
439
+ for (let a = 0; a < b.length; a++)
440
+ I(`rotate${b[a]}`, t, o, this.animationValues), I(`skew${b[a]}`, t, o, this.animationValues);
441
+ t.render();
442
+ for (const a in o)
443
+ t.setStaticValue(a, o[a]), this.animationValues && (this.animationValues[a] = o[a]);
444
+ t.scheduleRender();
445
+ }
446
+ getProjectionStyles(t) {
447
+ var i, s;
448
+ if (!this.instance || this.isSVG)
449
+ return;
450
+ if (!this.isVisible)
451
+ return At;
452
+ const o = {
453
+ visibility: ""
454
+ }, a = this.getTransformTemplate();
455
+ if (this.needsReset)
456
+ return this.needsReset = !1, o.opacity = "", o.pointerEvents = F(t == null ? void 0 : t.pointerEvents) || "", o.transform = a ? a(this.latestValues, "") : "none", o;
457
+ const r = this.getLead();
458
+ if (!this.projectionDelta || !this.layout || !r.target) {
459
+ const d = {};
460
+ return this.options.layoutId && (d.opacity = this.latestValues.opacity !== void 0 ? this.latestValues.opacity : 1, d.pointerEvents = F(t == null ? void 0 : t.pointerEvents) || ""), this.hasProjected && !P(this.latestValues) && (d.transform = a ? a({}, "") : "none", this.hasProjected = !1), d;
461
+ }
462
+ const n = r.animationValues || r.latestValues;
463
+ this.applyTransformsToTarget(), o.transform = Pt(this.projectionDeltaWithTransform, this.treeScale, n), a && (o.transform = a(n, o.transform));
464
+ const { x: u, y: m } = this.projectionDelta;
465
+ o.transformOrigin = `${u.origin * 100}% ${m.origin * 100}% 0`, r.animationValues ? o.opacity = r === this ? (s = (i = n.opacity) !== null && i !== void 0 ? i : this.latestValues.opacity) !== null && s !== void 0 ? s : 1 : this.preserveOpacity ? this.latestValues.opacity : n.opacityExit : o.opacity = r === this ? n.opacity !== void 0 ? n.opacity : "" : n.opacityExit !== void 0 ? n.opacityExit : 0;
466
+ for (const d in H) {
467
+ if (n[d] === void 0)
468
+ continue;
469
+ const { correct: S, applyTo: x, isCSSVariable: R } = H[d], p = o.transform === "none" ? n[d] : S(n[d], r);
470
+ if (x) {
471
+ const D = x.length;
472
+ for (let T = 0; T < D; T++)
473
+ o[x[T]] = p;
474
+ } else
475
+ R ? this.options.visualElement.renderState.vars[d] = p : o[d] = p;
476
+ }
477
+ return this.options.layoutId && (o.pointerEvents = r === this ? F(t == null ? void 0 : t.pointerEvents) || "" : "none"), o;
478
+ }
479
+ clearSnapshot() {
480
+ this.resumeFrom = this.snapshot = void 0;
481
+ }
482
+ // Only run on root
483
+ resetTree() {
484
+ this.root.nodes.forEach((t) => {
485
+ var i;
486
+ return (i = t.currentAnimation) === null || i === void 0 ? void 0 : i.stop();
487
+ }), this.root.nodes.forEach(Y), this.root.sharedNodes.clear();
488
+ }
489
+ };
490
+ }
491
+ function Rt(e) {
492
+ e.updateLayout();
493
+ }
494
+ function Vt(e) {
495
+ var l;
496
+ const h = ((l = e.resumeFrom) === null || l === void 0 ? void 0 : l.snapshot) || e.snapshot;
497
+ if (e.isLead() && e.layout && h && e.hasListeners("didUpdate")) {
498
+ const { layoutBox: c, measuredBox: v } = e.layout, { animationType: j } = e.options, t = h.source !== e.layout.source;
499
+ j === "size" ? q((r) => {
500
+ const n = t ? h.measuredBox[r] : h.layoutBox[r], u = B(n);
501
+ n.min = c[r].min, n.max = n.min + u;
502
+ }) : ot(j, h.layoutBox, c) && q((r) => {
503
+ const n = t ? h.measuredBox[r] : h.layoutBox[r], u = B(c[r]);
504
+ n.max = n.min + u, e.relativeTarget && !e.currentAnimation && (e.isProjectionDirty = !0, e.relativeTarget[r].max = e.relativeTarget[r].min + u);
505
+ });
506
+ const i = A();
507
+ k(i, c, h.layoutBox);
508
+ const s = A();
509
+ t ? k(s, e.applyTransform(v, !0), h.measuredBox) : k(s, c, h.layoutBox);
510
+ const o = !it(i);
511
+ let a = !1;
512
+ if (!e.resumeFrom) {
513
+ const r = e.getClosestProjectingParent();
514
+ if (r && !r.resumeFrom) {
515
+ const { snapshot: n, layout: u } = r;
516
+ if (n && u) {
517
+ const m = f();
518
+ V(m, h.layoutBox, n.layoutBox);
519
+ const d = f();
520
+ V(d, c, u.layoutBox), et(m, d) || (a = !0), r.options.layoutRoot && (e.relativeTarget = d, e.relativeTargetOrigin = m, e.relativeParent = r);
521
+ }
522
+ }
523
+ }
524
+ e.notifyListeners("didUpdate", {
525
+ layout: c,
526
+ snapshot: h,
527
+ delta: s,
528
+ layoutDelta: i,
529
+ hasLayoutChanged: o,
530
+ hasRelativeLayoutChanged: a
531
+ });
532
+ } else if (e.isLead()) {
533
+ const { onExitComplete: c } = e.options;
534
+ c && c();
535
+ }
536
+ e.options.transition = void 0;
537
+ }
538
+ function kt(e) {
539
+ e.parent && (e.isProjecting() || (e.isProjectionDirty = e.parent.isProjectionDirty), e.isSharedProjectionDirty || (e.isSharedProjectionDirty = !!(e.isProjectionDirty || e.parent.isProjectionDirty || e.parent.isSharedProjectionDirty)), e.isTransformDirty || (e.isTransformDirty = e.parent.isTransformDirty));
540
+ }
541
+ function Lt(e) {
542
+ e.isProjectionDirty = e.isSharedProjectionDirty = e.isTransformDirty = !1;
543
+ }
544
+ function Et(e) {
545
+ e.clearSnapshot();
546
+ }
547
+ function Y(e) {
548
+ e.clearMeasurements();
549
+ }
550
+ function Ut(e) {
551
+ e.isLayoutDirty = !1;
552
+ }
553
+ function wt(e) {
554
+ const { visualElement: l } = e.options;
555
+ l && l.getProps().onBeforeLayoutMeasure && l.notify("BeforeLayoutMeasure"), e.resetTransform();
556
+ }
557
+ function $(e) {
558
+ e.finishAnimation(), e.targetDelta = e.relativeTarget = e.target = void 0, e.isProjectionDirty = !0;
559
+ }
560
+ function Ct(e) {
561
+ e.resolveTargetDelta();
562
+ }
563
+ function Ft(e) {
564
+ e.calcProjection();
565
+ }
566
+ function Ot(e) {
567
+ e.resetSkewAndRotation();
568
+ }
569
+ function bt(e) {
570
+ e.removeLeadSnapshot();
571
+ }
572
+ function Z(e, l, h) {
573
+ e.translate = w(l.translate, 0, h), e.scale = w(l.scale, 1, h), e.origin = l.origin, e.originPoint = l.originPoint;
574
+ }
575
+ function J(e, l, h, c) {
576
+ e.min = w(l.min, h.min, c), e.max = w(l.max, h.max, c);
577
+ }
578
+ function It(e, l, h, c) {
579
+ J(e.x, l.x, h.x, c), J(e.y, l.y, h.y, c);
580
+ }
581
+ function Mt(e) {
582
+ return e.animationValues && e.animationValues.opacityExit !== void 0;
583
+ }
584
+ const zt = {
585
+ duration: 0.45,
586
+ ease: [0.4, 0, 0.1, 1]
587
+ }, K = (e) => typeof navigator < "u" && navigator.userAgent && navigator.userAgent.toLowerCase().includes(e), Q = K("applewebkit/") && !K("chrome/") ? Math.round : at;
588
+ function tt(e) {
589
+ e.min = Q(e.min), e.max = Q(e.max);
590
+ }
591
+ function Nt(e) {
592
+ tt(e.x), tt(e.y);
593
+ }
594
+ function ot(e, l, h) {
595
+ return e === "position" || e === "preserve-aspect" && !xt(W(l), W(h), 0.2);
596
+ }
597
+ function _t(e) {
598
+ var l;
599
+ return e !== e.root && ((l = e.scroll) === null || l === void 0 ? void 0 : l.wasRoot);
600
+ }
601
+ export {
602
+ Lt as cleanDirtyNodes,
603
+ ve as createProjectionNode,
604
+ J as mixAxis,
605
+ Z as mixAxisDelta,
606
+ It as mixBox,
607
+ kt as propagateDirtyNodes
608
+ };
@@ -0,0 +1,15 @@
1
+ const e = {
2
+ /**
3
+ * Global flag as to whether the tree has animated since the last time
4
+ * we resized the window
5
+ */
6
+ hasAnimatedSinceResize: !0,
7
+ /**
8
+ * We set this to true once, on the first update. Any nodes added to the tree beyond that
9
+ * update will be given a `data-projection-id` attribute.
10
+ */
11
+ hasEverUpdated: !1
12
+ };
13
+ export {
14
+ e as globalProjectionState
15
+ };