@prokodo/ui 0.0.10 → 0.0.11
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 +2 -0
- package/dist/_virtual/_commonjsHelpers.js +6 -1
- package/dist/_virtual/index.js +7 -1
- package/dist/_virtual/index2.js +4 -1
- package/dist/_virtual/index3.js +4 -1
- package/dist/_virtual/jsx-runtime.js +5 -1
- package/dist/_virtual/jsx-runtime2.js +4 -1
- package/dist/_virtual/react-is.development.js +4 -1
- package/dist/_virtual/react-is.production.min.js +4 -1
- package/dist/_virtual/react-jsx-runtime.development.js +4 -1
- package/dist/_virtual/react-jsx-runtime.production.js +4 -1
- package/dist/assets/images/card_background_primary_1.webp.js +4 -1
- package/dist/assets/images/card_background_primary_2.webp.js +4 -1
- package/dist/assets/images/card_background_primary_3.webp.js +4 -1
- package/dist/assets/images/card_background_primary_4.webp.js +4 -1
- package/dist/assets/images/card_background_secondary_1.webp.js +4 -1
- package/dist/assets/images/card_background_secondary_2.webp.js +4 -1
- package/dist/assets/images/card_background_secondary_3.webp.js +4 -1
- package/dist/assets/images/card_background_secondary_4.webp.js +4 -1
- package/dist/components/accordion/Accordion.js +115 -1
- package/dist/components/accordion/Accordion.module.scss.js +23 -1
- package/dist/components/accordion/index.js +4 -1
- package/dist/components/animated/Animated.js +53 -1
- package/dist/components/animated/Animated.module.scss.js +18 -1
- package/dist/components/animated/index.js +4 -1
- package/dist/components/animatedText/AnimatedText.js +31 -1
- package/dist/components/animatedText/index.js +4 -1
- package/dist/components/avatar/Avatar.js +78 -1
- package/dist/components/avatar/Avatar.module.scss.js +24 -1
- package/dist/components/avatar/index.js +4 -1
- package/dist/components/base-link/BaseLink.js +30 -1
- package/dist/components/base-link/index.js +4 -1
- package/dist/components/button/Button.js +84 -1
- package/dist/components/button/Button.module.scss.js +34 -1
- package/dist/components/button/index.js +4 -1
- package/dist/components/calendly/Calendly.js +82 -1
- package/dist/components/calendly/index.js +4 -1
- package/dist/components/card/Card.js +180 -1
- package/dist/components/card/Card.module.scss.js +38 -1
- package/dist/components/card/index.js +4 -1
- package/dist/components/carousel/Carousel.js +232 -1
- package/dist/components/carousel/Carousel.module.scss.js +21 -1
- package/dist/components/carousel/Carousel.services.js +22 -1
- package/dist/components/carousel/index.js +4 -1
- package/dist/components/chip/Chip.js +61 -1
- package/dist/components/chip/Chip.module.scss.js +26 -1
- package/dist/components/chip/index.js +4 -1
- package/dist/components/datePicker/DatePicker.js +93 -1
- package/dist/components/datePicker/index.js +4 -1
- package/dist/components/dialog/Dialog.js +156 -1
- package/dist/components/dialog/Dialog.module.scss.js +23 -1
- package/dist/components/dialog/index.js +4 -1
- package/dist/components/drawer/Drawer.js +94 -1
- package/dist/components/drawer/Drawer.module.scss.js +37 -1
- package/dist/components/drawer/index.js +6 -1
- package/dist/components/form/Form.js +228 -1
- package/dist/components/form/Form.module.scss.js +13 -1
- package/dist/components/form/FormField.js +96 -1
- package/dist/components/form/FormField.module.scss.js +10 -1
- package/dist/components/form/FormResponse.js +43 -1
- package/dist/components/form/FormResponse.module.scss.js +14 -1
- package/dist/components/form/index.js +6 -1
- package/dist/components/grid/Grid.js +21 -1
- package/dist/components/grid/Grid.module.scss.js +10 -1
- package/dist/components/grid/GridRow.js +29 -1
- package/dist/components/grid/GridRow.module.scss.js +73 -1
- package/dist/components/grid/index.js +6 -1
- package/dist/components/headline/Headline.js +71 -1
- package/dist/components/headline/Headline.module.scss.js +34 -1
- package/dist/components/headline/index.js +5 -1
- package/dist/components/icon/Icon.js +60 -1
- package/dist/components/icon/Icon.module.scss.js +16 -1
- package/dist/components/icon/iconsMap.js +4131 -1
- package/dist/components/icon/index.js +5 -1
- package/dist/components/image/Image.js +29 -1
- package/dist/components/image/Image.module.scss.js +11 -1
- package/dist/components/image/index.js +4 -1
- package/dist/components/image-text/ImageText.js +99 -1
- package/dist/components/image-text/ImageText.module.scss.js +22 -1
- package/dist/components/image-text/index.js +4 -1
- package/dist/components/input/Input.js +189 -1
- package/dist/components/input/Input.module.scss.js +30 -1
- package/dist/components/input/InputValidation.js +52 -1
- package/dist/components/input/index.js +4 -1
- package/dist/components/inputOTP/InputOTP.js +79 -1
- package/dist/components/inputOTP/InputOTP.module.scss.js +16 -1
- package/dist/components/inputOTP/index.js +4 -1
- package/dist/components/label/Label.js +65 -1
- package/dist/components/label/Label.module.scss.js +13 -1
- package/dist/components/label/index.js +4 -1
- package/dist/components/link/Link.js +58 -1
- package/dist/components/link/Link.module.scss.js +18 -1
- package/dist/components/link/index.js +4 -1
- package/dist/components/list/List.js +172 -1
- package/dist/components/list/List.module.scss.js +31 -1
- package/dist/components/list/index.js +4 -1
- package/dist/components/loading/Loading.js +57 -1
- package/dist/components/loading/Loading.module.scss.js +19 -1
- package/dist/components/loading/index.js +4 -1
- package/dist/components/lottie/Lottie.js +55 -1
- package/dist/components/lottie/Lottie.module.scss.js +10 -1
- package/dist/components/lottie/LottieAnimations.js +35 -1
- package/dist/components/lottie/index.js +4 -1
- package/dist/components/map/Map.js +51 -1
- package/dist/components/map/index.js +4 -1
- package/dist/components/post-item/PostItem.js +136 -1
- package/dist/components/post-item/PostItem.module.scss.js +22 -1
- package/dist/components/post-item/PostItemAuthor.js +37 -1
- package/dist/components/post-item/PostItemAuthor.module.scss.js +11 -1
- package/dist/components/post-item/index.js +4 -1
- package/dist/components/post-teaser/PostTeaser.js +168 -1
- package/dist/components/post-teaser/PostTeaser.module.scss.js +25 -1
- package/dist/components/post-teaser/index.js +4 -1
- package/dist/components/post-widget/PostWidget.js +158 -1
- package/dist/components/post-widget/PostWidget.module.scss.js +19 -1
- package/dist/components/post-widget/index.js +4 -1
- package/dist/components/post-widget-carousel/PostWidgetCarousel.js +159 -1
- package/dist/components/post-widget-carousel/PostWidgetCarousel.module.scss.js +16 -1
- package/dist/components/post-widget-carousel/index.js +4 -1
- package/dist/components/quote/Quote.js +90 -1
- package/dist/components/quote/Quote.module.scss.js +18 -1
- package/dist/components/quote/index.js +4 -1
- package/dist/components/rich-text/RichText.js +143 -1
- package/dist/components/rich-text/RichText.module.scss.js +16 -1
- package/dist/components/rich-text/index.js +4 -1
- package/dist/components/select/Select.js +199 -1
- package/dist/components/select/Select.module.scss.js +34 -1
- package/dist/components/select/index.js +4 -1
- package/dist/components/skeleton/Skeleton.js +29 -1
- package/dist/components/skeleton/Skeleton.module.scss.js +18 -1
- package/dist/components/skeleton/index.js +4 -1
- package/dist/components/slider/Slider.js +104 -1
- package/dist/components/slider/Slider.module.scss.js +20 -1
- package/dist/components/slider/index.js +4 -1
- package/dist/components/stepper/Stepper.js +119 -1
- package/dist/components/stepper/Stepper.module.scss.js +23 -1
- package/dist/components/stepper/index.js +4 -1
- package/dist/components/switch/Switch.js +102 -1
- package/dist/components/switch/Switch.module.scss.js +30 -1
- package/dist/components/switch/index.js +4 -1
- package/dist/components/table/Table.js +75 -1
- package/dist/components/table/Table.module.scss.js +27 -1
- package/dist/components/table/index.js +4 -1
- package/dist/components/teaser/Teaser.js +102 -1
- package/dist/components/teaser/Teaser.module.scss.js +23 -1
- package/dist/components/teaser/index.js +4 -1
- package/dist/helpers/bem.js +12 -1
- package/dist/helpers/calculation.js +4 -1
- package/dist/helpers/validations.js +8 -1
- package/dist/hooks/useGoogleMaps.js +19 -1
- package/dist/index.js +86 -1
- package/dist/node_modules/.pnpm/@floating-ui_core@1.7.0/node_modules/@floating-ui/core/dist/floating-ui.core.js +353 -1
- package/dist/node_modules/.pnpm/@floating-ui_dom@1.7.0/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +395 -1
- package/dist/node_modules/.pnpm/@floating-ui_react-dom@2.1.2_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +170 -1
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.9/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +131 -1
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.9/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +128 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Option/Option.js +119 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Option/optionClasses.js +10 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Portal/Portal.js +71 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Select/Select.js +286 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Select/selectClasses.js +10 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Slider/Slider.js +414 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Slider/sliderClasses.js +10 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Switch/Switch.js +158 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Switch/switchClasses.js +10 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Unstable_Popup/Popup.js +205 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Unstable_Popup/PopupContext.js +6 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Unstable_Popup/popupClasses.js +10 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/generateUtilityClass/index.js +15 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/generateUtilityClasses/index.js +10 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useButton/useButton.js +79 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useCompound/useCompoundItem.js +25 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useCompound/useCompoundParent.js +47 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/ListContext.js +6 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/listActions.types.js +14 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/listReducer.js +223 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/useList.js +150 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/useListItem.js +61 -3
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useOption/useOption.js +63 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useOption/useOptionContextStabilizer.js +32 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/SelectProvider.js +34 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/defaultOptionStringifier.js +10 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/selectReducer.js +65 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/useSelect.js +242 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/useSelect.types.js +7 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSlider/useSlider.js +423 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSwitch/useSwitch.js +58 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useTransition/TransitionContext.js +6 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useTransition/useTransitionTrigger.js +27 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/ClassNameConfigurator.js +15 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/areArraysEqual.js +6 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/combineHooksSlotProps.js +15 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/isHostComponent.js +6 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/resolveComponentProps.js +6 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/useControllableReducer.js +70 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/useRootElementName.js +17 -1
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/useTextNavigation.js +17 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/HTMLElementType/HTMLElementType.js +9 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/appendOwnerState/appendOwnerState.js +13 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/chainPropTypes/chainPropTypes.js +8 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/clamp/clamp.js +6 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/composeClasses/composeClasses.js +16 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/exactProp/exactProp.js +13 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/extractEventHandlers/extractEventHandlers.js +11 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/generateUtilityClass/generateUtilityClass.js +17 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/getReactNodeRef/getReactNodeRef.js +12 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/isFocusVisible/isFocusVisible.js +12 -2
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/isHostComponent/isHostComponent.js +6 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/mergeSlotProps/mergeSlotProps.js +48 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/omitEventHandlers/omitEventHandlers.js +11 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/ownerDocument/ownerDocument.js +6 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/resolveComponentProps/resolveComponentProps.js +6 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/setRef/setRef.js +6 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useControlled/useControlled.js +31 -3
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useEnhancedEffect/useEnhancedEffect.js +5 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useEventCallback/useEventCallback.js +14 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useForkRef/useForkRef.js +12 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useId/useId.js +19 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useSlotProps/useSlotProps.js +27 -1
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/visuallyHidden/visuallyHidden.js +14 -1
- package/dist/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js +17 -1
- package/dist/node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign/index.js +51 -2
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/checkPropTypes.js +54 -1
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithThrowingShims.js +52 -1
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithTypeCheckers.js +329 -2
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/index.js +17 -1
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/ReactPropTypesSecret.js +10 -1
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/has.js +7 -1
- package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.development.js +89 -2
- package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.js +72 -2
- package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.js +10 -1
- package/dist/node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.development.js +236 -3
- package/dist/node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.production.js +28 -2
- package/dist/node_modules/.pnpm/react@19.1.0/node_modules/react/jsx-runtime.js +10 -1
- package/package.json +2 -4
|
@@ -1,8 +1,78 @@
|
|
|
1
|
-
|
|
1
|
+
import { __exports as r } from "../../../../../../_virtual/react-is.production.min.js";
|
|
2
|
+
/** @license React v16.13.1
|
|
2
3
|
* react-is.production.min.js
|
|
3
4
|
*
|
|
4
5
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
5
6
|
*
|
|
6
7
|
* This source code is licensed under the MIT license found in the
|
|
7
8
|
* LICENSE file in the root directory of this source tree.
|
|
8
|
-
*/
|
|
9
|
+
*/
|
|
10
|
+
var _;
|
|
11
|
+
function g() {
|
|
12
|
+
if (_) return r;
|
|
13
|
+
_ = 1;
|
|
14
|
+
var t = typeof Symbol == "function" && Symbol.for, a = t ? Symbol.for("react.element") : 60103, b = t ? Symbol.for("react.portal") : 60106, n = t ? Symbol.for("react.fragment") : 60107, c = t ? Symbol.for("react.strict_mode") : 60108, f = t ? Symbol.for("react.profiler") : 60114, i = t ? Symbol.for("react.provider") : 60109, s = t ? Symbol.for("react.context") : 60110, d = t ? Symbol.for("react.async_mode") : 60111, u = t ? Symbol.for("react.concurrent_mode") : 60111, y = t ? Symbol.for("react.forward_ref") : 60112, l = t ? Symbol.for("react.suspense") : 60113, x = t ? Symbol.for("react.suspense_list") : 60120, m = t ? Symbol.for("react.memo") : 60115, p = t ? Symbol.for("react.lazy") : 60116, C = t ? Symbol.for("react.block") : 60121, M = t ? Symbol.for("react.fundamental") : 60117, v = t ? Symbol.for("react.responder") : 60118, w = t ? Symbol.for("react.scope") : 60119;
|
|
15
|
+
function o(e) {
|
|
16
|
+
if (typeof e == "object" && e !== null) {
|
|
17
|
+
var S = e.$$typeof;
|
|
18
|
+
switch (S) {
|
|
19
|
+
case a:
|
|
20
|
+
switch (e = e.type, e) {
|
|
21
|
+
case d:
|
|
22
|
+
case u:
|
|
23
|
+
case n:
|
|
24
|
+
case f:
|
|
25
|
+
case c:
|
|
26
|
+
case l:
|
|
27
|
+
return e;
|
|
28
|
+
default:
|
|
29
|
+
switch (e = e && e.$$typeof, e) {
|
|
30
|
+
case s:
|
|
31
|
+
case y:
|
|
32
|
+
case p:
|
|
33
|
+
case m:
|
|
34
|
+
case i:
|
|
35
|
+
return e;
|
|
36
|
+
default:
|
|
37
|
+
return S;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
case b:
|
|
41
|
+
return S;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
function $(e) {
|
|
46
|
+
return o(e) === u;
|
|
47
|
+
}
|
|
48
|
+
return r.AsyncMode = d, r.ConcurrentMode = u, r.ContextConsumer = s, r.ContextProvider = i, r.Element = a, r.ForwardRef = y, r.Fragment = n, r.Lazy = p, r.Memo = m, r.Portal = b, r.Profiler = f, r.StrictMode = c, r.Suspense = l, r.isAsyncMode = function(e) {
|
|
49
|
+
return $(e) || o(e) === d;
|
|
50
|
+
}, r.isConcurrentMode = $, r.isContextConsumer = function(e) {
|
|
51
|
+
return o(e) === s;
|
|
52
|
+
}, r.isContextProvider = function(e) {
|
|
53
|
+
return o(e) === i;
|
|
54
|
+
}, r.isElement = function(e) {
|
|
55
|
+
return typeof e == "object" && e !== null && e.$$typeof === a;
|
|
56
|
+
}, r.isForwardRef = function(e) {
|
|
57
|
+
return o(e) === y;
|
|
58
|
+
}, r.isFragment = function(e) {
|
|
59
|
+
return o(e) === n;
|
|
60
|
+
}, r.isLazy = function(e) {
|
|
61
|
+
return o(e) === p;
|
|
62
|
+
}, r.isMemo = function(e) {
|
|
63
|
+
return o(e) === m;
|
|
64
|
+
}, r.isPortal = function(e) {
|
|
65
|
+
return o(e) === b;
|
|
66
|
+
}, r.isProfiler = function(e) {
|
|
67
|
+
return o(e) === f;
|
|
68
|
+
}, r.isStrictMode = function(e) {
|
|
69
|
+
return o(e) === c;
|
|
70
|
+
}, r.isSuspense = function(e) {
|
|
71
|
+
return o(e) === l;
|
|
72
|
+
}, r.isValidElementType = function(e) {
|
|
73
|
+
return typeof e == "string" || typeof e == "function" || e === n || e === u || e === f || e === c || e === l || e === x || typeof e == "object" && e !== null && (e.$$typeof === p || e.$$typeof === m || e.$$typeof === i || e.$$typeof === s || e.$$typeof === y || e.$$typeof === M || e.$$typeof === v || e.$$typeof === w || e.$$typeof === C);
|
|
74
|
+
}, r.typeOf = o, r;
|
|
75
|
+
}
|
|
76
|
+
export {
|
|
77
|
+
g as __require
|
|
78
|
+
};
|
|
@@ -1 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
import { __module as e } from "../../../../../_virtual/index3.js";
|
|
2
|
+
import { __require as o } from "./cjs/react-is.production.min.js";
|
|
3
|
+
import { __require as t } from "./cjs/react-is.development.js";
|
|
4
|
+
var r;
|
|
5
|
+
function p() {
|
|
6
|
+
return r ? e.exports : (r = 1, process.env.NODE_ENV === "production" ? e.exports = o() : e.exports = t(), e.exports);
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
p as __require
|
|
10
|
+
};
|
package/dist/node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.development.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { __exports as u } from "../../../../../../_virtual/react-jsx-runtime.development.js";
|
|
2
|
+
import B from "react";
|
|
3
|
+
/**
|
|
2
4
|
* @license React
|
|
3
5
|
* react-jsx-runtime.development.js
|
|
4
6
|
*
|
|
@@ -6,9 +8,240 @@
|
|
|
6
8
|
*
|
|
7
9
|
* This source code is licensed under the MIT license found in the
|
|
8
10
|
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/
|
|
11
|
+
*/
|
|
12
|
+
var N;
|
|
13
|
+
function Q() {
|
|
14
|
+
return N ? u : (N = 1, process.env.NODE_ENV !== "production" && function() {
|
|
15
|
+
function l(e) {
|
|
16
|
+
if (e == null) return null;
|
|
17
|
+
if (typeof e == "function")
|
|
18
|
+
return e.$$typeof === q ? null : e.displayName || e.name || null;
|
|
19
|
+
if (typeof e == "string") return e;
|
|
20
|
+
switch (e) {
|
|
21
|
+
case m:
|
|
22
|
+
return "Fragment";
|
|
23
|
+
case $:
|
|
24
|
+
return "Profiler";
|
|
25
|
+
case W:
|
|
26
|
+
return "StrictMode";
|
|
27
|
+
case z:
|
|
28
|
+
return "Suspense";
|
|
29
|
+
case V:
|
|
30
|
+
return "SuspenseList";
|
|
31
|
+
case X:
|
|
32
|
+
return "Activity";
|
|
33
|
+
}
|
|
34
|
+
if (typeof e == "object")
|
|
35
|
+
switch (typeof e.tag == "number" && console.error(
|
|
36
|
+
"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
|
|
37
|
+
), e.$$typeof) {
|
|
38
|
+
case F:
|
|
39
|
+
return "Portal";
|
|
40
|
+
case U:
|
|
41
|
+
return (e.displayName || "Context") + ".Provider";
|
|
42
|
+
case L:
|
|
43
|
+
return (e._context.displayName || "Context") + ".Consumer";
|
|
44
|
+
case M:
|
|
45
|
+
var r = e.render;
|
|
46
|
+
return e = e.displayName, e || (e = r.displayName || r.name || "", e = e !== "" ? "ForwardRef(" + e + ")" : "ForwardRef"), e;
|
|
47
|
+
case G:
|
|
48
|
+
return r = e.displayName || null, r !== null ? r : l(e.type) || "Memo";
|
|
49
|
+
case A:
|
|
50
|
+
r = e._payload, e = e._init;
|
|
51
|
+
try {
|
|
52
|
+
return l(e(r));
|
|
53
|
+
} catch {
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
return null;
|
|
57
|
+
}
|
|
58
|
+
function T(e) {
|
|
59
|
+
return "" + e;
|
|
60
|
+
}
|
|
61
|
+
function v(e) {
|
|
62
|
+
try {
|
|
63
|
+
T(e);
|
|
64
|
+
var r = !1;
|
|
65
|
+
} catch {
|
|
66
|
+
r = !0;
|
|
67
|
+
}
|
|
68
|
+
if (r) {
|
|
69
|
+
r = console;
|
|
70
|
+
var t = r.error, n = typeof Symbol == "function" && Symbol.toStringTag && e[Symbol.toStringTag] || e.constructor.name || "Object";
|
|
71
|
+
return t.call(
|
|
72
|
+
r,
|
|
73
|
+
"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
|
|
74
|
+
n
|
|
75
|
+
), T(e);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
function f(e) {
|
|
79
|
+
if (e === m) return "<>";
|
|
80
|
+
if (typeof e == "object" && e !== null && e.$$typeof === A)
|
|
81
|
+
return "<...>";
|
|
82
|
+
try {
|
|
83
|
+
var r = l(e);
|
|
84
|
+
return r ? "<" + r + ">" : "<...>";
|
|
85
|
+
} catch {
|
|
86
|
+
return "<...>";
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
function C() {
|
|
90
|
+
var e = b.A;
|
|
91
|
+
return e === null ? null : e.getOwner();
|
|
92
|
+
}
|
|
93
|
+
function p() {
|
|
94
|
+
return Error("react-stack-top-frame");
|
|
95
|
+
}
|
|
96
|
+
function x(e) {
|
|
97
|
+
if (S.call(e, "key")) {
|
|
98
|
+
var r = Object.getOwnPropertyDescriptor(e, "key").get;
|
|
99
|
+
if (r && r.isReactWarning) return !1;
|
|
100
|
+
}
|
|
101
|
+
return e.key !== void 0;
|
|
102
|
+
}
|
|
103
|
+
function Y(e, r) {
|
|
104
|
+
function t() {
|
|
105
|
+
w || (w = !0, console.error(
|
|
106
|
+
"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
|
|
107
|
+
r
|
|
108
|
+
));
|
|
109
|
+
}
|
|
110
|
+
t.isReactWarning = !0, Object.defineProperty(e, "key", {
|
|
111
|
+
get: t,
|
|
112
|
+
configurable: !0
|
|
113
|
+
});
|
|
114
|
+
}
|
|
115
|
+
function I() {
|
|
116
|
+
var e = l(this.type);
|
|
117
|
+
return P[e] || (P[e] = !0, console.error(
|
|
118
|
+
"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
|
|
119
|
+
)), e = this.props.ref, e !== void 0 ? e : null;
|
|
120
|
+
}
|
|
121
|
+
function D(e, r, t, n, c, o, E, _) {
|
|
122
|
+
return t = o.ref, e = {
|
|
123
|
+
$$typeof: g,
|
|
124
|
+
type: e,
|
|
125
|
+
key: r,
|
|
126
|
+
props: o,
|
|
127
|
+
_owner: c
|
|
128
|
+
}, (t !== void 0 ? t : null) !== null ? Object.defineProperty(e, "ref", {
|
|
129
|
+
enumerable: !1,
|
|
130
|
+
get: I
|
|
131
|
+
}) : Object.defineProperty(e, "ref", { enumerable: !1, value: null }), e._store = {}, Object.defineProperty(e._store, "validated", {
|
|
132
|
+
configurable: !1,
|
|
133
|
+
enumerable: !1,
|
|
134
|
+
writable: !0,
|
|
135
|
+
value: 0
|
|
136
|
+
}), Object.defineProperty(e, "_debugInfo", {
|
|
137
|
+
configurable: !1,
|
|
138
|
+
enumerable: !1,
|
|
139
|
+
writable: !0,
|
|
140
|
+
value: null
|
|
141
|
+
}), Object.defineProperty(e, "_debugStack", {
|
|
142
|
+
configurable: !1,
|
|
143
|
+
enumerable: !1,
|
|
144
|
+
writable: !0,
|
|
145
|
+
value: E
|
|
146
|
+
}), Object.defineProperty(e, "_debugTask", {
|
|
147
|
+
configurable: !1,
|
|
148
|
+
enumerable: !1,
|
|
149
|
+
writable: !0,
|
|
150
|
+
value: _
|
|
151
|
+
}), Object.freeze && (Object.freeze(e.props), Object.freeze(e)), e;
|
|
152
|
+
}
|
|
153
|
+
function O(e, r, t, n, c, o, E, _) {
|
|
154
|
+
var a = r.children;
|
|
155
|
+
if (a !== void 0)
|
|
156
|
+
if (n)
|
|
157
|
+
if (K(a)) {
|
|
158
|
+
for (n = 0; n < a.length; n++)
|
|
159
|
+
k(a[n]);
|
|
160
|
+
Object.freeze && Object.freeze(a);
|
|
161
|
+
} else
|
|
162
|
+
console.error(
|
|
163
|
+
"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
|
|
164
|
+
);
|
|
165
|
+
else k(a);
|
|
166
|
+
if (S.call(r, "key")) {
|
|
167
|
+
a = l(e);
|
|
168
|
+
var s = Object.keys(r).filter(function(J) {
|
|
169
|
+
return J !== "key";
|
|
170
|
+
});
|
|
171
|
+
n = 0 < s.length ? "{key: someKey, " + s.join(": ..., ") + ": ...}" : "{key: someKey}", j[a + n] || (s = 0 < s.length ? "{" + s.join(": ..., ") + ": ...}" : "{}", console.error(
|
|
172
|
+
`A props object containing a "key" prop is being spread into JSX:
|
|
10
173
|
let props = %s;
|
|
11
174
|
<%s {...props} />
|
|
12
175
|
React keys must be passed directly to JSX without using spread:
|
|
13
176
|
let props = %s;
|
|
14
|
-
<%s key={someKey} {...props} />`,
|
|
177
|
+
<%s key={someKey} {...props} />`,
|
|
178
|
+
n,
|
|
179
|
+
a,
|
|
180
|
+
s,
|
|
181
|
+
a
|
|
182
|
+
), j[a + n] = !0);
|
|
183
|
+
}
|
|
184
|
+
if (a = null, t !== void 0 && (v(t), a = "" + t), x(r) && (v(r.key), a = "" + r.key), "key" in r) {
|
|
185
|
+
t = {};
|
|
186
|
+
for (var R in r)
|
|
187
|
+
R !== "key" && (t[R] = r[R]);
|
|
188
|
+
} else t = r;
|
|
189
|
+
return a && Y(
|
|
190
|
+
t,
|
|
191
|
+
typeof e == "function" ? e.displayName || e.name || "Unknown" : e
|
|
192
|
+
), D(
|
|
193
|
+
e,
|
|
194
|
+
a,
|
|
195
|
+
o,
|
|
196
|
+
c,
|
|
197
|
+
C(),
|
|
198
|
+
t,
|
|
199
|
+
E,
|
|
200
|
+
_
|
|
201
|
+
);
|
|
202
|
+
}
|
|
203
|
+
function k(e) {
|
|
204
|
+
typeof e == "object" && e !== null && e.$$typeof === g && e._store && (e._store.validated = 1);
|
|
205
|
+
}
|
|
206
|
+
var i = B, g = Symbol.for("react.transitional.element"), F = Symbol.for("react.portal"), m = Symbol.for("react.fragment"), W = Symbol.for("react.strict_mode"), $ = Symbol.for("react.profiler"), L = Symbol.for("react.consumer"), U = Symbol.for("react.context"), M = Symbol.for("react.forward_ref"), z = Symbol.for("react.suspense"), V = Symbol.for("react.suspense_list"), G = Symbol.for("react.memo"), A = Symbol.for("react.lazy"), X = Symbol.for("react.activity"), q = Symbol.for("react.client.reference"), b = i.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, S = Object.prototype.hasOwnProperty, K = Array.isArray, d = console.createTask ? console.createTask : function() {
|
|
207
|
+
return null;
|
|
208
|
+
};
|
|
209
|
+
i = {
|
|
210
|
+
"react-stack-bottom-frame": function(e) {
|
|
211
|
+
return e();
|
|
212
|
+
}
|
|
213
|
+
};
|
|
214
|
+
var w, P = {}, y = i["react-stack-bottom-frame"].bind(
|
|
215
|
+
i,
|
|
216
|
+
p
|
|
217
|
+
)(), h = d(f(p)), j = {};
|
|
218
|
+
u.Fragment = m, u.jsx = function(e, r, t, n, c) {
|
|
219
|
+
var o = 1e4 > b.recentlyCreatedOwnerStacks++;
|
|
220
|
+
return O(
|
|
221
|
+
e,
|
|
222
|
+
r,
|
|
223
|
+
t,
|
|
224
|
+
!1,
|
|
225
|
+
n,
|
|
226
|
+
c,
|
|
227
|
+
o ? Error("react-stack-top-frame") : y,
|
|
228
|
+
o ? d(f(e)) : h
|
|
229
|
+
);
|
|
230
|
+
}, u.jsxs = function(e, r, t, n, c) {
|
|
231
|
+
var o = 1e4 > b.recentlyCreatedOwnerStacks++;
|
|
232
|
+
return O(
|
|
233
|
+
e,
|
|
234
|
+
r,
|
|
235
|
+
t,
|
|
236
|
+
!0,
|
|
237
|
+
n,
|
|
238
|
+
c,
|
|
239
|
+
o ? Error("react-stack-top-frame") : y,
|
|
240
|
+
o ? d(f(e)) : h
|
|
241
|
+
);
|
|
242
|
+
};
|
|
243
|
+
}(), u);
|
|
244
|
+
}
|
|
245
|
+
export {
|
|
246
|
+
Q as __require
|
|
247
|
+
};
|
package/dist/node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.production.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { __exports as e } from "../../../../../../_virtual/react-jsx-runtime.production.js";
|
|
2
|
+
/**
|
|
2
3
|
* @license React
|
|
3
4
|
* react-jsx-runtime.production.js
|
|
4
5
|
*
|
|
@@ -6,4 +7,29 @@
|
|
|
6
7
|
*
|
|
7
8
|
* This source code is licensed under the MIT license found in the
|
|
8
9
|
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/
|
|
10
|
+
*/
|
|
11
|
+
var s;
|
|
12
|
+
function a() {
|
|
13
|
+
if (s) return e;
|
|
14
|
+
s = 1;
|
|
15
|
+
var i = Symbol.for("react.transitional.element"), _ = Symbol.for("react.fragment");
|
|
16
|
+
function o(l, r, t) {
|
|
17
|
+
var u = null;
|
|
18
|
+
if (t !== void 0 && (u = "" + t), r.key !== void 0 && (u = "" + r.key), "key" in r) {
|
|
19
|
+
t = {};
|
|
20
|
+
for (var n in r)
|
|
21
|
+
n !== "key" && (t[n] = r[n]);
|
|
22
|
+
} else t = r;
|
|
23
|
+
return r = t.ref, {
|
|
24
|
+
$$typeof: i,
|
|
25
|
+
type: l,
|
|
26
|
+
key: u,
|
|
27
|
+
ref: r !== void 0 ? r : null,
|
|
28
|
+
props: t
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
return e.Fragment = _, e.jsx = o, e.jsxs = o, e;
|
|
32
|
+
}
|
|
33
|
+
export {
|
|
34
|
+
a as __require
|
|
35
|
+
};
|
|
@@ -1 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
import { __module as e } from "../../../../../_virtual/jsx-runtime2.js";
|
|
2
|
+
import { __require as t } from "./cjs/react-jsx-runtime.production.js";
|
|
3
|
+
import { __require as i } from "./cjs/react-jsx-runtime.development.js";
|
|
4
|
+
var r;
|
|
5
|
+
function m() {
|
|
6
|
+
return r ? e.exports : (r = 1, process.env.NODE_ENV === "production" ? e.exports = t() : e.exports = i(), e.exports);
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
m as __require
|
|
10
|
+
};
|
package/package.json
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prokodo/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Modern, customizable UI components built with React and TypeScript — developed by prokodo for high-performance web interfaces.",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"main": "dist/index.cjs.js",
|
|
8
7
|
"module": "dist/index.es.js",
|
|
9
8
|
"types": "dist/types/index.d.ts",
|
|
10
9
|
"exports": {
|
|
11
10
|
"./theme.css": "./dist/ui.css",
|
|
12
11
|
".": {
|
|
13
12
|
"types": "./dist/types/index.d.ts",
|
|
14
|
-
"import": "./dist/index.
|
|
15
|
-
"require": "./dist/index.cjs.js"
|
|
13
|
+
"import": "./dist/index.js"
|
|
16
14
|
},
|
|
17
15
|
"./accordion": {
|
|
18
16
|
"import": "./dist/components/accordion/index.js",
|