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,329 @@
1
+ import { __require as F } from "./node_modules/react-is/index.js";
2
+ import { __require as N } from "../object-assign/index.js";
3
+ import { __require as ee } from "./lib/ReactPropTypesSecret.js";
4
+ import { __require as re } from "./lib/has.js";
5
+ import { __require as ne } from "./checkPropTypes.js";
6
+ var A, C;
7
+ function oe() {
8
+ if (C) return A;
9
+ C = 1;
10
+ var k = F(), W = N(), h = /* @__PURE__ */ ee(), j = /* @__PURE__ */ re(), R = /* @__PURE__ */ ne(), T = function() {
11
+ };
12
+ process.env.NODE_ENV !== "production" && (T = function(x) {
13
+ var S = "Warning: " + x;
14
+ typeof console < "u" && console.error(S);
15
+ try {
16
+ throw new Error(S);
17
+ } catch {
18
+ }
19
+ });
20
+ function E() {
21
+ return null;
22
+ }
23
+ return A = function(x, S) {
24
+ var _ = typeof Symbol == "function" && Symbol.iterator, D = "@@iterator";
25
+ function m(e) {
26
+ var r = e && (_ && e[_] || e[D]);
27
+ if (typeof r == "function")
28
+ return r;
29
+ }
30
+ var P = "<<anonymous>>", w = {
31
+ array: p("array"),
32
+ bigint: p("bigint"),
33
+ bool: p("boolean"),
34
+ func: p("function"),
35
+ number: p("number"),
36
+ object: p("object"),
37
+ string: p("string"),
38
+ symbol: p("symbol"),
39
+ any: M(),
40
+ arrayOf: U,
41
+ element: B(),
42
+ elementType: J(),
43
+ instanceOf: z,
44
+ node: G(),
45
+ objectOf: H,
46
+ oneOf: L,
47
+ oneOfType: X,
48
+ shape: K,
49
+ exact: Q
50
+ };
51
+ function Y(e, r) {
52
+ return e === r ? e !== 0 || 1 / e === 1 / r : e !== e && r !== r;
53
+ }
54
+ function d(e, r) {
55
+ this.message = e, this.data = r && typeof r == "object" ? r : {}, this.stack = "";
56
+ }
57
+ d.prototype = Error.prototype;
58
+ function v(e) {
59
+ if (process.env.NODE_ENV !== "production")
60
+ var r = {}, u = 0;
61
+ function i(f, t, a, o, c, s, y) {
62
+ if (o = o || P, s = s || a, y !== h) {
63
+ if (S) {
64
+ var l = new Error(
65
+ "Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types"
66
+ );
67
+ throw l.name = "Invariant Violation", l;
68
+ } else if (process.env.NODE_ENV !== "production" && typeof console < "u") {
69
+ var b = o + ":" + a;
70
+ !r[b] && // Avoid spamming the console because they are often not actionable except for lib authors
71
+ u < 3 && (T(
72
+ "You are manually calling a React.PropTypes validation function for the `" + s + "` prop on `" + o + "`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."
73
+ ), r[b] = !0, u++);
74
+ }
75
+ }
76
+ return t[a] == null ? f ? t[a] === null ? new d("The " + c + " `" + s + "` is marked as required " + ("in `" + o + "`, but its value is `null`.")) : new d("The " + c + " `" + s + "` is marked as required in " + ("`" + o + "`, but its value is `undefined`.")) : null : e(t, a, o, c, s);
77
+ }
78
+ var n = i.bind(null, !1);
79
+ return n.isRequired = i.bind(null, !0), n;
80
+ }
81
+ function p(e) {
82
+ function r(u, i, n, f, t, a) {
83
+ var o = u[i], c = g(o);
84
+ if (c !== e) {
85
+ var s = O(o);
86
+ return new d(
87
+ "Invalid " + f + " `" + t + "` of type " + ("`" + s + "` supplied to `" + n + "`, expected ") + ("`" + e + "`."),
88
+ { expectedType: e }
89
+ );
90
+ }
91
+ return null;
92
+ }
93
+ return v(r);
94
+ }
95
+ function M() {
96
+ return v(E);
97
+ }
98
+ function U(e) {
99
+ function r(u, i, n, f, t) {
100
+ if (typeof e != "function")
101
+ return new d("Property `" + t + "` of component `" + n + "` has invalid PropType notation inside arrayOf.");
102
+ var a = u[i];
103
+ if (!Array.isArray(a)) {
104
+ var o = g(a);
105
+ return new d("Invalid " + f + " `" + t + "` of type " + ("`" + o + "` supplied to `" + n + "`, expected an array."));
106
+ }
107
+ for (var c = 0; c < a.length; c++) {
108
+ var s = e(a, c, n, f, t + "[" + c + "]", h);
109
+ if (s instanceof Error)
110
+ return s;
111
+ }
112
+ return null;
113
+ }
114
+ return v(r);
115
+ }
116
+ function B() {
117
+ function e(r, u, i, n, f) {
118
+ var t = r[u];
119
+ if (!x(t)) {
120
+ var a = g(t);
121
+ return new d("Invalid " + n + " `" + f + "` of type " + ("`" + a + "` supplied to `" + i + "`, expected a single ReactElement."));
122
+ }
123
+ return null;
124
+ }
125
+ return v(e);
126
+ }
127
+ function J() {
128
+ function e(r, u, i, n, f) {
129
+ var t = r[u];
130
+ if (!k.isValidElementType(t)) {
131
+ var a = g(t);
132
+ return new d("Invalid " + n + " `" + f + "` of type " + ("`" + a + "` supplied to `" + i + "`, expected a single ReactElement type."));
133
+ }
134
+ return null;
135
+ }
136
+ return v(e);
137
+ }
138
+ function z(e) {
139
+ function r(u, i, n, f, t) {
140
+ if (!(u[i] instanceof e)) {
141
+ var a = e.name || P, o = V(u[i]);
142
+ return new d("Invalid " + f + " `" + t + "` of type " + ("`" + o + "` supplied to `" + n + "`, expected ") + ("instance of `" + a + "`."));
143
+ }
144
+ return null;
145
+ }
146
+ return v(r);
147
+ }
148
+ function L(e) {
149
+ if (!Array.isArray(e))
150
+ return process.env.NODE_ENV !== "production" && (arguments.length > 1 ? T(
151
+ "Invalid arguments supplied to oneOf, expected an array, got " + arguments.length + " arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."
152
+ ) : T("Invalid argument supplied to oneOf, expected an array.")), E;
153
+ function r(u, i, n, f, t) {
154
+ for (var a = u[i], o = 0; o < e.length; o++)
155
+ if (Y(a, e[o]))
156
+ return null;
157
+ var c = JSON.stringify(e, function(y, l) {
158
+ var b = O(l);
159
+ return b === "symbol" ? String(l) : l;
160
+ });
161
+ return new d("Invalid " + f + " `" + t + "` of value `" + String(a) + "` " + ("supplied to `" + n + "`, expected one of " + c + "."));
162
+ }
163
+ return v(r);
164
+ }
165
+ function H(e) {
166
+ function r(u, i, n, f, t) {
167
+ if (typeof e != "function")
168
+ return new d("Property `" + t + "` of component `" + n + "` has invalid PropType notation inside objectOf.");
169
+ var a = u[i], o = g(a);
170
+ if (o !== "object")
171
+ return new d("Invalid " + f + " `" + t + "` of type " + ("`" + o + "` supplied to `" + n + "`, expected an object."));
172
+ for (var c in a)
173
+ if (j(a, c)) {
174
+ var s = e(a, c, n, f, t + "." + c, h);
175
+ if (s instanceof Error)
176
+ return s;
177
+ }
178
+ return null;
179
+ }
180
+ return v(r);
181
+ }
182
+ function X(e) {
183
+ if (!Array.isArray(e))
184
+ return process.env.NODE_ENV !== "production" && T("Invalid argument supplied to oneOfType, expected an instance of array."), E;
185
+ for (var r = 0; r < e.length; r++) {
186
+ var u = e[r];
187
+ if (typeof u != "function")
188
+ return T(
189
+ "Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + $(u) + " at index " + r + "."
190
+ ), E;
191
+ }
192
+ function i(n, f, t, a, o) {
193
+ for (var c = [], s = 0; s < e.length; s++) {
194
+ var y = e[s], l = y(n, f, t, a, o, h);
195
+ if (l == null)
196
+ return null;
197
+ l.data && j(l.data, "expectedType") && c.push(l.data.expectedType);
198
+ }
199
+ var b = c.length > 0 ? ", expected one of type [" + c.join(", ") + "]" : "";
200
+ return new d("Invalid " + a + " `" + o + "` supplied to " + ("`" + t + "`" + b + "."));
201
+ }
202
+ return v(i);
203
+ }
204
+ function G() {
205
+ function e(r, u, i, n, f) {
206
+ return I(r[u]) ? null : new d("Invalid " + n + " `" + f + "` supplied to " + ("`" + i + "`, expected a ReactNode."));
207
+ }
208
+ return v(e);
209
+ }
210
+ function q(e, r, u, i, n) {
211
+ return new d(
212
+ (e || "React class") + ": " + r + " type `" + u + "." + i + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + n + "`."
213
+ );
214
+ }
215
+ function K(e) {
216
+ function r(u, i, n, f, t) {
217
+ var a = u[i], o = g(a);
218
+ if (o !== "object")
219
+ return new d("Invalid " + f + " `" + t + "` of type `" + o + "` " + ("supplied to `" + n + "`, expected `object`."));
220
+ for (var c in e) {
221
+ var s = e[c];
222
+ if (typeof s != "function")
223
+ return q(n, f, t, c, O(s));
224
+ var y = s(a, c, n, f, t + "." + c, h);
225
+ if (y)
226
+ return y;
227
+ }
228
+ return null;
229
+ }
230
+ return v(r);
231
+ }
232
+ function Q(e) {
233
+ function r(u, i, n, f, t) {
234
+ var a = u[i], o = g(a);
235
+ if (o !== "object")
236
+ return new d("Invalid " + f + " `" + t + "` of type `" + o + "` " + ("supplied to `" + n + "`, expected `object`."));
237
+ var c = W({}, u[i], e);
238
+ for (var s in c) {
239
+ var y = e[s];
240
+ if (j(e, s) && typeof y != "function")
241
+ return q(n, f, t, s, O(y));
242
+ if (!y)
243
+ return new d(
244
+ "Invalid " + f + " `" + t + "` key `" + s + "` supplied to `" + n + "`.\nBad object: " + JSON.stringify(u[i], null, " ") + `
245
+ Valid keys: ` + JSON.stringify(Object.keys(e), null, " ")
246
+ );
247
+ var l = y(a, s, n, f, t + "." + s, h);
248
+ if (l)
249
+ return l;
250
+ }
251
+ return null;
252
+ }
253
+ return v(r);
254
+ }
255
+ function I(e) {
256
+ switch (typeof e) {
257
+ case "number":
258
+ case "string":
259
+ case "undefined":
260
+ return !0;
261
+ case "boolean":
262
+ return !e;
263
+ case "object":
264
+ if (Array.isArray(e))
265
+ return e.every(I);
266
+ if (e === null || x(e))
267
+ return !0;
268
+ var r = m(e);
269
+ if (r) {
270
+ var u = r.call(e), i;
271
+ if (r !== e.entries) {
272
+ for (; !(i = u.next()).done; )
273
+ if (!I(i.value))
274
+ return !1;
275
+ } else
276
+ for (; !(i = u.next()).done; ) {
277
+ var n = i.value;
278
+ if (n && !I(n[1]))
279
+ return !1;
280
+ }
281
+ } else
282
+ return !1;
283
+ return !0;
284
+ default:
285
+ return !1;
286
+ }
287
+ }
288
+ function Z(e, r) {
289
+ return e === "symbol" ? !0 : r ? r["@@toStringTag"] === "Symbol" || typeof Symbol == "function" && r instanceof Symbol : !1;
290
+ }
291
+ function g(e) {
292
+ var r = typeof e;
293
+ return Array.isArray(e) ? "array" : e instanceof RegExp ? "object" : Z(r, e) ? "symbol" : r;
294
+ }
295
+ function O(e) {
296
+ if (typeof e > "u" || e === null)
297
+ return "" + e;
298
+ var r = g(e);
299
+ if (r === "object") {
300
+ if (e instanceof Date)
301
+ return "date";
302
+ if (e instanceof RegExp)
303
+ return "regexp";
304
+ }
305
+ return r;
306
+ }
307
+ function $(e) {
308
+ var r = O(e);
309
+ switch (r) {
310
+ case "array":
311
+ case "object":
312
+ return "an " + r;
313
+ case "boolean":
314
+ case "date":
315
+ case "regexp":
316
+ return "a " + r;
317
+ default:
318
+ return r;
319
+ }
320
+ }
321
+ function V(e) {
322
+ return !e.constructor || !e.constructor.name ? P : e.constructor.name;
323
+ }
324
+ return w.checkPropTypes = R, w.resetWarningCache = R.resetWarningCache, w.PropTypes = w, w;
325
+ }, A;
326
+ }
327
+ export {
328
+ oe as __require
329
+ };
@@ -0,0 +1,17 @@
1
+ import { __module as r } from "../../_virtual/index6.js";
2
+ import { __require as s } from "./node_modules/react-is/index.js";
3
+ import { __require as t } from "./factoryWithTypeCheckers.js";
4
+ import { __require as p } from "./factoryWithThrowingShims.js";
5
+ var e;
6
+ function q() {
7
+ if (e) return r.exports;
8
+ if (e = 1, process.env.NODE_ENV !== "production") {
9
+ var o = s(), i = !0;
10
+ r.exports = /* @__PURE__ */ t()(o.isElement, i);
11
+ } else
12
+ r.exports = /* @__PURE__ */ p()();
13
+ return r.exports;
14
+ }
15
+ export {
16
+ q as __require
17
+ };
@@ -0,0 +1,10 @@
1
+ var e, r;
2
+ function _() {
3
+ if (r) return e;
4
+ r = 1;
5
+ var t = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";
6
+ return e = t, e;
7
+ }
8
+ export {
9
+ _ as __require
10
+ };
@@ -0,0 +1,7 @@
1
+ var r, e;
2
+ function a() {
3
+ return e || (e = 1, r = Function.call.bind(Object.prototype.hasOwnProperty)), r;
4
+ }
5
+ export {
6
+ a as __require
7
+ };
@@ -0,0 +1,95 @@
1
+ import { __exports as r } from "../../../../../_virtual/react-is.development.js";
2
+ /** @license React v16.13.1
3
+ * react-is.development.js
4
+ *
5
+ * Copyright (c) Facebook, Inc. and its affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */
10
+ var A;
11
+ function re() {
12
+ return A ? r : (A = 1, process.env.NODE_ENV !== "production" && function() {
13
+ var o = typeof Symbol == "function" && Symbol.for, _ = o ? Symbol.for("react.element") : 60103, T = o ? Symbol.for("react.portal") : 60106, t = o ? Symbol.for("react.fragment") : 60107, n = o ? Symbol.for("react.strict_mode") : 60108, s = o ? Symbol.for("react.profiler") : 60114, c = o ? Symbol.for("react.provider") : 60109, i = o ? Symbol.for("react.context") : 60110, v = o ? Symbol.for("react.async_mode") : 60111, f = o ? Symbol.for("react.concurrent_mode") : 60111, u = o ? Symbol.for("react.forward_ref") : 60112, E = o ? Symbol.for("react.suspense") : 60113, y = o ? Symbol.for("react.suspense_list") : 60120, d = o ? Symbol.for("react.memo") : 60115, l = o ? Symbol.for("react.lazy") : 60116, x = o ? Symbol.for("react.block") : 60121, M = o ? Symbol.for("react.fundamental") : 60117, b = o ? Symbol.for("react.responder") : 60118, p = o ? Symbol.for("react.scope") : 60119;
14
+ function Y(e) {
15
+ return typeof e == "string" || typeof e == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
16
+ e === t || e === f || e === s || e === n || e === E || e === y || typeof e == "object" && e !== null && (e.$$typeof === l || e.$$typeof === d || e.$$typeof === c || e.$$typeof === i || e.$$typeof === u || e.$$typeof === M || e.$$typeof === b || e.$$typeof === p || e.$$typeof === x);
17
+ }
18
+ function a(e) {
19
+ if (typeof e == "object" && e !== null) {
20
+ var C = e.$$typeof;
21
+ switch (C) {
22
+ case _:
23
+ var m = e.type;
24
+ switch (m) {
25
+ case v:
26
+ case f:
27
+ case t:
28
+ case s:
29
+ case n:
30
+ case E:
31
+ return m;
32
+ default:
33
+ var P = m && m.$$typeof;
34
+ switch (P) {
35
+ case i:
36
+ case u:
37
+ case l:
38
+ case d:
39
+ case c:
40
+ return P;
41
+ default:
42
+ return C;
43
+ }
44
+ }
45
+ case T:
46
+ return C;
47
+ }
48
+ }
49
+ }
50
+ var $ = v, O = f, F = i, N = c, I = _, L = u, h = t, w = l, D = d, g = T, z = s, U = n, V = E, R = !1;
51
+ function q(e) {
52
+ return R || (R = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), S(e) || a(e) === v;
53
+ }
54
+ function S(e) {
55
+ return a(e) === f;
56
+ }
57
+ function W(e) {
58
+ return a(e) === i;
59
+ }
60
+ function k(e) {
61
+ return a(e) === c;
62
+ }
63
+ function B(e) {
64
+ return typeof e == "object" && e !== null && e.$$typeof === _;
65
+ }
66
+ function G(e) {
67
+ return a(e) === u;
68
+ }
69
+ function K(e) {
70
+ return a(e) === t;
71
+ }
72
+ function X(e) {
73
+ return a(e) === l;
74
+ }
75
+ function Z(e) {
76
+ return a(e) === d;
77
+ }
78
+ function H(e) {
79
+ return a(e) === T;
80
+ }
81
+ function J(e) {
82
+ return a(e) === s;
83
+ }
84
+ function Q(e) {
85
+ return a(e) === n;
86
+ }
87
+ function j(e) {
88
+ return a(e) === E;
89
+ }
90
+ r.AsyncMode = $, r.ConcurrentMode = O, r.ContextConsumer = F, r.ContextProvider = N, r.Element = I, r.ForwardRef = L, r.Fragment = h, r.Lazy = w, r.Memo = D, r.Portal = g, r.Profiler = z, r.StrictMode = U, r.Suspense = V, r.isAsyncMode = q, r.isConcurrentMode = S, r.isContextConsumer = W, r.isContextProvider = k, r.isElement = B, r.isForwardRef = G, r.isFragment = K, r.isLazy = X, r.isMemo = Z, r.isPortal = H, r.isProfiler = J, r.isStrictMode = Q, r.isSuspense = j, r.isValidElementType = Y, r.typeOf = a;
91
+ }(), r);
92
+ }
93
+ export {
94
+ re as __require
95
+ };
@@ -0,0 +1,78 @@
1
+ import { __exports as r } from "../../../../../_virtual/react-is.production.min.js";
2
+ /** @license React v16.13.1
3
+ * react-is.production.min.js
4
+ *
5
+ * Copyright (c) Facebook, Inc. and its affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */
10
+ var _;
11
+ function g() {
12
+ if (_) return r;
13
+ _ = 1;
14
+ var t = typeof Symbol == "function" && Symbol.for, a = t ? Symbol.for("react.element") : 60103, b = t ? Symbol.for("react.portal") : 60106, n = t ? Symbol.for("react.fragment") : 60107, c = t ? Symbol.for("react.strict_mode") : 60108, f = t ? Symbol.for("react.profiler") : 60114, i = t ? Symbol.for("react.provider") : 60109, s = t ? Symbol.for("react.context") : 60110, d = t ? Symbol.for("react.async_mode") : 60111, u = t ? Symbol.for("react.concurrent_mode") : 60111, y = t ? Symbol.for("react.forward_ref") : 60112, l = t ? Symbol.for("react.suspense") : 60113, x = t ? Symbol.for("react.suspense_list") : 60120, m = t ? Symbol.for("react.memo") : 60115, p = t ? Symbol.for("react.lazy") : 60116, C = t ? Symbol.for("react.block") : 60121, M = t ? Symbol.for("react.fundamental") : 60117, v = t ? Symbol.for("react.responder") : 60118, w = t ? Symbol.for("react.scope") : 60119;
15
+ function o(e) {
16
+ if (typeof e == "object" && e !== null) {
17
+ var S = e.$$typeof;
18
+ switch (S) {
19
+ case a:
20
+ switch (e = e.type, e) {
21
+ case d:
22
+ case u:
23
+ case n:
24
+ case f:
25
+ case c:
26
+ case l:
27
+ return e;
28
+ default:
29
+ switch (e = e && e.$$typeof, e) {
30
+ case s:
31
+ case y:
32
+ case p:
33
+ case m:
34
+ case i:
35
+ return e;
36
+ default:
37
+ return S;
38
+ }
39
+ }
40
+ case b:
41
+ return S;
42
+ }
43
+ }
44
+ }
45
+ function $(e) {
46
+ return o(e) === u;
47
+ }
48
+ return r.AsyncMode = d, r.ConcurrentMode = u, r.ContextConsumer = s, r.ContextProvider = i, r.Element = a, r.ForwardRef = y, r.Fragment = n, r.Lazy = p, r.Memo = m, r.Portal = b, r.Profiler = f, r.StrictMode = c, r.Suspense = l, r.isAsyncMode = function(e) {
49
+ return $(e) || o(e) === d;
50
+ }, r.isConcurrentMode = $, r.isContextConsumer = function(e) {
51
+ return o(e) === s;
52
+ }, r.isContextProvider = function(e) {
53
+ return o(e) === i;
54
+ }, r.isElement = function(e) {
55
+ return typeof e == "object" && e !== null && e.$$typeof === a;
56
+ }, r.isForwardRef = function(e) {
57
+ return o(e) === y;
58
+ }, r.isFragment = function(e) {
59
+ return o(e) === n;
60
+ }, r.isLazy = function(e) {
61
+ return o(e) === p;
62
+ }, r.isMemo = function(e) {
63
+ return o(e) === m;
64
+ }, r.isPortal = function(e) {
65
+ return o(e) === b;
66
+ }, r.isProfiler = function(e) {
67
+ return o(e) === f;
68
+ }, r.isStrictMode = function(e) {
69
+ return o(e) === c;
70
+ }, r.isSuspense = function(e) {
71
+ return o(e) === l;
72
+ }, r.isValidElementType = function(e) {
73
+ return typeof e == "string" || typeof e == "function" || e === n || e === u || e === f || e === c || e === l || e === x || typeof e == "object" && e !== null && (e.$$typeof === p || e.$$typeof === m || e.$$typeof === i || e.$$typeof === s || e.$$typeof === y || e.$$typeof === M || e.$$typeof === v || e.$$typeof === w || e.$$typeof === C);
74
+ }, r.typeOf = o, r;
75
+ }
76
+ export {
77
+ g as __require
78
+ };
@@ -0,0 +1,10 @@
1
+ import { __module as e } from "../../../../_virtual/index8.js";
2
+ import { __require as o } from "./cjs/react-is.production.min.js";
3
+ import { __require as t } from "./cjs/react-is.development.js";
4
+ var r;
5
+ function p() {
6
+ return r ? e.exports : (r = 1, process.env.NODE_ENV === "production" ? e.exports = o() : e.exports = t(), e.exports);
7
+ }
8
+ export {
9
+ p as __require
10
+ };
@@ -0,0 +1,82 @@
1
+ var E, x;
2
+ function I() {
3
+ if (x) return E;
4
+ x = 1;
5
+ function u(e) {
6
+ this._maxSize = e, this.clear();
7
+ }
8
+ u.prototype.clear = function() {
9
+ this._size = 0, this._values = /* @__PURE__ */ Object.create(null);
10
+ }, u.prototype.get = function(e) {
11
+ return this._values[e];
12
+ }, u.prototype.set = function(e, r) {
13
+ return this._size >= this._maxSize && this.clear(), e in this._values || this._size++, this._values[e] = r;
14
+ };
15
+ var y = /[^.^\]^[]+|(?=\[\]|\.\.)/g, v = /^\d+$/, m = /^\d/, A = /[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/g, p = /^\s*(['"]?)(.*?)(\1)\s*$/, a = 512, g = new u(a), d = new u(a), C = new u(a);
16
+ E = {
17
+ Cache: u,
18
+ split: l,
19
+ normalizePath: f,
20
+ setter: function(e) {
21
+ var r = f(e);
22
+ return d.get(e) || d.set(e, function(s, t) {
23
+ for (var n = 0, c = r.length, o = s; n < c - 1; ) {
24
+ var _ = r[n];
25
+ if (_ === "__proto__" || _ === "constructor" || _ === "prototype")
26
+ return s;
27
+ o = o[r[n++]];
28
+ }
29
+ o[r[n]] = t;
30
+ });
31
+ },
32
+ getter: function(e, r) {
33
+ var i = f(e);
34
+ return C.get(e) || C.set(e, function(t) {
35
+ for (var n = 0, c = i.length; n < c; )
36
+ if (t != null || !r) t = t[i[n++]];
37
+ else return;
38
+ return t;
39
+ });
40
+ },
41
+ join: function(e) {
42
+ return e.reduce(function(r, i) {
43
+ return r + (h(i) || v.test(i) ? "[" + i + "]" : (r ? "." : "") + i);
44
+ }, "");
45
+ },
46
+ forEach: function(e, r, i) {
47
+ z(Array.isArray(e) ? e : l(e), r, i);
48
+ }
49
+ };
50
+ function f(e) {
51
+ return g.get(e) || g.set(
52
+ e,
53
+ l(e).map(function(r) {
54
+ return r.replace(p, "$2");
55
+ })
56
+ );
57
+ }
58
+ function l(e) {
59
+ return e.match(y) || [""];
60
+ }
61
+ function z(e, r, i) {
62
+ var s = e.length, t, n, c, o;
63
+ for (n = 0; n < s; n++)
64
+ t = e[n], t && (S(t) && (t = '"' + t + '"'), o = h(t), c = !o && /^\d+$/.test(t), r.call(i, t, o, c, n, e));
65
+ }
66
+ function h(e) {
67
+ return typeof e == "string" && e && ["'", '"'].indexOf(e.charAt(0)) !== -1;
68
+ }
69
+ function G(e) {
70
+ return e.match(m) && !e.match(v);
71
+ }
72
+ function R(e) {
73
+ return A.test(e);
74
+ }
75
+ function S(e) {
76
+ return !h(e) && (G(e) || R(e));
77
+ }
78
+ return E;
79
+ }
80
+ export {
81
+ I as __require
82
+ };