@importcsv/react 0.2.1 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +100 -427
- package/build/App.d.ts +2 -0
- package/build/bundled/bundled-styles.d.ts +1 -0
- package/build/bundled/components/CSVImporter/index.d.ts +5 -0
- package/build/bundled/i18n/de.d.ts +32 -0
- package/build/bundled/i18n/es.d.ts +32 -0
- package/build/bundled/i18n/fr.d.ts +32 -0
- package/build/bundled/i18n/i18n.d.ts +6 -0
- package/build/bundled/i18n/it.d.ts +32 -0
- package/build/bundled/i18n/useTranslation.d.ts +9 -0
- package/build/bundled/importer/components/Box/index.d.ts +2 -0
- package/build/bundled/importer/components/Box/types/index.d.ts +5 -0
- package/build/bundled/importer/components/Checkbox/index.d.ts +2 -0
- package/build/bundled/importer/components/Checkbox/types/index.d.ts +4 -0
- package/build/bundled/importer/components/Errors/index.d.ts +4 -0
- package/build/bundled/importer/components/Input/index.d.ts +2 -0
- package/build/bundled/importer/components/Input/types/index.d.ts +18 -0
- package/build/bundled/importer/components/Root/index.d.ts +10 -0
- package/build/bundled/importer/components/StepLayout/index.d.ts +18 -0
- package/build/bundled/importer/components/Stepper/hooks/useStepper.d.ts +2 -0
- package/build/bundled/importer/components/Stepper/index.d.ts +2 -0
- package/build/bundled/importer/components/Stepper/types/index.d.ts +14 -0
- package/build/bundled/importer/components/Table/index.d.ts +9 -0
- package/build/bundled/importer/components/ToggleFilter/index.d.ts +3 -0
- package/build/bundled/importer/components/ToggleFilter/types/index.d.ts +11 -0
- package/build/bundled/importer/components/Tooltip/index.d.ts +2 -0
- package/build/bundled/importer/components/Tooltip/types/index.d.ts +11 -0
- package/build/bundled/importer/components/UploaderWrapper/NativeDropzone.d.ts +11 -0
- package/build/bundled/importer/components/UploaderWrapper/UploaderWrapper.d.ts +2 -0
- package/build/bundled/importer/components/UploaderWrapper/types/index.d.ts +2 -0
- package/build/bundled/importer/components/VirtualTable/index.d.ts +17 -0
- package/build/bundled/importer/components/ui/alert.d.ts +10 -0
- package/build/bundled/importer/components/ui/button.d.ts +12 -0
- package/build/bundled/importer/components/ui/card.d.ts +19 -0
- package/build/bundled/importer/components/ui/checkbox.d.ts +7 -0
- package/build/bundled/importer/components/ui/dialog.d.ts +38 -0
- package/build/bundled/importer/components/ui/flex.d.ts +23 -0
- package/build/bundled/importer/components/ui/input.d.ts +6 -0
- package/build/bundled/importer/components/ui/select.d.ts +13 -0
- package/build/bundled/importer/components/ui/switch.d.ts +7 -0
- package/build/bundled/importer/components/ui/toast.d.ts +22 -0
- package/build/bundled/importer/components/ui/toaster.d.ts +1 -0
- package/build/bundled/importer/components/ui/tooltip.d.ts +20 -0
- package/build/bundled/importer/components/ui/use-toast.d.ts +46 -0
- package/build/bundled/importer/features/complete/index.d.ts +2 -0
- package/build/bundled/importer/features/complete/types/index.d.ts +5 -0
- package/build/bundled/importer/features/configure-import/index.d.ts +13 -0
- package/build/bundled/importer/features/configure-import/types/index.d.ts +13 -0
- package/build/bundled/importer/features/main/hooks/useMutableLocalStorage.d.ts +1 -0
- package/build/bundled/importer/features/main/hooks/useStepNavigation.d.ts +17 -0
- package/build/bundled/importer/features/main/index.d.ts +2 -0
- package/build/bundled/importer/features/main/types/index.d.ts +16 -0
- package/build/bundled/importer/features/map-columns/components/DropDownFields.d.ts +21 -0
- package/build/bundled/importer/features/map-columns/hooks/useMapColumnsTable.d.ts +16 -0
- package/build/bundled/importer/features/map-columns/index.d.ts +2 -0
- package/build/bundled/importer/features/map-columns/types/index.d.ts +16 -0
- package/build/bundled/importer/features/row-selection/index.d.ts +2 -0
- package/build/bundled/importer/features/row-selection/types/index.d.ts +8 -0
- package/build/bundled/importer/features/uploader/hooks/useTemplateTable.d.ts +10 -0
- package/build/bundled/importer/features/uploader/index.d.ts +2 -0
- package/build/bundled/importer/features/uploader/types/index.d.ts +9 -0
- package/build/bundled/importer/features/validation/Validation.d.ts +2 -0
- package/build/bundled/importer/features/validation/components/TransformModal.d.ts +18 -0
- package/build/bundled/importer/features/validation/components/TransformPanel.d.ts +18 -0
- package/build/bundled/importer/features/validation/index.d.ts +1 -0
- package/build/bundled/importer/features/validation/types.d.ts +32 -0
- package/build/bundled/importer/hooks/useClickOutside.d.ts +1 -0
- package/build/bundled/importer/hooks/useCustomStyles.d.ts +1 -0
- package/build/bundled/importer/hooks/useEventListener.d.ts +4 -0
- package/build/bundled/importer/hooks/useIsomorphicLayoutEffect.d.ts +3 -0
- package/build/bundled/importer/hooks/useRect.d.ts +12 -0
- package/build/bundled/importer/hooks/useWindowSize.d.ts +1 -0
- package/build/bundled/importer/providers/Theme.d.ts +10 -0
- package/build/bundled/importer/providers/index.d.ts +5 -0
- package/build/bundled/importer/providers/types/index.d.ts +10 -0
- package/build/bundled/importer/services/api.d.ts +1 -0
- package/build/bundled/importer/services/mapping.d.ts +31 -0
- package/build/bundled/importer/services/transformation.d.ts +70 -0
- package/build/bundled/importer/settings/theme/colors.d.ts +4 -0
- package/build/bundled/importer/settings/theme/index.d.ts +2 -0
- package/build/bundled/importer/settings/theme/sizes.d.ts +7 -0
- package/build/bundled/importer/stores/theme.d.ts +17 -0
- package/build/bundled/importer/theme/index.d.ts +8 -0
- package/build/bundled/importer/theme/presets.d.ts +314 -0
- package/build/bundled/importer/theme/runtime.d.ts +62 -0
- package/build/bundled/importer/theme/styles.d.ts +120 -0
- package/build/bundled/importer/types/index.d.ts +9 -0
- package/build/bundled/importer/utils/colorUtils.d.ts +48 -0
- package/build/bundled/importer/utils/errorAnalysis.d.ts +25 -0
- package/build/bundled/importer/utils/getStringLengthOfChildren.d.ts +2 -0
- package/build/bundled/importer/utils/stringSimilarity.d.ts +1 -0
- package/build/bundled/importer/utils/template.d.ts +2 -0
- package/build/bundled/importer/utils/themeUtils.d.ts +21 -0
- package/build/bundled/importer/utils/utils.d.ts +19 -0
- package/build/bundled/index.d.ts +4 -0
- package/build/bundled/index.esm.js +8189 -0
- package/build/bundled/index.esm.js.map +1 -0
- package/build/bundled/index.js +112 -0
- package/build/bundled/index.js.map +1 -0
- package/build/bundled/index.umd.js +112 -0
- package/build/bundled/index.umd.js.map +1 -0
- package/build/bundled/js.d.ts +12 -0
- package/build/bundled/settings/defaults.d.ts +3 -0
- package/build/bundled/styles.d.ts +1 -0
- package/build/bundled/types/index.d.ts +132 -0
- package/build/bundled/types/theme.d.ts +153 -0
- package/build/bundled/utils/cn.d.ts +6 -0
- package/build/bundled/utils/injectStyles.d.ts +14 -0
- package/build/bundled/validation/transformationStages.d.ts +26 -0
- package/build/bundled/validation/transformer.d.ts +17 -0
- package/build/bundled/validation/validator.d.ts +23 -0
- package/build/bundled-styles.d.ts +1 -1
- package/build/components/CSVImporter/index.d.ts +8 -31
- package/build/components/Modal/index.d.ts +12 -0
- package/build/config/index.d.ts +5 -0
- package/build/importer/components/Box/index.d.ts +1 -1
- package/build/importer/components/Box/types/index.d.ts +1 -2
- package/build/importer/components/Checkbox/index.d.ts +1 -1
- package/build/importer/components/Checkbox/types/index.d.ts +1 -1
- package/build/importer/components/Input/index.d.ts +1 -1
- package/build/importer/components/Input/types/index.d.ts +1 -1
- package/build/importer/components/Root/index.d.ts +10 -0
- package/build/importer/components/StepLayout/index.d.ts +18 -0
- package/build/importer/components/Stepper/hooks/useStepper.d.ts +1 -1
- package/build/importer/components/Stepper/index.d.ts +1 -1
- package/build/importer/components/Table/index.d.ts +3 -3
- package/build/importer/components/ToggleFilter/index.d.ts +1 -1
- package/build/importer/components/Tooltip/index.d.ts +1 -1
- package/build/importer/components/Tooltip/types/index.d.ts +4 -4
- package/build/importer/components/UploaderWrapper/NativeDropzone.d.ts +11 -0
- package/build/importer/components/UploaderWrapper/UploaderWrapper.d.ts +1 -1
- package/build/importer/components/UploaderWrapper/types/index.d.ts +1 -1
- package/build/importer/components/VirtualTable/index.d.ts +17 -0
- package/build/importer/components/ui/alert.d.ts +9 -7
- package/build/importer/components/ui/button.d.ts +6 -6
- package/build/importer/components/ui/card.d.ts +18 -7
- package/build/importer/components/ui/checkbox.d.ts +6 -3
- package/build/importer/components/ui/dialog.d.ts +32 -12
- package/build/importer/components/ui/flex.d.ts +16 -7
- package/build/importer/components/ui/input.d.ts +4 -3
- package/build/importer/components/ui/select.d.ts +13 -13
- package/build/importer/components/ui/switch.d.ts +6 -3
- package/build/importer/components/ui/toast.d.ts +23 -15
- package/build/importer/components/ui/tooltip.d.ts +16 -9
- package/build/importer/components/ui/use-toast.d.ts +7 -5
- package/build/importer/features/complete/index.d.ts +1 -1
- package/build/importer/features/main/hooks/useStepNavigation.d.ts +1 -1
- package/build/importer/features/main/index.d.ts +1 -1
- package/build/importer/features/map-columns/components/DropDownFields.d.ts +1 -1
- package/build/importer/features/map-columns/hooks/useMapColumnsTable.d.ts +4 -4
- package/build/importer/features/map-columns/index.d.ts +1 -1
- package/build/importer/features/map-columns/types/index.d.ts +2 -2
- package/build/importer/features/row-selection/index.d.ts +1 -1
- package/build/importer/features/row-selection/types/index.d.ts +1 -1
- package/build/importer/features/uploader/hooks/useTemplateTable.d.ts +1 -1
- package/build/importer/features/uploader/index.d.ts +1 -1
- package/build/importer/features/uploader/types/index.d.ts +2 -2
- package/build/importer/features/validation/components/TransformPanel.d.ts +18 -0
- package/build/importer/features/validation/types.d.ts +3 -3
- package/build/importer/hooks/useEventListener.d.ts +1 -1
- package/build/importer/hooks/useIsomorphicLayoutEffect.d.ts +1 -1
- package/build/importer/providers/Theme.d.ts +7 -2
- package/build/importer/providers/index.d.ts +4 -4
- package/build/importer/providers/types/index.d.ts +10 -4
- package/build/importer/settings/theme/index.d.ts +2 -2
- package/build/importer/stores/theme.d.ts +3 -3
- package/build/importer/theme/index.d.ts +8 -0
- package/build/importer/theme/presets.d.ts +314 -0
- package/build/importer/theme/runtime.d.ts +66 -0
- package/build/importer/theme/styles.d.ts +120 -0
- package/build/importer/utils/errorAnalysis.d.ts +25 -0
- package/build/importer/utils/getStringLengthOfChildren.d.ts +2 -2
- package/build/importer/utils/template.d.ts +1 -1
- package/build/importer/utils/themeUtils.d.ts +24 -0
- package/build/index.d.ts +5 -3
- package/build/index.dev.d.ts +1 -0
- package/build/js.d.ts +4 -31
- package/build/preact/bundled-styles.d.ts +1 -0
- package/build/preact/components/CSVImporter/index.d.ts +5 -0
- package/build/preact/i18n/de.d.ts +32 -0
- package/build/preact/i18n/es.d.ts +32 -0
- package/build/preact/i18n/fr.d.ts +32 -0
- package/build/preact/i18n/i18n.d.ts +6 -0
- package/build/preact/i18n/it.d.ts +32 -0
- package/build/preact/i18n/useTranslation.d.ts +9 -0
- package/build/preact/importer/components/Box/index.d.ts +2 -0
- package/build/preact/importer/components/Box/types/index.d.ts +5 -0
- package/build/preact/importer/components/Checkbox/index.d.ts +2 -0
- package/build/preact/importer/components/Checkbox/types/index.d.ts +4 -0
- package/build/preact/importer/components/Errors/index.d.ts +4 -0
- package/build/preact/importer/components/Input/index.d.ts +2 -0
- package/build/preact/importer/components/Input/types/index.d.ts +18 -0
- package/build/preact/importer/components/Root/index.d.ts +10 -0
- package/build/preact/importer/components/StepLayout/index.d.ts +18 -0
- package/build/preact/importer/components/Stepper/hooks/useStepper.d.ts +2 -0
- package/build/preact/importer/components/Stepper/index.d.ts +2 -0
- package/build/preact/importer/components/Stepper/types/index.d.ts +14 -0
- package/build/preact/importer/components/Table/index.d.ts +9 -0
- package/build/preact/importer/components/ToggleFilter/index.d.ts +3 -0
- package/build/preact/importer/components/ToggleFilter/types/index.d.ts +11 -0
- package/build/preact/importer/components/Tooltip/index.d.ts +2 -0
- package/build/preact/importer/components/Tooltip/types/index.d.ts +11 -0
- package/build/preact/importer/components/UploaderWrapper/NativeDropzone.d.ts +11 -0
- package/build/preact/importer/components/UploaderWrapper/UploaderWrapper.d.ts +2 -0
- package/build/preact/importer/components/UploaderWrapper/types/index.d.ts +2 -0
- package/build/preact/importer/components/VirtualTable/index.d.ts +17 -0
- package/build/preact/importer/components/ui/alert.d.ts +10 -0
- package/build/preact/importer/components/ui/button.d.ts +12 -0
- package/build/preact/importer/components/ui/card.d.ts +19 -0
- package/build/preact/importer/components/ui/checkbox.d.ts +7 -0
- package/build/preact/importer/components/ui/dialog.d.ts +38 -0
- package/build/preact/importer/components/ui/flex.d.ts +23 -0
- package/build/preact/importer/components/ui/input.d.ts +6 -0
- package/build/preact/importer/components/ui/select.d.ts +13 -0
- package/build/preact/importer/components/ui/switch.d.ts +7 -0
- package/build/preact/importer/components/ui/toast.d.ts +22 -0
- package/build/preact/importer/components/ui/toaster.d.ts +1 -0
- package/build/preact/importer/components/ui/tooltip.d.ts +20 -0
- package/build/preact/importer/components/ui/use-toast.d.ts +46 -0
- package/build/preact/importer/features/complete/index.d.ts +2 -0
- package/build/preact/importer/features/complete/types/index.d.ts +5 -0
- package/build/preact/importer/features/configure-import/index.d.ts +13 -0
- package/build/preact/importer/features/configure-import/types/index.d.ts +13 -0
- package/build/preact/importer/features/main/hooks/useMutableLocalStorage.d.ts +1 -0
- package/build/preact/importer/features/main/hooks/useStepNavigation.d.ts +17 -0
- package/build/preact/importer/features/main/index.d.ts +2 -0
- package/build/preact/importer/features/main/types/index.d.ts +16 -0
- package/build/preact/importer/features/map-columns/components/DropDownFields.d.ts +21 -0
- package/build/preact/importer/features/map-columns/hooks/useMapColumnsTable.d.ts +16 -0
- package/build/preact/importer/features/map-columns/index.d.ts +2 -0
- package/build/preact/importer/features/map-columns/types/index.d.ts +16 -0
- package/build/preact/importer/features/row-selection/index.d.ts +2 -0
- package/build/preact/importer/features/row-selection/types/index.d.ts +8 -0
- package/build/preact/importer/features/uploader/hooks/useTemplateTable.d.ts +10 -0
- package/build/preact/importer/features/uploader/index.d.ts +2 -0
- package/build/preact/importer/features/uploader/types/index.d.ts +9 -0
- package/build/preact/importer/features/validation/Validation.d.ts +2 -0
- package/build/preact/importer/features/validation/components/TransformModal.d.ts +18 -0
- package/build/preact/importer/features/validation/components/TransformPanel.d.ts +18 -0
- package/build/preact/importer/features/validation/index.d.ts +1 -0
- package/build/preact/importer/features/validation/types.d.ts +32 -0
- package/build/preact/importer/hooks/useClickOutside.d.ts +1 -0
- package/build/preact/importer/hooks/useCustomStyles.d.ts +1 -0
- package/build/preact/importer/hooks/useEventListener.d.ts +4 -0
- package/build/preact/importer/hooks/useIsomorphicLayoutEffect.d.ts +3 -0
- package/build/preact/importer/hooks/useRect.d.ts +12 -0
- package/build/preact/importer/hooks/useWindowSize.d.ts +1 -0
- package/build/preact/importer/providers/Theme.d.ts +10 -0
- package/build/preact/importer/providers/index.d.ts +5 -0
- package/build/preact/importer/providers/types/index.d.ts +10 -0
- package/build/preact/importer/services/api.d.ts +1 -0
- package/build/preact/importer/services/mapping.d.ts +31 -0
- package/build/preact/importer/services/transformation.d.ts +70 -0
- package/build/preact/importer/settings/theme/colors.d.ts +4 -0
- package/build/preact/importer/settings/theme/index.d.ts +2 -0
- package/build/preact/importer/settings/theme/sizes.d.ts +7 -0
- package/build/preact/importer/stores/theme.d.ts +17 -0
- package/build/preact/importer/theme/index.d.ts +8 -0
- package/build/preact/importer/theme/presets.d.ts +314 -0
- package/build/preact/importer/theme/runtime.d.ts +62 -0
- package/build/preact/importer/theme/styles.d.ts +120 -0
- package/build/preact/importer/types/index.d.ts +9 -0
- package/build/preact/importer/utils/colorUtils.d.ts +48 -0
- package/build/preact/importer/utils/errorAnalysis.d.ts +25 -0
- package/build/preact/importer/utils/getStringLengthOfChildren.d.ts +2 -0
- package/build/preact/importer/utils/stringSimilarity.d.ts +1 -0
- package/build/preact/importer/utils/template.d.ts +2 -0
- package/build/preact/importer/utils/themeUtils.d.ts +21 -0
- package/build/preact/importer/utils/utils.d.ts +19 -0
- package/build/preact/index.d.ts +4 -0
- package/build/preact/index.esm.js +7370 -0
- package/build/preact/index.esm.js.map +1 -0
- package/build/preact/index.js +112 -0
- package/build/preact/index.js.map +1 -0
- package/build/preact/js.d.ts +12 -0
- package/build/preact/settings/defaults.d.ts +3 -0
- package/build/preact/styles.d.ts +1 -0
- package/build/preact/types/index.d.ts +132 -0
- package/build/preact/types/theme.d.ts +153 -0
- package/build/preact/utils/cn.d.ts +6 -0
- package/build/preact/utils/injectStyles.d.ts +14 -0
- package/build/preact/validation/transformationStages.d.ts +26 -0
- package/build/preact/validation/transformer.d.ts +17 -0
- package/build/preact/validation/validator.d.ts +23 -0
- package/build/react/bundled-styles.d.ts +1 -0
- package/build/react/components/CSVImporter/index.d.ts +5 -0
- package/build/react/components/Modal/index.d.ts +12 -0
- package/build/react/i18n/de.d.ts +32 -0
- package/build/react/i18n/es.d.ts +32 -0
- package/build/react/i18n/fr.d.ts +32 -0
- package/build/react/i18n/i18n.d.ts +6 -0
- package/build/react/i18n/it.d.ts +32 -0
- package/build/react/i18n/useTranslation.d.ts +9 -0
- package/build/react/importer/components/Box/index.d.ts +2 -0
- package/build/react/importer/components/Box/types/index.d.ts +5 -0
- package/build/react/importer/components/Checkbox/index.d.ts +2 -0
- package/build/react/importer/components/Checkbox/types/index.d.ts +4 -0
- package/build/react/importer/components/Errors/index.d.ts +4 -0
- package/build/react/importer/components/Input/index.d.ts +2 -0
- package/build/react/importer/components/Input/types/index.d.ts +18 -0
- package/build/react/importer/components/Root/index.d.ts +10 -0
- package/build/react/importer/components/StepLayout/index.d.ts +18 -0
- package/build/react/importer/components/Stepper/hooks/useStepper.d.ts +2 -0
- package/build/react/importer/components/Stepper/index.d.ts +2 -0
- package/build/react/importer/components/Stepper/types/index.d.ts +14 -0
- package/build/react/importer/components/Table/index.d.ts +9 -0
- package/build/{importer → react/importer}/components/Table/types/index.d.ts +2 -2
- package/build/react/importer/components/ToggleFilter/index.d.ts +3 -0
- package/build/react/importer/components/ToggleFilter/types/index.d.ts +11 -0
- package/build/react/importer/components/Tooltip/index.d.ts +2 -0
- package/build/react/importer/components/Tooltip/types/index.d.ts +11 -0
- package/build/react/importer/components/UploaderWrapper/NativeDropzone.d.ts +11 -0
- package/build/react/importer/components/UploaderWrapper/UploaderWrapper.d.ts +2 -0
- package/build/react/importer/components/UploaderWrapper/types/index.d.ts +2 -0
- package/build/react/importer/components/VirtualTable/index.d.ts +17 -0
- package/build/react/importer/components/ui/alert.d.ts +13 -0
- package/build/react/importer/components/ui/button.d.ts +12 -0
- package/build/react/importer/components/ui/card.d.ts +19 -0
- package/build/react/importer/components/ui/checkbox.d.ts +7 -0
- package/build/react/importer/components/ui/dialog.d.ts +38 -0
- package/build/react/importer/components/ui/flex.d.ts +23 -0
- package/build/react/importer/components/ui/input.d.ts +6 -0
- package/build/react/importer/components/ui/select.d.ts +13 -0
- package/build/react/importer/components/ui/switch.d.ts +7 -0
- package/build/react/importer/components/ui/toast.d.ts +22 -0
- package/build/react/importer/components/ui/toaster.d.ts +1 -0
- package/build/react/importer/components/ui/tooltip.d.ts +24 -0
- package/build/react/importer/components/ui/use-toast.d.ts +46 -0
- package/build/react/importer/features/complete/index.d.ts +2 -0
- package/build/react/importer/features/complete/types/index.d.ts +5 -0
- package/build/react/importer/features/configure-import/index.d.ts +13 -0
- package/build/react/importer/features/configure-import/types/index.d.ts +13 -0
- package/build/react/importer/features/main/hooks/useMutableLocalStorage.d.ts +1 -0
- package/build/react/importer/features/main/hooks/useStepNavigation.d.ts +17 -0
- package/build/react/importer/features/main/index.d.ts +2 -0
- package/build/react/importer/features/main/types/index.d.ts +16 -0
- package/build/react/importer/features/map-columns/components/DropDownFields.d.ts +21 -0
- package/build/react/importer/features/map-columns/hooks/useMapColumnsTable.d.ts +16 -0
- package/build/react/importer/features/map-columns/index.d.ts +2 -0
- package/build/react/importer/features/map-columns/types/index.d.ts +16 -0
- package/build/react/importer/features/row-selection/index.d.ts +2 -0
- package/build/react/importer/features/row-selection/types/index.d.ts +8 -0
- package/build/react/importer/features/uploader/hooks/useTemplateTable.d.ts +10 -0
- package/build/react/importer/features/uploader/index.d.ts +2 -0
- package/build/react/importer/features/uploader/types/index.d.ts +9 -0
- package/build/react/importer/features/validation/Validation.d.ts +2 -0
- package/build/react/importer/features/validation/components/TransformModal.d.ts +18 -0
- package/build/react/importer/features/validation/components/TransformPanel.d.ts +18 -0
- package/build/react/importer/features/validation/index.d.ts +1 -0
- package/build/react/importer/features/validation/types.d.ts +32 -0
- package/build/react/importer/hooks/useClickOutside.d.ts +1 -0
- package/build/react/importer/hooks/useCustomStyles.d.ts +1 -0
- package/build/react/importer/hooks/useEventListener.d.ts +4 -0
- package/build/react/importer/hooks/useIsomorphicLayoutEffect.d.ts +3 -0
- package/build/react/importer/hooks/useRect.d.ts +12 -0
- package/build/react/importer/hooks/useWindowSize.d.ts +1 -0
- package/build/react/importer/providers/Theme.d.ts +10 -0
- package/build/react/importer/providers/index.d.ts +5 -0
- package/build/react/importer/providers/types/index.d.ts +10 -0
- package/build/react/importer/services/api.d.ts +1 -0
- package/build/react/importer/services/mapping.d.ts +31 -0
- package/build/react/importer/services/transformation.d.ts +70 -0
- package/build/react/importer/settings/theme/colors.d.ts +4 -0
- package/build/react/importer/settings/theme/index.d.ts +2 -0
- package/build/react/importer/settings/theme/sizes.d.ts +7 -0
- package/build/react/importer/stores/theme.d.ts +17 -0
- package/build/react/importer/theme/index.d.ts +8 -0
- package/build/react/importer/theme/presets.d.ts +314 -0
- package/build/react/importer/theme/runtime.d.ts +62 -0
- package/build/react/importer/theme/styles.d.ts +120 -0
- package/build/react/importer/types/index.d.ts +9 -0
- package/build/react/importer/utils/colorUtils.d.ts +48 -0
- package/build/react/importer/utils/errorAnalysis.d.ts +25 -0
- package/build/react/importer/utils/getStringLengthOfChildren.d.ts +2 -0
- package/build/react/importer/utils/stringSimilarity.d.ts +1 -0
- package/build/react/importer/utils/template.d.ts +2 -0
- package/build/react/importer/utils/themeUtils.d.ts +21 -0
- package/build/react/importer/utils/utils.d.ts +19 -0
- package/build/react/index.d.ts +5 -0
- package/build/react/index.esm.js +7541 -0
- package/build/react/index.esm.js.map +1 -0
- package/build/react/index.js +112 -0
- package/build/react/index.js.map +1 -0
- package/build/react/js.d.ts +12 -0
- package/build/react/settings/defaults.d.ts +3 -0
- package/build/react/styles.d.ts +1 -0
- package/build/react/types/index.d.ts +132 -0
- package/build/react/types/theme.d.ts +153 -0
- package/build/react/utils/cn.d.ts +6 -0
- package/build/react/validation/transformationStages.d.ts +26 -0
- package/build/react/validation/transformer.d.ts +17 -0
- package/build/react/validation/validator.d.ts +23 -0
- package/build/services/api.d.ts +50 -0
- package/build/services/apiClient.d.ts +55 -0
- package/build/settings/defaults.d.ts +1 -1
- package/build/shims/react-compat-shim.d.ts +2 -0
- package/build/shims/react-hooks-shim.d.ts +2 -0
- package/build/types/index.d.ts +27 -0
- package/build/types/theme.d.ts +153 -0
- package/build/utils/cn.d.ts +1 -1
- package/build/validation/transformationStages.d.ts +26 -0
- package/build/validation/transformer.d.ts +10 -26
- package/package.json +64 -32
- package/build/bundle.css +0 -1
- package/build/importer/components/IframeWrapper/index.d.ts +0 -25
- package/build/importer/components/ImporterLayout.d.ts +0 -15
- package/build/importer/hooks/useDemoData.d.ts +0 -16
- package/build/importer/hooks/useImporterSchema.d.ts +0 -21
- package/build/importer/services/dataProcessor.d.ts +0 -38
- package/build/index.esm.js +0 -14394
- package/build/index.esm.js.map +0 -1
- package/build/index.js +0 -327
- package/build/index.js.map +0 -1
package/build/index.js
DELETED
|
@@ -1,327 +0,0 @@
|
|
|
1
|
-
"use strict";var Rd=Object.create;var _n=Object.defineProperty;var jd=Object.getOwnPropertyDescriptor;var Dd=Object.getOwnPropertyNames;var Td=Object.getPrototypeOf,Pd=Object.prototype.hasOwnProperty;var Od=(e,r,o,t)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of Dd(r))!Pd.call(e,n)&&n!==o&&_n(e,n,{get:()=>r[n],enumerable:!(t=jd(r,n))||t.enumerable});return e};var Nd=(e,r,o)=>(o=e!=null?Rd(Td(e)):{},Od(r||!e||!e.__esModule?_n(o,"default",{value:e,enumerable:!0}):o,e));Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const d=require("react/jsx-runtime"),O=require("react"),To=require("react-dom");function Ba(e){const r=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const o in e)if(o!=="default"){const t=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(r,o,t.get?t:{enumerable:!0,get:()=>e[o]})}}return r.default=e,Object.freeze(r)}const u=Ba(O),nr=Ba(To);function Kr(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var uo={exports:{}};/* @license
|
|
2
|
-
Papa Parse
|
|
3
|
-
v5.5.2
|
|
4
|
-
https://github.com/mholt/PapaParse
|
|
5
|
-
License: MIT
|
|
6
|
-
*/var Id=uo.exports,Cn;function Ad(){return Cn||(Cn=1,(function(e,r){((o,t)=>{e.exports=t()})(Id,function o(){var t=typeof self<"u"?self:typeof window<"u"?window:t!==void 0?t:{},n,a=!t.document&&!!t.postMessage,c=t.IS_PAPA_WORKER||!1,i={},s=0,l={};function f(g){this._handle=null,this._finished=!1,this._completed=!1,this._halted=!1,this._input=null,this._baseIndex=0,this._partialLine="",this._rowCount=0,this._start=0,this._nextChunk=null,this.isFirstChunk=!0,this._completeResults={data:[],errors:[],meta:{}},(function(y){var E=D(y);E.chunkSize=parseInt(E.chunkSize),y.step||y.chunk||(E.chunkSize=null),this._handle=new b(E),(this._handle.streamer=this)._config=E}).call(this,g),this.parseChunk=function(y,E){var A=parseInt(this._config.skipFirstNLines)||0;if(this.isFirstChunk&&0<A){let L=this._config.newline;L||(I=this._config.quoteChar||'"',L=this._handle.guessLineEndings(y,I)),y=[...y.split(L).slice(A)].join(L)}this.isFirstChunk&&C(this._config.beforeFirstChunk)&&(I=this._config.beforeFirstChunk(y))!==void 0&&(y=I),this.isFirstChunk=!1,this._halted=!1;var A=this._partialLine+y,I=(this._partialLine="",this._handle.parse(A,this._baseIndex,!this._finished));if(!this._handle.paused()&&!this._handle.aborted()){if(y=I.meta.cursor,A=(this._finished||(this._partialLine=A.substring(y-this._baseIndex),this._baseIndex=y),I&&I.data&&(this._rowCount+=I.data.length),this._finished||this._config.preview&&this._rowCount>=this._config.preview),c)t.postMessage({results:I,workerId:l.WORKER_ID,finished:A});else if(C(this._config.chunk)&&!E){if(this._config.chunk(I,this._handle),this._handle.paused()||this._handle.aborted())return void(this._halted=!0);this._completeResults=I=void 0}return this._config.step||this._config.chunk||(this._completeResults.data=this._completeResults.data.concat(I.data),this._completeResults.errors=this._completeResults.errors.concat(I.errors),this._completeResults.meta=I.meta),this._completed||!A||!C(this._config.complete)||I&&I.meta.aborted||(this._config.complete(this._completeResults,this._input),this._completed=!0),A||I&&I.meta.paused||this._nextChunk(),I}this._halted=!0},this._sendError=function(y){C(this._config.error)?this._config.error(y):c&&this._config.error&&t.postMessage({workerId:l.WORKER_ID,error:y,finished:!1})}}function p(g){var y;(g=g||{}).chunkSize||(g.chunkSize=l.RemoteChunkSize),f.call(this,g),this._nextChunk=a?function(){this._readChunk(),this._chunkLoaded()}:function(){this._readChunk()},this.stream=function(E){this._input=E,this._nextChunk()},this._readChunk=function(){if(this._finished)this._chunkLoaded();else{if(y=new XMLHttpRequest,this._config.withCredentials&&(y.withCredentials=this._config.withCredentials),a||(y.onload=N(this._chunkLoaded,this),y.onerror=N(this._chunkError,this)),y.open(this._config.downloadRequestBody?"POST":"GET",this._input,!a),this._config.downloadRequestHeaders){var E,A=this._config.downloadRequestHeaders;for(E in A)y.setRequestHeader(E,A[E])}var I;this._config.chunkSize&&(I=this._start+this._config.chunkSize-1,y.setRequestHeader("Range","bytes="+this._start+"-"+I));try{y.send(this._config.downloadRequestBody)}catch(L){this._chunkError(L.message)}a&&y.status===0&&this._chunkError()}},this._chunkLoaded=function(){y.readyState===4&&(y.status<200||400<=y.status?this._chunkError():(this._start+=this._config.chunkSize||y.responseText.length,this._finished=!this._config.chunkSize||this._start>=(E=>(E=E.getResponseHeader("Content-Range"))!==null?parseInt(E.substring(E.lastIndexOf("/")+1)):-1)(y),this.parseChunk(y.responseText)))},this._chunkError=function(E){E=y.statusText||E,this._sendError(new Error(E))}}function x(g){(g=g||{}).chunkSize||(g.chunkSize=l.LocalChunkSize),f.call(this,g);var y,E,A=typeof FileReader<"u";this.stream=function(I){this._input=I,E=I.slice||I.webkitSlice||I.mozSlice,A?((y=new FileReader).onload=N(this._chunkLoaded,this),y.onerror=N(this._chunkError,this)):y=new FileReaderSync,this._nextChunk()},this._nextChunk=function(){this._finished||this._config.preview&&!(this._rowCount<this._config.preview)||this._readChunk()},this._readChunk=function(){var I=this._input,L=(this._config.chunkSize&&(L=Math.min(this._start+this._config.chunkSize,this._input.size),I=E.call(I,this._start,L)),y.readAsText(I,this._config.encoding));A||this._chunkLoaded({target:{result:L}})},this._chunkLoaded=function(I){this._start+=this._config.chunkSize,this._finished=!this._config.chunkSize||this._start>=this._input.size,this.parseChunk(I.target.result)},this._chunkError=function(){this._sendError(y.error)}}function v(g){var y;f.call(this,g=g||{}),this.stream=function(E){return y=E,this._nextChunk()},this._nextChunk=function(){var E,A;if(!this._finished)return E=this._config.chunkSize,y=E?(A=y.substring(0,E),y.substring(E)):(A=y,""),this._finished=!y,this.parseChunk(A)}}function _(g){f.call(this,g=g||{});var y=[],E=!0,A=!1;this.pause=function(){f.prototype.pause.apply(this,arguments),this._input.pause()},this.resume=function(){f.prototype.resume.apply(this,arguments),this._input.resume()},this.stream=function(I){this._input=I,this._input.on("data",this._streamData),this._input.on("end",this._streamEnd),this._input.on("error",this._streamError)},this._checkIsFinished=function(){A&&y.length===1&&(this._finished=!0)},this._nextChunk=function(){this._checkIsFinished(),y.length?this.parseChunk(y.shift()):E=!0},this._streamData=N(function(I){try{y.push(typeof I=="string"?I:I.toString(this._config.encoding)),E&&(E=!1,this._checkIsFinished(),this.parseChunk(y.shift()))}catch(L){this._streamError(L)}},this),this._streamError=N(function(I){this._streamCleanUp(),this._sendError(I)},this),this._streamEnd=N(function(){this._streamCleanUp(),A=!0,this._streamData("")},this),this._streamCleanUp=N(function(){this._input.removeListener("data",this._streamData),this._input.removeListener("end",this._streamEnd),this._input.removeListener("error",this._streamError)},this)}function b(g){var y,E,A,I,L=Math.pow(2,53),P=-L,H=/^\s*-?(\d+\.?|\.\d+|\d+\.\d+)([eE][-+]?\d+)?\s*$/,M=/^((\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+([+-][0-2]\d:[0-5]\d|Z))|(\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d([+-][0-2]\d:[0-5]\d|Z))|(\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d([+-][0-2]\d:[0-5]\d|Z)))$/,T=this,R=0,j=0,q=!1,V=!1,U=[],z={data:[],errors:[],meta:{}};function Y(K){return g.skipEmptyLines==="greedy"?K.join("").trim()==="":K.length===1&&K[0].length===0}function ae(){if(z&&A&&($("Delimiter","UndetectableDelimiter","Unable to auto-detect delimiting character; defaulted to '"+l.DefaultDelimiter+"'"),A=!1),g.skipEmptyLines&&(z.data=z.data.filter(function(B){return!Y(B)})),ce()){let B=function(re,be){C(g.transformHeader)&&(re=g.transformHeader(re,be)),U.push(re)};if(z)if(Array.isArray(z.data[0])){for(var K=0;ce()&&K<z.data.length;K++)z.data[K].forEach(B);z.data.splice(0,1)}else z.data.forEach(B)}function ee(B,re){for(var be=g.header?{}:[],ue=0;ue<B.length;ue++){var pe=ue,J=B[ue],J=((de,Q)=>(ie=>(g.dynamicTypingFunction&&g.dynamicTyping[ie]===void 0&&(g.dynamicTyping[ie]=g.dynamicTypingFunction(ie)),(g.dynamicTyping[ie]||g.dynamicTyping)===!0))(de)?Q==="true"||Q==="TRUE"||Q!=="false"&&Q!=="FALSE"&&((ie=>{if(H.test(ie)&&(ie=parseFloat(ie),P<ie&&ie<L))return 1})(Q)?parseFloat(Q):M.test(Q)?new Date(Q):Q===""?null:Q):Q)(pe=g.header?ue>=U.length?"__parsed_extra":U[ue]:pe,J=g.transform?g.transform(J,pe):J);pe==="__parsed_extra"?(be[pe]=be[pe]||[],be[pe].push(J)):be[pe]=J}return g.header&&(ue>U.length?$("FieldMismatch","TooManyFields","Too many fields: expected "+U.length+" fields but parsed "+ue,j+re):ue<U.length&&$("FieldMismatch","TooFewFields","Too few fields: expected "+U.length+" fields but parsed "+ue,j+re)),be}var Z;z&&(g.header||g.dynamicTyping||g.transform)&&(Z=1,!z.data.length||Array.isArray(z.data[0])?(z.data=z.data.map(ee),Z=z.data.length):z.data=ee(z.data,0),g.header&&z.meta&&(z.meta.fields=U),j+=Z)}function ce(){return g.header&&U.length===0}function $(K,ee,Z,B){K={type:K,code:ee,message:Z},B!==void 0&&(K.row=B),z.errors.push(K)}C(g.step)&&(I=g.step,g.step=function(K){z=K,ce()?ae():(ae(),z.data.length!==0&&(R+=K.data.length,g.preview&&R>g.preview?E.abort():(z.data=z.data[0],I(z,T))))}),this.parse=function(K,ee,Z){var B=g.quoteChar||'"',B=(g.newline||(g.newline=this.guessLineEndings(K,B)),A=!1,g.delimiter?C(g.delimiter)&&(g.delimiter=g.delimiter(K),z.meta.delimiter=g.delimiter):((B=((re,be,ue,pe,J)=>{var de,Q,ie,se;J=J||[","," ","|",";",l.RECORD_SEP,l.UNIT_SEP];for(var ye=0;ye<J.length;ye++){for(var me,Ee=J[ye],F=0,W=0,te=0,le=(ie=void 0,new w({comments:pe,delimiter:Ee,newline:be,preview:10}).parse(re)),xe=0;xe<le.data.length;xe++)ue&&Y(le.data[xe])?te++:(me=le.data[xe].length,W+=me,ie===void 0?ie=me:0<me&&(F+=Math.abs(me-ie),ie=me));0<le.data.length&&(W/=le.data.length-te),(Q===void 0||F<=Q)&&(se===void 0||se<W)&&1.99<W&&(Q=F,de=Ee,se=W)}return{successful:!!(g.delimiter=de),bestDelimiter:de}})(K,g.newline,g.skipEmptyLines,g.comments,g.delimitersToGuess)).successful?g.delimiter=B.bestDelimiter:(A=!0,g.delimiter=l.DefaultDelimiter),z.meta.delimiter=g.delimiter),D(g));return g.preview&&g.header&&B.preview++,y=K,E=new w(B),z=E.parse(y,ee,Z),ae(),q?{meta:{paused:!0}}:z||{meta:{paused:!1}}},this.paused=function(){return q},this.pause=function(){q=!0,E.abort(),y=C(g.chunk)?"":y.substring(E.getCharIndex())},this.resume=function(){T.streamer._halted?(q=!1,T.streamer.parseChunk(y,!0)):setTimeout(T.resume,3)},this.aborted=function(){return V},this.abort=function(){V=!0,E.abort(),z.meta.aborted=!0,C(g.complete)&&g.complete(z),y=""},this.guessLineEndings=function(re,B){re=re.substring(0,1048576);var B=new RegExp(m(B)+"([^]*?)"+m(B),"gm"),Z=(re=re.replace(B,"")).split("\r"),B=re.split(`
|
|
7
|
-
`),re=1<B.length&&B[0].length<Z[0].length;if(Z.length===1||re)return`
|
|
8
|
-
`;for(var be=0,ue=0;ue<Z.length;ue++)Z[ue][0]===`
|
|
9
|
-
`&&be++;return be>=Z.length/2?`\r
|
|
10
|
-
`:"\r"}}function m(g){return g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function w(g){var y=(g=g||{}).delimiter,E=g.newline,A=g.comments,I=g.step,L=g.preview,P=g.fastMode,H=null,M=!1,T=g.quoteChar==null?'"':g.quoteChar,R=T;if(g.escapeChar!==void 0&&(R=g.escapeChar),(typeof y!="string"||-1<l.BAD_DELIMITERS.indexOf(y))&&(y=","),A===y)throw new Error("Comment character same as delimiter");A===!0?A="#":(typeof A!="string"||-1<l.BAD_DELIMITERS.indexOf(A))&&(A=!1),E!==`
|
|
11
|
-
`&&E!=="\r"&&E!==`\r
|
|
12
|
-
`&&(E=`
|
|
13
|
-
`);var j=0,q=!1;this.parse=function(V,U,z){if(typeof V!="string")throw new Error("Input must be a string");var Y=V.length,ae=y.length,ce=E.length,$=A.length,K=C(I),ee=[],Z=[],B=[],re=j=0;if(!V)return F();if(P||P!==!1&&V.indexOf(T)===-1){for(var be=V.split(E),ue=0;ue<be.length;ue++){if(B=be[ue],j+=B.length,ue!==be.length-1)j+=E.length;else if(z)return F();if(!A||B.substring(0,$)!==A){if(K){if(ee=[],se(B.split(y)),W(),q)return F()}else se(B.split(y));if(L&&L<=ue)return ee=ee.slice(0,L),F(!0)}}return F()}for(var pe=V.indexOf(y,j),J=V.indexOf(E,j),de=new RegExp(m(R)+m(T),"g"),Q=V.indexOf(T,j);;)if(V[j]===T)for(Q=j,j++;;){if((Q=V.indexOf(T,Q+1))===-1)return z||Z.push({type:"Quotes",code:"MissingQuotes",message:"Quoted field unterminated",row:ee.length,index:j}),me();if(Q===Y-1)return me(V.substring(j,Q).replace(de,T));if(T===R&&V[Q+1]===R)Q++;else if(T===R||Q===0||V[Q-1]!==R){pe!==-1&&pe<Q+1&&(pe=V.indexOf(y,Q+1));var ie=ye((J=J!==-1&&J<Q+1?V.indexOf(E,Q+1):J)===-1?pe:Math.min(pe,J));if(V.substr(Q+1+ie,ae)===y){B.push(V.substring(j,Q).replace(de,T)),V[j=Q+1+ie+ae]!==T&&(Q=V.indexOf(T,j)),pe=V.indexOf(y,j),J=V.indexOf(E,j);break}if(ie=ye(J),V.substring(Q+1+ie,Q+1+ie+ce)===E){if(B.push(V.substring(j,Q).replace(de,T)),Ee(Q+1+ie+ce),pe=V.indexOf(y,j),Q=V.indexOf(T,j),K&&(W(),q))return F();if(L&&ee.length>=L)return F(!0);break}Z.push({type:"Quotes",code:"InvalidQuotes",message:"Trailing quote on quoted field is malformed",row:ee.length,index:j}),Q++}}else if(A&&B.length===0&&V.substring(j,j+$)===A){if(J===-1)return F();j=J+ce,J=V.indexOf(E,j),pe=V.indexOf(y,j)}else if(pe!==-1&&(pe<J||J===-1))B.push(V.substring(j,pe)),j=pe+ae,pe=V.indexOf(y,j);else{if(J===-1)break;if(B.push(V.substring(j,J)),Ee(J+ce),K&&(W(),q))return F();if(L&&ee.length>=L)return F(!0)}return me();function se(te){ee.push(te),re=j}function ye(te){var le=0;return le=te!==-1&&(te=V.substring(Q+1,te))&&te.trim()===""?te.length:le}function me(te){return z||(te===void 0&&(te=V.substring(j)),B.push(te),j=Y,se(B),K&&W()),F()}function Ee(te){j=te,se(B),B=[],J=V.indexOf(E,j)}function F(te){if(g.header&&!U&&ee.length&&!M){var le=ee[0],xe={},Te=new Set(le);let Ae=!1;for(let Pe=0;Pe<le.length;Pe++){let Re=le[Pe];if(xe[Re=C(g.transformHeader)?g.transformHeader(Re,Pe):Re]){let Ge,sr=xe[Re];for(;Ge=Re+"_"+sr,sr++,Te.has(Ge););Te.add(Ge),le[Pe]=Ge,xe[Re]++,Ae=!0,(H=H===null?{}:H)[Ge]=Re}else xe[Re]=1,le[Pe]=Re;Te.add(Re)}Ae&&console.warn("Duplicate headers found and renamed."),M=!0}return{data:ee,errors:Z,meta:{delimiter:y,linebreak:E,aborted:q,truncated:!!te,cursor:re+(U||0),renamedHeaders:H}}}function W(){I(F()),ee=[],Z=[]}},this.abort=function(){q=!0},this.getCharIndex=function(){return j}}function h(g){var y=g.data,E=i[y.workerId],A=!1;if(y.error)E.userError(y.error,y.file);else if(y.results&&y.results.data){var I={abort:function(){A=!0,k(y.workerId,{data:[],errors:[],meta:{aborted:!0}})},pause:S,resume:S};if(C(E.userStep)){for(var L=0;L<y.results.data.length&&(E.userStep({data:y.results.data[L],errors:y.results.errors,meta:y.results.meta},I),!A);L++);delete y.results}else C(E.userChunk)&&(E.userChunk(y.results,I,y.file),delete y.results)}y.finished&&!A&&k(y.workerId,y.results)}function k(g,y){var E=i[g];C(E.userComplete)&&E.userComplete(y),E.terminate(),delete i[g]}function S(){throw new Error("Not implemented.")}function D(g){if(typeof g!="object"||g===null)return g;var y,E=Array.isArray(g)?[]:{};for(y in g)E[y]=D(g[y]);return E}function N(g,y){return function(){g.apply(y,arguments)}}function C(g){return typeof g=="function"}return l.parse=function(g,y){var E=(y=y||{}).dynamicTyping||!1;if(C(E)&&(y.dynamicTypingFunction=E,E={}),y.dynamicTyping=E,y.transform=!!C(y.transform)&&y.transform,!y.worker||!l.WORKERS_SUPPORTED)return E=null,l.NODE_STREAM_INPUT,typeof g=="string"?(g=(A=>A.charCodeAt(0)!==65279?A:A.slice(1))(g),E=new(y.download?p:v)(y)):g.readable===!0&&C(g.read)&&C(g.on)?E=new _(y):(t.File&&g instanceof File||g instanceof Object)&&(E=new x(y)),E.stream(g);(E=(()=>{var A;return!!l.WORKERS_SUPPORTED&&(A=(()=>{var I=t.URL||t.webkitURL||null,L=o.toString();return l.BLOB_URL||(l.BLOB_URL=I.createObjectURL(new Blob(["var global = (function() { if (typeof self !== 'undefined') { return self; } if (typeof window !== 'undefined') { return window; } if (typeof global !== 'undefined') { return global; } return {}; })(); global.IS_PAPA_WORKER=true; ","(",L,")();"],{type:"text/javascript"})))})(),(A=new t.Worker(A)).onmessage=h,A.id=s++,i[A.id]=A)})()).userStep=y.step,E.userChunk=y.chunk,E.userComplete=y.complete,E.userError=y.error,y.step=C(y.step),y.chunk=C(y.chunk),y.complete=C(y.complete),y.error=C(y.error),delete y.worker,E.postMessage({input:g,config:y,workerId:E.id})},l.unparse=function(g,y){var E=!1,A=!0,I=",",L=`\r
|
|
14
|
-
`,P='"',H=P+P,M=!1,T=null,R=!1,j=((()=>{if(typeof y=="object"){if(typeof y.delimiter!="string"||l.BAD_DELIMITERS.filter(function(U){return y.delimiter.indexOf(U)!==-1}).length||(I=y.delimiter),typeof y.quotes!="boolean"&&typeof y.quotes!="function"&&!Array.isArray(y.quotes)||(E=y.quotes),typeof y.skipEmptyLines!="boolean"&&typeof y.skipEmptyLines!="string"||(M=y.skipEmptyLines),typeof y.newline=="string"&&(L=y.newline),typeof y.quoteChar=="string"&&(P=y.quoteChar),typeof y.header=="boolean"&&(A=y.header),Array.isArray(y.columns)){if(y.columns.length===0)throw new Error("Option columns is empty");T=y.columns}y.escapeChar!==void 0&&(H=y.escapeChar+P),y.escapeFormulae instanceof RegExp?R=y.escapeFormulae:typeof y.escapeFormulae=="boolean"&&y.escapeFormulae&&(R=/^[=+\-@\t\r].*$/)}})(),new RegExp(m(P),"g"));if(typeof g=="string"&&(g=JSON.parse(g)),Array.isArray(g)){if(!g.length||Array.isArray(g[0]))return q(null,g,M);if(typeof g[0]=="object")return q(T||Object.keys(g[0]),g,M)}else if(typeof g=="object")return typeof g.data=="string"&&(g.data=JSON.parse(g.data)),Array.isArray(g.data)&&(g.fields||(g.fields=g.meta&&g.meta.fields||T),g.fields||(g.fields=Array.isArray(g.data[0])?g.fields:typeof g.data[0]=="object"?Object.keys(g.data[0]):[]),Array.isArray(g.data[0])||typeof g.data[0]=="object"||(g.data=[g.data])),q(g.fields||[],g.data||[],M);throw new Error("Unable to serialize unrecognized input");function q(U,z,Y){var ae="",ce=(typeof U=="string"&&(U=JSON.parse(U)),typeof z=="string"&&(z=JSON.parse(z)),Array.isArray(U)&&0<U.length),$=!Array.isArray(z[0]);if(ce&&A){for(var K=0;K<U.length;K++)0<K&&(ae+=I),ae+=V(U[K],K);0<z.length&&(ae+=L)}for(var ee=0;ee<z.length;ee++){var Z=(ce?U:z[ee]).length,B=!1,re=ce?Object.keys(z[ee]).length===0:z[ee].length===0;if(Y&&!ce&&(B=Y==="greedy"?z[ee].join("").trim()==="":z[ee].length===1&&z[ee][0].length===0),Y==="greedy"&&ce){for(var be=[],ue=0;ue<Z;ue++){var pe=$?U[ue]:ue;be.push(z[ee][pe])}B=be.join("").trim()===""}if(!B){for(var J=0;J<Z;J++){0<J&&!re&&(ae+=I);var de=ce&&$?U[J]:J;ae+=V(z[ee][de],J)}ee<z.length-1&&(!Y||0<Z&&!re)&&(ae+=L)}}return ae}function V(U,z){var Y,ae;return U==null?"":U.constructor===Date?JSON.stringify(U).slice(1,25):(ae=!1,R&&typeof U=="string"&&R.test(U)&&(U="'"+U,ae=!0),Y=U.toString().replace(j,H),(ae=ae||E===!0||typeof E=="function"&&E(U,z)||Array.isArray(E)&&E[z]||((ce,$)=>{for(var K=0;K<$.length;K++)if(-1<ce.indexOf($[K]))return!0;return!1})(Y,l.BAD_DELIMITERS)||-1<Y.indexOf(I)||Y.charAt(0)===" "||Y.charAt(Y.length-1)===" ")?P+Y+P:Y)}},l.RECORD_SEP="",l.UNIT_SEP="",l.BYTE_ORDER_MARK="\uFEFF",l.BAD_DELIMITERS=["\r",`
|
|
15
|
-
`,'"',l.BYTE_ORDER_MARK],l.WORKERS_SUPPORTED=!a&&!!t.Worker,l.NODE_STREAM_INPUT=1,l.LocalChunkSize=10485760,l.RemoteChunkSize=5242880,l.DefaultDelimiter=",",l.Parser=w,l.ParserHandle=b,l.NetworkStreamer=p,l.FileStreamer=x,l.StringStreamer=v,l.ReadableStreamStreamer=_,t.jQuery&&((n=t.jQuery).fn.parse=function(g){var y=g.config||{},E=[];return this.each(function(L){if(!(n(this).prop("tagName").toUpperCase()==="INPUT"&&n(this).attr("type").toLowerCase()==="file"&&t.FileReader)||!this.files||this.files.length===0)return!0;for(var P=0;P<this.files.length;P++)E.push({file:this.files[P],inputElem:this,instanceConfig:n.extend({},y)})}),A(),this;function A(){if(E.length===0)C(g.complete)&&g.complete();else{var L,P,H,M,T=E[0];if(C(g.before)){var R=g.before(T.file,T.inputElem);if(typeof R=="object"){if(R.action==="abort")return L="AbortError",P=T.file,H=T.inputElem,M=R.reason,void(C(g.error)&&g.error({name:L},P,H,M));if(R.action==="skip")return void I();typeof R.config=="object"&&(T.instanceConfig=n.extend(T.instanceConfig,R.config))}else if(R==="skip")return void I()}var j=T.instanceConfig.complete;T.instanceConfig.complete=function(q){C(j)&&j(q,T.file,T.inputElem),I()},l.parse(T.file,T.instanceConfig)}}function I(){E.splice(0,1),A()}}),c&&(t.onmessage=function(g){g=g.data,l.WORKER_ID===void 0&&g&&(l.WORKER_ID=g.workerId),typeof g.input=="string"?t.postMessage({workerId:l.WORKER_ID,results:l.parse(g.input,g.config),finished:!0}):(t.File&&g.input instanceof File||g.input instanceof Object)&&(g=l.parse(g.input,g.config))&&t.postMessage({workerId:l.WORKER_ID,results:g,finished:!0})}),(p.prototype=Object.create(f.prototype)).constructor=p,(x.prototype=Object.create(f.prototype)).constructor=x,(v.prototype=Object.create(v.prototype)).constructor=v,(_.prototype=Object.create(f.prototype)).constructor=_,l})})(uo)),uo.exports}var Md=Ad();const Sn=Kr(Md),Ld={icon:{small:"1em"}};function Ha(e){var r,o,t="";if(typeof e=="string"||typeof e=="number")t+=e;else if(typeof e=="object")if(Array.isArray(e)){var n=e.length;for(r=0;r<n;r++)e[r]&&(o=Ha(e[r]))&&(t&&(t+=" "),t+=o)}else for(o in e)e[o]&&(t&&(t+=" "),t+=o);return t}function qa(){for(var e,r,o=0,t="",n=arguments.length;o<n;o++)(e=arguments[o])&&(r=Ha(e))&&(t&&(t+=" "),t+=r);return t}const Xt="-",zd=e=>{const r=$d(e),{conflictingClassGroups:o,conflictingClassGroupModifiers:t}=e;return{getClassGroupId:c=>{const i=c.split(Xt);return i[0]===""&&i.length!==1&&i.shift(),Ua(i,r)||Fd(c)},getConflictingClassGroupIds:(c,i)=>{const s=o[c]||[];return i&&t[c]?[...s,...t[c]]:s}}},Ua=(e,r)=>{if(e.length===0)return r.classGroupId;const o=e[0],t=r.nextPart.get(o),n=t?Ua(e.slice(1),t):void 0;if(n)return n;if(r.validators.length===0)return;const a=e.join(Xt);return r.validators.find(({validator:c})=>c(a))?.classGroupId},En=/^\[(.+)\]$/,Fd=e=>{if(En.test(e)){const r=En.exec(e)[1],o=r?.substring(0,r.indexOf(":"));if(o)return"arbitrary.."+o}},$d=e=>{const{theme:r,classGroups:o}=e,t={nextPart:new Map,validators:[]};for(const n in o)kt(o[n],t,n,r);return t},kt=(e,r,o,t)=>{e.forEach(n=>{if(typeof n=="string"){const a=n===""?r:Rn(r,n);a.classGroupId=o;return}if(typeof n=="function"){if(Vd(n)){kt(n(t),r,o,t);return}r.validators.push({validator:n,classGroupId:o});return}Object.entries(n).forEach(([a,c])=>{kt(c,Rn(r,a),o,t)})})},Rn=(e,r)=>{let o=e;return r.split(Xt).forEach(t=>{o.nextPart.has(t)||o.nextPart.set(t,{nextPart:new Map,validators:[]}),o=o.nextPart.get(t)}),o},Vd=e=>e.isThemeGetter,Wd=e=>{if(e<1)return{get:()=>{},set:()=>{}};let r=0,o=new Map,t=new Map;const n=(a,c)=>{o.set(a,c),r++,r>e&&(r=0,t=o,o=new Map)};return{get(a){let c=o.get(a);if(c!==void 0)return c;if((c=t.get(a))!==void 0)return n(a,c),c},set(a,c){o.has(a)?o.set(a,c):n(a,c)}}},_t="!",Ct=":",Bd=Ct.length,Hd=e=>{const{prefix:r,experimentalParseClassName:o}=e;let t=n=>{const a=[];let c=0,i=0,s=0,l;for(let _=0;_<n.length;_++){let b=n[_];if(c===0&&i===0){if(b===Ct){a.push(n.slice(s,_)),s=_+Bd;continue}if(b==="/"){l=_;continue}}b==="["?c++:b==="]"?c--:b==="("?i++:b===")"&&i--}const f=a.length===0?n:n.substring(s),p=qd(f),x=p!==f,v=l&&l>s?l-s:void 0;return{modifiers:a,hasImportantModifier:x,baseClassName:p,maybePostfixModifierPosition:v}};if(r){const n=r+Ct,a=t;t=c=>c.startsWith(n)?a(c.substring(n.length)):{isExternal:!0,modifiers:[],hasImportantModifier:!1,baseClassName:c,maybePostfixModifierPosition:void 0}}if(o){const n=t;t=a=>o({className:a,parseClassName:n})}return t},qd=e=>e.endsWith(_t)?e.substring(0,e.length-1):e.startsWith(_t)?e.substring(1):e,Ud=e=>{const r=Object.fromEntries(e.orderSensitiveModifiers.map(t=>[t,!0]));return t=>{if(t.length<=1)return t;const n=[];let a=[];return t.forEach(c=>{c[0]==="["||r[c]?(n.push(...a.sort(),c),a=[]):a.push(c)}),n.push(...a.sort()),n}},Yd=e=>({cache:Wd(e.cacheSize),parseClassName:Hd(e),sortModifiers:Ud(e),...zd(e)}),Kd=/\s+/,Gd=(e,r)=>{const{parseClassName:o,getClassGroupId:t,getConflictingClassGroupIds:n,sortModifiers:a}=r,c=[],i=e.trim().split(Kd);let s="";for(let l=i.length-1;l>=0;l-=1){const f=i[l],{isExternal:p,modifiers:x,hasImportantModifier:v,baseClassName:_,maybePostfixModifierPosition:b}=o(f);if(p){s=f+(s.length>0?" "+s:s);continue}let m=!!b,w=t(m?_.substring(0,b):_);if(!w){if(!m){s=f+(s.length>0?" "+s:s);continue}if(w=t(_),!w){s=f+(s.length>0?" "+s:s);continue}m=!1}const h=a(x).join(":"),k=v?h+_t:h,S=k+w;if(c.includes(S))continue;c.push(S);const D=n(w,m);for(let N=0;N<D.length;++N){const C=D[N];c.push(k+C)}s=f+(s.length>0?" "+s:s)}return s};function Xd(){let e=0,r,o,t="";for(;e<arguments.length;)(r=arguments[e++])&&(o=Ya(r))&&(t&&(t+=" "),t+=o);return t}const Ya=e=>{if(typeof e=="string")return e;let r,o="";for(let t=0;t<e.length;t++)e[t]&&(r=Ya(e[t]))&&(o&&(o+=" "),o+=r);return o};function Zd(e,...r){let o,t,n,a=c;function c(s){const l=r.reduce((f,p)=>p(f),e());return o=Yd(l),t=o.cache.get,n=o.cache.set,a=i,i(s)}function i(s){const l=t(s);if(l)return l;const f=Gd(s,o);return n(s,f),f}return function(){return a(Xd.apply(null,arguments))}}const ke=e=>{const r=o=>o[e]||[];return r.isThemeGetter=!0,r},Ka=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,Ga=/^\((?:(\w[\w-]*):)?(.+)\)$/i,Jd=/^\d+\/\d+$/,Qd=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,es=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,rs=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,os=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,ts=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,kr=e=>Jd.test(e),fe=e=>!!e&&!Number.isNaN(Number(e)),Qe=e=>!!e&&Number.isInteger(Number(e)),Zo=e=>e.endsWith("%")&&fe(e.slice(0,-1)),Xe=e=>Qd.test(e),ns=()=>!0,as=e=>es.test(e)&&!rs.test(e),Xa=()=>!1,cs=e=>os.test(e),is=e=>ts.test(e),ls=e=>!G(e)&&!X(e),ds=e=>Nr(e,Qa,Xa),G=e=>Ka.test(e),ur=e=>Nr(e,ec,as),Jo=e=>Nr(e,ps,fe),jn=e=>Nr(e,Za,Xa),ss=e=>Nr(e,Ja,is),Jr=e=>Nr(e,rc,cs),X=e=>Ga.test(e),Fr=e=>Ir(e,ec),us=e=>Ir(e,gs),Dn=e=>Ir(e,Za),fs=e=>Ir(e,Qa),bs=e=>Ir(e,Ja),Qr=e=>Ir(e,rc,!0),Nr=(e,r,o)=>{const t=Ka.exec(e);return t?t[1]?r(t[1]):o(t[2]):!1},Ir=(e,r,o=!1)=>{const t=Ga.exec(e);return t?t[1]?r(t[1]):o:!1},Za=e=>e==="position"||e==="percentage",Ja=e=>e==="image"||e==="url",Qa=e=>e==="length"||e==="size"||e==="bg-size",ec=e=>e==="length",ps=e=>e==="number",gs=e=>e==="family-name",rc=e=>e==="shadow",ms=()=>{const e=ke("color"),r=ke("font"),o=ke("text"),t=ke("font-weight"),n=ke("tracking"),a=ke("leading"),c=ke("breakpoint"),i=ke("container"),s=ke("spacing"),l=ke("radius"),f=ke("shadow"),p=ke("inset-shadow"),x=ke("text-shadow"),v=ke("drop-shadow"),_=ke("blur"),b=ke("perspective"),m=ke("aspect"),w=ke("ease"),h=ke("animate"),k=()=>["auto","avoid","all","avoid-page","page","left","right","column"],S=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],D=()=>[...S(),X,G],N=()=>["auto","hidden","clip","visible","scroll"],C=()=>["auto","contain","none"],g=()=>[X,G,s],y=()=>[kr,"full","auto",...g()],E=()=>[Qe,"none","subgrid",X,G],A=()=>["auto",{span:["full",Qe,X,G]},Qe,X,G],I=()=>[Qe,"auto",X,G],L=()=>["auto","min","max","fr",X,G],P=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],H=()=>["start","end","center","stretch","center-safe","end-safe"],M=()=>["auto",...g()],T=()=>[kr,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...g()],R=()=>[e,X,G],j=()=>[...S(),Dn,jn,{position:[X,G]}],q=()=>["no-repeat",{repeat:["","x","y","space","round"]}],V=()=>["auto","cover","contain",fs,ds,{size:[X,G]}],U=()=>[Zo,Fr,ur],z=()=>["","none","full",l,X,G],Y=()=>["",fe,Fr,ur],ae=()=>["solid","dashed","dotted","double"],ce=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],$=()=>[fe,Zo,Dn,jn],K=()=>["","none",_,X,G],ee=()=>["none",fe,X,G],Z=()=>["none",fe,X,G],B=()=>[fe,X,G],re=()=>[kr,"full",...g()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[Xe],breakpoint:[Xe],color:[ns],container:[Xe],"drop-shadow":[Xe],ease:["in","out","in-out"],font:[ls],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[Xe],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[Xe],shadow:[Xe],spacing:["px",fe],text:[Xe],"text-shadow":[Xe],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",kr,G,X,m]}],container:["container"],columns:[{columns:[fe,G,X,i]}],"break-after":[{"break-after":k()}],"break-before":[{"break-before":k()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:D()}],overflow:[{overflow:N()}],"overflow-x":[{"overflow-x":N()}],"overflow-y":[{"overflow-y":N()}],overscroll:[{overscroll:C()}],"overscroll-x":[{"overscroll-x":C()}],"overscroll-y":[{"overscroll-y":C()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:y()}],"inset-x":[{"inset-x":y()}],"inset-y":[{"inset-y":y()}],start:[{start:y()}],end:[{end:y()}],top:[{top:y()}],right:[{right:y()}],bottom:[{bottom:y()}],left:[{left:y()}],visibility:["visible","invisible","collapse"],z:[{z:[Qe,"auto",X,G]}],basis:[{basis:[kr,"full","auto",i,...g()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[fe,kr,"auto","initial","none",G]}],grow:[{grow:["",fe,X,G]}],shrink:[{shrink:["",fe,X,G]}],order:[{order:[Qe,"first","last","none",X,G]}],"grid-cols":[{"grid-cols":E()}],"col-start-end":[{col:A()}],"col-start":[{"col-start":I()}],"col-end":[{"col-end":I()}],"grid-rows":[{"grid-rows":E()}],"row-start-end":[{row:A()}],"row-start":[{"row-start":I()}],"row-end":[{"row-end":I()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":L()}],"auto-rows":[{"auto-rows":L()}],gap:[{gap:g()}],"gap-x":[{"gap-x":g()}],"gap-y":[{"gap-y":g()}],"justify-content":[{justify:[...P(),"normal"]}],"justify-items":[{"justify-items":[...H(),"normal"]}],"justify-self":[{"justify-self":["auto",...H()]}],"align-content":[{content:["normal",...P()]}],"align-items":[{items:[...H(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...H(),{baseline:["","last"]}]}],"place-content":[{"place-content":P()}],"place-items":[{"place-items":[...H(),"baseline"]}],"place-self":[{"place-self":["auto",...H()]}],p:[{p:g()}],px:[{px:g()}],py:[{py:g()}],ps:[{ps:g()}],pe:[{pe:g()}],pt:[{pt:g()}],pr:[{pr:g()}],pb:[{pb:g()}],pl:[{pl:g()}],m:[{m:M()}],mx:[{mx:M()}],my:[{my:M()}],ms:[{ms:M()}],me:[{me:M()}],mt:[{mt:M()}],mr:[{mr:M()}],mb:[{mb:M()}],ml:[{ml:M()}],"space-x":[{"space-x":g()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":g()}],"space-y-reverse":["space-y-reverse"],size:[{size:T()}],w:[{w:[i,"screen",...T()]}],"min-w":[{"min-w":[i,"screen","none",...T()]}],"max-w":[{"max-w":[i,"screen","none","prose",{screen:[c]},...T()]}],h:[{h:["screen",...T()]}],"min-h":[{"min-h":["screen","none",...T()]}],"max-h":[{"max-h":["screen",...T()]}],"font-size":[{text:["base",o,Fr,ur]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[t,X,Jo]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",Zo,G]}],"font-family":[{font:[us,G,r]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[n,X,G]}],"line-clamp":[{"line-clamp":[fe,"none",X,Jo]}],leading:[{leading:[a,...g()]}],"list-image":[{"list-image":["none",X,G]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",X,G]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:R()}],"text-color":[{text:R()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...ae(),"wavy"]}],"text-decoration-thickness":[{decoration:[fe,"from-font","auto",X,ur]}],"text-decoration-color":[{decoration:R()}],"underline-offset":[{"underline-offset":[fe,"auto",X,G]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:g()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",X,G]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",X,G]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:j()}],"bg-repeat":[{bg:q()}],"bg-size":[{bg:V()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},Qe,X,G],radial:["",X,G],conic:[Qe,X,G]},bs,ss]}],"bg-color":[{bg:R()}],"gradient-from-pos":[{from:U()}],"gradient-via-pos":[{via:U()}],"gradient-to-pos":[{to:U()}],"gradient-from":[{from:R()}],"gradient-via":[{via:R()}],"gradient-to":[{to:R()}],rounded:[{rounded:z()}],"rounded-s":[{"rounded-s":z()}],"rounded-e":[{"rounded-e":z()}],"rounded-t":[{"rounded-t":z()}],"rounded-r":[{"rounded-r":z()}],"rounded-b":[{"rounded-b":z()}],"rounded-l":[{"rounded-l":z()}],"rounded-ss":[{"rounded-ss":z()}],"rounded-se":[{"rounded-se":z()}],"rounded-ee":[{"rounded-ee":z()}],"rounded-es":[{"rounded-es":z()}],"rounded-tl":[{"rounded-tl":z()}],"rounded-tr":[{"rounded-tr":z()}],"rounded-br":[{"rounded-br":z()}],"rounded-bl":[{"rounded-bl":z()}],"border-w":[{border:Y()}],"border-w-x":[{"border-x":Y()}],"border-w-y":[{"border-y":Y()}],"border-w-s":[{"border-s":Y()}],"border-w-e":[{"border-e":Y()}],"border-w-t":[{"border-t":Y()}],"border-w-r":[{"border-r":Y()}],"border-w-b":[{"border-b":Y()}],"border-w-l":[{"border-l":Y()}],"divide-x":[{"divide-x":Y()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":Y()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...ae(),"hidden","none"]}],"divide-style":[{divide:[...ae(),"hidden","none"]}],"border-color":[{border:R()}],"border-color-x":[{"border-x":R()}],"border-color-y":[{"border-y":R()}],"border-color-s":[{"border-s":R()}],"border-color-e":[{"border-e":R()}],"border-color-t":[{"border-t":R()}],"border-color-r":[{"border-r":R()}],"border-color-b":[{"border-b":R()}],"border-color-l":[{"border-l":R()}],"divide-color":[{divide:R()}],"outline-style":[{outline:[...ae(),"none","hidden"]}],"outline-offset":[{"outline-offset":[fe,X,G]}],"outline-w":[{outline:["",fe,Fr,ur]}],"outline-color":[{outline:R()}],shadow:[{shadow:["","none",f,Qr,Jr]}],"shadow-color":[{shadow:R()}],"inset-shadow":[{"inset-shadow":["none",p,Qr,Jr]}],"inset-shadow-color":[{"inset-shadow":R()}],"ring-w":[{ring:Y()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:R()}],"ring-offset-w":[{"ring-offset":[fe,ur]}],"ring-offset-color":[{"ring-offset":R()}],"inset-ring-w":[{"inset-ring":Y()}],"inset-ring-color":[{"inset-ring":R()}],"text-shadow":[{"text-shadow":["none",x,Qr,Jr]}],"text-shadow-color":[{"text-shadow":R()}],opacity:[{opacity:[fe,X,G]}],"mix-blend":[{"mix-blend":[...ce(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":ce()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[fe]}],"mask-image-linear-from-pos":[{"mask-linear-from":$()}],"mask-image-linear-to-pos":[{"mask-linear-to":$()}],"mask-image-linear-from-color":[{"mask-linear-from":R()}],"mask-image-linear-to-color":[{"mask-linear-to":R()}],"mask-image-t-from-pos":[{"mask-t-from":$()}],"mask-image-t-to-pos":[{"mask-t-to":$()}],"mask-image-t-from-color":[{"mask-t-from":R()}],"mask-image-t-to-color":[{"mask-t-to":R()}],"mask-image-r-from-pos":[{"mask-r-from":$()}],"mask-image-r-to-pos":[{"mask-r-to":$()}],"mask-image-r-from-color":[{"mask-r-from":R()}],"mask-image-r-to-color":[{"mask-r-to":R()}],"mask-image-b-from-pos":[{"mask-b-from":$()}],"mask-image-b-to-pos":[{"mask-b-to":$()}],"mask-image-b-from-color":[{"mask-b-from":R()}],"mask-image-b-to-color":[{"mask-b-to":R()}],"mask-image-l-from-pos":[{"mask-l-from":$()}],"mask-image-l-to-pos":[{"mask-l-to":$()}],"mask-image-l-from-color":[{"mask-l-from":R()}],"mask-image-l-to-color":[{"mask-l-to":R()}],"mask-image-x-from-pos":[{"mask-x-from":$()}],"mask-image-x-to-pos":[{"mask-x-to":$()}],"mask-image-x-from-color":[{"mask-x-from":R()}],"mask-image-x-to-color":[{"mask-x-to":R()}],"mask-image-y-from-pos":[{"mask-y-from":$()}],"mask-image-y-to-pos":[{"mask-y-to":$()}],"mask-image-y-from-color":[{"mask-y-from":R()}],"mask-image-y-to-color":[{"mask-y-to":R()}],"mask-image-radial":[{"mask-radial":[X,G]}],"mask-image-radial-from-pos":[{"mask-radial-from":$()}],"mask-image-radial-to-pos":[{"mask-radial-to":$()}],"mask-image-radial-from-color":[{"mask-radial-from":R()}],"mask-image-radial-to-color":[{"mask-radial-to":R()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":S()}],"mask-image-conic-pos":[{"mask-conic":[fe]}],"mask-image-conic-from-pos":[{"mask-conic-from":$()}],"mask-image-conic-to-pos":[{"mask-conic-to":$()}],"mask-image-conic-from-color":[{"mask-conic-from":R()}],"mask-image-conic-to-color":[{"mask-conic-to":R()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:j()}],"mask-repeat":[{mask:q()}],"mask-size":[{mask:V()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",X,G]}],filter:[{filter:["","none",X,G]}],blur:[{blur:K()}],brightness:[{brightness:[fe,X,G]}],contrast:[{contrast:[fe,X,G]}],"drop-shadow":[{"drop-shadow":["","none",v,Qr,Jr]}],"drop-shadow-color":[{"drop-shadow":R()}],grayscale:[{grayscale:["",fe,X,G]}],"hue-rotate":[{"hue-rotate":[fe,X,G]}],invert:[{invert:["",fe,X,G]}],saturate:[{saturate:[fe,X,G]}],sepia:[{sepia:["",fe,X,G]}],"backdrop-filter":[{"backdrop-filter":["","none",X,G]}],"backdrop-blur":[{"backdrop-blur":K()}],"backdrop-brightness":[{"backdrop-brightness":[fe,X,G]}],"backdrop-contrast":[{"backdrop-contrast":[fe,X,G]}],"backdrop-grayscale":[{"backdrop-grayscale":["",fe,X,G]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[fe,X,G]}],"backdrop-invert":[{"backdrop-invert":["",fe,X,G]}],"backdrop-opacity":[{"backdrop-opacity":[fe,X,G]}],"backdrop-saturate":[{"backdrop-saturate":[fe,X,G]}],"backdrop-sepia":[{"backdrop-sepia":["",fe,X,G]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":g()}],"border-spacing-x":[{"border-spacing-x":g()}],"border-spacing-y":[{"border-spacing-y":g()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",X,G]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[fe,"initial",X,G]}],ease:[{ease:["linear","initial",w,X,G]}],delay:[{delay:[fe,X,G]}],animate:[{animate:["none",h,X,G]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[b,X,G]}],"perspective-origin":[{"perspective-origin":D()}],rotate:[{rotate:ee()}],"rotate-x":[{"rotate-x":ee()}],"rotate-y":[{"rotate-y":ee()}],"rotate-z":[{"rotate-z":ee()}],scale:[{scale:Z()}],"scale-x":[{"scale-x":Z()}],"scale-y":[{"scale-y":Z()}],"scale-z":[{"scale-z":Z()}],"scale-3d":["scale-3d"],skew:[{skew:B()}],"skew-x":[{"skew-x":B()}],"skew-y":[{"skew-y":B()}],transform:[{transform:[X,G,"","none","gpu","cpu"]}],"transform-origin":[{origin:D()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:re()}],"translate-x":[{"translate-x":re()}],"translate-y":[{"translate-y":re()}],"translate-z":[{"translate-z":re()}],"translate-none":["translate-none"],accent:[{accent:R()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:R()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",X,G]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":g()}],"scroll-mx":[{"scroll-mx":g()}],"scroll-my":[{"scroll-my":g()}],"scroll-ms":[{"scroll-ms":g()}],"scroll-me":[{"scroll-me":g()}],"scroll-mt":[{"scroll-mt":g()}],"scroll-mr":[{"scroll-mr":g()}],"scroll-mb":[{"scroll-mb":g()}],"scroll-ml":[{"scroll-ml":g()}],"scroll-p":[{"scroll-p":g()}],"scroll-px":[{"scroll-px":g()}],"scroll-py":[{"scroll-py":g()}],"scroll-ps":[{"scroll-ps":g()}],"scroll-pe":[{"scroll-pe":g()}],"scroll-pt":[{"scroll-pt":g()}],"scroll-pr":[{"scroll-pr":g()}],"scroll-pb":[{"scroll-pb":g()}],"scroll-pl":[{"scroll-pl":g()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",X,G]}],fill:[{fill:["none",...R()]}],"stroke-w":[{stroke:[fe,Fr,ur,Jo]}],stroke:[{stroke:["none",...R()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},xs=Zd(ms);function ne(...e){return xs(qa(e))}/**
|
|
16
|
-
* @license lucide-react v0.507.0 - ISC
|
|
17
|
-
*
|
|
18
|
-
* This source code is licensed under the ISC license.
|
|
19
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
20
|
-
*/const hs=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),vs=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(r,o,t)=>t?t.toUpperCase():o.toLowerCase()),Tn=e=>{const r=vs(e);return r.charAt(0).toUpperCase()+r.slice(1)},oc=(...e)=>e.filter((r,o,t)=>!!r&&r.trim()!==""&&t.indexOf(r)===o).join(" ").trim(),ys=e=>{for(const r in e)if(r.startsWith("aria-")||r==="role"||r==="title")return!0};/**
|
|
21
|
-
* @license lucide-react v0.507.0 - ISC
|
|
22
|
-
*
|
|
23
|
-
* This source code is licensed under the ISC license.
|
|
24
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
25
|
-
*/var ws={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/**
|
|
26
|
-
* @license lucide-react v0.507.0 - ISC
|
|
27
|
-
*
|
|
28
|
-
* This source code is licensed under the ISC license.
|
|
29
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
30
|
-
*/const ks=O.forwardRef(({color:e="currentColor",size:r=24,strokeWidth:o=2,absoluteStrokeWidth:t,className:n="",children:a,iconNode:c,...i},s)=>O.createElement("svg",{ref:s,...ws,width:r,height:r,stroke:e,strokeWidth:t?Number(o)*24/Number(r):o,className:oc("lucide",n),...!a&&!ys(i)&&{"aria-hidden":"true"},...i},[...c.map(([l,f])=>O.createElement(l,f)),...Array.isArray(a)?a:[a]]));/**
|
|
31
|
-
* @license lucide-react v0.507.0 - ISC
|
|
32
|
-
*
|
|
33
|
-
* This source code is licensed under the ISC license.
|
|
34
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
35
|
-
*/const Ve=(e,r)=>{const o=O.forwardRef(({className:t,...n},a)=>O.createElement(ks,{ref:a,iconNode:r,className:oc(`lucide-${hs(Tn(e))}`,`lucide-${e}`,t),...n}));return o.displayName=Tn(e),o};/**
|
|
36
|
-
* @license lucide-react v0.507.0 - ISC
|
|
37
|
-
*
|
|
38
|
-
* This source code is licensed under the ISC license.
|
|
39
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
40
|
-
*/const _s=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],gr=Ve("check",_s);/**
|
|
41
|
-
* @license lucide-react v0.507.0 - ISC
|
|
42
|
-
*
|
|
43
|
-
* This source code is licensed under the ISC license.
|
|
44
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
45
|
-
*/const Cs=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],tc=Ve("chevron-down",Cs);/**
|
|
46
|
-
* @license lucide-react v0.507.0 - ISC
|
|
47
|
-
*
|
|
48
|
-
* This source code is licensed under the ISC license.
|
|
49
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
50
|
-
*/const Ss=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],Es=Ve("chevron-up",Ss);/**
|
|
51
|
-
* @license lucide-react v0.507.0 - ISC
|
|
52
|
-
*
|
|
53
|
-
* This source code is licensed under the ISC license.
|
|
54
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
55
|
-
*/const Rs=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],js=Ve("circle-check-big",Rs);/**
|
|
56
|
-
* @license lucide-react v0.507.0 - ISC
|
|
57
|
-
*
|
|
58
|
-
* This source code is licensed under the ISC license.
|
|
59
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
60
|
-
*/const Ds=[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]],Ts=Ve("cloud-upload",Ds);/**
|
|
61
|
-
* @license lucide-react v0.507.0 - ISC
|
|
62
|
-
*
|
|
63
|
-
* This source code is licensed under the ISC license.
|
|
64
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
65
|
-
*/const Ps=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]],Zt=Ve("info",Ps);/**
|
|
66
|
-
* @license lucide-react v0.507.0 - ISC
|
|
67
|
-
*
|
|
68
|
-
* This source code is licensed under the ISC license.
|
|
69
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
70
|
-
*/const Os=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]],Ns=Ve("rotate-ccw",Os);/**
|
|
71
|
-
* @license lucide-react v0.507.0 - ISC
|
|
72
|
-
*
|
|
73
|
-
* This source code is licensed under the ISC license.
|
|
74
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
75
|
-
*/const Is=[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]],Qo=Ve("sparkles",Is);/**
|
|
76
|
-
* @license lucide-react v0.507.0 - ISC
|
|
77
|
-
*
|
|
78
|
-
* This source code is licensed under the ISC license.
|
|
79
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
80
|
-
*/const As=[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]],Ms=Ve("triangle-alert",As);/**
|
|
81
|
-
* @license lucide-react v0.507.0 - ISC
|
|
82
|
-
*
|
|
83
|
-
* This source code is licensed under the ISC license.
|
|
84
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
85
|
-
*/const Ls=[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z",key:"cbrjhi"}]],zs=Ve("wrench",Ls);/**
|
|
86
|
-
* @license lucide-react v0.507.0 - ISC
|
|
87
|
-
*
|
|
88
|
-
* This source code is licensed under the ISC license.
|
|
89
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
90
|
-
*/const Fs=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],Jt=Ve("x",Fs);function Pn({error:e,centered:r=!1}){return e?d.jsx("div",{className:ne("bg-red-50 border border-red-200 text-red-700 px-4 py-3 rounded-md",r&&"text-center"),children:d.jsxs("p",{className:"flex items-center gap-2",children:[d.jsx(Zt,{size:Ld.icon.small}),e.toString()]})}):null}function $s({steps:e,current:r,hide:o,skipHeader:t}){if(o)return null;const n=e.filter(c=>!c.disabled),a=e.slice(0,r+1).filter(c=>!c.disabled).length-1;return d.jsx("div",{className:ne("w-full flex items-center justify-center","h-8 px-4 py-2"),children:d.jsx("div",{className:"flex items-center",children:n.map((c,i)=>{const s=i===a,l=i<a;return d.jsxs("div",{className:"flex items-center",children:[d.jsxs("div",{className:ne("flex items-center gap-1 transition-all duration-200",s&&"scale-105"),children:[d.jsx("div",{className:ne("w-5 h-5 rounded-full flex items-center justify-center text-[11px] font-medium transition-all duration-200",s&&"bg-blue-600 text-white shadow-sm border-2 border-blue-600",l&&"bg-white border-2 border-blue-600 text-blue-600",!s&&!l&&"bg-white border border-gray-300 text-gray-500"),children:l?d.jsx(gr,{className:"w-3 h-3 stroke-2"}):i+1}),d.jsx("span",{className:ne("text-xs tracking-wide transition-all duration-200",s&&"text-blue-600 font-semibold",l&&"text-gray-700 font-medium",!s&&!l&&"text-gray-500"),children:c.label})]}),i<n.length-1&&d.jsx("div",{className:ne("mx-3 w-12 h-[1px] transition-all duration-200",l?"bg-blue-600":"bg-gray-300")})]},i)})})})}function On(e,r){if(typeof e=="function")return e(r);e!=null&&(e.current=r)}function ar(...e){return r=>{let o=!1;const t=e.map(n=>{const a=On(n,r);return!o&&typeof a=="function"&&(o=!0),a});if(o)return()=>{for(let n=0;n<t.length;n++){const a=t[n];typeof a=="function"?a():On(e[n],null)}}}}function ge(...e){return u.useCallback(ar(...e),e)}function xo(e){const r=Ws(e),o=u.forwardRef((t,n)=>{const{children:a,...c}=t,i=u.Children.toArray(a),s=i.find(Hs);if(s){const l=s.props.children,f=i.map(p=>p===s?u.Children.count(l)>1?u.Children.only(null):u.isValidElement(l)?l.props.children:null:p);return d.jsx(r,{...c,ref:n,children:u.isValidElement(l)?u.cloneElement(l,void 0,f):null})}return d.jsx(r,{...c,ref:n,children:a})});return o.displayName=`${e}.Slot`,o}var Vs=xo("Slot");function Ws(e){const r=u.forwardRef((o,t)=>{const{children:n,...a}=o;if(u.isValidElement(n)){const c=Us(n),i=qs(a,n.props);return n.type!==u.Fragment&&(i.ref=t?ar(t,c):c),u.cloneElement(n,i)}return u.Children.count(n)>1?u.Children.only(null):null});return r.displayName=`${e}.SlotClone`,r}var Bs=Symbol("radix.slottable");function Hs(e){return u.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===Bs}function qs(e,r){const o={...r};for(const t in r){const n=e[t],a=r[t];/^on[A-Z]/.test(t)?n&&a?o[t]=(...i)=>{a(...i),n(...i)}:n&&(o[t]=n):t==="style"?o[t]={...n,...a}:t==="className"&&(o[t]=[n,a].filter(Boolean).join(" "))}return{...e,...o}}function Us(e){let r=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning;return o?e.ref:(r=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}const Nn=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,In=qa,Qt=(e,r)=>o=>{var t;if(r?.variants==null)return In(e,o?.class,o?.className);const{variants:n,defaultVariants:a}=r,c=Object.keys(n).map(l=>{const f=o?.[l],p=a?.[l];if(f===null)return null;const x=Nn(f)||Nn(p);return n[l][x]}),i=o&&Object.entries(o).reduce((l,f)=>{let[p,x]=f;return x===void 0||(l[p]=x),l},{}),s=r==null||(t=r.compoundVariants)===null||t===void 0?void 0:t.reduce((l,f)=>{let{class:p,className:x,...v}=f;return Object.entries(v).every(_=>{let[b,m]=_;return Array.isArray(m)?m.includes({...a,...i}[b]):{...a,...i}[b]===m})?[...l,p,x]:l},[]);return In(e,c,s,o?.class,o?.className)},Ys=Qt("inline-flex items-center justify-center whitespace-nowrap rounded-lg text-sm font-medium cursor-pointer transition-colors duration-200 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",{variants:{variant:{default:"bg-blue-600 text-white shadow hover:bg-blue-700 focus-visible:ring-blue-500",destructive:"bg-red-600 text-white shadow hover:bg-red-700 focus-visible:ring-red-500",outline:"border border-gray-300 bg-white text-gray-700 hover:bg-gray-50 focus-visible:ring-gray-500",secondary:"bg-gray-100 text-gray-900 hover:bg-gray-200 focus-visible:ring-gray-500",ghost:"hover:bg-gray-100 hover:text-gray-900 focus-visible:ring-gray-500",link:"text-blue-600 underline-offset-4 hover:underline hover:text-blue-700"},size:{default:"h-10 px-6 py-2",sm:"h-9 rounded-md px-4 text-xs",lg:"h-12 rounded-lg px-8 text-base",icon:"h-10 w-10"}},defaultVariants:{variant:"default",size:"default"}}),je=u.forwardRef(({className:e,variant:r,size:o,asChild:t=!1,isLoading:n,children:a,...c},i)=>{const s=t?Vs:"button";return d.jsx(s,{className:ne(Ys({variant:r,size:o,className:e})),ref:i,disabled:n||c.disabled,...c,children:n?d.jsxs(d.Fragment,{children:[d.jsxs("svg",{className:"animate-spin -ml-1 mr-2 h-4 w-4 text-current",xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[d.jsx("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),d.jsx("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),"Loading..."]}):a})});je.displayName="Button";const Ks=Qt("relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",{variants:{variant:{default:"bg-background text-foreground",destructive:"border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive"}},defaultVariants:{variant:"default"}}),ho=u.forwardRef(({className:e,variant:r,...o},t)=>d.jsx("div",{ref:t,role:"alert",className:ne(Ks({variant:r}),e),...o}));ho.displayName="Alert";const nc=u.forwardRef(({className:e,...r},o)=>d.jsx("h5",{ref:o,className:ne("mb-1 font-medium leading-none tracking-tight",e),...r}));nc.displayName="AlertTitle";const vo=u.forwardRef(({className:e,...r},o)=>d.jsx("div",{ref:o,className:ne("text-sm [&_p]:leading-relaxed",e),...r}));vo.displayName="AlertDescription";function oe(e,r,{checkForDefaultPrevented:o=!0}={}){return function(n){if(e?.(n),o===!1||!n.defaultPrevented)return r?.(n)}}function Gs(e,r){const o=u.createContext(r),t=a=>{const{children:c,...i}=a,s=u.useMemo(()=>i,Object.values(i));return d.jsx(o.Provider,{value:s,children:c})};t.displayName=e+"Provider";function n(a){const c=u.useContext(o);if(c)return c;if(r!==void 0)return r;throw new Error(`\`${a}\` must be used within \`${e}\``)}return[t,n]}function cr(e,r=[]){let o=[];function t(a,c){const i=u.createContext(c),s=o.length;o=[...o,c];const l=p=>{const{scope:x,children:v,..._}=p,b=x?.[e]?.[s]||i,m=u.useMemo(()=>_,Object.values(_));return d.jsx(b.Provider,{value:m,children:v})};l.displayName=a+"Provider";function f(p,x){const v=x?.[e]?.[s]||i,_=u.useContext(v);if(_)return _;if(c!==void 0)return c;throw new Error(`\`${p}\` must be used within \`${a}\``)}return[l,f]}const n=()=>{const a=o.map(c=>u.createContext(c));return function(i){const s=i?.[e]||a;return u.useMemo(()=>({[`__scope${e}`]:{...i,[e]:s}}),[i,s])}};return n.scopeName=e,[t,Xs(n,...r)]}function Xs(...e){const r=e[0];if(e.length===1)return r;const o=()=>{const t=e.map(n=>({useScope:n(),scopeName:n.scopeName}));return function(a){const c=t.reduce((i,{useScope:s,scopeName:l})=>{const p=s(a)[`__scope${l}`];return{...i,...p}},{});return u.useMemo(()=>({[`__scope${r.scopeName}`]:c}),[c])}};return o.scopeName=r.scopeName,o}function Zs(e){const r=Js(e),o=u.forwardRef((t,n)=>{const{children:a,...c}=t,i=u.Children.toArray(a),s=i.find(eu);if(s){const l=s.props.children,f=i.map(p=>p===s?u.Children.count(l)>1?u.Children.only(null):u.isValidElement(l)?l.props.children:null:p);return d.jsx(r,{...c,ref:n,children:u.isValidElement(l)?u.cloneElement(l,void 0,f):null})}return d.jsx(r,{...c,ref:n,children:a})});return o.displayName=`${e}.Slot`,o}function Js(e){const r=u.forwardRef((o,t)=>{const{children:n,...a}=o;if(u.isValidElement(n)){const c=ou(n),i=ru(a,n.props);return n.type!==u.Fragment&&(i.ref=t?ar(t,c):c),u.cloneElement(n,i)}return u.Children.count(n)>1?u.Children.only(null):null});return r.displayName=`${e}.SlotClone`,r}var ac=Symbol("radix.slottable");function Qs(e){const r=({children:o})=>d.jsx(d.Fragment,{children:o});return r.displayName=`${e}.Slottable`,r.__radixId=ac,r}function eu(e){return u.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===ac}function ru(e,r){const o={...r};for(const t in r){const n=e[t],a=r[t];/^on[A-Z]/.test(t)?n&&a?o[t]=(...i)=>{const s=a(...i);return n(...i),s}:n&&(o[t]=n):t==="style"?o[t]={...n,...a}:t==="className"&&(o[t]=[n,a].filter(Boolean).join(" "))}return{...e,...o}}function ou(e){let r=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning;return o?e.ref:(r=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}var tu=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],Po=tu.reduce((e,r)=>{const o=Zs(`Primitive.${r}`),t=u.forwardRef((n,a)=>{const{asChild:c,...i}=n,s=c?o:r;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(s,{...i,ref:a})});return t.displayName=`Primitive.${r}`,{...e,[r]:t}},{});function nu(e,r){e&&nr.flushSync(()=>e.dispatchEvent(r))}function Ce(e){const r=u.useRef(e);return u.useEffect(()=>{r.current=e}),u.useMemo(()=>(...o)=>r.current?.(...o),[])}function Oo(e,r=globalThis?.document){const o=Ce(e);u.useEffect(()=>{const t=n=>{n.key==="Escape"&&o(n)};return r.addEventListener("keydown",t,{capture:!0}),()=>r.removeEventListener("keydown",t,{capture:!0})},[o,r])}var au="DismissableLayer",St="dismissableLayer.update",cu="dismissableLayer.pointerDownOutside",iu="dismissableLayer.focusOutside",An,cc=u.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),ic=u.forwardRef((e,r)=>{const{disableOutsidePointerEvents:o=!1,onEscapeKeyDown:t,onPointerDownOutside:n,onFocusOutside:a,onInteractOutside:c,onDismiss:i,...s}=e,l=u.useContext(cc),[f,p]=u.useState(null),x=f?.ownerDocument??globalThis?.document,[,v]=u.useState({}),_=ge(r,C=>p(C)),b=Array.from(l.layers),[m]=[...l.layersWithOutsidePointerEventsDisabled].slice(-1),w=b.indexOf(m),h=f?b.indexOf(f):-1,k=l.layersWithOutsidePointerEventsDisabled.size>0,S=h>=w,D=su(C=>{const g=C.target,y=[...l.branches].some(E=>E.contains(g));!S||y||(n?.(C),c?.(C),C.defaultPrevented||i?.())},x),N=uu(C=>{const g=C.target;[...l.branches].some(E=>E.contains(g))||(a?.(C),c?.(C),C.defaultPrevented||i?.())},x);return Oo(C=>{h===l.layers.size-1&&(t?.(C),!C.defaultPrevented&&i&&(C.preventDefault(),i()))},x),u.useEffect(()=>{if(f)return o&&(l.layersWithOutsidePointerEventsDisabled.size===0&&(An=x.body.style.pointerEvents,x.body.style.pointerEvents="none"),l.layersWithOutsidePointerEventsDisabled.add(f)),l.layers.add(f),Mn(),()=>{o&&l.layersWithOutsidePointerEventsDisabled.size===1&&(x.body.style.pointerEvents=An)}},[f,x,o,l]),u.useEffect(()=>()=>{f&&(l.layers.delete(f),l.layersWithOutsidePointerEventsDisabled.delete(f),Mn())},[f,l]),u.useEffect(()=>{const C=()=>v({});return document.addEventListener(St,C),()=>document.removeEventListener(St,C)},[]),d.jsx(Po.div,{...s,ref:_,style:{pointerEvents:k?S?"auto":"none":void 0,...e.style},onFocusCapture:oe(e.onFocusCapture,N.onFocusCapture),onBlurCapture:oe(e.onBlurCapture,N.onBlurCapture),onPointerDownCapture:oe(e.onPointerDownCapture,D.onPointerDownCapture)})});ic.displayName=au;var lu="DismissableLayerBranch",du=u.forwardRef((e,r)=>{const o=u.useContext(cc),t=u.useRef(null),n=ge(r,t);return u.useEffect(()=>{const a=t.current;if(a)return o.branches.add(a),()=>{o.branches.delete(a)}},[o.branches]),d.jsx(Po.div,{...e,ref:n})});du.displayName=lu;function su(e,r=globalThis?.document){const o=Ce(e),t=u.useRef(!1),n=u.useRef(()=>{});return u.useEffect(()=>{const a=i=>{if(i.target&&!t.current){let s=function(){lc(cu,o,l,{discrete:!0})};const l={originalEvent:i};i.pointerType==="touch"?(r.removeEventListener("click",n.current),n.current=s,r.addEventListener("click",n.current,{once:!0})):s()}else r.removeEventListener("click",n.current);t.current=!1},c=window.setTimeout(()=>{r.addEventListener("pointerdown",a)},0);return()=>{window.clearTimeout(c),r.removeEventListener("pointerdown",a),r.removeEventListener("click",n.current)}},[r,o]),{onPointerDownCapture:()=>t.current=!0}}function uu(e,r=globalThis?.document){const o=Ce(e),t=u.useRef(!1);return u.useEffect(()=>{const n=a=>{a.target&&!t.current&&lc(iu,o,{originalEvent:a},{discrete:!1})};return r.addEventListener("focusin",n),()=>r.removeEventListener("focusin",n)},[r,o]),{onFocusCapture:()=>t.current=!0,onBlurCapture:()=>t.current=!1}}function Mn(){const e=new CustomEvent(St);document.dispatchEvent(e)}function lc(e,r,o,{discrete:t}){const n=o.originalEvent.target,a=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:o});r&&n.addEventListener(e,r,{once:!0}),t?nu(n,a):n.dispatchEvent(a)}var _e=globalThis?.document?u.useLayoutEffect:()=>{},fu=u[" useId ".trim().toString()]||(()=>{}),bu=0;function pr(e){const[r,o]=u.useState(fu());return _e(()=>{o(t=>t??String(bu++))},[e]),r?`radix-${r}`:""}const pu=["top","right","bottom","left"],or=Math.min,Oe=Math.max,yo=Math.round,eo=Math.floor,qe=e=>({x:e,y:e}),gu={left:"right",right:"left",bottom:"top",top:"bottom"},mu={start:"end",end:"start"};function Et(e,r,o){return Oe(e,or(r,o))}function Ze(e,r){return typeof e=="function"?e(r):e}function Je(e){return e.split("-")[0]}function Ar(e){return e.split("-")[1]}function en(e){return e==="x"?"y":"x"}function rn(e){return e==="y"?"height":"width"}const xu=new Set(["top","bottom"]);function He(e){return xu.has(Je(e))?"y":"x"}function on(e){return en(He(e))}function hu(e,r,o){o===void 0&&(o=!1);const t=Ar(e),n=on(e),a=rn(n);let c=n==="x"?t===(o?"end":"start")?"right":"left":t==="start"?"bottom":"top";return r.reference[a]>r.floating[a]&&(c=wo(c)),[c,wo(c)]}function vu(e){const r=wo(e);return[Rt(e),r,Rt(r)]}function Rt(e){return e.replace(/start|end/g,r=>mu[r])}const Ln=["left","right"],zn=["right","left"],yu=["top","bottom"],wu=["bottom","top"];function ku(e,r,o){switch(e){case"top":case"bottom":return o?r?zn:Ln:r?Ln:zn;case"left":case"right":return r?yu:wu;default:return[]}}function _u(e,r,o,t){const n=Ar(e);let a=ku(Je(e),o==="start",t);return n&&(a=a.map(c=>c+"-"+n),r&&(a=a.concat(a.map(Rt)))),a}function wo(e){return e.replace(/left|right|bottom|top/g,r=>gu[r])}function Cu(e){return{top:0,right:0,bottom:0,left:0,...e}}function dc(e){return typeof e!="number"?Cu(e):{top:e,right:e,bottom:e,left:e}}function ko(e){const{x:r,y:o,width:t,height:n}=e;return{width:t,height:n,top:o,left:r,right:r+t,bottom:o+n,x:r,y:o}}function Fn(e,r,o){let{reference:t,floating:n}=e;const a=He(r),c=on(r),i=rn(c),s=Je(r),l=a==="y",f=t.x+t.width/2-n.width/2,p=t.y+t.height/2-n.height/2,x=t[i]/2-n[i]/2;let v;switch(s){case"top":v={x:f,y:t.y-n.height};break;case"bottom":v={x:f,y:t.y+t.height};break;case"right":v={x:t.x+t.width,y:p};break;case"left":v={x:t.x-n.width,y:p};break;default:v={x:t.x,y:t.y}}switch(Ar(r)){case"start":v[c]-=x*(o&&l?-1:1);break;case"end":v[c]+=x*(o&&l?-1:1);break}return v}const Su=async(e,r,o)=>{const{placement:t="bottom",strategy:n="absolute",middleware:a=[],platform:c}=o,i=a.filter(Boolean),s=await(c.isRTL==null?void 0:c.isRTL(r));let l=await c.getElementRects({reference:e,floating:r,strategy:n}),{x:f,y:p}=Fn(l,t,s),x=t,v={},_=0;for(let b=0;b<i.length;b++){const{name:m,fn:w}=i[b],{x:h,y:k,data:S,reset:D}=await w({x:f,y:p,initialPlacement:t,placement:x,strategy:n,middlewareData:v,rects:l,platform:c,elements:{reference:e,floating:r}});f=h??f,p=k??p,v={...v,[m]:{...v[m],...S}},D&&_<=50&&(_++,typeof D=="object"&&(D.placement&&(x=D.placement),D.rects&&(l=D.rects===!0?await c.getElementRects({reference:e,floating:r,strategy:n}):D.rects),{x:f,y:p}=Fn(l,x,s)),b=-1)}return{x:f,y:p,placement:x,strategy:n,middlewareData:v}};async function Br(e,r){var o;r===void 0&&(r={});const{x:t,y:n,platform:a,rects:c,elements:i,strategy:s}=e,{boundary:l="clippingAncestors",rootBoundary:f="viewport",elementContext:p="floating",altBoundary:x=!1,padding:v=0}=Ze(r,e),_=dc(v),m=i[x?p==="floating"?"reference":"floating":p],w=ko(await a.getClippingRect({element:(o=await(a.isElement==null?void 0:a.isElement(m)))==null||o?m:m.contextElement||await(a.getDocumentElement==null?void 0:a.getDocumentElement(i.floating)),boundary:l,rootBoundary:f,strategy:s})),h=p==="floating"?{x:t,y:n,width:c.floating.width,height:c.floating.height}:c.reference,k=await(a.getOffsetParent==null?void 0:a.getOffsetParent(i.floating)),S=await(a.isElement==null?void 0:a.isElement(k))?await(a.getScale==null?void 0:a.getScale(k))||{x:1,y:1}:{x:1,y:1},D=ko(a.convertOffsetParentRelativeRectToViewportRelativeRect?await a.convertOffsetParentRelativeRectToViewportRelativeRect({elements:i,rect:h,offsetParent:k,strategy:s}):h);return{top:(w.top-D.top+_.top)/S.y,bottom:(D.bottom-w.bottom+_.bottom)/S.y,left:(w.left-D.left+_.left)/S.x,right:(D.right-w.right+_.right)/S.x}}const Eu=e=>({name:"arrow",options:e,async fn(r){const{x:o,y:t,placement:n,rects:a,platform:c,elements:i,middlewareData:s}=r,{element:l,padding:f=0}=Ze(e,r)||{};if(l==null)return{};const p=dc(f),x={x:o,y:t},v=on(n),_=rn(v),b=await c.getDimensions(l),m=v==="y",w=m?"top":"left",h=m?"bottom":"right",k=m?"clientHeight":"clientWidth",S=a.reference[_]+a.reference[v]-x[v]-a.floating[_],D=x[v]-a.reference[v],N=await(c.getOffsetParent==null?void 0:c.getOffsetParent(l));let C=N?N[k]:0;(!C||!await(c.isElement==null?void 0:c.isElement(N)))&&(C=i.floating[k]||a.floating[_]);const g=S/2-D/2,y=C/2-b[_]/2-1,E=or(p[w],y),A=or(p[h],y),I=E,L=C-b[_]-A,P=C/2-b[_]/2+g,H=Et(I,P,L),M=!s.arrow&&Ar(n)!=null&&P!==H&&a.reference[_]/2-(P<I?E:A)-b[_]/2<0,T=M?P<I?P-I:P-L:0;return{[v]:x[v]+T,data:{[v]:H,centerOffset:P-H-T,...M&&{alignmentOffset:T}},reset:M}}}),Ru=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(r){var o,t;const{placement:n,middlewareData:a,rects:c,initialPlacement:i,platform:s,elements:l}=r,{mainAxis:f=!0,crossAxis:p=!0,fallbackPlacements:x,fallbackStrategy:v="bestFit",fallbackAxisSideDirection:_="none",flipAlignment:b=!0,...m}=Ze(e,r);if((o=a.arrow)!=null&&o.alignmentOffset)return{};const w=Je(n),h=He(i),k=Je(i)===i,S=await(s.isRTL==null?void 0:s.isRTL(l.floating)),D=x||(k||!b?[wo(i)]:vu(i)),N=_!=="none";!x&&N&&D.push(..._u(i,b,_,S));const C=[i,...D],g=await Br(r,m),y=[];let E=((t=a.flip)==null?void 0:t.overflows)||[];if(f&&y.push(g[w]),p){const P=hu(n,c,S);y.push(g[P[0]],g[P[1]])}if(E=[...E,{placement:n,overflows:y}],!y.every(P=>P<=0)){var A,I;const P=(((A=a.flip)==null?void 0:A.index)||0)+1,H=C[P];if(H&&(!(p==="alignment"?h!==He(H):!1)||E.every(R=>He(R.placement)===h?R.overflows[0]>0:!0)))return{data:{index:P,overflows:E},reset:{placement:H}};let M=(I=E.filter(T=>T.overflows[0]<=0).sort((T,R)=>T.overflows[1]-R.overflows[1])[0])==null?void 0:I.placement;if(!M)switch(v){case"bestFit":{var L;const T=(L=E.filter(R=>{if(N){const j=He(R.placement);return j===h||j==="y"}return!0}).map(R=>[R.placement,R.overflows.filter(j=>j>0).reduce((j,q)=>j+q,0)]).sort((R,j)=>R[1]-j[1])[0])==null?void 0:L[0];T&&(M=T);break}case"initialPlacement":M=i;break}if(n!==M)return{reset:{placement:M}}}return{}}}};function $n(e,r){return{top:e.top-r.height,right:e.right-r.width,bottom:e.bottom-r.height,left:e.left-r.width}}function Vn(e){return pu.some(r=>e[r]>=0)}const ju=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(r){const{rects:o}=r,{strategy:t="referenceHidden",...n}=Ze(e,r);switch(t){case"referenceHidden":{const a=await Br(r,{...n,elementContext:"reference"}),c=$n(a,o.reference);return{data:{referenceHiddenOffsets:c,referenceHidden:Vn(c)}}}case"escaped":{const a=await Br(r,{...n,altBoundary:!0}),c=$n(a,o.floating);return{data:{escapedOffsets:c,escaped:Vn(c)}}}default:return{}}}}},sc=new Set(["left","top"]);async function Du(e,r){const{placement:o,platform:t,elements:n}=e,a=await(t.isRTL==null?void 0:t.isRTL(n.floating)),c=Je(o),i=Ar(o),s=He(o)==="y",l=sc.has(c)?-1:1,f=a&&s?-1:1,p=Ze(r,e);let{mainAxis:x,crossAxis:v,alignmentAxis:_}=typeof p=="number"?{mainAxis:p,crossAxis:0,alignmentAxis:null}:{mainAxis:p.mainAxis||0,crossAxis:p.crossAxis||0,alignmentAxis:p.alignmentAxis};return i&&typeof _=="number"&&(v=i==="end"?_*-1:_),s?{x:v*f,y:x*l}:{x:x*l,y:v*f}}const Tu=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(r){var o,t;const{x:n,y:a,placement:c,middlewareData:i}=r,s=await Du(r,e);return c===((o=i.offset)==null?void 0:o.placement)&&(t=i.arrow)!=null&&t.alignmentOffset?{}:{x:n+s.x,y:a+s.y,data:{...s,placement:c}}}}},Pu=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(r){const{x:o,y:t,placement:n}=r,{mainAxis:a=!0,crossAxis:c=!1,limiter:i={fn:m=>{let{x:w,y:h}=m;return{x:w,y:h}}},...s}=Ze(e,r),l={x:o,y:t},f=await Br(r,s),p=He(Je(n)),x=en(p);let v=l[x],_=l[p];if(a){const m=x==="y"?"top":"left",w=x==="y"?"bottom":"right",h=v+f[m],k=v-f[w];v=Et(h,v,k)}if(c){const m=p==="y"?"top":"left",w=p==="y"?"bottom":"right",h=_+f[m],k=_-f[w];_=Et(h,_,k)}const b=i.fn({...r,[x]:v,[p]:_});return{...b,data:{x:b.x-o,y:b.y-t,enabled:{[x]:a,[p]:c}}}}}},Ou=function(e){return e===void 0&&(e={}),{options:e,fn(r){const{x:o,y:t,placement:n,rects:a,middlewareData:c}=r,{offset:i=0,mainAxis:s=!0,crossAxis:l=!0}=Ze(e,r),f={x:o,y:t},p=He(n),x=en(p);let v=f[x],_=f[p];const b=Ze(i,r),m=typeof b=="number"?{mainAxis:b,crossAxis:0}:{mainAxis:0,crossAxis:0,...b};if(s){const k=x==="y"?"height":"width",S=a.reference[x]-a.floating[k]+m.mainAxis,D=a.reference[x]+a.reference[k]-m.mainAxis;v<S?v=S:v>D&&(v=D)}if(l){var w,h;const k=x==="y"?"width":"height",S=sc.has(Je(n)),D=a.reference[p]-a.floating[k]+(S&&((w=c.offset)==null?void 0:w[p])||0)+(S?0:m.crossAxis),N=a.reference[p]+a.reference[k]+(S?0:((h=c.offset)==null?void 0:h[p])||0)-(S?m.crossAxis:0);_<D?_=D:_>N&&(_=N)}return{[x]:v,[p]:_}}}},Nu=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(r){var o,t;const{placement:n,rects:a,platform:c,elements:i}=r,{apply:s=()=>{},...l}=Ze(e,r),f=await Br(r,l),p=Je(n),x=Ar(n),v=He(n)==="y",{width:_,height:b}=a.floating;let m,w;p==="top"||p==="bottom"?(m=p,w=x===(await(c.isRTL==null?void 0:c.isRTL(i.floating))?"start":"end")?"left":"right"):(w=p,m=x==="end"?"top":"bottom");const h=b-f.top-f.bottom,k=_-f.left-f.right,S=or(b-f[m],h),D=or(_-f[w],k),N=!r.middlewareData.shift;let C=S,g=D;if((o=r.middlewareData.shift)!=null&&o.enabled.x&&(g=k),(t=r.middlewareData.shift)!=null&&t.enabled.y&&(C=h),N&&!x){const E=Oe(f.left,0),A=Oe(f.right,0),I=Oe(f.top,0),L=Oe(f.bottom,0);v?g=_-2*(E!==0||A!==0?E+A:Oe(f.left,f.right)):C=b-2*(I!==0||L!==0?I+L:Oe(f.top,f.bottom))}await s({...r,availableWidth:g,availableHeight:C});const y=await c.getDimensions(i.floating);return _!==y.width||b!==y.height?{reset:{rects:!0}}:{}}}};function No(){return typeof window<"u"}function Mr(e){return uc(e)?(e.nodeName||"").toLowerCase():"#document"}function Ne(e){var r;return(e==null||(r=e.ownerDocument)==null?void 0:r.defaultView)||window}function Ye(e){var r;return(r=(uc(e)?e.ownerDocument:e.document)||window.document)==null?void 0:r.documentElement}function uc(e){return No()?e instanceof Node||e instanceof Ne(e).Node:!1}function Fe(e){return No()?e instanceof Element||e instanceof Ne(e).Element:!1}function Ue(e){return No()?e instanceof HTMLElement||e instanceof Ne(e).HTMLElement:!1}function Wn(e){return!No()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof Ne(e).ShadowRoot}const Iu=new Set(["inline","contents"]);function Gr(e){const{overflow:r,overflowX:o,overflowY:t,display:n}=$e(e);return/auto|scroll|overlay|hidden|clip/.test(r+t+o)&&!Iu.has(n)}const Au=new Set(["table","td","th"]);function Mu(e){return Au.has(Mr(e))}const Lu=[":popover-open",":modal"];function Io(e){return Lu.some(r=>{try{return e.matches(r)}catch{return!1}})}const zu=["transform","translate","scale","rotate","perspective"],Fu=["transform","translate","scale","rotate","perspective","filter"],$u=["paint","layout","strict","content"];function tn(e){const r=nn(),o=Fe(e)?$e(e):e;return zu.some(t=>o[t]?o[t]!=="none":!1)||(o.containerType?o.containerType!=="normal":!1)||!r&&(o.backdropFilter?o.backdropFilter!=="none":!1)||!r&&(o.filter?o.filter!=="none":!1)||Fu.some(t=>(o.willChange||"").includes(t))||$u.some(t=>(o.contain||"").includes(t))}function Vu(e){let r=tr(e);for(;Ue(r)&&!Dr(r);){if(tn(r))return r;if(Io(r))return null;r=tr(r)}return null}function nn(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const Wu=new Set(["html","body","#document"]);function Dr(e){return Wu.has(Mr(e))}function $e(e){return Ne(e).getComputedStyle(e)}function Ao(e){return Fe(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function tr(e){if(Mr(e)==="html")return e;const r=e.assignedSlot||e.parentNode||Wn(e)&&e.host||Ye(e);return Wn(r)?r.host:r}function fc(e){const r=tr(e);return Dr(r)?e.ownerDocument?e.ownerDocument.body:e.body:Ue(r)&&Gr(r)?r:fc(r)}function Hr(e,r,o){var t;r===void 0&&(r=[]),o===void 0&&(o=!0);const n=fc(e),a=n===((t=e.ownerDocument)==null?void 0:t.body),c=Ne(n);if(a){const i=jt(c);return r.concat(c,c.visualViewport||[],Gr(n)?n:[],i&&o?Hr(i):[])}return r.concat(n,Hr(n,[],o))}function jt(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function bc(e){const r=$e(e);let o=parseFloat(r.width)||0,t=parseFloat(r.height)||0;const n=Ue(e),a=n?e.offsetWidth:o,c=n?e.offsetHeight:t,i=yo(o)!==a||yo(t)!==c;return i&&(o=a,t=c),{width:o,height:t,$:i}}function an(e){return Fe(e)?e:e.contextElement}function Rr(e){const r=an(e);if(!Ue(r))return qe(1);const o=r.getBoundingClientRect(),{width:t,height:n,$:a}=bc(r);let c=(a?yo(o.width):o.width)/t,i=(a?yo(o.height):o.height)/n;return(!c||!Number.isFinite(c))&&(c=1),(!i||!Number.isFinite(i))&&(i=1),{x:c,y:i}}const Bu=qe(0);function pc(e){const r=Ne(e);return!nn()||!r.visualViewport?Bu:{x:r.visualViewport.offsetLeft,y:r.visualViewport.offsetTop}}function Hu(e,r,o){return r===void 0&&(r=!1),!o||r&&o!==Ne(e)?!1:r}function mr(e,r,o,t){r===void 0&&(r=!1),o===void 0&&(o=!1);const n=e.getBoundingClientRect(),a=an(e);let c=qe(1);r&&(t?Fe(t)&&(c=Rr(t)):c=Rr(e));const i=Hu(a,o,t)?pc(a):qe(0);let s=(n.left+i.x)/c.x,l=(n.top+i.y)/c.y,f=n.width/c.x,p=n.height/c.y;if(a){const x=Ne(a),v=t&&Fe(t)?Ne(t):t;let _=x,b=jt(_);for(;b&&t&&v!==_;){const m=Rr(b),w=b.getBoundingClientRect(),h=$e(b),k=w.left+(b.clientLeft+parseFloat(h.paddingLeft))*m.x,S=w.top+(b.clientTop+parseFloat(h.paddingTop))*m.y;s*=m.x,l*=m.y,f*=m.x,p*=m.y,s+=k,l+=S,_=Ne(b),b=jt(_)}}return ko({width:f,height:p,x:s,y:l})}function cn(e,r){const o=Ao(e).scrollLeft;return r?r.left+o:mr(Ye(e)).left+o}function gc(e,r,o){o===void 0&&(o=!1);const t=e.getBoundingClientRect(),n=t.left+r.scrollLeft-(o?0:cn(e,t)),a=t.top+r.scrollTop;return{x:n,y:a}}function qu(e){let{elements:r,rect:o,offsetParent:t,strategy:n}=e;const a=n==="fixed",c=Ye(t),i=r?Io(r.floating):!1;if(t===c||i&&a)return o;let s={scrollLeft:0,scrollTop:0},l=qe(1);const f=qe(0),p=Ue(t);if((p||!p&&!a)&&((Mr(t)!=="body"||Gr(c))&&(s=Ao(t)),Ue(t))){const v=mr(t);l=Rr(t),f.x=v.x+t.clientLeft,f.y=v.y+t.clientTop}const x=c&&!p&&!a?gc(c,s,!0):qe(0);return{width:o.width*l.x,height:o.height*l.y,x:o.x*l.x-s.scrollLeft*l.x+f.x+x.x,y:o.y*l.y-s.scrollTop*l.y+f.y+x.y}}function Uu(e){return Array.from(e.getClientRects())}function Yu(e){const r=Ye(e),o=Ao(e),t=e.ownerDocument.body,n=Oe(r.scrollWidth,r.clientWidth,t.scrollWidth,t.clientWidth),a=Oe(r.scrollHeight,r.clientHeight,t.scrollHeight,t.clientHeight);let c=-o.scrollLeft+cn(e);const i=-o.scrollTop;return $e(t).direction==="rtl"&&(c+=Oe(r.clientWidth,t.clientWidth)-n),{width:n,height:a,x:c,y:i}}function Ku(e,r){const o=Ne(e),t=Ye(e),n=o.visualViewport;let a=t.clientWidth,c=t.clientHeight,i=0,s=0;if(n){a=n.width,c=n.height;const l=nn();(!l||l&&r==="fixed")&&(i=n.offsetLeft,s=n.offsetTop)}return{width:a,height:c,x:i,y:s}}const Gu=new Set(["absolute","fixed"]);function Xu(e,r){const o=mr(e,!0,r==="fixed"),t=o.top+e.clientTop,n=o.left+e.clientLeft,a=Ue(e)?Rr(e):qe(1),c=e.clientWidth*a.x,i=e.clientHeight*a.y,s=n*a.x,l=t*a.y;return{width:c,height:i,x:s,y:l}}function Bn(e,r,o){let t;if(r==="viewport")t=Ku(e,o);else if(r==="document")t=Yu(Ye(e));else if(Fe(r))t=Xu(r,o);else{const n=pc(e);t={x:r.x-n.x,y:r.y-n.y,width:r.width,height:r.height}}return ko(t)}function mc(e,r){const o=tr(e);return o===r||!Fe(o)||Dr(o)?!1:$e(o).position==="fixed"||mc(o,r)}function Zu(e,r){const o=r.get(e);if(o)return o;let t=Hr(e,[],!1).filter(i=>Fe(i)&&Mr(i)!=="body"),n=null;const a=$e(e).position==="fixed";let c=a?tr(e):e;for(;Fe(c)&&!Dr(c);){const i=$e(c),s=tn(c);!s&&i.position==="fixed"&&(n=null),(a?!s&&!n:!s&&i.position==="static"&&!!n&&Gu.has(n.position)||Gr(c)&&!s&&mc(e,c))?t=t.filter(f=>f!==c):n=i,c=tr(c)}return r.set(e,t),t}function Ju(e){let{element:r,boundary:o,rootBoundary:t,strategy:n}=e;const c=[...o==="clippingAncestors"?Io(r)?[]:Zu(r,this._c):[].concat(o),t],i=c[0],s=c.reduce((l,f)=>{const p=Bn(r,f,n);return l.top=Oe(p.top,l.top),l.right=or(p.right,l.right),l.bottom=or(p.bottom,l.bottom),l.left=Oe(p.left,l.left),l},Bn(r,i,n));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}}function Qu(e){const{width:r,height:o}=bc(e);return{width:r,height:o}}function e0(e,r,o){const t=Ue(r),n=Ye(r),a=o==="fixed",c=mr(e,!0,a,r);let i={scrollLeft:0,scrollTop:0};const s=qe(0);function l(){s.x=cn(n)}if(t||!t&&!a)if((Mr(r)!=="body"||Gr(n))&&(i=Ao(r)),t){const v=mr(r,!0,a,r);s.x=v.x+r.clientLeft,s.y=v.y+r.clientTop}else n&&l();a&&!t&&n&&l();const f=n&&!t&&!a?gc(n,i):qe(0),p=c.left+i.scrollLeft-s.x-f.x,x=c.top+i.scrollTop-s.y-f.y;return{x:p,y:x,width:c.width,height:c.height}}function et(e){return $e(e).position==="static"}function Hn(e,r){if(!Ue(e)||$e(e).position==="fixed")return null;if(r)return r(e);let o=e.offsetParent;return Ye(e)===o&&(o=o.ownerDocument.body),o}function xc(e,r){const o=Ne(e);if(Io(e))return o;if(!Ue(e)){let n=tr(e);for(;n&&!Dr(n);){if(Fe(n)&&!et(n))return n;n=tr(n)}return o}let t=Hn(e,r);for(;t&&Mu(t)&&et(t);)t=Hn(t,r);return t&&Dr(t)&&et(t)&&!tn(t)?o:t||Vu(e)||o}const r0=async function(e){const r=this.getOffsetParent||xc,o=this.getDimensions,t=await o(e.floating);return{reference:e0(e.reference,await r(e.floating),e.strategy),floating:{x:0,y:0,width:t.width,height:t.height}}};function o0(e){return $e(e).direction==="rtl"}const t0={convertOffsetParentRelativeRectToViewportRelativeRect:qu,getDocumentElement:Ye,getClippingRect:Ju,getOffsetParent:xc,getElementRects:r0,getClientRects:Uu,getDimensions:Qu,getScale:Rr,isElement:Fe,isRTL:o0};function hc(e,r){return e.x===r.x&&e.y===r.y&&e.width===r.width&&e.height===r.height}function n0(e,r){let o=null,t;const n=Ye(e);function a(){var i;clearTimeout(t),(i=o)==null||i.disconnect(),o=null}function c(i,s){i===void 0&&(i=!1),s===void 0&&(s=1),a();const l=e.getBoundingClientRect(),{left:f,top:p,width:x,height:v}=l;if(i||r(),!x||!v)return;const _=eo(p),b=eo(n.clientWidth-(f+x)),m=eo(n.clientHeight-(p+v)),w=eo(f),k={rootMargin:-_+"px "+-b+"px "+-m+"px "+-w+"px",threshold:Oe(0,or(1,s))||1};let S=!0;function D(N){const C=N[0].intersectionRatio;if(C!==s){if(!S)return c();C?c(!1,C):t=setTimeout(()=>{c(!1,1e-7)},1e3)}C===1&&!hc(l,e.getBoundingClientRect())&&c(),S=!1}try{o=new IntersectionObserver(D,{...k,root:n.ownerDocument})}catch{o=new IntersectionObserver(D,k)}o.observe(e)}return c(!0),a}function a0(e,r,o,t){t===void 0&&(t={});const{ancestorScroll:n=!0,ancestorResize:a=!0,elementResize:c=typeof ResizeObserver=="function",layoutShift:i=typeof IntersectionObserver=="function",animationFrame:s=!1}=t,l=an(e),f=n||a?[...l?Hr(l):[],...Hr(r)]:[];f.forEach(w=>{n&&w.addEventListener("scroll",o,{passive:!0}),a&&w.addEventListener("resize",o)});const p=l&&i?n0(l,o):null;let x=-1,v=null;c&&(v=new ResizeObserver(w=>{let[h]=w;h&&h.target===l&&v&&(v.unobserve(r),cancelAnimationFrame(x),x=requestAnimationFrame(()=>{var k;(k=v)==null||k.observe(r)})),o()}),l&&!s&&v.observe(l),v.observe(r));let _,b=s?mr(e):null;s&&m();function m(){const w=mr(e);b&&!hc(b,w)&&o(),b=w,_=requestAnimationFrame(m)}return o(),()=>{var w;f.forEach(h=>{n&&h.removeEventListener("scroll",o),a&&h.removeEventListener("resize",o)}),p?.(),(w=v)==null||w.disconnect(),v=null,s&&cancelAnimationFrame(_)}}const c0=Tu,i0=Pu,l0=Ru,d0=Nu,s0=ju,qn=Eu,u0=Ou,f0=(e,r,o)=>{const t=new Map,n={platform:t0,...o},a={...n.platform,_c:t};return Su(e,r,{...n,platform:a})};var b0=typeof document<"u",p0=function(){},fo=b0?O.useLayoutEffect:p0;function _o(e,r){if(e===r)return!0;if(typeof e!=typeof r)return!1;if(typeof e=="function"&&e.toString()===r.toString())return!0;let o,t,n;if(e&&r&&typeof e=="object"){if(Array.isArray(e)){if(o=e.length,o!==r.length)return!1;for(t=o;t--!==0;)if(!_o(e[t],r[t]))return!1;return!0}if(n=Object.keys(e),o=n.length,o!==Object.keys(r).length)return!1;for(t=o;t--!==0;)if(!{}.hasOwnProperty.call(r,n[t]))return!1;for(t=o;t--!==0;){const a=n[t];if(!(a==="_owner"&&e.$$typeof)&&!_o(e[a],r[a]))return!1}return!0}return e!==e&&r!==r}function vc(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function Un(e,r){const o=vc(e);return Math.round(r*o)/o}function rt(e){const r=u.useRef(e);return fo(()=>{r.current=e}),r}function g0(e){e===void 0&&(e={});const{placement:r="bottom",strategy:o="absolute",middleware:t=[],platform:n,elements:{reference:a,floating:c}={},transform:i=!0,whileElementsMounted:s,open:l}=e,[f,p]=u.useState({x:0,y:0,strategy:o,placement:r,middlewareData:{},isPositioned:!1}),[x,v]=u.useState(t);_o(x,t)||v(t);const[_,b]=u.useState(null),[m,w]=u.useState(null),h=u.useCallback(R=>{R!==N.current&&(N.current=R,b(R))},[]),k=u.useCallback(R=>{R!==C.current&&(C.current=R,w(R))},[]),S=a||_,D=c||m,N=u.useRef(null),C=u.useRef(null),g=u.useRef(f),y=s!=null,E=rt(s),A=rt(n),I=rt(l),L=u.useCallback(()=>{if(!N.current||!C.current)return;const R={placement:r,strategy:o,middleware:x};A.current&&(R.platform=A.current),f0(N.current,C.current,R).then(j=>{const q={...j,isPositioned:I.current!==!1};P.current&&!_o(g.current,q)&&(g.current=q,nr.flushSync(()=>{p(q)}))})},[x,r,o,A,I]);fo(()=>{l===!1&&g.current.isPositioned&&(g.current.isPositioned=!1,p(R=>({...R,isPositioned:!1})))},[l]);const P=u.useRef(!1);fo(()=>(P.current=!0,()=>{P.current=!1}),[]),fo(()=>{if(S&&(N.current=S),D&&(C.current=D),S&&D){if(E.current)return E.current(S,D,L);L()}},[S,D,L,E,y]);const H=u.useMemo(()=>({reference:N,floating:C,setReference:h,setFloating:k}),[h,k]),M=u.useMemo(()=>({reference:S,floating:D}),[S,D]),T=u.useMemo(()=>{const R={position:o,left:0,top:0};if(!M.floating)return R;const j=Un(M.floating,f.x),q=Un(M.floating,f.y);return i?{...R,transform:"translate("+j+"px, "+q+"px)",...vc(M.floating)>=1.5&&{willChange:"transform"}}:{position:o,left:j,top:q}},[o,i,M.floating,f.x,f.y]);return u.useMemo(()=>({...f,update:L,refs:H,elements:M,floatingStyles:T}),[f,L,H,M,T])}const m0=e=>{function r(o){return{}.hasOwnProperty.call(o,"current")}return{name:"arrow",options:e,fn(o){const{element:t,padding:n}=typeof e=="function"?e(o):e;return t&&r(t)?t.current!=null?qn({element:t.current,padding:n}).fn(o):{}:t?qn({element:t,padding:n}).fn(o):{}}}},x0=(e,r)=>({...c0(e),options:[e,r]}),h0=(e,r)=>({...i0(e),options:[e,r]}),v0=(e,r)=>({...u0(e),options:[e,r]}),y0=(e,r)=>({...l0(e),options:[e,r]}),w0=(e,r)=>({...d0(e),options:[e,r]}),k0=(e,r)=>({...s0(e),options:[e,r]}),_0=(e,r)=>({...m0(e),options:[e,r]});function C0(e){const r=S0(e),o=u.forwardRef((t,n)=>{const{children:a,...c}=t,i=u.Children.toArray(a),s=i.find(R0);if(s){const l=s.props.children,f=i.map(p=>p===s?u.Children.count(l)>1?u.Children.only(null):u.isValidElement(l)?l.props.children:null:p);return d.jsx(r,{...c,ref:n,children:u.isValidElement(l)?u.cloneElement(l,void 0,f):null})}return d.jsx(r,{...c,ref:n,children:a})});return o.displayName=`${e}.Slot`,o}function S0(e){const r=u.forwardRef((o,t)=>{const{children:n,...a}=o;if(u.isValidElement(n)){const c=D0(n),i=j0(a,n.props);return n.type!==u.Fragment&&(i.ref=t?ar(t,c):c),u.cloneElement(n,i)}return u.Children.count(n)>1?u.Children.only(null):null});return r.displayName=`${e}.SlotClone`,r}var E0=Symbol("radix.slottable");function R0(e){return u.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===E0}function j0(e,r){const o={...r};for(const t in r){const n=e[t],a=r[t];/^on[A-Z]/.test(t)?n&&a?o[t]=(...i)=>{const s=a(...i);return n(...i),s}:n&&(o[t]=n):t==="style"?o[t]={...n,...a}:t==="className"&&(o[t]=[n,a].filter(Boolean).join(" "))}return{...e,...o}}function D0(e){let r=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning;return o?e.ref:(r=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}var T0=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],P0=T0.reduce((e,r)=>{const o=C0(`Primitive.${r}`),t=u.forwardRef((n,a)=>{const{asChild:c,...i}=n,s=c?o:r;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(s,{...i,ref:a})});return t.displayName=`Primitive.${r}`,{...e,[r]:t}},{}),O0="Arrow",yc=u.forwardRef((e,r)=>{const{children:o,width:t=10,height:n=5,...a}=e;return d.jsx(P0.svg,{...a,ref:r,width:t,height:n,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:e.asChild?o:d.jsx("polygon",{points:"0,0 30,0 15,10"})})});yc.displayName=O0;var N0=yc;function I0(e){const r=A0(e),o=u.forwardRef((t,n)=>{const{children:a,...c}=t,i=u.Children.toArray(a),s=i.find(L0);if(s){const l=s.props.children,f=i.map(p=>p===s?u.Children.count(l)>1?u.Children.only(null):u.isValidElement(l)?l.props.children:null:p);return d.jsx(r,{...c,ref:n,children:u.isValidElement(l)?u.cloneElement(l,void 0,f):null})}return d.jsx(r,{...c,ref:n,children:a})});return o.displayName=`${e}.Slot`,o}function A0(e){const r=u.forwardRef((o,t)=>{const{children:n,...a}=o;if(u.isValidElement(n)){const c=F0(n),i=z0(a,n.props);return n.type!==u.Fragment&&(i.ref=t?ar(t,c):c),u.cloneElement(n,i)}return u.Children.count(n)>1?u.Children.only(null):null});return r.displayName=`${e}.SlotClone`,r}var M0=Symbol("radix.slottable");function L0(e){return u.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===M0}function z0(e,r){const o={...r};for(const t in r){const n=e[t],a=r[t];/^on[A-Z]/.test(t)?n&&a?o[t]=(...i)=>{const s=a(...i);return n(...i),s}:n&&(o[t]=n):t==="style"?o[t]={...n,...a}:t==="className"&&(o[t]=[n,a].filter(Boolean).join(" "))}return{...e,...o}}function F0(e){let r=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning;return o?e.ref:(r=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}var $0=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],wc=$0.reduce((e,r)=>{const o=I0(`Primitive.${r}`),t=u.forwardRef((n,a)=>{const{asChild:c,...i}=n,s=c?o:r;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(s,{...i,ref:a})});return t.displayName=`Primitive.${r}`,{...e,[r]:t}},{});function kc(e){const[r,o]=u.useState(void 0);return _e(()=>{if(e){o({width:e.offsetWidth,height:e.offsetHeight});const t=new ResizeObserver(n=>{if(!Array.isArray(n)||!n.length)return;const a=n[0];let c,i;if("borderBoxSize"in a){const s=a.borderBoxSize,l=Array.isArray(s)?s[0]:s;c=l.inlineSize,i=l.blockSize}else c=e.offsetWidth,i=e.offsetHeight;o({width:c,height:i})});return t.observe(e,{box:"border-box"}),()=>t.unobserve(e)}else o(void 0)},[e]),r}var ln="Popper",[_c,Mo]=cr(ln),[V0,Cc]=_c(ln),Sc=e=>{const{__scopePopper:r,children:o}=e,[t,n]=u.useState(null);return d.jsx(V0,{scope:r,anchor:t,onAnchorChange:n,children:o})};Sc.displayName=ln;var Ec="PopperAnchor",Rc=u.forwardRef((e,r)=>{const{__scopePopper:o,virtualRef:t,...n}=e,a=Cc(Ec,o),c=u.useRef(null),i=ge(r,c);return u.useEffect(()=>{a.onAnchorChange(t?.current||c.current)}),t?null:d.jsx(wc.div,{...n,ref:i})});Rc.displayName=Ec;var dn="PopperContent",[W0,B0]=_c(dn),jc=u.forwardRef((e,r)=>{const{__scopePopper:o,side:t="bottom",sideOffset:n=0,align:a="center",alignOffset:c=0,arrowPadding:i=0,avoidCollisions:s=!0,collisionBoundary:l=[],collisionPadding:f=0,sticky:p="partial",hideWhenDetached:x=!1,updatePositionStrategy:v="optimized",onPlaced:_,...b}=e,m=Cc(dn,o),[w,h]=u.useState(null),k=ge(r,$=>h($)),[S,D]=u.useState(null),N=kc(S),C=N?.width??0,g=N?.height??0,y=t+(a!=="center"?"-"+a:""),E=typeof f=="number"?f:{top:0,right:0,bottom:0,left:0,...f},A=Array.isArray(l)?l:[l],I=A.length>0,L={padding:E,boundary:A.filter(q0),altBoundary:I},{refs:P,floatingStyles:H,placement:M,isPositioned:T,middlewareData:R}=g0({strategy:"fixed",placement:y,whileElementsMounted:(...$)=>a0(...$,{animationFrame:v==="always"}),elements:{reference:m.anchor},middleware:[x0({mainAxis:n+g,alignmentAxis:c}),s&&h0({mainAxis:!0,crossAxis:!1,limiter:p==="partial"?v0():void 0,...L}),s&&y0({...L}),w0({...L,apply:({elements:$,rects:K,availableWidth:ee,availableHeight:Z})=>{const{width:B,height:re}=K.reference,be=$.floating.style;be.setProperty("--radix-popper-available-width",`${ee}px`),be.setProperty("--radix-popper-available-height",`${Z}px`),be.setProperty("--radix-popper-anchor-width",`${B}px`),be.setProperty("--radix-popper-anchor-height",`${re}px`)}}),S&&_0({element:S,padding:i}),U0({arrowWidth:C,arrowHeight:g}),x&&k0({strategy:"referenceHidden",...L})]}),[j,q]=Pc(M),V=Ce(_);_e(()=>{T&&V?.()},[T,V]);const U=R.arrow?.x,z=R.arrow?.y,Y=R.arrow?.centerOffset!==0,[ae,ce]=u.useState();return _e(()=>{w&&ce(window.getComputedStyle(w).zIndex)},[w]),d.jsx("div",{ref:P.setFloating,"data-radix-popper-content-wrapper":"",style:{...H,transform:T?H.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:ae,"--radix-popper-transform-origin":[R.transformOrigin?.x,R.transformOrigin?.y].join(" "),...R.hide?.referenceHidden&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:d.jsx(W0,{scope:o,placedSide:j,onArrowChange:D,arrowX:U,arrowY:z,shouldHideArrow:Y,children:d.jsx(wc.div,{"data-side":j,"data-align":q,...b,ref:k,style:{...b.style,animation:T?void 0:"none"}})})})});jc.displayName=dn;var Dc="PopperArrow",H0={top:"bottom",right:"left",bottom:"top",left:"right"},Tc=u.forwardRef(function(r,o){const{__scopePopper:t,...n}=r,a=B0(Dc,t),c=H0[a.placedSide];return d.jsx("span",{ref:a.onArrowChange,style:{position:"absolute",left:a.arrowX,top:a.arrowY,[c]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[a.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[a.placedSide],visibility:a.shouldHideArrow?"hidden":void 0},children:d.jsx(N0,{...n,ref:o,style:{...n.style,display:"block"}})})});Tc.displayName=Dc;function q0(e){return e!==null}var U0=e=>({name:"transformOrigin",options:e,fn(r){const{placement:o,rects:t,middlewareData:n}=r,c=n.arrow?.centerOffset!==0,i=c?0:e.arrowWidth,s=c?0:e.arrowHeight,[l,f]=Pc(o),p={start:"0%",center:"50%",end:"100%"}[f],x=(n.arrow?.x??0)+i/2,v=(n.arrow?.y??0)+s/2;let _="",b="";return l==="bottom"?(_=c?p:`${x}px`,b=`${-s}px`):l==="top"?(_=c?p:`${x}px`,b=`${t.floating.height+s}px`):l==="right"?(_=`${-s}px`,b=c?p:`${v}px`):l==="left"&&(_=`${t.floating.width+s}px`,b=c?p:`${v}px`),{data:{x:_,y:b}}}});function Pc(e){const[r,o="center"]=e.split("-");return[r,o]}var Oc=Sc,Nc=Rc,Ic=jc,Ac=Tc;function Y0(e,r){return u.useReducer((o,t)=>r[o][t]??o,e)}var Lr=e=>{const{present:r,children:o}=e,t=K0(r),n=typeof o=="function"?o({present:t.isPresent}):u.Children.only(o),a=ge(t.ref,G0(n));return typeof o=="function"||t.isPresent?u.cloneElement(n,{ref:a}):null};Lr.displayName="Presence";function K0(e){const[r,o]=u.useState(),t=u.useRef(null),n=u.useRef(e),a=u.useRef("none"),c=e?"mounted":"unmounted",[i,s]=Y0(c,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return u.useEffect(()=>{const l=ro(t.current);a.current=i==="mounted"?l:"none"},[i]),_e(()=>{const l=t.current,f=n.current;if(f!==e){const x=a.current,v=ro(l);e?s("MOUNT"):v==="none"||l?.display==="none"?s("UNMOUNT"):s(f&&x!==v?"ANIMATION_OUT":"UNMOUNT"),n.current=e}},[e,s]),_e(()=>{if(r){let l;const f=r.ownerDocument.defaultView??window,p=v=>{const b=ro(t.current).includes(v.animationName);if(v.target===r&&b&&(s("ANIMATION_END"),!n.current)){const m=r.style.animationFillMode;r.style.animationFillMode="forwards",l=f.setTimeout(()=>{r.style.animationFillMode==="forwards"&&(r.style.animationFillMode=m)})}},x=v=>{v.target===r&&(a.current=ro(t.current))};return r.addEventListener("animationstart",x),r.addEventListener("animationcancel",p),r.addEventListener("animationend",p),()=>{f.clearTimeout(l),r.removeEventListener("animationstart",x),r.removeEventListener("animationcancel",p),r.removeEventListener("animationend",p)}}else s("ANIMATION_END")},[r,s]),{isPresent:["mounted","unmountSuspended"].includes(i),ref:u.useCallback(l=>{t.current=l?getComputedStyle(l):null,o(l)},[])}}function ro(e){return e?.animationName||"none"}function G0(e){let r=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning;return o?e.ref:(r=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}var X0=u[" useInsertionEffect ".trim().toString()]||_e;function Tr({prop:e,defaultProp:r,onChange:o=()=>{},caller:t}){const[n,a,c]=Z0({defaultProp:r,onChange:o}),i=e!==void 0,s=i?e:n;{const f=u.useRef(e!==void 0);u.useEffect(()=>{const p=f.current;p!==i&&console.warn(`${t} is changing from ${p?"controlled":"uncontrolled"} to ${i?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),f.current=i},[i,t])}const l=u.useCallback(f=>{if(i){const p=J0(f)?f(e):f;p!==e&&c.current?.(p)}else a(f)},[i,e,a,c]);return[s,l]}function Z0({defaultProp:e,onChange:r}){const[o,t]=u.useState(e),n=u.useRef(o),a=u.useRef(r);return X0(()=>{a.current=r},[r]),u.useEffect(()=>{n.current!==o&&(a.current?.(o),n.current=o)},[o,n]),[o,t,a]}function J0(e){return typeof e=="function"}var Q0=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),ef="VisuallyHidden",Mc=u.forwardRef((e,r)=>d.jsx(Po.span,{...e,ref:r,style:{...Q0,...e.style}}));Mc.displayName=ef;var rf=Mc,[Lo,nh]=cr("Tooltip",[Mo]),zo=Mo(),Lc="TooltipProvider",of=700,Dt="tooltip.open",[tf,sn]=Lo(Lc),zc=e=>{const{__scopeTooltip:r,delayDuration:o=of,skipDelayDuration:t=300,disableHoverableContent:n=!1,children:a}=e,c=u.useRef(!0),i=u.useRef(!1),s=u.useRef(0);return u.useEffect(()=>{const l=s.current;return()=>window.clearTimeout(l)},[]),d.jsx(tf,{scope:r,isOpenDelayedRef:c,delayDuration:o,onOpen:u.useCallback(()=>{window.clearTimeout(s.current),c.current=!1},[]),onClose:u.useCallback(()=>{window.clearTimeout(s.current),s.current=window.setTimeout(()=>c.current=!0,t)},[t]),isPointerInTransitRef:i,onPointerInTransitChange:u.useCallback(l=>{i.current=l},[]),disableHoverableContent:n,children:a})};zc.displayName=Lc;var qr="Tooltip",[nf,Fo]=Lo(qr),Fc=e=>{const{__scopeTooltip:r,children:o,open:t,defaultOpen:n,onOpenChange:a,disableHoverableContent:c,delayDuration:i}=e,s=sn(qr,e.__scopeTooltip),l=zo(r),[f,p]=u.useState(null),x=pr(),v=u.useRef(0),_=c??s.disableHoverableContent,b=i??s.delayDuration,m=u.useRef(!1),[w,h]=Tr({prop:t,defaultProp:n??!1,onChange:C=>{C?(s.onOpen(),document.dispatchEvent(new CustomEvent(Dt))):s.onClose(),a?.(C)},caller:qr}),k=u.useMemo(()=>w?m.current?"delayed-open":"instant-open":"closed",[w]),S=u.useCallback(()=>{window.clearTimeout(v.current),v.current=0,m.current=!1,h(!0)},[h]),D=u.useCallback(()=>{window.clearTimeout(v.current),v.current=0,h(!1)},[h]),N=u.useCallback(()=>{window.clearTimeout(v.current),v.current=window.setTimeout(()=>{m.current=!0,h(!0),v.current=0},b)},[b,h]);return u.useEffect(()=>()=>{v.current&&(window.clearTimeout(v.current),v.current=0)},[]),d.jsx(Oc,{...l,children:d.jsx(nf,{scope:r,contentId:x,open:w,stateAttribute:k,trigger:f,onTriggerChange:p,onTriggerEnter:u.useCallback(()=>{s.isOpenDelayedRef.current?N():S()},[s.isOpenDelayedRef,N,S]),onTriggerLeave:u.useCallback(()=>{_?D():(window.clearTimeout(v.current),v.current=0)},[D,_]),onOpen:S,onClose:D,disableHoverableContent:_,children:o})})};Fc.displayName=qr;var Tt="TooltipTrigger",$c=u.forwardRef((e,r)=>{const{__scopeTooltip:o,...t}=e,n=Fo(Tt,o),a=sn(Tt,o),c=zo(o),i=u.useRef(null),s=ge(r,i,n.onTriggerChange),l=u.useRef(!1),f=u.useRef(!1),p=u.useCallback(()=>l.current=!1,[]);return u.useEffect(()=>()=>document.removeEventListener("pointerup",p),[p]),d.jsx(Nc,{asChild:!0,...c,children:d.jsx(Po.button,{"aria-describedby":n.open?n.contentId:void 0,"data-state":n.stateAttribute,...t,ref:s,onPointerMove:oe(e.onPointerMove,x=>{x.pointerType!=="touch"&&!f.current&&!a.isPointerInTransitRef.current&&(n.onTriggerEnter(),f.current=!0)}),onPointerLeave:oe(e.onPointerLeave,()=>{n.onTriggerLeave(),f.current=!1}),onPointerDown:oe(e.onPointerDown,()=>{n.open&&n.onClose(),l.current=!0,document.addEventListener("pointerup",p,{once:!0})}),onFocus:oe(e.onFocus,()=>{l.current||n.onOpen()}),onBlur:oe(e.onBlur,n.onClose),onClick:oe(e.onClick,n.onClose)})})});$c.displayName=Tt;var af="TooltipPortal",[ah,cf]=Lo(af,{forceMount:void 0}),Pr="TooltipContent",Vc=u.forwardRef((e,r)=>{const o=cf(Pr,e.__scopeTooltip),{forceMount:t=o.forceMount,side:n="top",...a}=e,c=Fo(Pr,e.__scopeTooltip);return d.jsx(Lr,{present:t||c.open,children:c.disableHoverableContent?d.jsx(Wc,{side:n,...a,ref:r}):d.jsx(lf,{side:n,...a,ref:r})})}),lf=u.forwardRef((e,r)=>{const o=Fo(Pr,e.__scopeTooltip),t=sn(Pr,e.__scopeTooltip),n=u.useRef(null),a=ge(r,n),[c,i]=u.useState(null),{trigger:s,onClose:l}=o,f=n.current,{onPointerInTransitChange:p}=t,x=u.useCallback(()=>{i(null),p(!1)},[p]),v=u.useCallback((_,b)=>{const m=_.currentTarget,w={x:_.clientX,y:_.clientY},h=bf(w,m.getBoundingClientRect()),k=pf(w,h),S=gf(b.getBoundingClientRect()),D=xf([...k,...S]);i(D),p(!0)},[p]);return u.useEffect(()=>()=>x(),[x]),u.useEffect(()=>{if(s&&f){const _=m=>v(m,f),b=m=>v(m,s);return s.addEventListener("pointerleave",_),f.addEventListener("pointerleave",b),()=>{s.removeEventListener("pointerleave",_),f.removeEventListener("pointerleave",b)}}},[s,f,v,x]),u.useEffect(()=>{if(c){const _=b=>{const m=b.target,w={x:b.clientX,y:b.clientY},h=s?.contains(m)||f?.contains(m),k=!mf(w,c);h?x():k&&(x(),l())};return document.addEventListener("pointermove",_),()=>document.removeEventListener("pointermove",_)}},[s,f,c,l,x]),d.jsx(Wc,{...e,ref:a})}),[df,sf]=Lo(qr,{isInside:!1}),uf=Qs("TooltipContent"),Wc=u.forwardRef((e,r)=>{const{__scopeTooltip:o,children:t,"aria-label":n,onEscapeKeyDown:a,onPointerDownOutside:c,...i}=e,s=Fo(Pr,o),l=zo(o),{onClose:f}=s;return u.useEffect(()=>(document.addEventListener(Dt,f),()=>document.removeEventListener(Dt,f)),[f]),u.useEffect(()=>{if(s.trigger){const p=x=>{x.target?.contains(s.trigger)&&f()};return window.addEventListener("scroll",p,{capture:!0}),()=>window.removeEventListener("scroll",p,{capture:!0})}},[s.trigger,f]),d.jsx(ic,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:a,onPointerDownOutside:c,onFocusOutside:p=>p.preventDefault(),onDismiss:f,children:d.jsxs(Ic,{"data-state":s.stateAttribute,...l,...i,ref:r,style:{...i.style,"--radix-tooltip-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-tooltip-content-available-width":"var(--radix-popper-available-width)","--radix-tooltip-content-available-height":"var(--radix-popper-available-height)","--radix-tooltip-trigger-width":"var(--radix-popper-anchor-width)","--radix-tooltip-trigger-height":"var(--radix-popper-anchor-height)"},children:[d.jsx(uf,{children:t}),d.jsx(df,{scope:o,isInside:!0,children:d.jsx(rf,{id:s.contentId,role:"tooltip",children:n||t})})]})})});Vc.displayName=Pr;var Bc="TooltipArrow",ff=u.forwardRef((e,r)=>{const{__scopeTooltip:o,...t}=e,n=zo(o);return sf(Bc,o).isInside?null:d.jsx(Ac,{...n,...t,ref:r})});ff.displayName=Bc;function bf(e,r){const o=Math.abs(r.top-e.y),t=Math.abs(r.bottom-e.y),n=Math.abs(r.right-e.x),a=Math.abs(r.left-e.x);switch(Math.min(o,t,n,a)){case a:return"left";case n:return"right";case o:return"top";case t:return"bottom";default:throw new Error("unreachable")}}function pf(e,r,o=5){const t=[];switch(r){case"top":t.push({x:e.x-o,y:e.y+o},{x:e.x+o,y:e.y+o});break;case"bottom":t.push({x:e.x-o,y:e.y-o},{x:e.x+o,y:e.y-o});break;case"left":t.push({x:e.x+o,y:e.y-o},{x:e.x+o,y:e.y+o});break;case"right":t.push({x:e.x-o,y:e.y-o},{x:e.x-o,y:e.y+o});break}return t}function gf(e){const{top:r,right:o,bottom:t,left:n}=e;return[{x:n,y:r},{x:o,y:r},{x:o,y:t},{x:n,y:t}]}function mf(e,r){const{x:o,y:t}=e;let n=!1;for(let a=0,c=r.length-1;a<r.length;c=a++){const i=r[a],s=r[c],l=i.x,f=i.y,p=s.x,x=s.y;f>t!=x>t&&o<(p-l)*(t-f)/(x-f)+l&&(n=!n)}return n}function xf(e){const r=e.slice();return r.sort((o,t)=>o.x<t.x?-1:o.x>t.x?1:o.y<t.y?-1:o.y>t.y?1:0),hf(r)}function hf(e){if(e.length<=1)return e.slice();const r=[];for(let t=0;t<e.length;t++){const n=e[t];for(;r.length>=2;){const a=r[r.length-1],c=r[r.length-2];if((a.x-c.x)*(n.y-c.y)>=(a.y-c.y)*(n.x-c.x))r.pop();else break}r.push(n)}r.pop();const o=[];for(let t=e.length-1;t>=0;t--){const n=e[t];for(;o.length>=2;){const a=o[o.length-1],c=o[o.length-2];if((a.x-c.x)*(n.y-c.y)>=(a.y-c.y)*(n.x-c.x))o.pop();else break}o.push(n)}return o.pop(),r.length===1&&o.length===1&&r[0].x===o[0].x&&r[0].y===o[0].y?r:r.concat(o)}var vf=zc,yf=Fc,wf=$c,Hc=Vc;const kf=vf,_f=yf,Cf=wf,qc=u.forwardRef(({className:e,sideOffset:r=4,...o},t)=>d.jsx(Hc,{ref:t,sideOffset:r,className:ne("z-50 overflow-hidden rounded-md border bg-popover px-3 py-1.5 text-sm text-popover-foreground shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2","bg-white dark:bg-gray-900 text-gray-900 dark:text-gray-100 border-gray-200 dark:border-gray-700",e),...o}));qc.displayName=Hc.displayName;const Yn=({content:e,children:r,delayDuration:o=200})=>d.jsx(kf,{children:d.jsxs(_f,{delayDuration:o,children:[d.jsx(Cf,{asChild:!0,children:r}),d.jsx(qc,{children:e})]})});function Uc(e){const r=Sf(e),o=u.forwardRef((t,n)=>{const{children:a,...c}=t,i=u.Children.toArray(a),s=i.find(Rf);if(s){const l=s.props.children,f=i.map(p=>p===s?u.Children.count(l)>1?u.Children.only(null):u.isValidElement(l)?l.props.children:null:p);return d.jsx(r,{...c,ref:n,children:u.isValidElement(l)?u.cloneElement(l,void 0,f):null})}return d.jsx(r,{...c,ref:n,children:a})});return o.displayName=`${e}.Slot`,o}function Sf(e){const r=u.forwardRef((o,t)=>{const{children:n,...a}=o;if(u.isValidElement(n)){const c=Df(n),i=jf(a,n.props);return n.type!==u.Fragment&&(i.ref=t?ar(t,c):c),u.cloneElement(n,i)}return u.Children.count(n)>1?u.Children.only(null):null});return r.displayName=`${e}.SlotClone`,r}var Ef=Symbol("radix.slottable");function Rf(e){return u.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===Ef}function jf(e,r){const o={...r};for(const t in r){const n=e[t],a=r[t];/^on[A-Z]/.test(t)?n&&a?o[t]=(...i)=>{const s=a(...i);return n(...i),s}:n&&(o[t]=n):t==="style"?o[t]={...n,...a}:t==="className"&&(o[t]=[n,a].filter(Boolean).join(" "))}return{...e,...o}}function Df(e){let r=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning;return o?e.ref:(r=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}var Tf=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],yr=Tf.reduce((e,r)=>{const o=Uc(`Primitive.${r}`),t=u.forwardRef((n,a)=>{const{asChild:c,...i}=n,s=c?o:r;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(s,{...i,ref:a})});return t.displayName=`Primitive.${r}`,{...e,[r]:t}},{});function Pf(e,r){e&&nr.flushSync(()=>e.dispatchEvent(r))}var Of="DismissableLayer",Pt="dismissableLayer.update",Nf="dismissableLayer.pointerDownOutside",If="dismissableLayer.focusOutside",Kn,Yc=u.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),Kc=u.forwardRef((e,r)=>{const{disableOutsidePointerEvents:o=!1,onEscapeKeyDown:t,onPointerDownOutside:n,onFocusOutside:a,onInteractOutside:c,onDismiss:i,...s}=e,l=u.useContext(Yc),[f,p]=u.useState(null),x=f?.ownerDocument??globalThis?.document,[,v]=u.useState({}),_=ge(r,C=>p(C)),b=Array.from(l.layers),[m]=[...l.layersWithOutsidePointerEventsDisabled].slice(-1),w=b.indexOf(m),h=f?b.indexOf(f):-1,k=l.layersWithOutsidePointerEventsDisabled.size>0,S=h>=w,D=Lf(C=>{const g=C.target,y=[...l.branches].some(E=>E.contains(g));!S||y||(n?.(C),c?.(C),C.defaultPrevented||i?.())},x),N=zf(C=>{const g=C.target;[...l.branches].some(E=>E.contains(g))||(a?.(C),c?.(C),C.defaultPrevented||i?.())},x);return Oo(C=>{h===l.layers.size-1&&(t?.(C),!C.defaultPrevented&&i&&(C.preventDefault(),i()))},x),u.useEffect(()=>{if(f)return o&&(l.layersWithOutsidePointerEventsDisabled.size===0&&(Kn=x.body.style.pointerEvents,x.body.style.pointerEvents="none"),l.layersWithOutsidePointerEventsDisabled.add(f)),l.layers.add(f),Gn(),()=>{o&&l.layersWithOutsidePointerEventsDisabled.size===1&&(x.body.style.pointerEvents=Kn)}},[f,x,o,l]),u.useEffect(()=>()=>{f&&(l.layers.delete(f),l.layersWithOutsidePointerEventsDisabled.delete(f),Gn())},[f,l]),u.useEffect(()=>{const C=()=>v({});return document.addEventListener(Pt,C),()=>document.removeEventListener(Pt,C)},[]),d.jsx(yr.div,{...s,ref:_,style:{pointerEvents:k?S?"auto":"none":void 0,...e.style},onFocusCapture:oe(e.onFocusCapture,N.onFocusCapture),onBlurCapture:oe(e.onBlurCapture,N.onBlurCapture),onPointerDownCapture:oe(e.onPointerDownCapture,D.onPointerDownCapture)})});Kc.displayName=Of;var Af="DismissableLayerBranch",Mf=u.forwardRef((e,r)=>{const o=u.useContext(Yc),t=u.useRef(null),n=ge(r,t);return u.useEffect(()=>{const a=t.current;if(a)return o.branches.add(a),()=>{o.branches.delete(a)}},[o.branches]),d.jsx(yr.div,{...e,ref:n})});Mf.displayName=Af;function Lf(e,r=globalThis?.document){const o=Ce(e),t=u.useRef(!1),n=u.useRef(()=>{});return u.useEffect(()=>{const a=i=>{if(i.target&&!t.current){let s=function(){Gc(Nf,o,l,{discrete:!0})};const l={originalEvent:i};i.pointerType==="touch"?(r.removeEventListener("click",n.current),n.current=s,r.addEventListener("click",n.current,{once:!0})):s()}else r.removeEventListener("click",n.current);t.current=!1},c=window.setTimeout(()=>{r.addEventListener("pointerdown",a)},0);return()=>{window.clearTimeout(c),r.removeEventListener("pointerdown",a),r.removeEventListener("click",n.current)}},[r,o]),{onPointerDownCapture:()=>t.current=!0}}function zf(e,r=globalThis?.document){const o=Ce(e),t=u.useRef(!1);return u.useEffect(()=>{const n=a=>{a.target&&!t.current&&Gc(If,o,{originalEvent:a},{discrete:!1})};return r.addEventListener("focusin",n),()=>r.removeEventListener("focusin",n)},[r,o]),{onFocusCapture:()=>t.current=!0,onBlurCapture:()=>t.current=!1}}function Gn(){const e=new CustomEvent(Pt);document.dispatchEvent(e)}function Gc(e,r,o,{discrete:t}){const n=o.originalEvent.target,a=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:o});r&&n.addEventListener(e,r,{once:!0}),t?Pf(n,a):n.dispatchEvent(a)}function Ff(e){const r=$f(e),o=u.forwardRef((t,n)=>{const{children:a,...c}=t,i=u.Children.toArray(a),s=i.find(Wf);if(s){const l=s.props.children,f=i.map(p=>p===s?u.Children.count(l)>1?u.Children.only(null):u.isValidElement(l)?l.props.children:null:p);return d.jsx(r,{...c,ref:n,children:u.isValidElement(l)?u.cloneElement(l,void 0,f):null})}return d.jsx(r,{...c,ref:n,children:a})});return o.displayName=`${e}.Slot`,o}function $f(e){const r=u.forwardRef((o,t)=>{const{children:n,...a}=o;if(u.isValidElement(n)){const c=Hf(n),i=Bf(a,n.props);return n.type!==u.Fragment&&(i.ref=t?ar(t,c):c),u.cloneElement(n,i)}return u.Children.count(n)>1?u.Children.only(null):null});return r.displayName=`${e}.SlotClone`,r}var Vf=Symbol("radix.slottable");function Wf(e){return u.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===Vf}function Bf(e,r){const o={...r};for(const t in r){const n=e[t],a=r[t];/^on[A-Z]/.test(t)?n&&a?o[t]=(...i)=>{const s=a(...i);return n(...i),s}:n&&(o[t]=n):t==="style"?o[t]={...n,...a}:t==="className"&&(o[t]=[n,a].filter(Boolean).join(" "))}return{...e,...o}}function Hf(e){let r=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning;return o?e.ref:(r=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}var qf=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],Uf=qf.reduce((e,r)=>{const o=Ff(`Primitive.${r}`),t=u.forwardRef((n,a)=>{const{asChild:c,...i}=n,s=c?o:r;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(s,{...i,ref:a})});return t.displayName=`Primitive.${r}`,{...e,[r]:t}},{}),ot="focusScope.autoFocusOnMount",tt="focusScope.autoFocusOnUnmount",Xn={bubbles:!1,cancelable:!0},Yf="FocusScope",un=u.forwardRef((e,r)=>{const{loop:o=!1,trapped:t=!1,onMountAutoFocus:n,onUnmountAutoFocus:a,...c}=e,[i,s]=u.useState(null),l=Ce(n),f=Ce(a),p=u.useRef(null),x=ge(r,b=>s(b)),v=u.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;u.useEffect(()=>{if(t){let b=function(k){if(v.paused||!i)return;const S=k.target;i.contains(S)?p.current=S:er(p.current,{select:!0})},m=function(k){if(v.paused||!i)return;const S=k.relatedTarget;S!==null&&(i.contains(S)||er(p.current,{select:!0}))},w=function(k){if(document.activeElement===document.body)for(const D of k)D.removedNodes.length>0&&er(i)};document.addEventListener("focusin",b),document.addEventListener("focusout",m);const h=new MutationObserver(w);return i&&h.observe(i,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",b),document.removeEventListener("focusout",m),h.disconnect()}}},[t,i,v.paused]),u.useEffect(()=>{if(i){Jn.add(v);const b=document.activeElement;if(!i.contains(b)){const w=new CustomEvent(ot,Xn);i.addEventListener(ot,l),i.dispatchEvent(w),w.defaultPrevented||(Kf(Qf(Xc(i)),{select:!0}),document.activeElement===b&&er(i))}return()=>{i.removeEventListener(ot,l),setTimeout(()=>{const w=new CustomEvent(tt,Xn);i.addEventListener(tt,f),i.dispatchEvent(w),w.defaultPrevented||er(b??document.body,{select:!0}),i.removeEventListener(tt,f),Jn.remove(v)},0)}}},[i,l,f,v]);const _=u.useCallback(b=>{if(!o&&!t||v.paused)return;const m=b.key==="Tab"&&!b.altKey&&!b.ctrlKey&&!b.metaKey,w=document.activeElement;if(m&&w){const h=b.currentTarget,[k,S]=Gf(h);k&&S?!b.shiftKey&&w===S?(b.preventDefault(),o&&er(k,{select:!0})):b.shiftKey&&w===k&&(b.preventDefault(),o&&er(S,{select:!0})):w===h&&b.preventDefault()}},[o,t,v.paused]);return d.jsx(Uf.div,{tabIndex:-1,...c,ref:x,onKeyDown:_})});un.displayName=Yf;function Kf(e,{select:r=!1}={}){const o=document.activeElement;for(const t of e)if(er(t,{select:r}),document.activeElement!==o)return}function Gf(e){const r=Xc(e),o=Zn(r,e),t=Zn(r.reverse(),e);return[o,t]}function Xc(e){const r=[],o=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:t=>{const n=t.tagName==="INPUT"&&t.type==="hidden";return t.disabled||t.hidden||n?NodeFilter.FILTER_SKIP:t.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;o.nextNode();)r.push(o.currentNode);return r}function Zn(e,r){for(const o of e)if(!Xf(o,{upTo:r}))return o}function Xf(e,{upTo:r}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(r!==void 0&&e===r)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function Zf(e){return e instanceof HTMLInputElement&&"select"in e}function er(e,{select:r=!1}={}){if(e&&e.focus){const o=document.activeElement;e.focus({preventScroll:!0}),e!==o&&Zf(e)&&r&&e.select()}}var Jn=Jf();function Jf(){let e=[];return{add(r){const o=e[0];r!==o&&o?.pause(),e=Qn(e,r),e.unshift(r)},remove(r){e=Qn(e,r),e[0]?.resume()}}}function Qn(e,r){const o=[...e],t=o.indexOf(r);return t!==-1&&o.splice(t,1),o}function Qf(e){return e.filter(r=>r.tagName!=="A")}var nt=0;function Zc(){u.useEffect(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??ea()),document.body.insertAdjacentElement("beforeend",e[1]??ea()),nt++,()=>{nt===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(r=>r.remove()),nt--}},[])}function ea(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}var Be=function(){return Be=Object.assign||function(r){for(var o,t=1,n=arguments.length;t<n;t++){o=arguments[t];for(var a in o)Object.prototype.hasOwnProperty.call(o,a)&&(r[a]=o[a])}return r},Be.apply(this,arguments)};function Jc(e,r){var o={};for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&r.indexOf(t)<0&&(o[t]=e[t]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var n=0,t=Object.getOwnPropertySymbols(e);n<t.length;n++)r.indexOf(t[n])<0&&Object.prototype.propertyIsEnumerable.call(e,t[n])&&(o[t[n]]=e[t[n]]);return o}function wr(e,r,o,t){function n(a){return a instanceof o?a:new o(function(c){c(a)})}return new(o||(o=Promise))(function(a,c){function i(f){try{l(t.next(f))}catch(p){c(p)}}function s(f){try{l(t.throw(f))}catch(p){c(p)}}function l(f){f.done?a(f.value):n(f.value).then(i,s)}l((t=t.apply(e,r||[])).next())})}function eb(e,r,o){if(o||arguments.length===2)for(var t=0,n=r.length,a;t<n;t++)(a||!(t in r))&&(a||(a=Array.prototype.slice.call(r,0,t)),a[t]=r[t]);return e.concat(a||Array.prototype.slice.call(r))}var bo="right-scroll-bar-position",po="width-before-scroll-bar",rb="with-scroll-bars-hidden",ob="--removed-body-scroll-bar-size";function at(e,r){return typeof e=="function"?e(r):e&&(e.current=r),e}function tb(e,r){var o=O.useState(function(){return{value:e,callback:r,facade:{get current(){return o.value},set current(t){var n=o.value;n!==t&&(o.value=t,o.callback(t,n))}}}})[0];return o.callback=r,o.facade}var nb=typeof window<"u"?u.useLayoutEffect:u.useEffect,ra=new WeakMap;function ab(e,r){var o=tb(null,function(t){return e.forEach(function(n){return at(n,t)})});return nb(function(){var t=ra.get(o);if(t){var n=new Set(t),a=new Set(e),c=o.current;n.forEach(function(i){a.has(i)||at(i,null)}),a.forEach(function(i){n.has(i)||at(i,c)})}ra.set(o,e)},[e]),o}function cb(e){return e}function ib(e,r){r===void 0&&(r=cb);var o=[],t=!1,n={read:function(){if(t)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return o.length?o[o.length-1]:e},useMedium:function(a){var c=r(a,t);return o.push(c),function(){o=o.filter(function(i){return i!==c})}},assignSyncMedium:function(a){for(t=!0;o.length;){var c=o;o=[],c.forEach(a)}o={push:function(i){return a(i)},filter:function(){return o}}},assignMedium:function(a){t=!0;var c=[];if(o.length){var i=o;o=[],i.forEach(a),c=o}var s=function(){var f=c;c=[],f.forEach(a)},l=function(){return Promise.resolve().then(s)};l(),o={push:function(f){c.push(f),l()},filter:function(f){return c=c.filter(f),o}}}};return n}function lb(e){e===void 0&&(e={});var r=ib(null);return r.options=Be({async:!0,ssr:!1},e),r}var Qc=function(e){var r=e.sideCar,o=Jc(e,["sideCar"]);if(!r)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var t=r.read();if(!t)throw new Error("Sidecar medium not found");return u.createElement(t,Be({},o))};Qc.isSideCarExport=!0;function db(e,r){return e.useMedium(r),Qc}var ei=lb(),ct=function(){},$o=u.forwardRef(function(e,r){var o=u.useRef(null),t=u.useState({onScrollCapture:ct,onWheelCapture:ct,onTouchMoveCapture:ct}),n=t[0],a=t[1],c=e.forwardProps,i=e.children,s=e.className,l=e.removeScrollBar,f=e.enabled,p=e.shards,x=e.sideCar,v=e.noIsolation,_=e.inert,b=e.allowPinchZoom,m=e.as,w=m===void 0?"div":m,h=e.gapMode,k=Jc(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as","gapMode"]),S=x,D=ab([o,r]),N=Be(Be({},k),n);return u.createElement(u.Fragment,null,f&&u.createElement(S,{sideCar:ei,removeScrollBar:l,shards:p,noIsolation:v,inert:_,setCallbacks:a,allowPinchZoom:!!b,lockRef:o,gapMode:h}),c?u.cloneElement(u.Children.only(i),Be(Be({},N),{ref:D})):u.createElement(w,Be({},N,{className:s,ref:D}),i))});$o.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};$o.classNames={fullWidth:po,zeroRight:bo};var sb=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function ub(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var r=sb();return r&&e.setAttribute("nonce",r),e}function fb(e,r){e.styleSheet?e.styleSheet.cssText=r:e.appendChild(document.createTextNode(r))}function bb(e){var r=document.head||document.getElementsByTagName("head")[0];r.appendChild(e)}var pb=function(){var e=0,r=null;return{add:function(o){e==0&&(r=ub())&&(fb(r,o),bb(r)),e++},remove:function(){e--,!e&&r&&(r.parentNode&&r.parentNode.removeChild(r),r=null)}}},gb=function(){var e=pb();return function(r,o){u.useEffect(function(){return e.add(r),function(){e.remove()}},[r&&o])}},ri=function(){var e=gb(),r=function(o){var t=o.styles,n=o.dynamic;return e(t,n),null};return r},mb={left:0,top:0,right:0,gap:0},it=function(e){return parseInt(e||"",10)||0},xb=function(e){var r=window.getComputedStyle(document.body),o=r[e==="padding"?"paddingLeft":"marginLeft"],t=r[e==="padding"?"paddingTop":"marginTop"],n=r[e==="padding"?"paddingRight":"marginRight"];return[it(o),it(t),it(n)]},hb=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return mb;var r=xb(e),o=document.documentElement.clientWidth,t=window.innerWidth;return{left:r[0],top:r[1],right:r[2],gap:Math.max(0,t-o+r[2]-r[0])}},vb=ri(),jr="data-scroll-locked",yb=function(e,r,o,t){var n=e.left,a=e.top,c=e.right,i=e.gap;return o===void 0&&(o="margin"),`
|
|
91
|
-
.`.concat(rb,` {
|
|
92
|
-
overflow: hidden `).concat(t,`;
|
|
93
|
-
padding-right: `).concat(i,"px ").concat(t,`;
|
|
94
|
-
}
|
|
95
|
-
body[`).concat(jr,`] {
|
|
96
|
-
overflow: hidden `).concat(t,`;
|
|
97
|
-
overscroll-behavior: contain;
|
|
98
|
-
`).concat([r&&"position: relative ".concat(t,";"),o==="margin"&&`
|
|
99
|
-
padding-left: `.concat(n,`px;
|
|
100
|
-
padding-top: `).concat(a,`px;
|
|
101
|
-
padding-right: `).concat(c,`px;
|
|
102
|
-
margin-left:0;
|
|
103
|
-
margin-top:0;
|
|
104
|
-
margin-right: `).concat(i,"px ").concat(t,`;
|
|
105
|
-
`),o==="padding"&&"padding-right: ".concat(i,"px ").concat(t,";")].filter(Boolean).join(""),`
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.`).concat(bo,` {
|
|
109
|
-
right: `).concat(i,"px ").concat(t,`;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.`).concat(po,` {
|
|
113
|
-
margin-right: `).concat(i,"px ").concat(t,`;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.`).concat(bo," .").concat(bo,` {
|
|
117
|
-
right: 0 `).concat(t,`;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.`).concat(po," .").concat(po,` {
|
|
121
|
-
margin-right: 0 `).concat(t,`;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
body[`).concat(jr,`] {
|
|
125
|
-
`).concat(ob,": ").concat(i,`px;
|
|
126
|
-
}
|
|
127
|
-
`)},oa=function(){var e=parseInt(document.body.getAttribute(jr)||"0",10);return isFinite(e)?e:0},wb=function(){u.useEffect(function(){return document.body.setAttribute(jr,(oa()+1).toString()),function(){var e=oa()-1;e<=0?document.body.removeAttribute(jr):document.body.setAttribute(jr,e.toString())}},[])},kb=function(e){var r=e.noRelative,o=e.noImportant,t=e.gapMode,n=t===void 0?"margin":t;wb();var a=u.useMemo(function(){return hb(n)},[n]);return u.createElement(vb,{styles:yb(a,!r,n,o?"":"!important")})},Ot=!1;if(typeof window<"u")try{var oo=Object.defineProperty({},"passive",{get:function(){return Ot=!0,!0}});window.addEventListener("test",oo,oo),window.removeEventListener("test",oo,oo)}catch{Ot=!1}var _r=Ot?{passive:!1}:!1,_b=function(e){return e.tagName==="TEXTAREA"},oi=function(e,r){if(!(e instanceof Element))return!1;var o=window.getComputedStyle(e);return o[r]!=="hidden"&&!(o.overflowY===o.overflowX&&!_b(e)&&o[r]==="visible")},Cb=function(e){return oi(e,"overflowY")},Sb=function(e){return oi(e,"overflowX")},ta=function(e,r){var o=r.ownerDocument,t=r;do{typeof ShadowRoot<"u"&&t instanceof ShadowRoot&&(t=t.host);var n=ti(e,t);if(n){var a=ni(e,t),c=a[1],i=a[2];if(c>i)return!0}t=t.parentNode}while(t&&t!==o.body);return!1},Eb=function(e){var r=e.scrollTop,o=e.scrollHeight,t=e.clientHeight;return[r,o,t]},Rb=function(e){var r=e.scrollLeft,o=e.scrollWidth,t=e.clientWidth;return[r,o,t]},ti=function(e,r){return e==="v"?Cb(r):Sb(r)},ni=function(e,r){return e==="v"?Eb(r):Rb(r)},jb=function(e,r){return e==="h"&&r==="rtl"?-1:1},Db=function(e,r,o,t,n){var a=jb(e,window.getComputedStyle(r).direction),c=a*t,i=o.target,s=r.contains(i),l=!1,f=c>0,p=0,x=0;do{var v=ni(e,i),_=v[0],b=v[1],m=v[2],w=b-m-a*_;(_||w)&&ti(e,i)&&(p+=w,x+=_),i instanceof ShadowRoot?i=i.host:i=i.parentNode}while(!s&&i!==document.body||s&&(r.contains(i)||r===i));return(f&&Math.abs(p)<1||!f&&Math.abs(x)<1)&&(l=!0),l},to=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},na=function(e){return[e.deltaX,e.deltaY]},aa=function(e){return e&&"current"in e?e.current:e},Tb=function(e,r){return e[0]===r[0]&&e[1]===r[1]},Pb=function(e){return`
|
|
128
|
-
.block-interactivity-`.concat(e,` {pointer-events: none;}
|
|
129
|
-
.allow-interactivity-`).concat(e,` {pointer-events: all;}
|
|
130
|
-
`)},Ob=0,Cr=[];function Nb(e){var r=u.useRef([]),o=u.useRef([0,0]),t=u.useRef(),n=u.useState(Ob++)[0],a=u.useState(ri)[0],c=u.useRef(e);u.useEffect(function(){c.current=e},[e]),u.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(n));var b=eb([e.lockRef.current],(e.shards||[]).map(aa),!0).filter(Boolean);return b.forEach(function(m){return m.classList.add("allow-interactivity-".concat(n))}),function(){document.body.classList.remove("block-interactivity-".concat(n)),b.forEach(function(m){return m.classList.remove("allow-interactivity-".concat(n))})}}},[e.inert,e.lockRef.current,e.shards]);var i=u.useCallback(function(b,m){if("touches"in b&&b.touches.length===2||b.type==="wheel"&&b.ctrlKey)return!c.current.allowPinchZoom;var w=to(b),h=o.current,k="deltaX"in b?b.deltaX:h[0]-w[0],S="deltaY"in b?b.deltaY:h[1]-w[1],D,N=b.target,C=Math.abs(k)>Math.abs(S)?"h":"v";if("touches"in b&&C==="h"&&N.type==="range")return!1;var g=ta(C,N);if(!g)return!0;if(g?D=C:(D=C==="v"?"h":"v",g=ta(C,N)),!g)return!1;if(!t.current&&"changedTouches"in b&&(k||S)&&(t.current=D),!D)return!0;var y=t.current||D;return Db(y,m,b,y==="h"?k:S)},[]),s=u.useCallback(function(b){var m=b;if(!(!Cr.length||Cr[Cr.length-1]!==a)){var w="deltaY"in m?na(m):to(m),h=r.current.filter(function(D){return D.name===m.type&&(D.target===m.target||m.target===D.shadowParent)&&Tb(D.delta,w)})[0];if(h&&h.should){m.cancelable&&m.preventDefault();return}if(!h){var k=(c.current.shards||[]).map(aa).filter(Boolean).filter(function(D){return D.contains(m.target)}),S=k.length>0?i(m,k[0]):!c.current.noIsolation;S&&m.cancelable&&m.preventDefault()}}},[]),l=u.useCallback(function(b,m,w,h){var k={name:b,delta:m,target:w,should:h,shadowParent:Ib(w)};r.current.push(k),setTimeout(function(){r.current=r.current.filter(function(S){return S!==k})},1)},[]),f=u.useCallback(function(b){o.current=to(b),t.current=void 0},[]),p=u.useCallback(function(b){l(b.type,na(b),b.target,i(b,e.lockRef.current))},[]),x=u.useCallback(function(b){l(b.type,to(b),b.target,i(b,e.lockRef.current))},[]);u.useEffect(function(){return Cr.push(a),e.setCallbacks({onScrollCapture:p,onWheelCapture:p,onTouchMoveCapture:x}),document.addEventListener("wheel",s,_r),document.addEventListener("touchmove",s,_r),document.addEventListener("touchstart",f,_r),function(){Cr=Cr.filter(function(b){return b!==a}),document.removeEventListener("wheel",s,_r),document.removeEventListener("touchmove",s,_r),document.removeEventListener("touchstart",f,_r)}},[]);var v=e.removeScrollBar,_=e.inert;return u.createElement(u.Fragment,null,_?u.createElement(a,{styles:Pb(n)}):null,v?u.createElement(kb,{gapMode:e.gapMode}):null)}function Ib(e){for(var r=null;e!==null;)e instanceof ShadowRoot&&(r=e.host,e=e.host),e=e.parentNode;return r}const Ab=db(ei,Nb);var fn=u.forwardRef(function(e,r){return u.createElement($o,Be({},e,{ref:r,sideCar:Ab}))});fn.classNames=$o.classNames;var Mb=function(e){if(typeof document>"u")return null;var r=Array.isArray(e)?e[0]:e;return r.ownerDocument.body},Sr=new WeakMap,no=new WeakMap,ao={},lt=0,ai=function(e){return e&&(e.host||ai(e.parentNode))},Lb=function(e,r){return r.map(function(o){if(e.contains(o))return o;var t=ai(o);return t&&e.contains(t)?t:(console.error("aria-hidden",o,"in not contained inside",e,". Doing nothing"),null)}).filter(function(o){return!!o})},zb=function(e,r,o,t){var n=Lb(r,Array.isArray(e)?e:[e]);ao[o]||(ao[o]=new WeakMap);var a=ao[o],c=[],i=new Set,s=new Set(n),l=function(p){!p||i.has(p)||(i.add(p),l(p.parentNode))};n.forEach(l);var f=function(p){!p||s.has(p)||Array.prototype.forEach.call(p.children,function(x){if(i.has(x))f(x);else try{var v=x.getAttribute(t),_=v!==null&&v!=="false",b=(Sr.get(x)||0)+1,m=(a.get(x)||0)+1;Sr.set(x,b),a.set(x,m),c.push(x),b===1&&_&&no.set(x,!0),m===1&&x.setAttribute(o,"true"),_||x.setAttribute(t,"true")}catch(w){console.error("aria-hidden: cannot operate on ",x,w)}})};return f(r),i.clear(),lt++,function(){c.forEach(function(p){var x=Sr.get(p)-1,v=a.get(p)-1;Sr.set(p,x),a.set(p,v),x||(no.has(p)||p.removeAttribute(t),no.delete(p)),v||p.removeAttribute(o)}),lt--,lt||(Sr=new WeakMap,Sr=new WeakMap,no=new WeakMap,ao={})}},ci=function(e,r,o){o===void 0&&(o="data-aria-hidden");var t=Array.from(Array.isArray(e)?e:[e]),n=Mb(e);return n?(t.push.apply(t,Array.from(n.querySelectorAll("[aria-live]"))),zb(t,n,o,"aria-hidden")):function(){return null}},Vo="Dialog",[ii,ch]=cr(Vo),[Fb,Ke]=ii(Vo),li=e=>{const{__scopeDialog:r,children:o,open:t,defaultOpen:n,onOpenChange:a,modal:c=!0}=e,i=u.useRef(null),s=u.useRef(null),[l,f]=Tr({prop:t,defaultProp:n??!1,onChange:a,caller:Vo});return d.jsx(Fb,{scope:r,triggerRef:i,contentRef:s,contentId:pr(),titleId:pr(),descriptionId:pr(),open:l,onOpenChange:f,onOpenToggle:u.useCallback(()=>f(p=>!p),[f]),modal:c,children:o})};li.displayName=Vo;var di="DialogTrigger",$b=u.forwardRef((e,r)=>{const{__scopeDialog:o,...t}=e,n=Ke(di,o),a=ge(r,n.triggerRef);return d.jsx(yr.button,{type:"button","aria-haspopup":"dialog","aria-expanded":n.open,"aria-controls":n.contentId,"data-state":pn(n.open),...t,ref:a,onClick:oe(e.onClick,n.onOpenToggle)})});$b.displayName=di;var Vb="DialogPortal",[ih,si]=ii(Vb,{forceMount:void 0}),Co="DialogOverlay",ui=u.forwardRef((e,r)=>{const o=si(Co,e.__scopeDialog),{forceMount:t=o.forceMount,...n}=e,a=Ke(Co,e.__scopeDialog);return a.modal?d.jsx(Lr,{present:t||a.open,children:d.jsx(Bb,{...n,ref:r})}):null});ui.displayName=Co;var Wb=Uc("DialogOverlay.RemoveScroll"),Bb=u.forwardRef((e,r)=>{const{__scopeDialog:o,...t}=e,n=Ke(Co,o);return d.jsx(fn,{as:Wb,allowPinchZoom:!0,shards:[n.contentRef],children:d.jsx(yr.div,{"data-state":pn(n.open),...t,ref:r,style:{pointerEvents:"auto",...t.style}})})}),xr="DialogContent",fi=u.forwardRef((e,r)=>{const o=si(xr,e.__scopeDialog),{forceMount:t=o.forceMount,...n}=e,a=Ke(xr,e.__scopeDialog);return d.jsx(Lr,{present:t||a.open,children:a.modal?d.jsx(Hb,{...n,ref:r}):d.jsx(qb,{...n,ref:r})})});fi.displayName=xr;var Hb=u.forwardRef((e,r)=>{const o=Ke(xr,e.__scopeDialog),t=u.useRef(null),n=ge(r,o.contentRef,t);return u.useEffect(()=>{const a=t.current;if(a)return ci(a)},[]),d.jsx(bi,{...e,ref:n,trapFocus:o.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:oe(e.onCloseAutoFocus,a=>{a.preventDefault(),o.triggerRef.current?.focus()}),onPointerDownOutside:oe(e.onPointerDownOutside,a=>{const c=a.detail.originalEvent,i=c.button===0&&c.ctrlKey===!0;(c.button===2||i)&&a.preventDefault()}),onFocusOutside:oe(e.onFocusOutside,a=>a.preventDefault())})}),qb=u.forwardRef((e,r)=>{const o=Ke(xr,e.__scopeDialog),t=u.useRef(!1),n=u.useRef(!1);return d.jsx(bi,{...e,ref:r,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:a=>{e.onCloseAutoFocus?.(a),a.defaultPrevented||(t.current||o.triggerRef.current?.focus(),a.preventDefault()),t.current=!1,n.current=!1},onInteractOutside:a=>{e.onInteractOutside?.(a),a.defaultPrevented||(t.current=!0,a.detail.originalEvent.type==="pointerdown"&&(n.current=!0));const c=a.target;o.triggerRef.current?.contains(c)&&a.preventDefault(),a.detail.originalEvent.type==="focusin"&&n.current&&a.preventDefault()}})}),bi=u.forwardRef((e,r)=>{const{__scopeDialog:o,trapFocus:t,onOpenAutoFocus:n,onCloseAutoFocus:a,...c}=e,i=Ke(xr,o),s=u.useRef(null),l=ge(r,s);return Zc(),d.jsxs(d.Fragment,{children:[d.jsx(un,{asChild:!0,loop:!0,trapped:t,onMountAutoFocus:n,onUnmountAutoFocus:a,children:d.jsx(Kc,{role:"dialog",id:i.contentId,"aria-describedby":i.descriptionId,"aria-labelledby":i.titleId,"data-state":pn(i.open),...c,ref:l,onDismiss:()=>i.onOpenChange(!1)})}),d.jsxs(d.Fragment,{children:[d.jsx(Ub,{titleId:i.titleId}),d.jsx(Kb,{contentRef:s,descriptionId:i.descriptionId})]})]})}),bn="DialogTitle",pi=u.forwardRef((e,r)=>{const{__scopeDialog:o,...t}=e,n=Ke(bn,o);return d.jsx(yr.h2,{id:n.titleId,...t,ref:r})});pi.displayName=bn;var gi="DialogDescription",mi=u.forwardRef((e,r)=>{const{__scopeDialog:o,...t}=e,n=Ke(gi,o);return d.jsx(yr.p,{id:n.descriptionId,...t,ref:r})});mi.displayName=gi;var xi="DialogClose",hi=u.forwardRef((e,r)=>{const{__scopeDialog:o,...t}=e,n=Ke(xi,o);return d.jsx(yr.button,{type:"button",...t,ref:r,onClick:oe(e.onClick,()=>n.onOpenChange(!1))})});hi.displayName=xi;function pn(e){return e?"open":"closed"}var vi="DialogTitleWarning",[lh,yi]=Gs(vi,{contentName:xr,titleName:bn,docsSlug:"dialog"}),Ub=({titleId:e})=>{const r=yi(vi),o=`\`${r.contentName}\` requires a \`${r.titleName}\` for the component to be accessible for screen reader users.
|
|
131
|
-
|
|
132
|
-
If you want to hide the \`${r.titleName}\`, you can wrap it with our VisuallyHidden component.
|
|
133
|
-
|
|
134
|
-
For more information, see https://radix-ui.com/primitives/docs/components/${r.docsSlug}`;return u.useEffect(()=>{e&&(document.getElementById(e)||console.error(o))},[o,e]),null},Yb="DialogDescriptionWarning",Kb=({contentRef:e,descriptionId:r})=>{const t=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${yi(Yb).contentName}}.`;return u.useEffect(()=>{const n=e.current?.getAttribute("aria-describedby");r&&n&&(document.getElementById(r)||console.warn(t))},[t,e,r]),null},Gb=li,wi=ui,ki=fi,_i=pi,Ci=mi,Xb=hi;const Zb=Gb,Si=u.forwardRef(({className:e,...r},o)=>d.jsx(wi,{ref:o,className:ne("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",e),...r}));Si.displayName=wi.displayName;const Ei=u.forwardRef(({className:e,children:r,...o},t)=>d.jsxs(d.Fragment,{children:[d.jsx(Si,{}),d.jsxs(ki,{ref:t,className:ne("fixed left-[50%] top-[50%] z-50 flex flex-col w-full max-w-lg translate-x-[-50%] translate-y-[-50%] border bg-white p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg overflow-hidden",e),style:{height:"90vh",maxHeight:"90vh"},...o,children:[r,d.jsxs(Xb,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground",children:[d.jsx(Jt,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));Ei.displayName=ki.displayName;const Ri=({className:e,...r})=>d.jsx("div",{className:ne("flex flex-col space-y-1.5 text-center sm:text-left",e),...r});Ri.displayName="DialogHeader";const ji=({className:e,...r})=>d.jsx("div",{className:ne("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",e),...r});ji.displayName="DialogFooter";const Di=u.forwardRef(({className:e,...r},o)=>d.jsx(_i,{ref:o,className:ne("text-lg font-semibold leading-none tracking-tight",e),...r}));Di.displayName=_i.displayName;const Jb=u.forwardRef(({className:e,...r},o)=>d.jsx(Ci,{ref:o,className:ne("text-sm text-muted-foreground",e),...r}));Jb.displayName=Ci.displayName;const Ti=u.forwardRef(({className:e,type:r,...o},t)=>d.jsx("input",{type:r,className:ne("flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",e),ref:t,...o}));Ti.displayName="Input";function Pi(e){const r=u.useRef({value:e,previous:e});return u.useMemo(()=>(r.current.value!==e&&(r.current.previous=r.current.value,r.current.value=e),r.current.previous),[e])}var Qb=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],Ie=Qb.reduce((e,r)=>{const o=xo(`Primitive.${r}`),t=u.forwardRef((n,a)=>{const{asChild:c,...i}=n,s=c?o:r;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(s,{...i,ref:a})});return t.displayName=`Primitive.${r}`,{...e,[r]:t}},{});function Oi(e,r){e&&nr.flushSync(()=>e.dispatchEvent(r))}var Wo="Checkbox",[ep,dh]=cr(Wo),[rp,op]=ep(Wo),Ni=u.forwardRef((e,r)=>{const{__scopeCheckbox:o,name:t,checked:n,defaultChecked:a,required:c,disabled:i,value:s="on",onCheckedChange:l,form:f,...p}=e,[x,v]=u.useState(null),_=ge(r,S=>v(S)),b=u.useRef(!1),m=x?f||!!x.closest("form"):!0,[w,h]=Tr({prop:n,defaultProp:a??!1,onChange:l,caller:Wo}),k=u.useRef(w);return u.useEffect(()=>{const S=x?.form;if(S){const D=()=>h(k.current);return S.addEventListener("reset",D),()=>S.removeEventListener("reset",D)}},[x,h]),d.jsxs(rp,{scope:o,state:w,disabled:i,children:[d.jsx(Ie.button,{type:"button",role:"checkbox","aria-checked":rr(w)?"mixed":w,"aria-required":c,"data-state":Li(w),"data-disabled":i?"":void 0,disabled:i,value:s,...p,ref:_,onKeyDown:oe(e.onKeyDown,S=>{S.key==="Enter"&&S.preventDefault()}),onClick:oe(e.onClick,S=>{h(D=>rr(D)?!0:!D),m&&(b.current=S.isPropagationStopped(),b.current||S.stopPropagation())})}),m&&d.jsx(Mi,{control:x,bubbles:!b.current,name:t,value:s,checked:w,required:c,disabled:i,form:f,style:{transform:"translateX(-100%)"},defaultChecked:rr(a)?!1:a})]})});Ni.displayName=Wo;var Ii="CheckboxIndicator",Ai=u.forwardRef((e,r)=>{const{__scopeCheckbox:o,forceMount:t,...n}=e,a=op(Ii,o);return d.jsx(Lr,{present:t||rr(a.state)||a.state===!0,children:d.jsx(Ie.span,{"data-state":Li(a.state),"data-disabled":a.disabled?"":void 0,...n,ref:r,style:{pointerEvents:"none",...e.style}})})});Ai.displayName=Ii;var tp="CheckboxBubbleInput",Mi=u.forwardRef(({__scopeCheckbox:e,control:r,checked:o,bubbles:t=!0,defaultChecked:n,...a},c)=>{const i=u.useRef(null),s=ge(i,c),l=Pi(o),f=kc(r);u.useEffect(()=>{const x=i.current;if(!x)return;const v=window.HTMLInputElement.prototype,b=Object.getOwnPropertyDescriptor(v,"checked").set;if(l!==o&&b){const m=new Event("click",{bubbles:t});x.indeterminate=rr(o),b.call(x,rr(o)?!1:o),x.dispatchEvent(m)}},[l,o,t]);const p=u.useRef(rr(o)?!1:o);return d.jsx(Ie.input,{type:"checkbox","aria-hidden":!0,defaultChecked:n??p.current,...a,tabIndex:-1,ref:s,style:{...a.style,...f,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});Mi.displayName=tp;function rr(e){return e==="indeterminate"}function Li(e){return rr(e)?"indeterminate":e?"checked":"unchecked"}var zi=Ni,np=Ai;const Fi=u.forwardRef(({className:e,...r},o)=>d.jsx(zi,{ref:o,className:ne("peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",e),...r,children:d.jsx(np,{className:ne("flex items-center justify-center text-current"),children:d.jsx(gr,{className:"h-3 w-3"})})}));Fi.displayName=zi.displayName;const ap=1,cp=1e6;let dt=0;function ip(){return dt=(dt+1)%Number.MAX_SAFE_INTEGER,dt.toString()}const st=new Map,ca=e=>{if(st.has(e))return;const r=setTimeout(()=>{st.delete(e),Wr({type:"REMOVE_TOAST",toastId:e})},cp);st.set(e,r)},lp=(e,r)=>{switch(r.type){case"ADD_TOAST":return{...e,toasts:[r.toast,...e.toasts].slice(0,ap)};case"UPDATE_TOAST":return{...e,toasts:e.toasts.map(o=>o.id===r.toast.id?{...o,...r.toast}:o)};case"DISMISS_TOAST":{const{toastId:o}=r;return o?ca(o):e.toasts.forEach(t=>{ca(t.id)}),{...e,toasts:e.toasts.map(t=>t.id===o||o===void 0?{...t,open:!1}:t)}}case"REMOVE_TOAST":return r.toastId===void 0?{...e,toasts:[]}:{...e,toasts:e.toasts.filter(o=>o.id!==r.toastId)}}},go=[];let mo={toasts:[]};function Wr(e){mo=lp(mo,e),go.forEach(r=>{r(mo)})}function dp({...e}){const r=ip(),o=n=>Wr({type:"UPDATE_TOAST",toast:{...n,id:r}}),t=()=>Wr({type:"DISMISS_TOAST",toastId:r});return Wr({type:"ADD_TOAST",toast:{...e,id:r,open:!0,onOpenChange:n=>{n||t()}}}),{id:r,dismiss:t,update:o}}function $i(){const[e,r]=u.useState(mo);return u.useEffect(()=>(go.push(r),()=>{const o=go.indexOf(r);o>-1&&go.splice(o,1)}),[e]),{...e,toast:dp,dismiss:o=>Wr({type:"DISMISS_TOAST",toastId:o})}}const ia={t:(e,r)=>{if(r){let o=e;return Object.entries(r).forEach(([t,n])=>{o=o.replace(new RegExp(`{{${t}}}`,"g"),String(n))}),o}return e},changeLanguage:()=>Promise.resolve(),addResourceBundle:()=>!0},ir=()=>({t:ia.t,i18n:ia});async function sp(e,r,o,t,n,a,c){if(!e||e.trim().length<3)return{success:!1,changes:[],summary:"",error:"Please describe the transformation you want to apply"};if(!t||!n)return{success:!1,changes:[],summary:"",error:"Missing configuration"};try{const i=await fetch(`${t}/api/v1/imports/key/transform`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({importerKey:n,prompt:e,data:r,columnMapping:o,targetColumns:a,validationErrors:c})});if(!i.ok){if(i.status===429)return{success:!1,changes:[],summary:"",error:"Rate limit exceeded. Please try again later."};const l=await i.json().catch(()=>({}));return{success:!1,changes:[],summary:"",error:l.error||"Failed to generate transformations"}}const s=await i.json();return s.changes&&(s.changes=s.changes.map(l=>({...l,selected:l.selected!==!1}))),s}catch(i){return console.error("Transformation service error:",i),{success:!1,changes:[],summary:"",error:"Network error. Please check your connection."}}}function up(e){return e.filter(r=>r.selected).length}function fp(e,r){return e.map((o,t)=>t===r?{...o,selected:!o.selected}:o)}function la(e,r){return e.map(o=>({...o,selected:r}))}const bp=["Convert all dates to MM/DD/YYYY format","Convert all dates to YYYY-MM-DD format","Remove special characters from phone numbers","Format phone numbers as (XXX) XXX-XXXX","Capitalize all names","Convert text to uppercase","Convert text to lowercase","Trim extra spaces","Fill empty values with 'N/A'","Remove dollar signs and commas from amounts"];function pp({isOpen:e,onClose:r,data:o,columnMapping:t,backendUrl:n,importerKey:a,validationErrors:c,onApplyTransformations:i}){const{t:s}=ir(),{toast:l}=$i(),f=O.useRef(null),[p,x]=O.useState(""),[v,_]=O.useState([]),[b,m]=O.useState(""),[w,h]=O.useState(null),[k,S]=O.useState(!1),[D,N]=O.useState(!1),C=c&&c.length>0,g=O.useCallback(async T=>{const R=T||p;if(!R.trim()){h("Please describe the transformation");return}S(!0),h(null),_([]),m("");try{const j=await sp(R,o,t,n,a,void 0,c);j.success&&j.changes.length>0?(_(j.changes),m(j.summary)):j.error?h(j.error):h("No transformations generated. Try a different description.")}catch{h("Failed to generate transformations")}finally{S(!1)}},[p,o,t,n,a,c]),y=O.useCallback(()=>{g("fix errors")},[g]),E=O.useCallback(T=>{const R=T?la(v,!0):v.filter(j=>j.selected);i(R),l({title:"Transformations applied",description:`${R.length} changes applied successfully`}),r()},[v,i,r,l]),A=O.useCallback(T=>{_(R=>fp(R,T))},[]),I=O.useCallback(T=>{_(R=>la(R,T))},[]),L=O.useCallback(T=>{x(T),N(!1),f.current?.focus()},[]),P=O.useCallback(()=>{x(""),_([]),m(""),h(null),N(!1),r()},[r]),H=up(v),M=v.length>0;return d.jsx(Zb,{open:e,onOpenChange:P,children:d.jsxs(Ei,{className:"max-w-[800px]",children:[d.jsx(Ri,{children:d.jsxs(Di,{className:"flex items-center gap-2",children:[d.jsx(Qo,{className:"h-5 w-5"}),s("Transform data with AI")]})}),d.jsxs("div",{className:"flex-1 overflow-y-auto min-h-0 space-y-4",children:[C&&!M&&d.jsxs(d.Fragment,{children:[d.jsxs(ho,{children:[d.jsx(Zt,{className:"h-4 w-4"}),d.jsxs(vo,{children:[d.jsxs("strong",{children:[c.length," validation error",c.length>1?"s":""," detected"]}),d.jsx("br",{}),'Click "Fix All Errors" to automatically correct validation issues in your data.']})]}),d.jsx("div",{className:"flex justify-center py-4",children:d.jsxs(je,{type:"button",size:"lg",onClick:y,isLoading:k,disabled:k,className:"px-8",children:[d.jsx(Qo,{className:"mr-2 h-5 w-5"}),s(k?"Fixing errors...":"Fix All Errors")]})})]}),!C&&!M&&d.jsxs("div",{children:[d.jsxs("div",{className:"flex gap-2 mb-2",children:[d.jsx(Ti,{ref:f,placeholder:s("Describe the transformation (e.g., 'Convert dates to MM/DD/YYYY')"),value:p,onChange:T=>x(T.target.value),onKeyPress:T=>T.key==="Enter"&&g(),disabled:k,className:"h-10"}),d.jsxs(je,{type:"button",onClick:()=>g(),isLoading:k,disabled:k,children:[d.jsx(Qo,{className:"mr-2 h-4 w-4"}),s(k?"Generating":"Generate")]})]}),d.jsx("button",{className:"text-xs text-blue-600 hover:underline",onClick:()=>N(!D),children:s(D?"Hide examples":"Show examples")}),D&&d.jsxs("div",{className:"mt-2 p-2 bg-gray-50 rounded-md",children:[d.jsx("p",{className:"text-xs mb-1 font-bold",children:s("Click to use:")}),d.jsx("div",{className:"flex flex-wrap gap-1",children:bp.slice(0,5).map((T,R)=>d.jsx("span",{className:"px-2 py-1 text-xs bg-gray-200 rounded cursor-pointer hover:bg-blue-100",onClick:()=>L(T),children:T},R))})]})]}),w&&d.jsx(ho,{variant:"destructive",children:d.jsx(vo,{children:w})}),k&&d.jsxs("div",{className:"text-center py-8",children:[d.jsx("div",{className:"inline-block animate-spin rounded-full h-8 w-8 border-b-2 border-blue-500"}),d.jsx("p",{className:"mt-2 text-gray-600",children:s("Analyzing data and generating transformations...")})]}),M&&!k&&d.jsx(d.Fragment,{children:d.jsxs("div",{children:[d.jsxs("div",{className:"flex justify-between items-center mb-2",children:[d.jsx("span",{className:"font-bold",children:b||`${v.length} transformation${v.length!==1?"s":""} generated`}),d.jsxs("div",{className:"flex gap-2",children:[d.jsx(je,{type:"button",size:"sm",variant:"outline",onClick:()=>I(!0),children:s("Select all")}),d.jsx(je,{type:"button",size:"sm",variant:"outline",onClick:()=>I(!1),children:s("Deselect all")})]})]}),d.jsx("div",{className:"max-h-[300px] overflow-y-auto border border-gray-200 rounded-md p-2",children:d.jsxs("div",{className:"space-y-1",children:[v.slice(0,100).map((T,R)=>d.jsxs("div",{className:`flex items-start gap-2 p-2 rounded-md border cursor-pointer ${T.selected?"bg-blue-50 border-blue-200 hover:bg-blue-100":"bg-white border-gray-100 hover:bg-gray-50"}`,onClick:()=>A(R),children:[d.jsx(Fi,{checked:T.selected,onCheckedChange:()=>A(R),onClick:j=>j.stopPropagation()}),d.jsxs("div",{className:"flex-1 space-y-0",children:[d.jsxs("div",{className:"text-sm text-gray-900 flex items-center gap-2",children:[d.jsx("span",{className:"line-through",children:String(T.oldValue||"empty")}),d.jsx("span",{children:"→"}),d.jsx("span",{className:"text-green-600 font-bold",children:String(T.newValue)})]}),d.jsxs("p",{className:"text-xs text-gray-600",children:["Row ",T.rowIndex+1,", ",T.columnKey]})]})]},R)),v.length>100&&d.jsx("p",{className:"text-sm text-gray-500 text-center",children:s(`Showing first 100 of ${v.length} changes`)})]})}),d.jsxs("p",{className:"text-sm text-gray-600 mt-1",children:[H," ",s("selected")]})]})})]}),d.jsx(ji,{children:d.jsxs("div",{className:"flex gap-3",children:[d.jsx(je,{type:"button",variant:"outline",onClick:P,children:s("Cancel")}),M&&d.jsxs(d.Fragment,{children:[d.jsx(je,{type:"button",variant:"outline",onClick:()=>E(!1),disabled:H===0,children:s(`Apply ${H} selected`)}),d.jsxs(je,{type:"button",onClick:()=>E(!0),children:[d.jsx(gr,{className:"mr-2 h-4 w-4"}),s("Apply all")]})]})]})})]})})}function gp(e,r){const o=String(e||"").trim();if(r.validators)for(const t of r.validators){const n=mp(o,t,r);if(n)return n}if(o)switch(r.type){case"email":if(!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(o))return"Invalid email address";break;case"number":if(isNaN(Number(o)))return"Must be a number";break;case"phone":if(o.replace(/\D/g,"").length<10)return"Invalid phone number (must be at least 10 digits)";break;case"date":const n=new Date(o);if(isNaN(n.getTime()))return"Invalid date format";break;case"select":if(r.options&&!r.options.includes(o))return`Must be one of: ${r.options.join(", ")}`;break}return null}function mp(e,r,o){switch(r.type){case"required":if(!e||e==="")return r.message||`${o.label} is required`;break;case"unique":break;case"regex":if(e&&!new RegExp(r.pattern).test(e))return r.message||`${o.label} format is invalid`;break;case"min":const t=Number(e);if(!isNaN(t)&&t<r.value)return r.message||`${o.label} must be at least ${r.value}`;break;case"max":const n=Number(e);if(!isNaN(n)&&n>r.value)return r.message||`${o.label} must be at most ${r.value}`;break;case"min_length":if(e&&e.length<r.value)return r.message||`${o.label} must be at least ${r.value} characters`;break;case"max_length":if(e&&e.length>r.value)return r.message||`${o.label} must be at most ${r.value} characters`;break}return null}function xp(e,r,o){const t=[],n=new Map;return e.forEach((a,c)=>{const i=String(a[r]||"").trim().toLowerCase();if(i)if(n.has(i)){const s=n.get(i);t.includes(s)||t.push(s),t.push(c)}else n.set(i,c)}),t}function hp(e,r){if(!r||r.length===0)return e;let o=e;for(const t of r)o=vp(o,t);return o}function vp(e,r){const o=String(e||"");switch(r.type){case"trim":return o.trim();case"uppercase":return o.toUpperCase();case"lowercase":return o.toLowerCase();case"capitalize":return o.split(" ").map(a=>a.charAt(0).toUpperCase()+a.slice(1).toLowerCase()).join(" ");case"remove_special_chars":return o.replace(/[^a-zA-Z0-9\s]/g,"");case"normalize_phone":const t=o.replace(/\D/g,"");return t.length===10?`(${t.slice(0,3)}) ${t.slice(3,6)}-${t.slice(6)}`:t.length===11&&t[0]==="1"?`(${t.slice(1,4)}) ${t.slice(4,7)}-${t.slice(7)}`:o;case"normalize_date":let n=new Date(o);if(isNaN(n.getTime())){const a=o.split(/[-\/]/);a.length===3&&(n=new Date(`${a[2]}-${a[0].padStart(2,"0")}-${a[1].padStart(2,"0")}`),isNaN(n.getTime())&&(n=new Date(`${a[0]}-${a[1].padStart(2,"0")}-${a[2].padStart(2,"0")}`)))}if(!isNaN(n.getTime())){const a=r.format||"YYYY-MM-DD";return yp(n,a)}return o;case"default":return o.trim()===""?r.value:o;case"replace":try{return o.replace(new RegExp(r.find,"g"),r.replace)}catch{return o.split(r.find).join(r.replace)}case"custom":try{return r.fn(e)}catch{return e}default:return e}}function yp(e,r){const o=e.getFullYear(),t=String(e.getMonth()+1).padStart(2,"0"),n=String(e.getDate()).padStart(2,"0");return r.replace("YYYY",String(o)).replace("MM",t).replace("DD",n)}function wp({columns:e,data:r,columnMapping:o,selectedHeaderRow:t,onSuccess:n,onCancel:a,isSubmitting:c,backendUrl:i,importerKey:s,filterInvalidRows:l,disableOnInvalidRows:f}){const[p,x]=O.useState([]),[v,_]=O.useState("all"),[b,m]=O.useState(!1),w=O.useRef(null),h=t||0,k=r.rows[h],[S,D]=O.useState(()=>r.rows.slice(h+1)),N=O.useMemo(()=>Object.entries(o).filter(([M,T])=>T.include).map(([M])=>parseInt(M)),[o]),C=O.useMemo(()=>N.map(M=>String(k.values[M])),[N,k]),g=O.useRef(!0);O.useEffect(()=>{w.current&&(w.current.scrollTop=0)},[]),O.useEffect(()=>{if(!e)return;const M=e.map(R=>R.id);Object.entries(o).filter(([R,j])=>j.include?!M.includes(j.id||j.key):!1).length>0},[e,o]);const y=O.useCallback(()=>{if(!g.current)return;const M=[];S.forEach((T,R)=>{const j=R+h+1;Object.entries(o).forEach(([q,V])=>{if(!V.include)return;const U=parseInt(q);if(isNaN(U))return;const z=V.id||V.key,Y=e?.find($=>$.id===z);if(!Y)return;const ae=T.values[U],ce=gp(ae,Y);ce&&M.push({rowIndex:j,columnIndex:U,message:ce})})}),e?.forEach(T=>{if(T.validators?.some(j=>j.type==="unique")){const j=Object.entries(o).find(([q,V])=>V.include&&(V.id||V.key)===T.id);if(j){const q=parseInt(j[0]),V=S.map(z=>z.values);xp(V,q).forEach(z=>{const Y=z+h+1;if(!M.find(ce=>ce.rowIndex===Y&&ce.columnIndex===q)){const ce=T.validators?.find($=>$.type==="unique");M.push({rowIndex:Y,columnIndex:q,message:ce?.message||`${T.label} must be unique`})}})}}}),x(M),g.current=!1},[S,o,e,h]);O.useEffect(()=>{g.current=!0,y()},[S,y]);const E=O.useCallback((M,T,R)=>{S[M]?.values[T]!==R&&(D(j=>{const q=[...j];return q[M]&&q[M].values&&(q[M]={...q[M],values:[...q[M].values]},q[M].values[T]=R),g.current=!0,q}),g.current=!0)},[S]),{visibleRows:A,validCount:I,errorCount:L}=O.useMemo(()=>{const M=new Set(p.map(q=>q.rowIndex-h-1)),T=S.filter((q,V)=>!M.has(V)),R=S.filter((q,V)=>M.has(V));let j;return v==="valid"?j=T:v==="error"?j=R:j=S,{visibleRows:j,validCount:T.length,errorCount:R.length}},[S,v,p,h]),P=O.useMemo(()=>{const M=new Set,T=new Set;return p.forEach(R=>{const j=R.rowIndex-h-1;j>=0&&j<S.length&&(M.add(j),T.add(S[j]?.index||-1))}),{indices:M,objects:Array.from(T).filter(R=>R!==-1),count:M.size}},[p,h,S]),H=M=>{if(M.preventDefault(),f&&p.length>0)return;const R=(l?S.filter((j,q)=>!P.indices.has(q)):S).map(j=>{const q={...j},V=j.values.map((U,z)=>{if(!N.includes(z))return U;const Y=o[z];if(!Y||!(Y.id||Y.key))return U;const ae=e?.find(ce=>ce.id===(Y.id||Y.key));return!ae||!ae.transformations?U:hp(U,ae.transformations)});return q.values=V,q});n({...r,rows:[k,...R]})};return d.jsxs("form",{onSubmit:H,className:"flex flex-col h-full",children:[d.jsxs("div",{className:"px-6 py-4 border-b",children:[d.jsx("h2",{className:"text-xl font-semibold",children:"Validate Data"}),d.jsx("p",{className:"text-sm text-gray-600 mt-1",children:"Review and correct any errors in your data before importing."})]}),d.jsxs("div",{className:"px-6 py-4 border-b bg-gray-50",children:[l&&P.count>0&&d.jsxs(ho,{className:"mb-4",children:[d.jsx(Ms,{className:"h-4 w-4"}),d.jsx(nc,{children:"Invalid Rows Will Be Filtered"}),d.jsx(vo,{children:`${P.count} ${P.count===1?"row":"rows"} with validation errors will be excluded from the import. You can fix the errors to include these rows.`})]}),d.jsx("div",{className:"",children:d.jsxs("div",{className:"flex justify-between items-center",children:[d.jsxs("div",{className:"flex space-x-1 p-1 bg-gray-100 rounded-lg",children:[d.jsxs("button",{type:"button",className:`px-4 py-2 rounded-md text-sm font-medium transition-colors ${v==="all"?"bg-white text-gray-900 shadow-sm":"text-gray-600 hover:text-gray-900"}`,onClick:()=>_("all"),children:["All ",d.jsx("span",{className:"ml-2 px-2 py-0.5 bg-gray-200 rounded-full text-xs",children:S.length})]}),d.jsxs("button",{type:"button",className:`px-4 py-2 rounded-md text-sm font-medium transition-colors ${v==="valid"?"bg-white text-gray-900 shadow-sm":"text-gray-600 hover:text-gray-900"}`,onClick:()=>_("valid"),children:["Valid ",d.jsx("span",{className:"ml-2 px-2 py-0.5 bg-green-100 text-green-700 rounded-full text-xs",children:I})]}),d.jsxs("button",{type:"button",className:`px-4 py-2 rounded-md text-sm font-medium transition-colors ${v==="error"?"bg-white text-red-600 shadow-sm":"text-red-600 hover:text-red-700"}`,onClick:()=>_("error"),children:["Error ",d.jsx("span",{className:"ml-2 px-2 py-0.5 bg-red-100 text-red-700 rounded-full text-xs",children:L})]})]}),d.jsx("div",{className:"flex items-center space-x-2",children:i&&s&&L>0&&d.jsx(Yn,{content:"Use AI to automatically fix validation errors",children:d.jsxs(je,{type:"button",size:"sm",onClick:()=>m(!0),variant:"default",className:"shadow-sm",children:[d.jsx(zs,{className:"mr-2 h-4 w-4"}),"Fix errors"]})})})]})})]}),d.jsxs("div",{className:"flex-1 overflow-auto",ref:w,children:[d.jsx("div",{className:"min-w-full",children:d.jsxs("table",{className:"border-collapse",style:{minWidth:"100%"},children:[d.jsx("thead",{className:"bg-gray-50 border-b-2 border-gray-200",style:{position:"sticky",top:0,zIndex:10},children:d.jsxs("tr",{children:[d.jsx("th",{className:"text-left px-6 py-3 text-sm font-semibold text-gray-700 bg-gray-50 border-r border-gray-200",style:{position:"sticky",left:0,zIndex:11,minWidth:"60px",width:"60px"},children:"#"}),C.map((M,T)=>d.jsx("th",{className:"text-left px-6 py-3 text-sm font-semibold text-gray-700 bg-gray-50",style:{minWidth:"150px"},children:d.jsx("div",{children:M})},T))]})}),d.jsx("tbody",{children:A.map((M,T)=>{const R=S.indexOf(M),j=R+h+1,q=p.some(V=>V.rowIndex===j);return d.jsxs("tr",{className:`border-b border-gray-200 hover:bg-gray-50 transition-colors ${q?"bg-red-50 hover:bg-red-100":""}`,children:[d.jsx("td",{className:"px-6 py-3 text-sm text-gray-700 border-r border-gray-200",style:{position:"sticky",left:0,zIndex:5,backgroundColor:q?"#FEF2F2":"#F9FAFB",minWidth:"60px",width:"60px"},children:d.jsx("span",{children:j+1})}),N.map((V,U)=>{const z=M.values[V],Y=p.find(ae=>ae.rowIndex===j&&ae.columnIndex===V);return d.jsx("td",{className:"px-6 py-3",style:{minWidth:"150px"},children:d.jsxs("div",{className:"relative",children:[d.jsx("input",{type:"text",value:String(z||""),onChange:ae=>E(R,V,ae.target.value),tabIndex:0,className:`w-full px-3 py-2 text-sm border rounded focus:outline-none focus:ring-2 focus:ring-blue-500 transition-colors ${Y?"border-red-500 bg-red-50":"border-gray-300 hover:border-gray-400"}`}),Y&&d.jsx(Yn,{content:Y.message,children:d.jsx("span",{className:"absolute right-2 top-1/2 transform -translate-y-1/2",children:d.jsxs("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",children:[d.jsx("circle",{cx:"8",cy:"8",r:"7",fill:"#DC2626"}),d.jsx("path",{d:"M8 4.5V9",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round"}),d.jsx("circle",{cx:"8",cy:"11.5",r:"0.75",fill:"white"})]})})})]})},U)})]},T)})})]})}),A.length===0&&d.jsx("div",{className:"p-8 text-center",children:d.jsx("span",{className:"text-gray-500",children:v==="error"?"No rows with errors found":v==="valid"?"No valid rows found":"No data to display"})})]}),d.jsxs("div",{className:"px-6 py-4 border-t bg-gray-50 flex justify-between items-center",children:[d.jsx(je,{type:"button",variant:"outline",onClick:a,disabled:c,size:"default",children:"Back"}),d.jsx(je,{type:"submit",isLoading:c,disabled:f&&p.length>0,size:"default",variant:"default",children:"Submit"})]}),i&&s&&d.jsx(pp,{isOpen:b,onClose:()=>m(!1),data:S,columnMapping:o,backendUrl:i,importerKey:s,validationErrors:p.map(M=>{const T=M.rowIndex-h-1;return{rowIndex:T,columnKey:o[M.columnIndex]?.id||o[M.columnIndex]?.key||"",message:M.message,value:S[T]?.values[M.columnIndex]}}),onApplyTransformations:M=>{const T=[...S];M.forEach(R=>{const{rowIndex:j,columnIndex:q,newValue:V}=R;if(q===void 0){console.warn(`Skipping change for row ${j}: columnIndex is undefined`);return}if(j<0||j>=T.length){console.warn(`Skipping change: rowIndex ${j} out of bounds (dataRows has ${T.length} rows)`);return}T[j]&&T[j].values&&(T[j]===S[j]&&(T[j]={...T[j],values:[...T[j].values]}),T[j].values[q]=V)}),D(T),g.current=!0,m(!1)}})]})}function kp(e,r){O.useEffect(()=>{},[e,r])}function _p(e){return/^#([0-9A-F]{3}){1,2}$/i.test(e)}function Vi(e){const r=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);return r?{r:parseInt(r[1],16),g:parseInt(r[2],16),b:parseInt(r[3],16)}:null}function Wi(e,r,o){return"#"+((1<<24)+(e<<16)+(r<<8)+o).toString(16).slice(1)}function $r(e,r){const o=Vi(e);if(!o)return e;const t=r/100,n=Math.min(255,Math.round(o.r+(255-o.r)*t)),a=Math.min(255,Math.round(o.g+(255-o.g)*t)),c=Math.min(255,Math.round(o.b+(255-o.b)*t));return Wi(n,a,c)}function br(e,r){const o=Vi(e);if(!o)return e;const t=1-r/100,n=Math.round(o.r*t),a=Math.round(o.g*t),c=Math.round(o.b*t);return Wi(n,a,c)}function Cp(e){return{50:$r(e,95),100:$r(e,90),200:$r(e,80),300:$r(e,60),400:$r(e,40),500:e,600:br(e,10),700:br(e,20),800:br(e,30),900:br(e,40)}}function Sp(e,r){Cp(e);{console.warn("applyColorPalette: No target element provided, skipping style application to prevent leakage");return}}function Ep(e,r){const{returnType:o="object",escapePercent:t=!1}=r||{};if(typeof e>"u")return o==="string"?"":{};let n={};if(typeof e=="string")try{n=JSON.parse(e)}catch{return o==="string"?"":{}}else n=e;if(t)for(const a in n)typeof n[a]=="string"&&(n[a]=n[a].replace(/%(?!25)/g,"%25"));return o==="string"?JSON.stringify(n):n}const Rp=(e,r)=>Ep(r,{returnType:"string",escapePercent:!0});function jp(e,r=0,o){const[t,n]=O.useState(r),a=O.useMemo(()=>e[t],[t,e]);return{steps:e,current:t,step:a,setCurrent:n,skipHeader:o}}function Dp(e,r){const o=()=>{if(typeof window>"u")return r;try{const c=window.localStorage.getItem(e);return c?JSON.parse(c):r}catch{return r}},[t,n]=O.useState(o());return O.useEffect(()=>{n(o())},[e]),[t,c=>{try{const i=c instanceof Function?c(t):c;n(i),typeof window<"u"&&window.localStorage.setItem(e,JSON.stringify(i))}catch{}}]}const ve={Upload:0,RowSelection:1,MapColumns:2,Validation:3,Complete:4},Tp=(e,r)=>r&&e===ve.RowSelection?ve.MapColumns:e,Pp=e=>[{label:"Upload",id:0},{label:"Configure",id:1},{label:"Validation",id:2}];function Op(e,r,o=!1){const{t}=ir(),n=Pp().map(b=>({...b,label:t(b.label)})),a=e===ve.MapColumns?1:e===ve.Validation?2:e===ve.Complete?3:0,c=jp(n,a,r),i=o?[null,()=>{}]:Dp("tf_steps",""),[s,l]=i,[f,p]=O.useState(e),x=b=>{const m=b!==void 0?b:Math.max(0,f-1);_(m)},v=(b=0)=>{b=b||f+1||0;const m=Tp(b,r);_(m)},_=b=>{p(b),l(b);const m=b===ve.Upload?0:b===ve.MapColumns?1:b===ve.Validation?2:b===ve.Complete?3:b;c.setCurrent(m)};return O.useEffect(()=>{if(o||s===null)return;const b=s||0,m=b===ve.Upload?0:b===ve.MapColumns?1:b===ve.Validation?2:b===ve.Complete?3:b;c.setCurrent(m),p(b)},[s,o]),{currentStep:o?f:s??f,setStep:_,goBack:x,goNext:v,stepper:c,stepId:c?.step?.id,setStorageStep:l}}function Np({className:e,variants:r=[],...o}){const t={fluid:"max-w-none",mid:"max-w-[440px]",wide:"max-w-[660px]","space-l":"p-8","space-mid":"p-4","space-none":"p-0","bg-shade":"bg-gray-50"},n=r.map(a=>t[a]).filter(Boolean).join(" ");return d.jsx("div",{...o,className:ne("block mx-auto p-4 bg-white rounded-lg shadow-lg max-w-full",n,e)})}function Ip({reload:e,close:r,isModal:o}){const{t}=ir();return d.jsx(Np,{className:ne("max-w-[1000px] pt-4 h-full flex-1 shadow-none bg-transparent self-center","flex items-center justify-center text-2xl flex-col gap-4 text-center relative"),children:d.jsxs(d.Fragment,{children:[d.jsx("span",{className:ne("w-16 h-16 relative isolate flex items-center justify-center","before:content-[''] before:absolute before:inset-0 before:rounded-full","before:bg-green-500 before:-z-10"),children:d.jsx(gr,{className:"w-6 h-6 text-white"})}),d.jsx("div",{children:t("Import Successful")}),d.jsxs("div",{className:ne("flex gap-8 items-center justify-center mt-12","[&>*]:flex-1 [&>*]:min-w-[190px]"),children:[d.jsxs(je,{type:"button",variant:"outline",onClick:e,children:[d.jsx(Ns,{className:"mr-2 h-4 w-4"}),t("Upload another file")]}),o&&d.jsxs(je,{type:"button",onClick:r,children:[d.jsx(gr,{className:"mr-2 h-4 w-4"}),t("Done")]})]})]})})}const Xr=u.forwardRef(({className:e,direction:r="row",align:o,justify:t,wrap:n,gap:a,style:c,...i},s)=>{const l=ne("flex",{"flex-row":r==="row","flex-col":r==="column","flex-row-reverse":r==="row-reverse","flex-col-reverse":r==="column-reverse","items-start":o==="start","items-center":o==="center","items-end":o==="end","items-stretch":o==="stretch","items-baseline":o==="baseline","justify-start":t==="start","justify-center":t==="center","justify-end":t==="end","justify-between":t==="between","justify-around":t==="around","justify-evenly":t==="evenly","flex-wrap":n},e),f=a?{gap:typeof a=="number"?`${a*.25}rem`:a}:{};return d.jsx("div",{ref:s,className:l,style:{...f,...c},...i})});Xr.displayName="Flex";const Me=u.forwardRef(({className:e,...r},o)=>d.jsx("div",{ref:o,className:ne(e),...r}));Me.displayName="Box";const Bi=u.forwardRef((e,r)=>d.jsx(Xr,{ref:r,direction:"row",align:"center",...e}));Bi.displayName="HStack";const Hi=u.forwardRef((e,r)=>d.jsx(Xr,{ref:r,direction:"column",...e}));Hi.displayName="VStack";const De=u.forwardRef(({className:e,...r},o)=>d.jsx("div",{ref:o,className:ne(e),...r}));De.displayName="Text";function da(e,[r,o]){return Math.min(o,Math.max(r,e))}function So(e){const r=Ap(e),o=u.forwardRef((t,n)=>{const{children:a,...c}=t,i=u.Children.toArray(a),s=i.find(Lp);if(s){const l=s.props.children,f=i.map(p=>p===s?u.Children.count(l)>1?u.Children.only(null):u.isValidElement(l)?l.props.children:null:p);return d.jsx(r,{...c,ref:n,children:u.isValidElement(l)?u.cloneElement(l,void 0,f):null})}return d.jsx(r,{...c,ref:n,children:a})});return o.displayName=`${e}.Slot`,o}function Ap(e){const r=u.forwardRef((o,t)=>{const{children:n,...a}=o;if(u.isValidElement(n)){const c=Fp(n),i=zp(a,n.props);return n.type!==u.Fragment&&(i.ref=t?ar(t,c):c),u.cloneElement(n,i)}return u.Children.count(n)>1?u.Children.only(null):null});return r.displayName=`${e}.SlotClone`,r}var Mp=Symbol("radix.slottable");function Lp(e){return u.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===Mp}function zp(e,r){const o={...r};for(const t in r){const n=e[t],a=r[t];/^on[A-Z]/.test(t)?n&&a?o[t]=(...i)=>{const s=a(...i);return n(...i),s}:n&&(o[t]=n):t==="style"?o[t]={...n,...a}:t==="className"&&(o[t]=[n,a].filter(Boolean).join(" "))}return{...e,...o}}function Fp(e){let r=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning;return o?e.ref:(r=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=r&&"isReactWarning"in r&&r.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}function $p(e){const r=e+"CollectionProvider",[o,t]=cr(r),[n,a]=o(r,{collectionRef:{current:null},itemMap:new Map}),c=b=>{const{scope:m,children:w}=b,h=O.useRef(null),k=O.useRef(new Map).current;return d.jsx(n,{scope:m,itemMap:k,collectionRef:h,children:w})};c.displayName=r;const i=e+"CollectionSlot",s=So(i),l=O.forwardRef((b,m)=>{const{scope:w,children:h}=b,k=a(i,w),S=ge(m,k.collectionRef);return d.jsx(s,{ref:S,children:h})});l.displayName=i;const f=e+"CollectionItemSlot",p="data-radix-collection-item",x=So(f),v=O.forwardRef((b,m)=>{const{scope:w,children:h,...k}=b,S=O.useRef(null),D=ge(m,S),N=a(f,w);return O.useEffect(()=>(N.itemMap.set(S,{ref:S,...k}),()=>void N.itemMap.delete(S))),d.jsx(x,{[p]:"",ref:D,children:h})});v.displayName=f;function _(b){const m=a(e+"CollectionConsumer",b);return O.useCallback(()=>{const h=m.collectionRef.current;if(!h)return[];const k=Array.from(h.querySelectorAll(`[${p}]`));return Array.from(m.itemMap.values()).sort((N,C)=>k.indexOf(N.ref.current)-k.indexOf(C.ref.current))},[m.collectionRef,m.itemMap])}return[{Provider:c,Slot:l,ItemSlot:v},_,t]}var Vp=u.createContext(void 0);function Wp(e){const r=u.useContext(Vp);return e||r||"ltr"}var Bp=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],Se=Bp.reduce((e,r)=>{const o=So(`Primitive.${r}`),t=u.forwardRef((n,a)=>{const{asChild:c,...i}=n,s=c?o:r;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(s,{...i,ref:a})});return t.displayName=`Primitive.${r}`,{...e,[r]:t}},{});function Hp(e,r){e&&nr.flushSync(()=>e.dispatchEvent(r))}var qp="DismissableLayer",Nt="dismissableLayer.update",Up="dismissableLayer.pointerDownOutside",Yp="dismissableLayer.focusOutside",sa,qi=u.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),Ui=u.forwardRef((e,r)=>{const{disableOutsidePointerEvents:o=!1,onEscapeKeyDown:t,onPointerDownOutside:n,onFocusOutside:a,onInteractOutside:c,onDismiss:i,...s}=e,l=u.useContext(qi),[f,p]=u.useState(null),x=f?.ownerDocument??globalThis?.document,[,v]=u.useState({}),_=ge(r,C=>p(C)),b=Array.from(l.layers),[m]=[...l.layersWithOutsidePointerEventsDisabled].slice(-1),w=b.indexOf(m),h=f?b.indexOf(f):-1,k=l.layersWithOutsidePointerEventsDisabled.size>0,S=h>=w,D=Xp(C=>{const g=C.target,y=[...l.branches].some(E=>E.contains(g));!S||y||(n?.(C),c?.(C),C.defaultPrevented||i?.())},x),N=Zp(C=>{const g=C.target;[...l.branches].some(E=>E.contains(g))||(a?.(C),c?.(C),C.defaultPrevented||i?.())},x);return Oo(C=>{h===l.layers.size-1&&(t?.(C),!C.defaultPrevented&&i&&(C.preventDefault(),i()))},x),u.useEffect(()=>{if(f)return o&&(l.layersWithOutsidePointerEventsDisabled.size===0&&(sa=x.body.style.pointerEvents,x.body.style.pointerEvents="none"),l.layersWithOutsidePointerEventsDisabled.add(f)),l.layers.add(f),ua(),()=>{o&&l.layersWithOutsidePointerEventsDisabled.size===1&&(x.body.style.pointerEvents=sa)}},[f,x,o,l]),u.useEffect(()=>()=>{f&&(l.layers.delete(f),l.layersWithOutsidePointerEventsDisabled.delete(f),ua())},[f,l]),u.useEffect(()=>{const C=()=>v({});return document.addEventListener(Nt,C),()=>document.removeEventListener(Nt,C)},[]),d.jsx(Se.div,{...s,ref:_,style:{pointerEvents:k?S?"auto":"none":void 0,...e.style},onFocusCapture:oe(e.onFocusCapture,N.onFocusCapture),onBlurCapture:oe(e.onBlurCapture,N.onBlurCapture),onPointerDownCapture:oe(e.onPointerDownCapture,D.onPointerDownCapture)})});Ui.displayName=qp;var Kp="DismissableLayerBranch",Gp=u.forwardRef((e,r)=>{const o=u.useContext(qi),t=u.useRef(null),n=ge(r,t);return u.useEffect(()=>{const a=t.current;if(a)return o.branches.add(a),()=>{o.branches.delete(a)}},[o.branches]),d.jsx(Se.div,{...e,ref:n})});Gp.displayName=Kp;function Xp(e,r=globalThis?.document){const o=Ce(e),t=u.useRef(!1),n=u.useRef(()=>{});return u.useEffect(()=>{const a=i=>{if(i.target&&!t.current){let s=function(){Yi(Up,o,l,{discrete:!0})};const l={originalEvent:i};i.pointerType==="touch"?(r.removeEventListener("click",n.current),n.current=s,r.addEventListener("click",n.current,{once:!0})):s()}else r.removeEventListener("click",n.current);t.current=!1},c=window.setTimeout(()=>{r.addEventListener("pointerdown",a)},0);return()=>{window.clearTimeout(c),r.removeEventListener("pointerdown",a),r.removeEventListener("click",n.current)}},[r,o]),{onPointerDownCapture:()=>t.current=!0}}function Zp(e,r=globalThis?.document){const o=Ce(e),t=u.useRef(!1);return u.useEffect(()=>{const n=a=>{a.target&&!t.current&&Yi(Yp,o,{originalEvent:a},{discrete:!1})};return r.addEventListener("focusin",n),()=>r.removeEventListener("focusin",n)},[r,o]),{onFocusCapture:()=>t.current=!0,onBlurCapture:()=>t.current=!1}}function ua(){const e=new CustomEvent(Nt);document.dispatchEvent(e)}function Yi(e,r,o,{discrete:t}){const n=o.originalEvent.target,a=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:o});r&&n.addEventListener(e,r,{once:!0}),t?Hp(n,a):n.dispatchEvent(a)}var Jp="Portal",Ki=u.forwardRef((e,r)=>{const{container:o,...t}=e,[n,a]=u.useState(!1);_e(()=>a(!0),[]);const c=o||n&&globalThis?.document?.body;return c?To.createPortal(d.jsx(Se.div,{...t,ref:r}),c):null});Ki.displayName=Jp;var Gi=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),Qp="VisuallyHidden",eg=u.forwardRef((e,r)=>d.jsx(Se.span,{...e,ref:r,style:{...Gi,...e.style}}));eg.displayName=Qp;var rg=[" ","Enter","ArrowUp","ArrowDown"],og=[" ","Enter"],hr="Select",[Bo,Ho,tg]=$p(hr),[zr,sh]=cr(hr,[tg,Mo]),qo=Mo(),[ng,lr]=zr(hr),[ag,cg]=zr(hr),Xi=e=>{const{__scopeSelect:r,children:o,open:t,defaultOpen:n,onOpenChange:a,value:c,defaultValue:i,onValueChange:s,dir:l,name:f,autoComplete:p,disabled:x,required:v,form:_}=e,b=qo(r),[m,w]=u.useState(null),[h,k]=u.useState(null),[S,D]=u.useState(!1),N=Wp(l),[C,g]=Tr({prop:t,defaultProp:n??!1,onChange:a,caller:hr}),[y,E]=Tr({prop:c,defaultProp:i,onChange:s,caller:hr}),A=u.useRef(null),I=m?_||!!m.closest("form"):!0,[L,P]=u.useState(new Set),H=Array.from(L).map(M=>M.props.value).join(";");return d.jsx(Oc,{...b,children:d.jsxs(ng,{required:v,scope:r,trigger:m,onTriggerChange:w,valueNode:h,onValueNodeChange:k,valueNodeHasChildren:S,onValueNodeHasChildrenChange:D,contentId:pr(),value:y,onValueChange:E,open:C,onOpenChange:g,dir:N,triggerPointerDownPosRef:A,disabled:x,children:[d.jsx(Bo.Provider,{scope:r,children:d.jsx(ag,{scope:e.__scopeSelect,onNativeOptionAdd:u.useCallback(M=>{P(T=>new Set(T).add(M))},[]),onNativeOptionRemove:u.useCallback(M=>{P(T=>{const R=new Set(T);return R.delete(M),R})},[]),children:o})}),I?d.jsxs(yl,{"aria-hidden":!0,required:v,tabIndex:-1,name:f,autoComplete:p,value:y,onChange:M=>E(M.target.value),disabled:x,form:_,children:[y===void 0?d.jsx("option",{value:""}):null,Array.from(L)]},H):null]})})};Xi.displayName=hr;var Zi="SelectTrigger",Ji=u.forwardRef((e,r)=>{const{__scopeSelect:o,disabled:t=!1,...n}=e,a=qo(o),c=lr(Zi,o),i=c.disabled||t,s=ge(r,c.onTriggerChange),l=Ho(o),f=u.useRef("touch"),[p,x,v]=kl(b=>{const m=l().filter(k=>!k.disabled),w=m.find(k=>k.value===c.value),h=_l(m,b,w);h!==void 0&&c.onValueChange(h.value)}),_=b=>{i||(c.onOpenChange(!0),v()),b&&(c.triggerPointerDownPosRef.current={x:Math.round(b.pageX),y:Math.round(b.pageY)})};return d.jsx(Nc,{asChild:!0,...a,children:d.jsx(Se.button,{type:"button",role:"combobox","aria-controls":c.contentId,"aria-expanded":c.open,"aria-required":c.required,"aria-autocomplete":"none",dir:c.dir,"data-state":c.open?"open":"closed",disabled:i,"data-disabled":i?"":void 0,"data-placeholder":wl(c.value)?"":void 0,...n,ref:s,onClick:oe(n.onClick,b=>{b.currentTarget.focus(),f.current!=="mouse"&&_(b)}),onPointerDown:oe(n.onPointerDown,b=>{f.current=b.pointerType;const m=b.target;m.hasPointerCapture(b.pointerId)&&m.releasePointerCapture(b.pointerId),b.button===0&&b.ctrlKey===!1&&b.pointerType==="mouse"&&(_(b),b.preventDefault())}),onKeyDown:oe(n.onKeyDown,b=>{const m=p.current!=="";!(b.ctrlKey||b.altKey||b.metaKey)&&b.key.length===1&&x(b.key),!(m&&b.key===" ")&&rg.includes(b.key)&&(_(),b.preventDefault())})})})});Ji.displayName=Zi;var Qi="SelectValue",el=u.forwardRef((e,r)=>{const{__scopeSelect:o,className:t,style:n,children:a,placeholder:c="",...i}=e,s=lr(Qi,o),{onValueNodeHasChildrenChange:l}=s,f=a!==void 0,p=ge(r,s.onValueNodeChange);return _e(()=>{l(f)},[l,f]),d.jsx(Se.span,{...i,ref:p,style:{pointerEvents:"none"},children:wl(s.value)?d.jsx(d.Fragment,{children:c}):a})});el.displayName=Qi;var ig="SelectIcon",rl=u.forwardRef((e,r)=>{const{__scopeSelect:o,children:t,...n}=e;return d.jsx(Se.span,{"aria-hidden":!0,...n,ref:r,children:t||"▼"})});rl.displayName=ig;var lg="SelectPortal",ol=e=>d.jsx(Ki,{asChild:!0,...e});ol.displayName=lg;var vr="SelectContent",tl=u.forwardRef((e,r)=>{const o=lr(vr,e.__scopeSelect),[t,n]=u.useState();if(_e(()=>{n(new DocumentFragment)},[]),!o.open){const a=t;return a?nr.createPortal(d.jsx(nl,{scope:e.__scopeSelect,children:d.jsx(Bo.Slot,{scope:e.__scopeSelect,children:d.jsx("div",{children:e.children})})}),a):null}return d.jsx(al,{...e,ref:r})});tl.displayName=vr;var ze=10,[nl,dr]=zr(vr),dg="SelectContentImpl",sg=So("SelectContent.RemoveScroll"),al=u.forwardRef((e,r)=>{const{__scopeSelect:o,position:t="item-aligned",onCloseAutoFocus:n,onEscapeKeyDown:a,onPointerDownOutside:c,side:i,sideOffset:s,align:l,alignOffset:f,arrowPadding:p,collisionBoundary:x,collisionPadding:v,sticky:_,hideWhenDetached:b,avoidCollisions:m,...w}=e,h=lr(vr,o),[k,S]=u.useState(null),[D,N]=u.useState(null),C=ge(r,$=>S($)),[g,y]=u.useState(null),[E,A]=u.useState(null),I=Ho(o),[L,P]=u.useState(!1),H=u.useRef(!1);u.useEffect(()=>{if(k)return ci(k)},[k]),Zc();const M=u.useCallback($=>{const[K,...ee]=I().map(re=>re.ref.current),[Z]=ee.slice(-1),B=document.activeElement;for(const re of $)if(re===B||(re?.scrollIntoView({block:"nearest"}),re===K&&D&&(D.scrollTop=0),re===Z&&D&&(D.scrollTop=D.scrollHeight),re?.focus(),document.activeElement!==B))return},[I,D]),T=u.useCallback(()=>M([g,k]),[M,g,k]);u.useEffect(()=>{L&&T()},[L,T]);const{onOpenChange:R,triggerPointerDownPosRef:j}=h;u.useEffect(()=>{if(k){let $={x:0,y:0};const K=Z=>{$={x:Math.abs(Math.round(Z.pageX)-(j.current?.x??0)),y:Math.abs(Math.round(Z.pageY)-(j.current?.y??0))}},ee=Z=>{$.x<=10&&$.y<=10?Z.preventDefault():k.contains(Z.target)||R(!1),document.removeEventListener("pointermove",K),j.current=null};return j.current!==null&&(document.addEventListener("pointermove",K),document.addEventListener("pointerup",ee,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",K),document.removeEventListener("pointerup",ee,{capture:!0})}}},[k,R,j]),u.useEffect(()=>{const $=()=>R(!1);return window.addEventListener("blur",$),window.addEventListener("resize",$),()=>{window.removeEventListener("blur",$),window.removeEventListener("resize",$)}},[R]);const[q,V]=kl($=>{const K=I().filter(B=>!B.disabled),ee=K.find(B=>B.ref.current===document.activeElement),Z=_l(K,$,ee);Z&&setTimeout(()=>Z.ref.current.focus())}),U=u.useCallback(($,K,ee)=>{const Z=!H.current&&!ee;(h.value!==void 0&&h.value===K||Z)&&(y($),Z&&(H.current=!0))},[h.value]),z=u.useCallback(()=>k?.focus(),[k]),Y=u.useCallback(($,K,ee)=>{const Z=!H.current&&!ee;(h.value!==void 0&&h.value===K||Z)&&A($)},[h.value]),ae=t==="popper"?It:cl,ce=ae===It?{side:i,sideOffset:s,align:l,alignOffset:f,arrowPadding:p,collisionBoundary:x,collisionPadding:v,sticky:_,hideWhenDetached:b,avoidCollisions:m}:{};return d.jsx(nl,{scope:o,content:k,viewport:D,onViewportChange:N,itemRefCallback:U,selectedItem:g,onItemLeave:z,itemTextRefCallback:Y,focusSelectedItem:T,selectedItemText:E,position:t,isPositioned:L,searchRef:q,children:d.jsx(fn,{as:sg,allowPinchZoom:!0,children:d.jsx(un,{asChild:!0,trapped:h.open,onMountAutoFocus:$=>{$.preventDefault()},onUnmountAutoFocus:oe(n,$=>{h.trigger?.focus({preventScroll:!0}),$.preventDefault()}),children:d.jsx(Ui,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:a,onPointerDownOutside:c,onFocusOutside:$=>$.preventDefault(),onDismiss:()=>h.onOpenChange(!1),children:d.jsx(ae,{role:"listbox",id:h.contentId,"data-state":h.open?"open":"closed",dir:h.dir,onContextMenu:$=>$.preventDefault(),...w,...ce,onPlaced:()=>P(!0),ref:C,style:{display:"flex",flexDirection:"column",outline:"none",...w.style},onKeyDown:oe(w.onKeyDown,$=>{const K=$.ctrlKey||$.altKey||$.metaKey;if($.key==="Tab"&&$.preventDefault(),!K&&$.key.length===1&&V($.key),["ArrowUp","ArrowDown","Home","End"].includes($.key)){let Z=I().filter(B=>!B.disabled).map(B=>B.ref.current);if(["ArrowUp","End"].includes($.key)&&(Z=Z.slice().reverse()),["ArrowUp","ArrowDown"].includes($.key)){const B=$.target,re=Z.indexOf(B);Z=Z.slice(re+1)}setTimeout(()=>M(Z)),$.preventDefault()}})})})})})})});al.displayName=dg;var ug="SelectItemAlignedPosition",cl=u.forwardRef((e,r)=>{const{__scopeSelect:o,onPlaced:t,...n}=e,a=lr(vr,o),c=dr(vr,o),[i,s]=u.useState(null),[l,f]=u.useState(null),p=ge(r,C=>f(C)),x=Ho(o),v=u.useRef(!1),_=u.useRef(!0),{viewport:b,selectedItem:m,selectedItemText:w,focusSelectedItem:h}=c,k=u.useCallback(()=>{if(a.trigger&&a.valueNode&&i&&l&&b&&m&&w){const C=a.trigger.getBoundingClientRect(),g=l.getBoundingClientRect(),y=a.valueNode.getBoundingClientRect(),E=w.getBoundingClientRect();if(a.dir!=="rtl"){const B=E.left-g.left,re=y.left-B,be=C.left-re,ue=C.width+be,pe=Math.max(ue,g.width),J=window.innerWidth-ze,de=da(re,[ze,Math.max(ze,J-pe)]);i.style.minWidth=ue+"px",i.style.left=de+"px"}else{const B=g.right-E.right,re=window.innerWidth-y.right-B,be=window.innerWidth-C.right-re,ue=C.width+be,pe=Math.max(ue,g.width),J=window.innerWidth-ze,de=da(re,[ze,Math.max(ze,J-pe)]);i.style.minWidth=ue+"px",i.style.right=de+"px"}const A=x(),I=window.innerHeight-ze*2,L=b.scrollHeight,P=window.getComputedStyle(l),H=parseInt(P.borderTopWidth,10),M=parseInt(P.paddingTop,10),T=parseInt(P.borderBottomWidth,10),R=parseInt(P.paddingBottom,10),j=H+M+L+R+T,q=Math.min(m.offsetHeight*5,j),V=window.getComputedStyle(b),U=parseInt(V.paddingTop,10),z=parseInt(V.paddingBottom,10),Y=C.top+C.height/2-ze,ae=I-Y,ce=m.offsetHeight/2,$=m.offsetTop+ce,K=H+M+$,ee=j-K;if(K<=Y){const B=A.length>0&&m===A[A.length-1].ref.current;i.style.bottom="0px";const re=l.clientHeight-b.offsetTop-b.offsetHeight,be=Math.max(ae,ce+(B?z:0)+re+T),ue=K+be;i.style.height=ue+"px"}else{const B=A.length>0&&m===A[0].ref.current;i.style.top="0px";const be=Math.max(Y,H+b.offsetTop+(B?U:0)+ce)+ee;i.style.height=be+"px",b.scrollTop=K-Y+b.offsetTop}i.style.margin=`${ze}px 0`,i.style.minHeight=q+"px",i.style.maxHeight=I+"px",t?.(),requestAnimationFrame(()=>v.current=!0)}},[x,a.trigger,a.valueNode,i,l,b,m,w,a.dir,t]);_e(()=>k(),[k]);const[S,D]=u.useState();_e(()=>{l&&D(window.getComputedStyle(l).zIndex)},[l]);const N=u.useCallback(C=>{C&&_.current===!0&&(k(),h?.(),_.current=!1)},[k,h]);return d.jsx(bg,{scope:o,contentWrapper:i,shouldExpandOnScrollRef:v,onScrollButtonChange:N,children:d.jsx("div",{ref:s,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:S},children:d.jsx(Se.div,{...n,ref:p,style:{boxSizing:"border-box",maxHeight:"100%",...n.style}})})})});cl.displayName=ug;var fg="SelectPopperPosition",It=u.forwardRef((e,r)=>{const{__scopeSelect:o,align:t="start",collisionPadding:n=ze,...a}=e,c=qo(o);return d.jsx(Ic,{...c,...a,ref:r,align:t,collisionPadding:n,style:{boxSizing:"border-box",...a.style,"--radix-select-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-select-content-available-width":"var(--radix-popper-available-width)","--radix-select-content-available-height":"var(--radix-popper-available-height)","--radix-select-trigger-width":"var(--radix-popper-anchor-width)","--radix-select-trigger-height":"var(--radix-popper-anchor-height)"}})});It.displayName=fg;var[bg,gn]=zr(vr,{}),At="SelectViewport",il=u.forwardRef((e,r)=>{const{__scopeSelect:o,nonce:t,...n}=e,a=dr(At,o),c=gn(At,o),i=ge(r,a.onViewportChange),s=u.useRef(0);return d.jsxs(d.Fragment,{children:[d.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-select-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-select-viewport]::-webkit-scrollbar{display:none}"},nonce:t}),d.jsx(Bo.Slot,{scope:o,children:d.jsx(Se.div,{"data-radix-select-viewport":"",role:"presentation",...n,ref:i,style:{position:"relative",flex:1,overflow:"hidden auto",...n.style},onScroll:oe(n.onScroll,l=>{const f=l.currentTarget,{contentWrapper:p,shouldExpandOnScrollRef:x}=c;if(x?.current&&p){const v=Math.abs(s.current-f.scrollTop);if(v>0){const _=window.innerHeight-ze*2,b=parseFloat(p.style.minHeight),m=parseFloat(p.style.height),w=Math.max(b,m);if(w<_){const h=w+v,k=Math.min(_,h),S=h-k;p.style.height=k+"px",p.style.bottom==="0px"&&(f.scrollTop=S>0?S:0,p.style.justifyContent="flex-end")}}}s.current=f.scrollTop})})})]})});il.displayName=At;var ll="SelectGroup",[pg,gg]=zr(ll),mg=u.forwardRef((e,r)=>{const{__scopeSelect:o,...t}=e,n=pr();return d.jsx(pg,{scope:o,id:n,children:d.jsx(Se.div,{role:"group","aria-labelledby":n,...t,ref:r})})});mg.displayName=ll;var dl="SelectLabel",sl=u.forwardRef((e,r)=>{const{__scopeSelect:o,...t}=e,n=gg(dl,o);return d.jsx(Se.div,{id:n.id,...t,ref:r})});sl.displayName=dl;var Eo="SelectItem",[xg,ul]=zr(Eo),fl=u.forwardRef((e,r)=>{const{__scopeSelect:o,value:t,disabled:n=!1,textValue:a,...c}=e,i=lr(Eo,o),s=dr(Eo,o),l=i.value===t,[f,p]=u.useState(a??""),[x,v]=u.useState(!1),_=ge(r,h=>s.itemRefCallback?.(h,t,n)),b=pr(),m=u.useRef("touch"),w=()=>{n||(i.onValueChange(t),i.onOpenChange(!1))};if(t==="")throw new Error("A <Select.Item /> must have a value prop that is not an empty string. This is because the Select value can be set to an empty string to clear the selection and show the placeholder.");return d.jsx(xg,{scope:o,value:t,disabled:n,textId:b,isSelected:l,onItemTextChange:u.useCallback(h=>{p(k=>k||(h?.textContent??"").trim())},[]),children:d.jsx(Bo.ItemSlot,{scope:o,value:t,disabled:n,textValue:f,children:d.jsx(Se.div,{role:"option","aria-labelledby":b,"data-highlighted":x?"":void 0,"aria-selected":l&&x,"data-state":l?"checked":"unchecked","aria-disabled":n||void 0,"data-disabled":n?"":void 0,tabIndex:n?void 0:-1,...c,ref:_,onFocus:oe(c.onFocus,()=>v(!0)),onBlur:oe(c.onBlur,()=>v(!1)),onClick:oe(c.onClick,()=>{m.current!=="mouse"&&w()}),onPointerUp:oe(c.onPointerUp,()=>{m.current==="mouse"&&w()}),onPointerDown:oe(c.onPointerDown,h=>{m.current=h.pointerType}),onPointerMove:oe(c.onPointerMove,h=>{m.current=h.pointerType,n?s.onItemLeave?.():m.current==="mouse"&&h.currentTarget.focus({preventScroll:!0})}),onPointerLeave:oe(c.onPointerLeave,h=>{h.currentTarget===document.activeElement&&s.onItemLeave?.()}),onKeyDown:oe(c.onKeyDown,h=>{s.searchRef?.current!==""&&h.key===" "||(og.includes(h.key)&&w(),h.key===" "&&h.preventDefault())})})})})});fl.displayName=Eo;var Vr="SelectItemText",bl=u.forwardRef((e,r)=>{const{__scopeSelect:o,className:t,style:n,...a}=e,c=lr(Vr,o),i=dr(Vr,o),s=ul(Vr,o),l=cg(Vr,o),[f,p]=u.useState(null),x=ge(r,w=>p(w),s.onItemTextChange,w=>i.itemTextRefCallback?.(w,s.value,s.disabled)),v=f?.textContent,_=u.useMemo(()=>d.jsx("option",{value:s.value,disabled:s.disabled,children:v},s.value),[s.disabled,s.value,v]),{onNativeOptionAdd:b,onNativeOptionRemove:m}=l;return _e(()=>(b(_),()=>m(_)),[b,m,_]),d.jsxs(d.Fragment,{children:[d.jsx(Se.span,{id:s.textId,...a,ref:x}),s.isSelected&&c.valueNode&&!c.valueNodeHasChildren?nr.createPortal(a.children,c.valueNode):null]})});bl.displayName=Vr;var pl="SelectItemIndicator",gl=u.forwardRef((e,r)=>{const{__scopeSelect:o,...t}=e;return ul(pl,o).isSelected?d.jsx(Se.span,{"aria-hidden":!0,...t,ref:r}):null});gl.displayName=pl;var Mt="SelectScrollUpButton",ml=u.forwardRef((e,r)=>{const o=dr(Mt,e.__scopeSelect),t=gn(Mt,e.__scopeSelect),[n,a]=u.useState(!1),c=ge(r,t.onScrollButtonChange);return _e(()=>{if(o.viewport&&o.isPositioned){let i=function(){const l=s.scrollTop>0;a(l)};const s=o.viewport;return i(),s.addEventListener("scroll",i),()=>s.removeEventListener("scroll",i)}},[o.viewport,o.isPositioned]),n?d.jsx(hl,{...e,ref:c,onAutoScroll:()=>{const{viewport:i,selectedItem:s}=o;i&&s&&(i.scrollTop=i.scrollTop-s.offsetHeight)}}):null});ml.displayName=Mt;var Lt="SelectScrollDownButton",xl=u.forwardRef((e,r)=>{const o=dr(Lt,e.__scopeSelect),t=gn(Lt,e.__scopeSelect),[n,a]=u.useState(!1),c=ge(r,t.onScrollButtonChange);return _e(()=>{if(o.viewport&&o.isPositioned){let i=function(){const l=s.scrollHeight-s.clientHeight,f=Math.ceil(s.scrollTop)<l;a(f)};const s=o.viewport;return i(),s.addEventListener("scroll",i),()=>s.removeEventListener("scroll",i)}},[o.viewport,o.isPositioned]),n?d.jsx(hl,{...e,ref:c,onAutoScroll:()=>{const{viewport:i,selectedItem:s}=o;i&&s&&(i.scrollTop=i.scrollTop+s.offsetHeight)}}):null});xl.displayName=Lt;var hl=u.forwardRef((e,r)=>{const{__scopeSelect:o,onAutoScroll:t,...n}=e,a=dr("SelectScrollButton",o),c=u.useRef(null),i=Ho(o),s=u.useCallback(()=>{c.current!==null&&(window.clearInterval(c.current),c.current=null)},[]);return u.useEffect(()=>()=>s(),[s]),_e(()=>{i().find(f=>f.ref.current===document.activeElement)?.ref.current?.scrollIntoView({block:"nearest"})},[i]),d.jsx(Se.div,{"aria-hidden":!0,...n,ref:r,style:{flexShrink:0,...n.style},onPointerDown:oe(n.onPointerDown,()=>{c.current===null&&(c.current=window.setInterval(t,50))}),onPointerMove:oe(n.onPointerMove,()=>{a.onItemLeave?.(),c.current===null&&(c.current=window.setInterval(t,50))}),onPointerLeave:oe(n.onPointerLeave,()=>{s()})})}),hg="SelectSeparator",vl=u.forwardRef((e,r)=>{const{__scopeSelect:o,...t}=e;return d.jsx(Se.div,{"aria-hidden":!0,...t,ref:r})});vl.displayName=hg;var zt="SelectArrow",vg=u.forwardRef((e,r)=>{const{__scopeSelect:o,...t}=e,n=qo(o),a=lr(zt,o),c=dr(zt,o);return a.open&&c.position==="popper"?d.jsx(Ac,{...n,...t,ref:r}):null});vg.displayName=zt;var yg="SelectBubbleInput",yl=u.forwardRef(({__scopeSelect:e,value:r,...o},t)=>{const n=u.useRef(null),a=ge(t,n),c=Pi(r);return u.useEffect(()=>{const i=n.current;if(!i)return;const s=window.HTMLSelectElement.prototype,f=Object.getOwnPropertyDescriptor(s,"value").set;if(c!==r&&f){const p=new Event("change",{bubbles:!0});f.call(i,r),i.dispatchEvent(p)}},[c,r]),d.jsx(Se.select,{...o,style:{...Gi,...o.style},ref:a,defaultValue:r})});yl.displayName=yg;function wl(e){return e===""||e===void 0}function kl(e){const r=Ce(e),o=u.useRef(""),t=u.useRef(0),n=u.useCallback(c=>{const i=o.current+c;r(i),(function s(l){o.current=l,window.clearTimeout(t.current),l!==""&&(t.current=window.setTimeout(()=>s(""),1e3))})(i)},[r]),a=u.useCallback(()=>{o.current="",window.clearTimeout(t.current)},[]);return u.useEffect(()=>()=>window.clearTimeout(t.current),[]),[o,n,a]}function _l(e,r,o){const n=r.length>1&&Array.from(r).every(l=>l===r[0])?r[0]:r,a=o?e.indexOf(o):-1;let c=wg(e,Math.max(a,0));n.length===1&&(c=c.filter(l=>l!==o));const s=c.find(l=>l.textValue.toLowerCase().startsWith(n.toLowerCase()));return s!==o?s:void 0}function wg(e,r){return e.map((o,t)=>e[(r+t)%e.length])}var kg=Xi,Cl=Ji,_g=el,Cg=rl,Sg=ol,Sl=tl,Eg=il,El=sl,Rl=fl,Rg=bl,jg=gl,jl=ml,Dl=xl,Tl=vl;const Dg=kg,Tg=_g,Pl=u.forwardRef(({className:e,children:r,...o},t)=>d.jsxs(Cl,{ref:t,className:ne("flex h-9 w-full items-center justify-between rounded-lg border border-gray-300 bg-white px-3 py-2 text-sm text-gray-900 transition-all duration-200 placeholder:text-gray-500 hover:border-gray-400 hover:bg-gray-50 focus:outline-none focus:border-blue-500 focus:bg-white disabled:cursor-not-allowed disabled:opacity-50 disabled:bg-gray-50 [&>span]:line-clamp-1",e),...o,children:[r,d.jsx(Cg,{asChild:!0,children:d.jsx(tc,{className:"h-4 w-4 text-gray-600"})})]}));Pl.displayName=Cl.displayName;const Ol=u.forwardRef(({className:e,...r},o)=>d.jsx(jl,{ref:o,className:ne("flex cursor-default items-center justify-center py-1",e),...r,children:d.jsx(Es,{className:"h-4 w-4"})}));Ol.displayName=jl.displayName;const Nl=u.forwardRef(({className:e,...r},o)=>d.jsx(Dl,{ref:o,className:ne("flex cursor-default items-center justify-center py-1",e),...r,children:d.jsx(tc,{className:"h-4 w-4"})}));Nl.displayName=Dl.displayName;const Il=u.forwardRef(({className:e,children:r,position:o="popper",...t},n)=>d.jsx(Sg,{children:d.jsxs(Sl,{ref:n,className:ne("relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-lg border border-gray-200 bg-white text-gray-900 shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",o==="popper"&&"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",e),position:o,...t,children:[d.jsx(Ol,{}),d.jsx(Eg,{className:ne("p-1",o==="popper"&&"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"),children:r}),d.jsx(Nl,{})]})}));Il.displayName=Sl.displayName;const Pg=u.forwardRef(({className:e,...r},o)=>d.jsx(El,{ref:o,className:ne("py-1.5 pl-8 pr-2 text-sm font-semibold",e),...r}));Pg.displayName=El.displayName;const Ft=u.forwardRef(({className:e,children:r,...o},t)=>d.jsxs(Rl,{ref:t,className:ne("relative flex w-full cursor-pointer select-none items-center rounded-md py-2 pl-8 pr-2 text-sm text-gray-900 outline-none transition-colors hover:bg-blue-100 hover:text-blue-900 focus:bg-blue-100 focus:text-blue-900 data-[state=checked]:bg-blue-50 data-[state=checked]:text-blue-900 data-[state=checked]:font-medium data-[disabled]:pointer-events-none data-[disabled]:opacity-40 data-[disabled]:cursor-not-allowed",e),...o,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(jg,{children:d.jsx(gr,{className:"h-4 w-4 text-blue-600"})})}),d.jsx(Rg,{children:r})]}));Ft.displayName=Rl.displayName;const Og=u.forwardRef(({className:e,...r},o)=>d.jsx(Tl,{ref:o,className:ne("-mx-1 my-1 h-px bg-muted",e),...r}));Og.displayName=Tl.displayName;function Ng(e,r){const o=e.split(" "),t=r.split(" ");return o.reduce((a,c)=>{const i=t.reduce((s,l)=>{const f=Ig(c,l);return f>s?f:s},0);return i>a?i:a},0)}function Ig(e,r){let o=e,t=r;e.length<r.length&&(o=r,t=e);const n=o.length;return n===0?1:(n-Ag(o,t))/parseFloat(n.toString())}function Ag(e,r){e=e.toLowerCase(),r=r.toLowerCase();const o=new Array(r.length+1);for(let t=0;t<=e.length;t++){let n=t;for(let a=0;a<=r.length;a++)if(t===0)o[a]=a;else if(a>0){let c=o[a-1];e.charAt(t-1)!==r.charAt(a-1)&&(c=Math.min(Math.min(c,n),o[a])+1),o[a-1]=n,n=c}t>0&&(o[r.length]=n)}return o[r.length]}async function Mg(e,r,o,t){if(!o||!t||!e.length||!r.length)return[];try{const n=await fetch(`${o}/api/v1/imports/key/mapping-suggestions`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({importerKey:t,uploadColumns:e,templateColumns:r.map(c=>({key:c.id,name:c.label,required:c.validators?.some(i=>i.type==="required")}))})});if(!n.ok)return[];const a=await n.json();return a.success&&Array.isArray(a.mappings)?a.mappings:[]}catch{return[]}}function Lg({columns:e,data:r,onSuccess:o,onCancel:t,isSubmitting:n=!1,importerKey:a,backendUrl:c,isDemoMode:i=!1}){const{t:s}=ir(),l=0,[f,p]=O.useState({}),[x,v]=O.useState(null),_=O.useRef(!1);O.useMemo(()=>r.rows.slice(0,Math.min(5,r.rows.length)),[r.rows]);const b=O.useMemo(()=>r.rows[l]?r.rows[l].values:[],[r.rows]),m=O.useMemo(()=>b.map((C,g)=>({index:g,name:C,sample_data:r.rows.slice(l+1,l+4).map(y=>y.values[g]).filter(y=>y)})),[b,r.rows,l]),w=C=>{const g=l+1;return r.rows.slice(g,g+3).map(E=>E.values[C]).filter(E=>E).join(", ")},h=e||[];O.useEffect(()=>{const C={};b.forEach((g,y)=>{let E={column:null,score:0};h.forEach(A=>{const I=Ng(g.toLowerCase().trim(),A.label.toLowerCase().trim());I>E.score&&I>.6&&(E={column:A,score:I})}),E.column&&(C[y]={id:E.column.id||"",label:E.column.label,include:!0})}),p(C)},[b,h]),O.useEffect(()=>{(async()=>{if(!_.current&&!(!m.length||!h.length||!c||!a)){_.current=!0;try{const g=await Mg(m,h,c,a);g.length>0&&p(y=>{const E={...y},A=new Set(Object.values(y).filter(L=>L.id).map(L=>L.id)),I=[...g].sort((L,P)=>P.confidence-L.confidence);for(const L of I){const P=y[L.uploadIndex],H=P?.id&&!P?.include;if(L.confidence>.7&&(!P?.id||H)&&!A.has(L.templateKey)){const M=h.find(T=>T.id===L.templateKey);M&&(E[L.uploadIndex]={id:L.templateKey,label:M.label,include:!0},A.add(L.templateKey))}}return E})}catch{}}})()},[m,h,c,a]);const k=(C,g)=>{const y={...f};if(Object.keys(y).forEach(E=>{y[parseInt(E)].id===C&&delete y[parseInt(E)]}),g!==""&&g!=="none"){const E=parseInt(g),A=h.find(I=>I.id===C);A&&(y[E]={id:C,label:A.label,include:!0})}p(y)},S=C=>{const g=Object.entries(f).find(([y,E])=>E.id===C);return g?g[0]:""},D=O.useMemo(()=>h.filter(g=>g.validators?.some(y=>y.type==="required")).every(g=>Object.values(f).some(y=>y.id===g.id)),[h,f]),N=()=>{if(!D){v(s("Please map all required fields"));return}v(null),o(f,l)};return d.jsx("div",{className:"flex flex-col h-full",children:d.jsxs(Hi,{className:"gap-6 w-full",children:[d.jsx(Me,{children:d.jsx(De,{className:"text-sm text-gray-600",children:s("Map columns from imported CSV.")})}),d.jsx(Me,{className:"border border-gray-200 rounded-lg overflow-x-auto bg-white w-full",children:d.jsxs("table",{className:"w-full border-collapse min-w-[600px]",children:[d.jsx("thead",{className:"bg-gray-50 border-b border-gray-200",children:d.jsxs("tr",{children:[d.jsx("th",{className:"text-left px-6 py-3 w-[30%]",children:d.jsx(De,{className:"text-sm font-semibold text-gray-700",children:s("Fields")})}),d.jsx("th",{className:"text-left px-6 py-3 w-[35%]",children:d.jsx(De,{className:"text-sm font-semibold text-gray-700",children:s("CSV Column")})}),d.jsx("th",{className:"text-left px-6 py-3 w-[35%]",children:d.jsx(De,{className:"text-sm font-semibold text-gray-700",children:s("CSV Example Data")})})]})}),d.jsx("tbody",{children:h.map((C,g)=>{const y=S(C.id),E=y!=="",A=C.validators?.some(I=>I.type==="required");return d.jsxs("tr",{className:"border-b border-gray-100 hover:bg-gray-50 transition-colors",children:[d.jsx("td",{className:"px-6 py-4",children:d.jsxs(Bi,{className:"gap-2 items-center",children:[E&&d.jsx(js,{className:"w-5 h-5 text-green-500 flex-shrink-0"}),!E&&A&&d.jsx(Me,{className:"w-5 h-5 rounded-full border-2 border-gray-300 flex-shrink-0"}),!E&&!A&&d.jsx(Me,{className:"w-5 h-5 flex-shrink-0"}),d.jsxs(De,{className:"text-sm font-medium text-gray-900",children:[C.label,A&&d.jsx("span",{className:"text-red-500 ml-1",children:"*"})]})]})}),d.jsx("td",{className:"px-6 py-4",children:d.jsxs(Dg,{value:y,onValueChange:I=>k(C.id,I),children:[d.jsx(Pl,{className:"h-9 w-full max-w-[250px]",children:d.jsx(Tg,{placeholder:s("Select...")})}),d.jsxs(Il,{children:[d.jsx(Ft,{value:"none",children:d.jsx("span",{className:"text-gray-500",children:"— None —"})}),d.jsx("div",{className:"h-px bg-gray-200 my-1"}),b.map((I,L)=>{const P=Object.keys(f).includes(L.toString())&&f[L].id!==C.id;return d.jsx(Ft,{value:L.toString(),disabled:P,children:P?d.jsxs("span",{className:"text-gray-400",children:[I," (mapped)"]}):I},L)})]})]})}),d.jsx("td",{className:"px-6 py-4",children:d.jsx(De,{className:"text-sm text-gray-600 truncate max-w-[300px]",title:y?w(parseInt(y)):"",children:y?w(parseInt(y))||"-":""})})]},C.id)})})]})}),x&&d.jsx(Me,{className:"bg-red-50 border border-red-200 rounded-lg px-4 py-3",children:d.jsx(De,{className:"text-sm text-red-700",children:x})}),d.jsxs(Xr,{justify:"between",className:"w-full pt-6 border-t border-gray-200",children:[!i&&t&&d.jsx(je,{variant:"outline",onClick:t,disabled:n,size:"default",children:s("Back")}),i&&d.jsx("div",{}),d.jsx(je,{onClick:N,isLoading:n,disabled:!D,size:"default",variant:"default",children:s("Continue")})]})]})})}function $t(e){return typeof e=="string"?e.length:Array.isArray(e)?e.reduce((r,o)=>r+$t(o),0):O.isValidElement(e)?$t(e.props.children):0}function Al({as:e,className:r,title:o,children:t,icon:n=d.jsx(Zt,{}),...a}){const c=e||"span",i=$t(o),s=ne("inline-flex items-center gap-1",r),[l,f]=O.useState(!1),[p,x]=O.useState({top:0,left:0}),v=O.useRef(null),_=O.useRef(document.createElement("div"));O.useEffect(()=>(document.body.appendChild(_.current),()=>{document.body.removeChild(_.current)}),[]);const b=()=>{if(v.current){const h=v.current.getBoundingClientRect();x({top:h.bottom+window.scrollY,left:h.left+h.width/2+window.scrollX}),f(!0)}},m=()=>{f(!1)},w=l&&d.jsx("span",{className:ne("absolute z-50 px-2 py-1 text-xs text-white bg-gray-900 rounded shadow-lg -translate-x-1/2 mt-1",i>30&&"max-w-xs whitespace-normal"),style:{position:"fixed",top:`${p.top}px`,left:`${p.left}px`},children:o});return d.jsxs(c,{...a,className:s,children:[t,d.jsxs("span",{className:"inline-flex cursor-help text-gray-400 hover:text-gray-600",onMouseEnter:b,onMouseLeave:m,ref:v,children:[n,w]})]})}const Ml=O.createContext({});function zg({data:e,keyAsId:r="id",theme:o,mergeThemes:t,highlightColumns:n,hideColumns:a=["id"],emptyState:c,heading:i,background:s="zebra",columnWidths:l=[],columnAlignments:f=[],fixHeader:p=!1,onRowClick:x}){const v=e?.[0],_=v?Object.keys(v).map(h=>{const k=v[h];return h.indexOf("_")===0?"":typeof k=="object"&&k?.captionInfo?{key:h,captionInfo:k.captionInfo}:h}):{},b={highlightColumns:n,hideColumns:a,columnWidths:l,columnAlignments:f};if(!e||!e?.length)return d.jsx("div",{className:"text-center text-gray-500 py-8",children:c||null});const m=ne("w-full border-collapse",s==="zebra"&&"[&>div:nth-child(even)]:bg-gray-50",p&&"relative"),w=i?d.jsx("div",{className:"px-4 py-2 font-semibold text-lg border-b",children:i}):d.jsx("div",{className:"sticky top-0 bg-gray-100 font-semibold border-b",role:"rowgroup",children:d.jsx(fa,{datum:_,isHeading:!0})});return d.jsxs(Ml.Provider,{value:b,children:[d.jsxs("div",{className:m,role:"table",children:[w,d.jsx("div",{className:"divide-y divide-gray-200",role:"rowgroup",children:e.map((h,k)=>{const S=r&&h?.[r]?h[r]:k,D={datum:h,onClick:x};return O.createElement(fa,{...D,key:S?.toString()})})})]}),!e.length&&d.jsx("div",{className:"text-center text-gray-500 py-8",role:"empty-query",children:d.jsx("p",{children:"Empty"})})]})}const fa=({datum:e,onClick:r,isHeading:o})=>{const{highlightColumns:t,hideColumns:n,columnWidths:a,columnAlignments:c}=O.useContext(Ml),i=ne("flex",r&&"cursor-pointer hover:bg-gray-50",o&&"font-semibold");return d.jsx("div",{className:i,role:"row",onClick:()=>r?.(e),children:Object.keys(e).filter(s=>!n.includes(e[s])&&!n.includes(s)).map((s,l)=>{let f=e[s]?.content||e[s];const p=e[s]?.tooltip,x=o?e[s]?.captionInfo:null,v=o?e[s]?.key:null;f=o&&x?d.jsx(Al,{title:x,children:v}):f;const _=f&&typeof f=="string"?d.jsx("span",{children:f}):f,b=ne("px-4 py-2",t?.includes(s)&&"bg-blue-50 font-medium",!_&&"text-gray-400",typeof f!="string"&&"flex items-center"),m={width:a?.[l]||"auto",textAlign:c?.[l]||"left"};return d.jsx(Fg,{cellClass:b,cellStyle:m,tooltip:p||"",children:_},s)})})},Fg=({children:e,cellClass:r,cellStyle:o,tooltip:t})=>{const n={className:ne("flex-1",r,!e&&"text-gray-400"),role:"cell",style:o,...t?{title:t}:{}};return d.jsx("div",{...n,children:e})};var ut={exports:{}},ft,ba;function $g(){if(ba)return ft;ba=1;var e="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";return ft=e,ft}var bt,pa;function Vg(){if(pa)return bt;pa=1;var e=$g();function r(){}function o(){}return o.resetWarningCache=r,bt=function(){function t(c,i,s,l,f,p){if(p!==e){var x=new Error("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");throw x.name="Invariant Violation",x}}t.isRequired=t;function n(){return t}var a={array:t,bigint:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:n,element:t,elementType:t,instanceOf:n,node:t,objectOf:n,oneOf:n,oneOfType:n,shape:n,exact:n,checkPropTypes:o,resetWarningCache:r};return a.PropTypes=a,a},bt}var ga;function mn(){return ga||(ga=1,ut.exports=Vg()()),ut.exports}var Wg=mn();const he=Kr(Wg),Bg=new Map([["1km","application/vnd.1000minds.decision-model+xml"],["3dml","text/vnd.in3d.3dml"],["3ds","image/x-3ds"],["3g2","video/3gpp2"],["3gp","video/3gp"],["3gpp","video/3gpp"],["3mf","model/3mf"],["7z","application/x-7z-compressed"],["7zip","application/x-7z-compressed"],["123","application/vnd.lotus-1-2-3"],["aab","application/x-authorware-bin"],["aac","audio/x-acc"],["aam","application/x-authorware-map"],["aas","application/x-authorware-seg"],["abw","application/x-abiword"],["ac","application/vnd.nokia.n-gage.ac+xml"],["ac3","audio/ac3"],["acc","application/vnd.americandynamics.acc"],["ace","application/x-ace-compressed"],["acu","application/vnd.acucobol"],["acutc","application/vnd.acucorp"],["adp","audio/adpcm"],["aep","application/vnd.audiograph"],["afm","application/x-font-type1"],["afp","application/vnd.ibm.modcap"],["ahead","application/vnd.ahead.space"],["ai","application/pdf"],["aif","audio/x-aiff"],["aifc","audio/x-aiff"],["aiff","audio/x-aiff"],["air","application/vnd.adobe.air-application-installer-package+zip"],["ait","application/vnd.dvb.ait"],["ami","application/vnd.amiga.ami"],["amr","audio/amr"],["apk","application/vnd.android.package-archive"],["apng","image/apng"],["appcache","text/cache-manifest"],["application","application/x-ms-application"],["apr","application/vnd.lotus-approach"],["arc","application/x-freearc"],["arj","application/x-arj"],["asc","application/pgp-signature"],["asf","video/x-ms-asf"],["asm","text/x-asm"],["aso","application/vnd.accpac.simply.aso"],["asx","video/x-ms-asf"],["atc","application/vnd.acucorp"],["atom","application/atom+xml"],["atomcat","application/atomcat+xml"],["atomdeleted","application/atomdeleted+xml"],["atomsvc","application/atomsvc+xml"],["atx","application/vnd.antix.game-component"],["au","audio/x-au"],["avi","video/x-msvideo"],["avif","image/avif"],["aw","application/applixware"],["azf","application/vnd.airzip.filesecure.azf"],["azs","application/vnd.airzip.filesecure.azs"],["azv","image/vnd.airzip.accelerator.azv"],["azw","application/vnd.amazon.ebook"],["b16","image/vnd.pco.b16"],["bat","application/x-msdownload"],["bcpio","application/x-bcpio"],["bdf","application/x-font-bdf"],["bdm","application/vnd.syncml.dm+wbxml"],["bdoc","application/x-bdoc"],["bed","application/vnd.realvnc.bed"],["bh2","application/vnd.fujitsu.oasysprs"],["bin","application/octet-stream"],["blb","application/x-blorb"],["blorb","application/x-blorb"],["bmi","application/vnd.bmi"],["bmml","application/vnd.balsamiq.bmml+xml"],["bmp","image/bmp"],["book","application/vnd.framemaker"],["box","application/vnd.previewsystems.box"],["boz","application/x-bzip2"],["bpk","application/octet-stream"],["bpmn","application/octet-stream"],["bsp","model/vnd.valve.source.compiled-map"],["btif","image/prs.btif"],["buffer","application/octet-stream"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["c","text/x-c"],["c4d","application/vnd.clonk.c4group"],["c4f","application/vnd.clonk.c4group"],["c4g","application/vnd.clonk.c4group"],["c4p","application/vnd.clonk.c4group"],["c4u","application/vnd.clonk.c4group"],["c11amc","application/vnd.cluetrust.cartomobile-config"],["c11amz","application/vnd.cluetrust.cartomobile-config-pkg"],["cab","application/vnd.ms-cab-compressed"],["caf","audio/x-caf"],["cap","application/vnd.tcpdump.pcap"],["car","application/vnd.curl.car"],["cat","application/vnd.ms-pki.seccat"],["cb7","application/x-cbr"],["cba","application/x-cbr"],["cbr","application/x-cbr"],["cbt","application/x-cbr"],["cbz","application/x-cbr"],["cc","text/x-c"],["cco","application/x-cocoa"],["cct","application/x-director"],["ccxml","application/ccxml+xml"],["cdbcmsg","application/vnd.contact.cmsg"],["cda","application/x-cdf"],["cdf","application/x-netcdf"],["cdfx","application/cdfx+xml"],["cdkey","application/vnd.mediastation.cdkey"],["cdmia","application/cdmi-capability"],["cdmic","application/cdmi-container"],["cdmid","application/cdmi-domain"],["cdmio","application/cdmi-object"],["cdmiq","application/cdmi-queue"],["cdr","application/cdr"],["cdx","chemical/x-cdx"],["cdxml","application/vnd.chemdraw+xml"],["cdy","application/vnd.cinderella"],["cer","application/pkix-cert"],["cfs","application/x-cfs-compressed"],["cgm","image/cgm"],["chat","application/x-chat"],["chm","application/vnd.ms-htmlhelp"],["chrt","application/vnd.kde.kchart"],["cif","chemical/x-cif"],["cii","application/vnd.anser-web-certificate-issue-initiation"],["cil","application/vnd.ms-artgalry"],["cjs","application/node"],["cla","application/vnd.claymore"],["class","application/octet-stream"],["clkk","application/vnd.crick.clicker.keyboard"],["clkp","application/vnd.crick.clicker.palette"],["clkt","application/vnd.crick.clicker.template"],["clkw","application/vnd.crick.clicker.wordbank"],["clkx","application/vnd.crick.clicker"],["clp","application/x-msclip"],["cmc","application/vnd.cosmocaller"],["cmdf","chemical/x-cmdf"],["cml","chemical/x-cml"],["cmp","application/vnd.yellowriver-custom-menu"],["cmx","image/x-cmx"],["cod","application/vnd.rim.cod"],["coffee","text/coffeescript"],["com","application/x-msdownload"],["conf","text/plain"],["cpio","application/x-cpio"],["cpp","text/x-c"],["cpt","application/mac-compactpro"],["crd","application/x-mscardfile"],["crl","application/pkix-crl"],["crt","application/x-x509-ca-cert"],["crx","application/x-chrome-extension"],["cryptonote","application/vnd.rig.cryptonote"],["csh","application/x-csh"],["csl","application/vnd.citationstyles.style+xml"],["csml","chemical/x-csml"],["csp","application/vnd.commonspace"],["csr","application/octet-stream"],["css","text/css"],["cst","application/x-director"],["csv","text/csv"],["cu","application/cu-seeme"],["curl","text/vnd.curl"],["cww","application/prs.cww"],["cxt","application/x-director"],["cxx","text/x-c"],["dae","model/vnd.collada+xml"],["daf","application/vnd.mobius.daf"],["dart","application/vnd.dart"],["dataless","application/vnd.fdsn.seed"],["davmount","application/davmount+xml"],["dbf","application/vnd.dbf"],["dbk","application/docbook+xml"],["dcr","application/x-director"],["dcurl","text/vnd.curl.dcurl"],["dd2","application/vnd.oma.dd2+xml"],["ddd","application/vnd.fujixerox.ddd"],["ddf","application/vnd.syncml.dmddf+xml"],["dds","image/vnd.ms-dds"],["deb","application/x-debian-package"],["def","text/plain"],["deploy","application/octet-stream"],["der","application/x-x509-ca-cert"],["dfac","application/vnd.dreamfactory"],["dgc","application/x-dgc-compressed"],["dic","text/x-c"],["dir","application/x-director"],["dis","application/vnd.mobius.dis"],["disposition-notification","message/disposition-notification"],["dist","application/octet-stream"],["distz","application/octet-stream"],["djv","image/vnd.djvu"],["djvu","image/vnd.djvu"],["dll","application/octet-stream"],["dmg","application/x-apple-diskimage"],["dmn","application/octet-stream"],["dmp","application/vnd.tcpdump.pcap"],["dms","application/octet-stream"],["dna","application/vnd.dna"],["doc","application/msword"],["docm","application/vnd.ms-word.template.macroEnabled.12"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["dot","application/msword"],["dotm","application/vnd.ms-word.template.macroEnabled.12"],["dotx","application/vnd.openxmlformats-officedocument.wordprocessingml.template"],["dp","application/vnd.osgi.dp"],["dpg","application/vnd.dpgraph"],["dra","audio/vnd.dra"],["drle","image/dicom-rle"],["dsc","text/prs.lines.tag"],["dssc","application/dssc+der"],["dtb","application/x-dtbook+xml"],["dtd","application/xml-dtd"],["dts","audio/vnd.dts"],["dtshd","audio/vnd.dts.hd"],["dump","application/octet-stream"],["dvb","video/vnd.dvb.file"],["dvi","application/x-dvi"],["dwd","application/atsc-dwd+xml"],["dwf","model/vnd.dwf"],["dwg","image/vnd.dwg"],["dxf","image/vnd.dxf"],["dxp","application/vnd.spotfire.dxp"],["dxr","application/x-director"],["ear","application/java-archive"],["ecelp4800","audio/vnd.nuera.ecelp4800"],["ecelp7470","audio/vnd.nuera.ecelp7470"],["ecelp9600","audio/vnd.nuera.ecelp9600"],["ecma","application/ecmascript"],["edm","application/vnd.novadigm.edm"],["edx","application/vnd.novadigm.edx"],["efif","application/vnd.picsel"],["ei6","application/vnd.pg.osasli"],["elc","application/octet-stream"],["emf","image/emf"],["eml","message/rfc822"],["emma","application/emma+xml"],["emotionml","application/emotionml+xml"],["emz","application/x-msmetafile"],["eol","audio/vnd.digital-winds"],["eot","application/vnd.ms-fontobject"],["eps","application/postscript"],["epub","application/epub+zip"],["es","application/ecmascript"],["es3","application/vnd.eszigno3+xml"],["esa","application/vnd.osgi.subsystem"],["esf","application/vnd.epson.esf"],["et3","application/vnd.eszigno3+xml"],["etx","text/x-setext"],["eva","application/x-eva"],["evy","application/x-envoy"],["exe","application/octet-stream"],["exi","application/exi"],["exp","application/express"],["exr","image/aces"],["ext","application/vnd.novadigm.ext"],["ez","application/andrew-inset"],["ez2","application/vnd.ezpix-album"],["ez3","application/vnd.ezpix-package"],["f","text/x-fortran"],["f4v","video/mp4"],["f77","text/x-fortran"],["f90","text/x-fortran"],["fbs","image/vnd.fastbidsheet"],["fcdt","application/vnd.adobe.formscentral.fcdt"],["fcs","application/vnd.isac.fcs"],["fdf","application/vnd.fdf"],["fdt","application/fdt+xml"],["fe_launch","application/vnd.denovo.fcselayout-link"],["fg5","application/vnd.fujitsu.oasysgp"],["fgd","application/x-director"],["fh","image/x-freehand"],["fh4","image/x-freehand"],["fh5","image/x-freehand"],["fh7","image/x-freehand"],["fhc","image/x-freehand"],["fig","application/x-xfig"],["fits","image/fits"],["flac","audio/x-flac"],["fli","video/x-fli"],["flo","application/vnd.micrografx.flo"],["flv","video/x-flv"],["flw","application/vnd.kde.kivio"],["flx","text/vnd.fmi.flexstor"],["fly","text/vnd.fly"],["fm","application/vnd.framemaker"],["fnc","application/vnd.frogans.fnc"],["fo","application/vnd.software602.filler.form+xml"],["for","text/x-fortran"],["fpx","image/vnd.fpx"],["frame","application/vnd.framemaker"],["fsc","application/vnd.fsc.weblaunch"],["fst","image/vnd.fst"],["ftc","application/vnd.fluxtime.clip"],["fti","application/vnd.anser-web-funds-transfer-initiation"],["fvt","video/vnd.fvt"],["fxp","application/vnd.adobe.fxp"],["fxpl","application/vnd.adobe.fxp"],["fzs","application/vnd.fuzzysheet"],["g2w","application/vnd.geoplan"],["g3","image/g3fax"],["g3w","application/vnd.geospace"],["gac","application/vnd.groove-account"],["gam","application/x-tads"],["gbr","application/rpki-ghostbusters"],["gca","application/x-gca-compressed"],["gdl","model/vnd.gdl"],["gdoc","application/vnd.google-apps.document"],["geo","application/vnd.dynageo"],["geojson","application/geo+json"],["gex","application/vnd.geometry-explorer"],["ggb","application/vnd.geogebra.file"],["ggt","application/vnd.geogebra.tool"],["ghf","application/vnd.groove-help"],["gif","image/gif"],["gim","application/vnd.groove-identity-message"],["glb","model/gltf-binary"],["gltf","model/gltf+json"],["gml","application/gml+xml"],["gmx","application/vnd.gmx"],["gnumeric","application/x-gnumeric"],["gpg","application/gpg-keys"],["gph","application/vnd.flographit"],["gpx","application/gpx+xml"],["gqf","application/vnd.grafeq"],["gqs","application/vnd.grafeq"],["gram","application/srgs"],["gramps","application/x-gramps-xml"],["gre","application/vnd.geometry-explorer"],["grv","application/vnd.groove-injector"],["grxml","application/srgs+xml"],["gsf","application/x-font-ghostscript"],["gsheet","application/vnd.google-apps.spreadsheet"],["gslides","application/vnd.google-apps.presentation"],["gtar","application/x-gtar"],["gtm","application/vnd.groove-tool-message"],["gtw","model/vnd.gtw"],["gv","text/vnd.graphviz"],["gxf","application/gxf"],["gxt","application/vnd.geonext"],["gz","application/gzip"],["gzip","application/gzip"],["h","text/x-c"],["h261","video/h261"],["h263","video/h263"],["h264","video/h264"],["hal","application/vnd.hal+xml"],["hbci","application/vnd.hbci"],["hbs","text/x-handlebars-template"],["hdd","application/x-virtualbox-hdd"],["hdf","application/x-hdf"],["heic","image/heic"],["heics","image/heic-sequence"],["heif","image/heif"],["heifs","image/heif-sequence"],["hej2","image/hej2k"],["held","application/atsc-held+xml"],["hh","text/x-c"],["hjson","application/hjson"],["hlp","application/winhlp"],["hpgl","application/vnd.hp-hpgl"],["hpid","application/vnd.hp-hpid"],["hps","application/vnd.hp-hps"],["hqx","application/mac-binhex40"],["hsj2","image/hsj2"],["htc","text/x-component"],["htke","application/vnd.kenameaapp"],["htm","text/html"],["html","text/html"],["hvd","application/vnd.yamaha.hv-dic"],["hvp","application/vnd.yamaha.hv-voice"],["hvs","application/vnd.yamaha.hv-script"],["i2g","application/vnd.intergeo"],["icc","application/vnd.iccprofile"],["ice","x-conference/x-cooltalk"],["icm","application/vnd.iccprofile"],["ico","image/x-icon"],["ics","text/calendar"],["ief","image/ief"],["ifb","text/calendar"],["ifm","application/vnd.shana.informed.formdata"],["iges","model/iges"],["igl","application/vnd.igloader"],["igm","application/vnd.insors.igm"],["igs","model/iges"],["igx","application/vnd.micrografx.igx"],["iif","application/vnd.shana.informed.interchange"],["img","application/octet-stream"],["imp","application/vnd.accpac.simply.imp"],["ims","application/vnd.ms-ims"],["in","text/plain"],["ini","text/plain"],["ink","application/inkml+xml"],["inkml","application/inkml+xml"],["install","application/x-install-instructions"],["iota","application/vnd.astraea-software.iota"],["ipfix","application/ipfix"],["ipk","application/vnd.shana.informed.package"],["irm","application/vnd.ibm.rights-management"],["irp","application/vnd.irepository.package+xml"],["iso","application/x-iso9660-image"],["itp","application/vnd.shana.informed.formtemplate"],["its","application/its+xml"],["ivp","application/vnd.immervision-ivp"],["ivu","application/vnd.immervision-ivu"],["jad","text/vnd.sun.j2me.app-descriptor"],["jade","text/jade"],["jam","application/vnd.jam"],["jar","application/java-archive"],["jardiff","application/x-java-archive-diff"],["java","text/x-java-source"],["jhc","image/jphc"],["jisp","application/vnd.jisp"],["jls","image/jls"],["jlt","application/vnd.hp-jlyt"],["jng","image/x-jng"],["jnlp","application/x-java-jnlp-file"],["joda","application/vnd.joost.joda-archive"],["jp2","image/jp2"],["jpe","image/jpeg"],["jpeg","image/jpeg"],["jpf","image/jpx"],["jpg","image/jpeg"],["jpg2","image/jp2"],["jpgm","video/jpm"],["jpgv","video/jpeg"],["jph","image/jph"],["jpm","video/jpm"],["jpx","image/jpx"],["js","application/javascript"],["json","application/json"],["json5","application/json5"],["jsonld","application/ld+json"],["jsonl","application/jsonl"],["jsonml","application/jsonml+json"],["jsx","text/jsx"],["jxr","image/jxr"],["jxra","image/jxra"],["jxrs","image/jxrs"],["jxs","image/jxs"],["jxsc","image/jxsc"],["jxsi","image/jxsi"],["jxss","image/jxss"],["kar","audio/midi"],["karbon","application/vnd.kde.karbon"],["kdb","application/octet-stream"],["kdbx","application/x-keepass2"],["key","application/x-iwork-keynote-sffkey"],["kfo","application/vnd.kde.kformula"],["kia","application/vnd.kidspiration"],["kml","application/vnd.google-earth.kml+xml"],["kmz","application/vnd.google-earth.kmz"],["kne","application/vnd.kinar"],["knp","application/vnd.kinar"],["kon","application/vnd.kde.kontour"],["kpr","application/vnd.kde.kpresenter"],["kpt","application/vnd.kde.kpresenter"],["kpxx","application/vnd.ds-keypoint"],["ksp","application/vnd.kde.kspread"],["ktr","application/vnd.kahootz"],["ktx","image/ktx"],["ktx2","image/ktx2"],["ktz","application/vnd.kahootz"],["kwd","application/vnd.kde.kword"],["kwt","application/vnd.kde.kword"],["lasxml","application/vnd.las.las+xml"],["latex","application/x-latex"],["lbd","application/vnd.llamagraphics.life-balance.desktop"],["lbe","application/vnd.llamagraphics.life-balance.exchange+xml"],["les","application/vnd.hhe.lesson-player"],["less","text/less"],["lgr","application/lgr+xml"],["lha","application/octet-stream"],["link66","application/vnd.route66.link66+xml"],["list","text/plain"],["list3820","application/vnd.ibm.modcap"],["listafp","application/vnd.ibm.modcap"],["litcoffee","text/coffeescript"],["lnk","application/x-ms-shortcut"],["log","text/plain"],["lostxml","application/lost+xml"],["lrf","application/octet-stream"],["lrm","application/vnd.ms-lrm"],["ltf","application/vnd.frogans.ltf"],["lua","text/x-lua"],["luac","application/x-lua-bytecode"],["lvp","audio/vnd.lucent.voice"],["lwp","application/vnd.lotus-wordpro"],["lzh","application/octet-stream"],["m1v","video/mpeg"],["m2a","audio/mpeg"],["m2v","video/mpeg"],["m3a","audio/mpeg"],["m3u","text/plain"],["m3u8","application/vnd.apple.mpegurl"],["m4a","audio/x-m4a"],["m4p","application/mp4"],["m4s","video/iso.segment"],["m4u","application/vnd.mpegurl"],["m4v","video/x-m4v"],["m13","application/x-msmediaview"],["m14","application/x-msmediaview"],["m21","application/mp21"],["ma","application/mathematica"],["mads","application/mads+xml"],["maei","application/mmt-aei+xml"],["mag","application/vnd.ecowin.chart"],["maker","application/vnd.framemaker"],["man","text/troff"],["manifest","text/cache-manifest"],["map","application/json"],["mar","application/octet-stream"],["markdown","text/markdown"],["mathml","application/mathml+xml"],["mb","application/mathematica"],["mbk","application/vnd.mobius.mbk"],["mbox","application/mbox"],["mc1","application/vnd.medcalcdata"],["mcd","application/vnd.mcd"],["mcurl","text/vnd.curl.mcurl"],["md","text/markdown"],["mdb","application/x-msaccess"],["mdi","image/vnd.ms-modi"],["mdx","text/mdx"],["me","text/troff"],["mesh","model/mesh"],["meta4","application/metalink4+xml"],["metalink","application/metalink+xml"],["mets","application/mets+xml"],["mfm","application/vnd.mfmp"],["mft","application/rpki-manifest"],["mgp","application/vnd.osgeo.mapguide.package"],["mgz","application/vnd.proteus.magazine"],["mid","audio/midi"],["midi","audio/midi"],["mie","application/x-mie"],["mif","application/vnd.mif"],["mime","message/rfc822"],["mj2","video/mj2"],["mjp2","video/mj2"],["mjs","application/javascript"],["mk3d","video/x-matroska"],["mka","audio/x-matroska"],["mkd","text/x-markdown"],["mks","video/x-matroska"],["mkv","video/x-matroska"],["mlp","application/vnd.dolby.mlp"],["mmd","application/vnd.chipnuts.karaoke-mmd"],["mmf","application/vnd.smaf"],["mml","text/mathml"],["mmr","image/vnd.fujixerox.edmics-mmr"],["mng","video/x-mng"],["mny","application/x-msmoney"],["mobi","application/x-mobipocket-ebook"],["mods","application/mods+xml"],["mov","video/quicktime"],["movie","video/x-sgi-movie"],["mp2","audio/mpeg"],["mp2a","audio/mpeg"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mp4a","audio/mp4"],["mp4s","application/mp4"],["mp4v","video/mp4"],["mp21","application/mp21"],["mpc","application/vnd.mophun.certificate"],["mpd","application/dash+xml"],["mpe","video/mpeg"],["mpeg","video/mpeg"],["mpg","video/mpeg"],["mpg4","video/mp4"],["mpga","audio/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["mpm","application/vnd.blueice.multipass"],["mpn","application/vnd.mophun.application"],["mpp","application/vnd.ms-project"],["mpt","application/vnd.ms-project"],["mpy","application/vnd.ibm.minipay"],["mqy","application/vnd.mobius.mqy"],["mrc","application/marc"],["mrcx","application/marcxml+xml"],["ms","text/troff"],["mscml","application/mediaservercontrol+xml"],["mseed","application/vnd.fdsn.mseed"],["mseq","application/vnd.mseq"],["msf","application/vnd.epson.msf"],["msg","application/vnd.ms-outlook"],["msh","model/mesh"],["msi","application/x-msdownload"],["msl","application/vnd.mobius.msl"],["msm","application/octet-stream"],["msp","application/octet-stream"],["msty","application/vnd.muvee.style"],["mtl","model/mtl"],["mts","model/vnd.mts"],["mus","application/vnd.musician"],["musd","application/mmt-usd+xml"],["musicxml","application/vnd.recordare.musicxml+xml"],["mvb","application/x-msmediaview"],["mvt","application/vnd.mapbox-vector-tile"],["mwf","application/vnd.mfer"],["mxf","application/mxf"],["mxl","application/vnd.recordare.musicxml"],["mxmf","audio/mobile-xmf"],["mxml","application/xv+xml"],["mxs","application/vnd.triscape.mxs"],["mxu","video/vnd.mpegurl"],["n-gage","application/vnd.nokia.n-gage.symbian.install"],["n3","text/n3"],["nb","application/mathematica"],["nbp","application/vnd.wolfram.player"],["nc","application/x-netcdf"],["ncx","application/x-dtbncx+xml"],["nfo","text/x-nfo"],["ngdat","application/vnd.nokia.n-gage.data"],["nitf","application/vnd.nitf"],["nlu","application/vnd.neurolanguage.nlu"],["nml","application/vnd.enliven"],["nnd","application/vnd.noblenet-directory"],["nns","application/vnd.noblenet-sealer"],["nnw","application/vnd.noblenet-web"],["npx","image/vnd.net-fpx"],["nq","application/n-quads"],["nsc","application/x-conference"],["nsf","application/vnd.lotus-notes"],["nt","application/n-triples"],["ntf","application/vnd.nitf"],["numbers","application/x-iwork-numbers-sffnumbers"],["nzb","application/x-nzb"],["oa2","application/vnd.fujitsu.oasys2"],["oa3","application/vnd.fujitsu.oasys3"],["oas","application/vnd.fujitsu.oasys"],["obd","application/x-msbinder"],["obgx","application/vnd.openblox.game+xml"],["obj","model/obj"],["oda","application/oda"],["odb","application/vnd.oasis.opendocument.database"],["odc","application/vnd.oasis.opendocument.chart"],["odf","application/vnd.oasis.opendocument.formula"],["odft","application/vnd.oasis.opendocument.formula-template"],["odg","application/vnd.oasis.opendocument.graphics"],["odi","application/vnd.oasis.opendocument.image"],["odm","application/vnd.oasis.opendocument.text-master"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogex","model/vnd.opengex"],["ogg","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["omdoc","application/omdoc+xml"],["onepkg","application/onenote"],["onetmp","application/onenote"],["onetoc","application/onenote"],["onetoc2","application/onenote"],["opf","application/oebps-package+xml"],["opml","text/x-opml"],["oprc","application/vnd.palm"],["opus","audio/ogg"],["org","text/x-org"],["osf","application/vnd.yamaha.openscoreformat"],["osfpvg","application/vnd.yamaha.openscoreformat.osfpvg+xml"],["osm","application/vnd.openstreetmap.data+xml"],["otc","application/vnd.oasis.opendocument.chart-template"],["otf","font/otf"],["otg","application/vnd.oasis.opendocument.graphics-template"],["oth","application/vnd.oasis.opendocument.text-web"],["oti","application/vnd.oasis.opendocument.image-template"],["otp","application/vnd.oasis.opendocument.presentation-template"],["ots","application/vnd.oasis.opendocument.spreadsheet-template"],["ott","application/vnd.oasis.opendocument.text-template"],["ova","application/x-virtualbox-ova"],["ovf","application/x-virtualbox-ovf"],["owl","application/rdf+xml"],["oxps","application/oxps"],["oxt","application/vnd.openofficeorg.extension"],["p","text/x-pascal"],["p7a","application/x-pkcs7-signature"],["p7b","application/x-pkcs7-certificates"],["p7c","application/pkcs7-mime"],["p7m","application/pkcs7-mime"],["p7r","application/x-pkcs7-certreqresp"],["p7s","application/pkcs7-signature"],["p8","application/pkcs8"],["p10","application/x-pkcs10"],["p12","application/x-pkcs12"],["pac","application/x-ns-proxy-autoconfig"],["pages","application/x-iwork-pages-sffpages"],["pas","text/x-pascal"],["paw","application/vnd.pawaafile"],["pbd","application/vnd.powerbuilder6"],["pbm","image/x-portable-bitmap"],["pcap","application/vnd.tcpdump.pcap"],["pcf","application/x-font-pcf"],["pcl","application/vnd.hp-pcl"],["pclxl","application/vnd.hp-pclxl"],["pct","image/x-pict"],["pcurl","application/vnd.curl.pcurl"],["pcx","image/x-pcx"],["pdb","application/x-pilot"],["pde","text/x-processing"],["pdf","application/pdf"],["pem","application/x-x509-user-cert"],["pfa","application/x-font-type1"],["pfb","application/x-font-type1"],["pfm","application/x-font-type1"],["pfr","application/font-tdpfr"],["pfx","application/x-pkcs12"],["pgm","image/x-portable-graymap"],["pgn","application/x-chess-pgn"],["pgp","application/pgp"],["php","application/x-httpd-php"],["php3","application/x-httpd-php"],["php4","application/x-httpd-php"],["phps","application/x-httpd-php-source"],["phtml","application/x-httpd-php"],["pic","image/x-pict"],["pkg","application/octet-stream"],["pki","application/pkixcmp"],["pkipath","application/pkix-pkipath"],["pkpass","application/vnd.apple.pkpass"],["pl","application/x-perl"],["plb","application/vnd.3gpp.pic-bw-large"],["plc","application/vnd.mobius.plc"],["plf","application/vnd.pocketlearn"],["pls","application/pls+xml"],["pm","application/x-perl"],["pml","application/vnd.ctc-posml"],["png","image/png"],["pnm","image/x-portable-anymap"],["portpkg","application/vnd.macports.portpkg"],["pot","application/vnd.ms-powerpoint"],["potm","application/vnd.ms-powerpoint.presentation.macroEnabled.12"],["potx","application/vnd.openxmlformats-officedocument.presentationml.template"],["ppa","application/vnd.ms-powerpoint"],["ppam","application/vnd.ms-powerpoint.addin.macroEnabled.12"],["ppd","application/vnd.cups-ppd"],["ppm","image/x-portable-pixmap"],["pps","application/vnd.ms-powerpoint"],["ppsm","application/vnd.ms-powerpoint.slideshow.macroEnabled.12"],["ppsx","application/vnd.openxmlformats-officedocument.presentationml.slideshow"],["ppt","application/powerpoint"],["pptm","application/vnd.ms-powerpoint.presentation.macroEnabled.12"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["pqa","application/vnd.palm"],["prc","application/x-pilot"],["pre","application/vnd.lotus-freelance"],["prf","application/pics-rules"],["provx","application/provenance+xml"],["ps","application/postscript"],["psb","application/vnd.3gpp.pic-bw-small"],["psd","application/x-photoshop"],["psf","application/x-font-linux-psf"],["pskcxml","application/pskc+xml"],["pti","image/prs.pti"],["ptid","application/vnd.pvi.ptid1"],["pub","application/x-mspublisher"],["pvb","application/vnd.3gpp.pic-bw-var"],["pwn","application/vnd.3m.post-it-notes"],["pya","audio/vnd.ms-playready.media.pya"],["pyv","video/vnd.ms-playready.media.pyv"],["qam","application/vnd.epson.quickanime"],["qbo","application/vnd.intu.qbo"],["qfx","application/vnd.intu.qfx"],["qps","application/vnd.publishare-delta-tree"],["qt","video/quicktime"],["qwd","application/vnd.quark.quarkxpress"],["qwt","application/vnd.quark.quarkxpress"],["qxb","application/vnd.quark.quarkxpress"],["qxd","application/vnd.quark.quarkxpress"],["qxl","application/vnd.quark.quarkxpress"],["qxt","application/vnd.quark.quarkxpress"],["ra","audio/x-realaudio"],["ram","audio/x-pn-realaudio"],["raml","application/raml+yaml"],["rapd","application/route-apd+xml"],["rar","application/x-rar"],["ras","image/x-cmu-raster"],["rcprofile","application/vnd.ipunplugged.rcprofile"],["rdf","application/rdf+xml"],["rdz","application/vnd.data-vision.rdz"],["relo","application/p2p-overlay+xml"],["rep","application/vnd.businessobjects"],["res","application/x-dtbresource+xml"],["rgb","image/x-rgb"],["rif","application/reginfo+xml"],["rip","audio/vnd.rip"],["ris","application/x-research-info-systems"],["rl","application/resource-lists+xml"],["rlc","image/vnd.fujixerox.edmics-rlc"],["rld","application/resource-lists-diff+xml"],["rm","audio/x-pn-realaudio"],["rmi","audio/midi"],["rmp","audio/x-pn-realaudio-plugin"],["rms","application/vnd.jcp.javame.midlet-rms"],["rmvb","application/vnd.rn-realmedia-vbr"],["rnc","application/relax-ng-compact-syntax"],["rng","application/xml"],["roa","application/rpki-roa"],["roff","text/troff"],["rp9","application/vnd.cloanto.rp9"],["rpm","audio/x-pn-realaudio-plugin"],["rpss","application/vnd.nokia.radio-presets"],["rpst","application/vnd.nokia.radio-preset"],["rq","application/sparql-query"],["rs","application/rls-services+xml"],["rsa","application/x-pkcs7"],["rsat","application/atsc-rsat+xml"],["rsd","application/rsd+xml"],["rsheet","application/urc-ressheet+xml"],["rss","application/rss+xml"],["rtf","text/rtf"],["rtx","text/richtext"],["run","application/x-makeself"],["rusd","application/route-usd+xml"],["rv","video/vnd.rn-realvideo"],["s","text/x-asm"],["s3m","audio/s3m"],["saf","application/vnd.yamaha.smaf-audio"],["sass","text/x-sass"],["sbml","application/sbml+xml"],["sc","application/vnd.ibm.secure-container"],["scd","application/x-msschedule"],["scm","application/vnd.lotus-screencam"],["scq","application/scvp-cv-request"],["scs","application/scvp-cv-response"],["scss","text/x-scss"],["scurl","text/vnd.curl.scurl"],["sda","application/vnd.stardivision.draw"],["sdc","application/vnd.stardivision.calc"],["sdd","application/vnd.stardivision.impress"],["sdkd","application/vnd.solent.sdkm+xml"],["sdkm","application/vnd.solent.sdkm+xml"],["sdp","application/sdp"],["sdw","application/vnd.stardivision.writer"],["sea","application/octet-stream"],["see","application/vnd.seemail"],["seed","application/vnd.fdsn.seed"],["sema","application/vnd.sema"],["semd","application/vnd.semd"],["semf","application/vnd.semf"],["senmlx","application/senml+xml"],["sensmlx","application/sensml+xml"],["ser","application/java-serialized-object"],["setpay","application/set-payment-initiation"],["setreg","application/set-registration-initiation"],["sfd-hdstx","application/vnd.hydrostatix.sof-data"],["sfs","application/vnd.spotfire.sfs"],["sfv","text/x-sfv"],["sgi","image/sgi"],["sgl","application/vnd.stardivision.writer-global"],["sgm","text/sgml"],["sgml","text/sgml"],["sh","application/x-sh"],["shar","application/x-shar"],["shex","text/shex"],["shf","application/shf+xml"],["shtml","text/html"],["sid","image/x-mrsid-image"],["sieve","application/sieve"],["sig","application/pgp-signature"],["sil","audio/silk"],["silo","model/mesh"],["sis","application/vnd.symbian.install"],["sisx","application/vnd.symbian.install"],["sit","application/x-stuffit"],["sitx","application/x-stuffitx"],["siv","application/sieve"],["skd","application/vnd.koan"],["skm","application/vnd.koan"],["skp","application/vnd.koan"],["skt","application/vnd.koan"],["sldm","application/vnd.ms-powerpoint.slide.macroenabled.12"],["sldx","application/vnd.openxmlformats-officedocument.presentationml.slide"],["slim","text/slim"],["slm","text/slim"],["sls","application/route-s-tsid+xml"],["slt","application/vnd.epson.salt"],["sm","application/vnd.stepmania.stepchart"],["smf","application/vnd.stardivision.math"],["smi","application/smil"],["smil","application/smil"],["smv","video/x-smv"],["smzip","application/vnd.stepmania.package"],["snd","audio/basic"],["snf","application/x-font-snf"],["so","application/octet-stream"],["spc","application/x-pkcs7-certificates"],["spdx","text/spdx"],["spf","application/vnd.yamaha.smaf-phrase"],["spl","application/x-futuresplash"],["spot","text/vnd.in3d.spot"],["spp","application/scvp-vp-response"],["spq","application/scvp-vp-request"],["spx","audio/ogg"],["sql","application/x-sql"],["src","application/x-wais-source"],["srt","application/x-subrip"],["sru","application/sru+xml"],["srx","application/sparql-results+xml"],["ssdl","application/ssdl+xml"],["sse","application/vnd.kodak-descriptor"],["ssf","application/vnd.epson.ssf"],["ssml","application/ssml+xml"],["sst","application/octet-stream"],["st","application/vnd.sailingtracker.track"],["stc","application/vnd.sun.xml.calc.template"],["std","application/vnd.sun.xml.draw.template"],["stf","application/vnd.wt.stf"],["sti","application/vnd.sun.xml.impress.template"],["stk","application/hyperstudio"],["stl","model/stl"],["stpx","model/step+xml"],["stpxz","model/step-xml+zip"],["stpz","model/step+zip"],["str","application/vnd.pg.format"],["stw","application/vnd.sun.xml.writer.template"],["styl","text/stylus"],["stylus","text/stylus"],["sub","text/vnd.dvb.subtitle"],["sus","application/vnd.sus-calendar"],["susp","application/vnd.sus-calendar"],["sv4cpio","application/x-sv4cpio"],["sv4crc","application/x-sv4crc"],["svc","application/vnd.dvb.service"],["svd","application/vnd.svd"],["svg","image/svg+xml"],["svgz","image/svg+xml"],["swa","application/x-director"],["swf","application/x-shockwave-flash"],["swi","application/vnd.aristanetworks.swi"],["swidtag","application/swid+xml"],["sxc","application/vnd.sun.xml.calc"],["sxd","application/vnd.sun.xml.draw"],["sxg","application/vnd.sun.xml.writer.global"],["sxi","application/vnd.sun.xml.impress"],["sxm","application/vnd.sun.xml.math"],["sxw","application/vnd.sun.xml.writer"],["t","text/troff"],["t3","application/x-t3vm-image"],["t38","image/t38"],["taglet","application/vnd.mynfc"],["tao","application/vnd.tao.intent-module-archive"],["tap","image/vnd.tencent.tap"],["tar","application/x-tar"],["tcap","application/vnd.3gpp2.tcap"],["tcl","application/x-tcl"],["td","application/urc-targetdesc+xml"],["teacher","application/vnd.smart.teacher"],["tei","application/tei+xml"],["teicorpus","application/tei+xml"],["tex","application/x-tex"],["texi","application/x-texinfo"],["texinfo","application/x-texinfo"],["text","text/plain"],["tfi","application/thraud+xml"],["tfm","application/x-tex-tfm"],["tfx","image/tiff-fx"],["tga","image/x-tga"],["tgz","application/x-tar"],["thmx","application/vnd.ms-officetheme"],["tif","image/tiff"],["tiff","image/tiff"],["tk","application/x-tcl"],["tmo","application/vnd.tmobile-livetv"],["toml","application/toml"],["torrent","application/x-bittorrent"],["tpl","application/vnd.groove-tool-template"],["tpt","application/vnd.trid.tpt"],["tr","text/troff"],["tra","application/vnd.trueapp"],["trig","application/trig"],["trm","application/x-msterminal"],["ts","video/mp2t"],["tsd","application/timestamped-data"],["tsv","text/tab-separated-values"],["ttc","font/collection"],["ttf","font/ttf"],["ttl","text/turtle"],["ttml","application/ttml+xml"],["twd","application/vnd.simtech-mindmapper"],["twds","application/vnd.simtech-mindmapper"],["txd","application/vnd.genomatix.tuxedo"],["txf","application/vnd.mobius.txf"],["txt","text/plain"],["u8dsn","message/global-delivery-status"],["u8hdr","message/global-headers"],["u8mdn","message/global-disposition-notification"],["u8msg","message/global"],["u32","application/x-authorware-bin"],["ubj","application/ubjson"],["udeb","application/x-debian-package"],["ufd","application/vnd.ufdl"],["ufdl","application/vnd.ufdl"],["ulx","application/x-glulx"],["umj","application/vnd.umajin"],["unityweb","application/vnd.unity"],["uoml","application/vnd.uoml+xml"],["uri","text/uri-list"],["uris","text/uri-list"],["urls","text/uri-list"],["usdz","model/vnd.usdz+zip"],["ustar","application/x-ustar"],["utz","application/vnd.uiq.theme"],["uu","text/x-uuencode"],["uva","audio/vnd.dece.audio"],["uvd","application/vnd.dece.data"],["uvf","application/vnd.dece.data"],["uvg","image/vnd.dece.graphic"],["uvh","video/vnd.dece.hd"],["uvi","image/vnd.dece.graphic"],["uvm","video/vnd.dece.mobile"],["uvp","video/vnd.dece.pd"],["uvs","video/vnd.dece.sd"],["uvt","application/vnd.dece.ttml+xml"],["uvu","video/vnd.uvvu.mp4"],["uvv","video/vnd.dece.video"],["uvva","audio/vnd.dece.audio"],["uvvd","application/vnd.dece.data"],["uvvf","application/vnd.dece.data"],["uvvg","image/vnd.dece.graphic"],["uvvh","video/vnd.dece.hd"],["uvvi","image/vnd.dece.graphic"],["uvvm","video/vnd.dece.mobile"],["uvvp","video/vnd.dece.pd"],["uvvs","video/vnd.dece.sd"],["uvvt","application/vnd.dece.ttml+xml"],["uvvu","video/vnd.uvvu.mp4"],["uvvv","video/vnd.dece.video"],["uvvx","application/vnd.dece.unspecified"],["uvvz","application/vnd.dece.zip"],["uvx","application/vnd.dece.unspecified"],["uvz","application/vnd.dece.zip"],["vbox","application/x-virtualbox-vbox"],["vbox-extpack","application/x-virtualbox-vbox-extpack"],["vcard","text/vcard"],["vcd","application/x-cdlink"],["vcf","text/x-vcard"],["vcg","application/vnd.groove-vcard"],["vcs","text/x-vcalendar"],["vcx","application/vnd.vcx"],["vdi","application/x-virtualbox-vdi"],["vds","model/vnd.sap.vds"],["vhd","application/x-virtualbox-vhd"],["vis","application/vnd.visionary"],["viv","video/vnd.vivo"],["vlc","application/videolan"],["vmdk","application/x-virtualbox-vmdk"],["vob","video/x-ms-vob"],["vor","application/vnd.stardivision.writer"],["vox","application/x-authorware-bin"],["vrml","model/vrml"],["vsd","application/vnd.visio"],["vsf","application/vnd.vsf"],["vss","application/vnd.visio"],["vst","application/vnd.visio"],["vsw","application/vnd.visio"],["vtf","image/vnd.valve.source.texture"],["vtt","text/vtt"],["vtu","model/vnd.vtu"],["vxml","application/voicexml+xml"],["w3d","application/x-director"],["wad","application/x-doom"],["wadl","application/vnd.sun.wadl+xml"],["war","application/java-archive"],["wasm","application/wasm"],["wav","audio/x-wav"],["wax","audio/x-ms-wax"],["wbmp","image/vnd.wap.wbmp"],["wbs","application/vnd.criticaltools.wbs+xml"],["wbxml","application/wbxml"],["wcm","application/vnd.ms-works"],["wdb","application/vnd.ms-works"],["wdp","image/vnd.ms-photo"],["weba","audio/webm"],["webapp","application/x-web-app-manifest+json"],["webm","video/webm"],["webmanifest","application/manifest+json"],["webp","image/webp"],["wg","application/vnd.pmi.widget"],["wgt","application/widget"],["wks","application/vnd.ms-works"],["wm","video/x-ms-wm"],["wma","audio/x-ms-wma"],["wmd","application/x-ms-wmd"],["wmf","image/wmf"],["wml","text/vnd.wap.wml"],["wmlc","application/wmlc"],["wmls","text/vnd.wap.wmlscript"],["wmlsc","application/vnd.wap.wmlscriptc"],["wmv","video/x-ms-wmv"],["wmx","video/x-ms-wmx"],["wmz","application/x-msmetafile"],["woff","font/woff"],["woff2","font/woff2"],["word","application/msword"],["wpd","application/vnd.wordperfect"],["wpl","application/vnd.ms-wpl"],["wps","application/vnd.ms-works"],["wqd","application/vnd.wqd"],["wri","application/x-mswrite"],["wrl","model/vrml"],["wsc","message/vnd.wfa.wsc"],["wsdl","application/wsdl+xml"],["wspolicy","application/wspolicy+xml"],["wtb","application/vnd.webturbo"],["wvx","video/x-ms-wvx"],["x3d","model/x3d+xml"],["x3db","model/x3d+fastinfoset"],["x3dbz","model/x3d+binary"],["x3dv","model/x3d-vrml"],["x3dvz","model/x3d+vrml"],["x3dz","model/x3d+xml"],["x32","application/x-authorware-bin"],["x_b","model/vnd.parasolid.transmit.binary"],["x_t","model/vnd.parasolid.transmit.text"],["xaml","application/xaml+xml"],["xap","application/x-silverlight-app"],["xar","application/vnd.xara"],["xav","application/xcap-att+xml"],["xbap","application/x-ms-xbap"],["xbd","application/vnd.fujixerox.docuworks.binder"],["xbm","image/x-xbitmap"],["xca","application/xcap-caps+xml"],["xcs","application/calendar+xml"],["xdf","application/xcap-diff+xml"],["xdm","application/vnd.syncml.dm+xml"],["xdp","application/vnd.adobe.xdp+xml"],["xdssc","application/dssc+xml"],["xdw","application/vnd.fujixerox.docuworks"],["xel","application/xcap-el+xml"],["xenc","application/xenc+xml"],["xer","application/patch-ops-error+xml"],["xfdf","application/vnd.adobe.xfdf"],["xfdl","application/vnd.xfdl"],["xht","application/xhtml+xml"],["xhtml","application/xhtml+xml"],["xhvml","application/xv+xml"],["xif","image/vnd.xiff"],["xl","application/excel"],["xla","application/vnd.ms-excel"],["xlam","application/vnd.ms-excel.addin.macroEnabled.12"],["xlc","application/vnd.ms-excel"],["xlf","application/xliff+xml"],["xlm","application/vnd.ms-excel"],["xls","application/vnd.ms-excel"],["xlsb","application/vnd.ms-excel.sheet.binary.macroEnabled.12"],["xlsm","application/vnd.ms-excel.sheet.macroEnabled.12"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xlt","application/vnd.ms-excel"],["xltm","application/vnd.ms-excel.template.macroEnabled.12"],["xltx","application/vnd.openxmlformats-officedocument.spreadsheetml.template"],["xlw","application/vnd.ms-excel"],["xm","audio/xm"],["xml","application/xml"],["xns","application/xcap-ns+xml"],["xo","application/vnd.olpc-sugar"],["xop","application/xop+xml"],["xpi","application/x-xpinstall"],["xpl","application/xproc+xml"],["xpm","image/x-xpixmap"],["xpr","application/vnd.is-xpr"],["xps","application/vnd.ms-xpsdocument"],["xpw","application/vnd.intercon.formnet"],["xpx","application/vnd.intercon.formnet"],["xsd","application/xml"],["xsl","application/xml"],["xslt","application/xslt+xml"],["xsm","application/vnd.syncml+xml"],["xspf","application/xspf+xml"],["xul","application/vnd.mozilla.xul+xml"],["xvm","application/xv+xml"],["xvml","application/xv+xml"],["xwd","image/x-xwindowdump"],["xyz","chemical/x-xyz"],["xz","application/x-xz"],["yaml","text/yaml"],["yang","application/yang"],["yin","application/yin+xml"],["yml","text/yaml"],["ymp","text/x-suse-ymp"],["z","application/x-compress"],["z1","application/x-zmachine"],["z2","application/x-zmachine"],["z3","application/x-zmachine"],["z4","application/x-zmachine"],["z5","application/x-zmachine"],["z6","application/x-zmachine"],["z7","application/x-zmachine"],["z8","application/x-zmachine"],["zaz","application/vnd.zzazz.deck+xml"],["zip","application/zip"],["zir","application/vnd.zul"],["zirz","application/vnd.zul"],["zmm","application/vnd.handheld-entertainment+xml"],["zsh","text/x-scriptzsh"]]);function Or(e,r,o){const t=Hg(e),{webkitRelativePath:n}=e,a=typeof r=="string"?r:typeof n=="string"&&n.length>0?n:`./${e.name}`;return typeof t.path!="string"&&ma(t,"path",a),ma(t,"relativePath",a),t}function Hg(e){const{name:r}=e;if(r&&r.lastIndexOf(".")!==-1&&!e.type){const t=r.split(".").pop().toLowerCase(),n=Bg.get(t);n&&Object.defineProperty(e,"type",{value:n,writable:!1,configurable:!1,enumerable:!0})}return e}function ma(e,r,o){Object.defineProperty(e,r,{value:o,writable:!1,configurable:!1,enumerable:!0})}const qg=[".DS_Store","Thumbs.db"];function Ug(e){return wr(this,void 0,void 0,function*(){return Ro(e)&&Yg(e.dataTransfer)?Zg(e.dataTransfer,e.type):Kg(e)?Gg(e):Array.isArray(e)&&e.every(r=>"getFile"in r&&typeof r.getFile=="function")?Xg(e):[]})}function Yg(e){return Ro(e)}function Kg(e){return Ro(e)&&Ro(e.target)}function Ro(e){return typeof e=="object"&&e!==null}function Gg(e){return Vt(e.target.files).map(r=>Or(r))}function Xg(e){return wr(this,void 0,void 0,function*(){return(yield Promise.all(e.map(o=>o.getFile()))).map(o=>Or(o))})}function Zg(e,r){return wr(this,void 0,void 0,function*(){if(e.items){const o=Vt(e.items).filter(n=>n.kind==="file");if(r!=="drop")return o;const t=yield Promise.all(o.map(Jg));return xa(Ll(t))}return xa(Vt(e.files).map(o=>Or(o)))})}function xa(e){return e.filter(r=>qg.indexOf(r.name)===-1)}function Vt(e){if(e===null)return[];const r=[];for(let o=0;o<e.length;o++){const t=e[o];r.push(t)}return r}function Jg(e){if(typeof e.webkitGetAsEntry!="function")return ha(e);const r=e.webkitGetAsEntry();return r&&r.isDirectory?zl(r):ha(e,r)}function Ll(e){return e.reduce((r,o)=>[...r,...Array.isArray(o)?Ll(o):[o]],[])}function ha(e,r){return wr(this,void 0,void 0,function*(){var o;if(globalThis.isSecureContext&&typeof e.getAsFileSystemHandle=="function"){const a=yield e.getAsFileSystemHandle();if(a===null)throw new Error(`${e} is not a File`);if(a!==void 0){const c=yield a.getFile();return c.handle=a,Or(c)}}const t=e.getAsFile();if(!t)throw new Error(`${e} is not a File`);return Or(t,(o=r?.fullPath)!==null&&o!==void 0?o:void 0)})}function Qg(e){return wr(this,void 0,void 0,function*(){return e.isDirectory?zl(e):em(e)})}function zl(e){const r=e.createReader();return new Promise((o,t)=>{const n=[];function a(){r.readEntries(c=>wr(this,void 0,void 0,function*(){if(c.length){const i=Promise.all(c.map(Qg));n.push(i),a()}else try{const i=yield Promise.all(n);o(i)}catch(i){t(i)}}),c=>{t(c)})}a()})}function em(e){return wr(this,void 0,void 0,function*(){return new Promise((r,o)=>{e.file(t=>{const n=Or(t,e.fullPath);r(n)},t=>{o(t)})})})}var co={},va;function rm(){return va||(va=1,co.__esModule=!0,co.default=function(e,r){if(e&&r){var o=Array.isArray(r)?r:r.split(",");if(o.length===0)return!0;var t=e.name||"",n=(e.type||"").toLowerCase(),a=n.replace(/\/.*$/,"");return o.some(function(c){var i=c.trim().toLowerCase();return i.charAt(0)==="."?t.toLowerCase().endsWith(i):i.endsWith("/*")?a===i.replace(/\/.*$/,""):n===i})}return!0}),co}var om=rm();const pt=Kr(om);function ya(e){return am(e)||nm(e)||$l(e)||tm()}function tm(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
|
135
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function nm(e){if(typeof Symbol<"u"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function am(e){if(Array.isArray(e))return Wt(e)}function wa(e,r){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(e);r&&(t=t.filter(function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable})),o.push.apply(o,t)}return o}function ka(e){for(var r=1;r<arguments.length;r++){var o=arguments[r]!=null?arguments[r]:{};r%2?wa(Object(o),!0).forEach(function(t){Fl(e,t,o[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):wa(Object(o)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))})}return e}function Fl(e,r,o){return r in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}function Ur(e,r){return lm(e)||im(e,r)||$l(e,r)||cm()}function cm(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
136
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function $l(e,r){if(e){if(typeof e=="string")return Wt(e,r);var o=Object.prototype.toString.call(e).slice(8,-1);if(o==="Object"&&e.constructor&&(o=e.constructor.name),o==="Map"||o==="Set")return Array.from(e);if(o==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o))return Wt(e,r)}}function Wt(e,r){(r==null||r>e.length)&&(r=e.length);for(var o=0,t=new Array(r);o<r;o++)t[o]=e[o];return t}function im(e,r){var o=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(o!=null){var t=[],n=!0,a=!1,c,i;try{for(o=o.call(e);!(n=(c=o.next()).done)&&(t.push(c.value),!(r&&t.length===r));n=!0);}catch(s){a=!0,i=s}finally{try{!n&&o.return!=null&&o.return()}finally{if(a)throw i}}return t}}function lm(e){if(Array.isArray(e))return e}var dm=typeof pt=="function"?pt:pt.default,sm="file-invalid-type",um="file-too-large",fm="file-too-small",bm="too-many-files",pm=function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",o=r.split(","),t=o.length>1?"one of ".concat(o.join(", ")):o[0];return{code:sm,message:"File type must be ".concat(t)}},_a=function(r){return{code:um,message:"File is larger than ".concat(r," ").concat(r===1?"byte":"bytes")}},Ca=function(r){return{code:fm,message:"File is smaller than ".concat(r," ").concat(r===1?"byte":"bytes")}},gm={code:bm,message:"Too many files"};function Vl(e,r){var o=e.type==="application/x-moz-file"||dm(e,r);return[o,o?null:pm(r)]}function Wl(e,r,o){if(fr(e.size))if(fr(r)&&fr(o)){if(e.size>o)return[!1,_a(o)];if(e.size<r)return[!1,Ca(r)]}else{if(fr(r)&&e.size<r)return[!1,Ca(r)];if(fr(o)&&e.size>o)return[!1,_a(o)]}return[!0,null]}function fr(e){return e!=null}function mm(e){var r=e.files,o=e.accept,t=e.minSize,n=e.maxSize,a=e.multiple,c=e.maxFiles,i=e.validator;return!a&&r.length>1||a&&c>=1&&r.length>c?!1:r.every(function(s){var l=Vl(s,o),f=Ur(l,1),p=f[0],x=Wl(s,t,n),v=Ur(x,1),_=v[0],b=i?i(s):null;return p&&_&&!b})}function jo(e){return typeof e.isPropagationStopped=="function"?e.isPropagationStopped():typeof e.cancelBubble<"u"?e.cancelBubble:!1}function io(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,function(r){return r==="Files"||r==="application/x-moz-file"}):!!e.target&&!!e.target.files}function Sa(e){e.preventDefault()}function xm(e){return e.indexOf("MSIE")!==-1||e.indexOf("Trident/")!==-1}function hm(e){return e.indexOf("Edge/")!==-1}function vm(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:window.navigator.userAgent;return xm(e)||hm(e)}function We(){for(var e=arguments.length,r=new Array(e),o=0;o<e;o++)r[o]=arguments[o];return function(t){for(var n=arguments.length,a=new Array(n>1?n-1:0),c=1;c<n;c++)a[c-1]=arguments[c];return r.some(function(i){return!jo(t)&&i&&i.apply(void 0,[t].concat(a)),jo(t)})}}function ym(){return"showOpenFilePicker"in window}function wm(e){if(fr(e)){var r=Object.entries(e).filter(function(o){var t=Ur(o,2),n=t[0],a=t[1],c=!0;return Bl(n)||(console.warn('Skipped "'.concat(n,'" because it is not a valid MIME type. Check https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types for a list of valid MIME types.')),c=!1),(!Array.isArray(a)||!a.every(Hl))&&(console.warn('Skipped "'.concat(n,'" because an invalid file extension was provided.')),c=!1),c}).reduce(function(o,t){var n=Ur(t,2),a=n[0],c=n[1];return ka(ka({},o),{},Fl({},a,c))},{});return[{description:"Files",accept:r}]}return e}function km(e){if(fr(e))return Object.entries(e).reduce(function(r,o){var t=Ur(o,2),n=t[0],a=t[1];return[].concat(ya(r),[n],ya(a))},[]).filter(function(r){return Bl(r)||Hl(r)}).join(",")}function _m(e){return e instanceof DOMException&&(e.name==="AbortError"||e.code===e.ABORT_ERR)}function Cm(e){return e instanceof DOMException&&(e.name==="SecurityError"||e.code===e.SECURITY_ERR)}function Bl(e){return e==="audio/*"||e==="video/*"||e==="image/*"||e==="text/*"||e==="application/*"||/\w+\/[-+.\w]+/g.test(e)}function Hl(e){return/^.*\.[\w]+$/.test(e)}var Sm=["children"],Em=["open"],Rm=["refKey","role","onKeyDown","onFocus","onBlur","onClick","onDragEnter","onDragOver","onDragLeave","onDrop"],jm=["refKey","onChange","onClick"];function Dm(e){return Om(e)||Pm(e)||ql(e)||Tm()}function Tm(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
|
137
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Pm(e){if(typeof Symbol<"u"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Om(e){if(Array.isArray(e))return Bt(e)}function gt(e,r){return Am(e)||Im(e,r)||ql(e,r)||Nm()}function Nm(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
138
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function ql(e,r){if(e){if(typeof e=="string")return Bt(e,r);var o=Object.prototype.toString.call(e).slice(8,-1);if(o==="Object"&&e.constructor&&(o=e.constructor.name),o==="Map"||o==="Set")return Array.from(e);if(o==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o))return Bt(e,r)}}function Bt(e,r){(r==null||r>e.length)&&(r=e.length);for(var o=0,t=new Array(r);o<r;o++)t[o]=e[o];return t}function Im(e,r){var o=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(o!=null){var t=[],n=!0,a=!1,c,i;try{for(o=o.call(e);!(n=(c=o.next()).done)&&(t.push(c.value),!(r&&t.length===r));n=!0);}catch(s){a=!0,i=s}finally{try{!n&&o.return!=null&&o.return()}finally{if(a)throw i}}return t}}function Am(e){if(Array.isArray(e))return e}function Ea(e,r){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(e);r&&(t=t.filter(function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable})),o.push.apply(o,t)}return o}function we(e){for(var r=1;r<arguments.length;r++){var o=arguments[r]!=null?arguments[r]:{};r%2?Ea(Object(o),!0).forEach(function(t){Ht(e,t,o[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ea(Object(o)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))})}return e}function Ht(e,r,o){return r in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}function Do(e,r){if(e==null)return{};var o=Mm(e,r),t,n;if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(n=0;n<a.length;n++)t=a[n],!(r.indexOf(t)>=0)&&Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}function Mm(e,r){if(e==null)return{};var o={},t=Object.keys(e),n,a;for(a=0;a<t.length;a++)n=t[a],!(r.indexOf(n)>=0)&&(o[n]=e[n]);return o}var xn=O.forwardRef(function(e,r){var o=e.children,t=Do(e,Sm),n=Yl(t),a=n.open,c=Do(n,Em);return O.useImperativeHandle(r,function(){return{open:a}},[a]),O.createElement(O.Fragment,null,o(we(we({},c),{},{open:a})))});xn.displayName="Dropzone";var Ul={disabled:!1,getFilesFromEvent:Ug,maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!1,autoFocus:!1};xn.defaultProps=Ul;xn.propTypes={children:he.func,accept:he.objectOf(he.arrayOf(he.string)),multiple:he.bool,preventDropOnDocument:he.bool,noClick:he.bool,noKeyboard:he.bool,noDrag:he.bool,noDragEventsBubbling:he.bool,minSize:he.number,maxSize:he.number,maxFiles:he.number,disabled:he.bool,getFilesFromEvent:he.func,onFileDialogCancel:he.func,onFileDialogOpen:he.func,useFsAccessApi:he.bool,autoFocus:he.bool,onDragEnter:he.func,onDragLeave:he.func,onDragOver:he.func,onDrop:he.func,onDropAccepted:he.func,onDropRejected:he.func,onError:he.func,validator:he.func};var qt={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function Yl(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=we(we({},Ul),e),o=r.accept,t=r.disabled,n=r.getFilesFromEvent,a=r.maxSize,c=r.minSize,i=r.multiple,s=r.maxFiles,l=r.onDragEnter,f=r.onDragLeave,p=r.onDragOver,x=r.onDrop,v=r.onDropAccepted,_=r.onDropRejected,b=r.onFileDialogCancel,m=r.onFileDialogOpen,w=r.useFsAccessApi,h=r.autoFocus,k=r.preventDropOnDocument,S=r.noClick,D=r.noKeyboard,N=r.noDrag,C=r.noDragEventsBubbling,g=r.onError,y=r.validator,E=O.useMemo(function(){return km(o)},[o]),A=O.useMemo(function(){return wm(o)},[o]),I=O.useMemo(function(){return typeof m=="function"?m:Ra},[m]),L=O.useMemo(function(){return typeof b=="function"?b:Ra},[b]),P=O.useRef(null),H=O.useRef(null),M=O.useReducer(Lm,qt),T=gt(M,2),R=T[0],j=T[1],q=R.isFocused,V=R.isFileDialogActive,U=O.useRef(typeof window<"u"&&window.isSecureContext&&w&&ym()),z=function(){!U.current&&V&&setTimeout(function(){if(H.current){var W=H.current.files;W.length||(j({type:"closeDialog"}),L())}},300)};O.useEffect(function(){return window.addEventListener("focus",z,!1),function(){window.removeEventListener("focus",z,!1)}},[H,V,L,U]);var Y=O.useRef([]),ae=function(W){P.current&&P.current.contains(W.target)||(W.preventDefault(),Y.current=[])};O.useEffect(function(){return k&&(document.addEventListener("dragover",Sa,!1),document.addEventListener("drop",ae,!1)),function(){k&&(document.removeEventListener("dragover",Sa),document.removeEventListener("drop",ae))}},[P,k]),O.useEffect(function(){return!t&&h&&P.current&&P.current.focus(),function(){}},[P,h,t]);var ce=O.useCallback(function(F){g?g(F):console.error(F)},[g]),$=O.useCallback(function(F){F.preventDefault(),F.persist(),se(F),Y.current=[].concat(Dm(Y.current),[F.target]),io(F)&&Promise.resolve(n(F)).then(function(W){if(!(jo(F)&&!C)){var te=W.length,le=te>0&&mm({files:W,accept:E,minSize:c,maxSize:a,multiple:i,maxFiles:s,validator:y}),xe=te>0&&!le;j({isDragAccept:le,isDragReject:xe,isDragActive:!0,type:"setDraggedFiles"}),l&&l(F)}}).catch(function(W){return ce(W)})},[n,l,ce,C,E,c,a,i,s,y]),K=O.useCallback(function(F){F.preventDefault(),F.persist(),se(F);var W=io(F);if(W&&F.dataTransfer)try{F.dataTransfer.dropEffect="copy"}catch{}return W&&p&&p(F),!1},[p,C]),ee=O.useCallback(function(F){F.preventDefault(),F.persist(),se(F);var W=Y.current.filter(function(le){return P.current&&P.current.contains(le)}),te=W.indexOf(F.target);te!==-1&&W.splice(te,1),Y.current=W,!(W.length>0)&&(j({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),io(F)&&f&&f(F))},[P,f,C]),Z=O.useCallback(function(F,W){var te=[],le=[];F.forEach(function(xe){var Te=Vl(xe,E),Ae=gt(Te,2),Pe=Ae[0],Re=Ae[1],Ge=Wl(xe,c,a),sr=gt(Ge,2),Yo=sr[0],Ko=sr[1],Go=y?y(xe):null;if(Pe&&Yo&&!Go)te.push(xe);else{var Xo=[Re,Ko];Go&&(Xo=Xo.concat(Go)),le.push({file:xe,errors:Xo.filter(function(Ed){return Ed})})}}),(!i&&te.length>1||i&&s>=1&&te.length>s)&&(te.forEach(function(xe){le.push({file:xe,errors:[gm]})}),te.splice(0)),j({acceptedFiles:te,fileRejections:le,isDragReject:le.length>0,type:"setFiles"}),x&&x(te,le,W),le.length>0&&_&&_(le,W),te.length>0&&v&&v(te,W)},[j,i,E,c,a,s,x,v,_,y]),B=O.useCallback(function(F){F.preventDefault(),F.persist(),se(F),Y.current=[],io(F)&&Promise.resolve(n(F)).then(function(W){jo(F)&&!C||Z(W,F)}).catch(function(W){return ce(W)}),j({type:"reset"})},[n,Z,ce,C]),re=O.useCallback(function(){if(U.current){j({type:"openDialog"}),I();var F={multiple:i,types:A};window.showOpenFilePicker(F).then(function(W){return n(W)}).then(function(W){Z(W,null),j({type:"closeDialog"})}).catch(function(W){_m(W)?(L(W),j({type:"closeDialog"})):Cm(W)?(U.current=!1,H.current?(H.current.value=null,H.current.click()):ce(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no <input> was provided."))):ce(W)});return}H.current&&(j({type:"openDialog"}),I(),H.current.value=null,H.current.click())},[j,I,L,w,Z,ce,A,i]),be=O.useCallback(function(F){!P.current||!P.current.isEqualNode(F.target)||(F.key===" "||F.key==="Enter"||F.keyCode===32||F.keyCode===13)&&(F.preventDefault(),re())},[P,re]),ue=O.useCallback(function(){j({type:"focus"})},[]),pe=O.useCallback(function(){j({type:"blur"})},[]),J=O.useCallback(function(){S||(vm()?setTimeout(re,0):re())},[S,re]),de=function(W){return t?null:W},Q=function(W){return D?null:de(W)},ie=function(W){return N?null:de(W)},se=function(W){C&&W.stopPropagation()},ye=O.useMemo(function(){return function(){var F=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},W=F.refKey,te=W===void 0?"ref":W,le=F.role,xe=F.onKeyDown,Te=F.onFocus,Ae=F.onBlur,Pe=F.onClick,Re=F.onDragEnter,Ge=F.onDragOver,sr=F.onDragLeave,Yo=F.onDrop,Ko=Do(F,Rm);return we(we(Ht({onKeyDown:Q(We(xe,be)),onFocus:Q(We(Te,ue)),onBlur:Q(We(Ae,pe)),onClick:de(We(Pe,J)),onDragEnter:ie(We(Re,$)),onDragOver:ie(We(Ge,K)),onDragLeave:ie(We(sr,ee)),onDrop:ie(We(Yo,B)),role:typeof le=="string"&&le!==""?le:"presentation"},te,P),!t&&!D?{tabIndex:0}:{}),Ko)}},[P,be,ue,pe,J,$,K,ee,B,D,N,t]),me=O.useCallback(function(F){F.stopPropagation()},[]),Ee=O.useMemo(function(){return function(){var F=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},W=F.refKey,te=W===void 0?"ref":W,le=F.onChange,xe=F.onClick,Te=Do(F,jm),Ae=Ht({accept:E,multiple:i,type:"file",style:{border:0,clip:"rect(0, 0, 0, 0)",clipPath:"inset(50%)",height:"1px",margin:"0 -1px -1px 0",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap"},onChange:de(We(le,B)),onClick:de(We(xe,me)),tabIndex:-1},te,H);return we(we({},Ae),Te)}},[H,o,i,B,t]);return we(we({},R),{},{isFocused:q&&!t,getRootProps:ye,getInputProps:Ee,rootRef:P,inputRef:H,open:de(re)})}function Lm(e,r){switch(r.type){case"focus":return we(we({},e),{},{isFocused:!0});case"blur":return we(we({},e),{},{isFocused:!1});case"openDialog":return we(we({},qt),{},{isFileDialogActive:!0});case"closeDialog":return we(we({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return we(we({},e),{},{isDragActive:r.isDragActive,isDragAccept:r.isDragAccept,isDragReject:r.isDragReject});case"setFiles":return we(we({},e),{},{acceptedFiles:r.acceptedFiles,fileRejections:r.fileRejections,isDragReject:r.isDragReject});case"reset":return we({},qt);default:return e}}function Ra(){}function zm({onSuccess:e,setDataError:r,...o}){const[t,n]=O.useState(!1),{t:a}=ir(),[c,i]=O.useState(!1);O.useEffect(()=>{const x=()=>{i(window.innerWidth<=480)};return x(),window.addEventListener("resize",x),()=>window.removeEventListener("resize",x)},[]);const{getRootProps:s,getInputProps:l,isDragActive:f,open:p}=Yl({noClick:!0,noKeyboard:!0,maxFiles:1,accept:{"application/vnd.ms-excel":[".xls"],"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":[".xlsx"],"text/csv":[".csv"]},onDropRejected:x=>{n(!1);const v=x[0].errors[0].message;r(v)},onDropAccepted:async([x])=>{n(!0),e(x),n(!1)}});return d.jsxs(Me,{...s(),className:`w-full flex justify-center items-center flex-col bg-gray-50 border-2 border-dashed rounded-lg cursor-pointer transition-all duration-200 hover:bg-gray-100 ${c?"min-h-[180px] py-8 px-6":"min-h-[240px] py-10 px-8"} ${f?"border-blue-500 bg-blue-50":"border-gray-300 hover:border-gray-400"}`,onClick:p,children:[d.jsx("input",{...l()}),d.jsx(Me,{className:`mb-3 p-3 rounded-full bg-white transition-all duration-200 ${f?"text-blue-600 shadow-md":"text-gray-400"}`,children:d.jsx(Ts,{size:c?28:32})}),f?d.jsx(De,{className:`${c?"text-sm":"text-base"} font-medium text-gray-700`,children:a("Drop your file here")}):t?d.jsx(De,{className:`${c?"text-sm":"text-base"} font-medium text-gray-700`,children:a("Loading...")}):d.jsx(De,{className:`${c?"text-sm":"text-base"} font-medium text-gray-700`,children:a("Drop a file or click to browse")})]})}function Fm(e=[]){if(!e)return[];const{t:r}=ir(),o=r("Expected Column"),t=r("Required");return O.useMemo(()=>e.map(a=>({[o]:a?.description?{raw:a.label,content:d.jsx("div",{children:d.jsx(Al,{title:a?.description,children:a.label})})}:a.label,[t]:{raw:a?.validators?.some(c=>c.type==="required")?1:0,content:a?.validators?.some(c=>c.type==="required")?d.jsx(gr,{}):d.jsx(d.Fragment,{})}})),[e])}function $m({columns:e,skipHeaderRowSelection:r,onSuccess:o,showDownloadTemplateButton:t,setDataError:n}){const a=Fm(e),c=d.jsx(zm,{onSuccess:o,skipHeaderRowSelection:r,setDataError:n});t=t??!0;const{t:i}=ir();function s(){const f=(e||[]).map(x=>x.label).join(","),p=document.createElement("a");p.href=URL.createObjectURL(new Blob([f],{type:"text/csv"})),p.download="template.csv",p.click()}return d.jsxs("div",{className:ne("flex flex-col w-full max-w-[560px] mx-auto p-8","sm:px-4 sm:py-6","max-[480px]:p-4"),children:[d.jsxs(Me,{className:"mb-6 text-center",children:[d.jsx(De,{className:"text-2xl font-semibold text-gray-900 mb-2",children:i("Upload a CSV file")}),d.jsx(De,{className:"text-sm text-gray-600",children:e?`${i("Required fields")}: ${e.filter(l=>l.validators?.some(f=>f.type==="required")).map(l=>l.label).join(", ")||i("None")}`:i("Make sure file includes contact name and phone number")})]}),d.jsx(Me,{className:"mb-4",children:c}),d.jsxs(Xr,{className:"items-center justify-center flex-wrap gap-2 text-sm",children:[d.jsx("span",{className:"text-gray-400",children:"or"}),t&&d.jsx("a",{className:"inline-flex items-center gap-1.5 text-blue-600 hover:text-blue-700 transition-colors cursor-pointer",onClick:s,children:d.jsx("span",{className:"hover:underline",children:i("Download a sample CSV file")})})]}),a.length>0&&d.jsxs(Me,{className:"mt-6 p-4 bg-white rounded-lg border border-gray-200 hidden md:block",children:[d.jsx(De,{className:"text-sm font-semibold text-gray-700 mb-3",children:i("Expected Columns")}),d.jsx(Me,{className:"max-h-[120px] overflow-auto",children:d.jsx(zg,{fixHeader:!0,data:a,background:"transparent",columnWidths:["65%","35%"],columnAlignments:["","center"]})})]})]})}const Vm=()=>typeof process<"u"&&process.env||typeof process<"u"&&process.env?"production":"development",ja={development:"https://abhishekray07.ngrok.io",production:"https://api.importcsv.com"},Wm=()=>{const e=Vm();return ja[e]||ja.development},Bm={apiBaseUrl:Wm()};var mt={},Er={},Le={},Da;function Kl(){if(Da)return Le;Da=1,Object.defineProperty(Le,"__esModule",{value:!0}),Le.FrameContextConsumer=Le.FrameContextProvider=Le.useFrame=Le.FrameContext=void 0;var e=O,r=o(e);function o(s){return s&&s.__esModule?s:{default:s}}var t=void 0,n=void 0;typeof document<"u"&&(t=document),typeof window<"u"&&(n=window);var a=Le.FrameContext=r.default.createContext({document:t,window:n});Le.useFrame=function(){return r.default.useContext(a)};var c=a.Provider,i=a.Consumer;return Le.FrameContextProvider=c,Le.FrameContextConsumer=i,Le}var lo={},Ta;function Hm(){if(Ta)return lo;Ta=1,Object.defineProperty(lo,"__esModule",{value:!0});var e=(function(){function l(f,p){for(var x=0;x<p.length;x++){var v=p[x];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,p,x){return p&&l(f.prototype,p),x&&l(f,x),f}})(),r=O;n(r);var o=mn(),t=n(o);function n(l){return l&&l.__esModule?l:{default:l}}function a(l,f){if(!(l instanceof f))throw new TypeError("Cannot call a class as a function")}function c(l,f){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:l}function i(l,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);l.prototype=Object.create(f&&f.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(l,f):l.__proto__=f)}var s=(function(l){i(f,l);function f(){return a(this,f),c(this,(f.__proto__||Object.getPrototypeOf(f)).apply(this,arguments))}return e(f,[{key:"componentDidMount",value:function(){this.props.contentDidMount()}},{key:"componentDidUpdate",value:function(){this.props.contentDidUpdate()}},{key:"render",value:function(){return r.Children.only(this.props.children)}}]),f})(r.Component);return s.propTypes={children:t.default.element.isRequired,contentDidMount:t.default.func.isRequired,contentDidUpdate:t.default.func.isRequired},lo.default=s,lo}var Pa;function qm(){if(Pa)return Er;Pa=1,Object.defineProperty(Er,"__esModule",{value:!0}),Er.Frame=void 0;var e=Object.assign||function(m){for(var w=1;w<arguments.length;w++){var h=arguments[w];for(var k in h)Object.prototype.hasOwnProperty.call(h,k)&&(m[k]=h[k])}return m},r=(function(){function m(w,h){for(var k=0;k<h.length;k++){var S=h[k];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(w,S.key,S)}}return function(w,h,k){return h&&m(w.prototype,h),k&&m(w,k),w}})(),o=O,t=p(o),n=To,a=p(n),c=mn(),i=p(c),s=Kl(),l=Hm(),f=p(l);function p(m){return m&&m.__esModule?m:{default:m}}function x(m,w){if(!(m instanceof w))throw new TypeError("Cannot call a class as a function")}function v(m,w){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return w&&(typeof w=="object"||typeof w=="function")?w:m}function _(m,w){if(typeof w!="function"&&w!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof w);m.prototype=Object.create(w&&w.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),w&&(Object.setPrototypeOf?Object.setPrototypeOf(m,w):m.__proto__=w)}var b=Er.Frame=(function(m){_(w,m);function w(h,k){x(this,w);var S=v(this,(w.__proto__||Object.getPrototypeOf(w)).call(this,h,k));return S.setRef=function(D){S.nodeRef.current=D;var N=S.props.forwardedRef;typeof N=="function"?N(D):N&&(N.current=D)},S.handleLoad=function(){clearInterval(S.loadCheck),S.state.iframeLoaded||S.setState({iframeLoaded:!0})},S.loadCheck=function(){return setInterval(function(){S.handleLoad()},500)},S._isMounted=!1,S.nodeRef=t.default.createRef(),S.state={iframeLoaded:!1},S}return r(w,[{key:"componentDidMount",value:function(){this._isMounted=!0;var k=this.getDoc();k&&this.nodeRef.current.contentWindow.addEventListener("DOMContentLoaded",this.handleLoad)}},{key:"componentWillUnmount",value:function(){this._isMounted=!1,this.nodeRef.current.removeEventListener("DOMContentLoaded",this.handleLoad)}},{key:"getDoc",value:function(){return this.nodeRef.current?this.nodeRef.current.contentDocument:null}},{key:"getMountTarget",value:function(){var k=this.getDoc();return this.props.mountTarget?k.querySelector(this.props.mountTarget):k.body.children[0]}},{key:"renderFrameContents",value:function(){if(!this._isMounted)return null;var k=this.getDoc();if(!k)return null;var S=this.props.contentDidMount,D=this.props.contentDidUpdate,N=k.defaultView||k.parentView,C=t.default.createElement(f.default,{contentDidMount:S,contentDidUpdate:D},t.default.createElement(s.FrameContextProvider,{value:{document:k,window:N}},t.default.createElement("div",{className:"frame-content"},this.props.children))),g=this.getMountTarget();return g?[a.default.createPortal(this.props.head,this.getDoc().head),a.default.createPortal(C,g)]:null}},{key:"render",value:function(){var k=e({},this.props,{srcDoc:this.props.initialContent,children:void 0});return delete k.head,delete k.initialContent,delete k.mountTarget,delete k.contentDidMount,delete k.contentDidUpdate,delete k.forwardedRef,t.default.createElement("iframe",e({},k,{ref:this.setRef,onLoad:this.handleLoad}),this.state.iframeLoaded&&this.renderFrameContents())}}]),w})(o.Component);return b.propTypes={style:i.default.object,head:i.default.node,initialContent:i.default.string,mountTarget:i.default.string,contentDidMount:i.default.func,contentDidUpdate:i.default.func,children:i.default.oneOfType([i.default.element,i.default.arrayOf(i.default.element)])},b.defaultProps={style:{},head:null,children:void 0,mountTarget:void 0,contentDidMount:function(){},contentDidUpdate:function(){},initialContent:'<!DOCTYPE html><html><head></head><body><div class="frame-root"></div></body></html>'},Er.default=t.default.forwardRef(function(m,w){return t.default.createElement(b,e({},m,{forwardedRef:w}))}),Er}var Oa;function Um(){return Oa||(Oa=1,(function(e){Object.defineProperty(e,"__esModule",{value:!0});var r=qm();Object.defineProperty(e,"default",{enumerable:!0,get:function(){return t(r).default}});var o=Kl();Object.defineProperty(e,"FrameContext",{enumerable:!0,get:function(){return o.FrameContext}}),Object.defineProperty(e,"FrameContextConsumer",{enumerable:!0,get:function(){return o.FrameContextConsumer}}),Object.defineProperty(e,"useFrame",{enumerable:!0,get:function(){return o.useFrame}});function t(n){return n&&n.__esModule?n:{default:n}}})(mt)),mt}var Gl=Um();const Ym=Kr(Gl),Km=`@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap";@import"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";.Errors-module-module__errors___fyHDX{color:var(--color-text-error);margin:var(--m-xxs) 0}.Errors-module-module__errors___fyHDX p{margin:0;display:flex;align-items:center;gap:var(--m-xxs);text-align:left}.Errors-module-module__centered___RHKZi{display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%}.Validation-module-module__baseContainer___-0AsU,.Validation-module-module__flexContainer___cBods{width:100%;max-width:100%;padding:1.5rem}@media (max-width: 768px){.Validation-module-module__baseContainer___-0AsU,.Validation-module-module__flexContainer___cBods{padding:1rem}}@media (max-width: 640px){.Validation-module-module__baseContainer___-0AsU,.Validation-module-module__flexContainer___cBods{padding:.75rem}}.Validation-module-module__flexContainer___cBods{display:flex;flex-direction:column;min-height:0;min-width:0}.Validation-module-module__scrollableContent___d0ytT{flex:1;display:flex;flex-direction:column;overflow:visible;max-width:100%;min-width:0}.Validation-module-module__tableContainer___jRikO{flex:1;overflow-x:auto;overflow-y:auto;max-width:100%;-webkit-overflow-scrolling:touch}.Validation-module-module__tableContainer___jRikO table{min-width:100%;width:-moz-max-content;width:max-content}.Validation-module-module__headerSection___drcpg,.Validation-module-module__header___ocGI2{padding:1rem;border-bottom:1px solid #e5e7eb}.Validation-module-module__headerSection___drcpg h2,.Validation-module-module__header___ocGI2 h2{font-size:1.25rem;font-weight:600;color:#111827;margin:0 0 .5rem}.Validation-module-module__headerSection___drcpg p,.Validation-module-module__header___ocGI2 p{font-size:.875rem;color:#6b7280;margin:0}.Validation-module-module__toolbar___-DCj6{padding:.75rem 1rem;background:#fff;border:1px solid #e5e7eb;border-radius:.5rem;margin-bottom:1rem;box-shadow:0 1px 2px #0000000d}.Validation-module-module__validationContainer___jrlPR{display:flex;flex-direction:column;width:100%;min-height:600px;max-height:calc(100vh - 2rem);height:calc(100vh - 2rem);max-width:100%;box-sizing:border-box;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;margin:1rem 0}.Validation-module-module__header___ocGI2{flex-shrink:0;padding:1.5rem 1.5rem 0}@media (max-width: 640px){.Validation-module-module__header___ocGI2{padding:1rem 1rem 0}.Validation-module-module__header___ocGI2 h2{font-size:1.125rem}.Validation-module-module__header___ocGI2 p{font-size:.8125rem}}.Validation-module-module__toolbarSection___Q0YdW{flex-shrink:0;padding:1rem 1.5rem 0;background:transparent}@media (max-width: 640px){.Validation-module-module__toolbarSection___Q0YdW{padding:.75rem 1rem 0}}.Validation-module-module__scrollableSection___nwC-B{flex:1 1 auto;min-width:0;overflow:auto;min-height:200px;margin:1rem 1.5rem 0;background:#fff;border:1px solid #e5e7eb;border-radius:.5rem;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;-webkit-overflow-scrolling:touch}.Validation-module-module__scrollableSection___nwC-B>table{border-collapse:collapse}.Validation-module-module__scrollableSection___nwC-B>table thead{position:sticky;top:0;z-index:10}.Validation-module-module__scrollableSection___nwC-B>table thead th{background:#f9fafb;border-bottom:2px solid #e5e7eb}.Validation-module-module__scrollableSection___nwC-B>table th:first-child,.Validation-module-module__scrollableSection___nwC-B>table td:first-child{position:sticky;left:0;z-index:5}.Validation-module-module__scrollableSection___nwC-B>table thead th:first-child{z-index:11}@media (max-width: 640px){.Validation-module-module__scrollableSection___nwC-B{margin:.75rem}}.Validation-module-module__validationContent___hn2Dz{padding:1rem 0;width:100%;max-width:100%;overflow:visible}.Validation-module-module__toolbar___-DCj6{background:transparent;border:1px solid #e5e7eb;border-radius:.5rem;margin-bottom:0;margin-top:.5rem;box-shadow:0 1px 2px #0000000d}@media (max-width: 640px){.Validation-module-module__toolbar___-DCj6{padding:.75rem}.Validation-module-module__toolbar___-DCj6>div{flex-direction:column;gap:.75rem;align-items:stretch}}.Validation-module-module__errorBadge___yeHS0{display:inline-flex;align-items:center;padding:.25rem .625rem;background-color:#fee2e2;border:1px solid #fca5a5;border-radius:.375rem;font-size:.875rem;font-weight:600;color:#dc2626;animation:Validation-module-module__pulse___d-MKR 2s infinite}@keyframes Validation-module-module__pulse___d-MKR{0%,to{opacity:1}50%{opacity:.85}}.Validation-module-module__rowCount___h-OSk{font-size:.75rem;color:#9ca3af;font-weight:400}.Validation-module-module__tabFilter___DV34i{display:inline-flex;align-items:center;background:#f3f4f6;padding:.125rem;border-radius:2rem}@media (max-width: 640px){.Validation-module-module__tabFilter___DV34i{width:100%;justify-content:space-between}}.Validation-module-module__tab___JPIkM{position:relative;display:inline-flex;align-items:center;gap:.375rem;padding:.5rem 1.25rem;border:none;background:transparent;color:#6b7280;font-size:.875rem;font-weight:500;border-radius:1.75rem;cursor:pointer;transition:all .2s ease;outline:none;margin:0}@media (max-width: 640px){.Validation-module-module__tab___JPIkM{padding:.5rem .75rem;font-size:.8125rem;flex:1;justify-content:center}}.Validation-module-module__tab___JPIkM:hover:not(.Validation-module-module__active___rLvN7){color:#374151}.Validation-module-module__tab___JPIkM:focus-visible{box-shadow:0 0 0 2px #3b82f6;z-index:1}.Validation-module-module__tab___JPIkM.Validation-module-module__active___rLvN7{background:#4b5563;color:#fff;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f}.Validation-module-module__tab___JPIkM.Validation-module-module__active___rLvN7 .Validation-module-module__count___lb09d{background:#fff3;color:#fff}.Validation-module-module__tab___JPIkM .Validation-module-module__count___lb09d{display:inline-flex;align-items:center;justify-content:center;min-width:1.5rem;padding:.125rem .375rem;height:1.25rem;background:transparent;color:inherit;font-size:.875rem;font-weight:600;transition:all .2s ease}.Validation-module-module__tab___JPIkM.Validation-module-module__errorTab___ebQQd.Validation-module-module__active___rLvN7{background:#dc2626}.Validation-module-module__tab___JPIkM.Validation-module-module__errorTab___ebQQd.Validation-module-module__active___rLvN7 .Validation-module-module__count___lb09d{background:#fff3;color:#fff}.Validation-module-module__tab___JPIkM.Validation-module-module__errorTab___ebQQd:not(.Validation-module-module__active___rLvN7) .Validation-module-module__count___lb09d{color:#dc2626}.Validation-module-module__spreadsheetContainer___VOHHJ{width:100%;overflow-x:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;background:#fff;border:1px solid #e5e7eb;border-radius:.5rem;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f}.Validation-module-module__spreadsheetWrapper___jE9rZ{position:relative}.Validation-module-module__spreadsheetTable___OzR-h{width:-moz-max-content;width:max-content;min-width:800px;border-collapse:separate;border-spacing:0;font-size:.875rem}.Validation-module-module__spreadsheetHeader___CcIvW{position:sticky;top:0;z-index:10;background:#f9fafb}.Validation-module-module__spreadsheetHeader___CcIvW tr th{background:#f9fafb;border-bottom:2px solid #e5e7eb;border-right:1px solid #e5e7eb;padding:0;text-align:left;font-weight:600;color:#111827;position:relative}.Validation-module-module__spreadsheetHeader___CcIvW tr th:last-child{border-right:none}.Validation-module-module__rowNumberHeader___hBB39{width:60px;min-width:60px;max-width:60px;text-align:center!important;background:#f9fafb!important;position:sticky;left:0;z-index:11;font-size:.75rem;padding:.75rem 0!important}.Validation-module-module__columnHeader___Yjc-8{width:auto;min-width:100px}.Validation-module-module__columnHeader___Yjc-8 .Validation-module-module__headerContent___soxS5{padding:.75rem 1rem;font-size:.875rem;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.Validation-module-module__spreadsheetBody___ASDqW .Validation-module-module__dataRow___fAJUe:hover .Validation-module-module__dataCell___Kqej5{background:#f3f4f6}.Validation-module-module__spreadsheetBody___ASDqW .Validation-module-module__dataRow___fAJUe:hover .Validation-module-module__rowNumber___gW7gl{background:#f0f2f5}.Validation-module-module__spreadsheetBody___ASDqW .Validation-module-module__dataRow___fAJUe.Validation-module-module__errorRow___E5crc .Validation-module-module__dataCell___Kqej5{background:#fff1f1}.Validation-module-module__rowNumber___gW7gl{width:60px;min-width:60px;max-width:60px;background:#f9fafb;border-right:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb;text-align:center;font-size:.75rem;font-weight:500;color:#6b7280;padding:.75rem 0;position:sticky;left:0;z-index:1}.Validation-module-module__dataCell___Kqej5{width:auto;min-width:100px;border-right:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb;padding:0;background:#fff;position:relative;transition:background-color .15s ease;white-space:nowrap}.Validation-module-module__dataCell___Kqej5:last-child{border-right:none}.Validation-module-module__dataCell___Kqej5.Validation-module-module__errorCell___0EbsM{background:#fee2e2}.Validation-module-module__dataCell___Kqej5.Validation-module-module__errorCell___0EbsM .Validation-module-module__cellInput___LsyOo{color:#111827}.Validation-module-module__cellContent___ubxVt{position:relative;width:100%;min-height:44px;display:flex;align-items:center}.Validation-module-module__cellInput___LsyOo{width:100%;height:100%;min-height:40px;border:none;background:transparent;padding:.625rem 1.75rem .625rem .75rem;font-size:.875rem;font-family:inherit;color:#111827;outline:none;transition:box-shadow .15s ease;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.Validation-module-module__cellInput___LsyOo:focus{box-shadow:inset 0 0 0 2px #3b82f6;z-index:2;position:relative}.Validation-module-module__cellInput___LsyOo:hover{background:#00000003}.Validation-module-module__errorIndicator___2KEsf{position:absolute;right:.5rem;top:50%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;cursor:help;z-index:3}.Validation-module-module__errorIndicator___2KEsf svg{filter:drop-shadow(0 1px 2px rgba(0,0,0,.1))}.Validation-module-module__emptyState___g41in{padding:3rem;text-align:center;color:#6b7280}.Validation-module-module__content___FgF43{display:flex;flex-direction:column;height:100%;width:100%}.Validation-module-module__tableWrapper___YcN6o{flex:1;overflow:auto;margin-bottom:1rem;border-radius:8px;box-shadow:0 2px 4px #0000001a}.Validation-module-module__actions___GIqEx{display:flex;justify-content:space-between;align-items:center;padding:1rem 0}.Validation-module-module__errorContainer___dKOJX{flex:1;margin:0 1rem}.Validation-module-module__errorRow___E5crc td{background-color:#ff000008}.Validation-module-module__editableCellContainer___7yPTv{position:relative;width:100%}.Validation-module-module__simpleInput___LhUg-{width:100%;padding:.25rem;border-radius:4px;font-size:.875rem;transition:all .2s}.Validation-module-module__simpleInput___LhUg-:focus{border-color:#3182ce;box-shadow:0 0 0 1px #3182ce}.Validation-module-module__errorInput___ZWDrT{border-color:#e53e3e}.Validation-module-module__errorInput___ZWDrT:focus{border-color:#e53e3e;box-shadow:0 0 0 1px #e53e3e}.Validation-module-module__errorIcon___NMpp3{position:absolute;top:50%;right:8px;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background-color:#e53e3e;color:#fff;font-size:12px;display:flex;align-items:center;justify-content:center;cursor:help}.Validation-module-module__validationTable___Wh1wk{width:100%;border-collapse:collapse}.Validation-module-module__validationTable___Wh1wk th{background-color:#f1f5f9;text-transform:none;font-weight:600;color:#334155;padding:12px 16px;text-align:left;border-bottom:1px solid #e2e8f0}.Validation-module-module__validationTable___Wh1wk th:first-child{border-top-left-radius:8px}.Validation-module-module__validationTable___Wh1wk th:last-child{border-top-right-radius:8px}.Validation-module-module__validationTable___Wh1wk td{padding:12px 16px;border-bottom:1px solid #e2e8f0;color:#334155}.Validation-module-module__validationTable___Wh1wk tr:last-child td:first-child{border-bottom-left-radius:8px}.Validation-module-module__validationTable___Wh1wk tr:last-child td:last-child{border-bottom-right-radius:8px}.Validation-module-module__validationTable___Wh1wk tr:hover{background-color:#f8fafc}.Validation-module-module__validationFilters___XqhsC{margin-bottom:1rem}.Validation-module-module__errorSummary___SYeAr{padding:.75rem 1rem;background:#fef2f2;border:1px solid #fecaca;border-radius:.375rem;margin-bottom:1rem}.Validation-module-module__tableContainer___jRikO{flex:1;overflow:auto;border:1px solid #e2e8f0;border-radius:.5rem;background:#fff}.Validation-module-module__toolbarActions___12qlG{display:flex;gap:.75rem;align-items:center}@media (max-width: 640px){.Validation-module-module__toolbarActions___12qlG{width:100%}.Validation-module-module__toolbarActions___12qlG button{flex:1;justify-content:center}}.Validation-module-module__footerSection___pJMfU{flex-shrink:0;display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-top:1px solid #e5e7eb;background:transparent}.Validation-module-module__tableWidth___MNjwY{width:-moz-max-content;width:max-content;min-width:100%}.Default-module-module__table___44Sxu{display:flex;flex-direction:column;flex:1 1 auto;width:100%;border-collapse:collapse;border-spacing:0;border-radius:var(--border-radius-2);outline:1px solid var(--color-border);table-layout:fixed;overflow:hidden}@media (max-width: 768px){.Default-module-module__table___44Sxu{font-size:14px}}@media (max-width: 480px){.Default-module-module__table___44Sxu{font-size:12px;min-width:320px}}.Default-module-module__table___44Sxu .Default-module-module__thead___QhWkw{display:table-header-group}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy{display:block;overflow:auto;width:100%}.Default-module-module__table___44Sxu .Default-module-module__tr___esZOa{display:flex;width:100%;overflow:hidden;flex-wrap:nowrap}.Default-module-module__table___44Sxu .Default-module-module__td___iAMlt{display:inline-flex;align-items:center;height:44px;flex-shrink:0}@media (max-width: 480px){.Default-module-module__table___44Sxu .Default-module-module__td___iAMlt{height:36px;padding-left:var(--m-xxs)!important;padding-right:var(--m-xxs)!important}}.Default-module-module__table___44Sxu .Default-module-module__caption___VYeqs{display:table-caption;border-bottom:1px solid var(--color-border);background-color:var(--color-background-modal);padding:0 var(--m-s);border-radius:var(--border-radius-2) var(--border-radius-2) 0 0}.Default-module-module__table___44Sxu .Default-module-module__thead___QhWkw .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt{font-weight:400;white-space:nowrap;padding:var(--m-xxxs) var(--m-s);border-bottom:1px solid var(--color-border);color:var(--color-text-secondary)}.Default-module-module__table___44Sxu .Default-module-module__thead___QhWkw .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt:first-of-type{border-radius:var(--border-radius-2) 0 0 0}.Default-module-module__table___44Sxu .Default-module-module__thead___QhWkw .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt:last-child{border-radius:0 var(--border-radius-2) 0 0}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt{vertical-align:middle;padding:var(--m-xxxs) var(--m-s);font-weight:400}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt>span,.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt>small{text-overflow:ellipsis;white-space:nowrap;display:block;overflow:hidden}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt.Default-module-module__highlight___qpgKE{font-weight:500}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt.Default-module-module__element___DzyB-{padding:0 var(--m-s)}@media (max-width: 480px){.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt.Default-module-module__element___DzyB-{padding:0 var(--m-xxs)}}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:hover{box-shadow:0 0 0 2px var(--color-border);position:relative}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:last-child{border-radius:0 0 var(--border-radius-2) var(--border-radius-2)}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:last-child .Default-module-module__td___iAMlt{border-bottom-color:transparent}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:last-child .Default-module-module__td___iAMlt:first-of-type{border-radius:0 0 0 var(--border-radius-2)}.Default-module-module__table___44Sxu .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:last-child .Default-module-module__td___iAMlt:last-child{border-radius:0 0 var(--border-radius-2) 0}.Default-module-module__table___44Sxu.Default-module-module__zebra___p0PyM{background-color:var(--color-background-modal)}.Default-module-module__table___44Sxu.Default-module-module__zebra___p0PyM .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:nth-child(odd) .Default-module-module__td___iAMlt{background-color:var(--color-background)}.Default-module-module__table___44Sxu.Default-module-module__dark___TYSeO{background-color:var(--color-background)}.Default-module-module__table___44Sxu.Default-module-module__dark___TYSeO .Default-module-module__thead___QhWkw .Default-module-module__tr___esZOa .Default-module-module__td___iAMlt,.Default-module-module__table___44Sxu.Default-module-module__light___uGaq4,.Default-module-module__table___44Sxu.Default-module-module__transparent___rzqM5 .Default-module-module__thead___QhWkw{background-color:var(--color-background-modal)}.Default-module-module__table___44Sxu.Default-module-module__transparent___rzqM5 .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:hover,.Default-module-module__table___44Sxu.Default-module-module__dark___TYSeO .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:hover,.Default-module-module__table___44Sxu.Default-module-module__light___uGaq4 .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:hover{box-shadow:none;position:static}.Default-module-module__table___44Sxu.Default-module-module__dark___TYSeO .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:first-of-type .Default-module-module__td___iAMlt,.Default-module-module__table___44Sxu.Default-module-module__light___uGaq4 .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:first-of-type .Default-module-module__td___iAMlt{padding-top:var(--m-s);height:calc(44px + var(--m-s) - var(--m-xxxs))}.Default-module-module__table___44Sxu.Default-module-module__dark___TYSeO .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:last-of-type .Default-module-module__td___iAMlt,.Default-module-module__table___44Sxu.Default-module-module__light___uGaq4 .Default-module-module__tbody___8S-zy .Default-module-module__tr___esZOa:last-of-type .Default-module-module__td___iAMlt{padding-bottom:var(--m-s);height:calc(44px + var(--m-s) - var(--m-xxxs))}.Default-module-module__emptyMsg___HmPC-{display:flex;justify-content:center;align-items:center;margin-top:15vh;text-align:center}.Tooltip-module-module__tooltip___wRW1H{display:inline-flex;align-items:center;gap:var(--m-xs)}.Tooltip-module-module__tooltip___wRW1H .Tooltip-module-module__icon___8Cb-b{position:relative;display:block;cursor:pointer}.Tooltip-module-module__tooltip___wRW1H.Tooltip-module-module__multiline___E-a-0 .Tooltip-module-module__message___dXk82{width:260px;white-space:normal}.Tooltip-module-module__message___dXk82{position:absolute;transform:translate(-50%);background-color:var(--color-background-modal);z-index:3;padding:var(--m-xxs) var(--m-xs);border-radius:var(--border-radius);margin-top:var(--m-xs);box-shadow:0 0 0 1px var(--color-border),0 5px 15px #0003;max-width:300px}.Tooltip-module-module__message___dXk82:after,.Tooltip-module-module__message___dXk82:before{position:absolute;top:calc(var(--m-xxxs) * 1.732 * -1);left:50%;border-left:var(--m-xxxs) solid transparent;border-right:var(--m-xxxs) solid transparent;border-bottom:calc(var(--m-xxxs) * 1.732) solid var(--color-border);content:"";font-size:0;line-height:0;width:0;transform:translate(-50%)}.Tooltip-module-module__message___dXk82:after{top:calc(var(--m-xxxs) * 1.732 * -1 + 2px);border-bottom:calc(var(--m-xxxs) * 1.732) solid var(--color-background-modal)}.ConfigureImport-module-module__baseContainer___q8h4Q,.ConfigureImport-module-module__configureImport___LEOsk,.ConfigureImport-module-module__flexContainer___HbOJk{width:100%;max-width:100%;padding:1.5rem}@media (max-width: 768px){.ConfigureImport-module-module__baseContainer___q8h4Q,.ConfigureImport-module-module__configureImport___LEOsk,.ConfigureImport-module-module__flexContainer___HbOJk{padding:1rem}}@media (max-width: 640px){.ConfigureImport-module-module__baseContainer___q8h4Q,.ConfigureImport-module-module__configureImport___LEOsk,.ConfigureImport-module-module__flexContainer___HbOJk{padding:.75rem}}.ConfigureImport-module-module__flexContainer___HbOJk{display:flex;flex-direction:column;min-height:0;min-width:0}.ConfigureImport-module-module__scrollableContent___njXa7{flex:1;display:flex;flex-direction:column;overflow:visible;max-width:100%;min-width:0}.ConfigureImport-module-module__tableContainer___mMlmj{flex:1;overflow-x:auto;overflow-y:auto;max-width:100%;-webkit-overflow-scrolling:touch}.ConfigureImport-module-module__tableContainer___mMlmj table{min-width:100%;width:-moz-max-content;width:max-content}.ConfigureImport-module-module__headerSection___ZgAQT{padding:1rem;border-bottom:1px solid #e5e7eb}.ConfigureImport-module-module__headerSection___ZgAQT h2{font-size:1.25rem;font-weight:600;color:#111827;margin:0 0 .5rem}.ConfigureImport-module-module__headerSection___ZgAQT p{font-size:.875rem;color:#6b7280;margin:0}.ConfigureImport-module-module__toolbar___GEhEX{padding:.75rem 1rem;background:#fff;border:1px solid #e5e7eb;border-radius:.5rem;margin-bottom:1rem;box-shadow:0 1px 2px #0000000d}.ConfigureImport-module-module__configureImport___LEOsk{height:100%;margin:0}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.csv-importer{--background: 0 0% 100%;--foreground: 222.2 84% 4.9%;--card: 0 0% 100%;--card-foreground: 222.2 84% 4.9%;--popover: 0 0% 100%;--popover-foreground: 222.2 84% 4.9%;--primary: 221.2 83.2% 53.3%;--primary-foreground: 210 40% 98%;--secondary: 210 40% 96.1%;--secondary-foreground: 222.2 47.4% 11.2%;--muted: 210 40% 96.1%;--muted-foreground: 215.4 16.3% 46.9%;--accent: 210 40% 96.1%;--accent-foreground: 222.2 47.4% 11.2%;--destructive: 0 84.2% 60.2%;--destructive-foreground: 210 40% 98%;--border: 214.3 31.8% 91.4%;--input: 214.3 31.8% 91.4%;--ring: 221.2 83.2% 53.3%;--radius: .5rem;--color-primary: #2563eb;--color-primary-foreground: #ffffff;--color-secondary: #f3f4f6;--color-secondary-foreground: #111827;--color-border: #e5e7eb;--color-background: #ffffff;--color-text: #111827;--color-error: #ef4444;--color-error-foreground: #ffffff;--color-muted: #f3f4f6;--color-muted-foreground: #6b7280;--color-accent: #f3f4f6;--color-accent-foreground: #111827}.csv-importer[data-theme=dark]{--background: 222.2 84% 4.9%;--foreground: 210 40% 98%;--card: 222.2 84% 4.9%;--card-foreground: 210 40% 98%;--popover: 222.2 84% 4.9%;--popover-foreground: 210 40% 98%;--primary: 217.2 91.2% 59.8%;--primary-foreground: 222.2 47.4% 11.2%;--secondary: 217.2 32.6% 17.5%;--secondary-foreground: 210 40% 98%;--muted: 217.2 32.6% 17.5%;--muted-foreground: 215 20.2% 65.1%;--accent: 217.2 32.6% 17.5%;--accent-foreground: 210 40% 98%;--destructive: 0 62.8% 30.6%;--destructive-foreground: 210 40% 98%;--border: 217.2 32.6% 17.5%;--input: 217.2 32.6% 17.5%;--ring: 224.3 76.3% 48%}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{inset:0}.bottom-0{bottom:0}.left-0{left:0}.left-2{left:.5rem}.left-4{left:1rem}.left-[50%]{left:50%}.right-0{right:0}.right-2{right:.5rem}.right-4{right:1rem}.top-0{top:0}.top-1{top:.25rem}.top-1/2{top:50%}.top-2{top:.5rem}.top-4{top:1rem}.top-[50%]{top:50%}.top-auto{top:auto}.isolate{isolation:isolate}.z-10{z-index:10}.z-50{z-index:50}.z-[100]{z-index:100}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-4{margin-top:1rem;margin-bottom:1rem}.my-8{margin-top:2rem;margin-bottom:2rem}.-ml-1{margin-left:-.25rem}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.mr-2{margin-right:.5rem}.mt-1{margin-top:.25rem}.mt-12{margin-top:3rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.box-border{box-sizing:border-box}.line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.aspect-square{aspect-ratio:1 / 1}.h-0{height:0px}.h-1{height:.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-16{height:4rem}.h-3{height:.75rem}.h-3.5{height:.875rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-[1px]{height:1px}.h-[36px]{height:36px}.h-[var(--radix-select-trigger-height)]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.h-px{height:1px}.max-h-96{max-height:24rem}.max-h-[120px]{max-height:120px}.max-h-[300px]{max-height:300px}.max-h-screen{max-height:100vh}.min-h-0{min-height:0px}.min-h-[180px]{min-height:180px}.min-h-[240px]{min-height:240px}.min-h-[400px]{min-height:400px}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-16{width:4rem}.w-3{width:.75rem}.w-3.5{width:.875rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-[30%]{width:30%}.w-[35%]{width:35%}.w-full{width:100%}.w-max{width:-moz-max-content;width:max-content}.min-w-0{min-width:0px}.min-w-[36px]{min-width:36px}.min-w-[600px]{min-width:600px}.min-w-[8rem]{min-width:8rem}.min-w-[var(--radix-select-trigger-width)]{min-width:var(--radix-select-trigger-width)}.min-w-full{min-width:100%}.max-w-[1000px]{max-width:1000px}.max-w-[250px]{max-width:250px}.max-w-[300px]{max-width:300px}.max-w-[440px]{max-width:440px}.max-w-[560px]{max-width:560px}.max-w-[660px]{max-width:660px}.max-w-[800px]{max-width:800px}.max-w-full{max-width:100%}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.flex-shrink{flex-shrink:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.border-collapse{border-collapse:collapse}.-translate-y-1{--tw-translate-y: -.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-5{--tw-translate-x: 1.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-[-50%]{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-[-50%]{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-105{--tw-scale-x: 1.05;--tw-scale-y: 1.05;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.resize{resize:both}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-evenly{justify-content:space-evenly}.gap-0{gap:0px}.gap-1{gap:.25rem}.gap-1.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(1rem * var(--tw-space-x-reverse));margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px * var(--tw-space-y-reverse))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-1.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.375rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.375rem * var(--tw-space-y-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.self-center{align-self:center}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.border{border-width:1px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-blue-100{--tw-border-opacity: 1;border-color:rgb(219 234 254 / var(--tw-border-opacity, 1))}.border-blue-100/0{border-color:#dbeafe00}.border-blue-100/10{border-color:#dbeafe1a}.border-blue-100/100{border-color:#dbeafe}.border-blue-100/15{border-color:#dbeafe26}.border-blue-100/20{border-color:#dbeafe33}.border-blue-100/25{border-color:#dbeafe40}.border-blue-100/30{border-color:#dbeafe4d}.border-blue-100/35{border-color:#dbeafe59}.border-blue-100/40{border-color:#dbeafe66}.border-blue-100/45{border-color:#dbeafe73}.border-blue-100/5{border-color:#dbeafe0d}.border-blue-100/50{border-color:#dbeafe80}.border-blue-100/55{border-color:#dbeafe8c}.border-blue-100/60{border-color:#dbeafe99}.border-blue-100/65{border-color:#dbeafea6}.border-blue-100/70{border-color:#dbeafeb3}.border-blue-100/75{border-color:#dbeafebf}.border-blue-100/80{border-color:#dbeafecc}.border-blue-100/85{border-color:#dbeafed9}.border-blue-100/90{border-color:#dbeafee6}.border-blue-100/95{border-color:#dbeafef2}.border-blue-200{--tw-border-opacity: 1;border-color:rgb(191 219 254 / var(--tw-border-opacity, 1))}.border-blue-200/0{border-color:#bfdbfe00}.border-blue-200/10{border-color:#bfdbfe1a}.border-blue-200/100{border-color:#bfdbfe}.border-blue-200/15{border-color:#bfdbfe26}.border-blue-200/20{border-color:#bfdbfe33}.border-blue-200/25{border-color:#bfdbfe40}.border-blue-200/30{border-color:#bfdbfe4d}.border-blue-200/35{border-color:#bfdbfe59}.border-blue-200/40{border-color:#bfdbfe66}.border-blue-200/45{border-color:#bfdbfe73}.border-blue-200/5{border-color:#bfdbfe0d}.border-blue-200/50{border-color:#bfdbfe80}.border-blue-200/55{border-color:#bfdbfe8c}.border-blue-200/60{border-color:#bfdbfe99}.border-blue-200/65{border-color:#bfdbfea6}.border-blue-200/70{border-color:#bfdbfeb3}.border-blue-200/75{border-color:#bfdbfebf}.border-blue-200/80{border-color:#bfdbfecc}.border-blue-200/85{border-color:#bfdbfed9}.border-blue-200/90{border-color:#bfdbfee6}.border-blue-200/95{border-color:#bfdbfef2}.border-blue-300{--tw-border-opacity: 1;border-color:rgb(147 197 253 / var(--tw-border-opacity, 1))}.border-blue-300/0{border-color:#93c5fd00}.border-blue-300/10{border-color:#93c5fd1a}.border-blue-300/100{border-color:#93c5fd}.border-blue-300/15{border-color:#93c5fd26}.border-blue-300/20{border-color:#93c5fd33}.border-blue-300/25{border-color:#93c5fd40}.border-blue-300/30{border-color:#93c5fd4d}.border-blue-300/35{border-color:#93c5fd59}.border-blue-300/40{border-color:#93c5fd66}.border-blue-300/45{border-color:#93c5fd73}.border-blue-300/5{border-color:#93c5fd0d}.border-blue-300/50{border-color:#93c5fd80}.border-blue-300/55{border-color:#93c5fd8c}.border-blue-300/60{border-color:#93c5fd99}.border-blue-300/65{border-color:#93c5fda6}.border-blue-300/70{border-color:#93c5fdb3}.border-blue-300/75{border-color:#93c5fdbf}.border-blue-300/80{border-color:#93c5fdcc}.border-blue-300/85{border-color:#93c5fdd9}.border-blue-300/90{border-color:#93c5fde6}.border-blue-300/95{border-color:#93c5fdf2}.border-blue-400{--tw-border-opacity: 1;border-color:rgb(96 165 250 / var(--tw-border-opacity, 1))}.border-blue-400/0{border-color:#60a5fa00}.border-blue-400/10{border-color:#60a5fa1a}.border-blue-400/100{border-color:#60a5fa}.border-blue-400/15{border-color:#60a5fa26}.border-blue-400/20{border-color:#60a5fa33}.border-blue-400/25{border-color:#60a5fa40}.border-blue-400/30{border-color:#60a5fa4d}.border-blue-400/35{border-color:#60a5fa59}.border-blue-400/40{border-color:#60a5fa66}.border-blue-400/45{border-color:#60a5fa73}.border-blue-400/5{border-color:#60a5fa0d}.border-blue-400/50{border-color:#60a5fa80}.border-blue-400/55{border-color:#60a5fa8c}.border-blue-400/60{border-color:#60a5fa99}.border-blue-400/65{border-color:#60a5faa6}.border-blue-400/70{border-color:#60a5fab3}.border-blue-400/75{border-color:#60a5fabf}.border-blue-400/80{border-color:#60a5facc}.border-blue-400/85{border-color:#60a5fad9}.border-blue-400/90{border-color:#60a5fae6}.border-blue-400/95{border-color:#60a5faf2}.border-blue-50{--tw-border-opacity: 1;border-color:rgb(239 246 255 / var(--tw-border-opacity, 1))}.border-blue-50/0{border-color:#eff6ff00}.border-blue-50/10{border-color:#eff6ff1a}.border-blue-50/100{border-color:#eff6ff}.border-blue-50/15{border-color:#eff6ff26}.border-blue-50/20{border-color:#eff6ff33}.border-blue-50/25{border-color:#eff6ff40}.border-blue-50/30{border-color:#eff6ff4d}.border-blue-50/35{border-color:#eff6ff59}.border-blue-50/40{border-color:#eff6ff66}.border-blue-50/45{border-color:#eff6ff73}.border-blue-50/5{border-color:#eff6ff0d}.border-blue-50/50{border-color:#eff6ff80}.border-blue-50/55{border-color:#eff6ff8c}.border-blue-50/60{border-color:#eff6ff99}.border-blue-50/65{border-color:#eff6ffa6}.border-blue-50/70{border-color:#eff6ffb3}.border-blue-50/75{border-color:#eff6ffbf}.border-blue-50/80{border-color:#eff6ffcc}.border-blue-50/85{border-color:#eff6ffd9}.border-blue-50/90{border-color:#eff6ffe6}.border-blue-50/95{border-color:#eff6fff2}.border-blue-500{--tw-border-opacity: 1;border-color:rgb(59 130 246 / var(--tw-border-opacity, 1))}.border-blue-500/0{border-color:#3b82f600}.border-blue-500/10{border-color:#3b82f61a}.border-blue-500/100{border-color:#3b82f6}.border-blue-500/15{border-color:#3b82f626}.border-blue-500/20{border-color:#3b82f633}.border-blue-500/25{border-color:#3b82f640}.border-blue-500/30{border-color:#3b82f64d}.border-blue-500/35{border-color:#3b82f659}.border-blue-500/40{border-color:#3b82f666}.border-blue-500/45{border-color:#3b82f673}.border-blue-500/5{border-color:#3b82f60d}.border-blue-500/50{border-color:#3b82f680}.border-blue-500/55{border-color:#3b82f68c}.border-blue-500/60{border-color:#3b82f699}.border-blue-500/65{border-color:#3b82f6a6}.border-blue-500/70{border-color:#3b82f6b3}.border-blue-500/75{border-color:#3b82f6bf}.border-blue-500/80{border-color:#3b82f6cc}.border-blue-500/85{border-color:#3b82f6d9}.border-blue-500/90{border-color:#3b82f6e6}.border-blue-500/95{border-color:#3b82f6f2}.border-blue-600{--tw-border-opacity: 1;border-color:rgb(37 99 235 / var(--tw-border-opacity, 1))}.border-blue-600/0{border-color:#2563eb00}.border-blue-600/10{border-color:#2563eb1a}.border-blue-600/100{border-color:#2563eb}.border-blue-600/15{border-color:#2563eb26}.border-blue-600/20{border-color:#2563eb33}.border-blue-600/25{border-color:#2563eb40}.border-blue-600/30{border-color:#2563eb4d}.border-blue-600/35{border-color:#2563eb59}.border-blue-600/40{border-color:#2563eb66}.border-blue-600/45{border-color:#2563eb73}.border-blue-600/5{border-color:#2563eb0d}.border-blue-600/50{border-color:#2563eb80}.border-blue-600/55{border-color:#2563eb8c}.border-blue-600/60{border-color:#2563eb99}.border-blue-600/65{border-color:#2563eba6}.border-blue-600/70{border-color:#2563ebb3}.border-blue-600/75{border-color:#2563ebbf}.border-blue-600/80{border-color:#2563ebcc}.border-blue-600/85{border-color:#2563ebd9}.border-blue-600/90{border-color:#2563ebe6}.border-blue-600/95{border-color:#2563ebf2}.border-blue-700{--tw-border-opacity: 1;border-color:rgb(29 78 216 / var(--tw-border-opacity, 1))}.border-blue-700/0{border-color:#1d4ed800}.border-blue-700/10{border-color:#1d4ed81a}.border-blue-700/100{border-color:#1d4ed8}.border-blue-700/15{border-color:#1d4ed826}.border-blue-700/20{border-color:#1d4ed833}.border-blue-700/25{border-color:#1d4ed840}.border-blue-700/30{border-color:#1d4ed84d}.border-blue-700/35{border-color:#1d4ed859}.border-blue-700/40{border-color:#1d4ed866}.border-blue-700/45{border-color:#1d4ed873}.border-blue-700/5{border-color:#1d4ed80d}.border-blue-700/50{border-color:#1d4ed880}.border-blue-700/55{border-color:#1d4ed88c}.border-blue-700/60{border-color:#1d4ed899}.border-blue-700/65{border-color:#1d4ed8a6}.border-blue-700/70{border-color:#1d4ed8b3}.border-blue-700/75{border-color:#1d4ed8bf}.border-blue-700/80{border-color:#1d4ed8cc}.border-blue-700/85{border-color:#1d4ed8d9}.border-blue-700/90{border-color:#1d4ed8e6}.border-blue-700/95{border-color:#1d4ed8f2}.border-blue-800{--tw-border-opacity: 1;border-color:rgb(30 64 175 / var(--tw-border-opacity, 1))}.border-blue-800/0{border-color:#1e40af00}.border-blue-800/10{border-color:#1e40af1a}.border-blue-800/100{border-color:#1e40af}.border-blue-800/15{border-color:#1e40af26}.border-blue-800/20{border-color:#1e40af33}.border-blue-800/25{border-color:#1e40af40}.border-blue-800/30{border-color:#1e40af4d}.border-blue-800/35{border-color:#1e40af59}.border-blue-800/40{border-color:#1e40af66}.border-blue-800/45{border-color:#1e40af73}.border-blue-800/5{border-color:#1e40af0d}.border-blue-800/50{border-color:#1e40af80}.border-blue-800/55{border-color:#1e40af8c}.border-blue-800/60{border-color:#1e40af99}.border-blue-800/65{border-color:#1e40afa6}.border-blue-800/70{border-color:#1e40afb3}.border-blue-800/75{border-color:#1e40afbf}.border-blue-800/80{border-color:#1e40afcc}.border-blue-800/85{border-color:#1e40afd9}.border-blue-800/90{border-color:#1e40afe6}.border-blue-800/95{border-color:#1e40aff2}.border-blue-900{--tw-border-opacity: 1;border-color:rgb(30 58 138 / var(--tw-border-opacity, 1))}.border-blue-900/0{border-color:#1e3a8a00}.border-blue-900/10{border-color:#1e3a8a1a}.border-blue-900/100{border-color:#1e3a8a}.border-blue-900/15{border-color:#1e3a8a26}.border-blue-900/20{border-color:#1e3a8a33}.border-blue-900/25{border-color:#1e3a8a40}.border-blue-900/30{border-color:#1e3a8a4d}.border-blue-900/35{border-color:#1e3a8a59}.border-blue-900/40{border-color:#1e3a8a66}.border-blue-900/45{border-color:#1e3a8a73}.border-blue-900/5{border-color:#1e3a8a0d}.border-blue-900/50{border-color:#1e3a8a80}.border-blue-900/55{border-color:#1e3a8a8c}.border-blue-900/60{border-color:#1e3a8a99}.border-blue-900/65{border-color:#1e3a8aa6}.border-blue-900/70{border-color:#1e3a8ab3}.border-blue-900/75{border-color:#1e3a8abf}.border-blue-900/80{border-color:#1e3a8acc}.border-blue-900/85{border-color:#1e3a8ad9}.border-blue-900/90{border-color:#1e3a8ae6}.border-blue-900/95{border-color:#1e3a8af2}.border-destructive{border-color:hsl(var(--destructive))}.border-destructive/50{border-color:hsl(var(--destructive) / .5)}.border-gray-100{--tw-border-opacity: 1;border-color:rgb(243 244 246 / var(--tw-border-opacity, 1))}.border-gray-100/0{border-color:#f3f4f600}.border-gray-100/10{border-color:#f3f4f61a}.border-gray-100/100{border-color:#f3f4f6}.border-gray-100/15{border-color:#f3f4f626}.border-gray-100/20{border-color:#f3f4f633}.border-gray-100/25{border-color:#f3f4f640}.border-gray-100/30{border-color:#f3f4f64d}.border-gray-100/35{border-color:#f3f4f659}.border-gray-100/40{border-color:#f3f4f666}.border-gray-100/45{border-color:#f3f4f673}.border-gray-100/5{border-color:#f3f4f60d}.border-gray-100/50{border-color:#f3f4f680}.border-gray-100/55{border-color:#f3f4f68c}.border-gray-100/60{border-color:#f3f4f699}.border-gray-100/65{border-color:#f3f4f6a6}.border-gray-100/70{border-color:#f3f4f6b3}.border-gray-100/75{border-color:#f3f4f6bf}.border-gray-100/80{border-color:#f3f4f6cc}.border-gray-100/85{border-color:#f3f4f6d9}.border-gray-100/90{border-color:#f3f4f6e6}.border-gray-100/95{border-color:#f3f4f6f2}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity, 1))}.border-gray-200/0{border-color:#e5e7eb00}.border-gray-200/10{border-color:#e5e7eb1a}.border-gray-200/100{border-color:#e5e7eb}.border-gray-200/15{border-color:#e5e7eb26}.border-gray-200/20{border-color:#e5e7eb33}.border-gray-200/25{border-color:#e5e7eb40}.border-gray-200/30{border-color:#e5e7eb4d}.border-gray-200/35{border-color:#e5e7eb59}.border-gray-200/40{border-color:#e5e7eb66}.border-gray-200/45{border-color:#e5e7eb73}.border-gray-200/5{border-color:#e5e7eb0d}.border-gray-200/50{border-color:#e5e7eb80}.border-gray-200/55{border-color:#e5e7eb8c}.border-gray-200/60{border-color:#e5e7eb99}.border-gray-200/65{border-color:#e5e7eba6}.border-gray-200/70{border-color:#e5e7ebb3}.border-gray-200/75{border-color:#e5e7ebbf}.border-gray-200/80{border-color:#e5e7ebcc}.border-gray-200/85{border-color:#e5e7ebd9}.border-gray-200/90{border-color:#e5e7ebe6}.border-gray-200/95{border-color:#e5e7ebf2}.border-gray-300{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity, 1))}.border-gray-300/0{border-color:#d1d5db00}.border-gray-300/10{border-color:#d1d5db1a}.border-gray-300/100{border-color:#d1d5db}.border-gray-300/15{border-color:#d1d5db26}.border-gray-300/20{border-color:#d1d5db33}.border-gray-300/25{border-color:#d1d5db40}.border-gray-300/30{border-color:#d1d5db4d}.border-gray-300/35{border-color:#d1d5db59}.border-gray-300/40{border-color:#d1d5db66}.border-gray-300/45{border-color:#d1d5db73}.border-gray-300/5{border-color:#d1d5db0d}.border-gray-300/50{border-color:#d1d5db80}.border-gray-300/55{border-color:#d1d5db8c}.border-gray-300/60{border-color:#d1d5db99}.border-gray-300/65{border-color:#d1d5dba6}.border-gray-300/70{border-color:#d1d5dbb3}.border-gray-300/75{border-color:#d1d5dbbf}.border-gray-300/80{border-color:#d1d5dbcc}.border-gray-300/85{border-color:#d1d5dbd9}.border-gray-300/90{border-color:#d1d5dbe6}.border-gray-300/95{border-color:#d1d5dbf2}.border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity, 1))}.border-gray-400/0{border-color:#9ca3af00}.border-gray-400/10{border-color:#9ca3af1a}.border-gray-400/100{border-color:#9ca3af}.border-gray-400/15{border-color:#9ca3af26}.border-gray-400/20{border-color:#9ca3af33}.border-gray-400/25{border-color:#9ca3af40}.border-gray-400/30{border-color:#9ca3af4d}.border-gray-400/35{border-color:#9ca3af59}.border-gray-400/40{border-color:#9ca3af66}.border-gray-400/45{border-color:#9ca3af73}.border-gray-400/5{border-color:#9ca3af0d}.border-gray-400/50{border-color:#9ca3af80}.border-gray-400/55{border-color:#9ca3af8c}.border-gray-400/60{border-color:#9ca3af99}.border-gray-400/65{border-color:#9ca3afa6}.border-gray-400/70{border-color:#9ca3afb3}.border-gray-400/75{border-color:#9ca3afbf}.border-gray-400/80{border-color:#9ca3afcc}.border-gray-400/85{border-color:#9ca3afd9}.border-gray-400/90{border-color:#9ca3afe6}.border-gray-400/95{border-color:#9ca3aff2}.border-gray-50{--tw-border-opacity: 1;border-color:rgb(249 250 251 / var(--tw-border-opacity, 1))}.border-gray-50/0{border-color:#f9fafb00}.border-gray-50/10{border-color:#f9fafb1a}.border-gray-50/100{border-color:#f9fafb}.border-gray-50/15{border-color:#f9fafb26}.border-gray-50/20{border-color:#f9fafb33}.border-gray-50/25{border-color:#f9fafb40}.border-gray-50/30{border-color:#f9fafb4d}.border-gray-50/35{border-color:#f9fafb59}.border-gray-50/40{border-color:#f9fafb66}.border-gray-50/45{border-color:#f9fafb73}.border-gray-50/5{border-color:#f9fafb0d}.border-gray-50/50{border-color:#f9fafb80}.border-gray-50/55{border-color:#f9fafb8c}.border-gray-50/60{border-color:#f9fafb99}.border-gray-50/65{border-color:#f9fafba6}.border-gray-50/70{border-color:#f9fafbb3}.border-gray-50/75{border-color:#f9fafbbf}.border-gray-50/80{border-color:#f9fafbcc}.border-gray-50/85{border-color:#f9fafbd9}.border-gray-50/90{border-color:#f9fafbe6}.border-gray-50/95{border-color:#f9fafbf2}.border-gray-500{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity, 1))}.border-gray-500/0{border-color:#6b728000}.border-gray-500/10{border-color:#6b72801a}.border-gray-500/100{border-color:#6b7280}.border-gray-500/15{border-color:#6b728026}.border-gray-500/20{border-color:#6b728033}.border-gray-500/25{border-color:#6b728040}.border-gray-500/30{border-color:#6b72804d}.border-gray-500/35{border-color:#6b728059}.border-gray-500/40{border-color:#6b728066}.border-gray-500/45{border-color:#6b728073}.border-gray-500/5{border-color:#6b72800d}.border-gray-500/50{border-color:#6b728080}.border-gray-500/55{border-color:#6b72808c}.border-gray-500/60{border-color:#6b728099}.border-gray-500/65{border-color:#6b7280a6}.border-gray-500/70{border-color:#6b7280b3}.border-gray-500/75{border-color:#6b7280bf}.border-gray-500/80{border-color:#6b7280cc}.border-gray-500/85{border-color:#6b7280d9}.border-gray-500/90{border-color:#6b7280e6}.border-gray-500/95{border-color:#6b7280f2}.border-gray-600{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity, 1))}.border-gray-600/0{border-color:#4b556300}.border-gray-600/10{border-color:#4b55631a}.border-gray-600/100{border-color:#4b5563}.border-gray-600/15{border-color:#4b556326}.border-gray-600/20{border-color:#4b556333}.border-gray-600/25{border-color:#4b556340}.border-gray-600/30{border-color:#4b55634d}.border-gray-600/35{border-color:#4b556359}.border-gray-600/40{border-color:#4b556366}.border-gray-600/45{border-color:#4b556373}.border-gray-600/5{border-color:#4b55630d}.border-gray-600/50{border-color:#4b556380}.border-gray-600/55{border-color:#4b55638c}.border-gray-600/60{border-color:#4b556399}.border-gray-600/65{border-color:#4b5563a6}.border-gray-600/70{border-color:#4b5563b3}.border-gray-600/75{border-color:#4b5563bf}.border-gray-600/80{border-color:#4b5563cc}.border-gray-600/85{border-color:#4b5563d9}.border-gray-600/90{border-color:#4b5563e6}.border-gray-600/95{border-color:#4b5563f2}.border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity, 1))}.border-gray-700/0{border-color:#37415100}.border-gray-700/10{border-color:#3741511a}.border-gray-700/100{border-color:#374151}.border-gray-700/15{border-color:#37415126}.border-gray-700/20{border-color:#37415133}.border-gray-700/25{border-color:#37415140}.border-gray-700/30{border-color:#3741514d}.border-gray-700/35{border-color:#37415159}.border-gray-700/40{border-color:#37415166}.border-gray-700/45{border-color:#37415173}.border-gray-700/5{border-color:#3741510d}.border-gray-700/50{border-color:#37415180}.border-gray-700/55{border-color:#3741518c}.border-gray-700/60{border-color:#37415199}.border-gray-700/65{border-color:#374151a6}.border-gray-700/70{border-color:#374151b3}.border-gray-700/75{border-color:#374151bf}.border-gray-700/80{border-color:#374151cc}.border-gray-700/85{border-color:#374151d9}.border-gray-700/90{border-color:#374151e6}.border-gray-700/95{border-color:#374151f2}.border-gray-800{--tw-border-opacity: 1;border-color:rgb(31 41 55 / var(--tw-border-opacity, 1))}.border-gray-800/0{border-color:#1f293700}.border-gray-800/10{border-color:#1f29371a}.border-gray-800/100{border-color:#1f2937}.border-gray-800/15{border-color:#1f293726}.border-gray-800/20{border-color:#1f293733}.border-gray-800/25{border-color:#1f293740}.border-gray-800/30{border-color:#1f29374d}.border-gray-800/35{border-color:#1f293759}.border-gray-800/40{border-color:#1f293766}.border-gray-800/45{border-color:#1f293773}.border-gray-800/5{border-color:#1f29370d}.border-gray-800/50{border-color:#1f293780}.border-gray-800/55{border-color:#1f29378c}.border-gray-800/60{border-color:#1f293799}.border-gray-800/65{border-color:#1f2937a6}.border-gray-800/70{border-color:#1f2937b3}.border-gray-800/75{border-color:#1f2937bf}.border-gray-800/80{border-color:#1f2937cc}.border-gray-800/85{border-color:#1f2937d9}.border-gray-800/90{border-color:#1f2937e6}.border-gray-800/95{border-color:#1f2937f2}.border-gray-900{--tw-border-opacity: 1;border-color:rgb(17 24 39 / var(--tw-border-opacity, 1))}.border-gray-900/0{border-color:#11182700}.border-gray-900/10{border-color:#1118271a}.border-gray-900/100{border-color:#111827}.border-gray-900/15{border-color:#11182726}.border-gray-900/20{border-color:#11182733}.border-gray-900/25{border-color:#11182740}.border-gray-900/30{border-color:#1118274d}.border-gray-900/35{border-color:#11182759}.border-gray-900/40{border-color:#11182766}.border-gray-900/45{border-color:#11182773}.border-gray-900/5{border-color:#1118270d}.border-gray-900/50{border-color:#11182780}.border-gray-900/55{border-color:#1118278c}.border-gray-900/60{border-color:#11182799}.border-gray-900/65{border-color:#111827a6}.border-gray-900/70{border-color:#111827b3}.border-gray-900/75{border-color:#111827bf}.border-gray-900/80{border-color:#111827cc}.border-gray-900/85{border-color:#111827d9}.border-gray-900/90{border-color:#111827e6}.border-gray-900/95{border-color:#111827f2}.border-green-100{--tw-border-opacity: 1;border-color:rgb(220 252 231 / var(--tw-border-opacity, 1))}.border-green-100/0{border-color:#dcfce700}.border-green-100/10{border-color:#dcfce71a}.border-green-100/100{border-color:#dcfce7}.border-green-100/15{border-color:#dcfce726}.border-green-100/20{border-color:#dcfce733}.border-green-100/25{border-color:#dcfce740}.border-green-100/30{border-color:#dcfce74d}.border-green-100/35{border-color:#dcfce759}.border-green-100/40{border-color:#dcfce766}.border-green-100/45{border-color:#dcfce773}.border-green-100/5{border-color:#dcfce70d}.border-green-100/50{border-color:#dcfce780}.border-green-100/55{border-color:#dcfce78c}.border-green-100/60{border-color:#dcfce799}.border-green-100/65{border-color:#dcfce7a6}.border-green-100/70{border-color:#dcfce7b3}.border-green-100/75{border-color:#dcfce7bf}.border-green-100/80{border-color:#dcfce7cc}.border-green-100/85{border-color:#dcfce7d9}.border-green-100/90{border-color:#dcfce7e6}.border-green-100/95{border-color:#dcfce7f2}.border-green-200{--tw-border-opacity: 1;border-color:rgb(187 247 208 / var(--tw-border-opacity, 1))}.border-green-200/0{border-color:#bbf7d000}.border-green-200/10{border-color:#bbf7d01a}.border-green-200/100{border-color:#bbf7d0}.border-green-200/15{border-color:#bbf7d026}.border-green-200/20{border-color:#bbf7d033}.border-green-200/25{border-color:#bbf7d040}.border-green-200/30{border-color:#bbf7d04d}.border-green-200/35{border-color:#bbf7d059}.border-green-200/40{border-color:#bbf7d066}.border-green-200/45{border-color:#bbf7d073}.border-green-200/5{border-color:#bbf7d00d}.border-green-200/50{border-color:#bbf7d080}.border-green-200/55{border-color:#bbf7d08c}.border-green-200/60{border-color:#bbf7d099}.border-green-200/65{border-color:#bbf7d0a6}.border-green-200/70{border-color:#bbf7d0b3}.border-green-200/75{border-color:#bbf7d0bf}.border-green-200/80{border-color:#bbf7d0cc}.border-green-200/85{border-color:#bbf7d0d9}.border-green-200/90{border-color:#bbf7d0e6}.border-green-200/95{border-color:#bbf7d0f2}.border-green-300{--tw-border-opacity: 1;border-color:rgb(134 239 172 / var(--tw-border-opacity, 1))}.border-green-300/0{border-color:#86efac00}.border-green-300/10{border-color:#86efac1a}.border-green-300/100{border-color:#86efac}.border-green-300/15{border-color:#86efac26}.border-green-300/20{border-color:#86efac33}.border-green-300/25{border-color:#86efac40}.border-green-300/30{border-color:#86efac4d}.border-green-300/35{border-color:#86efac59}.border-green-300/40{border-color:#86efac66}.border-green-300/45{border-color:#86efac73}.border-green-300/5{border-color:#86efac0d}.border-green-300/50{border-color:#86efac80}.border-green-300/55{border-color:#86efac8c}.border-green-300/60{border-color:#86efac99}.border-green-300/65{border-color:#86efaca6}.border-green-300/70{border-color:#86efacb3}.border-green-300/75{border-color:#86efacbf}.border-green-300/80{border-color:#86efaccc}.border-green-300/85{border-color:#86efacd9}.border-green-300/90{border-color:#86eface6}.border-green-300/95{border-color:#86efacf2}.border-green-400{--tw-border-opacity: 1;border-color:rgb(74 222 128 / var(--tw-border-opacity, 1))}.border-green-400/0{border-color:#4ade8000}.border-green-400/10{border-color:#4ade801a}.border-green-400/100{border-color:#4ade80}.border-green-400/15{border-color:#4ade8026}.border-green-400/20{border-color:#4ade8033}.border-green-400/25{border-color:#4ade8040}.border-green-400/30{border-color:#4ade804d}.border-green-400/35{border-color:#4ade8059}.border-green-400/40{border-color:#4ade8066}.border-green-400/45{border-color:#4ade8073}.border-green-400/5{border-color:#4ade800d}.border-green-400/50{border-color:#4ade8080}.border-green-400/55{border-color:#4ade808c}.border-green-400/60{border-color:#4ade8099}.border-green-400/65{border-color:#4ade80a6}.border-green-400/70{border-color:#4ade80b3}.border-green-400/75{border-color:#4ade80bf}.border-green-400/80{border-color:#4ade80cc}.border-green-400/85{border-color:#4ade80d9}.border-green-400/90{border-color:#4ade80e6}.border-green-400/95{border-color:#4ade80f2}.border-green-50{--tw-border-opacity: 1;border-color:rgb(240 253 244 / var(--tw-border-opacity, 1))}.border-green-50/0{border-color:#f0fdf400}.border-green-50/10{border-color:#f0fdf41a}.border-green-50/100{border-color:#f0fdf4}.border-green-50/15{border-color:#f0fdf426}.border-green-50/20{border-color:#f0fdf433}.border-green-50/25{border-color:#f0fdf440}.border-green-50/30{border-color:#f0fdf44d}.border-green-50/35{border-color:#f0fdf459}.border-green-50/40{border-color:#f0fdf466}.border-green-50/45{border-color:#f0fdf473}.border-green-50/5{border-color:#f0fdf40d}.border-green-50/50{border-color:#f0fdf480}.border-green-50/55{border-color:#f0fdf48c}.border-green-50/60{border-color:#f0fdf499}.border-green-50/65{border-color:#f0fdf4a6}.border-green-50/70{border-color:#f0fdf4b3}.border-green-50/75{border-color:#f0fdf4bf}.border-green-50/80{border-color:#f0fdf4cc}.border-green-50/85{border-color:#f0fdf4d9}.border-green-50/90{border-color:#f0fdf4e6}.border-green-50/95{border-color:#f0fdf4f2}.border-green-500{--tw-border-opacity: 1;border-color:rgb(34 197 94 / var(--tw-border-opacity, 1))}.border-green-500/0{border-color:#22c55e00}.border-green-500/10{border-color:#22c55e1a}.border-green-500/100{border-color:#22c55e}.border-green-500/15{border-color:#22c55e26}.border-green-500/20{border-color:#22c55e33}.border-green-500/25{border-color:#22c55e40}.border-green-500/30{border-color:#22c55e4d}.border-green-500/35{border-color:#22c55e59}.border-green-500/40{border-color:#22c55e66}.border-green-500/45{border-color:#22c55e73}.border-green-500/5{border-color:#22c55e0d}.border-green-500/50{border-color:#22c55e80}.border-green-500/55{border-color:#22c55e8c}.border-green-500/60{border-color:#22c55e99}.border-green-500/65{border-color:#22c55ea6}.border-green-500/70{border-color:#22c55eb3}.border-green-500/75{border-color:#22c55ebf}.border-green-500/80{border-color:#22c55ecc}.border-green-500/85{border-color:#22c55ed9}.border-green-500/90{border-color:#22c55ee6}.border-green-500/95{border-color:#22c55ef2}.border-green-600{--tw-border-opacity: 1;border-color:rgb(22 163 74 / var(--tw-border-opacity, 1))}.border-green-600/0{border-color:#16a34a00}.border-green-600/10{border-color:#16a34a1a}.border-green-600/100{border-color:#16a34a}.border-green-600/15{border-color:#16a34a26}.border-green-600/20{border-color:#16a34a33}.border-green-600/25{border-color:#16a34a40}.border-green-600/30{border-color:#16a34a4d}.border-green-600/35{border-color:#16a34a59}.border-green-600/40{border-color:#16a34a66}.border-green-600/45{border-color:#16a34a73}.border-green-600/5{border-color:#16a34a0d}.border-green-600/50{border-color:#16a34a80}.border-green-600/55{border-color:#16a34a8c}.border-green-600/60{border-color:#16a34a99}.border-green-600/65{border-color:#16a34aa6}.border-green-600/70{border-color:#16a34ab3}.border-green-600/75{border-color:#16a34abf}.border-green-600/80{border-color:#16a34acc}.border-green-600/85{border-color:#16a34ad9}.border-green-600/90{border-color:#16a34ae6}.border-green-600/95{border-color:#16a34af2}.border-green-700{--tw-border-opacity: 1;border-color:rgb(21 128 61 / var(--tw-border-opacity, 1))}.border-green-700/0{border-color:#15803d00}.border-green-700/10{border-color:#15803d1a}.border-green-700/100{border-color:#15803d}.border-green-700/15{border-color:#15803d26}.border-green-700/20{border-color:#15803d33}.border-green-700/25{border-color:#15803d40}.border-green-700/30{border-color:#15803d4d}.border-green-700/35{border-color:#15803d59}.border-green-700/40{border-color:#15803d66}.border-green-700/45{border-color:#15803d73}.border-green-700/5{border-color:#15803d0d}.border-green-700/50{border-color:#15803d80}.border-green-700/55{border-color:#15803d8c}.border-green-700/60{border-color:#15803d99}.border-green-700/65{border-color:#15803da6}.border-green-700/70{border-color:#15803db3}.border-green-700/75{border-color:#15803dbf}.border-green-700/80{border-color:#15803dcc}.border-green-700/85{border-color:#15803dd9}.border-green-700/90{border-color:#15803de6}.border-green-700/95{border-color:#15803df2}.border-green-800{--tw-border-opacity: 1;border-color:rgb(22 101 52 / var(--tw-border-opacity, 1))}.border-green-800/0{border-color:#16653400}.border-green-800/10{border-color:#1665341a}.border-green-800/100{border-color:#166534}.border-green-800/15{border-color:#16653426}.border-green-800/20{border-color:#16653433}.border-green-800/25{border-color:#16653440}.border-green-800/30{border-color:#1665344d}.border-green-800/35{border-color:#16653459}.border-green-800/40{border-color:#16653466}.border-green-800/45{border-color:#16653473}.border-green-800/5{border-color:#1665340d}.border-green-800/50{border-color:#16653480}.border-green-800/55{border-color:#1665348c}.border-green-800/60{border-color:#16653499}.border-green-800/65{border-color:#166534a6}.border-green-800/70{border-color:#166534b3}.border-green-800/75{border-color:#166534bf}.border-green-800/80{border-color:#166534cc}.border-green-800/85{border-color:#166534d9}.border-green-800/90{border-color:#166534e6}.border-green-800/95{border-color:#166534f2}.border-green-900{--tw-border-opacity: 1;border-color:rgb(20 83 45 / var(--tw-border-opacity, 1))}.border-green-900/0{border-color:#14532d00}.border-green-900/10{border-color:#14532d1a}.border-green-900/100{border-color:#14532d}.border-green-900/15{border-color:#14532d26}.border-green-900/20{border-color:#14532d33}.border-green-900/25{border-color:#14532d40}.border-green-900/30{border-color:#14532d4d}.border-green-900/35{border-color:#14532d59}.border-green-900/40{border-color:#14532d66}.border-green-900/45{border-color:#14532d73}.border-green-900/5{border-color:#14532d0d}.border-green-900/50{border-color:#14532d80}.border-green-900/55{border-color:#14532d8c}.border-green-900/60{border-color:#14532d99}.border-green-900/65{border-color:#14532da6}.border-green-900/70{border-color:#14532db3}.border-green-900/75{border-color:#14532dbf}.border-green-900/80{border-color:#14532dcc}.border-green-900/85{border-color:#14532dd9}.border-green-900/90{border-color:#14532de6}.border-green-900/95{border-color:#14532df2}.border-input{border-color:hsl(var(--input))}.border-muted{border-color:hsl(var(--muted))}.border-orange-500{--tw-border-opacity: 1;border-color:rgb(249 115 22 / var(--tw-border-opacity, 1))}.border-primary{border-color:hsl(var(--primary))}.border-red-100{--tw-border-opacity: 1;border-color:rgb(254 226 226 / var(--tw-border-opacity, 1))}.border-red-100/0{border-color:#fee2e200}.border-red-100/10{border-color:#fee2e21a}.border-red-100/100{border-color:#fee2e2}.border-red-100/15{border-color:#fee2e226}.border-red-100/20{border-color:#fee2e233}.border-red-100/25{border-color:#fee2e240}.border-red-100/30{border-color:#fee2e24d}.border-red-100/35{border-color:#fee2e259}.border-red-100/40{border-color:#fee2e266}.border-red-100/45{border-color:#fee2e273}.border-red-100/5{border-color:#fee2e20d}.border-red-100/50{border-color:#fee2e280}.border-red-100/55{border-color:#fee2e28c}.border-red-100/60{border-color:#fee2e299}.border-red-100/65{border-color:#fee2e2a6}.border-red-100/70{border-color:#fee2e2b3}.border-red-100/75{border-color:#fee2e2bf}.border-red-100/80{border-color:#fee2e2cc}.border-red-100/85{border-color:#fee2e2d9}.border-red-100/90{border-color:#fee2e2e6}.border-red-100/95{border-color:#fee2e2f2}.border-red-200{--tw-border-opacity: 1;border-color:rgb(254 202 202 / var(--tw-border-opacity, 1))}.border-red-200/0{border-color:#fecaca00}.border-red-200/10{border-color:#fecaca1a}.border-red-200/100{border-color:#fecaca}.border-red-200/15{border-color:#fecaca26}.border-red-200/20{border-color:#fecaca33}.border-red-200/25{border-color:#fecaca40}.border-red-200/30{border-color:#fecaca4d}.border-red-200/35{border-color:#fecaca59}.border-red-200/40{border-color:#fecaca66}.border-red-200/45{border-color:#fecaca73}.border-red-200/5{border-color:#fecaca0d}.border-red-200/50{border-color:#fecaca80}.border-red-200/55{border-color:#fecaca8c}.border-red-200/60{border-color:#fecaca99}.border-red-200/65{border-color:#fecacaa6}.border-red-200/70{border-color:#fecacab3}.border-red-200/75{border-color:#fecacabf}.border-red-200/80{border-color:#fecacacc}.border-red-200/85{border-color:#fecacad9}.border-red-200/90{border-color:#fecacae6}.border-red-200/95{border-color:#fecacaf2}.border-red-300{--tw-border-opacity: 1;border-color:rgb(252 165 165 / var(--tw-border-opacity, 1))}.border-red-300/0{border-color:#fca5a500}.border-red-300/10{border-color:#fca5a51a}.border-red-300/100{border-color:#fca5a5}.border-red-300/15{border-color:#fca5a526}.border-red-300/20{border-color:#fca5a533}.border-red-300/25{border-color:#fca5a540}.border-red-300/30{border-color:#fca5a54d}.border-red-300/35{border-color:#fca5a559}.border-red-300/40{border-color:#fca5a566}.border-red-300/45{border-color:#fca5a573}.border-red-300/5{border-color:#fca5a50d}.border-red-300/50{border-color:#fca5a580}.border-red-300/55{border-color:#fca5a58c}.border-red-300/60{border-color:#fca5a599}.border-red-300/65{border-color:#fca5a5a6}.border-red-300/70{border-color:#fca5a5b3}.border-red-300/75{border-color:#fca5a5bf}.border-red-300/80{border-color:#fca5a5cc}.border-red-300/85{border-color:#fca5a5d9}.border-red-300/90{border-color:#fca5a5e6}.border-red-300/95{border-color:#fca5a5f2}.border-red-400{--tw-border-opacity: 1;border-color:rgb(248 113 113 / var(--tw-border-opacity, 1))}.border-red-400/0{border-color:#f8717100}.border-red-400/10{border-color:#f871711a}.border-red-400/100{border-color:#f87171}.border-red-400/15{border-color:#f8717126}.border-red-400/20{border-color:#f8717133}.border-red-400/25{border-color:#f8717140}.border-red-400/30{border-color:#f871714d}.border-red-400/35{border-color:#f8717159}.border-red-400/40{border-color:#f8717166}.border-red-400/45{border-color:#f8717173}.border-red-400/5{border-color:#f871710d}.border-red-400/50{border-color:#f8717180}.border-red-400/55{border-color:#f871718c}.border-red-400/60{border-color:#f8717199}.border-red-400/65{border-color:#f87171a6}.border-red-400/70{border-color:#f87171b3}.border-red-400/75{border-color:#f87171bf}.border-red-400/80{border-color:#f87171cc}.border-red-400/85{border-color:#f87171d9}.border-red-400/90{border-color:#f87171e6}.border-red-400/95{border-color:#f87171f2}.border-red-50{--tw-border-opacity: 1;border-color:rgb(254 242 242 / var(--tw-border-opacity, 1))}.border-red-50/0{border-color:#fef2f200}.border-red-50/10{border-color:#fef2f21a}.border-red-50/100{border-color:#fef2f2}.border-red-50/15{border-color:#fef2f226}.border-red-50/20{border-color:#fef2f233}.border-red-50/25{border-color:#fef2f240}.border-red-50/30{border-color:#fef2f24d}.border-red-50/35{border-color:#fef2f259}.border-red-50/40{border-color:#fef2f266}.border-red-50/45{border-color:#fef2f273}.border-red-50/5{border-color:#fef2f20d}.border-red-50/50{border-color:#fef2f280}.border-red-50/55{border-color:#fef2f28c}.border-red-50/60{border-color:#fef2f299}.border-red-50/65{border-color:#fef2f2a6}.border-red-50/70{border-color:#fef2f2b3}.border-red-50/75{border-color:#fef2f2bf}.border-red-50/80{border-color:#fef2f2cc}.border-red-50/85{border-color:#fef2f2d9}.border-red-50/90{border-color:#fef2f2e6}.border-red-50/95{border-color:#fef2f2f2}.border-red-500{--tw-border-opacity: 1;border-color:rgb(239 68 68 / var(--tw-border-opacity, 1))}.border-red-500/0{border-color:#ef444400}.border-red-500/10{border-color:#ef44441a}.border-red-500/100{border-color:#ef4444}.border-red-500/15{border-color:#ef444426}.border-red-500/20{border-color:#ef444433}.border-red-500/25{border-color:#ef444440}.border-red-500/30{border-color:#ef44444d}.border-red-500/35{border-color:#ef444459}.border-red-500/40{border-color:#ef444466}.border-red-500/45{border-color:#ef444473}.border-red-500/5{border-color:#ef44440d}.border-red-500/50{border-color:#ef444480}.border-red-500/55{border-color:#ef44448c}.border-red-500/60{border-color:#ef444499}.border-red-500/65{border-color:#ef4444a6}.border-red-500/70{border-color:#ef4444b3}.border-red-500/75{border-color:#ef4444bf}.border-red-500/80{border-color:#ef4444cc}.border-red-500/85{border-color:#ef4444d9}.border-red-500/90{border-color:#ef4444e6}.border-red-500/95{border-color:#ef4444f2}.border-red-600{--tw-border-opacity: 1;border-color:rgb(220 38 38 / var(--tw-border-opacity, 1))}.border-red-600/0{border-color:#dc262600}.border-red-600/10{border-color:#dc26261a}.border-red-600/100{border-color:#dc2626}.border-red-600/15{border-color:#dc262626}.border-red-600/20{border-color:#dc262633}.border-red-600/25{border-color:#dc262640}.border-red-600/30{border-color:#dc26264d}.border-red-600/35{border-color:#dc262659}.border-red-600/40{border-color:#dc262666}.border-red-600/45{border-color:#dc262673}.border-red-600/5{border-color:#dc26260d}.border-red-600/50{border-color:#dc262680}.border-red-600/55{border-color:#dc26268c}.border-red-600/60{border-color:#dc262699}.border-red-600/65{border-color:#dc2626a6}.border-red-600/70{border-color:#dc2626b3}.border-red-600/75{border-color:#dc2626bf}.border-red-600/80{border-color:#dc2626cc}.border-red-600/85{border-color:#dc2626d9}.border-red-600/90{border-color:#dc2626e6}.border-red-600/95{border-color:#dc2626f2}.border-red-700{--tw-border-opacity: 1;border-color:rgb(185 28 28 / var(--tw-border-opacity, 1))}.border-red-700/0{border-color:#b91c1c00}.border-red-700/10{border-color:#b91c1c1a}.border-red-700/100{border-color:#b91c1c}.border-red-700/15{border-color:#b91c1c26}.border-red-700/20{border-color:#b91c1c33}.border-red-700/25{border-color:#b91c1c40}.border-red-700/30{border-color:#b91c1c4d}.border-red-700/35{border-color:#b91c1c59}.border-red-700/40{border-color:#b91c1c66}.border-red-700/45{border-color:#b91c1c73}.border-red-700/5{border-color:#b91c1c0d}.border-red-700/50{border-color:#b91c1c80}.border-red-700/55{border-color:#b91c1c8c}.border-red-700/60{border-color:#b91c1c99}.border-red-700/65{border-color:#b91c1ca6}.border-red-700/70{border-color:#b91c1cb3}.border-red-700/75{border-color:#b91c1cbf}.border-red-700/80{border-color:#b91c1ccc}.border-red-700/85{border-color:#b91c1cd9}.border-red-700/90{border-color:#b91c1ce6}.border-red-700/95{border-color:#b91c1cf2}.border-red-800{--tw-border-opacity: 1;border-color:rgb(153 27 27 / var(--tw-border-opacity, 1))}.border-red-800/0{border-color:#991b1b00}.border-red-800/10{border-color:#991b1b1a}.border-red-800/100{border-color:#991b1b}.border-red-800/15{border-color:#991b1b26}.border-red-800/20{border-color:#991b1b33}.border-red-800/25{border-color:#991b1b40}.border-red-800/30{border-color:#991b1b4d}.border-red-800/35{border-color:#991b1b59}.border-red-800/40{border-color:#991b1b66}.border-red-800/45{border-color:#991b1b73}.border-red-800/5{border-color:#991b1b0d}.border-red-800/50{border-color:#991b1b80}.border-red-800/55{border-color:#991b1b8c}.border-red-800/60{border-color:#991b1b99}.border-red-800/65{border-color:#991b1ba6}.border-red-800/70{border-color:#991b1bb3}.border-red-800/75{border-color:#991b1bbf}.border-red-800/80{border-color:#991b1bcc}.border-red-800/85{border-color:#991b1bd9}.border-red-800/90{border-color:#991b1be6}.border-red-800/95{border-color:#991b1bf2}.border-red-900{--tw-border-opacity: 1;border-color:rgb(127 29 29 / var(--tw-border-opacity, 1))}.border-red-900/0{border-color:#7f1d1d00}.border-red-900/10{border-color:#7f1d1d1a}.border-red-900/100{border-color:#7f1d1d}.border-red-900/15{border-color:#7f1d1d26}.border-red-900/20{border-color:#7f1d1d33}.border-red-900/25{border-color:#7f1d1d40}.border-red-900/30{border-color:#7f1d1d4d}.border-red-900/35{border-color:#7f1d1d59}.border-red-900/40{border-color:#7f1d1d66}.border-red-900/45{border-color:#7f1d1d73}.border-red-900/5{border-color:#7f1d1d0d}.border-red-900/50{border-color:#7f1d1d80}.border-red-900/55{border-color:#7f1d1d8c}.border-red-900/60{border-color:#7f1d1d99}.border-red-900/65{border-color:#7f1d1da6}.border-red-900/70{border-color:#7f1d1db3}.border-red-900/75{border-color:#7f1d1dbf}.border-red-900/80{border-color:#7f1d1dcc}.border-red-900/85{border-color:#7f1d1dd9}.border-red-900/90{border-color:#7f1d1de6}.border-red-900/95{border-color:#7f1d1df2}.border-transparent{border-color:transparent}.bg-background{background-color:hsl(var(--background))}.bg-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity, 1))}.bg-black/80{background-color:#000c}.bg-blue-100{--tw-bg-opacity: 1;background-color:rgb(219 234 254 / var(--tw-bg-opacity, 1))}.bg-blue-100/0{background-color:#dbeafe00}.bg-blue-100/10{background-color:#dbeafe1a}.bg-blue-100/100{background-color:#dbeafe}.bg-blue-100/15{background-color:#dbeafe26}.bg-blue-100/20{background-color:#dbeafe33}.bg-blue-100/25{background-color:#dbeafe40}.bg-blue-100/30{background-color:#dbeafe4d}.bg-blue-100/35{background-color:#dbeafe59}.bg-blue-100/40{background-color:#dbeafe66}.bg-blue-100/45{background-color:#dbeafe73}.bg-blue-100/5{background-color:#dbeafe0d}.bg-blue-100/50{background-color:#dbeafe80}.bg-blue-100/55{background-color:#dbeafe8c}.bg-blue-100/60{background-color:#dbeafe99}.bg-blue-100/65{background-color:#dbeafea6}.bg-blue-100/70{background-color:#dbeafeb3}.bg-blue-100/75{background-color:#dbeafebf}.bg-blue-100/80{background-color:#dbeafecc}.bg-blue-100/85{background-color:#dbeafed9}.bg-blue-100/90{background-color:#dbeafee6}.bg-blue-100/95{background-color:#dbeafef2}.bg-blue-200{--tw-bg-opacity: 1;background-color:rgb(191 219 254 / var(--tw-bg-opacity, 1))}.bg-blue-200/0{background-color:#bfdbfe00}.bg-blue-200/10{background-color:#bfdbfe1a}.bg-blue-200/100{background-color:#bfdbfe}.bg-blue-200/15{background-color:#bfdbfe26}.bg-blue-200/20{background-color:#bfdbfe33}.bg-blue-200/25{background-color:#bfdbfe40}.bg-blue-200/30{background-color:#bfdbfe4d}.bg-blue-200/35{background-color:#bfdbfe59}.bg-blue-200/40{background-color:#bfdbfe66}.bg-blue-200/45{background-color:#bfdbfe73}.bg-blue-200/5{background-color:#bfdbfe0d}.bg-blue-200/50{background-color:#bfdbfe80}.bg-blue-200/55{background-color:#bfdbfe8c}.bg-blue-200/60{background-color:#bfdbfe99}.bg-blue-200/65{background-color:#bfdbfea6}.bg-blue-200/70{background-color:#bfdbfeb3}.bg-blue-200/75{background-color:#bfdbfebf}.bg-blue-200/80{background-color:#bfdbfecc}.bg-blue-200/85{background-color:#bfdbfed9}.bg-blue-200/90{background-color:#bfdbfee6}.bg-blue-200/95{background-color:#bfdbfef2}.bg-blue-300{--tw-bg-opacity: 1;background-color:rgb(147 197 253 / var(--tw-bg-opacity, 1))}.bg-blue-300/0{background-color:#93c5fd00}.bg-blue-300/10{background-color:#93c5fd1a}.bg-blue-300/100{background-color:#93c5fd}.bg-blue-300/15{background-color:#93c5fd26}.bg-blue-300/20{background-color:#93c5fd33}.bg-blue-300/25{background-color:#93c5fd40}.bg-blue-300/30{background-color:#93c5fd4d}.bg-blue-300/35{background-color:#93c5fd59}.bg-blue-300/40{background-color:#93c5fd66}.bg-blue-300/45{background-color:#93c5fd73}.bg-blue-300/5{background-color:#93c5fd0d}.bg-blue-300/50{background-color:#93c5fd80}.bg-blue-300/55{background-color:#93c5fd8c}.bg-blue-300/60{background-color:#93c5fd99}.bg-blue-300/65{background-color:#93c5fda6}.bg-blue-300/70{background-color:#93c5fdb3}.bg-blue-300/75{background-color:#93c5fdbf}.bg-blue-300/80{background-color:#93c5fdcc}.bg-blue-300/85{background-color:#93c5fdd9}.bg-blue-300/90{background-color:#93c5fde6}.bg-blue-300/95{background-color:#93c5fdf2}.bg-blue-400{--tw-bg-opacity: 1;background-color:rgb(96 165 250 / var(--tw-bg-opacity, 1))}.bg-blue-400/0{background-color:#60a5fa00}.bg-blue-400/10{background-color:#60a5fa1a}.bg-blue-400/100{background-color:#60a5fa}.bg-blue-400/15{background-color:#60a5fa26}.bg-blue-400/20{background-color:#60a5fa33}.bg-blue-400/25{background-color:#60a5fa40}.bg-blue-400/30{background-color:#60a5fa4d}.bg-blue-400/35{background-color:#60a5fa59}.bg-blue-400/40{background-color:#60a5fa66}.bg-blue-400/45{background-color:#60a5fa73}.bg-blue-400/5{background-color:#60a5fa0d}.bg-blue-400/50{background-color:#60a5fa80}.bg-blue-400/55{background-color:#60a5fa8c}.bg-blue-400/60{background-color:#60a5fa99}.bg-blue-400/65{background-color:#60a5faa6}.bg-blue-400/70{background-color:#60a5fab3}.bg-blue-400/75{background-color:#60a5fabf}.bg-blue-400/80{background-color:#60a5facc}.bg-blue-400/85{background-color:#60a5fad9}.bg-blue-400/90{background-color:#60a5fae6}.bg-blue-400/95{background-color:#60a5faf2}.bg-blue-50{--tw-bg-opacity: 1;background-color:rgb(239 246 255 / var(--tw-bg-opacity, 1))}.bg-blue-50/0{background-color:#eff6ff00}.bg-blue-50/10{background-color:#eff6ff1a}.bg-blue-50/100{background-color:#eff6ff}.bg-blue-50/15{background-color:#eff6ff26}.bg-blue-50/20{background-color:#eff6ff33}.bg-blue-50/25{background-color:#eff6ff40}.bg-blue-50/30{background-color:#eff6ff4d}.bg-blue-50/35{background-color:#eff6ff59}.bg-blue-50/40{background-color:#eff6ff66}.bg-blue-50/45{background-color:#eff6ff73}.bg-blue-50/5{background-color:#eff6ff0d}.bg-blue-50/50{background-color:#eff6ff80}.bg-blue-50/55{background-color:#eff6ff8c}.bg-blue-50/60{background-color:#eff6ff99}.bg-blue-50/65{background-color:#eff6ffa6}.bg-blue-50/70{background-color:#eff6ffb3}.bg-blue-50/75{background-color:#eff6ffbf}.bg-blue-50/80{background-color:#eff6ffcc}.bg-blue-50/85{background-color:#eff6ffd9}.bg-blue-50/90{background-color:#eff6ffe6}.bg-blue-50/95{background-color:#eff6fff2}.bg-blue-500{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity, 1))}.bg-blue-500/0{background-color:#3b82f600}.bg-blue-500/10{background-color:#3b82f61a}.bg-blue-500/100{background-color:#3b82f6}.bg-blue-500/15{background-color:#3b82f626}.bg-blue-500/20{background-color:#3b82f633}.bg-blue-500/25{background-color:#3b82f640}.bg-blue-500/30{background-color:#3b82f64d}.bg-blue-500/35{background-color:#3b82f659}.bg-blue-500/40{background-color:#3b82f666}.bg-blue-500/45{background-color:#3b82f673}.bg-blue-500/5{background-color:#3b82f60d}.bg-blue-500/50{background-color:#3b82f680}.bg-blue-500/55{background-color:#3b82f68c}.bg-blue-500/60{background-color:#3b82f699}.bg-blue-500/65{background-color:#3b82f6a6}.bg-blue-500/70{background-color:#3b82f6b3}.bg-blue-500/75{background-color:#3b82f6bf}.bg-blue-500/80{background-color:#3b82f6cc}.bg-blue-500/85{background-color:#3b82f6d9}.bg-blue-500/90{background-color:#3b82f6e6}.bg-blue-500/95{background-color:#3b82f6f2}.bg-blue-600{--tw-bg-opacity: 1;background-color:rgb(37 99 235 / var(--tw-bg-opacity, 1))}.bg-blue-600/0{background-color:#2563eb00}.bg-blue-600/10{background-color:#2563eb1a}.bg-blue-600/100{background-color:#2563eb}.bg-blue-600/15{background-color:#2563eb26}.bg-blue-600/20{background-color:#2563eb33}.bg-blue-600/25{background-color:#2563eb40}.bg-blue-600/30{background-color:#2563eb4d}.bg-blue-600/35{background-color:#2563eb59}.bg-blue-600/40{background-color:#2563eb66}.bg-blue-600/45{background-color:#2563eb73}.bg-blue-600/5{background-color:#2563eb0d}.bg-blue-600/50{background-color:#2563eb80}.bg-blue-600/55{background-color:#2563eb8c}.bg-blue-600/60{background-color:#2563eb99}.bg-blue-600/65{background-color:#2563eba6}.bg-blue-600/70{background-color:#2563ebb3}.bg-blue-600/75{background-color:#2563ebbf}.bg-blue-600/80{background-color:#2563ebcc}.bg-blue-600/85{background-color:#2563ebd9}.bg-blue-600/90{background-color:#2563ebe6}.bg-blue-600/95{background-color:#2563ebf2}.bg-blue-700{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity, 1))}.bg-blue-700/0{background-color:#1d4ed800}.bg-blue-700/10{background-color:#1d4ed81a}.bg-blue-700/100{background-color:#1d4ed8}.bg-blue-700/15{background-color:#1d4ed826}.bg-blue-700/20{background-color:#1d4ed833}.bg-blue-700/25{background-color:#1d4ed840}.bg-blue-700/30{background-color:#1d4ed84d}.bg-blue-700/35{background-color:#1d4ed859}.bg-blue-700/40{background-color:#1d4ed866}.bg-blue-700/45{background-color:#1d4ed873}.bg-blue-700/5{background-color:#1d4ed80d}.bg-blue-700/50{background-color:#1d4ed880}.bg-blue-700/55{background-color:#1d4ed88c}.bg-blue-700/60{background-color:#1d4ed899}.bg-blue-700/65{background-color:#1d4ed8a6}.bg-blue-700/70{background-color:#1d4ed8b3}.bg-blue-700/75{background-color:#1d4ed8bf}.bg-blue-700/80{background-color:#1d4ed8cc}.bg-blue-700/85{background-color:#1d4ed8d9}.bg-blue-700/90{background-color:#1d4ed8e6}.bg-blue-700/95{background-color:#1d4ed8f2}.bg-blue-800{--tw-bg-opacity: 1;background-color:rgb(30 64 175 / var(--tw-bg-opacity, 1))}.bg-blue-800/0{background-color:#1e40af00}.bg-blue-800/10{background-color:#1e40af1a}.bg-blue-800/100{background-color:#1e40af}.bg-blue-800/15{background-color:#1e40af26}.bg-blue-800/20{background-color:#1e40af33}.bg-blue-800/25{background-color:#1e40af40}.bg-blue-800/30{background-color:#1e40af4d}.bg-blue-800/35{background-color:#1e40af59}.bg-blue-800/40{background-color:#1e40af66}.bg-blue-800/45{background-color:#1e40af73}.bg-blue-800/5{background-color:#1e40af0d}.bg-blue-800/50{background-color:#1e40af80}.bg-blue-800/55{background-color:#1e40af8c}.bg-blue-800/60{background-color:#1e40af99}.bg-blue-800/65{background-color:#1e40afa6}.bg-blue-800/70{background-color:#1e40afb3}.bg-blue-800/75{background-color:#1e40afbf}.bg-blue-800/80{background-color:#1e40afcc}.bg-blue-800/85{background-color:#1e40afd9}.bg-blue-800/90{background-color:#1e40afe6}.bg-blue-800/95{background-color:#1e40aff2}.bg-blue-900{--tw-bg-opacity: 1;background-color:rgb(30 58 138 / var(--tw-bg-opacity, 1))}.bg-blue-900/0{background-color:#1e3a8a00}.bg-blue-900/10{background-color:#1e3a8a1a}.bg-blue-900/100{background-color:#1e3a8a}.bg-blue-900/15{background-color:#1e3a8a26}.bg-blue-900/20{background-color:#1e3a8a33}.bg-blue-900/25{background-color:#1e3a8a40}.bg-blue-900/30{background-color:#1e3a8a4d}.bg-blue-900/35{background-color:#1e3a8a59}.bg-blue-900/40{background-color:#1e3a8a66}.bg-blue-900/45{background-color:#1e3a8a73}.bg-blue-900/5{background-color:#1e3a8a0d}.bg-blue-900/50{background-color:#1e3a8a80}.bg-blue-900/55{background-color:#1e3a8a8c}.bg-blue-900/60{background-color:#1e3a8a99}.bg-blue-900/65{background-color:#1e3a8aa6}.bg-blue-900/70{background-color:#1e3a8ab3}.bg-blue-900/75{background-color:#1e3a8abf}.bg-blue-900/80{background-color:#1e3a8acc}.bg-blue-900/85{background-color:#1e3a8ad9}.bg-blue-900/90{background-color:#1e3a8ae6}.bg-blue-900/95{background-color:#1e3a8af2}.bg-card{background-color:hsl(var(--card))}.bg-destructive{background-color:hsl(var(--destructive))}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity, 1))}.bg-gray-100/0{background-color:#f3f4f600}.bg-gray-100/10{background-color:#f3f4f61a}.bg-gray-100/100{background-color:#f3f4f6}.bg-gray-100/15{background-color:#f3f4f626}.bg-gray-100/20{background-color:#f3f4f633}.bg-gray-100/25{background-color:#f3f4f640}.bg-gray-100/30{background-color:#f3f4f64d}.bg-gray-100/35{background-color:#f3f4f659}.bg-gray-100/40{background-color:#f3f4f666}.bg-gray-100/45{background-color:#f3f4f673}.bg-gray-100/5{background-color:#f3f4f60d}.bg-gray-100/50{background-color:#f3f4f680}.bg-gray-100/55{background-color:#f3f4f68c}.bg-gray-100/60{background-color:#f3f4f699}.bg-gray-100/65{background-color:#f3f4f6a6}.bg-gray-100/70{background-color:#f3f4f6b3}.bg-gray-100/75{background-color:#f3f4f6bf}.bg-gray-100/80{background-color:#f3f4f6cc}.bg-gray-100/85{background-color:#f3f4f6d9}.bg-gray-100/90{background-color:#f3f4f6e6}.bg-gray-100/95{background-color:#f3f4f6f2}.bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity, 1))}.bg-gray-200/0{background-color:#e5e7eb00}.bg-gray-200/10{background-color:#e5e7eb1a}.bg-gray-200/100{background-color:#e5e7eb}.bg-gray-200/15{background-color:#e5e7eb26}.bg-gray-200/20{background-color:#e5e7eb33}.bg-gray-200/25{background-color:#e5e7eb40}.bg-gray-200/30{background-color:#e5e7eb4d}.bg-gray-200/35{background-color:#e5e7eb59}.bg-gray-200/40{background-color:#e5e7eb66}.bg-gray-200/45{background-color:#e5e7eb73}.bg-gray-200/5{background-color:#e5e7eb0d}.bg-gray-200/50{background-color:#e5e7eb80}.bg-gray-200/55{background-color:#e5e7eb8c}.bg-gray-200/60{background-color:#e5e7eb99}.bg-gray-200/65{background-color:#e5e7eba6}.bg-gray-200/70{background-color:#e5e7ebb3}.bg-gray-200/75{background-color:#e5e7ebbf}.bg-gray-200/80{background-color:#e5e7ebcc}.bg-gray-200/85{background-color:#e5e7ebd9}.bg-gray-200/90{background-color:#e5e7ebe6}.bg-gray-200/95{background-color:#e5e7ebf2}.bg-gray-300{--tw-bg-opacity: 1;background-color:rgb(209 213 219 / var(--tw-bg-opacity, 1))}.bg-gray-300/0{background-color:#d1d5db00}.bg-gray-300/10{background-color:#d1d5db1a}.bg-gray-300/100{background-color:#d1d5db}.bg-gray-300/15{background-color:#d1d5db26}.bg-gray-300/20{background-color:#d1d5db33}.bg-gray-300/25{background-color:#d1d5db40}.bg-gray-300/30{background-color:#d1d5db4d}.bg-gray-300/35{background-color:#d1d5db59}.bg-gray-300/40{background-color:#d1d5db66}.bg-gray-300/45{background-color:#d1d5db73}.bg-gray-300/5{background-color:#d1d5db0d}.bg-gray-300/50{background-color:#d1d5db80}.bg-gray-300/55{background-color:#d1d5db8c}.bg-gray-300/60{background-color:#d1d5db99}.bg-gray-300/65{background-color:#d1d5dba6}.bg-gray-300/70{background-color:#d1d5dbb3}.bg-gray-300/75{background-color:#d1d5dbbf}.bg-gray-300/80{background-color:#d1d5dbcc}.bg-gray-300/85{background-color:#d1d5dbd9}.bg-gray-300/90{background-color:#d1d5dbe6}.bg-gray-300/95{background-color:#d1d5dbf2}.bg-gray-400{--tw-bg-opacity: 1;background-color:rgb(156 163 175 / var(--tw-bg-opacity, 1))}.bg-gray-400/0{background-color:#9ca3af00}.bg-gray-400/10{background-color:#9ca3af1a}.bg-gray-400/100{background-color:#9ca3af}.bg-gray-400/15{background-color:#9ca3af26}.bg-gray-400/20{background-color:#9ca3af33}.bg-gray-400/25{background-color:#9ca3af40}.bg-gray-400/30{background-color:#9ca3af4d}.bg-gray-400/35{background-color:#9ca3af59}.bg-gray-400/40{background-color:#9ca3af66}.bg-gray-400/45{background-color:#9ca3af73}.bg-gray-400/5{background-color:#9ca3af0d}.bg-gray-400/50{background-color:#9ca3af80}.bg-gray-400/55{background-color:#9ca3af8c}.bg-gray-400/60{background-color:#9ca3af99}.bg-gray-400/65{background-color:#9ca3afa6}.bg-gray-400/70{background-color:#9ca3afb3}.bg-gray-400/75{background-color:#9ca3afbf}.bg-gray-400/80{background-color:#9ca3afcc}.bg-gray-400/85{background-color:#9ca3afd9}.bg-gray-400/90{background-color:#9ca3afe6}.bg-gray-400/95{background-color:#9ca3aff2}.bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))}.bg-gray-50/0{background-color:#f9fafb00}.bg-gray-50/10{background-color:#f9fafb1a}.bg-gray-50/100{background-color:#f9fafb}.bg-gray-50/15{background-color:#f9fafb26}.bg-gray-50/20{background-color:#f9fafb33}.bg-gray-50/25{background-color:#f9fafb40}.bg-gray-50/30{background-color:#f9fafb4d}.bg-gray-50/35{background-color:#f9fafb59}.bg-gray-50/40{background-color:#f9fafb66}.bg-gray-50/45{background-color:#f9fafb73}.bg-gray-50/5{background-color:#f9fafb0d}.bg-gray-50/50{background-color:#f9fafb80}.bg-gray-50/55{background-color:#f9fafb8c}.bg-gray-50/60{background-color:#f9fafb99}.bg-gray-50/65{background-color:#f9fafba6}.bg-gray-50/70{background-color:#f9fafbb3}.bg-gray-50/75{background-color:#f9fafbbf}.bg-gray-50/80{background-color:#f9fafbcc}.bg-gray-50/85{background-color:#f9fafbd9}.bg-gray-50/90{background-color:#f9fafbe6}.bg-gray-50/95{background-color:#f9fafbf2}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity, 1))}.bg-gray-500/0{background-color:#6b728000}.bg-gray-500/10{background-color:#6b72801a}.bg-gray-500/100{background-color:#6b7280}.bg-gray-500/15{background-color:#6b728026}.bg-gray-500/20{background-color:#6b728033}.bg-gray-500/25{background-color:#6b728040}.bg-gray-500/30{background-color:#6b72804d}.bg-gray-500/35{background-color:#6b728059}.bg-gray-500/40{background-color:#6b728066}.bg-gray-500/45{background-color:#6b728073}.bg-gray-500/5{background-color:#6b72800d}.bg-gray-500/50{background-color:#6b728080}.bg-gray-500/55{background-color:#6b72808c}.bg-gray-500/60{background-color:#6b728099}.bg-gray-500/65{background-color:#6b7280a6}.bg-gray-500/70{background-color:#6b7280b3}.bg-gray-500/75{background-color:#6b7280bf}.bg-gray-500/80{background-color:#6b7280cc}.bg-gray-500/85{background-color:#6b7280d9}.bg-gray-500/90{background-color:#6b7280e6}.bg-gray-500/95{background-color:#6b7280f2}.bg-gray-600{--tw-bg-opacity: 1;background-color:rgb(75 85 99 / var(--tw-bg-opacity, 1))}.bg-gray-600/0{background-color:#4b556300}.bg-gray-600/10{background-color:#4b55631a}.bg-gray-600/100{background-color:#4b5563}.bg-gray-600/15{background-color:#4b556326}.bg-gray-600/20{background-color:#4b556333}.bg-gray-600/25{background-color:#4b556340}.bg-gray-600/30{background-color:#4b55634d}.bg-gray-600/35{background-color:#4b556359}.bg-gray-600/40{background-color:#4b556366}.bg-gray-600/45{background-color:#4b556373}.bg-gray-600/5{background-color:#4b55630d}.bg-gray-600/50{background-color:#4b556380}.bg-gray-600/55{background-color:#4b55638c}.bg-gray-600/60{background-color:#4b556399}.bg-gray-600/65{background-color:#4b5563a6}.bg-gray-600/70{background-color:#4b5563b3}.bg-gray-600/75{background-color:#4b5563bf}.bg-gray-600/80{background-color:#4b5563cc}.bg-gray-600/85{background-color:#4b5563d9}.bg-gray-600/90{background-color:#4b5563e6}.bg-gray-600/95{background-color:#4b5563f2}.bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity, 1))}.bg-gray-700/0{background-color:#37415100}.bg-gray-700/10{background-color:#3741511a}.bg-gray-700/100{background-color:#374151}.bg-gray-700/15{background-color:#37415126}.bg-gray-700/20{background-color:#37415133}.bg-gray-700/25{background-color:#37415140}.bg-gray-700/30{background-color:#3741514d}.bg-gray-700/35{background-color:#37415159}.bg-gray-700/40{background-color:#37415166}.bg-gray-700/45{background-color:#37415173}.bg-gray-700/5{background-color:#3741510d}.bg-gray-700/50{background-color:#37415180}.bg-gray-700/55{background-color:#3741518c}.bg-gray-700/60{background-color:#37415199}.bg-gray-700/65{background-color:#374151a6}.bg-gray-700/70{background-color:#374151b3}.bg-gray-700/75{background-color:#374151bf}.bg-gray-700/80{background-color:#374151cc}.bg-gray-700/85{background-color:#374151d9}.bg-gray-700/90{background-color:#374151e6}.bg-gray-700/95{background-color:#374151f2}.bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity, 1))}.bg-gray-800/0{background-color:#1f293700}.bg-gray-800/10{background-color:#1f29371a}.bg-gray-800/100{background-color:#1f2937}.bg-gray-800/15{background-color:#1f293726}.bg-gray-800/20{background-color:#1f293733}.bg-gray-800/25{background-color:#1f293740}.bg-gray-800/30{background-color:#1f29374d}.bg-gray-800/35{background-color:#1f293759}.bg-gray-800/40{background-color:#1f293766}.bg-gray-800/45{background-color:#1f293773}.bg-gray-800/5{background-color:#1f29370d}.bg-gray-800/50{background-color:#1f293780}.bg-gray-800/55{background-color:#1f29378c}.bg-gray-800/60{background-color:#1f293799}.bg-gray-800/65{background-color:#1f2937a6}.bg-gray-800/70{background-color:#1f2937b3}.bg-gray-800/75{background-color:#1f2937bf}.bg-gray-800/80{background-color:#1f2937cc}.bg-gray-800/85{background-color:#1f2937d9}.bg-gray-800/90{background-color:#1f2937e6}.bg-gray-800/95{background-color:#1f2937f2}.bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity, 1))}.bg-gray-900/0{background-color:#11182700}.bg-gray-900/10{background-color:#1118271a}.bg-gray-900/100{background-color:#111827}.bg-gray-900/15{background-color:#11182726}.bg-gray-900/20{background-color:#11182733}.bg-gray-900/25{background-color:#11182740}.bg-gray-900/30{background-color:#1118274d}.bg-gray-900/35{background-color:#11182759}.bg-gray-900/40{background-color:#11182766}.bg-gray-900/45{background-color:#11182773}.bg-gray-900/5{background-color:#1118270d}.bg-gray-900/50{background-color:#11182780}.bg-gray-900/55{background-color:#1118278c}.bg-gray-900/60{background-color:#11182799}.bg-gray-900/65{background-color:#111827a6}.bg-gray-900/70{background-color:#111827b3}.bg-gray-900/75{background-color:#111827bf}.bg-gray-900/80{background-color:#111827cc}.bg-gray-900/85{background-color:#111827d9}.bg-gray-900/90{background-color:#111827e6}.bg-gray-900/95{background-color:#111827f2}.bg-green-100{--tw-bg-opacity: 1;background-color:rgb(220 252 231 / var(--tw-bg-opacity, 1))}.bg-green-100/0{background-color:#dcfce700}.bg-green-100/10{background-color:#dcfce71a}.bg-green-100/100{background-color:#dcfce7}.bg-green-100/15{background-color:#dcfce726}.bg-green-100/20{background-color:#dcfce733}.bg-green-100/25{background-color:#dcfce740}.bg-green-100/30{background-color:#dcfce74d}.bg-green-100/35{background-color:#dcfce759}.bg-green-100/40{background-color:#dcfce766}.bg-green-100/45{background-color:#dcfce773}.bg-green-100/5{background-color:#dcfce70d}.bg-green-100/50{background-color:#dcfce780}.bg-green-100/55{background-color:#dcfce78c}.bg-green-100/60{background-color:#dcfce799}.bg-green-100/65{background-color:#dcfce7a6}.bg-green-100/70{background-color:#dcfce7b3}.bg-green-100/75{background-color:#dcfce7bf}.bg-green-100/80{background-color:#dcfce7cc}.bg-green-100/85{background-color:#dcfce7d9}.bg-green-100/90{background-color:#dcfce7e6}.bg-green-100/95{background-color:#dcfce7f2}.bg-green-200{--tw-bg-opacity: 1;background-color:rgb(187 247 208 / var(--tw-bg-opacity, 1))}.bg-green-200/0{background-color:#bbf7d000}.bg-green-200/10{background-color:#bbf7d01a}.bg-green-200/100{background-color:#bbf7d0}.bg-green-200/15{background-color:#bbf7d026}.bg-green-200/20{background-color:#bbf7d033}.bg-green-200/25{background-color:#bbf7d040}.bg-green-200/30{background-color:#bbf7d04d}.bg-green-200/35{background-color:#bbf7d059}.bg-green-200/40{background-color:#bbf7d066}.bg-green-200/45{background-color:#bbf7d073}.bg-green-200/5{background-color:#bbf7d00d}.bg-green-200/50{background-color:#bbf7d080}.bg-green-200/55{background-color:#bbf7d08c}.bg-green-200/60{background-color:#bbf7d099}.bg-green-200/65{background-color:#bbf7d0a6}.bg-green-200/70{background-color:#bbf7d0b3}.bg-green-200/75{background-color:#bbf7d0bf}.bg-green-200/80{background-color:#bbf7d0cc}.bg-green-200/85{background-color:#bbf7d0d9}.bg-green-200/90{background-color:#bbf7d0e6}.bg-green-200/95{background-color:#bbf7d0f2}.bg-green-300{--tw-bg-opacity: 1;background-color:rgb(134 239 172 / var(--tw-bg-opacity, 1))}.bg-green-300/0{background-color:#86efac00}.bg-green-300/10{background-color:#86efac1a}.bg-green-300/100{background-color:#86efac}.bg-green-300/15{background-color:#86efac26}.bg-green-300/20{background-color:#86efac33}.bg-green-300/25{background-color:#86efac40}.bg-green-300/30{background-color:#86efac4d}.bg-green-300/35{background-color:#86efac59}.bg-green-300/40{background-color:#86efac66}.bg-green-300/45{background-color:#86efac73}.bg-green-300/5{background-color:#86efac0d}.bg-green-300/50{background-color:#86efac80}.bg-green-300/55{background-color:#86efac8c}.bg-green-300/60{background-color:#86efac99}.bg-green-300/65{background-color:#86efaca6}.bg-green-300/70{background-color:#86efacb3}.bg-green-300/75{background-color:#86efacbf}.bg-green-300/80{background-color:#86efaccc}.bg-green-300/85{background-color:#86efacd9}.bg-green-300/90{background-color:#86eface6}.bg-green-300/95{background-color:#86efacf2}.bg-green-400{--tw-bg-opacity: 1;background-color:rgb(74 222 128 / var(--tw-bg-opacity, 1))}.bg-green-400/0{background-color:#4ade8000}.bg-green-400/10{background-color:#4ade801a}.bg-green-400/100{background-color:#4ade80}.bg-green-400/15{background-color:#4ade8026}.bg-green-400/20{background-color:#4ade8033}.bg-green-400/25{background-color:#4ade8040}.bg-green-400/30{background-color:#4ade804d}.bg-green-400/35{background-color:#4ade8059}.bg-green-400/40{background-color:#4ade8066}.bg-green-400/45{background-color:#4ade8073}.bg-green-400/5{background-color:#4ade800d}.bg-green-400/50{background-color:#4ade8080}.bg-green-400/55{background-color:#4ade808c}.bg-green-400/60{background-color:#4ade8099}.bg-green-400/65{background-color:#4ade80a6}.bg-green-400/70{background-color:#4ade80b3}.bg-green-400/75{background-color:#4ade80bf}.bg-green-400/80{background-color:#4ade80cc}.bg-green-400/85{background-color:#4ade80d9}.bg-green-400/90{background-color:#4ade80e6}.bg-green-400/95{background-color:#4ade80f2}.bg-green-50{--tw-bg-opacity: 1;background-color:rgb(240 253 244 / var(--tw-bg-opacity, 1))}.bg-green-50/0{background-color:#f0fdf400}.bg-green-50/10{background-color:#f0fdf41a}.bg-green-50/100{background-color:#f0fdf4}.bg-green-50/15{background-color:#f0fdf426}.bg-green-50/20{background-color:#f0fdf433}.bg-green-50/25{background-color:#f0fdf440}.bg-green-50/30{background-color:#f0fdf44d}.bg-green-50/35{background-color:#f0fdf459}.bg-green-50/40{background-color:#f0fdf466}.bg-green-50/45{background-color:#f0fdf473}.bg-green-50/5{background-color:#f0fdf40d}.bg-green-50/50{background-color:#f0fdf480}.bg-green-50/55{background-color:#f0fdf48c}.bg-green-50/60{background-color:#f0fdf499}.bg-green-50/65{background-color:#f0fdf4a6}.bg-green-50/70{background-color:#f0fdf4b3}.bg-green-50/75{background-color:#f0fdf4bf}.bg-green-50/80{background-color:#f0fdf4cc}.bg-green-50/85{background-color:#f0fdf4d9}.bg-green-50/90{background-color:#f0fdf4e6}.bg-green-50/95{background-color:#f0fdf4f2}.bg-green-500{--tw-bg-opacity: 1;background-color:rgb(34 197 94 / var(--tw-bg-opacity, 1))}.bg-green-500/0{background-color:#22c55e00}.bg-green-500/10{background-color:#22c55e1a}.bg-green-500/100{background-color:#22c55e}.bg-green-500/15{background-color:#22c55e26}.bg-green-500/20{background-color:#22c55e33}.bg-green-500/25{background-color:#22c55e40}.bg-green-500/30{background-color:#22c55e4d}.bg-green-500/35{background-color:#22c55e59}.bg-green-500/40{background-color:#22c55e66}.bg-green-500/45{background-color:#22c55e73}.bg-green-500/5{background-color:#22c55e0d}.bg-green-500/50{background-color:#22c55e80}.bg-green-500/55{background-color:#22c55e8c}.bg-green-500/60{background-color:#22c55e99}.bg-green-500/65{background-color:#22c55ea6}.bg-green-500/70{background-color:#22c55eb3}.bg-green-500/75{background-color:#22c55ebf}.bg-green-500/80{background-color:#22c55ecc}.bg-green-500/85{background-color:#22c55ed9}.bg-green-500/90{background-color:#22c55ee6}.bg-green-500/95{background-color:#22c55ef2}.bg-green-600{--tw-bg-opacity: 1;background-color:rgb(22 163 74 / var(--tw-bg-opacity, 1))}.bg-green-600/0{background-color:#16a34a00}.bg-green-600/10{background-color:#16a34a1a}.bg-green-600/100{background-color:#16a34a}.bg-green-600/15{background-color:#16a34a26}.bg-green-600/20{background-color:#16a34a33}.bg-green-600/25{background-color:#16a34a40}.bg-green-600/30{background-color:#16a34a4d}.bg-green-600/35{background-color:#16a34a59}.bg-green-600/40{background-color:#16a34a66}.bg-green-600/45{background-color:#16a34a73}.bg-green-600/5{background-color:#16a34a0d}.bg-green-600/50{background-color:#16a34a80}.bg-green-600/55{background-color:#16a34a8c}.bg-green-600/60{background-color:#16a34a99}.bg-green-600/65{background-color:#16a34aa6}.bg-green-600/70{background-color:#16a34ab3}.bg-green-600/75{background-color:#16a34abf}.bg-green-600/80{background-color:#16a34acc}.bg-green-600/85{background-color:#16a34ad9}.bg-green-600/90{background-color:#16a34ae6}.bg-green-600/95{background-color:#16a34af2}.bg-green-700{--tw-bg-opacity: 1;background-color:rgb(21 128 61 / var(--tw-bg-opacity, 1))}.bg-green-700/0{background-color:#15803d00}.bg-green-700/10{background-color:#15803d1a}.bg-green-700/100{background-color:#15803d}.bg-green-700/15{background-color:#15803d26}.bg-green-700/20{background-color:#15803d33}.bg-green-700/25{background-color:#15803d40}.bg-green-700/30{background-color:#15803d4d}.bg-green-700/35{background-color:#15803d59}.bg-green-700/40{background-color:#15803d66}.bg-green-700/45{background-color:#15803d73}.bg-green-700/5{background-color:#15803d0d}.bg-green-700/50{background-color:#15803d80}.bg-green-700/55{background-color:#15803d8c}.bg-green-700/60{background-color:#15803d99}.bg-green-700/65{background-color:#15803da6}.bg-green-700/70{background-color:#15803db3}.bg-green-700/75{background-color:#15803dbf}.bg-green-700/80{background-color:#15803dcc}.bg-green-700/85{background-color:#15803dd9}.bg-green-700/90{background-color:#15803de6}.bg-green-700/95{background-color:#15803df2}.bg-green-800{--tw-bg-opacity: 1;background-color:rgb(22 101 52 / var(--tw-bg-opacity, 1))}.bg-green-800/0{background-color:#16653400}.bg-green-800/10{background-color:#1665341a}.bg-green-800/100{background-color:#166534}.bg-green-800/15{background-color:#16653426}.bg-green-800/20{background-color:#16653433}.bg-green-800/25{background-color:#16653440}.bg-green-800/30{background-color:#1665344d}.bg-green-800/35{background-color:#16653459}.bg-green-800/40{background-color:#16653466}.bg-green-800/45{background-color:#16653473}.bg-green-800/5{background-color:#1665340d}.bg-green-800/50{background-color:#16653480}.bg-green-800/55{background-color:#1665348c}.bg-green-800/60{background-color:#16653499}.bg-green-800/65{background-color:#166534a6}.bg-green-800/70{background-color:#166534b3}.bg-green-800/75{background-color:#166534bf}.bg-green-800/80{background-color:#166534cc}.bg-green-800/85{background-color:#166534d9}.bg-green-800/90{background-color:#166534e6}.bg-green-800/95{background-color:#166534f2}.bg-green-900{--tw-bg-opacity: 1;background-color:rgb(20 83 45 / var(--tw-bg-opacity, 1))}.bg-green-900/0{background-color:#14532d00}.bg-green-900/10{background-color:#14532d1a}.bg-green-900/100{background-color:#14532d}.bg-green-900/15{background-color:#14532d26}.bg-green-900/20{background-color:#14532d33}.bg-green-900/25{background-color:#14532d40}.bg-green-900/30{background-color:#14532d4d}.bg-green-900/35{background-color:#14532d59}.bg-green-900/40{background-color:#14532d66}.bg-green-900/45{background-color:#14532d73}.bg-green-900/5{background-color:#14532d0d}.bg-green-900/50{background-color:#14532d80}.bg-green-900/55{background-color:#14532d8c}.bg-green-900/60{background-color:#14532d99}.bg-green-900/65{background-color:#14532da6}.bg-green-900/70{background-color:#14532db3}.bg-green-900/75{background-color:#14532dbf}.bg-green-900/80{background-color:#14532dcc}.bg-green-900/85{background-color:#14532dd9}.bg-green-900/90{background-color:#14532de6}.bg-green-900/95{background-color:#14532df2}.bg-input{background-color:hsl(var(--input))}.bg-muted{background-color:hsl(var(--muted))}.bg-orange-50{--tw-bg-opacity: 1;background-color:rgb(255 247 237 / var(--tw-bg-opacity, 1))}.bg-popover{background-color:hsl(var(--popover))}.bg-primary{background-color:hsl(var(--primary))}.bg-purple-100{--tw-bg-opacity: 1;background-color:rgb(243 232 255 / var(--tw-bg-opacity, 1))}.bg-red-100{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity, 1))}.bg-red-100/0{background-color:#fee2e200}.bg-red-100/10{background-color:#fee2e21a}.bg-red-100/100{background-color:#fee2e2}.bg-red-100/15{background-color:#fee2e226}.bg-red-100/20{background-color:#fee2e233}.bg-red-100/25{background-color:#fee2e240}.bg-red-100/30{background-color:#fee2e24d}.bg-red-100/35{background-color:#fee2e259}.bg-red-100/40{background-color:#fee2e266}.bg-red-100/45{background-color:#fee2e273}.bg-red-100/5{background-color:#fee2e20d}.bg-red-100/50{background-color:#fee2e280}.bg-red-100/55{background-color:#fee2e28c}.bg-red-100/60{background-color:#fee2e299}.bg-red-100/65{background-color:#fee2e2a6}.bg-red-100/70{background-color:#fee2e2b3}.bg-red-100/75{background-color:#fee2e2bf}.bg-red-100/80{background-color:#fee2e2cc}.bg-red-100/85{background-color:#fee2e2d9}.bg-red-100/90{background-color:#fee2e2e6}.bg-red-100/95{background-color:#fee2e2f2}.bg-red-200{--tw-bg-opacity: 1;background-color:rgb(254 202 202 / var(--tw-bg-opacity, 1))}.bg-red-200/0{background-color:#fecaca00}.bg-red-200/10{background-color:#fecaca1a}.bg-red-200/100{background-color:#fecaca}.bg-red-200/15{background-color:#fecaca26}.bg-red-200/20{background-color:#fecaca33}.bg-red-200/25{background-color:#fecaca40}.bg-red-200/30{background-color:#fecaca4d}.bg-red-200/35{background-color:#fecaca59}.bg-red-200/40{background-color:#fecaca66}.bg-red-200/45{background-color:#fecaca73}.bg-red-200/5{background-color:#fecaca0d}.bg-red-200/50{background-color:#fecaca80}.bg-red-200/55{background-color:#fecaca8c}.bg-red-200/60{background-color:#fecaca99}.bg-red-200/65{background-color:#fecacaa6}.bg-red-200/70{background-color:#fecacab3}.bg-red-200/75{background-color:#fecacabf}.bg-red-200/80{background-color:#fecacacc}.bg-red-200/85{background-color:#fecacad9}.bg-red-200/90{background-color:#fecacae6}.bg-red-200/95{background-color:#fecacaf2}.bg-red-300{--tw-bg-opacity: 1;background-color:rgb(252 165 165 / var(--tw-bg-opacity, 1))}.bg-red-300/0{background-color:#fca5a500}.bg-red-300/10{background-color:#fca5a51a}.bg-red-300/100{background-color:#fca5a5}.bg-red-300/15{background-color:#fca5a526}.bg-red-300/20{background-color:#fca5a533}.bg-red-300/25{background-color:#fca5a540}.bg-red-300/30{background-color:#fca5a54d}.bg-red-300/35{background-color:#fca5a559}.bg-red-300/40{background-color:#fca5a566}.bg-red-300/45{background-color:#fca5a573}.bg-red-300/5{background-color:#fca5a50d}.bg-red-300/50{background-color:#fca5a580}.bg-red-300/55{background-color:#fca5a58c}.bg-red-300/60{background-color:#fca5a599}.bg-red-300/65{background-color:#fca5a5a6}.bg-red-300/70{background-color:#fca5a5b3}.bg-red-300/75{background-color:#fca5a5bf}.bg-red-300/80{background-color:#fca5a5cc}.bg-red-300/85{background-color:#fca5a5d9}.bg-red-300/90{background-color:#fca5a5e6}.bg-red-300/95{background-color:#fca5a5f2}.bg-red-400{--tw-bg-opacity: 1;background-color:rgb(248 113 113 / var(--tw-bg-opacity, 1))}.bg-red-400/0{background-color:#f8717100}.bg-red-400/10{background-color:#f871711a}.bg-red-400/100{background-color:#f87171}.bg-red-400/15{background-color:#f8717126}.bg-red-400/20{background-color:#f8717133}.bg-red-400/25{background-color:#f8717140}.bg-red-400/30{background-color:#f871714d}.bg-red-400/35{background-color:#f8717159}.bg-red-400/40{background-color:#f8717166}.bg-red-400/45{background-color:#f8717173}.bg-red-400/5{background-color:#f871710d}.bg-red-400/50{background-color:#f8717180}.bg-red-400/55{background-color:#f871718c}.bg-red-400/60{background-color:#f8717199}.bg-red-400/65{background-color:#f87171a6}.bg-red-400/70{background-color:#f87171b3}.bg-red-400/75{background-color:#f87171bf}.bg-red-400/80{background-color:#f87171cc}.bg-red-400/85{background-color:#f87171d9}.bg-red-400/90{background-color:#f87171e6}.bg-red-400/95{background-color:#f87171f2}.bg-red-50{--tw-bg-opacity: 1;background-color:rgb(254 242 242 / var(--tw-bg-opacity, 1))}.bg-red-50/0{background-color:#fef2f200}.bg-red-50/10{background-color:#fef2f21a}.bg-red-50/100{background-color:#fef2f2}.bg-red-50/15{background-color:#fef2f226}.bg-red-50/20{background-color:#fef2f233}.bg-red-50/25{background-color:#fef2f240}.bg-red-50/30{background-color:#fef2f24d}.bg-red-50/35{background-color:#fef2f259}.bg-red-50/40{background-color:#fef2f266}.bg-red-50/45{background-color:#fef2f273}.bg-red-50/5{background-color:#fef2f20d}.bg-red-50/50{background-color:#fef2f280}.bg-red-50/55{background-color:#fef2f28c}.bg-red-50/60{background-color:#fef2f299}.bg-red-50/65{background-color:#fef2f2a6}.bg-red-50/70{background-color:#fef2f2b3}.bg-red-50/75{background-color:#fef2f2bf}.bg-red-50/80{background-color:#fef2f2cc}.bg-red-50/85{background-color:#fef2f2d9}.bg-red-50/90{background-color:#fef2f2e6}.bg-red-50/95{background-color:#fef2f2f2}.bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity, 1))}.bg-red-500/0{background-color:#ef444400}.bg-red-500/10{background-color:#ef44441a}.bg-red-500/100{background-color:#ef4444}.bg-red-500/15{background-color:#ef444426}.bg-red-500/20{background-color:#ef444433}.bg-red-500/25{background-color:#ef444440}.bg-red-500/30{background-color:#ef44444d}.bg-red-500/35{background-color:#ef444459}.bg-red-500/40{background-color:#ef444466}.bg-red-500/45{background-color:#ef444473}.bg-red-500/5{background-color:#ef44440d}.bg-red-500/50{background-color:#ef444480}.bg-red-500/55{background-color:#ef44448c}.bg-red-500/60{background-color:#ef444499}.bg-red-500/65{background-color:#ef4444a6}.bg-red-500/70{background-color:#ef4444b3}.bg-red-500/75{background-color:#ef4444bf}.bg-red-500/80{background-color:#ef4444cc}.bg-red-500/85{background-color:#ef4444d9}.bg-red-500/90{background-color:#ef4444e6}.bg-red-500/95{background-color:#ef4444f2}.bg-red-600{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity, 1))}.bg-red-600/0{background-color:#dc262600}.bg-red-600/10{background-color:#dc26261a}.bg-red-600/100{background-color:#dc2626}.bg-red-600/15{background-color:#dc262626}.bg-red-600/20{background-color:#dc262633}.bg-red-600/25{background-color:#dc262640}.bg-red-600/30{background-color:#dc26264d}.bg-red-600/35{background-color:#dc262659}.bg-red-600/40{background-color:#dc262666}.bg-red-600/45{background-color:#dc262673}.bg-red-600/5{background-color:#dc26260d}.bg-red-600/50{background-color:#dc262680}.bg-red-600/55{background-color:#dc26268c}.bg-red-600/60{background-color:#dc262699}.bg-red-600/65{background-color:#dc2626a6}.bg-red-600/70{background-color:#dc2626b3}.bg-red-600/75{background-color:#dc2626bf}.bg-red-600/80{background-color:#dc2626cc}.bg-red-600/85{background-color:#dc2626d9}.bg-red-600/90{background-color:#dc2626e6}.bg-red-600/95{background-color:#dc2626f2}.bg-red-700{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity, 1))}.bg-red-700/0{background-color:#b91c1c00}.bg-red-700/10{background-color:#b91c1c1a}.bg-red-700/100{background-color:#b91c1c}.bg-red-700/15{background-color:#b91c1c26}.bg-red-700/20{background-color:#b91c1c33}.bg-red-700/25{background-color:#b91c1c40}.bg-red-700/30{background-color:#b91c1c4d}.bg-red-700/35{background-color:#b91c1c59}.bg-red-700/40{background-color:#b91c1c66}.bg-red-700/45{background-color:#b91c1c73}.bg-red-700/5{background-color:#b91c1c0d}.bg-red-700/50{background-color:#b91c1c80}.bg-red-700/55{background-color:#b91c1c8c}.bg-red-700/60{background-color:#b91c1c99}.bg-red-700/65{background-color:#b91c1ca6}.bg-red-700/70{background-color:#b91c1cb3}.bg-red-700/75{background-color:#b91c1cbf}.bg-red-700/80{background-color:#b91c1ccc}.bg-red-700/85{background-color:#b91c1cd9}.bg-red-700/90{background-color:#b91c1ce6}.bg-red-700/95{background-color:#b91c1cf2}.bg-red-800{--tw-bg-opacity: 1;background-color:rgb(153 27 27 / var(--tw-bg-opacity, 1))}.bg-red-800/0{background-color:#991b1b00}.bg-red-800/10{background-color:#991b1b1a}.bg-red-800/100{background-color:#991b1b}.bg-red-800/15{background-color:#991b1b26}.bg-red-800/20{background-color:#991b1b33}.bg-red-800/25{background-color:#991b1b40}.bg-red-800/30{background-color:#991b1b4d}.bg-red-800/35{background-color:#991b1b59}.bg-red-800/40{background-color:#991b1b66}.bg-red-800/45{background-color:#991b1b73}.bg-red-800/5{background-color:#991b1b0d}.bg-red-800/50{background-color:#991b1b80}.bg-red-800/55{background-color:#991b1b8c}.bg-red-800/60{background-color:#991b1b99}.bg-red-800/65{background-color:#991b1ba6}.bg-red-800/70{background-color:#991b1bb3}.bg-red-800/75{background-color:#991b1bbf}.bg-red-800/80{background-color:#991b1bcc}.bg-red-800/85{background-color:#991b1bd9}.bg-red-800/90{background-color:#991b1be6}.bg-red-800/95{background-color:#991b1bf2}.bg-red-900{--tw-bg-opacity: 1;background-color:rgb(127 29 29 / var(--tw-bg-opacity, 1))}.bg-red-900/0{background-color:#7f1d1d00}.bg-red-900/10{background-color:#7f1d1d1a}.bg-red-900/100{background-color:#7f1d1d}.bg-red-900/15{background-color:#7f1d1d26}.bg-red-900/20{background-color:#7f1d1d33}.bg-red-900/25{background-color:#7f1d1d40}.bg-red-900/30{background-color:#7f1d1d4d}.bg-red-900/35{background-color:#7f1d1d59}.bg-red-900/40{background-color:#7f1d1d66}.bg-red-900/45{background-color:#7f1d1d73}.bg-red-900/5{background-color:#7f1d1d0d}.bg-red-900/50{background-color:#7f1d1d80}.bg-red-900/55{background-color:#7f1d1d8c}.bg-red-900/60{background-color:#7f1d1d99}.bg-red-900/65{background-color:#7f1d1da6}.bg-red-900/70{background-color:#7f1d1db3}.bg-red-900/75{background-color:#7f1d1dbf}.bg-red-900/80{background-color:#7f1d1dcc}.bg-red-900/85{background-color:#7f1d1dd9}.bg-red-900/90{background-color:#7f1d1de6}.bg-red-900/95{background-color:#7f1d1df2}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.stroke-2{stroke-width:2}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-0{padding-bottom:0}.pb-2{padding-bottom:.5rem}.pl-7{padding-left:1.75rem}.pl-8{padding-left:2rem}.pr-2{padding-right:.5rem}.pr-8{padding-right:2rem}.pt-0{padding-top:0}.pt-4{padding-top:1rem}.pt-6{padding-top:1.5rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.font-sans{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-[11px]{font-size:11px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.leading-none{line-height:1}.leading-relaxed{line-height:1.625}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.text-blue-100{--tw-text-opacity: 1;color:rgb(219 234 254 / var(--tw-text-opacity, 1))}.text-blue-100/0{color:#dbeafe00}.text-blue-100/10{color:#dbeafe1a}.text-blue-100/100{color:#dbeafe}.text-blue-100/15{color:#dbeafe26}.text-blue-100/20{color:#dbeafe33}.text-blue-100/25{color:#dbeafe40}.text-blue-100/30{color:#dbeafe4d}.text-blue-100/35{color:#dbeafe59}.text-blue-100/40{color:#dbeafe66}.text-blue-100/45{color:#dbeafe73}.text-blue-100/5{color:#dbeafe0d}.text-blue-100/50{color:#dbeafe80}.text-blue-100/55{color:#dbeafe8c}.text-blue-100/60{color:#dbeafe99}.text-blue-100/65{color:#dbeafea6}.text-blue-100/70{color:#dbeafeb3}.text-blue-100/75{color:#dbeafebf}.text-blue-100/80{color:#dbeafecc}.text-blue-100/85{color:#dbeafed9}.text-blue-100/90{color:#dbeafee6}.text-blue-100/95{color:#dbeafef2}.text-blue-200{--tw-text-opacity: 1;color:rgb(191 219 254 / var(--tw-text-opacity, 1))}.text-blue-200/0{color:#bfdbfe00}.text-blue-200/10{color:#bfdbfe1a}.text-blue-200/100{color:#bfdbfe}.text-blue-200/15{color:#bfdbfe26}.text-blue-200/20{color:#bfdbfe33}.text-blue-200/25{color:#bfdbfe40}.text-blue-200/30{color:#bfdbfe4d}.text-blue-200/35{color:#bfdbfe59}.text-blue-200/40{color:#bfdbfe66}.text-blue-200/45{color:#bfdbfe73}.text-blue-200/5{color:#bfdbfe0d}.text-blue-200/50{color:#bfdbfe80}.text-blue-200/55{color:#bfdbfe8c}.text-blue-200/60{color:#bfdbfe99}.text-blue-200/65{color:#bfdbfea6}.text-blue-200/70{color:#bfdbfeb3}.text-blue-200/75{color:#bfdbfebf}.text-blue-200/80{color:#bfdbfecc}.text-blue-200/85{color:#bfdbfed9}.text-blue-200/90{color:#bfdbfee6}.text-blue-200/95{color:#bfdbfef2}.text-blue-300{--tw-text-opacity: 1;color:rgb(147 197 253 / var(--tw-text-opacity, 1))}.text-blue-300/0{color:#93c5fd00}.text-blue-300/10{color:#93c5fd1a}.text-blue-300/100{color:#93c5fd}.text-blue-300/15{color:#93c5fd26}.text-blue-300/20{color:#93c5fd33}.text-blue-300/25{color:#93c5fd40}.text-blue-300/30{color:#93c5fd4d}.text-blue-300/35{color:#93c5fd59}.text-blue-300/40{color:#93c5fd66}.text-blue-300/45{color:#93c5fd73}.text-blue-300/5{color:#93c5fd0d}.text-blue-300/50{color:#93c5fd80}.text-blue-300/55{color:#93c5fd8c}.text-blue-300/60{color:#93c5fd99}.text-blue-300/65{color:#93c5fda6}.text-blue-300/70{color:#93c5fdb3}.text-blue-300/75{color:#93c5fdbf}.text-blue-300/80{color:#93c5fdcc}.text-blue-300/85{color:#93c5fdd9}.text-blue-300/90{color:#93c5fde6}.text-blue-300/95{color:#93c5fdf2}.text-blue-400{--tw-text-opacity: 1;color:rgb(96 165 250 / var(--tw-text-opacity, 1))}.text-blue-400/0{color:#60a5fa00}.text-blue-400/10{color:#60a5fa1a}.text-blue-400/100{color:#60a5fa}.text-blue-400/15{color:#60a5fa26}.text-blue-400/20{color:#60a5fa33}.text-blue-400/25{color:#60a5fa40}.text-blue-400/30{color:#60a5fa4d}.text-blue-400/35{color:#60a5fa59}.text-blue-400/40{color:#60a5fa66}.text-blue-400/45{color:#60a5fa73}.text-blue-400/5{color:#60a5fa0d}.text-blue-400/50{color:#60a5fa80}.text-blue-400/55{color:#60a5fa8c}.text-blue-400/60{color:#60a5fa99}.text-blue-400/65{color:#60a5faa6}.text-blue-400/70{color:#60a5fab3}.text-blue-400/75{color:#60a5fabf}.text-blue-400/80{color:#60a5facc}.text-blue-400/85{color:#60a5fad9}.text-blue-400/90{color:#60a5fae6}.text-blue-400/95{color:#60a5faf2}.text-blue-50{--tw-text-opacity: 1;color:rgb(239 246 255 / var(--tw-text-opacity, 1))}.text-blue-50/0{color:#eff6ff00}.text-blue-50/10{color:#eff6ff1a}.text-blue-50/100{color:#eff6ff}.text-blue-50/15{color:#eff6ff26}.text-blue-50/20{color:#eff6ff33}.text-blue-50/25{color:#eff6ff40}.text-blue-50/30{color:#eff6ff4d}.text-blue-50/35{color:#eff6ff59}.text-blue-50/40{color:#eff6ff66}.text-blue-50/45{color:#eff6ff73}.text-blue-50/5{color:#eff6ff0d}.text-blue-50/50{color:#eff6ff80}.text-blue-50/55{color:#eff6ff8c}.text-blue-50/60{color:#eff6ff99}.text-blue-50/65{color:#eff6ffa6}.text-blue-50/70{color:#eff6ffb3}.text-blue-50/75{color:#eff6ffbf}.text-blue-50/80{color:#eff6ffcc}.text-blue-50/85{color:#eff6ffd9}.text-blue-50/90{color:#eff6ffe6}.text-blue-50/95{color:#eff6fff2}.text-blue-500{--tw-text-opacity: 1;color:rgb(59 130 246 / var(--tw-text-opacity, 1))}.text-blue-500/0{color:#3b82f600}.text-blue-500/10{color:#3b82f61a}.text-blue-500/100{color:#3b82f6}.text-blue-500/15{color:#3b82f626}.text-blue-500/20{color:#3b82f633}.text-blue-500/25{color:#3b82f640}.text-blue-500/30{color:#3b82f64d}.text-blue-500/35{color:#3b82f659}.text-blue-500/40{color:#3b82f666}.text-blue-500/45{color:#3b82f673}.text-blue-500/5{color:#3b82f60d}.text-blue-500/50{color:#3b82f680}.text-blue-500/55{color:#3b82f68c}.text-blue-500/60{color:#3b82f699}.text-blue-500/65{color:#3b82f6a6}.text-blue-500/70{color:#3b82f6b3}.text-blue-500/75{color:#3b82f6bf}.text-blue-500/80{color:#3b82f6cc}.text-blue-500/85{color:#3b82f6d9}.text-blue-500/90{color:#3b82f6e6}.text-blue-500/95{color:#3b82f6f2}.text-blue-600{--tw-text-opacity: 1;color:rgb(37 99 235 / var(--tw-text-opacity, 1))}.text-blue-600/0{color:#2563eb00}.text-blue-600/10{color:#2563eb1a}.text-blue-600/100{color:#2563eb}.text-blue-600/15{color:#2563eb26}.text-blue-600/20{color:#2563eb33}.text-blue-600/25{color:#2563eb40}.text-blue-600/30{color:#2563eb4d}.text-blue-600/35{color:#2563eb59}.text-blue-600/40{color:#2563eb66}.text-blue-600/45{color:#2563eb73}.text-blue-600/5{color:#2563eb0d}.text-blue-600/50{color:#2563eb80}.text-blue-600/55{color:#2563eb8c}.text-blue-600/60{color:#2563eb99}.text-blue-600/65{color:#2563eba6}.text-blue-600/70{color:#2563ebb3}.text-blue-600/75{color:#2563ebbf}.text-blue-600/80{color:#2563ebcc}.text-blue-600/85{color:#2563ebd9}.text-blue-600/90{color:#2563ebe6}.text-blue-600/95{color:#2563ebf2}.text-blue-700{--tw-text-opacity: 1;color:rgb(29 78 216 / var(--tw-text-opacity, 1))}.text-blue-700/0{color:#1d4ed800}.text-blue-700/10{color:#1d4ed81a}.text-blue-700/100{color:#1d4ed8}.text-blue-700/15{color:#1d4ed826}.text-blue-700/20{color:#1d4ed833}.text-blue-700/25{color:#1d4ed840}.text-blue-700/30{color:#1d4ed84d}.text-blue-700/35{color:#1d4ed859}.text-blue-700/40{color:#1d4ed866}.text-blue-700/45{color:#1d4ed873}.text-blue-700/5{color:#1d4ed80d}.text-blue-700/50{color:#1d4ed880}.text-blue-700/55{color:#1d4ed88c}.text-blue-700/60{color:#1d4ed899}.text-blue-700/65{color:#1d4ed8a6}.text-blue-700/70{color:#1d4ed8b3}.text-blue-700/75{color:#1d4ed8bf}.text-blue-700/80{color:#1d4ed8cc}.text-blue-700/85{color:#1d4ed8d9}.text-blue-700/90{color:#1d4ed8e6}.text-blue-700/95{color:#1d4ed8f2}.text-blue-800{--tw-text-opacity: 1;color:rgb(30 64 175 / var(--tw-text-opacity, 1))}.text-blue-800/0{color:#1e40af00}.text-blue-800/10{color:#1e40af1a}.text-blue-800/100{color:#1e40af}.text-blue-800/15{color:#1e40af26}.text-blue-800/20{color:#1e40af33}.text-blue-800/25{color:#1e40af40}.text-blue-800/30{color:#1e40af4d}.text-blue-800/35{color:#1e40af59}.text-blue-800/40{color:#1e40af66}.text-blue-800/45{color:#1e40af73}.text-blue-800/5{color:#1e40af0d}.text-blue-800/50{color:#1e40af80}.text-blue-800/55{color:#1e40af8c}.text-blue-800/60{color:#1e40af99}.text-blue-800/65{color:#1e40afa6}.text-blue-800/70{color:#1e40afb3}.text-blue-800/75{color:#1e40afbf}.text-blue-800/80{color:#1e40afcc}.text-blue-800/85{color:#1e40afd9}.text-blue-800/90{color:#1e40afe6}.text-blue-800/95{color:#1e40aff2}.text-blue-900{--tw-text-opacity: 1;color:rgb(30 58 138 / var(--tw-text-opacity, 1))}.text-blue-900/0{color:#1e3a8a00}.text-blue-900/10{color:#1e3a8a1a}.text-blue-900/100{color:#1e3a8a}.text-blue-900/15{color:#1e3a8a26}.text-blue-900/20{color:#1e3a8a33}.text-blue-900/25{color:#1e3a8a40}.text-blue-900/30{color:#1e3a8a4d}.text-blue-900/35{color:#1e3a8a59}.text-blue-900/40{color:#1e3a8a66}.text-blue-900/45{color:#1e3a8a73}.text-blue-900/5{color:#1e3a8a0d}.text-blue-900/50{color:#1e3a8a80}.text-blue-900/55{color:#1e3a8a8c}.text-blue-900/60{color:#1e3a8a99}.text-blue-900/65{color:#1e3a8aa6}.text-blue-900/70{color:#1e3a8ab3}.text-blue-900/75{color:#1e3a8abf}.text-blue-900/80{color:#1e3a8acc}.text-blue-900/85{color:#1e3a8ad9}.text-blue-900/90{color:#1e3a8ae6}.text-blue-900/95{color:#1e3a8af2}.text-card-foreground{color:hsl(var(--card-foreground))}.text-current{color:currentColor}.text-destructive{color:hsl(var(--destructive))}.text-destructive-foreground{color:hsl(var(--destructive-foreground))}.text-foreground{color:hsl(var(--foreground))}.text-foreground/50{color:hsl(var(--foreground) / .5)}.text-gray-100{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity, 1))}.text-gray-100/0{color:#f3f4f600}.text-gray-100/10{color:#f3f4f61a}.text-gray-100/100{color:#f3f4f6}.text-gray-100/15{color:#f3f4f626}.text-gray-100/20{color:#f3f4f633}.text-gray-100/25{color:#f3f4f640}.text-gray-100/30{color:#f3f4f64d}.text-gray-100/35{color:#f3f4f659}.text-gray-100/40{color:#f3f4f666}.text-gray-100/45{color:#f3f4f673}.text-gray-100/5{color:#f3f4f60d}.text-gray-100/50{color:#f3f4f680}.text-gray-100/55{color:#f3f4f68c}.text-gray-100/60{color:#f3f4f699}.text-gray-100/65{color:#f3f4f6a6}.text-gray-100/70{color:#f3f4f6b3}.text-gray-100/75{color:#f3f4f6bf}.text-gray-100/80{color:#f3f4f6cc}.text-gray-100/85{color:#f3f4f6d9}.text-gray-100/90{color:#f3f4f6e6}.text-gray-100/95{color:#f3f4f6f2}.text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity, 1))}.text-gray-200/0{color:#e5e7eb00}.text-gray-200/10{color:#e5e7eb1a}.text-gray-200/100{color:#e5e7eb}.text-gray-200/15{color:#e5e7eb26}.text-gray-200/20{color:#e5e7eb33}.text-gray-200/25{color:#e5e7eb40}.text-gray-200/30{color:#e5e7eb4d}.text-gray-200/35{color:#e5e7eb59}.text-gray-200/40{color:#e5e7eb66}.text-gray-200/45{color:#e5e7eb73}.text-gray-200/5{color:#e5e7eb0d}.text-gray-200/50{color:#e5e7eb80}.text-gray-200/55{color:#e5e7eb8c}.text-gray-200/60{color:#e5e7eb99}.text-gray-200/65{color:#e5e7eba6}.text-gray-200/70{color:#e5e7ebb3}.text-gray-200/75{color:#e5e7ebbf}.text-gray-200/80{color:#e5e7ebcc}.text-gray-200/85{color:#e5e7ebd9}.text-gray-200/90{color:#e5e7ebe6}.text-gray-200/95{color:#e5e7ebf2}.text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity, 1))}.text-gray-300/0{color:#d1d5db00}.text-gray-300/10{color:#d1d5db1a}.text-gray-300/100{color:#d1d5db}.text-gray-300/15{color:#d1d5db26}.text-gray-300/20{color:#d1d5db33}.text-gray-300/25{color:#d1d5db40}.text-gray-300/30{color:#d1d5db4d}.text-gray-300/35{color:#d1d5db59}.text-gray-300/40{color:#d1d5db66}.text-gray-300/45{color:#d1d5db73}.text-gray-300/5{color:#d1d5db0d}.text-gray-300/50{color:#d1d5db80}.text-gray-300/55{color:#d1d5db8c}.text-gray-300/60{color:#d1d5db99}.text-gray-300/65{color:#d1d5dba6}.text-gray-300/70{color:#d1d5dbb3}.text-gray-300/75{color:#d1d5dbbf}.text-gray-300/80{color:#d1d5dbcc}.text-gray-300/85{color:#d1d5dbd9}.text-gray-300/90{color:#d1d5dbe6}.text-gray-300/95{color:#d1d5dbf2}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity, 1))}.text-gray-400/0{color:#9ca3af00}.text-gray-400/10{color:#9ca3af1a}.text-gray-400/100{color:#9ca3af}.text-gray-400/15{color:#9ca3af26}.text-gray-400/20{color:#9ca3af33}.text-gray-400/25{color:#9ca3af40}.text-gray-400/30{color:#9ca3af4d}.text-gray-400/35{color:#9ca3af59}.text-gray-400/40{color:#9ca3af66}.text-gray-400/45{color:#9ca3af73}.text-gray-400/5{color:#9ca3af0d}.text-gray-400/50{color:#9ca3af80}.text-gray-400/55{color:#9ca3af8c}.text-gray-400/60{color:#9ca3af99}.text-gray-400/65{color:#9ca3afa6}.text-gray-400/70{color:#9ca3afb3}.text-gray-400/75{color:#9ca3afbf}.text-gray-400/80{color:#9ca3afcc}.text-gray-400/85{color:#9ca3afd9}.text-gray-400/90{color:#9ca3afe6}.text-gray-400/95{color:#9ca3aff2}.text-gray-50{--tw-text-opacity: 1;color:rgb(249 250 251 / var(--tw-text-opacity, 1))}.text-gray-50/0{color:#f9fafb00}.text-gray-50/10{color:#f9fafb1a}.text-gray-50/100{color:#f9fafb}.text-gray-50/15{color:#f9fafb26}.text-gray-50/20{color:#f9fafb33}.text-gray-50/25{color:#f9fafb40}.text-gray-50/30{color:#f9fafb4d}.text-gray-50/35{color:#f9fafb59}.text-gray-50/40{color:#f9fafb66}.text-gray-50/45{color:#f9fafb73}.text-gray-50/5{color:#f9fafb0d}.text-gray-50/50{color:#f9fafb80}.text-gray-50/55{color:#f9fafb8c}.text-gray-50/60{color:#f9fafb99}.text-gray-50/65{color:#f9fafba6}.text-gray-50/70{color:#f9fafbb3}.text-gray-50/75{color:#f9fafbbf}.text-gray-50/80{color:#f9fafbcc}.text-gray-50/85{color:#f9fafbd9}.text-gray-50/90{color:#f9fafbe6}.text-gray-50/95{color:#f9fafbf2}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity, 1))}.text-gray-500/0{color:#6b728000}.text-gray-500/10{color:#6b72801a}.text-gray-500/100{color:#6b7280}.text-gray-500/15{color:#6b728026}.text-gray-500/20{color:#6b728033}.text-gray-500/25{color:#6b728040}.text-gray-500/30{color:#6b72804d}.text-gray-500/35{color:#6b728059}.text-gray-500/40{color:#6b728066}.text-gray-500/45{color:#6b728073}.text-gray-500/5{color:#6b72800d}.text-gray-500/50{color:#6b728080}.text-gray-500/55{color:#6b72808c}.text-gray-500/60{color:#6b728099}.text-gray-500/65{color:#6b7280a6}.text-gray-500/70{color:#6b7280b3}.text-gray-500/75{color:#6b7280bf}.text-gray-500/80{color:#6b7280cc}.text-gray-500/85{color:#6b7280d9}.text-gray-500/90{color:#6b7280e6}.text-gray-500/95{color:#6b7280f2}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity, 1))}.text-gray-600/0{color:#4b556300}.text-gray-600/10{color:#4b55631a}.text-gray-600/100{color:#4b5563}.text-gray-600/15{color:#4b556326}.text-gray-600/20{color:#4b556333}.text-gray-600/25{color:#4b556340}.text-gray-600/30{color:#4b55634d}.text-gray-600/35{color:#4b556359}.text-gray-600/40{color:#4b556366}.text-gray-600/45{color:#4b556373}.text-gray-600/5{color:#4b55630d}.text-gray-600/50{color:#4b556380}.text-gray-600/55{color:#4b55638c}.text-gray-600/60{color:#4b556399}.text-gray-600/65{color:#4b5563a6}.text-gray-600/70{color:#4b5563b3}.text-gray-600/75{color:#4b5563bf}.text-gray-600/80{color:#4b5563cc}.text-gray-600/85{color:#4b5563d9}.text-gray-600/90{color:#4b5563e6}.text-gray-600/95{color:#4b5563f2}.text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity, 1))}.text-gray-700/0{color:#37415100}.text-gray-700/10{color:#3741511a}.text-gray-700/100{color:#374151}.text-gray-700/15{color:#37415126}.text-gray-700/20{color:#37415133}.text-gray-700/25{color:#37415140}.text-gray-700/30{color:#3741514d}.text-gray-700/35{color:#37415159}.text-gray-700/40{color:#37415166}.text-gray-700/45{color:#37415173}.text-gray-700/5{color:#3741510d}.text-gray-700/50{color:#37415180}.text-gray-700/55{color:#3741518c}.text-gray-700/60{color:#37415199}.text-gray-700/65{color:#374151a6}.text-gray-700/70{color:#374151b3}.text-gray-700/75{color:#374151bf}.text-gray-700/80{color:#374151cc}.text-gray-700/85{color:#374151d9}.text-gray-700/90{color:#374151e6}.text-gray-700/95{color:#374151f2}.text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity, 1))}.text-gray-800/0{color:#1f293700}.text-gray-800/10{color:#1f29371a}.text-gray-800/100{color:#1f2937}.text-gray-800/15{color:#1f293726}.text-gray-800/20{color:#1f293733}.text-gray-800/25{color:#1f293740}.text-gray-800/30{color:#1f29374d}.text-gray-800/35{color:#1f293759}.text-gray-800/40{color:#1f293766}.text-gray-800/45{color:#1f293773}.text-gray-800/5{color:#1f29370d}.text-gray-800/50{color:#1f293780}.text-gray-800/55{color:#1f29378c}.text-gray-800/60{color:#1f293799}.text-gray-800/65{color:#1f2937a6}.text-gray-800/70{color:#1f2937b3}.text-gray-800/75{color:#1f2937bf}.text-gray-800/80{color:#1f2937cc}.text-gray-800/85{color:#1f2937d9}.text-gray-800/90{color:#1f2937e6}.text-gray-800/95{color:#1f2937f2}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity, 1))}.text-gray-900/0{color:#11182700}.text-gray-900/10{color:#1118271a}.text-gray-900/100{color:#111827}.text-gray-900/15{color:#11182726}.text-gray-900/20{color:#11182733}.text-gray-900/25{color:#11182740}.text-gray-900/30{color:#1118274d}.text-gray-900/35{color:#11182759}.text-gray-900/40{color:#11182766}.text-gray-900/45{color:#11182773}.text-gray-900/5{color:#1118270d}.text-gray-900/50{color:#11182780}.text-gray-900/55{color:#1118278c}.text-gray-900/60{color:#11182799}.text-gray-900/65{color:#111827a6}.text-gray-900/70{color:#111827b3}.text-gray-900/75{color:#111827bf}.text-gray-900/80{color:#111827cc}.text-gray-900/85{color:#111827d9}.text-gray-900/90{color:#111827e6}.text-gray-900/95{color:#111827f2}.text-green-100{--tw-text-opacity: 1;color:rgb(220 252 231 / var(--tw-text-opacity, 1))}.text-green-100/0{color:#dcfce700}.text-green-100/10{color:#dcfce71a}.text-green-100/100{color:#dcfce7}.text-green-100/15{color:#dcfce726}.text-green-100/20{color:#dcfce733}.text-green-100/25{color:#dcfce740}.text-green-100/30{color:#dcfce74d}.text-green-100/35{color:#dcfce759}.text-green-100/40{color:#dcfce766}.text-green-100/45{color:#dcfce773}.text-green-100/5{color:#dcfce70d}.text-green-100/50{color:#dcfce780}.text-green-100/55{color:#dcfce78c}.text-green-100/60{color:#dcfce799}.text-green-100/65{color:#dcfce7a6}.text-green-100/70{color:#dcfce7b3}.text-green-100/75{color:#dcfce7bf}.text-green-100/80{color:#dcfce7cc}.text-green-100/85{color:#dcfce7d9}.text-green-100/90{color:#dcfce7e6}.text-green-100/95{color:#dcfce7f2}.text-green-200{--tw-text-opacity: 1;color:rgb(187 247 208 / var(--tw-text-opacity, 1))}.text-green-200/0{color:#bbf7d000}.text-green-200/10{color:#bbf7d01a}.text-green-200/100{color:#bbf7d0}.text-green-200/15{color:#bbf7d026}.text-green-200/20{color:#bbf7d033}.text-green-200/25{color:#bbf7d040}.text-green-200/30{color:#bbf7d04d}.text-green-200/35{color:#bbf7d059}.text-green-200/40{color:#bbf7d066}.text-green-200/45{color:#bbf7d073}.text-green-200/5{color:#bbf7d00d}.text-green-200/50{color:#bbf7d080}.text-green-200/55{color:#bbf7d08c}.text-green-200/60{color:#bbf7d099}.text-green-200/65{color:#bbf7d0a6}.text-green-200/70{color:#bbf7d0b3}.text-green-200/75{color:#bbf7d0bf}.text-green-200/80{color:#bbf7d0cc}.text-green-200/85{color:#bbf7d0d9}.text-green-200/90{color:#bbf7d0e6}.text-green-200/95{color:#bbf7d0f2}.text-green-300{--tw-text-opacity: 1;color:rgb(134 239 172 / var(--tw-text-opacity, 1))}.text-green-300/0{color:#86efac00}.text-green-300/10{color:#86efac1a}.text-green-300/100{color:#86efac}.text-green-300/15{color:#86efac26}.text-green-300/20{color:#86efac33}.text-green-300/25{color:#86efac40}.text-green-300/30{color:#86efac4d}.text-green-300/35{color:#86efac59}.text-green-300/40{color:#86efac66}.text-green-300/45{color:#86efac73}.text-green-300/5{color:#86efac0d}.text-green-300/50{color:#86efac80}.text-green-300/55{color:#86efac8c}.text-green-300/60{color:#86efac99}.text-green-300/65{color:#86efaca6}.text-green-300/70{color:#86efacb3}.text-green-300/75{color:#86efacbf}.text-green-300/80{color:#86efaccc}.text-green-300/85{color:#86efacd9}.text-green-300/90{color:#86eface6}.text-green-300/95{color:#86efacf2}.text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity, 1))}.text-green-400/0{color:#4ade8000}.text-green-400/10{color:#4ade801a}.text-green-400/100{color:#4ade80}.text-green-400/15{color:#4ade8026}.text-green-400/20{color:#4ade8033}.text-green-400/25{color:#4ade8040}.text-green-400/30{color:#4ade804d}.text-green-400/35{color:#4ade8059}.text-green-400/40{color:#4ade8066}.text-green-400/45{color:#4ade8073}.text-green-400/5{color:#4ade800d}.text-green-400/50{color:#4ade8080}.text-green-400/55{color:#4ade808c}.text-green-400/60{color:#4ade8099}.text-green-400/65{color:#4ade80a6}.text-green-400/70{color:#4ade80b3}.text-green-400/75{color:#4ade80bf}.text-green-400/80{color:#4ade80cc}.text-green-400/85{color:#4ade80d9}.text-green-400/90{color:#4ade80e6}.text-green-400/95{color:#4ade80f2}.text-green-50{--tw-text-opacity: 1;color:rgb(240 253 244 / var(--tw-text-opacity, 1))}.text-green-50/0{color:#f0fdf400}.text-green-50/10{color:#f0fdf41a}.text-green-50/100{color:#f0fdf4}.text-green-50/15{color:#f0fdf426}.text-green-50/20{color:#f0fdf433}.text-green-50/25{color:#f0fdf440}.text-green-50/30{color:#f0fdf44d}.text-green-50/35{color:#f0fdf459}.text-green-50/40{color:#f0fdf466}.text-green-50/45{color:#f0fdf473}.text-green-50/5{color:#f0fdf40d}.text-green-50/50{color:#f0fdf480}.text-green-50/55{color:#f0fdf48c}.text-green-50/60{color:#f0fdf499}.text-green-50/65{color:#f0fdf4a6}.text-green-50/70{color:#f0fdf4b3}.text-green-50/75{color:#f0fdf4bf}.text-green-50/80{color:#f0fdf4cc}.text-green-50/85{color:#f0fdf4d9}.text-green-50/90{color:#f0fdf4e6}.text-green-50/95{color:#f0fdf4f2}.text-green-500{--tw-text-opacity: 1;color:rgb(34 197 94 / var(--tw-text-opacity, 1))}.text-green-500/0{color:#22c55e00}.text-green-500/10{color:#22c55e1a}.text-green-500/100{color:#22c55e}.text-green-500/15{color:#22c55e26}.text-green-500/20{color:#22c55e33}.text-green-500/25{color:#22c55e40}.text-green-500/30{color:#22c55e4d}.text-green-500/35{color:#22c55e59}.text-green-500/40{color:#22c55e66}.text-green-500/45{color:#22c55e73}.text-green-500/5{color:#22c55e0d}.text-green-500/50{color:#22c55e80}.text-green-500/55{color:#22c55e8c}.text-green-500/60{color:#22c55e99}.text-green-500/65{color:#22c55ea6}.text-green-500/70{color:#22c55eb3}.text-green-500/75{color:#22c55ebf}.text-green-500/80{color:#22c55ecc}.text-green-500/85{color:#22c55ed9}.text-green-500/90{color:#22c55ee6}.text-green-500/95{color:#22c55ef2}.text-green-600{--tw-text-opacity: 1;color:rgb(22 163 74 / var(--tw-text-opacity, 1))}.text-green-600/0{color:#16a34a00}.text-green-600/10{color:#16a34a1a}.text-green-600/100{color:#16a34a}.text-green-600/15{color:#16a34a26}.text-green-600/20{color:#16a34a33}.text-green-600/25{color:#16a34a40}.text-green-600/30{color:#16a34a4d}.text-green-600/35{color:#16a34a59}.text-green-600/40{color:#16a34a66}.text-green-600/45{color:#16a34a73}.text-green-600/5{color:#16a34a0d}.text-green-600/50{color:#16a34a80}.text-green-600/55{color:#16a34a8c}.text-green-600/60{color:#16a34a99}.text-green-600/65{color:#16a34aa6}.text-green-600/70{color:#16a34ab3}.text-green-600/75{color:#16a34abf}.text-green-600/80{color:#16a34acc}.text-green-600/85{color:#16a34ad9}.text-green-600/90{color:#16a34ae6}.text-green-600/95{color:#16a34af2}.text-green-700{--tw-text-opacity: 1;color:rgb(21 128 61 / var(--tw-text-opacity, 1))}.text-green-700/0{color:#15803d00}.text-green-700/10{color:#15803d1a}.text-green-700/100{color:#15803d}.text-green-700/15{color:#15803d26}.text-green-700/20{color:#15803d33}.text-green-700/25{color:#15803d40}.text-green-700/30{color:#15803d4d}.text-green-700/35{color:#15803d59}.text-green-700/40{color:#15803d66}.text-green-700/45{color:#15803d73}.text-green-700/5{color:#15803d0d}.text-green-700/50{color:#15803d80}.text-green-700/55{color:#15803d8c}.text-green-700/60{color:#15803d99}.text-green-700/65{color:#15803da6}.text-green-700/70{color:#15803db3}.text-green-700/75{color:#15803dbf}.text-green-700/80{color:#15803dcc}.text-green-700/85{color:#15803dd9}.text-green-700/90{color:#15803de6}.text-green-700/95{color:#15803df2}.text-green-800{--tw-text-opacity: 1;color:rgb(22 101 52 / var(--tw-text-opacity, 1))}.text-green-800/0{color:#16653400}.text-green-800/10{color:#1665341a}.text-green-800/100{color:#166534}.text-green-800/15{color:#16653426}.text-green-800/20{color:#16653433}.text-green-800/25{color:#16653440}.text-green-800/30{color:#1665344d}.text-green-800/35{color:#16653459}.text-green-800/40{color:#16653466}.text-green-800/45{color:#16653473}.text-green-800/5{color:#1665340d}.text-green-800/50{color:#16653480}.text-green-800/55{color:#1665348c}.text-green-800/60{color:#16653499}.text-green-800/65{color:#166534a6}.text-green-800/70{color:#166534b3}.text-green-800/75{color:#166534bf}.text-green-800/80{color:#166534cc}.text-green-800/85{color:#166534d9}.text-green-800/90{color:#166534e6}.text-green-800/95{color:#166534f2}.text-green-900{--tw-text-opacity: 1;color:rgb(20 83 45 / var(--tw-text-opacity, 1))}.text-green-900/0{color:#14532d00}.text-green-900/10{color:#14532d1a}.text-green-900/100{color:#14532d}.text-green-900/15{color:#14532d26}.text-green-900/20{color:#14532d33}.text-green-900/25{color:#14532d40}.text-green-900/30{color:#14532d4d}.text-green-900/35{color:#14532d59}.text-green-900/40{color:#14532d66}.text-green-900/45{color:#14532d73}.text-green-900/5{color:#14532d0d}.text-green-900/50{color:#14532d80}.text-green-900/55{color:#14532d8c}.text-green-900/60{color:#14532d99}.text-green-900/65{color:#14532da6}.text-green-900/70{color:#14532db3}.text-green-900/75{color:#14532dbf}.text-green-900/80{color:#14532dcc}.text-green-900/85{color:#14532dd9}.text-green-900/90{color:#14532de6}.text-green-900/95{color:#14532df2}.text-muted-foreground{color:hsl(var(--muted-foreground))}.text-popover-foreground{color:hsl(var(--popover-foreground))}.text-red-100{--tw-text-opacity: 1;color:rgb(254 226 226 / var(--tw-text-opacity, 1))}.text-red-100/0{color:#fee2e200}.text-red-100/10{color:#fee2e21a}.text-red-100/100{color:#fee2e2}.text-red-100/15{color:#fee2e226}.text-red-100/20{color:#fee2e233}.text-red-100/25{color:#fee2e240}.text-red-100/30{color:#fee2e24d}.text-red-100/35{color:#fee2e259}.text-red-100/40{color:#fee2e266}.text-red-100/45{color:#fee2e273}.text-red-100/5{color:#fee2e20d}.text-red-100/50{color:#fee2e280}.text-red-100/55{color:#fee2e28c}.text-red-100/60{color:#fee2e299}.text-red-100/65{color:#fee2e2a6}.text-red-100/70{color:#fee2e2b3}.text-red-100/75{color:#fee2e2bf}.text-red-100/80{color:#fee2e2cc}.text-red-100/85{color:#fee2e2d9}.text-red-100/90{color:#fee2e2e6}.text-red-100/95{color:#fee2e2f2}.text-red-200{--tw-text-opacity: 1;color:rgb(254 202 202 / var(--tw-text-opacity, 1))}.text-red-200/0{color:#fecaca00}.text-red-200/10{color:#fecaca1a}.text-red-200/100{color:#fecaca}.text-red-200/15{color:#fecaca26}.text-red-200/20{color:#fecaca33}.text-red-200/25{color:#fecaca40}.text-red-200/30{color:#fecaca4d}.text-red-200/35{color:#fecaca59}.text-red-200/40{color:#fecaca66}.text-red-200/45{color:#fecaca73}.text-red-200/5{color:#fecaca0d}.text-red-200/50{color:#fecaca80}.text-red-200/55{color:#fecaca8c}.text-red-200/60{color:#fecaca99}.text-red-200/65{color:#fecacaa6}.text-red-200/70{color:#fecacab3}.text-red-200/75{color:#fecacabf}.text-red-200/80{color:#fecacacc}.text-red-200/85{color:#fecacad9}.text-red-200/90{color:#fecacae6}.text-red-200/95{color:#fecacaf2}.text-red-300{--tw-text-opacity: 1;color:rgb(252 165 165 / var(--tw-text-opacity, 1))}.text-red-300/0{color:#fca5a500}.text-red-300/10{color:#fca5a51a}.text-red-300/100{color:#fca5a5}.text-red-300/15{color:#fca5a526}.text-red-300/20{color:#fca5a533}.text-red-300/25{color:#fca5a540}.text-red-300/30{color:#fca5a54d}.text-red-300/35{color:#fca5a559}.text-red-300/40{color:#fca5a566}.text-red-300/45{color:#fca5a573}.text-red-300/5{color:#fca5a50d}.text-red-300/50{color:#fca5a580}.text-red-300/55{color:#fca5a58c}.text-red-300/60{color:#fca5a599}.text-red-300/65{color:#fca5a5a6}.text-red-300/70{color:#fca5a5b3}.text-red-300/75{color:#fca5a5bf}.text-red-300/80{color:#fca5a5cc}.text-red-300/85{color:#fca5a5d9}.text-red-300/90{color:#fca5a5e6}.text-red-300/95{color:#fca5a5f2}.text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity, 1))}.text-red-400/0{color:#f8717100}.text-red-400/10{color:#f871711a}.text-red-400/100{color:#f87171}.text-red-400/15{color:#f8717126}.text-red-400/20{color:#f8717133}.text-red-400/25{color:#f8717140}.text-red-400/30{color:#f871714d}.text-red-400/35{color:#f8717159}.text-red-400/40{color:#f8717166}.text-red-400/45{color:#f8717173}.text-red-400/5{color:#f871710d}.text-red-400/50{color:#f8717180}.text-red-400/55{color:#f871718c}.text-red-400/60{color:#f8717199}.text-red-400/65{color:#f87171a6}.text-red-400/70{color:#f87171b3}.text-red-400/75{color:#f87171bf}.text-red-400/80{color:#f87171cc}.text-red-400/85{color:#f87171d9}.text-red-400/90{color:#f87171e6}.text-red-400/95{color:#f87171f2}.text-red-50{--tw-text-opacity: 1;color:rgb(254 242 242 / var(--tw-text-opacity, 1))}.text-red-50/0{color:#fef2f200}.text-red-50/10{color:#fef2f21a}.text-red-50/100{color:#fef2f2}.text-red-50/15{color:#fef2f226}.text-red-50/20{color:#fef2f233}.text-red-50/25{color:#fef2f240}.text-red-50/30{color:#fef2f24d}.text-red-50/35{color:#fef2f259}.text-red-50/40{color:#fef2f266}.text-red-50/45{color:#fef2f273}.text-red-50/5{color:#fef2f20d}.text-red-50/50{color:#fef2f280}.text-red-50/55{color:#fef2f28c}.text-red-50/60{color:#fef2f299}.text-red-50/65{color:#fef2f2a6}.text-red-50/70{color:#fef2f2b3}.text-red-50/75{color:#fef2f2bf}.text-red-50/80{color:#fef2f2cc}.text-red-50/85{color:#fef2f2d9}.text-red-50/90{color:#fef2f2e6}.text-red-50/95{color:#fef2f2f2}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity, 1))}.text-red-500/0{color:#ef444400}.text-red-500/10{color:#ef44441a}.text-red-500/100{color:#ef4444}.text-red-500/15{color:#ef444426}.text-red-500/20{color:#ef444433}.text-red-500/25{color:#ef444440}.text-red-500/30{color:#ef44444d}.text-red-500/35{color:#ef444459}.text-red-500/40{color:#ef444466}.text-red-500/45{color:#ef444473}.text-red-500/5{color:#ef44440d}.text-red-500/50{color:#ef444480}.text-red-500/55{color:#ef44448c}.text-red-500/60{color:#ef444499}.text-red-500/65{color:#ef4444a6}.text-red-500/70{color:#ef4444b3}.text-red-500/75{color:#ef4444bf}.text-red-500/80{color:#ef4444cc}.text-red-500/85{color:#ef4444d9}.text-red-500/90{color:#ef4444e6}.text-red-500/95{color:#ef4444f2}.text-red-600{--tw-text-opacity: 1;color:rgb(220 38 38 / var(--tw-text-opacity, 1))}.text-red-600/0{color:#dc262600}.text-red-600/10{color:#dc26261a}.text-red-600/100{color:#dc2626}.text-red-600/15{color:#dc262626}.text-red-600/20{color:#dc262633}.text-red-600/25{color:#dc262640}.text-red-600/30{color:#dc26264d}.text-red-600/35{color:#dc262659}.text-red-600/40{color:#dc262666}.text-red-600/45{color:#dc262673}.text-red-600/5{color:#dc26260d}.text-red-600/50{color:#dc262680}.text-red-600/55{color:#dc26268c}.text-red-600/60{color:#dc262699}.text-red-600/65{color:#dc2626a6}.text-red-600/70{color:#dc2626b3}.text-red-600/75{color:#dc2626bf}.text-red-600/80{color:#dc2626cc}.text-red-600/85{color:#dc2626d9}.text-red-600/90{color:#dc2626e6}.text-red-600/95{color:#dc2626f2}.text-red-700{--tw-text-opacity: 1;color:rgb(185 28 28 / var(--tw-text-opacity, 1))}.text-red-700/0{color:#b91c1c00}.text-red-700/10{color:#b91c1c1a}.text-red-700/100{color:#b91c1c}.text-red-700/15{color:#b91c1c26}.text-red-700/20{color:#b91c1c33}.text-red-700/25{color:#b91c1c40}.text-red-700/30{color:#b91c1c4d}.text-red-700/35{color:#b91c1c59}.text-red-700/40{color:#b91c1c66}.text-red-700/45{color:#b91c1c73}.text-red-700/5{color:#b91c1c0d}.text-red-700/50{color:#b91c1c80}.text-red-700/55{color:#b91c1c8c}.text-red-700/60{color:#b91c1c99}.text-red-700/65{color:#b91c1ca6}.text-red-700/70{color:#b91c1cb3}.text-red-700/75{color:#b91c1cbf}.text-red-700/80{color:#b91c1ccc}.text-red-700/85{color:#b91c1cd9}.text-red-700/90{color:#b91c1ce6}.text-red-700/95{color:#b91c1cf2}.text-red-800{--tw-text-opacity: 1;color:rgb(153 27 27 / var(--tw-text-opacity, 1))}.text-red-800/0{color:#991b1b00}.text-red-800/10{color:#991b1b1a}.text-red-800/100{color:#991b1b}.text-red-800/15{color:#991b1b26}.text-red-800/20{color:#991b1b33}.text-red-800/25{color:#991b1b40}.text-red-800/30{color:#991b1b4d}.text-red-800/35{color:#991b1b59}.text-red-800/40{color:#991b1b66}.text-red-800/45{color:#991b1b73}.text-red-800/5{color:#991b1b0d}.text-red-800/50{color:#991b1b80}.text-red-800/55{color:#991b1b8c}.text-red-800/60{color:#991b1b99}.text-red-800/65{color:#991b1ba6}.text-red-800/70{color:#991b1bb3}.text-red-800/75{color:#991b1bbf}.text-red-800/80{color:#991b1bcc}.text-red-800/85{color:#991b1bd9}.text-red-800/90{color:#991b1be6}.text-red-800/95{color:#991b1bf2}.text-red-900{--tw-text-opacity: 1;color:rgb(127 29 29 / var(--tw-text-opacity, 1))}.text-red-900/0{color:#7f1d1d00}.text-red-900/10{color:#7f1d1d1a}.text-red-900/100{color:#7f1d1d}.text-red-900/15{color:#7f1d1d26}.text-red-900/20{color:#7f1d1d33}.text-red-900/25{color:#7f1d1d40}.text-red-900/30{color:#7f1d1d4d}.text-red-900/35{color:#7f1d1d59}.text-red-900/40{color:#7f1d1d66}.text-red-900/45{color:#7f1d1d73}.text-red-900/5{color:#7f1d1d0d}.text-red-900/50{color:#7f1d1d80}.text-red-900/55{color:#7f1d1d8c}.text-red-900/60{color:#7f1d1d99}.text-red-900/65{color:#7f1d1da6}.text-red-900/70{color:#7f1d1db3}.text-red-900/75{color:#7f1d1dbf}.text-red-900/80{color:#7f1d1dcc}.text-red-900/85{color:#7f1d1dd9}.text-red-900/90{color:#7f1d1de6}.text-red-900/95{color:#7f1d1df2}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.underline{text-decoration-line:underline}.line-through{text-decoration-line:line-through}.underline-offset-4{text-underline-offset:4px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-25{opacity:.25}.opacity-30{opacity:.3}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-90{opacity:.9}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-none{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.ring-0{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-ring{--tw-ring-color: hsl(var(--ring))}.ring-offset-background{--tw-ring-offset-color: hsl(var(--background))}.drop-shadow{--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / .1)) drop-shadow(0 1px 1px rgb(0 0 0 / .06));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.grayscale{--tw-grayscale: grayscale(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.animate-in{animation-duration:.3s;animation-fill-mode:both;animation-timing-function:cubic-bezier(.4,0,.2,1)}.fade-in-0{animation-name:fadeIn}.zoom-in-95{animation-name:zoomIn}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes zoomIn{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.app-container{max-width:1200px;margin:0 auto;padding:20px}@media (max-width: 768px){.app-container{padding:15px}}@media (max-width: 480px){.app-container{padding:10px}}.app-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:30px;padding-bottom:15px;border-bottom:1px solid #e0e0e0}@media (max-width: 768px){.app-header{flex-direction:column;align-items:flex-start;gap:10px}}.app-header h1{margin:0;color:#333}@media (max-width: 480px){.app-header h1{font-size:1.5rem}}.user-info{display:flex;align-items:center;gap:15px}@media (max-width: 480px){.user-info{gap:10px;flex-wrap:wrap}}.app-main{background-color:#fff;padding:20px;border-radius:8px;box-shadow:0 2px 4px #0000001a}@media (max-width: 768px){.app-main{padding:15px}}@media (max-width: 480px){.app-main{padding:10px;border-radius:6px}}.schema-selector{display:flex;align-items:center;gap:15px;margin-bottom:20px}@media (max-width: 768px){.schema-selector{flex-direction:column;align-items:flex-start;gap:10px}}.loading{text-align:center;padding:20px;color:#666}.error-message{background-color:#ffebee;color:#c62828;padding:10px 15px;border-radius:4px;margin-bottom:20px}@media (max-width: 480px){.error-message{padding:8px 12px;font-size:14px}}.import-job-status{margin-top:20px;padding:15px;background-color:#e8f5e9;border-radius:4px}@media (max-width: 480px){.import-job-status{padding:10px}}.login-container{max-width:400px;margin:100px auto;padding:30px;background-color:#fff;border-radius:8px;box-shadow:0 2px 10px #0000001a}@media (max-width: 768px){.login-container{max-width:85%;margin:60px auto;padding:20px}}@media (max-width: 480px){.login-container{max-width:95%;margin:30px auto;padding:15px}}.login-container h2{margin-top:0;margin-bottom:20px;text-align:center;color:#333}@media (max-width: 480px){.login-container h2{font-size:1.5rem;margin-bottom:15px}}.form-group{margin-bottom:15px}.form-group label{display:block;margin-bottom:5px;font-weight:500}.form-group input{width:100%;padding:8px 12px;border-radius:4px;border:1px solid #ccc;box-sizing:border-box}.file:border-0::file-selector-button{border-width:0px}.file:bg-transparent::file-selector-button{background-color:transparent}.file:text-sm::file-selector-button{font-size:.875rem;line-height:1.25rem}.file:font-medium::file-selector-button{font-weight:500}.placeholder:text-gray-500::-moz-placeholder{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity, 1))}.placeholder:text-gray-500::placeholder{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity, 1))}.placeholder:text-muted-foreground::-moz-placeholder{color:hsl(var(--muted-foreground))}.placeholder:text-muted-foreground::placeholder{color:hsl(var(--muted-foreground))}.before:absolute:before{content:var(--tw-content);position:absolute}.before:inset-0:before{content:var(--tw-content);inset:0}.before:-z-10:before{content:var(--tw-content);z-index:-10}.before:rounded-full:before{content:var(--tw-content);border-radius:9999px}.before:bg-green-500:before{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(34 197 94 / var(--tw-bg-opacity, 1))}.before:content-['']:before{--tw-content: "";content:var(--tw-content)}.hover:border-gray-400:hover{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity, 1))}.hover:bg-blue-100:hover{--tw-bg-opacity: 1;background-color:rgb(219 234 254 / var(--tw-bg-opacity, 1))}.hover:bg-blue-700:hover{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity, 1))}.hover:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity, 1))}.hover:bg-gray-200:hover{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity, 1))}.hover:bg-gray-50:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))}.hover:bg-red-100:hover{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity, 1))}.hover:bg-red-700:hover{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity, 1))}.hover:bg-secondary:hover{background-color:hsl(var(--secondary))}.hover:text-blue-700:hover{--tw-text-opacity: 1;color:rgb(29 78 216 / var(--tw-text-opacity, 1))}.hover:text-blue-900:hover{--tw-text-opacity: 1;color:rgb(30 58 138 / var(--tw-text-opacity, 1))}.hover:text-foreground:hover{color:hsl(var(--foreground))}.hover:text-gray-900:hover{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity, 1))}.hover:underline:hover{text-decoration-line:underline}.hover:opacity-100:hover{opacity:1}.focus:border-blue-500:focus{--tw-border-opacity: 1;border-color:rgb(59 130 246 / var(--tw-border-opacity, 1))}.focus:bg-blue-100:focus{--tw-bg-opacity: 1;background-color:rgb(219 234 254 / var(--tw-bg-opacity, 1))}.focus:bg-white:focus{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.focus:text-blue-900:focus{--tw-text-opacity: 1;color:rgb(30 58 138 / var(--tw-text-opacity, 1))}.focus:opacity-100:focus{opacity:1}.focus:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus:ring-blue-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1))}.focus:ring-ring:focus{--tw-ring-color: hsl(var(--ring))}.focus:ring-offset-2:focus{--tw-ring-offset-width: 2px}.focus-visible:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible:ring-2:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible:ring-blue-500:focus-visible{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1))}.focus-visible:ring-gray-500:focus-visible{--tw-ring-opacity: 1;--tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1))}.focus-visible:ring-red-500:focus-visible{--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1))}.focus-visible:ring-ring:focus-visible{--tw-ring-color: hsl(var(--ring))}.focus-visible:ring-offset-2:focus-visible{--tw-ring-offset-width: 2px}.focus-visible:ring-offset-background:focus-visible{--tw-ring-offset-color: hsl(var(--background))}.disabled:pointer-events-none:disabled{pointer-events:none}.disabled:cursor-not-allowed:disabled{cursor:not-allowed}.disabled:bg-gray-50:disabled{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))}.disabled:opacity-50:disabled{opacity:.5}.group:hover .group-hover:opacity-100{opacity:1}.group.destructive .group-[.destructive]:border-muted/40{border-color:hsl(var(--muted) / .4)}.group.destructive .group-[.destructive]:text-red-300{--tw-text-opacity: 1;color:rgb(252 165 165 / var(--tw-text-opacity, 1))}.group.destructive .group-[.destructive]:hover:border-destructive/30:hover{border-color:hsl(var(--destructive) / .3)}.group.destructive .group-[.destructive]:hover:bg-destructive:hover{background-color:hsl(var(--destructive))}.group.destructive .group-[.destructive]:hover:text-destructive-foreground:hover{color:hsl(var(--destructive-foreground))}.group.destructive .group-[.destructive]:hover:text-red-50:hover{--tw-text-opacity: 1;color:rgb(254 242 242 / var(--tw-text-opacity, 1))}.group.destructive .group-[.destructive]:focus:ring-destructive:focus{--tw-ring-color: hsl(var(--destructive))}.group.destructive .group-[.destructive]:focus:ring-red-400:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1))}.group.destructive .group-[.destructive]:focus:ring-offset-red-600:focus{--tw-ring-offset-color: #dc2626}.data-[disabled]:pointer-events-none[data-disabled]{pointer-events:none}.data-[side=bottom]:translate-y-1[data-side=bottom]{--tw-translate-y: .25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-[side=left]:-translate-x-1[data-side=left]{--tw-translate-x: -.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-[side=right]:translate-x-1[data-side=right]{--tw-translate-x: .25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-[side=top]:-translate-y-1[data-side=top]{--tw-translate-y: -.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-[state=checked]:translate-x-5[data-state=checked]{--tw-translate-x: 1.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-[state=unchecked]:translate-x-0[data-state=unchecked],.data-[swipe=cancel]:translate-x-0[data-swipe=cancel]{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)][data-swipe=end]{--tw-translate-x: var(--radix-toast-swipe-end-x);transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)][data-swipe=move]{--tw-translate-x: var(--radix-toast-swipe-move-x);transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-[disabled]:cursor-not-allowed[data-disabled]{cursor:not-allowed}.data-[state=checked]:bg-blue-50[data-state=checked]{--tw-bg-opacity: 1;background-color:rgb(239 246 255 / var(--tw-bg-opacity, 1))}.data-[state=checked]:bg-primary[data-state=checked]{background-color:hsl(var(--primary))}.data-[state=open]:bg-accent[data-state=open]{background-color:hsl(var(--accent))}.data-[state=unchecked]:bg-input[data-state=unchecked]{background-color:hsl(var(--input))}.data-[state=checked]:font-medium[data-state=checked]{font-weight:500}.data-[state=checked]:text-blue-900[data-state=checked]{--tw-text-opacity: 1;color:rgb(30 58 138 / var(--tw-text-opacity, 1))}.data-[state=checked]:text-primary-foreground[data-state=checked]{color:hsl(var(--primary-foreground))}.data-[state=open]:text-muted-foreground[data-state=open]{color:hsl(var(--muted-foreground))}.data-[disabled]:opacity-40[data-disabled]{opacity:.4}.data-[swipe=move]:transition-none[data-swipe=move]{transition-property:none}.data-[state=open]:animate-in[data-state=open]{animation-duration:.3s;animation-fill-mode:both;animation-timing-function:cubic-bezier(.4,0,.2,1)}.data-[state=open]:fade-in-0[data-state=open]{animation-name:fadeIn}.data-[state=open]:zoom-in-95[data-state=open]{animation-name:zoomIn}.dark:border-destructive:is([data-theme=dark] *){border-color:hsl(var(--destructive))}.dark:border-gray-700:is([data-theme=dark] *){--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity, 1))}.dark:bg-gray-900:is([data-theme=dark] *){--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity, 1))}.dark:text-gray-100:is([data-theme=dark] *){--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity, 1))}@media (max-width: 480px){.max-[480px]:p-4{padding:1rem}}@media (min-width: 640px){.sm:bottom-0{bottom:0}.sm:right-0{right:0}.sm:top-auto{top:auto}.sm:flex-row{flex-direction:row}.sm:flex-col{flex-direction:column}.sm:justify-end{justify-content:flex-end}.sm:space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.sm:rounded-lg{border-radius:var(--radius)}.sm:px-4{padding-left:1rem;padding-right:1rem}.sm:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.sm:text-left{text-align:left}}@media (min-width: 768px){.md:block{display:block}.md:max-w-[420px]{max-width:420px}}.[&>*]:min-w-[190px]>*{min-width:190px}.[&>*]:flex-1>*{flex:1 1 0%}.[&>span]:line-clamp-1>span{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.[&>svg+div]:translate-y-[-3px]>svg+div{--tw-translate-y: -3px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.[&>svg]:absolute>svg{position:absolute}.[&>svg]:left-4>svg{left:1rem}.[&>svg]:top-4>svg{top:1rem}.[&>svg]:text-destructive>svg{color:hsl(var(--destructive))}.[&>svg]:text-foreground>svg{color:hsl(var(--foreground))}.[&>svg~*]:pl-7>svg~*{padding-left:1.75rem}.[&_p]:leading-relaxed p{line-height:1.625}:root{--base-spacing: 24px;--m-xxxxs: calc(var(--base-spacing) / 5);--m-xxxs: calc(var(--base-spacing) / 4);--m-xxs: calc(var(--base-spacing) / 3);--m-xs: calc(var(--base-spacing) / 2);--m-s: calc(var(--base-spacing) * 2 / 3);--m: var(--base-spacing);--m-mm: calc(var(--base-spacing) * 3 / 2);--m-l: calc(var(--base-spacing) * 5 / 3);--m-xl: calc(var(--base-spacing) * 2);--m-xxl: calc(var(--base-spacing) * 5 / 2);--m-xxxl: calc(var(--base-spacing) * 3);--font-size-xs: calc(var(--font-size) * 16 / 17);--font-size-s: calc(var(--font-size) * 13 / 14);--font-size: .875rem;--font-size-l: calc(var(--font-size) * 8 / 7);--font-size-xl: calc(var(--font-size) * 9 / 7);--font-size-xxl: calc(var(--font-size) * 12 / 7);--font-size-xxxl: calc(var(--font-size) * 18 / 7);--font-size-h: calc(var(--font-size) * 24 / 7);--font-family: "Inter", sans-serif;--font-family-1: var(--font-family);--font-family-2: "Laxan", sans-serif;--border-radius: 4px;--border-radius-1: var(--border-radius);--border-radius-2: calc(var(--border-radius) * 2);--border-radius-3: calc(var(--border-radius) * 3);--border-radius-4: calc(var(--border-radius) * 4);--border-radius-5: calc(var(--border-radius) * 5);--border-radius-r: 50%;--fast: .3s;--speed: .4s;--slow: .9s;--ease: ease-out;--transition-ui: background-color var(--fast) var(--ease), border-color var(--fast) var(--ease), opacity var(--fast) var(--ease), transform var(--fast) var(--ease), color var(--fast) var(--ease);--blurred: 5px;--color-primary: #2563eb;--color-primary-hover: #1d4ed8;--color-primary-focus: #2563eb;--color-primary-disabled: #bfdbfe;--color-primary-button-disabled: #3f3b55;--color-secondary: #1d2939;--color-secondary-hover: #475467;--color-secondary-focus: #1d2939;--color-secondary-disabled: #344054;--color-text-on-primary: #ffffff;--color-text-on-primary-disabled: #667085;--color-text-on-primary-button-disabled: #ffffff;--color-text-on-secondary: #f2f4f7;--color-text-on-secondary-disabled: #475467;--color-progress-bar: #099250;--color-success: rgba(18, 183, 106, .88);--color-emphasis: #0ba5ec;--color-error: rgba(252, 93, 93, .88);--color-attention: rgba(248, 203, 44, .88);--color-importer-link: #2275d7;--blue-light-500: #0ba5ec;--color-green-ui: var(--color-progress-bar);--color-green: var(--color-success);--color-blue: #0ba5ec;--color-red: rgba(252, 93, 93, .88);--color-yellow: rgba(248, 203, 44, .88);--importer-link: var(--color-importer-link)}.CSVImporter-dark{color-scheme:dark;--color-background: #0e1116;--color-background-main: var(--color-background);--color-background-modal: #171a20;--color-background-modal-hover: #2e323c;--color-background-modal-veil: #0e1116;--color-background-modal-shadow: #0e1116;--color-background-modal-shade: #171a20;--color-tertiary: #101828;--color-tertiary-hover: #1d2939;--color-tertiary-focus: #1d2939;--color-tertiary-disabled: #eaecf0;--color-background-menu: #101828;--color-background-menu-hover: #1d2939;--color-text-strong: #f2f4f7;--color-text: #d0d5dd;--color-text-soft: #667085;--color-text-on-tertiary: #ffffff;--color-text-on-tertiary-disabled: #667085;--color-error: #912018;--color-text-error: #f04438;--color-background-error: #f04438;--color-background-error-hover: #d92d20;--color-background-error-soft: #fecdca;--color-input-background: #101828;--color-input-background-soft: #1d2939;--color-input-border: #344054;--color-input-placeholder: #344054;--color-input-text-disabled: #344054;--color-input-disabled: #171a20;--color-border: #1d2939;--color-background-small-button-selected: #344054;--color-background-small-button-hover: #101828;--color-text-small-button: $base-white;--color-button: #eff6ff;--color-button-hover: #dbeafe;--color-button-disabled: #dbeafe;--color-button-text: #171a20;--color-button-text-disabled: lighter(#171a20, 10);--color-button-border: transparent;--color-border: #344054;--color-border-soft: #1d2939;--color-icon: #d0d5dd;--color-bisel: rgba(255, 255, 255, .05);--color-csv-import-text: var(--color-text);--color-stepper: #30374f;--color-stepper-active: #6ce9a6}.CSVImporter-light{color-scheme:light;--color-background: #f2f4f7;--color-background-main: #ffffff;--color-background-modal: #ffffff;--color-background-modal-hover: #ffffff;--color-background-modal-veil: #0e1116;--color-background-modal-shadow: transparent;--color-background-modal-shade: #f2f4f7;--color-tertiary: #ffffff;--color-tertiary-hover: #f2f4f7;--color-tertiary-focus: #ffffff;--color-tertiary-disabled: #eaecf0;--color-background-menu: #ffffff;--color-background-menu-hover: #f2f4f7;--color-text-strong: #101828;--color-text: #1d2939;--color-text-soft: #667085;--color-text-on-tertiary: #344054;--color-text-on-tertiary-disabled: #667085;--color-error: #fecdca;--color-text-error: #f04438;--color-background-error: #f04438;--color-background-error-hover: #d92d20;--color-background-error-soft: #fecdca;--color-input-background: #ffffff;--color-input-background-soft: #d0d5dd;--color-input-border: #344054;--color-input-placeholder: #344054;--color-input-text-disabled: #344054;--color-input-disabled: #f9fafb;--color-border: #1d2939;--color-background-small-button-selected: #f2f4f7;--color-background-small-button-hover: #f9fafb;--color-text-small-button: var(--color-text);--color-button: #ffffff;--color-button-hover: #f2f4f7;--color-button-disabled: #fcfcfd;--color-button-text: var(--color-text-soft);--color-button-text-disabled: #d0d5dd;--color-button-border: #d0d5dd;--color-border: #d0d5dd;--color-border-soft: #eaecf0;--color-icon: #101323;--color-bisel: rgba(0, 0, 0, .05);--color-csv-import-text: #130638;--color-stepper: #b9c0d4;--color-stepper-active: #6ce9a6}.csv-importer{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background-color:var(--color-background);color:var(--color-text);font-size:var(--font-size);font-weight:500;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.csv-importer *{box-sizing:border-box}.csv-importer .container{max-width:1300px;margin:0 auto;padding:2rem}@media (max-width: 640px){.csv-importer .container{padding:1rem}}.csv-importer h1,.csv-importer h2,.csv-importer h3,.csv-importer h4,.csv-importer h5,.csv-importer h6{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;font-weight:600;line-height:1.2;color:#111827}.csv-importer h1{font-size:2rem}.csv-importer h2{font-size:1.5rem}.csv-importer h3{font-size:1.25rem}.csv-importer h4{font-size:1.125rem}.csv-importer h5{font-size:1rem}.csv-importer h6{font-size:.875rem}.csv-importer p{line-height:1.6;color:#4b5563}.csv-importer button{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;font-weight:500;transition:all .2s ease}.csv-importer button:hover:not(:disabled){transform:translateY(-1px)}.csv-importer input,.csv-importer textarea,.csv-importer select{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;font-size:.875rem}.csv-importer input:focus,.csv-importer textarea:focus,.csv-importer select:focus{outline:none;box-shadow:0 0 0 3px rgba(var(--color-primary-rgb, 122, 94, 248),.1)}.csv-importer a{color:var(--color-primary);text-decoration:none;transition:color .2s ease}.csv-importer a:hover{color:var(--color-primary-700);text-decoration:underline}.CSVImporter{border:none;background-color:transparent;padding:0 1rem;border-radius:1.2rem;color:inherit;cursor:pointer;font-weight:500;font-size:14px;display:inline-flex;gap:.5rem;align-items:center;transition:filter .2s ease-out}.CSVImporter svg{display:block}.CSVImporter svg path{stroke:currentColor!important}.CSVImporter:hover,.CSVImporter:active{filter:brightness(1.2)}.CSVImporter-dialog::backdrop{background-color:#000000d9}.CSVImporter-dialog{border-radius:1rem;width:80vw;max-height:80vh;min-width:800px;border:none;position:fixed;inset:0;padding:0;margin:auto}.CSVImporter-div{border:none;display:block;width:100%;height:auto;max-height:80vh;overflow-y:auto}@media (max-width: 768px){.CSVImporter-dialog{width:95vw;min-width:unset;max-width:100%}}
|
|
139
|
-
`,hn=Km;function Gm({children:e,document:r,window:o,primaryColor:t}){return O.useEffect(()=>{if(!r||!o)return;const a=(o.parent||window).document;if(Array.from(a.querySelectorAll('link[rel="stylesheet"]')).forEach(i=>{if(!r.querySelector(`link[href="${i.href}"]`)){const s=r.createElement("link");s.rel="stylesheet",s.href=i.href,r.head.appendChild(s)}}),!r.querySelector("style[data-importcsv-inline]")){const i=r.createElement("style");i.setAttribute("data-importcsv-inline","true"),i.appendChild(r.createTextNode(hn)),r.head.appendChild(i)}t&&r.documentElement&&(r.documentElement.style.setProperty("--color-primary",t),r.documentElement.style.setProperty("--color-primary-hover",br(t,20)),r.body&&(r.body.style.setProperty("--color-primary",t),r.body.style.setProperty("--color-primary-hover",br(t,20))))},[r,o,t]),d.jsx("div",{style:{width:"100%",height:"100%",overflow:"visible"},children:e})}function Xm({children:e,className:r="",primaryColor:o}){const t=O.useRef(null);return d.jsx(Ym,{ref:t,className:r,initialContent:`
|
|
140
|
-
<!DOCTYPE html>
|
|
141
|
-
<html>
|
|
142
|
-
<head>
|
|
143
|
-
<meta charset="utf-8">
|
|
144
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
145
|
-
<style>
|
|
146
|
-
/* CSS Variables for Tailwind colors */
|
|
147
|
-
:root {
|
|
148
|
-
--background: 0 0% 100%;
|
|
149
|
-
--foreground: 222.2 84% 4.9%;
|
|
150
|
-
--card: 0 0% 100%;
|
|
151
|
-
--card-foreground: 222.2 84% 4.9%;
|
|
152
|
-
--popover: 0 0% 100%;
|
|
153
|
-
--popover-foreground: 222.2 84% 4.9%;
|
|
154
|
-
--primary: 221.2 83.2% 53.3%;
|
|
155
|
-
--primary-foreground: 210 40% 98%;
|
|
156
|
-
--secondary: 210 40% 96.1%;
|
|
157
|
-
--secondary-foreground: 222.2 47.4% 11.2%;
|
|
158
|
-
--muted: 210 40% 96.1%;
|
|
159
|
-
--muted-foreground: 215.4 16.3% 46.9%;
|
|
160
|
-
--accent: 210 40% 96.1%;
|
|
161
|
-
--accent-foreground: 222.2 47.4% 11.2%;
|
|
162
|
-
--destructive: 0 84.2% 60.2%;
|
|
163
|
-
--destructive-foreground: 210 40% 98%;
|
|
164
|
-
--border: 214.3 31.8% 91.4%;
|
|
165
|
-
--input: 214.3 31.8% 91.4%;
|
|
166
|
-
--ring: 221.2 83.2% 53.3%;
|
|
167
|
-
--radius: 0.5rem;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
/* Tailwind utility classes for components */
|
|
171
|
-
.bg-primary {
|
|
172
|
-
background-color: hsl(var(--primary));
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.bg-input {
|
|
176
|
-
background-color: hsl(var(--input));
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.bg-background {
|
|
180
|
-
background-color: hsl(var(--background));
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.bg-popover {
|
|
184
|
-
background-color: hsl(var(--popover));
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.text-popover-foreground {
|
|
188
|
-
color: hsl(var(--popover-foreground));
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.ring-ring {
|
|
192
|
-
--tw-ring-color: hsl(var(--ring));
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.ring-offset-background {
|
|
196
|
-
--tw-ring-offset-color: hsl(var(--background));
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
/* Transitions and transforms */
|
|
200
|
-
.transition-colors {
|
|
201
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
202
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
203
|
-
transition-duration: 150ms;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.transition-transform {
|
|
207
|
-
transition-property: transform;
|
|
208
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
209
|
-
transition-duration: 150ms;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.translate-x-0 {
|
|
213
|
-
transform: translateX(0);
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.translate-x-5 {
|
|
217
|
-
transform: translateX(1.25rem);
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
/* Focus states */
|
|
221
|
-
.focus-visible:outline-none:focus-visible {
|
|
222
|
-
outline: 2px solid transparent;
|
|
223
|
-
outline-offset: 2px;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.focus-visible:ring-2:focus-visible {
|
|
227
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
228
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
229
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
.focus-visible:ring-offset-2:focus-visible {
|
|
233
|
-
--tw-ring-offset-width: 2px;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
/* Data attribute selectors for Radix UI components */
|
|
237
|
-
[data-state="checked"] {
|
|
238
|
-
background-color: hsl(var(--primary));
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
[data-state="unchecked"] {
|
|
242
|
-
background-color: hsl(var(--input));
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
[data-state="checked"] .translate-x-5 {
|
|
246
|
-
transform: translateX(1.25rem);
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
[data-state="unchecked"] .translate-x-0 {
|
|
250
|
-
transform: translateX(0);
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
/* Disabled states */
|
|
254
|
-
.disabled:cursor-not-allowed:disabled {
|
|
255
|
-
cursor: not-allowed;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.disabled:opacity-50:disabled {
|
|
259
|
-
opacity: 0.5;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
/* Additional utility classes */
|
|
263
|
-
.shadow-lg {
|
|
264
|
-
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
265
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.ring-0 {
|
|
269
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
270
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
271
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
/* Reset styles to ensure clean slate */
|
|
275
|
-
* {
|
|
276
|
-
margin: 0;
|
|
277
|
-
padding: 0;
|
|
278
|
-
box-sizing: border-box;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
html, body {
|
|
282
|
-
width: 100%;
|
|
283
|
-
min-height: 100%;
|
|
284
|
-
height: auto;
|
|
285
|
-
overflow: visible;
|
|
286
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
287
|
-
-webkit-font-smoothing: antialiased;
|
|
288
|
-
-moz-osx-font-smoothing: grayscale;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
/* Ensure the root div takes full space */
|
|
292
|
-
body > div {
|
|
293
|
-
width: 100%;
|
|
294
|
-
min-height: 100%;
|
|
295
|
-
height: auto;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
/* Ensure content can expand horizontally without iframe scrolling */
|
|
299
|
-
#mountHere {
|
|
300
|
-
width: 100%;
|
|
301
|
-
min-width: 0;
|
|
302
|
-
overflow: visible;
|
|
303
|
-
}
|
|
304
|
-
</style>
|
|
305
|
-
</head>
|
|
306
|
-
<body>
|
|
307
|
-
<div id="mountHere"></div>
|
|
308
|
-
</body>
|
|
309
|
-
</html>
|
|
310
|
-
`,mountTarget:"#mountHere",head:[d.jsx("style",{"data-importcsv-inline":!0,dangerouslySetInnerHTML:{__html:hn}},"importcsv-inline")],style:{width:"100%",height:"100%",minHeight:"600px",maxHeight:"100vh",border:"none",display:"block"},children:d.jsx(Gl.FrameContextConsumer,{children:({document:a,window:c})=>d.jsx(Gm,{document:a,window:c,primaryColor:o,children:e})})})}function Zm(e){return{text:"string",string:"string",number:"number",email:"email",date:"date",phone:"phone",select:"select",boolean:"string",custom_regex:"string"}[e]||"string"}function Jm(e){const{isModal:r=!0,modalOnCloseTriggered:o=()=>null,onComplete:t,customStyles:n,showDownloadTemplateButton:a,skipHeaderRowSelection:c,importerKey:i,columns:s,backendUrl:l=Bm.apiBaseUrl,user:f,metadata:p,demoData:x}=e,v=c??!1,_=!!x,b=!i,{t:m}=ir();kp(Rp("customStyles",n));const w=_?ve.MapColumns:ve.Upload,{currentStep:h,setStep:k,goNext:S,goBack:D,stepper:N}=Op(w,v,_),[C,g]=O.useState(null),[y,E]=O.useState(null),A={fileName:"",rows:[],sheetList:[],errors:[]},[I,L]=O.useState(A),[P,H]=O.useState(0),[M,T]=O.useState({}),[R,j]=O.useState(!1),[q,V]=O.useState(!1),[U,z]=O.useState([]),[Y,ae]=O.useState(!1),[ce,$]=O.useState(!1),[K,ee]=O.useState(!1);O.useEffect(()=>{_&&x&&Sn.parse(x.csvContent,{complete:function(J){const de=J.data,Q=se=>se.some(ye=>ye.toString().trim()!==""),ie=de.filter(Q).map((se,ye)=>({index:ye,values:se}));L({fileName:x.fileName,rows:ie,sheetList:[],errors:J.errors.map(se=>se.message)})},error:function(J){console.error("Papa.parse error:",J)}})},[_,x]),O.useEffect(()=>{(async()=>{if(b){if(!s){g("Please provide 'columns' for standalone mode or 'importerKey' for backend mode.");return}z(s);return}if(!i){g("ImporterKey is required for backend mode.");return}try{const de=await fetch(`${l}/api/v1/imports/key/schema?importer_key=${i}`);if(!de.ok)throw new Error(`Failed to fetch schema: ${de.statusText}`);const Q=await de.json();Q.include_unmatched_columns!==void 0&&ae(Q.include_unmatched_columns),Q.filter_invalid_rows!==void 0&&$(Q.filter_invalid_rows),Q.disable_on_invalid_rows!==void 0&&ee(Q.disable_on_invalid_rows);const ie=Q.fields.map(se=>{const ye={id:se.key||se.name.toLowerCase().replace(/\s+/g,"_"),label:se.name,type:Zm(se.type),description:se.description},me=[];return se.required&&me.push({type:"required",message:se.validation_error_message}),se.validation_format&&(se.type==="select"?ye.options=se.validation_format.split(",").map(Ee=>Ee.trim()):me.push({type:"regex",pattern:se.validation_format,message:se.validation_error_message})),me.length>0&&(ye.validators=me),ye});z(ie)}catch(de){g(`Failed to fetch schema: ${de instanceof Error?de.message:String(de)}`)}})()},[i,l,b,s]),O.useEffect(()=>{!_&&I.rows.length===0&&h!==ve.Upload&&Z()},[I,_]);const Z=()=>{L(A),H(0),T({}),E(null),k(ve.Upload)},B=()=>{r&&(o&&o(),h===ve.Complete&&Z())},re=J=>{L(J),j(!0);const de=(P||0)+1,Q=J.rows[P||0],ie=J.rows.slice(de).map(W=>{const te={data:{},unmapped_data:{}};return W.values.forEach((le,xe)=>{const Te=M[xe],Ae=Q.values[xe],Pe=le==null||le===""||typeof le=="number"&&isNaN(le)?"":le.toString();if(Te&&Te.include)te.data[Te.id]=Pe;else if(Y&&Ae){const Re=Ae.toString().toLowerCase().replace(/\s+/g,"_");te.unmapped_data[Re]=Pe}}),te}),se=Object.values(M).filter(({include:W})=>W);if(b){const W=J.rows.slice(de);t&&t({success:!0,data:W,mappedData:ie,num_rows:ie.length,num_columns:se.length,headers:Q.values,columnMapping:M}),j(!1),S();return}if(!i){E("ImporterKey is required for backend mode."),j(!1);return}const ye={validData:ie,invalidData:[]},me={};Object.entries(M).forEach(([W,te])=>{te.include&&(me[W]=te.id)});const Ee=`${l}/api/v1/imports/key/process`,F={...ye,columnMapping:me,user:f||{},metadata:p||{},importer_key:i||""};fetch(Ee,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(F)}).then(W=>{if(!W.ok)throw new Error(`Failed to process import: ${W.statusText}`);return W.json()}).then(W=>{W.success?t&&t({success:!0,message:W.message||"Import job successfully enqueued",num_rows:ie.length,num_columns:se.length}):t&&t({success:!1,message:W.message||"Failed to process import",num_rows:ie.length,num_columns:se.length})}).catch(W=>{t&&t({success:!1,message:W.message||"Error processing import",num_rows:ie.length,num_columns:se.length})}),j(!1),S()},be=()=>{D(ve.MapColumns)};if(C)return d.jsx("div",{className:"flex flex-col h-auto min-h-[400px] p-4 w-full box-border overflow-auto",children:d.jsx(Pn,{error:C,centered:!0})});const ue=()=>{switch(h){case ve.Upload:return d.jsx($m,{columns:U||s,skipHeaderRowSelection:v||!1,showDownloadTemplateButton:a,setDataError:E,onSuccess:async J=>{E(null);const de=J.name.slice(J.name.lastIndexOf(".")+1);if(!["csv","xls","xlsx"].includes(de)){E(m("Only CSV, XLS, and XLSX files can be uploaded"));return}const Q=new FileReader,ie=se=>se.some(ye=>ye.toString().trim()!=="");switch(Q.onload=async se=>{const ye=se?.target?.result;if(ye)switch(de){case"csv":Sn.parse(ye.toString(),{complete:function(me){const F=me.data.filter(ie).map((W,te)=>({index:te,values:W}));L({fileName:J.name,rows:F,sheetList:[],errors:me.errors.map(W=>W.message)}),S()}});break;case"xlsx":case"xls":V(!0),E(null),import("xlsx").then(me=>{const Ee=me.read(ye,{type:"binary"}),F=Ee.SheetNames,te=me.utils.sheet_to_json(Ee.Sheets[F[0]],{header:1}).filter(ie).map((le,xe)=>({index:xe,values:le}));L({fileName:J.name,rows:te,sheetList:F,errors:[]}),V(!1),S()}).catch(me=>{const F=me.message?.includes("Cannot find module")||me.message?.includes("Failed to fetch dynamically imported module")?"Excel support requires the 'xlsx' package. Please install it with: npm install xlsx":"Failed to load Excel parser. Please try again or use CSV format.";E(F),V(!1),console.error("Failed to load XLSX library:",me)});break}},de){case"csv":Q.readAsText(J,"utf-8");break;case"xlsx":case"xls":Q.readAsBinaryString(J);break}}});case ve.RowSelection:return S(),null;case ve.MapColumns:return d.jsx(Lg,{columns:U||s,data:I,onSuccess:(J,de)=>{T(J),H(de),S()},onCancel:_?void 0:()=>D(ve.Upload),isSubmitting:R,importerKey:i,backendUrl:l,isDemoMode:_});case ve.Validation:return d.jsx(wp,{columns:U||s,data:I,columnMapping:M,selectedHeaderRow:P,onSuccess:re,onCancel:be,isSubmitting:R,backendUrl:l,importerKey:i,filterInvalidRows:ce,disableOnInvalidRows:K});case ve.Complete:return d.jsx(Ip,{reload:Z,close:B,isModal:r});default:return null}},pe=d.jsxs("div",{className:ne("flex flex-col h-auto min-h-[400px] p-4 w-full box-border overflow-auto"),children:[d.jsx("div",{children:d.jsx($s,{...N})}),d.jsx("div",{className:"flex-1 overflow-visible min-w-0 w-full",children:ue()}),(!!y||q)&&d.jsxs("div",{className:"flex items-center justify-between gap-4 px-2 pb-2",children:[d.jsx("div",{}),q?d.jsxs("div",{className:"text-center p-5",children:[d.jsx("div",{className:"mb-2",children:d.jsx("span",{className:"text-base",children:"Loading Excel parser..."})}),d.jsx("small",{className:"opacity-70 text-xs",children:"This may take a moment on first use"})]}):d.jsx(Pn,{error:y,centered:!0}),d.jsx("div",{})]}),r&&d.jsx("button",{className:ne("absolute right-2 top-2 rounded-full","min-w-[36px] h-[36px] aspect-square text-xl p-0","hover:bg-gray-100 transition-colors"),"aria-label":"Close",onClick:B,children:d.jsx(Jt,{className:"h-5 w-5"})})]});return d.jsx(Xm,{className:"importcsv-iframe",primaryColor:e.primaryColor,children:d.jsx("div",{className:"csv-importer","data-theme":e.darkMode?"dark":"light",children:pe})})}function Qm(e){const r=e+"CollectionProvider",[o,t]=cr(r),[n,a]=o(r,{collectionRef:{current:null},itemMap:new Map}),c=b=>{const{scope:m,children:w}=b,h=O.useRef(null),k=O.useRef(new Map).current;return d.jsx(n,{scope:m,itemMap:k,collectionRef:h,children:w})};c.displayName=r;const i=e+"CollectionSlot",s=xo(i),l=O.forwardRef((b,m)=>{const{scope:w,children:h}=b,k=a(i,w),S=ge(m,k.collectionRef);return d.jsx(s,{ref:S,children:h})});l.displayName=i;const f=e+"CollectionItemSlot",p="data-radix-collection-item",x=xo(f),v=O.forwardRef((b,m)=>{const{scope:w,children:h,...k}=b,S=O.useRef(null),D=ge(m,S),N=a(f,w);return O.useEffect(()=>(N.itemMap.set(S,{ref:S,...k}),()=>void N.itemMap.delete(S))),d.jsx(x,{[p]:"",ref:D,children:h})});v.displayName=f;function _(b){const m=a(e+"CollectionConsumer",b);return O.useCallback(()=>{const h=m.collectionRef.current;if(!h)return[];const k=Array.from(h.querySelectorAll(`[${p}]`));return Array.from(m.itemMap.values()).sort((N,C)=>k.indexOf(N.ref.current)-k.indexOf(C.ref.current))},[m.collectionRef,m.itemMap])}return[{Provider:c,Slot:l,ItemSlot:v},_,t]}var ex="DismissableLayer",Ut="dismissableLayer.update",rx="dismissableLayer.pointerDownOutside",ox="dismissableLayer.focusOutside",Na,Xl=u.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),Zl=u.forwardRef((e,r)=>{const{disableOutsidePointerEvents:o=!1,onEscapeKeyDown:t,onPointerDownOutside:n,onFocusOutside:a,onInteractOutside:c,onDismiss:i,...s}=e,l=u.useContext(Xl),[f,p]=u.useState(null),x=f?.ownerDocument??globalThis?.document,[,v]=u.useState({}),_=ge(r,C=>p(C)),b=Array.from(l.layers),[m]=[...l.layersWithOutsidePointerEventsDisabled].slice(-1),w=b.indexOf(m),h=f?b.indexOf(f):-1,k=l.layersWithOutsidePointerEventsDisabled.size>0,S=h>=w,D=nx(C=>{const g=C.target,y=[...l.branches].some(E=>E.contains(g));!S||y||(n?.(C),c?.(C),C.defaultPrevented||i?.())},x),N=ax(C=>{const g=C.target;[...l.branches].some(E=>E.contains(g))||(a?.(C),c?.(C),C.defaultPrevented||i?.())},x);return Oo(C=>{h===l.layers.size-1&&(t?.(C),!C.defaultPrevented&&i&&(C.preventDefault(),i()))},x),u.useEffect(()=>{if(f)return o&&(l.layersWithOutsidePointerEventsDisabled.size===0&&(Na=x.body.style.pointerEvents,x.body.style.pointerEvents="none"),l.layersWithOutsidePointerEventsDisabled.add(f)),l.layers.add(f),Ia(),()=>{o&&l.layersWithOutsidePointerEventsDisabled.size===1&&(x.body.style.pointerEvents=Na)}},[f,x,o,l]),u.useEffect(()=>()=>{f&&(l.layers.delete(f),l.layersWithOutsidePointerEventsDisabled.delete(f),Ia())},[f,l]),u.useEffect(()=>{const C=()=>v({});return document.addEventListener(Ut,C),()=>document.removeEventListener(Ut,C)},[]),d.jsx(Ie.div,{...s,ref:_,style:{pointerEvents:k?S?"auto":"none":void 0,...e.style},onFocusCapture:oe(e.onFocusCapture,N.onFocusCapture),onBlurCapture:oe(e.onBlurCapture,N.onBlurCapture),onPointerDownCapture:oe(e.onPointerDownCapture,D.onPointerDownCapture)})});Zl.displayName=ex;var tx="DismissableLayerBranch",Jl=u.forwardRef((e,r)=>{const o=u.useContext(Xl),t=u.useRef(null),n=ge(r,t);return u.useEffect(()=>{const a=t.current;if(a)return o.branches.add(a),()=>{o.branches.delete(a)}},[o.branches]),d.jsx(Ie.div,{...e,ref:n})});Jl.displayName=tx;function nx(e,r=globalThis?.document){const o=Ce(e),t=u.useRef(!1),n=u.useRef(()=>{});return u.useEffect(()=>{const a=i=>{if(i.target&&!t.current){let s=function(){Ql(rx,o,l,{discrete:!0})};const l={originalEvent:i};i.pointerType==="touch"?(r.removeEventListener("click",n.current),n.current=s,r.addEventListener("click",n.current,{once:!0})):s()}else r.removeEventListener("click",n.current);t.current=!1},c=window.setTimeout(()=>{r.addEventListener("pointerdown",a)},0);return()=>{window.clearTimeout(c),r.removeEventListener("pointerdown",a),r.removeEventListener("click",n.current)}},[r,o]),{onPointerDownCapture:()=>t.current=!0}}function ax(e,r=globalThis?.document){const o=Ce(e),t=u.useRef(!1);return u.useEffect(()=>{const n=a=>{a.target&&!t.current&&Ql(ox,o,{originalEvent:a},{discrete:!1})};return r.addEventListener("focusin",n),()=>r.removeEventListener("focusin",n)},[r,o]),{onFocusCapture:()=>t.current=!0,onBlurCapture:()=>t.current=!1}}function Ia(){const e=new CustomEvent(Ut);document.dispatchEvent(e)}function Ql(e,r,o,{discrete:t}){const n=o.originalEvent.target,a=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:o});r&&n.addEventListener(e,r,{once:!0}),t?Oi(n,a):n.dispatchEvent(a)}var cx=Zl,ix=Jl,lx="Portal",ed=u.forwardRef((e,r)=>{const{container:o,...t}=e,[n,a]=u.useState(!1);_e(()=>a(!0),[]);const c=o||n&&globalThis?.document?.body;return c?To.createPortal(d.jsx(Ie.div,{...t,ref:r}),c):null});ed.displayName=lx;var dx=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),sx="VisuallyHidden",vn=u.forwardRef((e,r)=>d.jsx(Ie.span,{...e,ref:r,style:{...dx,...e.style}}));vn.displayName=sx;var yn="ToastProvider",[wn,ux,fx]=Qm("Toast"),[rd,uh]=cr("Toast",[fx]),[bx,Uo]=rd(yn),od=e=>{const{__scopeToast:r,label:o="Notification",duration:t=5e3,swipeDirection:n="right",swipeThreshold:a=50,children:c}=e,[i,s]=u.useState(null),[l,f]=u.useState(0),p=u.useRef(!1),x=u.useRef(!1);return o.trim()||console.error(`Invalid prop \`label\` supplied to \`${yn}\`. Expected non-empty \`string\`.`),d.jsx(wn.Provider,{scope:r,children:d.jsx(bx,{scope:r,label:o,duration:t,swipeDirection:n,swipeThreshold:a,toastCount:l,viewport:i,onViewportChange:s,onToastAdd:u.useCallback(()=>f(v=>v+1),[]),onToastRemove:u.useCallback(()=>f(v=>v-1),[]),isFocusedToastEscapeKeyDownRef:p,isClosePausedRef:x,children:c})})};od.displayName=yn;var td="ToastViewport",px=["F8"],Yt="toast.viewportPause",Kt="toast.viewportResume",nd=u.forwardRef((e,r)=>{const{__scopeToast:o,hotkey:t=px,label:n="Notifications ({hotkey})",...a}=e,c=Uo(td,o),i=ux(o),s=u.useRef(null),l=u.useRef(null),f=u.useRef(null),p=u.useRef(null),x=ge(r,p,c.onViewportChange),v=t.join("+").replace(/Key/g,"").replace(/Digit/g,""),_=c.toastCount>0;u.useEffect(()=>{const m=w=>{t.length!==0&&t.every(k=>w[k]||w.code===k)&&p.current?.focus()};return document.addEventListener("keydown",m),()=>document.removeEventListener("keydown",m)},[t]),u.useEffect(()=>{const m=s.current,w=p.current;if(_&&m&&w){const h=()=>{if(!c.isClosePausedRef.current){const N=new CustomEvent(Yt);w.dispatchEvent(N),c.isClosePausedRef.current=!0}},k=()=>{if(c.isClosePausedRef.current){const N=new CustomEvent(Kt);w.dispatchEvent(N),c.isClosePausedRef.current=!1}},S=N=>{!m.contains(N.relatedTarget)&&k()},D=()=>{m.contains(document.activeElement)||k()};return m.addEventListener("focusin",h),m.addEventListener("focusout",S),m.addEventListener("pointermove",h),m.addEventListener("pointerleave",D),window.addEventListener("blur",h),window.addEventListener("focus",k),()=>{m.removeEventListener("focusin",h),m.removeEventListener("focusout",S),m.removeEventListener("pointermove",h),m.removeEventListener("pointerleave",D),window.removeEventListener("blur",h),window.removeEventListener("focus",k)}}},[_,c.isClosePausedRef]);const b=u.useCallback(({tabbingDirection:m})=>{const h=i().map(k=>{const S=k.ref.current,D=[S,...Rx(S)];return m==="forwards"?D:D.reverse()});return(m==="forwards"?h.reverse():h).flat()},[i]);return u.useEffect(()=>{const m=p.current;if(m){const w=h=>{const k=h.altKey||h.ctrlKey||h.metaKey;if(h.key==="Tab"&&!k){const D=document.activeElement,N=h.shiftKey;if(h.target===m&&N){l.current?.focus();return}const y=b({tabbingDirection:N?"backwards":"forwards"}),E=y.findIndex(A=>A===D);xt(y.slice(E+1))?h.preventDefault():N?l.current?.focus():f.current?.focus()}};return m.addEventListener("keydown",w),()=>m.removeEventListener("keydown",w)}},[i,b]),d.jsxs(ix,{ref:s,role:"region","aria-label":n.replace("{hotkey}",v),tabIndex:-1,style:{pointerEvents:_?void 0:"none"},children:[_&&d.jsx(Gt,{ref:l,onFocusFromOutsideViewport:()=>{const m=b({tabbingDirection:"forwards"});xt(m)}}),d.jsx(wn.Slot,{scope:o,children:d.jsx(Ie.ol,{tabIndex:-1,...a,ref:x})}),_&&d.jsx(Gt,{ref:f,onFocusFromOutsideViewport:()=>{const m=b({tabbingDirection:"backwards"});xt(m)}})]})});nd.displayName=td;var ad="ToastFocusProxy",Gt=u.forwardRef((e,r)=>{const{__scopeToast:o,onFocusFromOutsideViewport:t,...n}=e,a=Uo(ad,o);return d.jsx(vn,{"aria-hidden":!0,tabIndex:0,...n,ref:r,style:{position:"fixed"},onFocus:c=>{const i=c.relatedTarget;!a.viewport?.contains(i)&&t()}})});Gt.displayName=ad;var Zr="Toast",gx="toast.swipeStart",mx="toast.swipeMove",xx="toast.swipeCancel",hx="toast.swipeEnd",cd=u.forwardRef((e,r)=>{const{forceMount:o,open:t,defaultOpen:n,onOpenChange:a,...c}=e,[i,s]=Tr({prop:t,defaultProp:n??!0,onChange:a,caller:Zr});return d.jsx(Lr,{present:o||i,children:d.jsx(wx,{open:i,...c,ref:r,onClose:()=>s(!1),onPause:Ce(e.onPause),onResume:Ce(e.onResume),onSwipeStart:oe(e.onSwipeStart,l=>{l.currentTarget.setAttribute("data-swipe","start")}),onSwipeMove:oe(e.onSwipeMove,l=>{const{x:f,y:p}=l.detail.delta;l.currentTarget.setAttribute("data-swipe","move"),l.currentTarget.style.setProperty("--radix-toast-swipe-move-x",`${f}px`),l.currentTarget.style.setProperty("--radix-toast-swipe-move-y",`${p}px`)}),onSwipeCancel:oe(e.onSwipeCancel,l=>{l.currentTarget.setAttribute("data-swipe","cancel"),l.currentTarget.style.removeProperty("--radix-toast-swipe-move-x"),l.currentTarget.style.removeProperty("--radix-toast-swipe-move-y"),l.currentTarget.style.removeProperty("--radix-toast-swipe-end-x"),l.currentTarget.style.removeProperty("--radix-toast-swipe-end-y")}),onSwipeEnd:oe(e.onSwipeEnd,l=>{const{x:f,y:p}=l.detail.delta;l.currentTarget.setAttribute("data-swipe","end"),l.currentTarget.style.removeProperty("--radix-toast-swipe-move-x"),l.currentTarget.style.removeProperty("--radix-toast-swipe-move-y"),l.currentTarget.style.setProperty("--radix-toast-swipe-end-x",`${f}px`),l.currentTarget.style.setProperty("--radix-toast-swipe-end-y",`${p}px`),s(!1)})})})});cd.displayName=Zr;var[vx,yx]=rd(Zr,{onClose(){}}),wx=u.forwardRef((e,r)=>{const{__scopeToast:o,type:t="foreground",duration:n,open:a,onClose:c,onEscapeKeyDown:i,onPause:s,onResume:l,onSwipeStart:f,onSwipeMove:p,onSwipeCancel:x,onSwipeEnd:v,..._}=e,b=Uo(Zr,o),[m,w]=u.useState(null),h=ge(r,P=>w(P)),k=u.useRef(null),S=u.useRef(null),D=n||b.duration,N=u.useRef(0),C=u.useRef(D),g=u.useRef(0),{onToastAdd:y,onToastRemove:E}=b,A=Ce(()=>{m?.contains(document.activeElement)&&b.viewport?.focus(),c()}),I=u.useCallback(P=>{!P||P===1/0||(window.clearTimeout(g.current),N.current=new Date().getTime(),g.current=window.setTimeout(A,P))},[A]);u.useEffect(()=>{const P=b.viewport;if(P){const H=()=>{I(C.current),l?.()},M=()=>{const T=new Date().getTime()-N.current;C.current=C.current-T,window.clearTimeout(g.current),s?.()};return P.addEventListener(Yt,M),P.addEventListener(Kt,H),()=>{P.removeEventListener(Yt,M),P.removeEventListener(Kt,H)}}},[b.viewport,D,s,l,I]),u.useEffect(()=>{a&&!b.isClosePausedRef.current&&I(D)},[a,D,b.isClosePausedRef,I]),u.useEffect(()=>(y(),()=>E()),[y,E]);const L=u.useMemo(()=>m?bd(m):null,[m]);return b.viewport?d.jsxs(d.Fragment,{children:[L&&d.jsx(kx,{__scopeToast:o,role:"status","aria-live":t==="foreground"?"assertive":"polite","aria-atomic":!0,children:L}),d.jsx(vx,{scope:o,onClose:A,children:nr.createPortal(d.jsx(wn.ItemSlot,{scope:o,children:d.jsx(cx,{asChild:!0,onEscapeKeyDown:oe(i,()=>{b.isFocusedToastEscapeKeyDownRef.current||A(),b.isFocusedToastEscapeKeyDownRef.current=!1}),children:d.jsx(Ie.li,{role:"status","aria-live":"off","aria-atomic":!0,tabIndex:0,"data-state":a?"open":"closed","data-swipe-direction":b.swipeDirection,..._,ref:h,style:{userSelect:"none",touchAction:"none",...e.style},onKeyDown:oe(e.onKeyDown,P=>{P.key==="Escape"&&(i?.(P.nativeEvent),P.nativeEvent.defaultPrevented||(b.isFocusedToastEscapeKeyDownRef.current=!0,A()))}),onPointerDown:oe(e.onPointerDown,P=>{P.button===0&&(k.current={x:P.clientX,y:P.clientY})}),onPointerMove:oe(e.onPointerMove,P=>{if(!k.current)return;const H=P.clientX-k.current.x,M=P.clientY-k.current.y,T=!!S.current,R=["left","right"].includes(b.swipeDirection),j=["left","up"].includes(b.swipeDirection)?Math.min:Math.max,q=R?j(0,H):0,V=R?0:j(0,M),U=P.pointerType==="touch"?10:2,z={x:q,y:V},Y={originalEvent:P,delta:z};T?(S.current=z,so(mx,p,Y,{discrete:!1})):Aa(z,b.swipeDirection,U)?(S.current=z,so(gx,f,Y,{discrete:!1}),P.target.setPointerCapture(P.pointerId)):(Math.abs(H)>U||Math.abs(M)>U)&&(k.current=null)}),onPointerUp:oe(e.onPointerUp,P=>{const H=S.current,M=P.target;if(M.hasPointerCapture(P.pointerId)&&M.releasePointerCapture(P.pointerId),S.current=null,k.current=null,H){const T=P.currentTarget,R={originalEvent:P,delta:H};Aa(H,b.swipeDirection,b.swipeThreshold)?so(hx,v,R,{discrete:!0}):so(xx,x,R,{discrete:!0}),T.addEventListener("click",j=>j.preventDefault(),{once:!0})}})})})}),b.viewport)})]}):null}),kx=e=>{const{__scopeToast:r,children:o,...t}=e,n=Uo(Zr,r),[a,c]=u.useState(!1),[i,s]=u.useState(!1);return Sx(()=>c(!0)),u.useEffect(()=>{const l=window.setTimeout(()=>s(!0),1e3);return()=>window.clearTimeout(l)},[]),i?null:d.jsx(ed,{asChild:!0,children:d.jsx(vn,{...t,children:a&&d.jsxs(d.Fragment,{children:[n.label," ",o]})})})},_x="ToastTitle",id=u.forwardRef((e,r)=>{const{__scopeToast:o,...t}=e;return d.jsx(Ie.div,{...t,ref:r})});id.displayName=_x;var Cx="ToastDescription",ld=u.forwardRef((e,r)=>{const{__scopeToast:o,...t}=e;return d.jsx(Ie.div,{...t,ref:r})});ld.displayName=Cx;var dd="ToastAction",sd=u.forwardRef((e,r)=>{const{altText:o,...t}=e;return o.trim()?d.jsx(fd,{altText:o,asChild:!0,children:d.jsx(kn,{...t,ref:r})}):(console.error(`Invalid prop \`altText\` supplied to \`${dd}\`. Expected non-empty \`string\`.`),null)});sd.displayName=dd;var ud="ToastClose",kn=u.forwardRef((e,r)=>{const{__scopeToast:o,...t}=e,n=yx(ud,o);return d.jsx(fd,{asChild:!0,children:d.jsx(Ie.button,{type:"button",...t,ref:r,onClick:oe(e.onClick,n.onClose)})})});kn.displayName=ud;var fd=u.forwardRef((e,r)=>{const{__scopeToast:o,altText:t,...n}=e;return d.jsx(Ie.div,{"data-radix-toast-announce-exclude":"","data-radix-toast-announce-alt":t||void 0,...n,ref:r})});function bd(e){const r=[];return Array.from(e.childNodes).forEach(t=>{if(t.nodeType===t.TEXT_NODE&&t.textContent&&r.push(t.textContent),Ex(t)){const n=t.ariaHidden||t.hidden||t.style.display==="none",a=t.dataset.radixToastAnnounceExclude==="";if(!n)if(a){const c=t.dataset.radixToastAnnounceAlt;c&&r.push(c)}else r.push(...bd(t))}}),r}function so(e,r,o,{discrete:t}){const n=o.originalEvent.currentTarget,a=new CustomEvent(e,{bubbles:!0,cancelable:!0,detail:o});r&&n.addEventListener(e,r,{once:!0}),t?Oi(n,a):n.dispatchEvent(a)}var Aa=(e,r,o=0)=>{const t=Math.abs(e.x),n=Math.abs(e.y),a=t>n;return r==="left"||r==="right"?a&&t>o:!a&&n>o};function Sx(e=()=>{}){const r=Ce(e);_e(()=>{let o=0,t=0;return o=window.requestAnimationFrame(()=>t=window.requestAnimationFrame(r)),()=>{window.cancelAnimationFrame(o),window.cancelAnimationFrame(t)}},[r])}function Ex(e){return e.nodeType===e.ELEMENT_NODE}function Rx(e){const r=[],o=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:t=>{const n=t.tagName==="INPUT"&&t.type==="hidden";return t.disabled||t.hidden||n?NodeFilter.FILTER_SKIP:t.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;o.nextNode();)r.push(o.currentNode);return r}function xt(e){const r=document.activeElement;return e.some(o=>o===r?!0:(o.focus(),document.activeElement!==r))}var jx=od,pd=nd,gd=cd,md=id,xd=ld,hd=sd,vd=kn;const Dx=jx,yd=u.forwardRef(({className:e,...r},o)=>d.jsx(pd,{ref:o,className:ne("fixed top-0 z-[100] flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col md:max-w-[420px]",e),...r}));yd.displayName=pd.displayName;const Tx=Qt("group pointer-events-auto relative flex w-full items-center justify-between space-x-4 overflow-hidden rounded-md border p-6 pr-8 shadow-lg transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",{variants:{variant:{default:"border bg-background text-foreground",destructive:"destructive group border-destructive bg-destructive text-destructive-foreground"}},defaultVariants:{variant:"default"}}),wd=u.forwardRef(({className:e,variant:r,...o},t)=>d.jsx(gd,{ref:t,className:ne(Tx({variant:r}),e),...o}));wd.displayName=gd.displayName;const Px=u.forwardRef(({className:e,...r},o)=>d.jsx(hd,{ref:o,className:ne("inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-sm font-medium ring-offset-background transition-colors hover:bg-secondary focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 group-[.destructive]:border-muted/40 group-[.destructive]:hover:border-destructive/30 group-[.destructive]:hover:bg-destructive group-[.destructive]:hover:text-destructive-foreground group-[.destructive]:focus:ring-destructive",e),...r}));Px.displayName=hd.displayName;const kd=u.forwardRef(({className:e,...r},o)=>d.jsx(vd,{ref:o,className:ne("absolute right-2 top-2 rounded-md p-1 text-foreground/50 opacity-0 transition-opacity hover:text-foreground focus:opacity-100 focus:outline-none focus:ring-2 group-hover:opacity-100 group-[.destructive]:text-red-300 group-[.destructive]:hover:text-red-50 group-[.destructive]:focus:ring-red-400 group-[.destructive]:focus:ring-offset-red-600",e),"toast-close":"",...r,children:d.jsx(Jt,{className:"h-4 w-4"})}));kd.displayName=vd.displayName;const _d=u.forwardRef(({className:e,...r},o)=>d.jsx(md,{ref:o,className:ne("text-sm font-semibold",e),...r}));_d.displayName=md.displayName;const Cd=u.forwardRef(({className:e,...r},o)=>d.jsx(xd,{ref:o,className:ne("text-sm opacity-90",e),...r}));Cd.displayName=xd.displayName;function Ox(){const{toasts:e}=$i();return d.jsxs(Dx,{children:[e.map(function({id:r,title:o,description:t,action:n,...a}){return d.jsxs(wd,{...a,children:[d.jsxs("div",{className:"grid gap-1",children:[o&&d.jsx(_d,{children:o}),t&&d.jsx(Cd,{children:t})]}),n,d.jsx(kd,{})]},r)}),d.jsx(yd,{})]})}function Nx({children:e,primaryColor:r}){return O.useEffect(()=>{r&&Sp(r)},[r]),d.jsxs(d.Fragment,{children:[e,d.jsx(Ox,{})]})}function Ix({children:e,primaryColor:r}){return d.jsx(Nx,{primaryColor:r,children:e})}const Ax={},Ma=e=>{let r;const o=new Set,t=(f,p)=>{const x=typeof f=="function"?f(r):f;if(!Object.is(x,r)){const v=r;r=p??(typeof x!="object"||x===null)?x:Object.assign({},r,x),o.forEach(_=>_(r,v))}},n=()=>r,s={setState:t,getState:n,getInitialState:()=>l,subscribe:f=>(o.add(f),()=>o.delete(f)),destroy:()=>{(Ax?"production":void 0)!=="production"&&console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),o.clear()}},l=r=e(t,n,s);return s},Mx=e=>e?Ma(e):Ma;var ht={exports:{}},vt={},yt={exports:{}},wt={};/**
|
|
311
|
-
* @license React
|
|
312
|
-
* use-sync-external-store-shim.production.js
|
|
313
|
-
*
|
|
314
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
315
|
-
*
|
|
316
|
-
* This source code is licensed under the MIT license found in the
|
|
317
|
-
* LICENSE file in the root directory of this source tree.
|
|
318
|
-
*/var La;function Lx(){if(La)return wt;La=1;var e=O;function r(p,x){return p===x&&(p!==0||1/p===1/x)||p!==p&&x!==x}var o=typeof Object.is=="function"?Object.is:r,t=e.useState,n=e.useEffect,a=e.useLayoutEffect,c=e.useDebugValue;function i(p,x){var v=x(),_=t({inst:{value:v,getSnapshot:x}}),b=_[0].inst,m=_[1];return a(function(){b.value=v,b.getSnapshot=x,s(b)&&m({inst:b})},[p,v,x]),n(function(){return s(b)&&m({inst:b}),p(function(){s(b)&&m({inst:b})})},[p]),c(v),v}function s(p){var x=p.getSnapshot;p=p.value;try{var v=x();return!o(p,v)}catch{return!0}}function l(p,x){return x()}var f=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?l:i;return wt.useSyncExternalStore=e.useSyncExternalStore!==void 0?e.useSyncExternalStore:f,wt}var za;function zx(){return za||(za=1,yt.exports=Lx()),yt.exports}/**
|
|
319
|
-
* @license React
|
|
320
|
-
* use-sync-external-store-shim/with-selector.production.js
|
|
321
|
-
*
|
|
322
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
323
|
-
*
|
|
324
|
-
* This source code is licensed under the MIT license found in the
|
|
325
|
-
* LICENSE file in the root directory of this source tree.
|
|
326
|
-
*/var Fa;function Fx(){if(Fa)return vt;Fa=1;var e=O,r=zx();function o(l,f){return l===f&&(l!==0||1/l===1/f)||l!==l&&f!==f}var t=typeof Object.is=="function"?Object.is:o,n=r.useSyncExternalStore,a=e.useRef,c=e.useEffect,i=e.useMemo,s=e.useDebugValue;return vt.useSyncExternalStoreWithSelector=function(l,f,p,x,v){var _=a(null);if(_.current===null){var b={hasValue:!1,value:null};_.current=b}else b=_.current;_=i(function(){function w(N){if(!h){if(h=!0,k=N,N=x(N),v!==void 0&&b.hasValue){var C=b.value;if(v(C,N))return S=C}return S=N}if(C=S,t(k,N))return C;var g=x(N);return v!==void 0&&v(C,g)?(k=N,C):(k=N,S=g)}var h=!1,k,S,D=p===void 0?null:p;return[function(){return w(f())},D===null?void 0:function(){return w(D())}]},[f,p,x,v]);var m=n(l,_[0],_[1]);return c(function(){b.hasValue=!0,b.value=m},[m]),s(m),m},vt}var $a;function $x(){return $a||($a=1,ht.exports=Fx()),ht.exports}var Vx=$x();const Wx=Kr(Vx),Sd={},{useDebugValue:Bx}=O,{useSyncExternalStoreWithSelector:Hx}=Wx;let Va=!1;const qx=e=>e;function Ux(e,r=qx,o){(Sd?"production":void 0)!=="production"&&o&&!Va&&(console.warn("[DEPRECATED] Use `createWithEqualityFn` instead of `create` or use `useStoreWithEqualityFn` instead of `useStore`. They can be imported from 'zustand/traditional'. https://github.com/pmndrs/zustand/discussions/1937"),Va=!0);const t=Hx(e.subscribe,e.getState,e.getServerState||e.getInitialState,r,o);return Bx(t),t}const Yx=e=>{(Sd?"production":void 0)!=="production"&&typeof e!="function"&&console.warn("[DEPRECATED] Passing a vanilla store will be unsupported in a future version. Instead use `import { useStore } from 'zustand'`.");const r=typeof e=="function"?Mx(e):e,o=(t,n)=>Ux(r,t,n);return Object.assign(o,r),o},Kx=e=>Yx,Gx={};function Xx(e,r){let o;try{o=e()}catch{return}return{getItem:n=>{var a;const c=s=>s===null?null:JSON.parse(s,void 0),i=(a=o.getItem(n))!=null?a:null;return i instanceof Promise?i.then(c):c(i)},setItem:(n,a)=>o.setItem(n,JSON.stringify(a,void 0)),removeItem:n=>o.removeItem(n)}}const Yr=e=>r=>{try{const o=e(r);return o instanceof Promise?o:{then(t){return Yr(t)(o)},catch(t){return this}}}catch(o){return{then(t){return this},catch(t){return Yr(t)(o)}}}},Zx=(e,r)=>(o,t,n)=>{let a={getStorage:()=>localStorage,serialize:JSON.stringify,deserialize:JSON.parse,partialize:m=>m,version:0,merge:(m,w)=>({...w,...m}),...r},c=!1;const i=new Set,s=new Set;let l;try{l=a.getStorage()}catch{}if(!l)return e((...m)=>{console.warn(`[zustand persist middleware] Unable to update item '${a.name}', the given storage is currently unavailable.`),o(...m)},t,n);const f=Yr(a.serialize),p=()=>{const m=a.partialize({...t()});let w;const h=f({state:m,version:a.version}).then(k=>l.setItem(a.name,k)).catch(k=>{w=k});if(w)throw w;return h},x=n.setState;n.setState=(m,w)=>{x(m,w),p()};const v=e((...m)=>{o(...m),p()},t,n);let _;const b=()=>{var m;if(!l)return;c=!1,i.forEach(h=>h(t()));const w=((m=a.onRehydrateStorage)==null?void 0:m.call(a,t()))||void 0;return Yr(l.getItem.bind(l))(a.name).then(h=>{if(h)return a.deserialize(h)}).then(h=>{if(h)if(typeof h.version=="number"&&h.version!==a.version){if(a.migrate)return a.migrate(h.state,h.version);console.error("State loaded from storage couldn't be migrated since no migrate function was provided")}else return h.state}).then(h=>{var k;return _=a.merge(h,(k=t())!=null?k:v),o(_,!0),p()}).then(()=>{w?.(_,void 0),c=!0,s.forEach(h=>h(_))}).catch(h=>{w?.(void 0,h)})};return n.persist={setOptions:m=>{a={...a,...m},m.getStorage&&(l=m.getStorage())},clearStorage:()=>{l?.removeItem(a.name)},getOptions:()=>a,rehydrate:()=>b(),hasHydrated:()=>c,onHydrate:m=>(i.add(m),()=>{i.delete(m)}),onFinishHydration:m=>(s.add(m),()=>{s.delete(m)})},b(),_||v},Jx=(e,r)=>(o,t,n)=>{let a={storage:Xx(()=>localStorage),partialize:b=>b,version:0,merge:(b,m)=>({...m,...b}),...r},c=!1;const i=new Set,s=new Set;let l=a.storage;if(!l)return e((...b)=>{console.warn(`[zustand persist middleware] Unable to update item '${a.name}', the given storage is currently unavailable.`),o(...b)},t,n);const f=()=>{const b=a.partialize({...t()});return l.setItem(a.name,{state:b,version:a.version})},p=n.setState;n.setState=(b,m)=>{p(b,m),f()};const x=e((...b)=>{o(...b),f()},t,n);n.getInitialState=()=>x;let v;const _=()=>{var b,m;if(!l)return;c=!1,i.forEach(h=>{var k;return h((k=t())!=null?k:x)});const w=((m=a.onRehydrateStorage)==null?void 0:m.call(a,(b=t())!=null?b:x))||void 0;return Yr(l.getItem.bind(l))(a.name).then(h=>{if(h)if(typeof h.version=="number"&&h.version!==a.version){if(a.migrate)return[!0,a.migrate(h.state,h.version)];console.error("State loaded from storage couldn't be migrated since no migrate function was provided")}else return[!1,h.state];return[!1,void 0]}).then(h=>{var k;const[S,D]=h;if(v=a.merge(D,(k=t())!=null?k:x),o(v,!0),S)return f()}).then(()=>{w?.(v,void 0),v=t(),c=!0,s.forEach(h=>h(v))}).catch(h=>{w?.(void 0,h)})};return n.persist={setOptions:b=>{a={...a,...b},b.storage&&(l=b.storage)},clearStorage:()=>{l?.removeItem(a.name)},getOptions:()=>a,rehydrate:()=>_(),hasHydrated:()=>c,onHydrate:b=>(i.add(b),()=>{i.delete(b)}),onFinishHydration:b=>(s.add(b),()=>{s.delete(b)})},a.skipHydration||_(),v||x},Qx=(e,r)=>"getStorage"in r||"serialize"in r||"deserialize"in r?((Gx?"production":void 0)!=="production"&&console.warn("[DEPRECATED] `getStorage`, `serialize` and `deserialize` options are deprecated. Use `storage` option instead."),Zx(e,r)):Jx(e,r),eh=Qx,Wa="csv-importer-theme",rh=Kx()(eh(e=>({theme:typeof window<"u"?localStorage.getItem(Wa):"light",setTheme:r=>e(o=>({theme:r||(o.theme==="light"?"dark":"light")}))}),{name:Wa})),oh=O.forwardRef((e,r)=>{const{isModal:o=!0,modalIsOpen:t=!0,modalOnCloseTriggered:n=()=>null,modalCloseOnOutsideClick:a,darkMode:c=!1,primaryColor:i="#2563eb",className:s,onComplete:l,customStyles:f,showDownloadTemplateButton:p,skipHeaderRowSelection:x,language:v,customTranslations:_,importerKey:b,backendUrl:m,user:w,metadata:h,demoData:k,columns:S,...D}=e,N=r??O.useRef(null);O.useEffect(()=>{const P=N?.current;o&&P&&(t?P?.showModal?.():P?.close?.())},[o,t,N]);const C="CSVImporter",g=c?`${C}-dark`:`${C}-light`,y=["csv-importer",`${C}-${o?"dialog":"div"}`,g,s].filter(P=>P).join(" "),E=rh(P=>P.setTheme);O.useEffect(()=>{E(c?"dark":"light")},[c]),O.useEffect(()=>{if(i&&_p(i)&&N?.current){const P=N.current;P&&(P.style.setProperty("--color-primary",i),P.style.setProperty("--color-primary-hover",br(i,20)))}},[i,N]);const A=P=>{a&&P.target===N?.current&&n()};O.useEffect(()=>{const P=N?.current;if(P&&o){const H=()=>{n()};return P.addEventListener("cancel",H),()=>{P.removeEventListener("cancel",H)}}},[o,n,N]);const I={ref:N,...o?{onClick:A}:{},className:y,"data-theme":c?"dark":"light",style:{colorScheme:c?"dark":"light"},...D},L=()=>d.jsx(Ix,{primaryColor:i,children:d.jsx(Jm,{isModal:o,modalIsOpen:t,modalOnCloseTriggered:n,modalCloseOnOutsideClick:a,darkMode:c,primaryColor:i,className:s,onComplete:l,customStyles:f,showDownloadTemplateButton:p,skipHeaderRowSelection:x,language:v,customTranslations:_,importerKey:b,backendUrl:m,user:w,metadata:h,demoData:k,columns:S})});return o?d.jsx("div",{className:"csvImporter",children:d.jsx("dialog",{...I,children:d.jsx(L,{})})}):d.jsx("div",{...I,children:d.jsx(L,{})})});exports.CSVImporter=oh;exports.importcsvStyles=hn;
|
|
327
|
-
//# sourceMappingURL=index.js.map
|