lawgic-dev-kit 0.12.4 → 0.12.8

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 (354) hide show
  1. package/dist/_virtual/client.js +3 -22
  2. package/dist/_virtual/index2.js +3 -2
  3. package/dist/_virtual/index3.js +3 -3
  4. package/dist/_virtual/index4.js +5 -3
  5. package/dist/_virtual/index5.js +2 -5
  6. package/dist/_virtual/index7.js +2 -2
  7. package/dist/_virtual/index8.js +2 -2
  8. package/dist/components/atoms/Avatar/Avatar.js +71 -30
  9. package/dist/components/atoms/UploadContainer/UploadContainer.js +88 -47
  10. package/dist/components/molecules/AlertModal/AlertModal.js +67 -26
  11. package/dist/components/molecules/CalendarSelector/CalendarSelector.js +205 -145
  12. package/dist/components/molecules/DateInput/DateInput.d.ts +2 -2
  13. package/dist/components/molecules/DateInput/DateInput.js +63 -50
  14. package/dist/components/molecules/DialogModal/DialogModal.js +78 -37
  15. package/dist/components/molecules/FloatingMenu/FloatingMenu.js +74 -33
  16. package/dist/components/molecules/Tabs/Tabs.js +82 -41
  17. package/dist/dist/_virtual/_commonjsHelpers.js +8 -0
  18. package/dist/dist/_virtual/index.js +7 -0
  19. package/dist/dist/_virtual/index3.js +5 -0
  20. package/dist/dist/_virtual/index4.js +5 -0
  21. package/dist/dist/_virtual/index5.js +7 -0
  22. package/dist/dist/_virtual/index6.js +4 -0
  23. package/dist/dist/_virtual/index7.js +4 -0
  24. package/dist/dist/_virtual/index8.js +4 -0
  25. package/dist/dist/_virtual/jsx-runtime.js +5 -0
  26. package/dist/dist/_virtual/jsx-runtime2.js +4 -0
  27. package/dist/dist/_virtual/lodash.js +2 -0
  28. package/dist/dist/_virtual/lodash2.js +4 -0
  29. package/dist/dist/_virtual/react-is.development.js +4 -0
  30. package/dist/dist/_virtual/react-is.production.min.js +4 -0
  31. package/dist/dist/_virtual/react-jsx-runtime.development.js +4 -0
  32. package/dist/dist/_virtual/react-jsx-runtime.production.js +4 -0
  33. package/dist/dist/components/atoms/AsyncToast/index.js +33 -0
  34. package/dist/dist/components/atoms/ImageProfileInput/ImageProfileInput.validators.js +5 -0
  35. package/dist/dist/components/atoms/Toast/Toast.js +113 -0
  36. package/dist/dist/constants/countries.js +8 -0
  37. package/dist/dist/contexts/themeContext.js +3 -0
  38. package/dist/dist/node_modules/@floating-ui/react/dist/floating-ui.react.js +4 -0
  39. package/dist/dist/node_modules/@fortawesome/fontawesome-svg-core/index.js +2661 -0
  40. package/dist/dist/node_modules/@fortawesome/pro-light-svg-icons/index.js +33 -0
  41. package/dist/dist/node_modules/@fortawesome/react-fontawesome/index.es.js +266 -0
  42. package/dist/dist/node_modules/framer-motion/dist/es/animation/animate/single-value.js +11 -0
  43. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/AcceleratedAnimation.js +205 -0
  44. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/BaseAnimation.js +83 -0
  45. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/MainThreadAnimation.js +147 -0
  46. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.js +18 -0
  47. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/utils/accelerated-values.js +12 -0
  48. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/utils/can-animate.js +23 -0
  49. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/index.js +18 -0
  50. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.js +8 -0
  51. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.js +6 -0
  52. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/inertia.js +37 -0
  53. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/keyframes.js +30 -0
  54. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/spring/defaults.js +32 -0
  55. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/spring/find.js +52 -0
  56. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/spring/index.js +92 -0
  57. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/utils/velocity.js +10 -0
  58. package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/motion-value.js +47 -0
  59. package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-target.js +46 -0
  60. package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-variant.js +33 -0
  61. package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element.js +22 -0
  62. package/dist/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
  63. package/dist/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/get-appear-id.js +7 -0
  64. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/default-transitions.js +22 -0
  65. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-animatable.js +7 -0
  66. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-animation-controls.js +6 -0
  67. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-keyframes-target.js +4 -0
  68. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-none.js +7 -0
  69. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-transition-defined.js +6 -0
  70. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.js +53 -0
  71. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +41 -0
  72. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/index.js +45 -0
  73. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.js +17 -0
  74. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/utils.js +12 -0
  75. package/dist/dist/node_modules/framer-motion/dist/es/context/LayoutGroupContext.js +5 -0
  76. package/dist/dist/node_modules/framer-motion/dist/es/context/LazyContext.js +5 -0
  77. package/dist/dist/node_modules/framer-motion/dist/es/context/MotionConfigContext.js +9 -0
  78. package/dist/dist/node_modules/framer-motion/dist/es/context/MotionContext/create.js +13 -0
  79. package/dist/dist/node_modules/framer-motion/dist/es/context/MotionContext/index.js +5 -0
  80. package/dist/dist/node_modules/framer-motion/dist/es/context/MotionContext/utils.js +15 -0
  81. package/dist/dist/node_modules/framer-motion/dist/es/context/PresenceContext.js +5 -0
  82. package/dist/dist/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +5 -0
  83. package/dist/dist/node_modules/framer-motion/dist/es/easing/anticipate.js +5 -0
  84. package/dist/dist/node_modules/framer-motion/dist/es/easing/back.js +9 -0
  85. package/dist/dist/node_modules/framer-motion/dist/es/easing/circ.js +8 -0
  86. package/dist/dist/node_modules/framer-motion/dist/es/easing/cubic-bezier.js +19 -0
  87. package/dist/dist/node_modules/framer-motion/dist/es/easing/ease.js +7 -0
  88. package/dist/dist/node_modules/framer-motion/dist/es/easing/modifiers/mirror.js +4 -0
  89. package/dist/dist/node_modules/framer-motion/dist/es/easing/modifiers/reverse.js +4 -0
  90. package/dist/dist/node_modules/framer-motion/dist/es/easing/utils/is-easing-array.js +4 -0
  91. package/dist/dist/node_modules/framer-motion/dist/es/easing/utils/map.js +32 -0
  92. package/dist/dist/node_modules/framer-motion/dist/es/events/add-dom-event.js +6 -0
  93. package/dist/dist/node_modules/framer-motion/dist/es/events/add-pointer-event.js +8 -0
  94. package/dist/dist/node_modules/framer-motion/dist/es/events/event-info.js +15 -0
  95. package/dist/dist/node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +256 -0
  96. package/dist/dist/node_modules/framer-motion/dist/es/gestures/drag/index.js +19 -0
  97. package/dist/dist/node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.js +68 -0
  98. package/dist/dist/node_modules/framer-motion/dist/es/gestures/focus.js +28 -0
  99. package/dist/dist/node_modules/framer-motion/dist/es/gestures/hover.js +22 -0
  100. package/dist/dist/node_modules/framer-motion/dist/es/gestures/pan/PanSession.js +85 -0
  101. package/dist/dist/node_modules/framer-motion/dist/es/gestures/pan/index.js +44 -0
  102. package/dist/dist/node_modules/framer-motion/dist/es/gestures/press.js +24 -0
  103. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/Feature.js +10 -0
  104. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/animation/exit.js +27 -0
  105. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/animation/index.js +34 -0
  106. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/animations.js +13 -0
  107. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/definitions.js +27 -0
  108. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/drag.js +17 -0
  109. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/gestures.js +21 -0
  110. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +75 -0
  111. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/layout.js +11 -0
  112. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/load-features.js +11 -0
  113. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/viewport/index.js +44 -0
  114. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/viewport/observers.js +21 -0
  115. package/dist/dist/node_modules/framer-motion/dist/es/motion/index.js +59 -0
  116. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +8 -0
  117. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/symbol.js +4 -0
  118. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -0
  119. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.js +65 -0
  120. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.js +53 -0
  121. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/valid-prop.js +38 -0
  122. package/dist/dist/node_modules/framer-motion/dist/es/projection/animation/mix-values.js +31 -0
  123. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/conversion.js +25 -0
  124. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/copy.js +14 -0
  125. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-apply.js +52 -0
  126. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-calc.js +36 -0
  127. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-remove.js +25 -0
  128. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/models.js +18 -0
  129. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/utils.js +34 -0
  130. package/dist/dist/node_modules/framer-motion/dist/es/projection/node/DocumentProjectionNode.js +13 -0
  131. package/dist/dist/node_modules/framer-motion/dist/es/projection/node/HTMLProjectionNode.js +25 -0
  132. package/dist/dist/node_modules/framer-motion/dist/es/projection/node/create-projection-node.js +608 -0
  133. package/dist/dist/node_modules/framer-motion/dist/es/projection/node/state.js +15 -0
  134. package/dist/dist/node_modules/framer-motion/dist/es/projection/shared/stack.js +59 -0
  135. package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/scale-border-radius.js +21 -0
  136. package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/scale-box-shadow.js +16 -0
  137. package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/scale-correction.js +10 -0
  138. package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/transform.js +13 -0
  139. package/dist/dist/node_modules/framer-motion/dist/es/projection/utils/each-axis.js +6 -0
  140. package/dist/dist/node_modules/framer-motion/dist/es/projection/utils/has-transform.js +20 -0
  141. package/dist/dist/node_modules/framer-motion/dist/es/projection/utils/measure.js +13 -0
  142. package/dist/dist/node_modules/framer-motion/dist/es/render/VisualElement.js +229 -0
  143. package/dist/dist/node_modules/framer-motion/dist/es/render/components/create-factory.js +20 -0
  144. package/dist/dist/node_modules/framer-motion/dist/es/render/components/create-proxy.js +18 -0
  145. package/dist/dist/node_modules/framer-motion/dist/es/render/components/motion/create.js +15 -0
  146. package/dist/dist/node_modules/framer-motion/dist/es/render/components/motion/proxy.js +6 -0
  147. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/DOMKeyframesResolver.js +66 -0
  148. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/DOMVisualElement.js +27 -0
  149. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/create-visual-element.js +10 -0
  150. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/use-render.js +18 -0
  151. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
  152. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/css-variables-conversion.js +31 -0
  153. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/filter-props.js +20 -0
  154. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-css-variable.js +5 -0
  155. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-component.js +24 -0
  156. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-element.js +6 -0
  157. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/unit-conversion.js +31 -0
  158. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/animatable-none.js +10 -0
  159. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/defaults.js +24 -0
  160. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/dimensions.js +9 -0
  161. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/find.js +8 -0
  162. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/get-as-type.js +4 -0
  163. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number-browser.js +41 -0
  164. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number.js +18 -0
  165. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/test.js +4 -0
  166. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/transform.js +31 -0
  167. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-auto.js +7 -0
  168. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-int.js +8 -0
  169. package/dist/dist/node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.js +37 -0
  170. package/dist/dist/node_modules/framer-motion/dist/es/render/html/config-motion.js +12 -0
  171. package/dist/dist/node_modules/framer-motion/dist/es/render/html/use-props.js +27 -0
  172. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/build-styles.js +29 -0
  173. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/build-transform.js +31 -0
  174. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/create-render-state.js +9 -0
  175. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-position.js +13 -0
  176. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
  177. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/make-none-animatable.js +16 -0
  178. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/parse-transform.js +64 -0
  179. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/render.js +8 -0
  180. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +12 -0
  181. package/dist/dist/node_modules/framer-motion/dist/es/render/store.js +4 -0
  182. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.js +48 -0
  183. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/config-motion.js +44 -0
  184. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/lowercase-elements.js +30 -0
  185. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/use-props.js +22 -0
  186. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.js +26 -0
  187. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/camel-case-attrs.js +28 -0
  188. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/create-render-state.js +8 -0
  189. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/is-svg-tag.js +4 -0
  190. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/measure.js +15 -0
  191. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/path.js +18 -0
  192. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/render.js +11 -0
  193. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
  194. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/transform-origin.js +11 -0
  195. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/KeyframesResolver.js +77 -0
  196. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/animation-state.js +128 -0
  197. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/compare-by-depth.js +4 -0
  198. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/flat-tree.js +20 -0
  199. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/get-variant-context.js +20 -0
  200. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/is-controlling-variants.js +13 -0
  201. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/is-variant-label.js +6 -0
  202. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/motion-values.js +27 -0
  203. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/resolve-dynamic-variants.js +8 -0
  204. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/resolve-variants.js +20 -0
  205. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/setters.js +19 -0
  206. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/variant-props.js +13 -0
  207. package/dist/dist/node_modules/framer-motion/dist/es/utils/clamp.js +4 -0
  208. package/dist/dist/node_modules/framer-motion/dist/es/utils/delay.js +13 -0
  209. package/dist/dist/node_modules/framer-motion/dist/es/utils/distance.js +9 -0
  210. package/dist/dist/node_modules/framer-motion/dist/es/utils/get-context-window.js +4 -0
  211. package/dist/dist/node_modules/framer-motion/dist/es/utils/hsla-to-rgba.js +22 -0
  212. package/dist/dist/node_modules/framer-motion/dist/es/utils/interpolate.js +41 -0
  213. package/dist/dist/node_modules/framer-motion/dist/es/utils/is-browser.js +4 -0
  214. package/dist/dist/node_modules/framer-motion/dist/es/utils/is-numerical-string.js +4 -0
  215. package/dist/dist/node_modules/framer-motion/dist/es/utils/is-ref-object.js +6 -0
  216. package/dist/dist/node_modules/framer-motion/dist/es/utils/is-zero-value-string.js +4 -0
  217. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/color.js +29 -0
  218. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/complex.js +52 -0
  219. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/immediate.js +6 -0
  220. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/index.js +8 -0
  221. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/number.js +4 -0
  222. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/visibility.js +8 -0
  223. package/dist/dist/node_modules/framer-motion/dist/es/utils/offsets/default.js +8 -0
  224. package/dist/dist/node_modules/framer-motion/dist/es/utils/offsets/fill.js +13 -0
  225. package/dist/dist/node_modules/framer-motion/dist/es/utils/offsets/time.js +6 -0
  226. package/dist/dist/node_modules/framer-motion/dist/es/utils/pipe.js +4 -0
  227. package/dist/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/index.js +13 -0
  228. package/dist/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/state.js +5 -0
  229. package/dist/dist/node_modules/framer-motion/dist/es/utils/resolve-value.js +6 -0
  230. package/dist/dist/node_modules/framer-motion/dist/es/utils/shallow-compare.js +14 -0
  231. package/dist/dist/node_modules/framer-motion/dist/es/utils/use-constant.js +8 -0
  232. package/dist/dist/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.js +6 -0
  233. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/hex.js +19 -0
  234. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/hsla.js +12 -0
  235. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/index.js +11 -0
  236. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/rgba.js +16 -0
  237. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/utils.js +18 -0
  238. package/dist/dist/node_modules/framer-motion/dist/es/value/types/complex/filter.js +24 -0
  239. package/dist/dist/node_modules/framer-motion/dist/es/value/types/complex/index.js +49 -0
  240. package/dist/dist/node_modules/framer-motion/dist/es/value/types/numbers/index.js +17 -0
  241. package/dist/dist/node_modules/framer-motion/dist/es/value/types/numbers/units.js +17 -0
  242. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
  243. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
  244. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
  245. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
  246. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
  247. package/dist/dist/node_modules/framer-motion/dist/es/value/use-will-change/add-will-change.js +9 -0
  248. package/dist/dist/node_modules/framer-motion/dist/es/value/use-will-change/is.js +7 -0
  249. package/dist/dist/node_modules/framer-motion/dist/es/value/utils/is-motion-value.js +4 -0
  250. package/dist/dist/node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.js +9 -0
  251. package/dist/dist/node_modules/lodash/lodash.js +3677 -0
  252. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
  253. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LayoutGroupContext.js +2 -0
  254. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LazyContext.js +2 -0
  255. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionConfigContext.js +6 -0
  256. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +2 -0
  257. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/create-projection-node.js +12 -0
  258. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
  259. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/filter-props.js +9 -0
  260. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/unit-conversion.js +5 -0
  261. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/type-int.js +4 -0
  262. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
  263. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/clamp.js +4 -0
  264. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hex.js +19 -0
  265. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hsla.js +12 -0
  266. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/index.js +11 -0
  267. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/rgba.js +16 -0
  268. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/utils.js +18 -0
  269. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/filter.js +4 -0
  270. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/index.js +49 -0
  271. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/index.js +16 -0
  272. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/units.js +11 -0
  273. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
  274. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
  275. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
  276. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
  277. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
  278. package/dist/dist/node_modules/motion/dist/es/motion-utils/dist/es/errors.js +1 -0
  279. package/dist/dist/node_modules/motion/dist/es/motion-utils/dist/es/noop.js +4 -0
  280. package/dist/dist/node_modules/motion-dom/dist/es/animation/controls/BaseGroup.js +74 -0
  281. package/dist/dist/node_modules/motion-dom/dist/es/animation/controls/Group.js +9 -0
  282. package/dist/dist/node_modules/motion-dom/dist/es/animation/generators/utils/calc-duration.js +13 -0
  283. package/dist/dist/node_modules/motion-dom/dist/es/animation/generators/utils/is-generator.js +6 -0
  284. package/dist/dist/node_modules/motion-dom/dist/es/animation/utils/get-value-transition.js +6 -0
  285. package/dist/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/attach-timeline.js +6 -0
  286. package/dist/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/easing.js +27 -0
  287. package/dist/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/linear.js +12 -0
  288. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/batcher.js +27 -0
  289. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/frame.js +10 -0
  290. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/microtask.js +5 -0
  291. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/order.js +17 -0
  292. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/render-step.js +41 -0
  293. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/sync-time.js +16 -0
  294. package/dist/dist/node_modules/motion-dom/dist/es/gestures/drag/state/is-active.js +11 -0
  295. package/dist/dist/node_modules/motion-dom/dist/es/gestures/drag/state/set-active.js +11 -0
  296. package/dist/dist/node_modules/motion-dom/dist/es/gestures/hover.js +24 -0
  297. package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/index.js +32 -0
  298. package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +13 -0
  299. package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/utils/keyboard.js +27 -0
  300. package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/utils/state.js +4 -0
  301. package/dist/dist/node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.js +4 -0
  302. package/dist/dist/node_modules/motion-dom/dist/es/gestures/utils/is-primary-pointer.js +4 -0
  303. package/dist/dist/node_modules/motion-dom/dist/es/gestures/utils/setup.js +12 -0
  304. package/dist/dist/node_modules/motion-dom/dist/es/utils/is-bezier-definition.js +4 -0
  305. package/dist/dist/node_modules/motion-dom/dist/es/utils/resolve-elements.js +14 -0
  306. package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/flags.js +6 -0
  307. package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/linear-easing.js +12 -0
  308. package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/memo.js +13 -0
  309. package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/scroll-timeline.js +6 -0
  310. package/dist/dist/node_modules/motion-dom/dist/es/value/index.js +202 -0
  311. package/dist/dist/node_modules/motion-utils/dist/es/array.js +11 -0
  312. package/dist/dist/node_modules/motion-utils/dist/es/errors.js +12 -0
  313. package/dist/dist/node_modules/motion-utils/dist/es/global-config.js +6 -0
  314. package/dist/dist/node_modules/motion-utils/dist/es/memo.js +8 -0
  315. package/dist/dist/node_modules/motion-utils/dist/es/noop.js +4 -0
  316. package/dist/dist/node_modules/motion-utils/dist/es/progress.js +7 -0
  317. package/dist/dist/node_modules/motion-utils/dist/es/subscription-manager.js +29 -0
  318. package/dist/dist/node_modules/motion-utils/dist/es/time-conversion.js +5 -0
  319. package/dist/dist/node_modules/motion-utils/dist/es/velocity-per-second.js +6 -0
  320. package/dist/dist/node_modules/motion-utils/dist/es/warn-once.js +7 -0
  321. package/dist/dist/node_modules/object-assign/index.js +54 -0
  322. package/dist/dist/node_modules/prop-types/checkPropTypes.js +54 -0
  323. package/dist/dist/node_modules/prop-types/factoryWithThrowingShims.js +52 -0
  324. package/dist/dist/node_modules/prop-types/factoryWithTypeCheckers.js +329 -0
  325. package/dist/dist/node_modules/prop-types/index.js +17 -0
  326. package/dist/dist/node_modules/prop-types/lib/ReactPropTypesSecret.js +10 -0
  327. package/dist/dist/node_modules/prop-types/lib/has.js +7 -0
  328. package/dist/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +95 -0
  329. package/dist/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +78 -0
  330. package/dist/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
  331. package/dist/dist/node_modules/property-expr/index.js +82 -0
  332. package/dist/dist/node_modules/react/cjs/react-jsx-runtime.development.js +247 -0
  333. package/dist/dist/node_modules/react/cjs/react-jsx-runtime.production.js +35 -0
  334. package/dist/dist/node_modules/react/jsx-runtime.js +10 -0
  335. package/dist/dist/node_modules/tiny-case/index.js +22 -0
  336. package/dist/dist/node_modules/toposort/index.js +66 -0
  337. package/dist/dist/node_modules/yup/index.esm.js +1359 -0
  338. package/dist/dist/themes/default.js +9 -0
  339. package/dist/lawgic-dev-kit.css +1 -1
  340. package/dist/lawgic-dev-kit.umd.js +884 -243
  341. package/dist/node_modules/prop-types/node_modules/react-is/index.js +1 -1
  342. package/dist/node_modules/scheduler/index.js +1 -1
  343. package/dist/node_modules/toposort/index.js +1 -1
  344. package/dist/node_modules/yup/index.esm.js +3 -3
  345. package/dist/src/utils/toast.d.ts +15 -0
  346. package/dist/utils/modal.js +98 -57
  347. package/dist/utils/toast.d.ts +1 -1
  348. package/dist/utils/toast.js +112 -98
  349. package/package.json +1 -1
  350. package/dist/src/components/atoms/SectionButton/desktop/SectionButton.d.ts +0 -3
  351. package/dist/src/components/atoms/SectionButton/desktop/SectionButton.styles.d.ts +0 -2
  352. package/dist/src/components/atoms/SectionButton/desktop/SectionButton.types.d.ts +0 -37
  353. package/dist/src/components/atoms/SectionButton/mobile/MobileSectionButton.styles.d.ts +0 -3
  354. package/dist/src/components/atoms/SectionButton/mobile/SectionButton.types.d.ts +0 -37
