ingeniuscliq-core 0.4.13 → 0.4.15
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 +417 -0
- package/dist/_virtual/index.js +5 -0
- package/dist/_virtual/index2.js +3 -0
- package/dist/_virtual/use-sync-external-store-shim.development.js +3 -0
- package/dist/_virtual/use-sync-external-store-shim.production.js +3 -0
- package/dist/assets/logo.svg.js +3 -0
- package/dist/classes/CoreBuilder.d.ts +1 -0
- package/dist/classes/CoreBuilder.d.ts.map +1 -0
- package/dist/classes/CoreBuilder.js +4 -0
- package/dist/classes/index.d.ts +1 -0
- package/dist/classes/index.d.ts.map +1 -0
- package/dist/components/common/carousel/CustomCarousel.d.ts +2 -1
- package/dist/components/common/carousel/CustomCarousel.d.ts.map +1 -0
- package/dist/components/common/carousel/CustomCarousel.tsx +26 -0
- package/dist/components/common/carousel/CustomCarouselSection.d.ts +2 -1
- package/dist/components/common/carousel/CustomCarouselSection.d.ts.map +1 -0
- package/dist/components/common/carousel/CustomCarouselSection.tsx +41 -0
- package/dist/components/common/carousel/index.d.ts +3 -2
- package/dist/components/common/carousel/index.d.ts.map +1 -0
- package/dist/components/common/form/CustomFormField.d.ts +4 -2
- package/dist/components/common/form/CustomFormField.d.ts.map +1 -0
- package/dist/components/common/form/CustomFormField.tsx +29 -0
- package/dist/components/common/form/FormCheckbox.d.ts +5 -1
- package/dist/components/common/form/FormCheckbox.d.ts.map +1 -0
- package/dist/components/common/form/FormCheckbox.tsx +57 -0
- package/dist/components/common/form/FormInput.d.ts +4 -1
- package/dist/components/common/form/FormInput.d.ts.map +1 -0
- package/dist/components/common/form/FormInput.tsx +60 -0
- package/dist/components/common/form/FormSelect.d.ts +8 -2
- package/dist/components/common/form/FormSelect.d.ts.map +1 -0
- package/dist/components/common/form/FormSelect.tsx +78 -0
- package/dist/components/common/form/FormTextArea.d.ts +6 -4
- package/dist/components/common/form/FormTextArea.d.ts.map +1 -0
- package/dist/components/common/form/FormTextArea.tsx +57 -0
- package/dist/components/common/form/FormWrapper.d.ts +2 -1
- package/dist/components/common/form/FormWrapper.d.ts.map +1 -0
- package/dist/components/common/form/FormWrapper.tsx +21 -0
- package/dist/components/common/form/index.d.ts +4 -3
- package/dist/components/common/form/index.d.ts.map +1 -0
- package/dist/components/common/index.d.ts +2 -0
- package/dist/components/common/index.d.ts.map +1 -0
- package/dist/components/common/logo/Logo.d.ts +2 -1
- package/dist/components/common/logo/Logo.d.ts.map +1 -0
- package/dist/components/common/logo/Logo.tsx +40 -0
- package/dist/components/common/logo/index.d.ts +1 -0
- package/dist/components/common/logo/index.d.ts.map +1 -0
- package/dist/components/common/pagination/CustomPagination.d.ts +2 -1
- package/dist/components/common/pagination/CustomPagination.d.ts.map +1 -0
- package/dist/components/common/pagination/CustomPagination.tsx +64 -0
- package/dist/components/common/pagination/index.d.ts +1 -0
- package/dist/components/common/pagination/index.d.ts.map +1 -0
- package/dist/components/common/select/CustomSelect.d.ts +2 -1
- package/dist/components/common/select/CustomSelect.d.ts.map +1 -0
- package/dist/components/common/select/CustomSelect.tsx +27 -0
- package/dist/components/common/select/index.d.ts +1 -0
- package/dist/components/common/select/index.d.ts.map +1 -0
- package/dist/components/common/spinner/Spinner.d.ts +1 -0
- package/dist/components/common/spinner/Spinner.d.ts.map +1 -0
- package/dist/components/common/spinner/Spinner.tsx +32 -0
- package/dist/components/common/spinner/index.d.ts +1 -0
- package/dist/components/common/spinner/index.d.ts.map +1 -0
- package/dist/components/common/stepper/Stepper.d.ts +18 -0
- package/dist/components/common/stepper/Stepper.d.ts.map +1 -0
- package/dist/components/common/stepper/Stepper.tsx +59 -0
- package/dist/components/common/stepper/index.d.ts +2 -0
- package/dist/components/common/stepper/index.d.ts.map +1 -0
- package/dist/components/index.d.ts +5 -4
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/layouts/CoreBaseLayout.d.ts +3 -1
- package/dist/components/layouts/CoreBaseLayout.d.ts.map +1 -0
- package/dist/components/layouts/CoreBaseLayout.tsx +19 -0
- package/dist/components/layouts/index.d.ts +1 -0
- package/dist/components/layouts/index.d.ts.map +1 -0
- package/dist/components/templates/CoreHomeLayout.d.ts +1 -0
- package/dist/components/templates/CoreHomeLayout.d.ts.map +1 -0
- package/dist/components/templates/CoreHomeLayout.tsx +8 -0
- package/dist/components/templates/CorePreviewLayout.d.ts +2 -1
- package/dist/components/templates/CorePreviewLayout.d.ts.map +1 -0
- package/dist/components/templates/CorePreviewLayout.tsx +27 -0
- package/dist/components/templates/index.d.ts +1 -0
- package/dist/components/templates/index.d.ts.map +1 -0
- package/dist/components/ui/accordion.d.ts +5 -4
- package/dist/components/ui/accordion.d.ts.map +1 -0
- package/dist/components/ui/accordion.tsx +44 -0
- package/dist/components/ui/alert-dialog.d.ts +18 -11
- package/dist/components/ui/alert-dialog.d.ts.map +1 -0
- package/dist/components/ui/alert-dialog.tsx +106 -0
- package/dist/components/ui/alert.d.ts +5 -5
- package/dist/components/ui/alert.d.ts.map +1 -0
- package/dist/components/ui/alert.tsx +49 -0
- package/dist/components/ui/avatar.d.ts +4 -3
- package/dist/components/ui/avatar.d.ts.map +1 -0
- package/dist/components/ui/avatar.tsx +40 -0
- package/dist/components/ui/badge.d.ts +5 -3
- package/dist/components/ui/badge.d.ts.map +1 -0
- package/dist/components/ui/badge.tsx +26 -0
- package/dist/components/ui/breadcrumb.d.ts +17 -8
- package/dist/components/ui/breadcrumb.d.ts.map +1 -0
- package/dist/components/ui/breadcrumb.tsx +88 -0
- package/dist/components/ui/button.d.ts +5 -3
- package/dist/components/ui/button.d.ts.map +1 -0
- package/dist/components/ui/button.tsx +47 -0
- package/dist/components/ui/card.d.ts +9 -8
- package/dist/components/ui/card.d.ts.map +1 -0
- package/dist/components/ui/card.tsx +68 -0
- package/dist/components/ui/carousel.d.ts +6 -6
- package/dist/components/ui/carousel.d.ts.map +1 -0
- package/dist/components/ui/carousel.tsx +191 -0
- package/dist/components/ui/checkbox.d.ts +2 -1
- package/dist/components/ui/checkbox.d.ts.map +1 -0
- package/dist/components/ui/checkbox.tsx +28 -0
- package/dist/components/ui/dialog.d.ts +19 -12
- package/dist/components/ui/dialog.d.ts.map +1 -0
- package/dist/components/ui/dialog.tsx +95 -0
- package/dist/components/ui/dropdown-menu.d.ts +24 -20
- package/dist/components/ui/dropdown-menu.d.ts.map +1 -0
- package/dist/components/ui/dropdown-menu.tsx +140 -0
- package/dist/components/ui/form.d.ts +6 -6
- package/dist/components/ui/form.d.ts.map +1 -0
- package/dist/components/ui/form.tsx +102 -0
- package/dist/components/ui/index.d.ts +2 -6
- package/dist/components/ui/index.d.ts.map +1 -0
- package/dist/components/ui/input.d.ts +3 -3
- package/dist/components/ui/input.d.ts.map +1 -0
- package/dist/components/ui/input.tsx +25 -0
- package/dist/components/ui/label.d.ts +3 -1
- package/dist/components/ui/label.d.ts.map +1 -0
- package/dist/components/ui/label.tsx +20 -0
- package/dist/components/ui/pagination.d.ts +27 -12
- package/dist/components/ui/pagination.d.ts.map +1 -0
- package/dist/components/ui/pagination.tsx +122 -0
- package/dist/components/ui/popover.d.ts +5 -4
- package/dist/components/ui/popover.d.ts.map +1 -0
- package/dist/components/ui/popover.tsx +24 -0
- package/dist/components/ui/radio-group.d.ts +3 -2
- package/dist/components/ui/radio-group.d.ts.map +1 -0
- package/dist/components/ui/radio-group.tsx +34 -0
- package/dist/components/ui/select.d.ts +13 -12
- package/dist/components/ui/select.d.ts.map +1 -0
- package/dist/components/ui/select.tsx +128 -0
- package/dist/components/ui/separator.d.ts +2 -1
- package/dist/components/ui/separator.d.ts.map +1 -0
- package/dist/components/ui/separator.tsx +24 -0
- package/dist/components/ui/sheet.d.ts +26 -11
- package/dist/components/ui/sheet.d.ts.map +1 -0
- package/dist/components/ui/sheet.tsx +106 -0
- package/dist/components/ui/skeleton.d.ts +3 -1
- package/dist/components/ui/skeleton.d.ts.map +1 -0
- package/dist/components/ui/skeleton.tsx +17 -0
- package/dist/components/ui/slider.d.ts +2 -1
- package/dist/components/ui/slider.d.ts.map +1 -0
- package/dist/components/ui/slider.tsx +31 -0
- package/dist/components/ui/stepper.d.ts +40 -32
- package/dist/components/ui/stepper.d.ts.map +1 -0
- package/dist/components/ui/stepper.tsx +452 -0
- package/dist/components/ui/switch.d.ts +2 -1
- package/dist/components/ui/switch.d.ts.map +1 -0
- package/dist/components/ui/switch.tsx +27 -0
- package/dist/components/ui/table.d.ts +9 -8
- package/dist/components/ui/table.d.ts.map +1 -0
- package/dist/components/ui/table.tsx +80 -0
- package/dist/components/ui/tabs.d.ts +5 -4
- package/dist/components/ui/tabs.d.ts.map +1 -0
- package/dist/components/ui/tabs.tsx +45 -0
- package/dist/components/ui/textarea.d.ts +2 -1
- package/dist/components/ui/textarea.d.ts.map +1 -0
- package/dist/components/ui/textarea.tsx +22 -0
- package/dist/components/ui/tooltip.d.ts +5 -4
- package/dist/components/ui/tooltip.d.ts.map +1 -0
- package/dist/components/ui/tooltip.tsx +23 -0
- package/dist/constants/index.d.ts +2 -1
- package/dist/constants/index.d.ts.map +1 -0
- package/dist/helpers/axiosGlobal.d.ts +7 -5
- package/dist/helpers/axiosGlobal.d.ts.map +1 -0
- package/dist/helpers/axiosGlobal.js +66 -0
- package/dist/helpers/image.d.ts +1 -0
- package/dist/helpers/image.d.ts.map +1 -0
- package/dist/helpers/image.js +11 -0
- package/dist/helpers/index.d.ts +1 -2
- package/dist/helpers/index.d.ts.map +1 -0
- package/dist/helpers/numbers.d.ts +1 -0
- package/dist/helpers/numbers.d.ts.map +1 -0
- package/dist/helpers/numbers.js +8 -0
- package/dist/helpers/strings.d.ts +1 -0
- package/dist/helpers/strings.d.ts.map +1 -0
- package/dist/helpers/strings.js +6 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/use-mobile.d.ts +1 -0
- package/dist/hooks/use-mobile.d.ts.map +1 -0
- package/dist/hooks/use-mobile.js +16 -0
- package/dist/hooks/useLanguage.d.ts +5 -0
- package/dist/hooks/useLanguage.d.ts.map +1 -0
- package/dist/hooks/useLanguage.js +32 -0
- package/dist/hooks/useNotification.d.ts +1 -0
- package/dist/hooks/useNotification.d.ts.map +1 -0
- package/dist/hooks/useNotification.js +17 -0
- package/dist/i18n/config.d.ts +82 -68
- package/dist/i18n/config.d.ts.map +1 -0
- package/dist/i18n/config.js +58 -0
- package/dist/i18n/index.d.ts +3 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/locales/en.json.js +12 -0
- package/dist/i18n/locales/es.json.js +12 -0
- package/dist/i18n/locales/fields/en.json.js +52 -0
- package/dist/i18n/locales/fields/es.json.js +52 -0
- package/dist/i18n/locales/messages/en.json.js +14 -0
- package/dist/i18n/locales/messages/es.json.js +14 -0
- package/dist/i18n/utils/getModuleNamespace.d.ts +16 -0
- package/dist/i18n/utils/getModuleNamespace.d.ts.map +1 -0
- package/dist/i18n/utils/getModuleNamespace.js +10 -0
- package/dist/i18n/utils/loadModuleTranslations.d.ts +5 -0
- package/dist/i18n/utils/loadModuleTranslations.d.ts.map +1 -0
- package/dist/i18n/utils/loadModuleTranslations.js +21 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +87 -20192
- package/dist/ingeniuscliq-core.css +1240 -0
- package/dist/lib/utils.d.ts +1 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/lib/utils.js +8 -0
- package/dist/modules/CoreAuth/classes/CoreAuthBuilder.d.ts +5 -3
- package/dist/modules/CoreAuth/classes/CoreAuthBuilder.d.ts.map +1 -0
- package/dist/modules/CoreAuth/classes/CoreAuthBuilder.js +185 -0
- package/dist/modules/CoreAuth/classes/index.d.ts +1 -0
- package/dist/modules/CoreAuth/classes/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/constants/auth.d.ts +1 -0
- package/dist/modules/CoreAuth/constants/auth.d.ts.map +1 -0
- package/dist/modules/CoreAuth/constants/auth.js +6 -0
- package/dist/modules/CoreAuth/constants/index.d.ts +1 -0
- package/dist/modules/CoreAuth/constants/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/context/AuthContext.d.ts +12 -0
- package/dist/modules/CoreAuth/context/AuthContext.d.ts.map +1 -0
- package/dist/modules/CoreAuth/context/AuthContext.tsx +4 -0
- package/dist/modules/CoreAuth/context/index.d.ts +2 -0
- package/dist/modules/CoreAuth/context/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/hooks/index.d.ts +1 -0
- package/dist/modules/CoreAuth/hooks/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/hooks/useAuth.d.ts +10 -9
- package/dist/modules/CoreAuth/hooks/useAuth.d.ts.map +1 -0
- package/dist/modules/CoreAuth/hooks/useAuth.js +38 -0
- package/dist/modules/CoreAuth/index.d.ts +8 -1
- package/dist/modules/CoreAuth/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/index.js +11 -0
- package/dist/modules/CoreAuth/locale/en.json.js +4 -0
- package/dist/modules/CoreAuth/locale/es.json.js +4 -0
- package/dist/modules/CoreAuth/registry/hooks/index.d.ts +1 -0
- package/dist/modules/CoreAuth/registry/hooks/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/registry/index.d.ts +1 -0
- package/dist/modules/CoreAuth/registry/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreAuth/registry/types/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/services/base.d.ts +24 -5
- package/dist/modules/CoreAuth/services/base.d.ts.map +1 -0
- package/dist/modules/CoreAuth/services/base.js +53 -0
- package/dist/modules/CoreAuth/services/index.d.ts +1 -0
- package/dist/modules/CoreAuth/services/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/stores/authStore.d.ts +15 -8
- package/dist/modules/CoreAuth/stores/authStore.d.ts.map +1 -0
- package/dist/modules/CoreAuth/stores/authStore.js +13 -0
- package/dist/modules/CoreAuth/stores/index.d.ts +1 -0
- package/dist/modules/CoreAuth/stores/index.d.ts.map +1 -0
- package/dist/modules/CoreAuth/types/CoreAuth.d.ts +10 -6
- package/dist/modules/CoreAuth/types/CoreAuth.d.ts.map +1 -0
- package/dist/modules/CoreAuth/types/index.d.ts +1 -0
- package/dist/modules/CoreAuth/types/index.d.ts.map +1 -0
- package/dist/modules/CoreCustomization/classes/CoreCustomizationBuilder.d.ts +8 -8
- package/dist/modules/CoreCustomization/classes/CoreCustomizationBuilder.d.ts.map +1 -0
- package/dist/modules/CoreCustomization/classes/CoreCustomizationBuilder.js +82 -0
- package/dist/modules/CoreCustomization/classes/index.d.ts +1 -0
- package/dist/modules/CoreCustomization/classes/index.d.ts.map +1 -0
- package/dist/modules/CoreCustomization/index.d.ts +4 -1
- package/dist/modules/CoreCustomization/index.d.ts.map +1 -0
- package/dist/modules/CoreCustomization/index.js +9 -0
- package/dist/modules/CoreCustomization/locale/en.json.js +4 -0
- package/dist/modules/CoreCustomization/locale/es.json.js +4 -0
- package/dist/modules/CoreCustomization/registry/index.d.ts +1 -0
- package/dist/modules/CoreCustomization/registry/index.d.ts.map +1 -0
- package/dist/modules/CoreCustomization/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreCustomization/registry/types/index.d.ts.map +1 -0
- package/dist/modules/CoreCustomization/services/base.d.ts +8 -1
- package/dist/modules/CoreCustomization/services/base.d.ts.map +1 -0
- package/dist/modules/CoreCustomization/services/base.js +21 -0
- package/dist/modules/CoreCustomization/services/index.d.ts +1 -0
- package/dist/modules/CoreCustomization/services/index.d.ts.map +1 -0
- package/dist/modules/CoreCustomization/types/CoreCustomization.d.ts +1 -0
- package/dist/modules/CoreCustomization/types/CoreCustomization.d.ts.map +1 -0
- package/dist/modules/CoreCustomization/types/index.d.ts +1 -0
- package/dist/modules/CoreCustomization/types/index.d.ts.map +1 -0
- package/dist/modules/CoreOrder/classes/CoreOrderBuilder.d.ts +4 -3
- package/dist/modules/CoreOrder/classes/CoreOrderBuilder.d.ts.map +1 -0
- package/dist/modules/CoreOrder/classes/CoreOrderBuilder.js +113 -0
- package/dist/modules/CoreOrder/classes/index.d.ts +1 -0
- package/dist/modules/CoreOrder/classes/index.d.ts.map +1 -0
- package/dist/modules/CoreOrder/index.d.ts +4 -1
- package/dist/modules/CoreOrder/index.d.ts.map +1 -0
- package/dist/modules/CoreOrder/index.js +9 -0
- package/dist/modules/CoreOrder/locale/en.json.js +4 -0
- package/dist/modules/CoreOrder/locale/es.json.js +4 -0
- package/dist/modules/CoreOrder/registry/hooks/index.d.ts +1 -0
- package/dist/modules/CoreOrder/registry/hooks/index.d.ts.map +1 -0
- package/dist/modules/CoreOrder/registry/index.d.ts +1 -0
- package/dist/modules/CoreOrder/registry/index.d.ts.map +1 -0
- package/dist/modules/CoreOrder/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreOrder/registry/types/index.d.ts.map +1 -0
- package/dist/modules/CoreOrder/services/base.d.ts +17 -1
- package/dist/modules/CoreOrder/services/base.d.ts.map +1 -0
- package/dist/modules/CoreOrder/services/base.js +27 -0
- package/dist/modules/CoreOrder/services/index.d.ts +1 -0
- package/dist/modules/CoreOrder/services/index.d.ts.map +1 -0
- package/dist/modules/CoreOrder/types/CoreOrder.d.ts +1 -0
- package/dist/modules/CoreOrder/types/CoreOrder.d.ts.map +1 -0
- package/dist/modules/CoreOrder/types/index.d.ts +1 -0
- package/dist/modules/CoreOrder/types/index.d.ts.map +1 -0
- package/dist/modules/CoreOrder/types/interfaces/OrderActions.d.ts +1 -0
- package/dist/modules/CoreOrder/types/interfaces/OrderActions.d.ts.map +1 -0
- package/dist/modules/CoreOrder/types/interfaces/index.d.ts +1 -0
- package/dist/modules/CoreOrder/types/interfaces/index.d.ts.map +1 -0
- package/dist/modules/CorePayForm/classes/CorePayFormBuilder.d.ts +12 -11
- package/dist/modules/CorePayForm/classes/CorePayFormBuilder.d.ts.map +1 -0
- package/dist/modules/CorePayForm/classes/CorePayFormBuilder.js +67 -0
- package/dist/modules/CorePayForm/classes/index.d.ts +1 -0
- package/dist/modules/CorePayForm/classes/index.d.ts.map +1 -0
- package/dist/modules/CorePayForm/index.d.ts +4 -1
- package/dist/modules/CorePayForm/index.d.ts.map +1 -0
- package/dist/modules/CorePayForm/index.js +9 -0
- package/dist/modules/CorePayForm/locale/en.json.js +4 -0
- package/dist/modules/CorePayForm/locale/es.json.js +4 -0
- package/dist/modules/CorePayForm/registry/hooks/index.d.ts +1 -0
- package/dist/modules/CorePayForm/registry/hooks/index.d.ts.map +1 -0
- package/dist/modules/CorePayForm/registry/index.d.ts +1 -0
- package/dist/modules/CorePayForm/registry/index.d.ts.map +1 -0
- package/dist/modules/CorePayForm/registry/types/index.d.ts +1 -0
- package/dist/modules/CorePayForm/registry/types/index.d.ts.map +1 -0
- package/dist/modules/CorePayForm/services/base.d.ts +12 -1
- package/dist/modules/CorePayForm/services/base.d.ts.map +1 -0
- package/dist/modules/CorePayForm/services/base.js +21 -0
- package/dist/modules/CorePayForm/services/index.d.ts +1 -0
- package/dist/modules/CorePayForm/services/index.d.ts.map +1 -0
- package/dist/modules/CorePayForm/types/CorePayForm.d.ts +1 -0
- package/dist/modules/CorePayForm/types/CorePayForm.d.ts.map +1 -0
- package/dist/modules/CorePayForm/types/index.d.ts +1 -0
- package/dist/modules/CorePayForm/types/index.d.ts.map +1 -0
- package/dist/modules/CoreProduct/classes/CoreProductBuilder.d.ts +5 -4
- package/dist/modules/CoreProduct/classes/CoreProductBuilder.d.ts.map +1 -0
- package/dist/modules/CoreProduct/classes/CoreProductBuilder.js +120 -0
- package/dist/modules/CoreProduct/classes/index.d.ts +1 -0
- package/dist/modules/CoreProduct/classes/index.d.ts.map +1 -0
- package/dist/modules/CoreProduct/index.d.ts +4 -1
- package/dist/modules/CoreProduct/index.d.ts.map +1 -0
- package/dist/modules/CoreProduct/index.js +9 -0
- package/dist/modules/CoreProduct/locale/en.json.js +14 -0
- package/dist/modules/CoreProduct/locale/es.json.js +14 -0
- package/dist/modules/CoreProduct/registry/index.d.ts +1 -0
- package/dist/modules/CoreProduct/registry/index.d.ts.map +1 -0
- package/dist/modules/CoreProduct/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreProduct/registry/types/index.d.ts.map +1 -0
- package/dist/modules/CoreProduct/services/base.d.ts +20 -7
- package/dist/modules/CoreProduct/services/base.d.ts.map +1 -0
- package/dist/modules/CoreProduct/services/base.js +35 -0
- package/dist/modules/CoreProduct/services/index.d.ts +1 -0
- package/dist/modules/CoreProduct/services/index.d.ts.map +1 -0
- package/dist/modules/CoreProduct/types/CoreProduct.d.ts +1 -0
- package/dist/modules/CoreProduct/types/CoreProduct.d.ts.map +1 -0
- package/dist/modules/CoreProduct/types/CoreProductCategory.d.ts +1 -0
- package/dist/modules/CoreProduct/types/CoreProductCategory.d.ts.map +1 -0
- package/dist/modules/CoreProduct/types/index.d.ts +1 -0
- package/dist/modules/CoreProduct/types/index.d.ts.map +1 -0
- package/dist/modules/CoreShipment/classes/CoreShipmentBuilder.d.ts +6 -5
- package/dist/modules/CoreShipment/classes/CoreShipmentBuilder.d.ts.map +1 -0
- package/dist/modules/CoreShipment/classes/CoreShipmentBuilder.js +172 -0
- package/dist/modules/CoreShipment/classes/index.d.ts +1 -0
- package/dist/modules/CoreShipment/classes/index.d.ts.map +1 -0
- package/dist/modules/CoreShipment/index.d.ts +4 -1
- package/dist/modules/CoreShipment/index.d.ts.map +1 -0
- package/dist/modules/CoreShipment/index.js +9 -0
- package/dist/modules/CoreShipment/locale/en.json.js +14 -0
- package/dist/modules/CoreShipment/locale/es.json.js +14 -0
- package/dist/modules/CoreShipment/registry/classes/index.d.ts +1 -0
- package/dist/modules/CoreShipment/registry/classes/index.d.ts.map +1 -0
- package/dist/modules/CoreShipment/registry/index.d.ts +1 -0
- package/dist/modules/CoreShipment/registry/index.d.ts.map +1 -0
- package/dist/modules/CoreShipment/registry/services/index.d.ts +1 -0
- package/dist/modules/CoreShipment/registry/services/index.d.ts.map +1 -0
- package/dist/modules/CoreShipment/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreShipment/registry/types/index.d.ts.map +1 -0
- package/dist/modules/CoreShipment/services/base.d.ts +30 -2
- package/dist/modules/CoreShipment/services/base.d.ts.map +1 -0
- package/dist/modules/CoreShipment/services/base.js +63 -0
- package/dist/modules/CoreShipment/services/index.d.ts +1 -0
- package/dist/modules/CoreShipment/services/index.d.ts.map +1 -0
- package/dist/modules/CoreShipment/types/CoreShipment.d.ts +1 -0
- package/dist/modules/CoreShipment/types/CoreShipment.d.ts.map +1 -0
- package/dist/modules/CoreShipment/types/CoreShipment.js +7 -0
- package/dist/modules/CoreShipment/types/index.d.ts +1 -0
- package/dist/modules/CoreShipment/types/index.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/classes/CoreShopCartBuilder.d.ts +16 -5
- package/dist/modules/CoreShopCart/classes/CoreShopCartBuilder.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/classes/CoreShopCartBuilder.js +166 -0
- package/dist/modules/CoreShopCart/classes/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/classes/index.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/constants/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/constants/index.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/constants/shopCart.d.ts +1 -0
- package/dist/modules/CoreShopCart/constants/shopCart.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/constants/shopCart.js +8 -0
- package/dist/modules/CoreShopCart/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/index.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/index.js +8 -0
- package/dist/modules/CoreShopCart/locale/en.json.js +4 -0
- package/dist/modules/CoreShopCart/locale/es.json.js +4 -0
- package/dist/modules/CoreShopCart/registry/hooks/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/registry/hooks/index.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/registry/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/registry/index.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/registry/types/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/registry/types/index.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/services/base.d.ts +23 -4
- package/dist/modules/CoreShopCart/services/base.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/services/base.js +53 -0
- package/dist/modules/CoreShopCart/services/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/services/index.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/types/CoreShopCart.d.ts +1 -0
- package/dist/modules/CoreShopCart/types/CoreShopCart.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/types/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/types/index.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/types/interfaces/CartActions.d.ts +1 -0
- package/dist/modules/CoreShopCart/types/interfaces/CartActions.d.ts.map +1 -0
- package/dist/modules/CoreShopCart/types/interfaces/index.d.ts +1 -0
- package/dist/modules/CoreShopCart/types/interfaces/index.d.ts.map +1 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/index.d.ts.map +1 -0
- package/dist/modules/registry/hooks/index.d.ts +1 -0
- package/dist/modules/registry/hooks/index.d.ts.map +1 -0
- package/dist/modules/registry/index.d.ts +1 -0
- package/dist/modules/registry/index.d.ts.map +1 -0
- package/dist/modules/registry/types/index.d.ts +1 -0
- package/dist/modules/registry/types/index.d.ts.map +1 -0
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +814 -0
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +751 -0
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +350 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +161 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +137 -0
- package/dist/node_modules/@radix-ui/number/dist/index.js +6 -0
- package/dist/node_modules/@radix-ui/primitive/dist/index.js +11 -0
- package/dist/node_modules/@radix-ui/react-accordion/dist/index.js +305 -0
- package/dist/node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-collapsible/dist/index.js +145 -0
- package/dist/node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
- package/dist/node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-collection/dist/index.js +70 -0
- package/dist/node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-primitive/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-alert-dialog/dist/index.js +147 -0
- package/dist/node_modules/@radix-ui/react-avatar/dist/index.js +118 -0
- package/dist/node_modules/@radix-ui/react-avatar/node_modules/@radix-ui/react-primitive/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +270 -0
- package/dist/node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
- package/dist/node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-primitive/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +39 -0
- package/dist/node_modules/@radix-ui/react-context/dist/index.js +79 -0
- package/dist/node_modules/@radix-ui/react-dialog/dist/index.js +321 -0
- package/dist/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +211 -0
- package/dist/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-focus-scope/dist/index.js +207 -0
- package/dist/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-portal/dist/index.js +17 -0
- package/dist/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
- package/dist/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive/dist/index.js +43 -0
- package/dist/node_modules/@radix-ui/react-direction/dist/index.js +11 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/dist/index.js +267 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-menu/dist/index.js +834 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-collection/dist/index.js +70 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +211 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-focus-scope/dist/index.js +207 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-popper/dist/index.js +283 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-arrow/dist/index.js +25 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-portal/dist/index.js +17 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-roving-focus/dist/index.js +223 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-primitive/dist/index.js +43 -0
- package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +29 -0
- package/dist/node_modules/@radix-ui/react-id/dist/index.js +15 -0
- package/dist/node_modules/@radix-ui/react-label/dist/index.js +24 -0
- package/dist/node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-popover/dist/index.js +299 -0
- package/dist/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +211 -0
- package/dist/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-focus-scope/dist/index.js +207 -0
- package/dist/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-popper/dist/index.js +283 -0
- package/dist/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-arrow/dist/index.js +25 -0
- package/dist/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-portal/dist/index.js +17 -0
- package/dist/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
- package/dist/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-primitive/dist/index.js +43 -0
- package/dist/node_modules/@radix-ui/react-radio-group/dist/index.js +282 -0
- package/dist/node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
- package/dist/node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-primitive/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-roving-focus/dist/index.js +223 -0
- package/dist/node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-collection/dist/index.js +70 -0
- package/dist/node_modules/@radix-ui/react-select/dist/index.js +1156 -0
- package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-collection/dist/index.js +70 -0
- package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +211 -0
- package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-focus-scope/dist/index.js +207 -0
- package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-popper/dist/index.js +283 -0
- package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-arrow/dist/index.js +25 -0
- package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-portal/dist/index.js +17 -0
- package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-primitive/dist/index.js +43 -0
- package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-visually-hidden/dist/index.js +34 -0
- package/dist/node_modules/@radix-ui/react-separator/dist/index.js +30 -0
- package/dist/node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-primitive/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-slider/dist/index.js +554 -0
- package/dist/node_modules/@radix-ui/react-slider/node_modules/@radix-ui/react-collection/dist/index.js +70 -0
- package/dist/node_modules/@radix-ui/react-slider/node_modules/@radix-ui/react-primitive/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-slot/dist/index.js +99 -0
- package/dist/node_modules/@radix-ui/react-switch/dist/index.js +152 -0
- package/dist/node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-primitive/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-tabs/dist/index.js +187 -0
- package/dist/node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
- package/dist/node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-primitive/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-roving-focus/dist/index.js +223 -0
- package/dist/node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-collection/dist/index.js +70 -0
- package/dist/node_modules/@radix-ui/react-tooltip/dist/index.js +482 -0
- package/dist/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +211 -0
- package/dist/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-popper/dist/index.js +283 -0
- package/dist/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-arrow/dist/index.js +25 -0
- package/dist/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
- package/dist/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-primitive/dist/index.js +43 -0
- package/dist/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-visually-hidden/dist/index.js +35 -0
- package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +12 -0
- package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +70 -0
- package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +18 -0
- package/dist/node_modules/@radix-ui/react-use-is-hydrated/dist/index.js +16 -0
- package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +7 -0
- package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +15 -0
- package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +40 -0
- package/dist/node_modules/@stepperize/core/dist/index.js +3 -0
- package/dist/node_modules/@stepperize/react/dist/index.js +6 -0
- package/dist/node_modules/aria-hidden/dist/es2015/index.js +137 -0
- package/dist/node_modules/axios/index.js +25 -0
- package/dist/node_modules/axios/lib/adapters/adapters.js +81 -0
- package/dist/node_modules/axios/lib/adapters/fetch.js +229 -0
- package/dist/node_modules/axios/lib/adapters/xhr.js +199 -0
- package/dist/node_modules/axios/lib/axios.js +86 -0
- package/dist/node_modules/axios/lib/cancel/CancelToken.js +133 -0
- package/dist/node_modules/axios/lib/cancel/CanceledError.js +23 -0
- package/dist/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/dist/node_modules/axios/lib/core/Axios.js +238 -0
- package/dist/node_modules/axios/lib/core/AxiosError.js +101 -0
- package/dist/node_modules/axios/lib/core/AxiosHeaders.js +312 -0
- package/dist/node_modules/axios/lib/core/InterceptorManager.js +69 -0
- package/dist/node_modules/axios/lib/core/buildFullPath.js +22 -0
- package/dist/node_modules/axios/lib/core/dispatchRequest.js +81 -0
- package/dist/node_modules/axios/lib/core/mergeConfig.js +106 -0
- package/dist/node_modules/axios/lib/core/settle.js +27 -0
- package/dist/node_modules/axios/lib/core/transformData.js +28 -0
- package/dist/node_modules/axios/lib/defaults/index.js +159 -0
- package/dist/node_modules/axios/lib/defaults/transitional.js +7 -0
- package/dist/node_modules/axios/lib/env/data.js +3 -0
- package/dist/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +56 -0
- package/dist/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
- package/dist/node_modules/axios/lib/helpers/bind.js +7 -0
- package/dist/node_modules/axios/lib/helpers/buildURL.js +69 -0
- package/dist/node_modules/axios/lib/helpers/combineURLs.js +15 -0
- package/dist/node_modules/axios/lib/helpers/composeSignals.js +48 -0
- package/dist/node_modules/axios/lib/helpers/cookies.js +43 -0
- package/dist/node_modules/axios/lib/helpers/formDataToJSON.js +93 -0
- package/dist/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
- package/dist/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
- package/dist/node_modules/axios/lib/helpers/isURLSameOrigin.js +16 -0
- package/dist/node_modules/axios/lib/helpers/null.js +4 -0
- package/dist/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
- package/dist/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
- package/dist/node_modules/axios/lib/helpers/progressEventReducer.js +46 -0
- package/dist/node_modules/axios/lib/helpers/resolveConfig.js +58 -0
- package/dist/node_modules/axios/lib/helpers/speedometer.js +53 -0
- package/dist/node_modules/axios/lib/helpers/spread.js +28 -0
- package/dist/node_modules/axios/lib/helpers/throttle.js +44 -0
- package/dist/node_modules/axios/lib/helpers/toFormData.js +219 -0
- package/dist/node_modules/axios/lib/helpers/toURLEncodedForm.js +19 -0
- package/dist/node_modules/axios/lib/helpers/trackStream.js +88 -0
- package/dist/node_modules/axios/lib/helpers/validator.js +99 -0
- package/dist/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
- package/dist/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
- package/dist/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +5 -0
- package/dist/node_modules/axios/lib/platform/browser/index.js +15 -0
- package/dist/node_modules/axios/lib/platform/common/utils.js +45 -0
- package/dist/node_modules/axios/lib/platform/index.js +9 -0
- package/dist/node_modules/axios/lib/utils.js +780 -0
- package/dist/node_modules/class-variance-authority/dist/index.js +44 -0
- package/dist/node_modules/clsx/dist/clsx.js +3 -0
- package/dist/node_modules/embla-carousel/esm/embla-carousel.esm.js +1669 -0
- package/dist/node_modules/embla-carousel-react/esm/embla-carousel-react.esm.js +37 -0
- package/dist/node_modules/embla-carousel-reactive-utils/esm/embla-carousel-reactive-utils.esm.js +38 -0
- package/dist/node_modules/get-nonce/dist/es2015/index.js +8 -0
- package/dist/node_modules/lucide-react/dist/esm/Icon.js +43 -0
- package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +30 -0
- package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +20 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/check.js +14 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +14 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-left.js +14 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-right.js +14 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-up.js +14 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle.js +14 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ellipsis.js +18 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/x.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +28 -0
- package/dist/node_modules/react-hook-form/dist/index.esm.js +560 -0
- package/dist/node_modules/react-i18next/dist/es/IcuTransUtils/htmlEntityDecoder.js +210 -0
- package/dist/node_modules/react-i18next/dist/es/context.js +18 -0
- package/dist/node_modules/react-i18next/dist/es/defaults.js +21 -0
- package/dist/node_modules/react-i18next/dist/es/i18nInstance.js +7 -0
- package/dist/node_modules/react-i18next/dist/es/initReactI18next.js +12 -0
- package/dist/node_modules/react-i18next/dist/es/unescape.js +27 -0
- package/dist/node_modules/react-i18next/dist/es/useTranslation.js +157 -0
- package/dist/node_modules/react-i18next/dist/es/utils.js +63 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +9 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +167 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +38 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +21 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +110 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +5 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +7 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +56 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +10 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +31 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/component.js +19 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +25 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +51 -0
- package/dist/node_modules/sonner/dist/index.js +299 -0
- package/dist/node_modules/tslib/tslib.es6.js +56 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +24 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +48 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +42 -0
- package/dist/node_modules/use-sidecar/dist/es2015/exports.js +21 -0
- package/dist/node_modules/use-sidecar/dist/es2015/medium.js +77 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +106 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +77 -0
- package/dist/node_modules/use-sync-external-store/shim/index.js +19 -0
- package/dist/node_modules/zustand/esm/middleware.js +188 -0
- package/dist/node_modules/zustand/esm/react.js +22 -0
- package/dist/node_modules/zustand/esm/vanilla.js +24 -0
- package/dist/services/base.d.ts +1 -0
- package/dist/services/base.d.ts.map +1 -0
- package/dist/services/base.js +67 -0
- package/dist/services/factory.d.ts +14 -0
- package/dist/services/factory.d.ts.map +1 -0
- package/dist/services/factory.js +39 -0
- package/dist/services/index.d.ts +2 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/stores/customizationStore.d.ts +5 -27
- package/dist/stores/customizationStore.d.ts.map +1 -0
- package/dist/stores/customizationStore.js +7 -0
- package/dist/stores/index.d.ts +1 -0
- package/dist/stores/index.d.ts.map +1 -0
- package/dist/styles/index.d.ts +1 -0
- package/dist/styles/index.d.ts.map +1 -0
- package/dist/types/BaseResponseActions.d.ts +1 -0
- package/dist/types/BaseResponseActions.d.ts.map +1 -0
- package/dist/types/BaseStore.d.ts +1 -0
- package/dist/types/BaseStore.d.ts.map +1 -0
- package/dist/types/BaseType.d.ts +1 -0
- package/dist/types/BaseType.d.ts.map +1 -0
- package/dist/types/CoreImage.d.ts +1 -0
- package/dist/types/CoreImage.d.ts.map +1 -0
- package/dist/types/CoreMenu.d.ts +1 -0
- package/dist/types/CoreMenu.d.ts.map +1 -0
- package/dist/types/contracts/BaseApiResponse.d.ts +1 -0
- package/dist/types/contracts/BaseApiResponse.d.ts.map +1 -0
- package/dist/types/contracts/BasePagination.d.ts +1 -0
- package/dist/types/contracts/BasePagination.d.ts.map +1 -0
- package/dist/types/contracts/index.d.ts +1 -0
- package/dist/types/contracts/index.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/interfaces/BaseImageType.d.ts +1 -0
- package/dist/types/interfaces/BaseImageType.d.ts.map +1 -0
- package/dist/types/interfaces/BaseSlugType.d.ts +1 -0
- package/dist/types/interfaces/BaseSlugType.d.ts.map +1 -0
- package/dist/types/interfaces/BaseVisibleType.d.ts +1 -0
- package/dist/types/interfaces/BaseVisibleType.d.ts.map +1 -0
- package/dist/types/interfaces/index.d.ts +1 -0
- package/dist/types/interfaces/index.d.ts.map +1 -0
- package/dist/types/ui/carousel.d.ts +1 -0
- package/dist/types/ui/carousel.d.ts.map +1 -0
- package/dist/types/ui/index.d.ts +1 -0
- package/dist/types/ui/index.d.ts.map +1 -0
- package/dist/types/ui/main.d.ts +1 -0
- package/dist/types/ui/main.d.ts.map +1 -0
- package/dist/types/ui/template.d.ts +1 -0
- package/dist/types/ui/template.d.ts.map +1 -0
- package/dist/ui/index.d.ts +1 -0
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/vite-env.d.ts +11 -0
- package/package.json +18 -11
- package/core/commands/common/constants.js +0 -10
- package/core/commands/create-core-module.js +0 -288
- package/core/commands/create-module.js +0 -288
- package/core/commands/create-template.js +0 -169
- package/core/commands/helpers/index.js +0 -15
- package/core/commands/helpers/strings.js +0 -4
- package/core/commands/rollback-core-module.js +0 -195
- package/core/commands/rollback-module.js +0 -208
- package/core/commands/templates/locale.js +0 -14
- package/core/commands/templates/service.js +0 -12
- package/core/commands/templates/type.js +0 -10
- package/dist/assets/index.d.ts +0 -8
- package/dist/components/ui/calendar.d.ts +0 -4
- package/dist/components/ui/drawer.d.ts +0 -13
- package/dist/components/ui/navigation-menu.d.ts +0 -14
- package/dist/components/ui/sidebar.d.ts +0 -69
- package/dist/components/ui/sonner.d.ts +0 -3
- package/dist/constants/menu.d.ts +0 -2
- package/dist/helpers/template.d.ts +0 -2
- package/dist/helpers/tenant.d.ts +0 -2
- package/dist/index.css +0 -1
- package/dist/modules/CoreCustomization/registry/hooks/index.d.ts +0 -0
- package/dist/modules/CoreProduct/registry/hooks/index.d.ts +0 -0
|
@@ -0,0 +1,1240 @@
|
|
|
1
|
+
div.spinner {
|
|
2
|
+
position: relative;
|
|
3
|
+
width: var(--spinner-size);
|
|
4
|
+
height: var(--spinner-size);
|
|
5
|
+
display: inline-block;
|
|
6
|
+
margin-left: 50%;
|
|
7
|
+
margin-right: 50%;
|
|
8
|
+
padding: 10px;
|
|
9
|
+
border-radius: 10px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
div.spinner div {
|
|
13
|
+
width: 6%;
|
|
14
|
+
height: 16%;
|
|
15
|
+
background: var(--spinner-color);
|
|
16
|
+
position: absolute;
|
|
17
|
+
left: 49%;
|
|
18
|
+
top: 43%;
|
|
19
|
+
opacity: 0;
|
|
20
|
+
border-radius: 50px;
|
|
21
|
+
box-shadow: 0 0 3px rgba(0,0,0,0.2);
|
|
22
|
+
animation: fade 1s linear infinite;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@keyframes fade {
|
|
26
|
+
from {opacity: 1;}
|
|
27
|
+
to {opacity: 0.25;}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
div.spinner div.bar1 {
|
|
31
|
+
transform:rotate(0deg) translate(0, -130%);
|
|
32
|
+
animation-delay: 0s;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
div.spinner div.bar2 {
|
|
36
|
+
transform:rotate(30deg) translate(0, -130%);
|
|
37
|
+
animation-delay: -0.9167s;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.spinner div.bar3 {
|
|
41
|
+
transform:rotate(60deg) translate(0, -130%);
|
|
42
|
+
animation-delay: -0.833s;
|
|
43
|
+
}
|
|
44
|
+
div.spinner div.bar4 {
|
|
45
|
+
transform:rotate(90deg) translate(0, -130%);
|
|
46
|
+
animation-delay: -0.7497s;
|
|
47
|
+
}
|
|
48
|
+
div.spinner div.bar5 {
|
|
49
|
+
transform:rotate(120deg) translate(0, -130%);
|
|
50
|
+
animation-delay: -0.667s;
|
|
51
|
+
}
|
|
52
|
+
div.spinner div.bar6 {
|
|
53
|
+
transform:rotate(150deg) translate(0, -130%);
|
|
54
|
+
animation-delay: -0.5837s;
|
|
55
|
+
}
|
|
56
|
+
div.spinner div.bar7 {
|
|
57
|
+
transform:rotate(180deg) translate(0, -130%);
|
|
58
|
+
animation-delay: -0.5s;
|
|
59
|
+
}
|
|
60
|
+
div.spinner div.bar8 {
|
|
61
|
+
transform:rotate(210deg) translate(0, -130%);
|
|
62
|
+
animation-delay: -0.4167s;
|
|
63
|
+
}
|
|
64
|
+
div.spinner div.bar9 {
|
|
65
|
+
transform:rotate(240deg) translate(0, -130%);
|
|
66
|
+
animation-delay: -0.333s;
|
|
67
|
+
}
|
|
68
|
+
div.spinner div.bar10 {
|
|
69
|
+
transform:rotate(270deg) translate(0, -130%);
|
|
70
|
+
animation-delay: -0.2497s;
|
|
71
|
+
}
|
|
72
|
+
div.spinner div.bar11 {
|
|
73
|
+
transform:rotate(300deg) translate(0, -130%);
|
|
74
|
+
animation-delay: -0.167s;
|
|
75
|
+
}
|
|
76
|
+
div.spinner div.bar12 {
|
|
77
|
+
transform:rotate(330deg) translate(0, -130%);
|
|
78
|
+
animation-delay: -0.0833s;
|
|
79
|
+
}
|
|
80
|
+
@layer theme, base, components, utilities;
|
|
81
|
+
|
|
82
|
+
@layer theme {
|
|
83
|
+
@theme default {
|
|
84
|
+
--font-sans:
|
|
85
|
+
ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
86
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
87
|
+
--font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
88
|
+
--font-mono:
|
|
89
|
+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
90
|
+
"Courier New", monospace;
|
|
91
|
+
|
|
92
|
+
--color-red-50: oklch(97.1% 0.013 17.38);
|
|
93
|
+
--color-red-100: oklch(93.6% 0.032 17.717);
|
|
94
|
+
--color-red-200: oklch(88.5% 0.062 18.334);
|
|
95
|
+
--color-red-300: oklch(80.8% 0.114 19.571);
|
|
96
|
+
--color-red-400: oklch(70.4% 0.191 22.216);
|
|
97
|
+
--color-red-500: oklch(63.7% 0.237 25.331);
|
|
98
|
+
--color-red-600: oklch(57.7% 0.245 27.325);
|
|
99
|
+
--color-red-700: oklch(50.5% 0.213 27.518);
|
|
100
|
+
--color-red-800: oklch(44.4% 0.177 26.899);
|
|
101
|
+
--color-red-900: oklch(39.6% 0.141 25.723);
|
|
102
|
+
--color-red-950: oklch(25.8% 0.092 26.042);
|
|
103
|
+
|
|
104
|
+
--color-orange-50: oklch(98% 0.016 73.684);
|
|
105
|
+
--color-orange-100: oklch(95.4% 0.038 75.164);
|
|
106
|
+
--color-orange-200: oklch(90.1% 0.076 70.697);
|
|
107
|
+
--color-orange-300: oklch(83.7% 0.128 66.29);
|
|
108
|
+
--color-orange-400: oklch(75% 0.183 55.934);
|
|
109
|
+
--color-orange-500: oklch(70.5% 0.213 47.604);
|
|
110
|
+
--color-orange-600: oklch(64.6% 0.222 41.116);
|
|
111
|
+
--color-orange-700: oklch(55.3% 0.195 38.402);
|
|
112
|
+
--color-orange-800: oklch(47% 0.157 37.304);
|
|
113
|
+
--color-orange-900: oklch(40.8% 0.123 38.172);
|
|
114
|
+
--color-orange-950: oklch(26.6% 0.079 36.259);
|
|
115
|
+
|
|
116
|
+
--color-amber-50: oklch(98.7% 0.022 95.277);
|
|
117
|
+
--color-amber-100: oklch(96.2% 0.059 95.617);
|
|
118
|
+
--color-amber-200: oklch(92.4% 0.12 95.746);
|
|
119
|
+
--color-amber-300: oklch(87.9% 0.169 91.605);
|
|
120
|
+
--color-amber-400: oklch(82.8% 0.189 84.429);
|
|
121
|
+
--color-amber-500: oklch(76.9% 0.188 70.08);
|
|
122
|
+
--color-amber-600: oklch(66.6% 0.179 58.318);
|
|
123
|
+
--color-amber-700: oklch(55.5% 0.163 48.998);
|
|
124
|
+
--color-amber-800: oklch(47.3% 0.137 46.201);
|
|
125
|
+
--color-amber-900: oklch(41.4% 0.112 45.904);
|
|
126
|
+
--color-amber-950: oklch(27.9% 0.077 45.635);
|
|
127
|
+
|
|
128
|
+
--color-yellow-50: oklch(98.7% 0.026 102.212);
|
|
129
|
+
--color-yellow-100: oklch(97.3% 0.071 103.193);
|
|
130
|
+
--color-yellow-200: oklch(94.5% 0.129 101.54);
|
|
131
|
+
--color-yellow-300: oklch(90.5% 0.182 98.111);
|
|
132
|
+
--color-yellow-400: oklch(85.2% 0.199 91.936);
|
|
133
|
+
--color-yellow-500: oklch(79.5% 0.184 86.047);
|
|
134
|
+
--color-yellow-600: oklch(68.1% 0.162 75.834);
|
|
135
|
+
--color-yellow-700: oklch(55.4% 0.135 66.442);
|
|
136
|
+
--color-yellow-800: oklch(47.6% 0.114 61.907);
|
|
137
|
+
--color-yellow-900: oklch(42.1% 0.095 57.708);
|
|
138
|
+
--color-yellow-950: oklch(28.6% 0.066 53.813);
|
|
139
|
+
|
|
140
|
+
--color-lime-50: oklch(98.6% 0.031 120.757);
|
|
141
|
+
--color-lime-100: oklch(96.7% 0.067 122.328);
|
|
142
|
+
--color-lime-200: oklch(93.8% 0.127 124.321);
|
|
143
|
+
--color-lime-300: oklch(89.7% 0.196 126.665);
|
|
144
|
+
--color-lime-400: oklch(84.1% 0.238 128.85);
|
|
145
|
+
--color-lime-500: oklch(76.8% 0.233 130.85);
|
|
146
|
+
--color-lime-600: oklch(64.8% 0.2 131.684);
|
|
147
|
+
--color-lime-700: oklch(53.2% 0.157 131.589);
|
|
148
|
+
--color-lime-800: oklch(45.3% 0.124 130.933);
|
|
149
|
+
--color-lime-900: oklch(40.5% 0.101 131.063);
|
|
150
|
+
--color-lime-950: oklch(27.4% 0.072 132.109);
|
|
151
|
+
|
|
152
|
+
--color-green-50: oklch(98.2% 0.018 155.826);
|
|
153
|
+
--color-green-100: oklch(96.2% 0.044 156.743);
|
|
154
|
+
--color-green-200: oklch(92.5% 0.084 155.995);
|
|
155
|
+
--color-green-300: oklch(87.1% 0.15 154.449);
|
|
156
|
+
--color-green-400: oklch(79.2% 0.209 151.711);
|
|
157
|
+
--color-green-500: oklch(72.3% 0.219 149.579);
|
|
158
|
+
--color-green-600: oklch(62.7% 0.194 149.214);
|
|
159
|
+
--color-green-700: oklch(52.7% 0.154 150.069);
|
|
160
|
+
--color-green-800: oklch(44.8% 0.119 151.328);
|
|
161
|
+
--color-green-900: oklch(39.3% 0.095 152.535);
|
|
162
|
+
--color-green-950: oklch(26.6% 0.065 152.934);
|
|
163
|
+
|
|
164
|
+
--color-emerald-50: oklch(97.9% 0.021 166.113);
|
|
165
|
+
--color-emerald-100: oklch(95% 0.052 163.051);
|
|
166
|
+
--color-emerald-200: oklch(90.5% 0.093 164.15);
|
|
167
|
+
--color-emerald-300: oklch(84.5% 0.143 164.978);
|
|
168
|
+
--color-emerald-400: oklch(76.5% 0.177 163.223);
|
|
169
|
+
--color-emerald-500: oklch(69.6% 0.17 162.48);
|
|
170
|
+
--color-emerald-600: oklch(59.6% 0.145 163.225);
|
|
171
|
+
--color-emerald-700: oklch(50.8% 0.118 165.612);
|
|
172
|
+
--color-emerald-800: oklch(43.2% 0.095 166.913);
|
|
173
|
+
--color-emerald-900: oklch(37.8% 0.077 168.94);
|
|
174
|
+
--color-emerald-950: oklch(26.2% 0.051 172.552);
|
|
175
|
+
|
|
176
|
+
--color-teal-50: oklch(98.4% 0.014 180.72);
|
|
177
|
+
--color-teal-100: oklch(95.3% 0.051 180.801);
|
|
178
|
+
--color-teal-200: oklch(91% 0.096 180.426);
|
|
179
|
+
--color-teal-300: oklch(85.5% 0.138 181.071);
|
|
180
|
+
--color-teal-400: oklch(77.7% 0.152 181.912);
|
|
181
|
+
--color-teal-500: oklch(70.4% 0.14 182.503);
|
|
182
|
+
--color-teal-600: oklch(60% 0.118 184.704);
|
|
183
|
+
--color-teal-700: oklch(51.1% 0.096 186.391);
|
|
184
|
+
--color-teal-800: oklch(43.7% 0.078 188.216);
|
|
185
|
+
--color-teal-900: oklch(38.6% 0.063 188.416);
|
|
186
|
+
--color-teal-950: oklch(27.7% 0.046 192.524);
|
|
187
|
+
|
|
188
|
+
--color-cyan-50: oklch(98.4% 0.019 200.873);
|
|
189
|
+
--color-cyan-100: oklch(95.6% 0.045 203.388);
|
|
190
|
+
--color-cyan-200: oklch(91.7% 0.08 205.041);
|
|
191
|
+
--color-cyan-300: oklch(86.5% 0.127 207.078);
|
|
192
|
+
--color-cyan-400: oklch(78.9% 0.154 211.53);
|
|
193
|
+
--color-cyan-500: oklch(71.5% 0.143 215.221);
|
|
194
|
+
--color-cyan-600: oklch(60.9% 0.126 221.723);
|
|
195
|
+
--color-cyan-700: oklch(52% 0.105 223.128);
|
|
196
|
+
--color-cyan-800: oklch(45% 0.085 224.283);
|
|
197
|
+
--color-cyan-900: oklch(39.8% 0.07 227.392);
|
|
198
|
+
--color-cyan-950: oklch(30.2% 0.056 229.695);
|
|
199
|
+
|
|
200
|
+
--color-sky-50: oklch(97.7% 0.013 236.62);
|
|
201
|
+
--color-sky-100: oklch(95.1% 0.026 236.824);
|
|
202
|
+
--color-sky-200: oklch(90.1% 0.058 230.902);
|
|
203
|
+
--color-sky-300: oklch(82.8% 0.111 230.318);
|
|
204
|
+
--color-sky-400: oklch(74.6% 0.16 232.661);
|
|
205
|
+
--color-sky-500: oklch(68.5% 0.169 237.323);
|
|
206
|
+
--color-sky-600: oklch(58.8% 0.158 241.966);
|
|
207
|
+
--color-sky-700: oklch(50% 0.134 242.749);
|
|
208
|
+
--color-sky-800: oklch(44.3% 0.11 240.79);
|
|
209
|
+
--color-sky-900: oklch(39.1% 0.09 240.876);
|
|
210
|
+
--color-sky-950: oklch(29.3% 0.066 243.157);
|
|
211
|
+
|
|
212
|
+
--color-blue-50: oklch(97% 0.014 254.604);
|
|
213
|
+
--color-blue-100: oklch(93.2% 0.032 255.585);
|
|
214
|
+
--color-blue-200: oklch(88.2% 0.059 254.128);
|
|
215
|
+
--color-blue-300: oklch(80.9% 0.105 251.813);
|
|
216
|
+
--color-blue-400: oklch(70.7% 0.165 254.624);
|
|
217
|
+
--color-blue-500: oklch(62.3% 0.214 259.815);
|
|
218
|
+
--color-blue-600: oklch(54.6% 0.245 262.881);
|
|
219
|
+
--color-blue-700: oklch(48.8% 0.243 264.376);
|
|
220
|
+
--color-blue-800: oklch(42.4% 0.199 265.638);
|
|
221
|
+
--color-blue-900: oklch(37.9% 0.146 265.522);
|
|
222
|
+
--color-blue-950: oklch(28.2% 0.091 267.935);
|
|
223
|
+
|
|
224
|
+
--color-indigo-50: oklch(96.2% 0.018 272.314);
|
|
225
|
+
--color-indigo-100: oklch(93% 0.034 272.788);
|
|
226
|
+
--color-indigo-200: oklch(87% 0.065 274.039);
|
|
227
|
+
--color-indigo-300: oklch(78.5% 0.115 274.713);
|
|
228
|
+
--color-indigo-400: oklch(67.3% 0.182 276.935);
|
|
229
|
+
--color-indigo-500: oklch(58.5% 0.233 277.117);
|
|
230
|
+
--color-indigo-600: oklch(51.1% 0.262 276.966);
|
|
231
|
+
--color-indigo-700: oklch(45.7% 0.24 277.023);
|
|
232
|
+
--color-indigo-800: oklch(39.8% 0.195 277.366);
|
|
233
|
+
--color-indigo-900: oklch(35.9% 0.144 278.697);
|
|
234
|
+
--color-indigo-950: oklch(25.7% 0.09 281.288);
|
|
235
|
+
|
|
236
|
+
--color-violet-50: oklch(96.9% 0.016 293.756);
|
|
237
|
+
--color-violet-100: oklch(94.3% 0.029 294.588);
|
|
238
|
+
--color-violet-200: oklch(89.4% 0.057 293.283);
|
|
239
|
+
--color-violet-300: oklch(81.1% 0.111 293.571);
|
|
240
|
+
--color-violet-400: oklch(70.2% 0.183 293.541);
|
|
241
|
+
--color-violet-500: oklch(60.6% 0.25 292.717);
|
|
242
|
+
--color-violet-600: oklch(54.1% 0.281 293.009);
|
|
243
|
+
--color-violet-700: oklch(49.1% 0.27 292.581);
|
|
244
|
+
--color-violet-800: oklch(43.2% 0.232 292.759);
|
|
245
|
+
--color-violet-900: oklch(38% 0.189 293.745);
|
|
246
|
+
--color-violet-950: oklch(28.3% 0.141 291.089);
|
|
247
|
+
|
|
248
|
+
--color-purple-50: oklch(97.7% 0.014 308.299);
|
|
249
|
+
--color-purple-100: oklch(94.6% 0.033 307.174);
|
|
250
|
+
--color-purple-200: oklch(90.2% 0.063 306.703);
|
|
251
|
+
--color-purple-300: oklch(82.7% 0.119 306.383);
|
|
252
|
+
--color-purple-400: oklch(71.4% 0.203 305.504);
|
|
253
|
+
--color-purple-500: oklch(62.7% 0.265 303.9);
|
|
254
|
+
--color-purple-600: oklch(55.8% 0.288 302.321);
|
|
255
|
+
--color-purple-700: oklch(49.6% 0.265 301.924);
|
|
256
|
+
--color-purple-800: oklch(43.8% 0.218 303.724);
|
|
257
|
+
--color-purple-900: oklch(38.1% 0.176 304.987);
|
|
258
|
+
--color-purple-950: oklch(29.1% 0.149 302.717);
|
|
259
|
+
|
|
260
|
+
--color-fuchsia-50: oklch(97.7% 0.017 320.058);
|
|
261
|
+
--color-fuchsia-100: oklch(95.2% 0.037 318.852);
|
|
262
|
+
--color-fuchsia-200: oklch(90.3% 0.076 319.62);
|
|
263
|
+
--color-fuchsia-300: oklch(83.3% 0.145 321.434);
|
|
264
|
+
--color-fuchsia-400: oklch(74% 0.238 322.16);
|
|
265
|
+
--color-fuchsia-500: oklch(66.7% 0.295 322.15);
|
|
266
|
+
--color-fuchsia-600: oklch(59.1% 0.293 322.896);
|
|
267
|
+
--color-fuchsia-700: oklch(51.8% 0.253 323.949);
|
|
268
|
+
--color-fuchsia-800: oklch(45.2% 0.211 324.591);
|
|
269
|
+
--color-fuchsia-900: oklch(40.1% 0.17 325.612);
|
|
270
|
+
--color-fuchsia-950: oklch(29.3% 0.136 325.661);
|
|
271
|
+
|
|
272
|
+
--color-pink-50: oklch(97.1% 0.014 343.198);
|
|
273
|
+
--color-pink-100: oklch(94.8% 0.028 342.258);
|
|
274
|
+
--color-pink-200: oklch(89.9% 0.061 343.231);
|
|
275
|
+
--color-pink-300: oklch(82.3% 0.12 346.018);
|
|
276
|
+
--color-pink-400: oklch(71.8% 0.202 349.761);
|
|
277
|
+
--color-pink-500: oklch(65.6% 0.241 354.308);
|
|
278
|
+
--color-pink-600: oklch(59.2% 0.249 0.584);
|
|
279
|
+
--color-pink-700: oklch(52.5% 0.223 3.958);
|
|
280
|
+
--color-pink-800: oklch(45.9% 0.187 3.815);
|
|
281
|
+
--color-pink-900: oklch(40.8% 0.153 2.432);
|
|
282
|
+
--color-pink-950: oklch(28.4% 0.109 3.907);
|
|
283
|
+
|
|
284
|
+
--color-rose-50: oklch(96.9% 0.015 12.422);
|
|
285
|
+
--color-rose-100: oklch(94.1% 0.03 12.58);
|
|
286
|
+
--color-rose-200: oklch(89.2% 0.058 10.001);
|
|
287
|
+
--color-rose-300: oklch(81% 0.117 11.638);
|
|
288
|
+
--color-rose-400: oklch(71.2% 0.194 13.428);
|
|
289
|
+
--color-rose-500: oklch(64.5% 0.246 16.439);
|
|
290
|
+
--color-rose-600: oklch(58.6% 0.253 17.585);
|
|
291
|
+
--color-rose-700: oklch(51.4% 0.222 16.935);
|
|
292
|
+
--color-rose-800: oklch(45.5% 0.188 13.697);
|
|
293
|
+
--color-rose-900: oklch(41% 0.159 10.272);
|
|
294
|
+
--color-rose-950: oklch(27.1% 0.105 12.094);
|
|
295
|
+
|
|
296
|
+
--color-slate-50: oklch(98.4% 0.003 247.858);
|
|
297
|
+
--color-slate-100: oklch(96.8% 0.007 247.896);
|
|
298
|
+
--color-slate-200: oklch(92.9% 0.013 255.508);
|
|
299
|
+
--color-slate-300: oklch(86.9% 0.022 252.894);
|
|
300
|
+
--color-slate-400: oklch(70.4% 0.04 256.788);
|
|
301
|
+
--color-slate-500: oklch(55.4% 0.046 257.417);
|
|
302
|
+
--color-slate-600: oklch(44.6% 0.043 257.281);
|
|
303
|
+
--color-slate-700: oklch(37.2% 0.044 257.287);
|
|
304
|
+
--color-slate-800: oklch(27.9% 0.041 260.031);
|
|
305
|
+
--color-slate-900: oklch(20.8% 0.042 265.755);
|
|
306
|
+
--color-slate-950: oklch(12.9% 0.042 264.695);
|
|
307
|
+
|
|
308
|
+
--color-gray-50: oklch(98.5% 0.002 247.839);
|
|
309
|
+
--color-gray-100: oklch(96.7% 0.003 264.542);
|
|
310
|
+
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
311
|
+
--color-gray-300: oklch(87.2% 0.01 258.338);
|
|
312
|
+
--color-gray-400: oklch(70.7% 0.022 261.325);
|
|
313
|
+
--color-gray-500: oklch(55.1% 0.027 264.364);
|
|
314
|
+
--color-gray-600: oklch(44.6% 0.03 256.802);
|
|
315
|
+
--color-gray-700: oklch(37.3% 0.034 259.733);
|
|
316
|
+
--color-gray-800: oklch(27.8% 0.033 256.848);
|
|
317
|
+
--color-gray-900: oklch(21% 0.034 264.665);
|
|
318
|
+
--color-gray-950: oklch(13% 0.028 261.692);
|
|
319
|
+
|
|
320
|
+
--color-zinc-50: oklch(98.5% 0 0);
|
|
321
|
+
--color-zinc-100: oklch(96.7% 0.001 286.375);
|
|
322
|
+
--color-zinc-200: oklch(92% 0.004 286.32);
|
|
323
|
+
--color-zinc-300: oklch(87.1% 0.006 286.286);
|
|
324
|
+
--color-zinc-400: oklch(70.5% 0.015 286.067);
|
|
325
|
+
--color-zinc-500: oklch(55.2% 0.016 285.938);
|
|
326
|
+
--color-zinc-600: oklch(44.2% 0.017 285.786);
|
|
327
|
+
--color-zinc-700: oklch(37% 0.013 285.805);
|
|
328
|
+
--color-zinc-800: oklch(27.4% 0.006 286.033);
|
|
329
|
+
--color-zinc-900: oklch(21% 0.006 285.885);
|
|
330
|
+
--color-zinc-950: oklch(14.1% 0.005 285.823);
|
|
331
|
+
|
|
332
|
+
--color-neutral-50: oklch(98.5% 0 0);
|
|
333
|
+
--color-neutral-100: oklch(97% 0 0);
|
|
334
|
+
--color-neutral-200: oklch(92.2% 0 0);
|
|
335
|
+
--color-neutral-300: oklch(87% 0 0);
|
|
336
|
+
--color-neutral-400: oklch(70.8% 0 0);
|
|
337
|
+
--color-neutral-500: oklch(55.6% 0 0);
|
|
338
|
+
--color-neutral-600: oklch(43.9% 0 0);
|
|
339
|
+
--color-neutral-700: oklch(37.1% 0 0);
|
|
340
|
+
--color-neutral-800: oklch(26.9% 0 0);
|
|
341
|
+
--color-neutral-900: oklch(20.5% 0 0);
|
|
342
|
+
--color-neutral-950: oklch(14.5% 0 0);
|
|
343
|
+
|
|
344
|
+
--color-stone-50: oklch(98.5% 0.001 106.423);
|
|
345
|
+
--color-stone-100: oklch(97% 0.001 106.424);
|
|
346
|
+
--color-stone-200: oklch(92.3% 0.003 48.717);
|
|
347
|
+
--color-stone-300: oklch(86.9% 0.005 56.366);
|
|
348
|
+
--color-stone-400: oklch(70.9% 0.01 56.259);
|
|
349
|
+
--color-stone-500: oklch(55.3% 0.013 58.071);
|
|
350
|
+
--color-stone-600: oklch(44.4% 0.011 73.639);
|
|
351
|
+
--color-stone-700: oklch(37.4% 0.01 67.558);
|
|
352
|
+
--color-stone-800: oklch(26.8% 0.007 34.298);
|
|
353
|
+
--color-stone-900: oklch(21.6% 0.006 56.043);
|
|
354
|
+
--color-stone-950: oklch(14.7% 0.004 49.25);
|
|
355
|
+
|
|
356
|
+
--color-black: #000;
|
|
357
|
+
--color-white: #fff;
|
|
358
|
+
|
|
359
|
+
--spacing: 0.25rem;
|
|
360
|
+
|
|
361
|
+
--breakpoint-sm: 40rem;
|
|
362
|
+
--breakpoint-md: 48rem;
|
|
363
|
+
--breakpoint-lg: 64rem;
|
|
364
|
+
--breakpoint-xl: 80rem;
|
|
365
|
+
--breakpoint-2xl: 96rem;
|
|
366
|
+
|
|
367
|
+
--container-3xs: 16rem;
|
|
368
|
+
--container-2xs: 18rem;
|
|
369
|
+
--container-xs: 20rem;
|
|
370
|
+
--container-sm: 24rem;
|
|
371
|
+
--container-md: 28rem;
|
|
372
|
+
--container-lg: 32rem;
|
|
373
|
+
--container-xl: 36rem;
|
|
374
|
+
--container-2xl: 42rem;
|
|
375
|
+
--container-3xl: 48rem;
|
|
376
|
+
--container-4xl: 56rem;
|
|
377
|
+
--container-5xl: 64rem;
|
|
378
|
+
--container-6xl: 72rem;
|
|
379
|
+
--container-7xl: 80rem;
|
|
380
|
+
|
|
381
|
+
--text-xs: 0.75rem;
|
|
382
|
+
--text-xs--line-height: calc(1 / 0.75);
|
|
383
|
+
--text-sm: 0.875rem;
|
|
384
|
+
--text-sm--line-height: calc(1.25 / 0.875);
|
|
385
|
+
--text-base: 1rem;
|
|
386
|
+
--text-base--line-height: calc(1.5 / 1);
|
|
387
|
+
--text-lg: 1.125rem;
|
|
388
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
389
|
+
--text-xl: 1.25rem;
|
|
390
|
+
--text-xl--line-height: calc(1.75 / 1.25);
|
|
391
|
+
--text-2xl: 1.5rem;
|
|
392
|
+
--text-2xl--line-height: calc(2 / 1.5);
|
|
393
|
+
--text-3xl: 1.875rem;
|
|
394
|
+
--text-3xl--line-height: calc(2.25 / 1.875);
|
|
395
|
+
--text-4xl: 2.25rem;
|
|
396
|
+
--text-4xl--line-height: calc(2.5 / 2.25);
|
|
397
|
+
--text-5xl: 3rem;
|
|
398
|
+
--text-5xl--line-height: 1;
|
|
399
|
+
--text-6xl: 3.75rem;
|
|
400
|
+
--text-6xl--line-height: 1;
|
|
401
|
+
--text-7xl: 4.5rem;
|
|
402
|
+
--text-7xl--line-height: 1;
|
|
403
|
+
--text-8xl: 6rem;
|
|
404
|
+
--text-8xl--line-height: 1;
|
|
405
|
+
--text-9xl: 8rem;
|
|
406
|
+
--text-9xl--line-height: 1;
|
|
407
|
+
|
|
408
|
+
--font-weight-thin: 100;
|
|
409
|
+
--font-weight-extralight: 200;
|
|
410
|
+
--font-weight-light: 300;
|
|
411
|
+
--font-weight-normal: 400;
|
|
412
|
+
--font-weight-medium: 500;
|
|
413
|
+
--font-weight-semibold: 600;
|
|
414
|
+
--font-weight-bold: 700;
|
|
415
|
+
--font-weight-extrabold: 800;
|
|
416
|
+
--font-weight-black: 900;
|
|
417
|
+
|
|
418
|
+
--tracking-tighter: -0.05em;
|
|
419
|
+
--tracking-tight: -0.025em;
|
|
420
|
+
--tracking-normal: 0em;
|
|
421
|
+
--tracking-wide: 0.025em;
|
|
422
|
+
--tracking-wider: 0.05em;
|
|
423
|
+
--tracking-widest: 0.1em;
|
|
424
|
+
|
|
425
|
+
--leading-tight: 1.25;
|
|
426
|
+
--leading-snug: 1.375;
|
|
427
|
+
--leading-normal: 1.5;
|
|
428
|
+
--leading-relaxed: 1.625;
|
|
429
|
+
--leading-loose: 2;
|
|
430
|
+
|
|
431
|
+
--radius-xs: 0.125rem;
|
|
432
|
+
--radius-sm: 0.25rem;
|
|
433
|
+
--radius-md: 0.375rem;
|
|
434
|
+
--radius-lg: 0.5rem;
|
|
435
|
+
--radius-xl: 0.75rem;
|
|
436
|
+
--radius-2xl: 1rem;
|
|
437
|
+
--radius-3xl: 1.5rem;
|
|
438
|
+
--radius-4xl: 2rem;
|
|
439
|
+
|
|
440
|
+
--shadow-2xs: 0 1px rgb(0 0 0 / 0.05);
|
|
441
|
+
--shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
442
|
+
--shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
443
|
+
--shadow-md:
|
|
444
|
+
0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
445
|
+
--shadow-lg:
|
|
446
|
+
0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
447
|
+
--shadow-xl:
|
|
448
|
+
0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
449
|
+
--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
450
|
+
|
|
451
|
+
--inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);
|
|
452
|
+
--inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
|
|
453
|
+
--inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
|
|
454
|
+
|
|
455
|
+
--drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);
|
|
456
|
+
--drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);
|
|
457
|
+
--drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);
|
|
458
|
+
--drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
|
|
459
|
+
--drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);
|
|
460
|
+
--drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);
|
|
461
|
+
|
|
462
|
+
--text-shadow-2xs: 0px 1px 0px rgb(0 0 0 / 0.15);
|
|
463
|
+
--text-shadow-xs: 0px 1px 1px rgb(0 0 0 / 0.2);
|
|
464
|
+
--text-shadow-sm:
|
|
465
|
+
0px 1px 0px rgb(0 0 0 / 0.075), 0px 1px 1px rgb(0 0 0 / 0.075),
|
|
466
|
+
0px 2px 2px rgb(0 0 0 / 0.075);
|
|
467
|
+
--text-shadow-md:
|
|
468
|
+
0px 1px 1px rgb(0 0 0 / 0.1), 0px 1px 2px rgb(0 0 0 / 0.1),
|
|
469
|
+
0px 2px 4px rgb(0 0 0 / 0.1);
|
|
470
|
+
--text-shadow-lg:
|
|
471
|
+
0px 1px 2px rgb(0 0 0 / 0.1), 0px 3px 2px rgb(0 0 0 / 0.1),
|
|
472
|
+
0px 4px 8px rgb(0 0 0 / 0.1);
|
|
473
|
+
|
|
474
|
+
--ease-in: cubic-bezier(0.4, 0, 1, 1);
|
|
475
|
+
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
476
|
+
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
477
|
+
|
|
478
|
+
--animate-spin: spin 1s linear infinite;
|
|
479
|
+
--animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
480
|
+
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
481
|
+
--animate-bounce: bounce 1s infinite;
|
|
482
|
+
|
|
483
|
+
@keyframes spin {
|
|
484
|
+
to {
|
|
485
|
+
transform: rotate(360deg);
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
@keyframes ping {
|
|
490
|
+
75%,
|
|
491
|
+
100% {
|
|
492
|
+
transform: scale(2);
|
|
493
|
+
opacity: 0;
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
@keyframes pulse {
|
|
498
|
+
50% {
|
|
499
|
+
opacity: 0.5;
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
@keyframes bounce {
|
|
504
|
+
0%,
|
|
505
|
+
100% {
|
|
506
|
+
transform: translateY(-25%);
|
|
507
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
50% {
|
|
511
|
+
transform: none;
|
|
512
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
--blur-xs: 4px;
|
|
517
|
+
--blur-sm: 8px;
|
|
518
|
+
--blur-md: 12px;
|
|
519
|
+
--blur-lg: 16px;
|
|
520
|
+
--blur-xl: 24px;
|
|
521
|
+
--blur-2xl: 40px;
|
|
522
|
+
--blur-3xl: 64px;
|
|
523
|
+
|
|
524
|
+
--perspective-dramatic: 100px;
|
|
525
|
+
--perspective-near: 300px;
|
|
526
|
+
--perspective-normal: 500px;
|
|
527
|
+
--perspective-midrange: 800px;
|
|
528
|
+
--perspective-distant: 1200px;
|
|
529
|
+
|
|
530
|
+
--aspect-video: 16 / 9;
|
|
531
|
+
|
|
532
|
+
--default-transition-duration: 150ms;
|
|
533
|
+
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
534
|
+
--default-font-family: --theme(--font-sans, initial);
|
|
535
|
+
--default-font-feature-settings: --theme(
|
|
536
|
+
--font-sans--font-feature-settings,
|
|
537
|
+
initial
|
|
538
|
+
);
|
|
539
|
+
--default-font-variation-settings: --theme(
|
|
540
|
+
--font-sans--font-variation-settings,
|
|
541
|
+
initial
|
|
542
|
+
);
|
|
543
|
+
--default-mono-font-family: --theme(--font-mono, initial);
|
|
544
|
+
--default-mono-font-feature-settings: --theme(
|
|
545
|
+
--font-mono--font-feature-settings,
|
|
546
|
+
initial
|
|
547
|
+
);
|
|
548
|
+
--default-mono-font-variation-settings: --theme(
|
|
549
|
+
--font-mono--font-variation-settings,
|
|
550
|
+
initial
|
|
551
|
+
);
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
/* Deprecated */
|
|
555
|
+
@theme default inline reference {
|
|
556
|
+
--blur: 8px;
|
|
557
|
+
--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
558
|
+
--shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
|
559
|
+
--drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
|
|
560
|
+
--radius: 0.25rem;
|
|
561
|
+
--max-width-prose: 65ch;
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
@layer base {
|
|
566
|
+
/*
|
|
567
|
+
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
568
|
+
2. Remove default margins and padding
|
|
569
|
+
3. Reset all borders.
|
|
570
|
+
*/
|
|
571
|
+
|
|
572
|
+
*,
|
|
573
|
+
::after,
|
|
574
|
+
::before,
|
|
575
|
+
::backdrop,
|
|
576
|
+
::file-selector-button {
|
|
577
|
+
box-sizing: border-box; /* 1 */
|
|
578
|
+
margin: 0; /* 2 */
|
|
579
|
+
padding: 0; /* 2 */
|
|
580
|
+
border: 0 solid; /* 3 */
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
/*
|
|
584
|
+
1. Use a consistent sensible line-height in all browsers.
|
|
585
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
586
|
+
3. Use a more readable tab size.
|
|
587
|
+
4. Use the user's configured `sans` font-family by default.
|
|
588
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
|
589
|
+
6. Use the user's configured `sans` font-variation-settings by default.
|
|
590
|
+
7. Disable tap highlights on iOS.
|
|
591
|
+
*/
|
|
592
|
+
|
|
593
|
+
html,
|
|
594
|
+
:host {
|
|
595
|
+
line-height: 1.5; /* 1 */
|
|
596
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
597
|
+
tab-size: 4; /* 3 */
|
|
598
|
+
font-family: --theme(
|
|
599
|
+
--default-font-family,
|
|
600
|
+
ui-sans-serif,
|
|
601
|
+
system-ui,
|
|
602
|
+
sans-serif,
|
|
603
|
+
"Apple Color Emoji",
|
|
604
|
+
"Segoe UI Emoji",
|
|
605
|
+
"Segoe UI Symbol",
|
|
606
|
+
"Noto Color Emoji"
|
|
607
|
+
); /* 4 */
|
|
608
|
+
font-feature-settings: --theme(
|
|
609
|
+
--default-font-feature-settings,
|
|
610
|
+
normal
|
|
611
|
+
); /* 5 */
|
|
612
|
+
font-variation-settings: --theme(
|
|
613
|
+
--default-font-variation-settings,
|
|
614
|
+
normal
|
|
615
|
+
); /* 6 */
|
|
616
|
+
-webkit-tap-highlight-color: transparent; /* 7 */
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
/*
|
|
620
|
+
1. Add the correct height in Firefox.
|
|
621
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
622
|
+
3. Reset the default border style to a 1px solid border.
|
|
623
|
+
*/
|
|
624
|
+
|
|
625
|
+
hr {
|
|
626
|
+
height: 0; /* 1 */
|
|
627
|
+
color: inherit; /* 2 */
|
|
628
|
+
border-top-width: 1px; /* 3 */
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
/*
|
|
632
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
633
|
+
*/
|
|
634
|
+
|
|
635
|
+
abbr:where([title]) {
|
|
636
|
+
-webkit-text-decoration: underline dotted;
|
|
637
|
+
text-decoration: underline dotted;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
/*
|
|
641
|
+
Remove the default font size and weight for headings.
|
|
642
|
+
*/
|
|
643
|
+
|
|
644
|
+
h1,
|
|
645
|
+
h2,
|
|
646
|
+
h3,
|
|
647
|
+
h4,
|
|
648
|
+
h5,
|
|
649
|
+
h6 {
|
|
650
|
+
font-size: inherit;
|
|
651
|
+
font-weight: inherit;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
/*
|
|
655
|
+
Reset links to optimize for opt-in styling instead of opt-out.
|
|
656
|
+
*/
|
|
657
|
+
|
|
658
|
+
a {
|
|
659
|
+
color: inherit;
|
|
660
|
+
-webkit-text-decoration: inherit;
|
|
661
|
+
text-decoration: inherit;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
/*
|
|
665
|
+
Add the correct font weight in Edge and Safari.
|
|
666
|
+
*/
|
|
667
|
+
|
|
668
|
+
b,
|
|
669
|
+
strong {
|
|
670
|
+
font-weight: bolder;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
/*
|
|
674
|
+
1. Use the user's configured `mono` font-family by default.
|
|
675
|
+
2. Use the user's configured `mono` font-feature-settings by default.
|
|
676
|
+
3. Use the user's configured `mono` font-variation-settings by default.
|
|
677
|
+
4. Correct the odd `em` font sizing in all browsers.
|
|
678
|
+
*/
|
|
679
|
+
|
|
680
|
+
code,
|
|
681
|
+
kbd,
|
|
682
|
+
samp,
|
|
683
|
+
pre {
|
|
684
|
+
font-family: --theme(
|
|
685
|
+
--default-mono-font-family,
|
|
686
|
+
ui-monospace,
|
|
687
|
+
SFMono-Regular,
|
|
688
|
+
Menlo,
|
|
689
|
+
Monaco,
|
|
690
|
+
Consolas,
|
|
691
|
+
"Liberation Mono",
|
|
692
|
+
"Courier New",
|
|
693
|
+
monospace
|
|
694
|
+
); /* 1 */
|
|
695
|
+
font-feature-settings: --theme(
|
|
696
|
+
--default-mono-font-feature-settings,
|
|
697
|
+
normal
|
|
698
|
+
); /* 2 */
|
|
699
|
+
font-variation-settings: --theme(
|
|
700
|
+
--default-mono-font-variation-settings,
|
|
701
|
+
normal
|
|
702
|
+
); /* 3 */
|
|
703
|
+
font-size: 1em; /* 4 */
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
/*
|
|
707
|
+
Add the correct font size in all browsers.
|
|
708
|
+
*/
|
|
709
|
+
|
|
710
|
+
small {
|
|
711
|
+
font-size: 80%;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
/*
|
|
715
|
+
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
716
|
+
*/
|
|
717
|
+
|
|
718
|
+
sub,
|
|
719
|
+
sup {
|
|
720
|
+
font-size: 75%;
|
|
721
|
+
line-height: 0;
|
|
722
|
+
position: relative;
|
|
723
|
+
vertical-align: baseline;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
sub {
|
|
727
|
+
bottom: -0.25em;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
sup {
|
|
731
|
+
top: -0.5em;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
/*
|
|
735
|
+
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
736
|
+
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
737
|
+
3. Remove gaps between table borders by default.
|
|
738
|
+
*/
|
|
739
|
+
|
|
740
|
+
table {
|
|
741
|
+
text-indent: 0; /* 1 */
|
|
742
|
+
border-color: inherit; /* 2 */
|
|
743
|
+
border-collapse: collapse; /* 3 */
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
/*
|
|
747
|
+
Use the modern Firefox focus style for all focusable elements.
|
|
748
|
+
*/
|
|
749
|
+
|
|
750
|
+
:-moz-focusring {
|
|
751
|
+
outline: auto;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
/*
|
|
755
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
756
|
+
*/
|
|
757
|
+
|
|
758
|
+
progress {
|
|
759
|
+
vertical-align: baseline;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
/*
|
|
763
|
+
Add the correct display in Chrome and Safari.
|
|
764
|
+
*/
|
|
765
|
+
|
|
766
|
+
summary {
|
|
767
|
+
display: list-item;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
/*
|
|
771
|
+
Make lists unstyled by default.
|
|
772
|
+
*/
|
|
773
|
+
|
|
774
|
+
ol,
|
|
775
|
+
ul,
|
|
776
|
+
menu {
|
|
777
|
+
list-style: none;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
/*
|
|
781
|
+
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
782
|
+
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
783
|
+
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
784
|
+
*/
|
|
785
|
+
|
|
786
|
+
img,
|
|
787
|
+
svg,
|
|
788
|
+
video,
|
|
789
|
+
canvas,
|
|
790
|
+
audio,
|
|
791
|
+
iframe,
|
|
792
|
+
embed,
|
|
793
|
+
object {
|
|
794
|
+
display: block; /* 1 */
|
|
795
|
+
vertical-align: middle; /* 2 */
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
/*
|
|
799
|
+
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
800
|
+
*/
|
|
801
|
+
|
|
802
|
+
img,
|
|
803
|
+
video {
|
|
804
|
+
max-width: 100%;
|
|
805
|
+
height: auto;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
/*
|
|
809
|
+
1. Inherit font styles in all browsers.
|
|
810
|
+
2. Remove border radius in all browsers.
|
|
811
|
+
3. Remove background color in all browsers.
|
|
812
|
+
4. Ensure consistent opacity for disabled states in all browsers.
|
|
813
|
+
*/
|
|
814
|
+
|
|
815
|
+
button,
|
|
816
|
+
input,
|
|
817
|
+
select,
|
|
818
|
+
optgroup,
|
|
819
|
+
textarea,
|
|
820
|
+
::file-selector-button {
|
|
821
|
+
font: inherit; /* 1 */
|
|
822
|
+
font-feature-settings: inherit; /* 1 */
|
|
823
|
+
font-variation-settings: inherit; /* 1 */
|
|
824
|
+
letter-spacing: inherit; /* 1 */
|
|
825
|
+
color: inherit; /* 1 */
|
|
826
|
+
border-radius: 0; /* 2 */
|
|
827
|
+
background-color: transparent; /* 3 */
|
|
828
|
+
opacity: 1; /* 4 */
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
/*
|
|
832
|
+
Restore default font weight.
|
|
833
|
+
*/
|
|
834
|
+
|
|
835
|
+
:where(select:is([multiple], [size])) optgroup {
|
|
836
|
+
font-weight: bolder;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
/*
|
|
840
|
+
Restore indentation.
|
|
841
|
+
*/
|
|
842
|
+
|
|
843
|
+
:where(select:is([multiple], [size])) optgroup option {
|
|
844
|
+
padding-inline-start: 20px;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
/*
|
|
848
|
+
Restore space after button.
|
|
849
|
+
*/
|
|
850
|
+
|
|
851
|
+
::file-selector-button {
|
|
852
|
+
margin-inline-end: 4px;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
/*
|
|
856
|
+
Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
857
|
+
*/
|
|
858
|
+
|
|
859
|
+
::placeholder {
|
|
860
|
+
opacity: 1;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
/*
|
|
864
|
+
Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
|
|
865
|
+
crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
|
|
866
|
+
*/
|
|
867
|
+
|
|
868
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
|
|
869
|
+
(contain-intrinsic-size: 1px) /* Safari 17+ */ {
|
|
870
|
+
::placeholder {
|
|
871
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
872
|
+
}
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
/*
|
|
876
|
+
Prevent resizing textareas horizontally by default.
|
|
877
|
+
*/
|
|
878
|
+
|
|
879
|
+
textarea {
|
|
880
|
+
resize: vertical;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
/*
|
|
884
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
885
|
+
*/
|
|
886
|
+
|
|
887
|
+
::-webkit-search-decoration {
|
|
888
|
+
-webkit-appearance: none;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
/*
|
|
892
|
+
1. Ensure date/time inputs have the same height when empty in iOS Safari.
|
|
893
|
+
2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
|
|
894
|
+
*/
|
|
895
|
+
|
|
896
|
+
::-webkit-date-and-time-value {
|
|
897
|
+
min-height: 1lh; /* 1 */
|
|
898
|
+
text-align: inherit; /* 2 */
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
/*
|
|
902
|
+
Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
|
|
903
|
+
*/
|
|
904
|
+
|
|
905
|
+
::-webkit-datetime-edit {
|
|
906
|
+
display: inline-flex;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
/*
|
|
910
|
+
Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
|
|
911
|
+
*/
|
|
912
|
+
|
|
913
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
914
|
+
padding: 0;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
::-webkit-datetime-edit,
|
|
918
|
+
::-webkit-datetime-edit-year-field,
|
|
919
|
+
::-webkit-datetime-edit-month-field,
|
|
920
|
+
::-webkit-datetime-edit-day-field,
|
|
921
|
+
::-webkit-datetime-edit-hour-field,
|
|
922
|
+
::-webkit-datetime-edit-minute-field,
|
|
923
|
+
::-webkit-datetime-edit-second-field,
|
|
924
|
+
::-webkit-datetime-edit-millisecond-field,
|
|
925
|
+
::-webkit-datetime-edit-meridiem-field {
|
|
926
|
+
padding-block: 0;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
/*
|
|
930
|
+
Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
|
|
931
|
+
*/
|
|
932
|
+
|
|
933
|
+
::-webkit-calendar-picker-indicator {
|
|
934
|
+
line-height: 1;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
/*
|
|
938
|
+
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
939
|
+
*/
|
|
940
|
+
|
|
941
|
+
:-moz-ui-invalid {
|
|
942
|
+
box-shadow: none;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
/*
|
|
946
|
+
Correct the inability to style the border radius in iOS Safari.
|
|
947
|
+
*/
|
|
948
|
+
|
|
949
|
+
button,
|
|
950
|
+
input:where([type="button"], [type="reset"], [type="submit"]),
|
|
951
|
+
::file-selector-button {
|
|
952
|
+
appearance: button;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
/*
|
|
956
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
957
|
+
*/
|
|
958
|
+
|
|
959
|
+
::-webkit-inner-spin-button,
|
|
960
|
+
::-webkit-outer-spin-button {
|
|
961
|
+
height: auto;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
/*
|
|
965
|
+
Make elements with the HTML hidden attribute stay hidden by default.
|
|
966
|
+
*/
|
|
967
|
+
|
|
968
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
969
|
+
display: none !important;
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
@layer utilities {
|
|
974
|
+
@tailwind utilities;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
@property --tw-animation-delay{syntax:"*";inherits:false;initial-value:0s}
|
|
978
|
+
|
|
979
|
+
@property --tw-animation-direction{syntax:"*";inherits:false;initial-value:normal}
|
|
980
|
+
|
|
981
|
+
@property --tw-animation-duration{syntax:"*";inherits:false}
|
|
982
|
+
|
|
983
|
+
@property --tw-animation-fill-mode{syntax:"*";inherits:false;initial-value:none}
|
|
984
|
+
|
|
985
|
+
@property --tw-animation-iteration-count{syntax:"*";inherits:false;initial-value:1}
|
|
986
|
+
|
|
987
|
+
@property --tw-enter-blur{syntax:"*";inherits:false;initial-value:0}
|
|
988
|
+
|
|
989
|
+
@property --tw-enter-opacity{syntax:"*";inherits:false;initial-value:1}
|
|
990
|
+
|
|
991
|
+
@property --tw-enter-rotate{syntax:"*";inherits:false;initial-value:0}
|
|
992
|
+
|
|
993
|
+
@property --tw-enter-scale{syntax:"*";inherits:false;initial-value:1}
|
|
994
|
+
|
|
995
|
+
@property --tw-enter-translate-x{syntax:"*";inherits:false;initial-value:0}
|
|
996
|
+
|
|
997
|
+
@property --tw-enter-translate-y{syntax:"*";inherits:false;initial-value:0}
|
|
998
|
+
|
|
999
|
+
@property --tw-exit-blur{syntax:"*";inherits:false;initial-value:0}
|
|
1000
|
+
|
|
1001
|
+
@property --tw-exit-opacity{syntax:"*";inherits:false;initial-value:1}
|
|
1002
|
+
|
|
1003
|
+
@property --tw-exit-rotate{syntax:"*";inherits:false;initial-value:0}
|
|
1004
|
+
|
|
1005
|
+
@property --tw-exit-scale{syntax:"*";inherits:false;initial-value:1}
|
|
1006
|
+
|
|
1007
|
+
@property --tw-exit-translate-x{syntax:"*";inherits:false;initial-value:0}
|
|
1008
|
+
|
|
1009
|
+
@property --tw-exit-translate-y{syntax:"*";inherits:false;initial-value:0}
|
|
1010
|
+
|
|
1011
|
+
@theme inline{--animation-delay-0: 0s; --animation-delay-75: 75ms; --animation-delay-100: .1s; --animation-delay-150: .15s; --animation-delay-200: .2s; --animation-delay-300: .3s; --animation-delay-500: .5s; --animation-delay-700: .7s; --animation-delay-1000: 1s; --animation-repeat-0: 0; --animation-repeat-1: 1; --animation-repeat-infinite: infinite; --animation-direction-normal: normal; --animation-direction-reverse: reverse; --animation-direction-alternate: alternate; --animation-direction-alternate-reverse: alternate-reverse; --animation-fill-mode-none: none; --animation-fill-mode-forwards: forwards; --animation-fill-mode-backwards: backwards; --animation-fill-mode-both: both; --percentage-0: 0; --percentage-5: .05; --percentage-10: .1; --percentage-15: .15; --percentage-20: .2; --percentage-25: .25; --percentage-30: .3; --percentage-35: .35; --percentage-40: .4; --percentage-45: .45; --percentage-50: .5; --percentage-55: .55; --percentage-60: .6; --percentage-65: .65; --percentage-70: .7; --percentage-75: .75; --percentage-80: .8; --percentage-85: .85; --percentage-90: .9; --percentage-95: .95; --percentage-100: 1; --percentage-translate-full: 1; --animate-in: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); --animate-out: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); @keyframes enter { from { opacity: var(--tw-enter-opacity,1); transform: translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0)); filter: blur(var(--tw-enter-blur,0)); }}@keyframes exit { to { opacity: var(--tw-exit-opacity,1); transform: translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0)); filter: blur(var(--tw-exit-blur,0)); }}--animate-accordion-down: accordion-down var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); --animate-accordion-up: accordion-up var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); --animate-collapsible-down: collapsible-down var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); --animate-collapsible-up: collapsible-up var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); @keyframes accordion-down { from { height: 0; }to { height: var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto))))); }}@keyframes accordion-up { from { height: var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto))))); }to { height: 0; }}@keyframes collapsible-down { from { height: 0; }to { height: var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto)))); }}@keyframes collapsible-up { from { height: var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto)))); }to { height: 0; }}--animate-caret-blink: caret-blink 1.25s ease-out infinite; @keyframes caret-blink { 0%,70%,100% { opacity: 1; }20%,50% { opacity: 0; }}}
|
|
1012
|
+
|
|
1013
|
+
@utility animation-duration-*{--tw-animation-duration: calc(--value(number)*1ms); --tw-animation-duration: --value(--animation-duration-*,[duration],"initial",[*]); animation-duration: calc(--value(number)*1ms); animation-duration: --value(--animation-duration-*,[duration],"initial",[*]);}
|
|
1014
|
+
|
|
1015
|
+
@utility delay-*{animation-delay: calc(--value(number)*1ms); animation-delay: --value(--animation-delay-*,[duration],"initial",[*]); --tw-animation-delay: calc(--value(number)*1ms); --tw-animation-delay: --value(--animation-delay-*,[duration],"initial",[*]);}
|
|
1016
|
+
|
|
1017
|
+
@utility repeat-*{animation-iteration-count: --value(--animation-repeat-*,number,"initial",[*]); --tw-animation-iteration-count: --value(--animation-repeat-*,number,"initial",[*]);}
|
|
1018
|
+
|
|
1019
|
+
@utility direction-*{animation-direction: --value(--animation-direction-*,"initial",[*]); --tw-animation-direction: --value(--animation-direction-*,"initial",[*]);}
|
|
1020
|
+
|
|
1021
|
+
@utility fill-mode-*{animation-fill-mode: --value(--animation-fill-mode-*,"initial",[*]); --tw-animation-fill-mode: --value(--animation-fill-mode-*,"initial",[*]);}
|
|
1022
|
+
|
|
1023
|
+
@utility running{animation-play-state: running;}
|
|
1024
|
+
|
|
1025
|
+
@utility paused{animation-play-state: paused;}
|
|
1026
|
+
|
|
1027
|
+
@utility play-state-*{animation-play-state: --value("initial",[*]);}
|
|
1028
|
+
|
|
1029
|
+
@utility blur-in{--tw-enter-blur: 20px;}
|
|
1030
|
+
|
|
1031
|
+
@utility blur-in-*{--tw-enter-blur: calc(--value(number)*1px); --tw-enter-blur: --value(--blur-*,[*]);}
|
|
1032
|
+
|
|
1033
|
+
@utility blur-out{--tw-exit-blur: 20px;}
|
|
1034
|
+
|
|
1035
|
+
@utility blur-out-*{--tw-exit-blur: calc(--value(number)*1px); --tw-exit-blur: --value(--blur-*,[*]);}
|
|
1036
|
+
|
|
1037
|
+
@utility fade-in{--tw-enter-opacity: 0;}
|
|
1038
|
+
|
|
1039
|
+
@utility fade-in-*{--tw-enter-opacity: calc(--value(number)/100); --tw-enter-opacity: --value(--percentage-*,[*]);}
|
|
1040
|
+
|
|
1041
|
+
@utility fade-out{--tw-exit-opacity: 0;}
|
|
1042
|
+
|
|
1043
|
+
@utility fade-out-*{--tw-exit-opacity: calc(--value(number)/100); --tw-exit-opacity: --value(--percentage-*,[*]);}
|
|
1044
|
+
|
|
1045
|
+
@utility zoom-in{--tw-enter-scale: 0;}
|
|
1046
|
+
|
|
1047
|
+
@utility zoom-in-*{--tw-enter-scale: calc(--value(number)*1%); --tw-enter-scale: calc(--value(ratio)); --tw-enter-scale: --value(--percentage-*,[*]);}
|
|
1048
|
+
|
|
1049
|
+
@utility -zoom-in-*{--tw-enter-scale: calc(--value(number)*-1%); --tw-enter-scale: calc(--value(ratio)*-1); --tw-enter-scale: --value(--percentage-*,[*]);}
|
|
1050
|
+
|
|
1051
|
+
@utility zoom-out{--tw-exit-scale: 0;}
|
|
1052
|
+
|
|
1053
|
+
@utility zoom-out-*{--tw-exit-scale: calc(--value(number)*1%); --tw-exit-scale: calc(--value(ratio)); --tw-exit-scale: --value(--percentage-*,[*]);}
|
|
1054
|
+
|
|
1055
|
+
@utility -zoom-out-*{--tw-exit-scale: calc(--value(number)*-1%); --tw-exit-scale: calc(--value(ratio)*-1); --tw-exit-scale: --value(--percentage-*,[*]);}
|
|
1056
|
+
|
|
1057
|
+
@utility spin-in{--tw-enter-rotate: 30deg;}
|
|
1058
|
+
|
|
1059
|
+
@utility spin-in-*{--tw-enter-rotate: calc(--value(number)*1deg); --tw-enter-rotate: calc(--value(ratio)*360deg); --tw-enter-rotate: --value(--rotate-*,[*]);}
|
|
1060
|
+
|
|
1061
|
+
@utility -spin-in{--tw-enter-rotate: -30deg;}
|
|
1062
|
+
|
|
1063
|
+
@utility -spin-in-*{--tw-enter-rotate: calc(--value(number)*-1deg); --tw-enter-rotate: calc(--value(ratio)*-360deg); --tw-enter-rotate: --value(--rotate-*,[*]);}
|
|
1064
|
+
|
|
1065
|
+
@utility spin-out{--tw-exit-rotate: 30deg;}
|
|
1066
|
+
|
|
1067
|
+
@utility spin-out-*{--tw-exit-rotate: calc(--value(number)*1deg); --tw-exit-rotate: calc(--value(ratio)*360deg); --tw-exit-rotate: --value(--rotate-*,[*]);}
|
|
1068
|
+
|
|
1069
|
+
@utility -spin-out{--tw-exit-rotate: -30deg;}
|
|
1070
|
+
|
|
1071
|
+
@utility -spin-out-*{--tw-exit-rotate: calc(--value(number)*-1deg); --tw-exit-rotate: calc(--value(ratio)*-360deg); --tw-exit-rotate: --value(--rotate-*,[*]);}
|
|
1072
|
+
|
|
1073
|
+
@utility slide-in-from-top{--tw-enter-translate-y: -100%;}
|
|
1074
|
+
|
|
1075
|
+
@utility slide-in-from-top-*{--tw-enter-translate-y: calc(--value(integer)*var(--spacing)*-1); --tw-enter-translate-y: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-enter-translate-y: calc(--value(ratio)*-100%); --tw-enter-translate-y: calc(--value(--translate-*,[percentage],[length])*-1);}
|
|
1076
|
+
|
|
1077
|
+
@utility slide-in-from-bottom{--tw-enter-translate-y: 100%;}
|
|
1078
|
+
|
|
1079
|
+
@utility slide-in-from-bottom-*{--tw-enter-translate-y: calc(--value(integer)*var(--spacing)); --tw-enter-translate-y: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-enter-translate-y: calc(--value(ratio)*100%); --tw-enter-translate-y: --value(--translate-*,[percentage],[length]);}
|
|
1080
|
+
|
|
1081
|
+
@utility slide-in-from-left{--tw-enter-translate-x: -100%;}
|
|
1082
|
+
|
|
1083
|
+
@utility slide-in-from-left-*{--tw-enter-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-enter-translate-x: calc(--value(ratio)*-100%); --tw-enter-translate-x: calc(--value(--translate-*,[percentage],[length])*-1);}
|
|
1084
|
+
|
|
1085
|
+
@utility slide-in-from-right{--tw-enter-translate-x: 100%;}
|
|
1086
|
+
|
|
1087
|
+
@utility slide-in-from-right-*{--tw-enter-translate-x: calc(--value(integer)*var(--spacing)); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-enter-translate-x: calc(--value(ratio)*100%); --tw-enter-translate-x: --value(--translate-*,[percentage],[length]);}
|
|
1088
|
+
|
|
1089
|
+
@utility slide-in-from-start{&:dir(ltr){ --tw-enter-translate-x: -100%; }&:dir(rtl){ --tw-enter-translate-x: 100%; }}
|
|
1090
|
+
|
|
1091
|
+
@utility slide-in-from-start-*{&:where(:dir(ltr),[dir="ltr"],[dir="ltr"]*){ --tw-enter-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-enter-translate-x: calc(--value(ratio)*-100%); --tw-enter-translate-x: calc(--value(--translate-*,[percentage],[length])*-1); }&:where(:dir(rtl),[dir="rtl"],[dir="rtl"]*){ --tw-enter-translate-x: calc(--value(integer)*var(--spacing)); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-enter-translate-x: calc(--value(ratio)*100%); --tw-enter-translate-x: --value(--translate-*,[percentage],[length]); }}
|
|
1092
|
+
|
|
1093
|
+
@utility slide-in-from-end{&:dir(ltr){ --tw-enter-translate-x: 100%; }&:dir(rtl){ --tw-enter-translate-x: -100%; }}
|
|
1094
|
+
|
|
1095
|
+
@utility slide-in-from-end-*{&:where(:dir(ltr),[dir="ltr"],[dir="ltr"]*){ --tw-enter-translate-x: calc(--value(integer)*var(--spacing)); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-enter-translate-x: calc(--value(ratio)*100%); --tw-enter-translate-x: --value(--translate-*,[percentage],[length]); }&:where(:dir(rtl),[dir="rtl"],[dir="rtl"]*){ --tw-enter-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-enter-translate-x: calc(--value(ratio)*-100%); --tw-enter-translate-x: calc(--value(--translate-*,[percentage],[length])*-1); }}
|
|
1096
|
+
|
|
1097
|
+
@utility slide-out-to-top{--tw-exit-translate-y: -100%;}
|
|
1098
|
+
|
|
1099
|
+
@utility slide-out-to-top-*{--tw-exit-translate-y: calc(--value(integer)*var(--spacing)*-1); --tw-exit-translate-y: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-exit-translate-y: calc(--value(ratio)*-100%); --tw-exit-translate-y: calc(--value(--translate-*,[percentage],[length])*-1);}
|
|
1100
|
+
|
|
1101
|
+
@utility slide-out-to-bottom{--tw-exit-translate-y: 100%;}
|
|
1102
|
+
|
|
1103
|
+
@utility slide-out-to-bottom-*{--tw-exit-translate-y: calc(--value(integer)*var(--spacing)); --tw-exit-translate-y: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-exit-translate-y: calc(--value(ratio)*100%); --tw-exit-translate-y: --value(--translate-*,[percentage],[length]);}
|
|
1104
|
+
|
|
1105
|
+
@utility slide-out-to-left{--tw-exit-translate-x: -100%;}
|
|
1106
|
+
|
|
1107
|
+
@utility slide-out-to-left-*{--tw-exit-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-exit-translate-x: calc(--value(ratio)*-100%); --tw-exit-translate-x: calc(--value(--translate-*,[percentage],[length])*-1);}
|
|
1108
|
+
|
|
1109
|
+
@utility slide-out-to-right{--tw-exit-translate-x: 100%;}
|
|
1110
|
+
|
|
1111
|
+
@utility slide-out-to-right-*{--tw-exit-translate-x: calc(--value(integer)*var(--spacing)); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-exit-translate-x: calc(--value(ratio)*100%); --tw-exit-translate-x: --value(--translate-*,[percentage],[length]);}
|
|
1112
|
+
|
|
1113
|
+
@utility slide-out-to-start{&:dir(ltr){ --tw-exit-translate-x: -100%; }&:dir(rtl){ --tw-exit-translate-x: 100%; }}
|
|
1114
|
+
|
|
1115
|
+
@utility slide-out-to-start-*{&:where(:dir(ltr),[dir="ltr"],[dir="ltr"]*){ --tw-exit-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-exit-translate-x: calc(--value(ratio)*-100%); --tw-exit-translate-x: calc(--value(--translate-*,[percentage],[length])*-1); }&:where(:dir(rtl),[dir="rtl"],[dir="rtl"]*){ --tw-exit-translate-x: calc(--value(integer)*var(--spacing)); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-exit-translate-x: calc(--value(ratio)*100%); --tw-exit-translate-x: --value(--translate-*,[percentage],[length]); }}
|
|
1116
|
+
|
|
1117
|
+
@utility slide-out-to-end{&:dir(ltr){ --tw-exit-translate-x: 100%; }&:dir(rtl){ --tw-exit-translate-x: -100%; }}
|
|
1118
|
+
|
|
1119
|
+
@utility slide-out-to-end-*{&:where(:dir(ltr),[dir="ltr"],[dir="ltr"]*){ --tw-exit-translate-x: calc(--value(integer)*var(--spacing)); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-exit-translate-x: calc(--value(ratio)*100%); --tw-exit-translate-x: --value(--translate-*,[percentage],[length]); }&:where(:dir(rtl),[dir="rtl"],[dir="rtl"]*){ --tw-exit-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-exit-translate-x: calc(--value(ratio)*-100%); --tw-exit-translate-x: calc(--value(--translate-*,[percentage],[length])*-1); }}
|
|
1120
|
+
|
|
1121
|
+
@custom-variant dark (&:is(.dark *));
|
|
1122
|
+
|
|
1123
|
+
:root {
|
|
1124
|
+
--background: oklch(1 0 0);
|
|
1125
|
+
--foreground: oklch(0.145 0 0);
|
|
1126
|
+
--card: oklch(1 0 0);
|
|
1127
|
+
--card-foreground: oklch(0.145 0 0);
|
|
1128
|
+
--popover: oklch(1 0 0);
|
|
1129
|
+
--popover-foreground: oklch(0.145 0 0);
|
|
1130
|
+
--primary: oklch(0.205 0 0);
|
|
1131
|
+
--primary-foreground: oklch(0.985 0 0);
|
|
1132
|
+
--secondary: oklch(0.97 0 0);
|
|
1133
|
+
--secondary-foreground: oklch(0.205 0 0);
|
|
1134
|
+
--muted: oklch(0.97 0 0);
|
|
1135
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
1136
|
+
--accent: oklch(0.97 0 0);
|
|
1137
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
1138
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
1139
|
+
--destructive-foreground: oklch(0.577 0.245 27.325);
|
|
1140
|
+
--border: oklch(0.922 0 0);
|
|
1141
|
+
--input: oklch(0.922 0 0);
|
|
1142
|
+
--ring: oklch(0.708 0 0);
|
|
1143
|
+
--chart-1: oklch(0.646 0.222 41.116);
|
|
1144
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
1145
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
1146
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
1147
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
1148
|
+
--radius: 0.625rem;
|
|
1149
|
+
--sidebar: oklch(0.985 0 0);
|
|
1150
|
+
--sidebar-foreground: oklch(0.145 0 0);
|
|
1151
|
+
--sidebar-primary: oklch(0.205 0 0);
|
|
1152
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
1153
|
+
--sidebar-accent: oklch(0.97 0 0);
|
|
1154
|
+
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
1155
|
+
--sidebar-border: oklch(0.922 0 0);
|
|
1156
|
+
--sidebar-ring: oklch(0.708 0 0);
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.dark {
|
|
1160
|
+
--background: oklch(0.145 0 0);
|
|
1161
|
+
--foreground: oklch(0.985 0 0);
|
|
1162
|
+
--card: oklch(0.145 0 0);
|
|
1163
|
+
--card-foreground: oklch(0.985 0 0);
|
|
1164
|
+
--popover: oklch(0.145 0 0);
|
|
1165
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
1166
|
+
--primary: oklch(0.985 0 0);
|
|
1167
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
1168
|
+
--secondary: oklch(0.269 0 0);
|
|
1169
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
1170
|
+
--muted: oklch(0.269 0 0);
|
|
1171
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
1172
|
+
--accent: oklch(0.269 0 0);
|
|
1173
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
1174
|
+
--destructive: oklch(0.396 0.141 25.723);
|
|
1175
|
+
--destructive-foreground: oklch(0.637 0.237 25.331);
|
|
1176
|
+
--border: oklch(0.269 0 0);
|
|
1177
|
+
--input: oklch(0.269 0 0);
|
|
1178
|
+
--ring: oklch(0.439 0 0);
|
|
1179
|
+
--chart-1: oklch(0.488 0.243 264.376);
|
|
1180
|
+
--chart-2: oklch(0.696 0.17 162.48);
|
|
1181
|
+
--chart-3: oklch(0.769 0.188 70.08);
|
|
1182
|
+
--chart-4: oklch(0.627 0.265 303.9);
|
|
1183
|
+
--chart-5: oklch(0.645 0.246 16.439);
|
|
1184
|
+
--sidebar: oklch(0.205 0 0);
|
|
1185
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
1186
|
+
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
1187
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
1188
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
1189
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
1190
|
+
--sidebar-border: oklch(0.269 0 0);
|
|
1191
|
+
--sidebar-ring: oklch(0.439 0 0);
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
@theme inline {
|
|
1195
|
+
--color-background: var(--background);
|
|
1196
|
+
--color-foreground: var(--foreground);
|
|
1197
|
+
--color-card: var(--card);
|
|
1198
|
+
--color-card-foreground: var(--card-foreground);
|
|
1199
|
+
--color-popover: var(--popover);
|
|
1200
|
+
--color-popover-foreground: var(--popover-foreground);
|
|
1201
|
+
--color-primary: var(--primary);
|
|
1202
|
+
--color-primary-foreground: var(--primary-foreground);
|
|
1203
|
+
--color-secondary: var(--secondary);
|
|
1204
|
+
--color-secondary-foreground: var(--secondary-foreground);
|
|
1205
|
+
--color-muted: var(--muted);
|
|
1206
|
+
--color-muted-foreground: var(--muted-foreground);
|
|
1207
|
+
--color-accent: var(--accent);
|
|
1208
|
+
--color-accent-foreground: var(--accent-foreground);
|
|
1209
|
+
--color-destructive: var(--destructive);
|
|
1210
|
+
--color-destructive-foreground: var(--destructive-foreground);
|
|
1211
|
+
--color-border: var(--border);
|
|
1212
|
+
--color-input: var(--input);
|
|
1213
|
+
--color-ring: var(--ring);
|
|
1214
|
+
--color-chart-1: var(--chart-1);
|
|
1215
|
+
--color-chart-2: var(--chart-2);
|
|
1216
|
+
--color-chart-3: var(--chart-3);
|
|
1217
|
+
--color-chart-4: var(--chart-4);
|
|
1218
|
+
--color-chart-5: var(--chart-5);
|
|
1219
|
+
--radius-sm: calc(var(--radius) - 4px);
|
|
1220
|
+
--radius-md: calc(var(--radius) - 2px);
|
|
1221
|
+
--radius-lg: var(--radius);
|
|
1222
|
+
--radius-xl: calc(var(--radius) + 4px);
|
|
1223
|
+
--color-sidebar: var(--sidebar);
|
|
1224
|
+
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
1225
|
+
--color-sidebar-primary: var(--sidebar-primary);
|
|
1226
|
+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
1227
|
+
--color-sidebar-accent: var(--sidebar-accent);
|
|
1228
|
+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
1229
|
+
--color-sidebar-border: var(--sidebar-border);
|
|
1230
|
+
--color-sidebar-ring: var(--sidebar-ring);
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
@layer base {
|
|
1234
|
+
* {
|
|
1235
|
+
@apply border-border outline-ring/50;
|
|
1236
|
+
}
|
|
1237
|
+
body {
|
|
1238
|
+
@apply bg-background text-foreground;
|
|
1239
|
+
}
|
|
1240
|
+
}
|