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.
- package/dist/_virtual/client.js +3 -22
- package/dist/_virtual/index2.js +3 -2
- package/dist/_virtual/index3.js +3 -3
- package/dist/_virtual/index4.js +5 -3
- package/dist/_virtual/index5.js +2 -5
- package/dist/_virtual/index7.js +2 -2
- package/dist/_virtual/index8.js +2 -2
- package/dist/components/atoms/Avatar/Avatar.js +71 -30
- package/dist/components/atoms/UploadContainer/UploadContainer.js +88 -47
- package/dist/components/molecules/AlertModal/AlertModal.js +67 -26
- package/dist/components/molecules/CalendarSelector/CalendarSelector.js +205 -145
- package/dist/components/molecules/DateInput/DateInput.d.ts +2 -2
- package/dist/components/molecules/DateInput/DateInput.js +63 -50
- package/dist/components/molecules/DialogModal/DialogModal.js +78 -37
- package/dist/components/molecules/FloatingMenu/FloatingMenu.js +74 -33
- package/dist/components/molecules/Tabs/Tabs.js +82 -41
- package/dist/dist/_virtual/_commonjsHelpers.js +8 -0
- package/dist/dist/_virtual/index.js +7 -0
- package/dist/dist/_virtual/index3.js +5 -0
- package/dist/dist/_virtual/index4.js +5 -0
- package/dist/dist/_virtual/index5.js +7 -0
- package/dist/dist/_virtual/index6.js +4 -0
- package/dist/dist/_virtual/index7.js +4 -0
- package/dist/dist/_virtual/index8.js +4 -0
- package/dist/dist/_virtual/jsx-runtime.js +5 -0
- package/dist/dist/_virtual/jsx-runtime2.js +4 -0
- package/dist/dist/_virtual/lodash.js +2 -0
- package/dist/dist/_virtual/lodash2.js +4 -0
- package/dist/dist/_virtual/react-is.development.js +4 -0
- package/dist/dist/_virtual/react-is.production.min.js +4 -0
- package/dist/dist/_virtual/react-jsx-runtime.development.js +4 -0
- package/dist/dist/_virtual/react-jsx-runtime.production.js +4 -0
- package/dist/dist/components/atoms/AsyncToast/index.js +33 -0
- package/dist/dist/components/atoms/ImageProfileInput/ImageProfileInput.validators.js +5 -0
- package/dist/dist/components/atoms/Toast/Toast.js +113 -0
- package/dist/dist/constants/countries.js +8 -0
- package/dist/dist/contexts/themeContext.js +3 -0
- package/dist/dist/node_modules/@floating-ui/react/dist/floating-ui.react.js +4 -0
- package/dist/dist/node_modules/@fortawesome/fontawesome-svg-core/index.js +2661 -0
- package/dist/dist/node_modules/@fortawesome/pro-light-svg-icons/index.js +33 -0
- package/dist/dist/node_modules/@fortawesome/react-fontawesome/index.es.js +266 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animate/single-value.js +11 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/AcceleratedAnimation.js +205 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/BaseAnimation.js +83 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/MainThreadAnimation.js +147 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.js +18 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/utils/accelerated-values.js +12 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/utils/can-animate.js +23 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/index.js +18 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/inertia.js +37 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/keyframes.js +30 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/spring/defaults.js +32 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/spring/find.js +52 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/spring/index.js +92 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/utils/velocity.js +10 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/motion-value.js +47 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-target.js +46 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-variant.js +33 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element.js +22 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/get-appear-id.js +7 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/default-transitions.js +22 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-animatable.js +7 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-animation-controls.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-keyframes-target.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-none.js +7 -0
- package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-transition-defined.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.js +53 -0
- package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +41 -0
- package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/index.js +45 -0
- package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.js +17 -0
- package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/utils.js +12 -0
- package/dist/dist/node_modules/framer-motion/dist/es/context/LayoutGroupContext.js +5 -0
- package/dist/dist/node_modules/framer-motion/dist/es/context/LazyContext.js +5 -0
- package/dist/dist/node_modules/framer-motion/dist/es/context/MotionConfigContext.js +9 -0
- package/dist/dist/node_modules/framer-motion/dist/es/context/MotionContext/create.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/context/MotionContext/index.js +5 -0
- package/dist/dist/node_modules/framer-motion/dist/es/context/MotionContext/utils.js +15 -0
- package/dist/dist/node_modules/framer-motion/dist/es/context/PresenceContext.js +5 -0
- package/dist/dist/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +5 -0
- package/dist/dist/node_modules/framer-motion/dist/es/easing/anticipate.js +5 -0
- package/dist/dist/node_modules/framer-motion/dist/es/easing/back.js +9 -0
- package/dist/dist/node_modules/framer-motion/dist/es/easing/circ.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/easing/cubic-bezier.js +19 -0
- package/dist/dist/node_modules/framer-motion/dist/es/easing/ease.js +7 -0
- package/dist/dist/node_modules/framer-motion/dist/es/easing/modifiers/mirror.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/easing/modifiers/reverse.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/easing/utils/is-easing-array.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/easing/utils/map.js +32 -0
- package/dist/dist/node_modules/framer-motion/dist/es/events/add-dom-event.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/events/add-pointer-event.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/events/event-info.js +15 -0
- package/dist/dist/node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +256 -0
- package/dist/dist/node_modules/framer-motion/dist/es/gestures/drag/index.js +19 -0
- package/dist/dist/node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.js +68 -0
- package/dist/dist/node_modules/framer-motion/dist/es/gestures/focus.js +28 -0
- package/dist/dist/node_modules/framer-motion/dist/es/gestures/hover.js +22 -0
- package/dist/dist/node_modules/framer-motion/dist/es/gestures/pan/PanSession.js +85 -0
- package/dist/dist/node_modules/framer-motion/dist/es/gestures/pan/index.js +44 -0
- package/dist/dist/node_modules/framer-motion/dist/es/gestures/press.js +24 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/Feature.js +10 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/animation/exit.js +27 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/animation/index.js +34 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/animations.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/definitions.js +27 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/drag.js +17 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/gestures.js +21 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +75 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/layout.js +11 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/load-features.js +11 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/viewport/index.js +44 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/features/viewport/observers.js +21 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/index.js +59 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/symbol.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.js +65 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.js +53 -0
- package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/valid-prop.js +38 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/animation/mix-values.js +31 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/conversion.js +25 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/copy.js +14 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-apply.js +52 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-calc.js +36 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-remove.js +25 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/models.js +18 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/utils.js +34 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/node/DocumentProjectionNode.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/node/HTMLProjectionNode.js +25 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/node/create-projection-node.js +608 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/node/state.js +15 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/shared/stack.js +59 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/scale-border-radius.js +21 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/scale-box-shadow.js +16 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/scale-correction.js +10 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/transform.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/utils/each-axis.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/utils/has-transform.js +20 -0
- package/dist/dist/node_modules/framer-motion/dist/es/projection/utils/measure.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/VisualElement.js +229 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/components/create-factory.js +20 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/components/create-proxy.js +18 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/components/motion/create.js +15 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/components/motion/proxy.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/DOMKeyframesResolver.js +66 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/DOMVisualElement.js +27 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/create-visual-element.js +10 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/use-render.js +18 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/css-variables-conversion.js +31 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/filter-props.js +20 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-css-variable.js +5 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-component.js +24 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-element.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/unit-conversion.js +31 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/animatable-none.js +10 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/defaults.js +24 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/dimensions.js +9 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/find.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/get-as-type.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number-browser.js +41 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number.js +18 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/test.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/transform.js +31 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-auto.js +7 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-int.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.js +37 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/config-motion.js +12 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/use-props.js +27 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/build-styles.js +29 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/build-transform.js +31 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/create-render-state.js +9 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-position.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/make-none-animatable.js +16 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/parse-transform.js +64 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/render.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +12 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/store.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.js +48 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/config-motion.js +44 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/lowercase-elements.js +30 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/use-props.js +22 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.js +26 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/camel-case-attrs.js +28 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/create-render-state.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/is-svg-tag.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/measure.js +15 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/path.js +18 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/render.js +11 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/transform-origin.js +11 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/KeyframesResolver.js +77 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/animation-state.js +128 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/compare-by-depth.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/flat-tree.js +20 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/get-variant-context.js +20 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/is-controlling-variants.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/is-variant-label.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/motion-values.js +27 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/resolve-dynamic-variants.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/resolve-variants.js +20 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/setters.js +19 -0
- package/dist/dist/node_modules/framer-motion/dist/es/render/utils/variant-props.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/clamp.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/delay.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/distance.js +9 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/get-context-window.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/hsla-to-rgba.js +22 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/interpolate.js +41 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/is-browser.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/is-numerical-string.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/is-ref-object.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/is-zero-value-string.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/color.js +29 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/complex.js +52 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/immediate.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/index.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/number.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/visibility.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/offsets/default.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/offsets/fill.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/offsets/time.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/pipe.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/index.js +13 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/state.js +5 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/resolve-value.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/shallow-compare.js +14 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/use-constant.js +8 -0
- package/dist/dist/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/hex.js +19 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/hsla.js +12 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/index.js +11 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/rgba.js +16 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/utils.js +18 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/complex/filter.js +24 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/complex/index.js +49 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/numbers/index.js +17 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/numbers/units.js +17 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/use-will-change/add-will-change.js +9 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/use-will-change/is.js +7 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/utils/is-motion-value.js +4 -0
- package/dist/dist/node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.js +9 -0
- package/dist/dist/node_modules/lodash/lodash.js +3677 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LayoutGroupContext.js +2 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LazyContext.js +2 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionConfigContext.js +6 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +2 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/create-projection-node.js +12 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/filter-props.js +9 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/unit-conversion.js +5 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/type-int.js +4 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/clamp.js +4 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hex.js +19 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hsla.js +12 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/index.js +11 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/rgba.js +16 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/utils.js +18 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/filter.js +4 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/index.js +49 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/index.js +16 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/units.js +11 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
- package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
- package/dist/dist/node_modules/motion/dist/es/motion-utils/dist/es/errors.js +1 -0
- package/dist/dist/node_modules/motion/dist/es/motion-utils/dist/es/noop.js +4 -0
- package/dist/dist/node_modules/motion-dom/dist/es/animation/controls/BaseGroup.js +74 -0
- package/dist/dist/node_modules/motion-dom/dist/es/animation/controls/Group.js +9 -0
- package/dist/dist/node_modules/motion-dom/dist/es/animation/generators/utils/calc-duration.js +13 -0
- package/dist/dist/node_modules/motion-dom/dist/es/animation/generators/utils/is-generator.js +6 -0
- package/dist/dist/node_modules/motion-dom/dist/es/animation/utils/get-value-transition.js +6 -0
- package/dist/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/attach-timeline.js +6 -0
- package/dist/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/easing.js +27 -0
- package/dist/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/linear.js +12 -0
- package/dist/dist/node_modules/motion-dom/dist/es/frameloop/batcher.js +27 -0
- package/dist/dist/node_modules/motion-dom/dist/es/frameloop/frame.js +10 -0
- package/dist/dist/node_modules/motion-dom/dist/es/frameloop/microtask.js +5 -0
- package/dist/dist/node_modules/motion-dom/dist/es/frameloop/order.js +17 -0
- package/dist/dist/node_modules/motion-dom/dist/es/frameloop/render-step.js +41 -0
- package/dist/dist/node_modules/motion-dom/dist/es/frameloop/sync-time.js +16 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/drag/state/is-active.js +11 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/drag/state/set-active.js +11 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/hover.js +24 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/index.js +32 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +13 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/utils/keyboard.js +27 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/utils/state.js +4 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.js +4 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/utils/is-primary-pointer.js +4 -0
- package/dist/dist/node_modules/motion-dom/dist/es/gestures/utils/setup.js +12 -0
- package/dist/dist/node_modules/motion-dom/dist/es/utils/is-bezier-definition.js +4 -0
- package/dist/dist/node_modules/motion-dom/dist/es/utils/resolve-elements.js +14 -0
- package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/flags.js +6 -0
- package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/linear-easing.js +12 -0
- package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/memo.js +13 -0
- package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/scroll-timeline.js +6 -0
- package/dist/dist/node_modules/motion-dom/dist/es/value/index.js +202 -0
- package/dist/dist/node_modules/motion-utils/dist/es/array.js +11 -0
- package/dist/dist/node_modules/motion-utils/dist/es/errors.js +12 -0
- package/dist/dist/node_modules/motion-utils/dist/es/global-config.js +6 -0
- package/dist/dist/node_modules/motion-utils/dist/es/memo.js +8 -0
- package/dist/dist/node_modules/motion-utils/dist/es/noop.js +4 -0
- package/dist/dist/node_modules/motion-utils/dist/es/progress.js +7 -0
- package/dist/dist/node_modules/motion-utils/dist/es/subscription-manager.js +29 -0
- package/dist/dist/node_modules/motion-utils/dist/es/time-conversion.js +5 -0
- package/dist/dist/node_modules/motion-utils/dist/es/velocity-per-second.js +6 -0
- package/dist/dist/node_modules/motion-utils/dist/es/warn-once.js +7 -0
- package/dist/dist/node_modules/object-assign/index.js +54 -0
- package/dist/dist/node_modules/prop-types/checkPropTypes.js +54 -0
- package/dist/dist/node_modules/prop-types/factoryWithThrowingShims.js +52 -0
- package/dist/dist/node_modules/prop-types/factoryWithTypeCheckers.js +329 -0
- package/dist/dist/node_modules/prop-types/index.js +17 -0
- package/dist/dist/node_modules/prop-types/lib/ReactPropTypesSecret.js +10 -0
- package/dist/dist/node_modules/prop-types/lib/has.js +7 -0
- package/dist/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +95 -0
- package/dist/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +78 -0
- package/dist/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
- package/dist/dist/node_modules/property-expr/index.js +82 -0
- package/dist/dist/node_modules/react/cjs/react-jsx-runtime.development.js +247 -0
- package/dist/dist/node_modules/react/cjs/react-jsx-runtime.production.js +35 -0
- package/dist/dist/node_modules/react/jsx-runtime.js +10 -0
- package/dist/dist/node_modules/tiny-case/index.js +22 -0
- package/dist/dist/node_modules/toposort/index.js +66 -0
- package/dist/dist/node_modules/yup/index.esm.js +1359 -0
- package/dist/dist/themes/default.js +9 -0
- package/dist/lawgic-dev-kit.css +1 -1
- package/dist/lawgic-dev-kit.umd.js +884 -243
- package/dist/node_modules/prop-types/node_modules/react-is/index.js +1 -1
- package/dist/node_modules/scheduler/index.js +1 -1
- package/dist/node_modules/toposort/index.js +1 -1
- package/dist/node_modules/yup/index.esm.js +3 -3
- package/dist/src/utils/toast.d.ts +15 -0
- package/dist/utils/modal.js +98 -57
- package/dist/utils/toast.d.ts +1 -1
- package/dist/utils/toast.js +112 -98
- package/package.json +1 -1
- package/dist/src/components/atoms/SectionButton/desktop/SectionButton.d.ts +0 -3
- package/dist/src/components/atoms/SectionButton/desktop/SectionButton.styles.d.ts +0 -2
- package/dist/src/components/atoms/SectionButton/desktop/SectionButton.types.d.ts +0 -37
- package/dist/src/components/atoms/SectionButton/mobile/MobileSectionButton.styles.d.ts +0 -3
- 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,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
|
+
};
|
package/dist/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js
ADDED
|
@@ -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
|
+
};
|