@@ -0,0 +1,329 @@
1
+ import { __require as Z } from "./node_modules/react-is/index.js";
2
+ import { __require as F } 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 k, A;
7
+ function fe() {
8
+ if (A) return k;
9
+ A = 1;
10
+ var q = Z(), R = F(), b = /* @__PURE__ */ ee(), _ = /* @__PURE__ */ re(), N = /* @__PURE__ */ ne(), g = function() {
11
+ };
12
+ process.env.NODE_ENV !== "production" && (g = function(O) {
13
+ var E = "Warning: " + O;
14
+ typeof console < "u" && console.error(E);
15
+ try {
16
+ throw new Error(E);
17
+ } catch {
18
+ }
19
+ });
20
+ function x() {
21
+ return null;
22
+ }
23
+ return k = function(O, E) {
24
+ var P = typeof Symbol == "function" && Symbol.iterator, V = "@@iterator";
25
+ function D(e) {
26
+ var r = e && (P && e[P] || e[V]);
27
+ if (typeof r == "function")
28
+ return r;
29
+ }
30
+ var I = "<<anonymous>>", h = {
31
+ array: v("array"),
32
+ bigint: v("bigint"),
33
+ bool: v("boolean"),
34
+ func: v("function"),
35
+ number: v("number"),
36
+ object: v("object"),
37
+ string: v("string"),
38
+ symbol: v("symbol"),
39
+ any: J(),
40
+ arrayOf: W,
41
+ element: z(),
42
+ elementType: Y(),
43
+ instanceOf: B,
44
+ node: H(),
45
+ objectOf: $,
46
+ oneOf: U,
47
+ oneOfType: G,
48
+ shape: K,
49
+ exact: L
50
+ };
51
+ function C(e, r) {
52
+ return e === r ? e !== 0 || 1 / e === 1 / r : e !== e && r !== r;
53
+ }
54
+ function l(e, r) {
55
+ this.message = e, this.data = r && typeof r == "object" ? r : {}, this.stack = "";
56
+ }
57
+ l.prototype = Error.prototype;
58
+ function d(e) {
59
+ if (process.env.NODE_ENV !== "production")
60
+ var r = {}, i = 0;
61
+ function o(u, t, a, f, c, p, s) {
62
+ if (f = f || I, p = p || a, s !== b) {
63
+ if (E) {
64
+ var y = 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 y.name = "Invariant Violation", y;
68
+ } else if (process.env.NODE_ENV !== "production" && typeof console < "u") {
69
+ var j = f + ":" + a;
70
+ !r[j] && // Avoid spamming the console because they are often not actionable except for lib authors
71
+ i < 3 && (g(
72
+ "You are manually calling a React.PropTypes validation function for the `" + p + "` prop on `" + f + "`. 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[j] = !0, i++);
74
+ }
75
+ }
76
+ return t[a] == null ? u ? t[a] === null ? new l("The " + c + " `" + p + "` is marked as required " + ("in `" + f + "`, but its value is `null`.")) : new l("The " + c + " `" + p + "` is marked as required in " + ("`" + f + "`, but its value is `undefined`.")) : null : e(t, a, f, c, p);
77
+ }
78
+ var n = o.bind(null, !1);
79
+ return n.isRequired = o.bind(null, !0), n;
80
+ }
81
+ function v(e) {
82
+ function r(i, o, n, u, t, a) {
83
+ var f = i[o], c = m(f);
84
+ if (c !== e) {
85
+ var p = w(f);
86
+ return new l(
87
+ "Invalid " + u + " `" + t + "` of type " + ("`" + p + "` supplied to `" + n + "`, expected ") + ("`" + e + "`."),
88
+ { expectedType: e }
89
+ );
90
+ }
91
+ return null;
92
+ }
93
+ return d(r);
94
+ }
95
+ function J() {
96
+ return d(x);
97
+ }
98
+ function W(e) {
99
+ function r(i, o, n, u, t) {
100
+ if (typeof e != "function")
101
+ return new l("Property `" + t + "` of component `" + n + "` has invalid PropType notation inside arrayOf.");
102
+ var a = i[o];
103
+ if (!Array.isArray(a)) {
104
+ var f = m(a);
105
+ return new l("Invalid " + u + " `" + t + "` of type " + ("`" + f + "` supplied to `" + n + "`, expected an array."));
106
+ }
107
+ for (var c = 0; c < a.length; c++) {
108
+ var p = e(a, c, n, u, t + "[" + c + "]", b);
109
+ if (p instanceof Error)
110
+ return p;
111
+ }
112
+ return null;
113
+ }
114
+ return d(r);
115
+ }
116
+ function z() {
117
+ function e(r, i, o, n, u) {
118
+ var t = r[i];
119
+ if (!O(t)) {
120
+ var a = m(t);
121
+ return new l("Invalid " + n + " `" + u + "` of type " + ("`" + a + "` supplied to `" + o + "`, expected a single ReactElement."));
122
+ }
123
+ return null;
124
+ }
125
+ return d(e);
126
+ }
127
+ function Y() {
128
+ function e(r, i, o, n, u) {
129
+ var t = r[i];
130
+ if (!q.isValidElementType(t)) {
131
+ var a = m(t);
132
+ return new l("Invalid " + n + " `" + u + "` of type " + ("`" + a + "` supplied to `" + o + "`, expected a single ReactElement type."));
133
+ }
134
+ return null;
135
+ }
136
+ return d(e);
137
+ }
138
+ function B(e) {
139
+ function r(i, o, n, u, t) {
140
+ if (!(i[o] instanceof e)) {
141
+ var a = e.name || I, f = X(i[o]);
142
+ return new l("Invalid " + u + " `" + t + "` of type " + ("`" + f + "` supplied to `" + n + "`, expected ") + ("instance of `" + a + "`."));
143
+ }
144
+ return null;
145
+ }
146
+ return d(r);
147
+ }
148
+ function U(e) {
149
+ if (!Array.isArray(e))
150
+ return process.env.NODE_ENV !== "production" && (arguments.length > 1 ? g(
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
+ ) : g("Invalid argument supplied to oneOf, expected an array.")), x;
153
+ function r(i, o, n, u, t) {
154
+ for (var a = i[o], f = 0; f < e.length; f++)
155
+ if (C(a, e[f]))
156
+ return null;
157
+ var c = JSON.stringify(e, function(p, s) {
158
+ var y = w(s);
159
+ return y === "symbol" ? String(s) : s;
160
+ });
161
+ return new l("Invalid " + u + " `" + t + "` of value `" + String(a) + "` " + ("supplied to `" + n + "`, expected one of " + c + "."));
162
+ }
163
+ return d(r);
164
+ }
165
+ function $(e) {
166
+ function r(i, o, n, u, t) {
167
+ if (typeof e != "function")
168
+ return new l("Property `" + t + "` of component `" + n + "` has invalid PropType notation inside objectOf.");
169
+ var a = i[o], f = m(a);
170
+ if (f !== "object")
171
+ return new l("Invalid " + u + " `" + t + "` of type " + ("`" + f + "` supplied to `" + n + "`, expected an object."));
172
+ for (var c in a)
173
+ if (_(a, c)) {
174
+ var p = e(a, c, n, u, t + "." + c, b);
175
+ if (p instanceof Error)
176
+ return p;
177
+ }
178
+ return null;
179
+ }
180
+ return d(r);
181
+ }
182
+ function G(e) {
183
+ if (!Array.isArray(e))
184
+ return process.env.NODE_ENV !== "production" && g("Invalid argument supplied to oneOfType, expected an instance of array."), x;
185
+ for (var r = 0; r < e.length; r++) {
186
+ var i = e[r];
187
+ if (typeof i != "function")
188
+ return g(
189
+ "Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + Q(i) + " at index " + r + "."
190
+ ), x;
191
+ }
192
+ function o(n, u, t, a, f) {
193
+ for (var c = [], p = 0; p < e.length; p++) {
194
+ var s = e[p], y = s(n, u, t, a, f, b);
195
+ if (y == null)
196
+ return null;
197
+ y.data && _(y.data, "expectedType") && c.push(y.data.expectedType);
198
+ }
199
+ var j = c.length > 0 ? ", expected one of type [" + c.join(", ") + "]" : "";
200
+ return new l("Invalid " + a + " `" + f + "` supplied to " + ("`" + t + "`" + j + "."));
201
+ }
202
+ return d(o);
203
+ }
204
+ function H() {
205
+ function e(r, i, o, n, u) {
206
+ return T(r[i]) ? null : new l("Invalid " + n + " `" + u + "` supplied to " + ("`" + o + "`, expected a ReactNode."));
207
+ }
208
+ return d(e);
209
+ }
210
+ function S(e, r, i, o, n) {
211
+ return new l(
212
+ (e || "React class") + ": " + r + " type `" + i + "." + o + "` 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(i, o, n, u, t) {
217
+ var a = i[o], f = m(a);
218
+ if (f !== "object")
219
+ return new l("Invalid " + u + " `" + t + "` of type `" + f + "` " + ("supplied to `" + n + "`, expected `object`."));
220
+ for (var c in e) {
221
+ var p = e[c];
222
+ if (typeof p != "function")
223
+ return S(n, u, t, c, w(p));
224
+ var s = p(a, c, n, u, t + "." + c, b);
225
+ if (s)
226
+ return s;
227
+ }
228
+ return null;
229
+ }
230
+ return d(r);
231
+ }
232
+ function L(e) {
233
+ function r(i, o, n, u, t) {
234
+ var a = i[o], f = m(a);
235
+ if (f !== "object")
236
+ return new l("Invalid " + u + " `" + t + "` of type `" + f + "` " + ("supplied to `" + n + "`, expected `object`."));
237
+ var c = R({}, i[o], e);
238
+ for (var p in c) {
239
+ var s = e[p];
240
+ if (_(e, p) && typeof s != "function")
241
+ return S(n, u, t, p, w(s));
242
+ if (!s)
243
+ return new l(
244
+ "Invalid " + u + " `" + t + "` key `" + p + "` supplied to `" + n + "`.\nBad object: " + JSON.stringify(i[o], null, " ") + `
245
+ Valid keys: ` + JSON.stringify(Object.keys(e), null, " ")
246
+ );
247
+ var y = s(a, p, n, u, t + "." + p, b);
248
+ if (y)
249
+ return y;
250
+ }
251
+ return null;
252
+ }
253
+ return d(r);
254
+ }
255
+ function T(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(T);
266
+ if (e === null || O(e))
267
+ return !0;
268
+ var r = D(e);
269
+ if (r) {
270
+ var i = r.call(e), o;
271
+ if (r !== e.entries) {
272
+ for (; !(o = i.next()).done; )
273
+ if (!T(o.value))
274
+ return !1;
275
+ } else
276
+ for (; !(o = i.next()).done; ) {
277
+ var n = o.value;
278
+ if (n && !T(n[1]))
279
+ return !1;
280
+ }
281
+ } else
282
+ return !1;
283
+ return !0;
284
+ default:
285
+ return !1;
286
+ }
287
+ }
288
+ function M(e, r) {
289
+ return e === "symbol" ? !0 : r ? r["@@toStringTag"] === "Symbol" || typeof Symbol == "function" && r instanceof Symbol : !1;
290
+ }
291
+ function m(e) {
292
+ var r = typeof e;
293
+ return Array.isArray(e) ? "array" : e instanceof RegExp ? "object" : M(r, e) ? "symbol" : r;
294
+ }
295
+ function w(e) {
296
+ if (typeof e > "u" || e === null)
297
+ return "" + e;
298
+ var r = m(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 Q(e) {
308
+ var r = w(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 X(e) {
322
+ return !e.constructor || !e.constructor.name ? I : e.constructor.name;
323
+ }
324
+ return h.checkPropTypes = N, h.resetWarningCache = N.resetWarningCache, h.PropTypes = h, h;
325
+ }, k;
326
+ }
327
+ export {
328
+ fe as __require
329
+ };
@@ -0,0 +1,17 @@
1
+ import { __module as r } from "../../_virtual/index6.js";
2
+ import { __require as i } from "./node_modules/react-is/index.js";
3
+ import { __require as p } from "./factoryWithTypeCheckers.js";
4
+ import { __require as s } from "./factoryWithThrowingShims.js";
5
+ var e;
6
+ function f() {
7
+ if (e) return r.exports;
8
+ if (e = 1, process.env.NODE_ENV !== "production") {
9
+ var o = i(), t = !0;
10
+ r.exports = /* @__PURE__ */ p()(o.isElement, t);
11
+ } else
12
+ r.exports = /* @__PURE__ */ s()();
13
+ return r.exports;
14
+ }
15
+ export {
16
+ f as __require
17
+ };
@@ -0,0 +1,10 @@
1
+ var _, r;
2
+ function t() {
3
+ if (r) return _;
4
+ r = 1;
5
+ var e = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";
6
+ return _ = e, _;
7
+ }
8
+ export {
9
+ t as __require
10
+ };
@@ -0,0 +1,7 @@
1
+ var r, e;
2
+ function t() {
3
+ return e || (e = 1, r = Function.call.bind(Object.prototype.hasOwnProperty)), r;
4
+ }
5
+ export {
6
+ t 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 w;
11
+ function re() {
12
+ return w ? r : (w = 1, process.env.NODE_ENV !== "production" && function() {
13
+ var o = typeof Symbol == "function" && Symbol.for, d = o ? Symbol.for("react.element") : 60103, b = o ? Symbol.for("react.portal") : 60106, n = o ? Symbol.for("react.fragment") : 60107, c = o ? Symbol.for("react.strict_mode") : 60108, a = o ? Symbol.for("react.profiler") : 60114, f = o ? Symbol.for("react.provider") : 60109, s = o ? Symbol.for("react.context") : 60110, S = o ? Symbol.for("react.async_mode") : 60111, u = o ? Symbol.for("react.concurrent_mode") : 60111, i = o ? Symbol.for("react.forward_ref") : 60112, y = o ? Symbol.for("react.suspense") : 60113, x = o ? Symbol.for("react.suspense_list") : 60120, l = o ? Symbol.for("react.memo") : 60115, m = o ? Symbol.for("react.lazy") : 60116, h = o ? Symbol.for("react.block") : 60121, C = o ? Symbol.for("react.fundamental") : 60117, E = o ? Symbol.for("react.responder") : 60118, P = o ? Symbol.for("react.scope") : 60119;
14
+ function R(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 === n || e === u || e === a || e === c || e === y || e === x || typeof e == "object" && e !== null && (e.$$typeof === m || e.$$typeof === l || e.$$typeof === f || e.$$typeof === s || e.$$typeof === i || e.$$typeof === C || e.$$typeof === E || e.$$typeof === P || e.$$typeof === h);
17
+ }
18
+ function t(e) {
19
+ if (typeof e == "object" && e !== null) {
20
+ var $ = e.$$typeof;
21
+ switch ($) {
22
+ case d:
23
+ var p = e.type;
24
+ switch (p) {
25
+ case S:
26
+ case u:
27
+ case n:
28
+ case a:
29
+ case c:
30
+ case y:
31
+ return p;
32
+ default:
33
+ var _ = p && p.$$typeof;
34
+ switch (_) {
35
+ case s:
36
+ case i:
37
+ case m:
38
+ case l:
39
+ case f:
40
+ return _;
41
+ default:
42
+ return $;
43
+ }
44
+ }
45
+ case b:
46
+ return $;
47
+ }
48
+ }
49
+ }
50
+ var g = S, A = u, F = s, I = f, j = d, z = i, L = n, N = m, O = l, T = b, V = a, k = c, q = y, v = !1;
51
+ function D(e) {
52
+ return v || (v = !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.")), M(e) || t(e) === S;
53
+ }
54
+ function M(e) {
55
+ return t(e) === u;
56
+ }
57
+ function U(e) {
58
+ return t(e) === s;
59
+ }
60
+ function B(e) {
61
+ return t(e) === f;
62
+ }
63
+ function G(e) {
64
+ return typeof e == "object" && e !== null && e.$$typeof === d;
65
+ }
66
+ function H(e) {
67
+ return t(e) === i;
68
+ }
69
+ function J(e) {
70
+ return t(e) === n;
71
+ }
72
+ function K(e) {
73
+ return t(e) === m;
74
+ }
75
+ function Q(e) {
76
+ return t(e) === l;
77
+ }
78
+ function W(e) {
79
+ return t(e) === b;
80
+ }
81
+ function X(e) {
82
+ return t(e) === a;
83
+ }
84
+ function Y(e) {
85
+ return t(e) === c;
86
+ }
87
+ function Z(e) {
88
+ return t(e) === y;
89
+ }
90
+ r.AsyncMode = g, r.ConcurrentMode = A, r.ContextConsumer = F, r.ContextProvider = I, r.Element = j, r.ForwardRef = z, r.Fragment = L, r.Lazy = N, r.Memo = O, r.Portal = T, r.Profiler = V, r.StrictMode = k, r.Suspense = q, r.isAsyncMode = D, r.isConcurrentMode = M, r.isContextConsumer = U, r.isContextProvider = B, r.isElement = G, r.isForwardRef = H, r.isFragment = J, r.isLazy = K, r.isMemo = Q, r.isPortal = W, r.isProfiler = X, r.isStrictMode = Y, r.isSuspense = Z, r.isValidElementType = R, r.typeOf = t;
91
+ }(), r);
92
+ }
93
+ export {
94
+ re as __require
95
+ };
@@ -0,0 +1,78 @@
1
+ import { __exports as o } 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 o;
13
+ _ = 1;
14
+ var t = typeof Symbol == "function" && Symbol.for, p = t ? Symbol.for("react.element") : 60103, b = t ? Symbol.for("react.portal") : 60106, n = t ? Symbol.for("react.fragment") : 60107, f = t ? Symbol.for("react.strict_mode") : 60108, c = t ? Symbol.for("react.profiler") : 60114, a = t ? Symbol.for("react.provider") : 60109, u = t ? Symbol.for("react.context") : 60110, $ = t ? Symbol.for("react.async_mode") : 60111, s = t ? Symbol.for("react.concurrent_mode") : 60111, i = t ? Symbol.for("react.forward_ref") : 60112, y = t ? Symbol.for("react.suspense") : 60113, C = t ? Symbol.for("react.suspense_list") : 60120, l = t ? Symbol.for("react.memo") : 60115, m = t ? Symbol.for("react.lazy") : 60116, M = t ? Symbol.for("react.block") : 60121, x = t ? Symbol.for("react.fundamental") : 60117, v = t ? Symbol.for("react.responder") : 60118, w = t ? Symbol.for("react.scope") : 60119;
15
+ function e(r) {
16
+ if (typeof r == "object" && r !== null) {
17
+ var S = r.$$typeof;
18
+ switch (S) {
19
+ case p:
20
+ switch (r = r.type, r) {
21
+ case $:
22
+ case s:
23
+ case n:
24
+ case c:
25
+ case f:
26
+ case y:
27
+ return r;
28
+ default:
29
+ switch (r = r && r.$$typeof, r) {
30
+ case u:
31
+ case i:
32
+ case m:
33
+ case l:
34
+ case a:
35
+ return r;
36
+ default:
37
+ return S;
38
+ }
39
+ }
40
+ case b:
41
+ return S;
42
+ }
43
+ }
44
+ }
45
+ function d(r) {
46
+ return e(r) === s;
47
+ }
48
+ return o.AsyncMode = $, o.ConcurrentMode = s, o.ContextConsumer = u, o.ContextProvider = a, o.Element = p, o.ForwardRef = i, o.Fragment = n, o.Lazy = m, o.Memo = l, o.Portal = b, o.Profiler = c, o.StrictMode = f, o.Suspense = y, o.isAsyncMode = function(r) {
49
+ return d(r) || e(r) === $;
50
+ }, o.isConcurrentMode = d, o.isContextConsumer = function(r) {
51
+ return e(r) === u;
52
+ }, o.isContextProvider = function(r) {
53
+ return e(r) === a;
54
+ }, o.isElement = function(r) {
55
+ return typeof r == "object" && r !== null && r.$$typeof === p;
56
+ }, o.isForwardRef = function(r) {
57
+ return e(r) === i;
58
+ }, o.isFragment = function(r) {
59
+ return e(r) === n;
60
+ }, o.isLazy = function(r) {
61
+ return e(r) === m;
62
+ }, o.isMemo = function(r) {
63
+ return e(r) === l;
64
+ }, o.isPortal = function(r) {
65
+ return e(r) === b;
66
+ }, o.isProfiler = function(r) {
67
+ return e(r) === c;
68
+ }, o.isStrictMode = function(r) {
69
+ return e(r) === f;
70
+ }, o.isSuspense = function(r) {
71
+ return e(r) === y;
72
+ }, o.isValidElementType = function(r) {
73
+ return typeof r == "string" || typeof r == "function" || r === n || r === s || r === c || r === f || r === y || r === C || typeof r == "object" && r !== null && (r.$$typeof === m || r.$$typeof === l || r.$$typeof === a || r.$$typeof === u || r.$$typeof === i || r.$$typeof === x || r.$$typeof === v || r.$$typeof === w || r.$$typeof === M);
74
+ }, o.typeOf = e, o;
75
+ }
76
+ export {
77
+ g as __require
78
+ };
@@ -0,0 +1,10 @@
1
+ import { __module as r } from "../../../../_virtual/index7.js";
2
+ import { __require as o } from "./cjs/react-is.production.min.js";
3
+ import { __require as p } from "./cjs/react-is.development.js";
4
+ var e;
5
+ function i() {
6
+ return e ? r.exports : (e = 1, process.env.NODE_ENV === "production" ? r.exports = o() : r.exports = p(), r.exports);
7
+ }
8
+ export {
9
+ i as __require
10
+ };
@@ -0,0 +1,82 @@
1
+ var p, y;
2
+ function C() {
3
+ if (y) return p;
4
+ y = 1;
5
+ function o(t) {
6
+ this._maxSize = t, this.clear();
7
+ }
8
+ o.prototype.clear = function() {
9
+ this._size = 0, this._values = /* @__PURE__ */ Object.create(null);
10
+ }, o.prototype.get = function(t) {
11
+ return this._values[t];
12
+ }, o.prototype.set = function(t, r) {
13
+ return this._size >= this._maxSize && this.clear(), t in this._values || this._size++, this._values[t] = r;
14
+ };
15
+ var z = /[^.^\]^[]+|(?=\[\]|\.\.)/g, v = /^\d+$/, d = /^\d/, x = /[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/g, $ = /^\s*(['"]?)(.*?)(\1)\s*$/, a = 512, _ = new o(a), g = new o(a), m = new o(a);
16
+ p = {
17
+ Cache: o,
18
+ split: h,
19
+ normalizePath: f,
20
+ setter: function(t) {
21
+ var r = f(t);
22
+ return g.get(t) || g.set(t, function(e, i) {
23
+ for (var n = 0, u = r.length, s = e; n < u - 1; ) {
24
+ var c = r[n];
25
+ if (c === "__proto__" || c === "constructor" || c === "prototype")
26
+ return e;
27
+ s = s[r[n++]];
28
+ }
29
+ s[r[n]] = i;
30
+ });
31
+ },
32
+ getter: function(t, r) {
33
+ var e = f(t);
34
+ return m.get(t) || m.set(t, function(i) {
35
+ for (var n = 0, u = e.length; n < u; )
36
+ if (i != null || !r) i = i[e[n++]];
37
+ else return;
38
+ return i;
39
+ });
40
+ },
41
+ join: function(t) {
42
+ return t.reduce(function(r, e) {
43
+ return r + (l(e) || v.test(e) ? "[" + e + "]" : (r ? "." : "") + e);
44
+ }, "");
45
+ },
46
+ forEach: function(t, r, e) {
47
+ A(Array.isArray(t) ? t : h(t), r, e);
48
+ }
49
+ };
50
+ function f(t) {
51
+ return _.get(t) || _.set(
52
+ t,
53
+ h(t).map(function(r) {
54
+ return r.replace($, "$2");
55
+ })
56
+ );
57
+ }
58
+ function h(t) {
59
+ return t.match(z) || [""];
60
+ }
61
+ function A(t, r, e) {
62
+ var i = t.length, n, u, s, c;
63
+ for (u = 0; u < i; u++)
64
+ n = t[u], n && (j(n) && (n = '"' + n + '"'), c = l(n), s = !c && /^\d+$/.test(n), r.call(e, n, c, s, u, t));
65
+ }
66
+ function l(t) {
67
+ return typeof t == "string" && t && ["'", '"'].indexOf(t.charAt(0)) !== -1;
68
+ }
69
+ function w(t) {
70
+ return t.match(d) && !t.match(v);
71
+ }
72
+ function S(t) {
73
+ return x.test(t);
74
+ }
75
+ function j(t) {
76
+ return !l(t) && (w(t) || S(t));
77
+ }
78
+ return p;
79
+ }
80
+ export {
81
+ C as __require
82
+ };