@audira/carbon-react-native 0.0.1-alpha.9 → 1.0.0-beta.2
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 +3 -217
- package/lib/commonjs/_internal/contexts/button-group/ButtonGroupContext.js +14 -0
- package/lib/commonjs/_internal/contexts/button-group/ButtonGroupContext.js.map +1 -0
- package/lib/commonjs/_internal/contexts/button-group/index.js +17 -0
- package/lib/commonjs/_internal/contexts/button-group/index.js.map +1 -0
- package/lib/commonjs/_internal/contexts/global-config/GlobalConfigContext.js +14 -0
- package/lib/commonjs/_internal/contexts/global-config/GlobalConfigContext.js.map +1 -0
- package/lib/commonjs/_internal/contexts/global-config/index.js +17 -0
- package/lib/commonjs/_internal/contexts/global-config/index.js.map +1 -0
- package/lib/commonjs/_internal/contexts/index.js +39 -0
- package/lib/commonjs/_internal/contexts/index.js.map +1 -0
- package/lib/commonjs/_internal/contexts/modal/ModalContext.js +11 -0
- package/lib/commonjs/_internal/contexts/modal/ModalContext.js.map +1 -0
- package/lib/commonjs/_internal/contexts/modal/index.js +17 -0
- package/lib/commonjs/_internal/contexts/modal/index.js.map +1 -0
- package/lib/commonjs/_internal/globals/breakpoint/index.js +15 -0
- package/lib/commonjs/_internal/globals/breakpoint/index.js.map +1 -0
- package/lib/commonjs/_internal/globals/color-scheme/index.js +16 -0
- package/lib/commonjs/_internal/globals/color-scheme/index.js.map +1 -0
- package/lib/commonjs/_internal/globals/index.js +12 -0
- package/lib/commonjs/_internal/globals/index.js.map +1 -0
- package/lib/commonjs/_internal/helpers/index.js +10 -0
- package/lib/commonjs/_internal/helpers/index.js.map +1 -0
- package/lib/commonjs/_internal/helpers/math/clamp.js +10 -0
- package/lib/commonjs/_internal/helpers/math/clamp.js.map +1 -0
- package/lib/commonjs/_internal/helpers/math/index.js +17 -0
- package/lib/commonjs/_internal/helpers/math/index.js.map +1 -0
- package/lib/commonjs/_internal/providers/breakpoint/BreakpointProvider.js +23 -0
- package/lib/commonjs/_internal/providers/breakpoint/BreakpointProvider.js.map +1 -0
- package/lib/commonjs/_internal/providers/breakpoint/BreakpointProviderProps.js +2 -0
- package/lib/commonjs/_internal/providers/breakpoint/BreakpointProviderProps.js.map +1 -0
- package/lib/commonjs/_internal/providers/breakpoint/index.js +28 -0
- package/lib/commonjs/_internal/providers/breakpoint/index.js.map +1 -0
- package/lib/commonjs/_internal/providers/global-config/GlobalConfigProvider.js +26 -0
- package/lib/commonjs/_internal/providers/global-config/GlobalConfigProvider.js.map +1 -0
- package/lib/commonjs/_internal/providers/global-config/GlobalConfigProviderProps.js +6 -0
- package/lib/commonjs/_internal/providers/global-config/GlobalConfigProviderProps.js.map +1 -0
- package/lib/commonjs/_internal/providers/global-config/index.js +28 -0
- package/lib/commonjs/_internal/providers/global-config/index.js.map +1 -0
- package/lib/commonjs/_internal/providers/index.js +39 -0
- package/lib/commonjs/_internal/providers/index.js.map +1 -0
- package/lib/commonjs/_internal/providers/theme/ThemeProvider.js +26 -0
- package/lib/commonjs/_internal/providers/theme/ThemeProvider.js.map +1 -0
- package/lib/commonjs/_internal/providers/theme/ThemeProviderProps.js +6 -0
- package/lib/commonjs/_internal/providers/theme/ThemeProviderProps.js.map +1 -0
- package/lib/commonjs/_internal/providers/theme/index.js +28 -0
- package/lib/commonjs/_internal/providers/theme/index.js.map +1 -0
- package/lib/commonjs/_internal/style-sheets/common-style-sheet.js +25 -0
- package/lib/commonjs/_internal/style-sheets/common-style-sheet.js.map +1 -0
- package/lib/commonjs/_internal/style-sheets/flex-style-sheet.js +88 -0
- package/lib/commonjs/_internal/style-sheets/flex-style-sheet.js.map +1 -0
- package/lib/commonjs/_internal/style-sheets/index.js +39 -0
- package/lib/commonjs/_internal/style-sheets/index.js.map +1 -0
- package/lib/commonjs/_internal/style-sheets/text-style-sheet.js +66 -0
- package/lib/commonjs/_internal/style-sheets/text-style-sheet.js.map +1 -0
- package/lib/commonjs/carbon-react-native/CarbonReactNative.js +32 -0
- package/lib/commonjs/carbon-react-native/CarbonReactNative.js.map +1 -0
- package/lib/commonjs/carbon-react-native/CarbonReactNativeProps.js +6 -0
- package/lib/commonjs/carbon-react-native/CarbonReactNativeProps.js.map +1 -0
- package/lib/commonjs/carbon-react-native/index.js +17 -0
- package/lib/commonjs/carbon-react-native/index.js.map +1 -0
- package/lib/commonjs/carbon-style-sheet/breakpoint.js +18 -0
- package/lib/commonjs/carbon-style-sheet/breakpoint.js.map +1 -0
- package/lib/commonjs/carbon-style-sheet/color.js +12 -0
- package/lib/commonjs/carbon-style-sheet/color.js.map +1 -0
- package/lib/commonjs/carbon-style-sheet/create.js +112 -0
- package/lib/commonjs/carbon-style-sheet/create.js.map +1 -0
- package/lib/commonjs/carbon-style-sheet/index.js +25 -0
- package/lib/commonjs/carbon-style-sheet/index.js.map +1 -0
- package/lib/commonjs/carbon-style-sheet/use.js +16 -0
- package/lib/commonjs/carbon-style-sheet/use.js.map +1 -0
- package/lib/commonjs/components/accordion/Accordion.js +74 -0
- package/lib/commonjs/components/accordion/Accordion.js.map +1 -0
- package/lib/commonjs/components/accordion/AccordionHeaderProps.js +6 -0
- package/lib/commonjs/components/accordion/AccordionHeaderProps.js.map +1 -0
- package/lib/commonjs/components/accordion/AccordionItemProps.js +6 -0
- package/lib/commonjs/components/accordion/AccordionItemProps.js.map +1 -0
- package/lib/commonjs/components/accordion/AccordionItemRef.js +6 -0
- package/lib/commonjs/components/accordion/AccordionItemRef.js.map +1 -0
- package/lib/commonjs/components/accordion/AccordionProps.js +6 -0
- package/lib/commonjs/components/accordion/AccordionProps.js.map +1 -0
- package/lib/commonjs/components/accordion/AccordionRef.js +6 -0
- package/lib/commonjs/components/accordion/AccordionRef.js.map +1 -0
- package/lib/commonjs/components/accordion/AccordionSize.js +2 -0
- package/lib/commonjs/components/accordion/AccordionSize.js.map +1 -0
- package/lib/commonjs/components/accordion/_Header.js +128 -0
- package/lib/commonjs/components/accordion/_Header.js.map +1 -0
- package/lib/commonjs/components/accordion/_HeaderBorder.js +37 -0
- package/lib/commonjs/components/accordion/_HeaderBorder.js.map +1 -0
- package/lib/commonjs/components/accordion/_Item.js +83 -0
- package/lib/commonjs/components/accordion/_Item.js.map +1 -0
- package/lib/commonjs/components/accordion/_ItemRefBase.js +2 -0
- package/lib/commonjs/components/accordion/_ItemRefBase.js.map +1 -0
- package/lib/commonjs/components/accordion/_chevron/Chevron.js +63 -0
- package/lib/commonjs/components/accordion/_chevron/Chevron.js.map +1 -0
- package/lib/commonjs/components/accordion/_chevron/ChevronProps.js +6 -0
- package/lib/commonjs/components/accordion/_chevron/ChevronProps.js.map +1 -0
- package/lib/commonjs/components/accordion/_chevron/index.js +17 -0
- package/lib/commonjs/components/accordion/_chevron/index.js.map +1 -0
- package/lib/commonjs/components/accordion/_context.js.map +1 -1
- package/lib/commonjs/components/accordion/_motion.js +4 -4
- package/lib/commonjs/components/accordion/_motion.js.map +1 -1
- package/lib/commonjs/components/accordion/_styles.js +3 -3
- package/lib/commonjs/components/accordion/_styles.js.map +1 -1
- package/lib/commonjs/components/accordion/index.js +73 -64
- package/lib/commonjs/components/accordion/index.js.map +1 -1
- package/lib/commonjs/components/button/Size.js +2 -0
- package/lib/commonjs/components/button/Size.js.map +1 -0
- package/lib/commonjs/components/button/base/Base.js +229 -0
- package/lib/commonjs/components/button/base/Base.js.map +1 -0
- package/lib/commonjs/components/button/base/BaseProps.js +6 -0
- package/lib/commonjs/components/button/base/BaseProps.js.map +1 -0
- package/lib/commonjs/components/button/base/BaseRef.js +6 -0
- package/lib/commonjs/components/button/base/BaseRef.js.map +1 -0
- package/lib/commonjs/components/button/base/index.js +29 -143
- package/lib/commonjs/components/button/base/index.js.map +1 -1
- package/lib/commonjs/components/button/base-color/BaseColor.js +171 -0
- package/lib/commonjs/components/button/base-color/BaseColor.js.map +1 -0
- package/lib/commonjs/components/button/base-color/BaseColorProps.js +6 -0
- package/lib/commonjs/components/button/base-color/BaseColorProps.js.map +1 -0
- package/lib/commonjs/components/button/base-color/BaseColorRef.js +6 -0
- package/lib/commonjs/components/button/base-color/BaseColorRef.js.map +1 -0
- package/lib/commonjs/components/button/base-color/BaseColorState.js +2 -0
- package/lib/commonjs/components/button/base-color/BaseColorState.js.map +1 -0
- package/lib/commonjs/components/button/base-color/index.js +42 -147
- package/lib/commonjs/components/button/base-color/index.js.map +1 -1
- package/lib/commonjs/components/button/ghost/Ghost.js +110 -0
- package/lib/commonjs/components/button/ghost/Ghost.js.map +1 -0
- package/lib/commonjs/components/button/ghost/GhostProps.js +6 -0
- package/lib/commonjs/components/button/ghost/GhostProps.js.map +1 -0
- package/lib/commonjs/components/button/ghost/GhostRef.js +6 -0
- package/lib/commonjs/components/button/ghost/GhostRef.js.map +1 -0
- package/lib/commonjs/components/button/ghost/index.js +30 -83
- package/lib/commonjs/components/button/ghost/index.js.map +1 -1
- package/lib/commonjs/components/button/ghost-danger/GhostDanger.js +110 -0
- package/lib/commonjs/components/button/ghost-danger/GhostDanger.js.map +1 -0
- package/lib/commonjs/components/button/ghost-danger/GhostDangerProps.js +6 -0
- package/lib/commonjs/components/button/ghost-danger/GhostDangerProps.js.map +1 -0
- package/lib/commonjs/components/button/ghost-danger/GhostDangerRef.js +6 -0
- package/lib/commonjs/components/button/ghost-danger/GhostDangerRef.js.map +1 -0
- package/lib/commonjs/components/button/ghost-danger/index.js +30 -83
- package/lib/commonjs/components/button/ghost-danger/index.js.map +1 -1
- package/lib/commonjs/components/button/ghost-icon/GhostIcon.js +91 -0
- package/lib/commonjs/components/button/ghost-icon/GhostIcon.js.map +1 -0
- package/lib/commonjs/components/button/ghost-icon/GhostIconProps.js +6 -0
- package/lib/commonjs/components/button/ghost-icon/GhostIconProps.js.map +1 -0
- package/lib/commonjs/components/button/ghost-icon/GhostIconRef.js +6 -0
- package/lib/commonjs/components/button/ghost-icon/GhostIconRef.js.map +1 -0
- package/lib/commonjs/components/button/ghost-icon/index.js +31 -73
- package/lib/commonjs/components/button/ghost-icon/index.js.map +1 -1
- package/lib/commonjs/components/button/index.js +8 -8
- package/lib/commonjs/components/button/index.js.map +1 -1
- package/lib/commonjs/components/button/primary/Primary.js +90 -0
- package/lib/commonjs/components/button/primary/Primary.js.map +1 -0
- package/lib/commonjs/components/button/primary/PrimaryProps.js +6 -0
- package/lib/commonjs/components/button/primary/PrimaryProps.js.map +1 -0
- package/lib/commonjs/components/button/primary/PrimaryRef.js +6 -0
- package/lib/commonjs/components/button/primary/PrimaryRef.js.map +1 -0
- package/lib/commonjs/components/button/primary/index.js +31 -66
- package/lib/commonjs/components/button/primary/index.js.map +1 -1
- package/lib/commonjs/components/button/primary-danger/PrimaryDanger.js +90 -0
- package/lib/commonjs/components/button/primary-danger/PrimaryDanger.js.map +1 -0
- package/lib/commonjs/components/button/primary-danger/PrimaryDangerProps.js +6 -0
- package/lib/commonjs/components/button/primary-danger/PrimaryDangerProps.js.map +1 -0
- package/lib/commonjs/components/button/primary-danger/PrimaryDangerRef.js +6 -0
- package/lib/commonjs/components/button/primary-danger/PrimaryDangerRef.js.map +1 -0
- package/lib/commonjs/components/button/primary-danger/index.js +31 -66
- package/lib/commonjs/components/button/primary-danger/index.js.map +1 -1
- package/lib/commonjs/components/button/secondary/Secondary.js +90 -0
- package/lib/commonjs/components/button/secondary/Secondary.js.map +1 -0
- package/lib/commonjs/components/button/secondary/SecondaryProps.js +6 -0
- package/lib/commonjs/components/button/secondary/SecondaryProps.js.map +1 -0
- package/lib/commonjs/components/button/secondary/SecondaryRef.js +6 -0
- package/lib/commonjs/components/button/secondary/SecondaryRef.js.map +1 -0
- package/lib/commonjs/components/button/secondary/index.js +31 -66
- package/lib/commonjs/components/button/secondary/index.js.map +1 -1
- package/lib/commonjs/components/button/tertiary/Tertiary.js +105 -0
- package/lib/commonjs/components/button/tertiary/Tertiary.js.map +1 -0
- package/lib/commonjs/components/button/tertiary/TertiaryProps.js +6 -0
- package/lib/commonjs/components/button/tertiary/TertiaryProps.js.map +1 -0
- package/lib/commonjs/components/button/tertiary/TertiaryRef.js +6 -0
- package/lib/commonjs/components/button/tertiary/TertiaryRef.js.map +1 -0
- package/lib/commonjs/components/button/tertiary/index.js +30 -80
- package/lib/commonjs/components/button/tertiary/index.js.map +1 -1
- package/lib/commonjs/components/button/tertiary-danger/TertiaryDanger.js +105 -0
- package/lib/commonjs/components/button/tertiary-danger/TertiaryDanger.js.map +1 -0
- package/lib/commonjs/components/button/tertiary-danger/TertiaryDangerProps.js +6 -0
- package/lib/commonjs/components/button/tertiary-danger/TertiaryDangerProps.js.map +1 -0
- package/lib/commonjs/components/button/tertiary-danger/TertiaryDangerRef.js +6 -0
- package/lib/commonjs/components/button/tertiary-danger/TertiaryDangerRef.js.map +1 -0
- package/lib/commonjs/components/button/tertiary-danger/index.js +30 -80
- package/lib/commonjs/components/button/tertiary-danger/index.js.map +1 -1
- package/lib/commonjs/components/button-group/ButtonGroup.js +79 -0
- package/lib/commonjs/components/button-group/ButtonGroup.js.map +1 -0
- package/lib/commonjs/components/button-group/ButtonGroupProps.js +6 -0
- package/lib/commonjs/components/button-group/ButtonGroupProps.js.map +1 -0
- package/lib/commonjs/components/button-group/ButtonGroupRef.js +6 -0
- package/lib/commonjs/components/button-group/ButtonGroupRef.js.map +1 -0
- package/lib/commonjs/components/button-group/index.js +17 -0
- package/lib/commonjs/components/button-group/index.js.map +1 -0
- package/lib/commonjs/components/checkbox/Checkbox.js +112 -0
- package/lib/commonjs/components/checkbox/Checkbox.js.map +1 -0
- package/lib/commonjs/components/checkbox/CheckboxProps.js +6 -0
- package/lib/commonjs/components/checkbox/CheckboxProps.js.map +1 -0
- package/lib/commonjs/components/checkbox/CheckboxRef.js +6 -0
- package/lib/commonjs/components/checkbox/CheckboxRef.js.map +1 -0
- package/lib/commonjs/components/checkbox/_RefBase.js +6 -0
- package/lib/commonjs/components/checkbox/_RefBase.js.map +1 -0
- package/lib/commonjs/components/checkbox/index.js +29 -107
- package/lib/commonjs/components/checkbox/index.js.map +1 -1
- package/lib/commonjs/components/checkbox-group/CheckboxGroup.js +128 -0
- package/lib/commonjs/components/checkbox-group/CheckboxGroup.js.map +1 -0
- package/lib/commonjs/components/checkbox-group/CheckboxGroupHelperTextMode.js +2 -0
- package/lib/commonjs/components/checkbox-group/CheckboxGroupHelperTextMode.js.map +1 -0
- package/lib/commonjs/components/checkbox-group/CheckboxGroupProps.js +6 -0
- package/lib/commonjs/components/checkbox-group/CheckboxGroupProps.js.map +1 -0
- package/lib/commonjs/components/checkbox-group/CheckboxGroupRef.js +6 -0
- package/lib/commonjs/components/checkbox-group/CheckboxGroupRef.js.map +1 -0
- package/lib/commonjs/components/checkbox-group/index.js +38 -86
- package/lib/commonjs/components/checkbox-group/index.js.map +1 -1
- package/lib/commonjs/components/checkbox-input/CheckboxInput.js +200 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInput.js.map +1 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInputInteractiveState.js +2 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInputInteractiveState.js.map +1 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInputProps.js +6 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInputProps.js.map +1 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInputRef.js +6 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInputRef.js.map +1 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInputValue.js +2 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInputValue.js.map +1 -0
- package/lib/commonjs/components/checkbox-input/_RefBase.js +6 -0
- package/lib/commonjs/components/checkbox-input/_RefBase.js.map +1 -0
- package/lib/commonjs/components/checkbox-input/index.js +48 -195
- package/lib/commonjs/components/checkbox-input/index.js.map +1 -1
- package/lib/commonjs/components/collapsible/Collapsible.js +152 -0
- package/lib/commonjs/components/collapsible/Collapsible.js.map +1 -0
- package/lib/commonjs/components/collapsible/CollapsibleProps.js +6 -0
- package/lib/commonjs/components/collapsible/CollapsibleProps.js.map +1 -0
- package/lib/commonjs/components/collapsible/CollapsibleRef.js +6 -0
- package/lib/commonjs/components/collapsible/CollapsibleRef.js.map +1 -0
- package/lib/commonjs/components/collapsible/_RefBase.js +2 -0
- package/lib/commonjs/components/collapsible/_RefBase.js.map +1 -0
- package/lib/commonjs/components/collapsible/index.js +29 -124
- package/lib/commonjs/components/collapsible/index.js.map +1 -1
- package/lib/commonjs/components/form-helper-text/FormHelperText.js +49 -0
- package/lib/commonjs/components/form-helper-text/FormHelperText.js.map +1 -0
- package/lib/commonjs/components/form-helper-text/FormHelperTextProps.js +6 -0
- package/lib/commonjs/components/form-helper-text/FormHelperTextProps.js.map +1 -0
- package/lib/commonjs/components/form-helper-text/FormHelperTextRef.js +6 -0
- package/lib/commonjs/components/form-helper-text/FormHelperTextRef.js.map +1 -0
- package/lib/commonjs/components/form-helper-text/index.js +31 -33
- package/lib/commonjs/components/form-helper-text/index.js.map +1 -1
- package/lib/commonjs/components/form-label/FormLabel.js +37 -0
- package/lib/commonjs/components/form-label/FormLabel.js.map +1 -0
- package/lib/commonjs/components/form-label/FormLabelProps.js +6 -0
- package/lib/commonjs/components/form-label/FormLabelProps.js.map +1 -0
- package/lib/commonjs/components/form-label/FormLabelRef.js +6 -0
- package/lib/commonjs/components/form-label/FormLabelRef.js.map +1 -0
- package/lib/commonjs/components/form-label/index.js +31 -27
- package/lib/commonjs/components/form-label/index.js.map +1 -1
- package/lib/commonjs/components/icon/Icon.js +41 -0
- package/lib/commonjs/components/icon/Icon.js.map +1 -0
- package/lib/commonjs/components/icon/IconProps.js +6 -0
- package/lib/commonjs/components/icon/IconProps.js.map +1 -0
- package/lib/commonjs/components/icon/index.js +21 -35
- package/lib/commonjs/components/icon/index.js.map +1 -1
- package/lib/commonjs/components/index.js +157 -14
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/components/inline-loading/InlineLoading.js +69 -0
- package/lib/commonjs/components/inline-loading/InlineLoading.js.map +1 -0
- package/lib/commonjs/components/inline-loading/InlineLoadingProps.js +6 -0
- package/lib/commonjs/components/inline-loading/InlineLoadingProps.js.map +1 -0
- package/lib/commonjs/components/inline-loading/InlineLoadingRef.js +6 -0
- package/lib/commonjs/components/inline-loading/InlineLoadingRef.js.map +1 -0
- package/lib/commonjs/components/inline-loading/InlineLoadingState.js +2 -0
- package/lib/commonjs/components/inline-loading/InlineLoadingState.js.map +1 -0
- package/lib/commonjs/components/inline-loading/index.js +17 -0
- package/lib/commonjs/components/inline-loading/index.js.map +1 -0
- package/lib/commonjs/components/layer/Layer.js +43 -0
- package/lib/commonjs/components/layer/Layer.js.map +1 -0
- package/lib/commonjs/components/layer/LayerContext.js +9 -0
- package/lib/commonjs/components/layer/LayerContext.js.map +1 -0
- package/lib/commonjs/components/layer/LayerProps.js +6 -0
- package/lib/commonjs/components/layer/LayerProps.js.map +1 -0
- package/lib/commonjs/components/layer/LayerRef.js +6 -0
- package/lib/commonjs/components/layer/LayerRef.js.map +1 -0
- package/lib/commonjs/components/layer/index.js +28 -0
- package/lib/commonjs/components/layer/index.js.map +1 -0
- package/lib/commonjs/components/loading/Loading.js +59 -0
- package/lib/commonjs/components/loading/Loading.js.map +1 -0
- package/lib/commonjs/components/loading/LoadingProps.js +6 -0
- package/lib/commonjs/components/loading/LoadingProps.js.map +1 -0
- package/lib/commonjs/components/loading/LoadingRef.js +6 -0
- package/lib/commonjs/components/loading/LoadingRef.js.map +1 -0
- package/lib/commonjs/components/loading/LoadingType.js +2 -0
- package/lib/commonjs/components/loading/LoadingType.js.map +1 -0
- package/lib/commonjs/components/loading/_circular-progress/CircularProgress.js +78 -0
- package/lib/commonjs/components/loading/_circular-progress/CircularProgress.js.map +1 -0
- package/lib/commonjs/components/loading/_circular-progress/CircularProgressProps.js +6 -0
- package/lib/commonjs/components/loading/_circular-progress/CircularProgressProps.js.map +1 -0
- package/lib/commonjs/components/loading/_circular-progress/index.js +17 -0
- package/lib/commonjs/components/loading/_circular-progress/index.js.map +1 -0
- package/lib/commonjs/components/loading/_map-circle-background-color.js +22 -0
- package/lib/commonjs/components/loading/_map-circle-background-color.js.map +1 -0
- package/lib/commonjs/components/loading/_map-circle-stroke-color.js +12 -0
- package/lib/commonjs/components/loading/_map-circle-stroke-color.js.map +1 -0
- package/lib/commonjs/components/loading/index.js +17 -0
- package/lib/commonjs/components/loading/index.js.map +1 -0
- package/lib/commonjs/components/modal/Modal.js +281 -0
- package/lib/commonjs/components/modal/Modal.js.map +1 -0
- package/lib/commonjs/components/modal/ModalProps.js +6 -0
- package/lib/commonjs/components/modal/ModalProps.js.map +1 -0
- package/lib/commonjs/components/modal/ModalRef.js +6 -0
- package/lib/commonjs/components/modal/ModalRef.js.map +1 -0
- package/lib/commonjs/components/modal/ModalSize.js +2 -0
- package/lib/commonjs/components/modal/ModalSize.js.map +1 -0
- package/lib/commonjs/components/modal/index.js +17 -0
- package/lib/commonjs/components/modal/index.js.map +1 -0
- package/lib/commonjs/components/modal-content/ModalContent.js +124 -0
- package/lib/commonjs/components/modal-content/ModalContent.js.map +1 -0
- package/lib/commonjs/components/modal-content/ModalContentProps.js +6 -0
- package/lib/commonjs/components/modal-content/ModalContentProps.js.map +1 -0
- package/lib/commonjs/components/modal-content/ModalContentRef.js +6 -0
- package/lib/commonjs/components/modal-content/ModalContentRef.js.map +1 -0
- package/lib/commonjs/components/modal-content/index.js +17 -0
- package/lib/commonjs/components/modal-content/index.js.map +1 -0
- package/lib/commonjs/components/notification/NotificationColor.js +2 -0
- package/lib/commonjs/components/notification/NotificationColor.js.map +1 -0
- package/lib/commonjs/components/notification/_VariantContextProvider.js +23 -0
- package/lib/commonjs/components/notification/_VariantContextProvider.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/_base/UseBaseData.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/_base/UseBaseData.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/_base/UseBaseProps.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/_base/UseBaseProps.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/_base/index.js +39 -0
- package/lib/commonjs/components/notification/_status-hooks/_base/index.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/_base/useBase.js +48 -0
- package/lib/commonjs/components/notification/_status-hooks/_base/useBase.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/error/UseErrorData.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/error/UseErrorData.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/error/UseErrorProps.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/error/UseErrorProps.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/error/index.js +31 -39
- package/lib/commonjs/components/notification/_status-hooks/error/index.js.map +1 -1
- package/lib/commonjs/components/notification/_status-hooks/error/useError.js +83 -0
- package/lib/commonjs/components/notification/_status-hooks/error/useError.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/informational/UseInformationalData.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/informational/UseInformationalData.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/informational/UseInformationalProps.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/informational/UseInformationalProps.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/informational/index.js +31 -39
- package/lib/commonjs/components/notification/_status-hooks/informational/index.js.map +1 -1
- package/lib/commonjs/components/notification/_status-hooks/informational/useInformational.js +83 -0
- package/lib/commonjs/components/notification/_status-hooks/informational/useInformational.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/success/UseSuccessData.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/success/UseSuccessData.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/success/UseSuccessProps.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/success/UseSuccessProps.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/success/index.js +31 -39
- package/lib/commonjs/components/notification/_status-hooks/success/index.js.map +1 -1
- package/lib/commonjs/components/notification/_status-hooks/success/useSuccess.js +83 -0
- package/lib/commonjs/components/notification/_status-hooks/success/useSuccess.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/warning/UseWarningData.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/warning/UseWarningData.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/warning/UseWarningProps.js +6 -0
- package/lib/commonjs/components/notification/_status-hooks/warning/UseWarningProps.js.map +1 -0
- package/lib/commonjs/components/notification/_status-hooks/warning/index.js +31 -39
- package/lib/commonjs/components/notification/_status-hooks/warning/index.js.map +1 -1
- package/lib/commonjs/components/notification/_status-hooks/warning/useWarning.js +83 -0
- package/lib/commonjs/components/notification/_status-hooks/warning/useWarning.js.map +1 -0
- package/lib/commonjs/components/notification/_variant-context.js +0 -15
- package/lib/commonjs/components/notification/_variant-context.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/_ButtonGhost.js +45 -0
- package/lib/commonjs/components/notification/_variants/_ButtonGhost.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/_ButtonTertiary.js +45 -0
- package/lib/commonjs/components/notification/_variants/_ButtonTertiary.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/actionable/ActionableVariant.js +41 -0
- package/lib/commonjs/components/notification/_variants/actionable/ActionableVariant.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/actionable/ActionableVariantProps.js +6 -0
- package/lib/commonjs/components/notification/_variants/actionable/ActionableVariantProps.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/actionable/ActionableVariantRef.js +6 -0
- package/lib/commonjs/components/notification/_variants/actionable/ActionableVariantRef.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/actionable/index.js +31 -33
- package/lib/commonjs/components/notification/_variants/actionable/index.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariant.js +41 -0
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariant.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.js +6 -0
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.js +6 -0
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/actionable-inline/index.js +31 -33
- package/lib/commonjs/components/notification/_variants/actionable-inline/index.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/callout/CalloutVariant.js +35 -0
- package/lib/commonjs/components/notification/_variants/callout/CalloutVariant.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/callout/CalloutVariantProps.js +6 -0
- package/lib/commonjs/components/notification/_variants/callout/CalloutVariantProps.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/callout/CalloutVariantRef.js +6 -0
- package/lib/commonjs/components/notification/_variants/callout/CalloutVariantRef.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/callout/index.js +31 -27
- package/lib/commonjs/components/notification/_variants/callout/index.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariant.js +35 -0
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariant.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantProps.js +6 -0
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantProps.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantRef.js +6 -0
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantRef.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/callout-inline/index.js +31 -27
- package/lib/commonjs/components/notification/_variants/callout-inline/index.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/toast/ToastVariant.js +63 -0
- package/lib/commonjs/components/notification/_variants/toast/ToastVariant.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/toast/ToastVariantProps.js +6 -0
- package/lib/commonjs/components/notification/_variants/toast/ToastVariantProps.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/toast/ToastVariantRef.js +6 -0
- package/lib/commonjs/components/notification/_variants/toast/ToastVariantRef.js.map +1 -0
- package/lib/commonjs/components/notification/_variants/toast/index.js +29 -53
- package/lib/commonjs/components/notification/_variants/toast/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable/error/Error.js +49 -0
- package/lib/commonjs/components/notification/actionable/error/Error.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/error/ErrorProps.js +6 -0
- package/lib/commonjs/components/notification/actionable/error/ErrorProps.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/error/ErrorRef.js +6 -0
- package/lib/commonjs/components/notification/actionable/error/ErrorRef.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/error/index.js +30 -40
- package/lib/commonjs/components/notification/actionable/error/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable/informational/Informational.js +49 -0
- package/lib/commonjs/components/notification/actionable/informational/Informational.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/informational/InformationalProps.js +6 -0
- package/lib/commonjs/components/notification/actionable/informational/InformationalProps.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/informational/InformationalRef.js +6 -0
- package/lib/commonjs/components/notification/actionable/informational/InformationalRef.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/informational/index.js +30 -40
- package/lib/commonjs/components/notification/actionable/informational/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable/success/Success.js +49 -0
- package/lib/commonjs/components/notification/actionable/success/Success.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/success/SuccessProps.js +6 -0
- package/lib/commonjs/components/notification/actionable/success/SuccessProps.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/success/SuccessRef.js +6 -0
- package/lib/commonjs/components/notification/actionable/success/SuccessRef.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/success/index.js +30 -40
- package/lib/commonjs/components/notification/actionable/success/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable/warning/Warning.js +49 -0
- package/lib/commonjs/components/notification/actionable/warning/Warning.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/warning/WarningProps.js +6 -0
- package/lib/commonjs/components/notification/actionable/warning/WarningProps.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/warning/WarningRef.js +6 -0
- package/lib/commonjs/components/notification/actionable/warning/WarningRef.js.map +1 -0
- package/lib/commonjs/components/notification/actionable/warning/index.js +30 -40
- package/lib/commonjs/components/notification/actionable/warning/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable-inline/error/Error.js +48 -0
- package/lib/commonjs/components/notification/actionable-inline/error/Error.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/error/ErrorProps.js +6 -0
- package/lib/commonjs/components/notification/actionable-inline/error/ErrorProps.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/error/ErrorRef.js +6 -0
- package/lib/commonjs/components/notification/actionable-inline/error/ErrorRef.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/error/index.js +30 -39
- package/lib/commonjs/components/notification/actionable-inline/error/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable-inline/informational/Informational.js +48 -0
- package/lib/commonjs/components/notification/actionable-inline/informational/Informational.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/informational/InformationalProps.js +6 -0
- package/lib/commonjs/components/notification/actionable-inline/informational/InformationalProps.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/informational/InformationalRef.js +6 -0
- package/lib/commonjs/components/notification/actionable-inline/informational/InformationalRef.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/informational/index.js +30 -39
- package/lib/commonjs/components/notification/actionable-inline/informational/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable-inline/success/Success.js +48 -0
- package/lib/commonjs/components/notification/actionable-inline/success/Success.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/success/SuccessProps.js +6 -0
- package/lib/commonjs/components/notification/actionable-inline/success/SuccessProps.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/success/SuccessRef.js +6 -0
- package/lib/commonjs/components/notification/actionable-inline/success/SuccessRef.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/success/index.js +30 -39
- package/lib/commonjs/components/notification/actionable-inline/success/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable-inline/warning/Warning.js +48 -0
- package/lib/commonjs/components/notification/actionable-inline/warning/Warning.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/warning/WarningProps.js +6 -0
- package/lib/commonjs/components/notification/actionable-inline/warning/WarningProps.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/warning/WarningRef.js +6 -0
- package/lib/commonjs/components/notification/actionable-inline/warning/WarningRef.js.map +1 -0
- package/lib/commonjs/components/notification/actionable-inline/warning/index.js +30 -39
- package/lib/commonjs/components/notification/actionable-inline/warning/index.js.map +1 -1
- package/lib/commonjs/components/notification/base/Base.js +172 -0
- package/lib/commonjs/components/notification/base/Base.js.map +1 -0
- package/lib/commonjs/components/notification/base/BaseProps.js +6 -0
- package/lib/commonjs/components/notification/base/BaseProps.js.map +1 -0
- package/lib/commonjs/components/notification/base/BaseRef.js +6 -0
- package/lib/commonjs/components/notification/base/BaseRef.js.map +1 -0
- package/lib/commonjs/components/notification/base/index.js +29 -160
- package/lib/commonjs/components/notification/base/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout/error/Error.js +49 -0
- package/lib/commonjs/components/notification/callout/error/Error.js.map +1 -0
- package/lib/commonjs/components/notification/callout/error/ErrorProps.js +6 -0
- package/lib/commonjs/components/notification/callout/error/ErrorProps.js.map +1 -0
- package/lib/commonjs/components/notification/callout/error/ErrorRef.js +6 -0
- package/lib/commonjs/components/notification/callout/error/ErrorRef.js.map +1 -0
- package/lib/commonjs/components/notification/callout/error/index.js +30 -40
- package/lib/commonjs/components/notification/callout/error/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout/informational/Informational.js +49 -0
- package/lib/commonjs/components/notification/callout/informational/Informational.js.map +1 -0
- package/lib/commonjs/components/notification/callout/informational/InformationalProps.js +6 -0
- package/lib/commonjs/components/notification/callout/informational/InformationalProps.js.map +1 -0
- package/lib/commonjs/components/notification/callout/informational/InformationalRef.js +6 -0
- package/lib/commonjs/components/notification/callout/informational/InformationalRef.js.map +1 -0
- package/lib/commonjs/components/notification/callout/informational/index.js +30 -40
- package/lib/commonjs/components/notification/callout/informational/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout/success/Success.js +49 -0
- package/lib/commonjs/components/notification/callout/success/Success.js.map +1 -0
- package/lib/commonjs/components/notification/callout/success/SuccessProps.js +6 -0
- package/lib/commonjs/components/notification/callout/success/SuccessProps.js.map +1 -0
- package/lib/commonjs/components/notification/callout/success/SuccessRef.js +6 -0
- package/lib/commonjs/components/notification/callout/success/SuccessRef.js.map +1 -0
- package/lib/commonjs/components/notification/callout/success/index.js +30 -40
- package/lib/commonjs/components/notification/callout/success/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout/warning/Warning.js +49 -0
- package/lib/commonjs/components/notification/callout/warning/Warning.js.map +1 -0
- package/lib/commonjs/components/notification/callout/warning/WarningProps.js +6 -0
- package/lib/commonjs/components/notification/callout/warning/WarningProps.js.map +1 -0
- package/lib/commonjs/components/notification/callout/warning/WarningRef.js +6 -0
- package/lib/commonjs/components/notification/callout/warning/WarningRef.js.map +1 -0
- package/lib/commonjs/components/notification/callout/warning/index.js +30 -40
- package/lib/commonjs/components/notification/callout/warning/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout-inline/error/Error.js +48 -0
- package/lib/commonjs/components/notification/callout-inline/error/Error.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/error/ErrorProps.js +6 -0
- package/lib/commonjs/components/notification/callout-inline/error/ErrorProps.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/error/ErrorRef.js +6 -0
- package/lib/commonjs/components/notification/callout-inline/error/ErrorRef.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/error/index.js +30 -39
- package/lib/commonjs/components/notification/callout-inline/error/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout-inline/informational/Informational.js +48 -0
- package/lib/commonjs/components/notification/callout-inline/informational/Informational.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/informational/InformationalProps.js +6 -0
- package/lib/commonjs/components/notification/callout-inline/informational/InformationalProps.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/informational/InformationalRef.js +6 -0
- package/lib/commonjs/components/notification/callout-inline/informational/InformationalRef.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/informational/index.js +30 -39
- package/lib/commonjs/components/notification/callout-inline/informational/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout-inline/success/Success.js +48 -0
- package/lib/commonjs/components/notification/callout-inline/success/Success.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/success/SuccessProps.js +6 -0
- package/lib/commonjs/components/notification/callout-inline/success/SuccessProps.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/success/SuccessRef.js +6 -0
- package/lib/commonjs/components/notification/callout-inline/success/SuccessRef.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/success/index.js +30 -39
- package/lib/commonjs/components/notification/callout-inline/success/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout-inline/warning/Warning.js +48 -0
- package/lib/commonjs/components/notification/callout-inline/warning/Warning.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/warning/WarningProps.js +6 -0
- package/lib/commonjs/components/notification/callout-inline/warning/WarningProps.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/warning/WarningRef.js +6 -0
- package/lib/commonjs/components/notification/callout-inline/warning/WarningRef.js.map +1 -0
- package/lib/commonjs/components/notification/callout-inline/warning/index.js +30 -39
- package/lib/commonjs/components/notification/callout-inline/warning/index.js.map +1 -1
- package/lib/commonjs/components/notification/index.js +13 -2
- package/lib/commonjs/components/notification/index.js.map +1 -1
- package/lib/commonjs/components/notification/subtitle/Subtitle.js +34 -0
- package/lib/commonjs/components/notification/subtitle/Subtitle.js.map +1 -0
- package/lib/commonjs/components/notification/subtitle/SubtitleProps.js +6 -0
- package/lib/commonjs/components/notification/subtitle/SubtitleProps.js.map +1 -0
- package/lib/commonjs/components/notification/subtitle/SubtitleRef.js +6 -0
- package/lib/commonjs/components/notification/subtitle/SubtitleRef.js.map +1 -0
- package/lib/commonjs/components/notification/subtitle/index.js +32 -23
- package/lib/commonjs/components/notification/subtitle/index.js.map +1 -1
- package/lib/commonjs/components/notification/subtitle-link/SubtitleLink.js +33 -0
- package/lib/commonjs/components/notification/subtitle-link/SubtitleLink.js.map +1 -0
- package/lib/commonjs/components/notification/subtitle-link/SubtitleLinkProps.js +6 -0
- package/lib/commonjs/components/notification/subtitle-link/SubtitleLinkProps.js.map +1 -0
- package/lib/commonjs/components/notification/subtitle-link/SubtitleLinkRef.js +6 -0
- package/lib/commonjs/components/notification/subtitle-link/SubtitleLinkRef.js.map +1 -0
- package/lib/commonjs/components/notification/subtitle-link/index.js +32 -22
- package/lib/commonjs/components/notification/subtitle-link/index.js.map +1 -1
- package/lib/commonjs/components/notification/toast/error/Error.js +49 -0
- package/lib/commonjs/components/notification/toast/error/Error.js.map +1 -0
- package/lib/commonjs/components/notification/toast/error/ErrorProps.js +6 -0
- package/lib/commonjs/components/notification/toast/error/ErrorProps.js.map +1 -0
- package/lib/commonjs/components/notification/toast/error/ErrorRef.js +6 -0
- package/lib/commonjs/components/notification/toast/error/ErrorRef.js.map +1 -0
- package/lib/commonjs/components/notification/toast/error/index.js +30 -40
- package/lib/commonjs/components/notification/toast/error/index.js.map +1 -1
- package/lib/commonjs/components/notification/toast/informational/Informational.js +49 -0
- package/lib/commonjs/components/notification/toast/informational/Informational.js.map +1 -0
- package/lib/commonjs/components/notification/toast/informational/InformationalProps.js +6 -0
- package/lib/commonjs/components/notification/toast/informational/InformationalProps.js.map +1 -0
- package/lib/commonjs/components/notification/toast/informational/InformationalRef.js +6 -0
- package/lib/commonjs/components/notification/toast/informational/InformationalRef.js.map +1 -0
- package/lib/commonjs/components/notification/toast/informational/index.js +30 -40
- package/lib/commonjs/components/notification/toast/informational/index.js.map +1 -1
- package/lib/commonjs/components/notification/toast/success/Success.js +49 -0
- package/lib/commonjs/components/notification/toast/success/Success.js.map +1 -0
- package/lib/commonjs/components/notification/toast/success/SuccessProps.js +6 -0
- package/lib/commonjs/components/notification/toast/success/SuccessProps.js.map +1 -0
- package/lib/commonjs/components/notification/toast/success/SuccessRef.js +6 -0
- package/lib/commonjs/components/notification/toast/success/SuccessRef.js.map +1 -0
- package/lib/commonjs/components/notification/toast/success/index.js +30 -40
- package/lib/commonjs/components/notification/toast/success/index.js.map +1 -1
- package/lib/commonjs/components/notification/toast/warning/Warning.js +49 -0
- package/lib/commonjs/components/notification/toast/warning/Warning.js.map +1 -0
- package/lib/commonjs/components/notification/toast/warning/WarningProps.js +6 -0
- package/lib/commonjs/components/notification/toast/warning/WarningProps.js.map +1 -0
- package/lib/commonjs/components/notification/toast/warning/WarningRef.js +6 -0
- package/lib/commonjs/components/notification/toast/warning/WarningRef.js.map +1 -0
- package/lib/commonjs/components/notification/toast/warning/index.js +30 -40
- package/lib/commonjs/components/notification/toast/warning/index.js.map +1 -1
- package/lib/commonjs/components/radio-button/RadioButton.js +112 -0
- package/lib/commonjs/components/radio-button/RadioButton.js.map +1 -0
- package/lib/commonjs/components/radio-button/RadioButtonProps.js +6 -0
- package/lib/commonjs/components/radio-button/RadioButtonProps.js.map +1 -0
- package/lib/commonjs/components/radio-button/RadioButtonRef.js +6 -0
- package/lib/commonjs/components/radio-button/RadioButtonRef.js.map +1 -0
- package/lib/commonjs/components/radio-button/_RefBase.js +6 -0
- package/lib/commonjs/components/radio-button/_RefBase.js.map +1 -0
- package/lib/commonjs/components/radio-button/index.js +30 -97
- package/lib/commonjs/components/radio-button/index.js.map +1 -1
- package/lib/commonjs/components/radio-button-group/RadioButtonGroup.js +139 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroup.js.map +1 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupHelperTextMode.js +2 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupHelperTextMode.js.map +1 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupItemProps.js +6 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupItemProps.js.map +1 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupItemRef.js +6 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupItemRef.js.map +1 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupProps.js +6 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupProps.js.map +1 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupRef.js +6 -0
- package/lib/commonjs/components/radio-button-group/RadioButtonGroupRef.js.map +1 -0
- package/lib/commonjs/components/radio-button-group/_Item.js +56 -0
- package/lib/commonjs/components/radio-button-group/_Item.js.map +1 -0
- package/lib/commonjs/components/radio-button-group/_RefBase.js +6 -0
- package/lib/commonjs/components/radio-button-group/_RefBase.js.map +1 -0
- package/lib/commonjs/components/radio-button-group/_item-context.js +2 -2
- package/lib/commonjs/components/radio-button-group/_item-context.js.map +1 -1
- package/lib/commonjs/components/radio-button-group/index.js +57 -126
- package/lib/commonjs/components/radio-button-group/index.js.map +1 -1
- package/lib/commonjs/components/radio-button-input/RadioButtonInput.js +168 -0
- package/lib/commonjs/components/radio-button-input/RadioButtonInput.js.map +1 -0
- package/lib/commonjs/components/radio-button-input/RadioButtonInputInteractiveState.js +2 -0
- package/lib/commonjs/components/radio-button-input/RadioButtonInputInteractiveState.js.map +1 -0
- package/lib/commonjs/components/radio-button-input/RadioButtonInputProps.js +6 -0
- package/lib/commonjs/components/radio-button-input/RadioButtonInputProps.js.map +1 -0
- package/lib/commonjs/components/radio-button-input/RadioButtonInputRef.js +6 -0
- package/lib/commonjs/components/radio-button-input/RadioButtonInputRef.js.map +1 -0
- package/lib/commonjs/components/radio-button-input/_RefBase.js +2 -0
- package/lib/commonjs/components/radio-button-input/_RefBase.js.map +1 -0
- package/lib/commonjs/components/radio-button-input/index.js +39 -189
- package/lib/commonjs/components/radio-button-input/index.js.map +1 -1
- package/lib/commonjs/components/switch/Switch.js +287 -0
- package/lib/commonjs/components/switch/Switch.js.map +1 -0
- package/lib/commonjs/components/switch/SwitchProps.js +6 -0
- package/lib/commonjs/components/switch/SwitchProps.js.map +1 -0
- package/lib/commonjs/components/switch/SwitchRef.js +6 -0
- package/lib/commonjs/components/switch/SwitchRef.js.map +1 -0
- package/lib/commonjs/components/switch/SwitchSize.js +2 -0
- package/lib/commonjs/components/switch/SwitchSize.js.map +1 -0
- package/lib/commonjs/components/switch/SwitchState.js +2 -0
- package/lib/commonjs/components/switch/SwitchState.js.map +1 -0
- package/lib/commonjs/components/switch/_RefBase.js +2 -0
- package/lib/commonjs/components/switch/_RefBase.js.map +1 -0
- package/lib/commonjs/components/switch/index.js +48 -232
- package/lib/commonjs/components/switch/index.js.map +1 -1
- package/lib/commonjs/components/text/Text.js +69 -0
- package/lib/commonjs/components/text/Text.js.map +1 -0
- package/lib/commonjs/components/text/TextProps.js +6 -0
- package/lib/commonjs/components/text/TextProps.js.map +1 -0
- package/lib/commonjs/components/text/TextRef.js +6 -0
- package/lib/commonjs/components/text/TextRef.js.map +1 -0
- package/lib/commonjs/components/text/index.js +31 -62
- package/lib/commonjs/components/text/index.js.map +1 -1
- package/lib/commonjs/components/text-area/TextArea.js +207 -0
- package/lib/commonjs/components/text-area/TextArea.js.map +1 -0
- package/lib/commonjs/components/text-area/TextAreaProps.js +6 -0
- package/lib/commonjs/components/text-area/TextAreaProps.js.map +1 -0
- package/lib/commonjs/components/text-area/TextAreaRef.js +6 -0
- package/lib/commonjs/components/text-area/TextAreaRef.js.map +1 -0
- package/lib/commonjs/components/text-area/_TextAreaRefBase.js +6 -0
- package/lib/commonjs/components/text-area/_TextAreaRefBase.js.map +1 -0
- package/lib/commonjs/components/text-area/index.js +17 -0
- package/lib/commonjs/components/text-area/index.js.map +1 -0
- package/lib/commonjs/components/text-area-field/TextAreaField.js +43 -0
- package/lib/commonjs/components/text-area-field/TextAreaField.js.map +1 -0
- package/lib/commonjs/components/text-area-field/TextAreaFieldInteractiveState.js +6 -0
- package/lib/commonjs/components/text-area-field/TextAreaFieldInteractiveState.js.map +1 -0
- package/lib/commonjs/components/text-area-field/TextAreaFieldProps.js +6 -0
- package/lib/commonjs/components/text-area-field/TextAreaFieldProps.js.map +1 -0
- package/lib/commonjs/components/text-area-field/TextAreaFieldRef.js +6 -0
- package/lib/commonjs/components/text-area-field/TextAreaFieldRef.js.map +1 -0
- package/lib/commonjs/components/text-area-field/index.js +17 -0
- package/lib/commonjs/components/text-area-field/index.js.map +1 -0
- package/lib/commonjs/components/text-area-fluid/TextAreaFluid.js +85 -0
- package/lib/commonjs/components/text-area-fluid/TextAreaFluid.js.map +1 -0
- package/lib/commonjs/components/text-area-fluid/TextAreaFluidProps.js +6 -0
- package/lib/commonjs/components/text-area-fluid/TextAreaFluidProps.js.map +1 -0
- package/lib/commonjs/components/text-area-fluid/TextAreaFluidRef.js +6 -0
- package/lib/commonjs/components/text-area-fluid/TextAreaFluidRef.js.map +1 -0
- package/lib/commonjs/components/text-area-fluid/index.js +17 -0
- package/lib/commonjs/components/text-area-fluid/index.js.map +1 -0
- package/lib/commonjs/components/text-input/TextInput.js +211 -0
- package/lib/commonjs/components/text-input/TextInput.js.map +1 -0
- package/lib/commonjs/components/text-input/TextInputProps.js +6 -0
- package/lib/commonjs/components/text-input/TextInputProps.js.map +1 -0
- package/lib/commonjs/components/text-input/TextInputRef.js +6 -0
- package/lib/commonjs/components/text-input/TextInputRef.js.map +1 -0
- package/lib/commonjs/components/text-input/TextInputSize.js +6 -0
- package/lib/commonjs/components/text-input/TextInputSize.js.map +1 -0
- package/lib/commonjs/components/text-input/_TextInputRefBase.js +6 -0
- package/lib/commonjs/components/text-input/_TextInputRefBase.js.map +1 -0
- package/lib/commonjs/components/text-input/index.js +17 -0
- package/lib/commonjs/components/text-input/index.js.map +1 -0
- package/lib/commonjs/components/text-input-field/TextInputField.js +303 -0
- package/lib/commonjs/components/text-input-field/TextInputField.js.map +1 -0
- package/lib/commonjs/components/text-input-field/TextInputFieldInteractiveState.js +2 -0
- package/lib/commonjs/components/text-input-field/TextInputFieldInteractiveState.js.map +1 -0
- package/lib/commonjs/components/text-input-field/TextInputFieldProps.js +6 -0
- package/lib/commonjs/components/text-input-field/TextInputFieldProps.js.map +1 -0
- package/lib/commonjs/components/text-input-field/TextInputFieldRef.js +6 -0
- package/lib/commonjs/components/text-input-field/TextInputFieldRef.js.map +1 -0
- package/lib/commonjs/components/text-input-field/TextInputFieldSize.js +2 -0
- package/lib/commonjs/components/text-input-field/TextInputFieldSize.js.map +1 -0
- package/lib/commonjs/components/text-input-field/_rn-text-input/RNTextInput.js +95 -0
- package/lib/commonjs/components/text-input-field/_rn-text-input/RNTextInput.js.map +1 -0
- package/lib/commonjs/components/text-input-field/_rn-text-input/RNTextInputProps.js +6 -0
- package/lib/commonjs/components/text-input-field/_rn-text-input/RNTextInputProps.js.map +1 -0
- package/lib/commonjs/components/text-input-field/_rn-text-input/RNTextInputRef.js +6 -0
- package/lib/commonjs/components/text-input-field/_rn-text-input/RNTextInputRef.js.map +1 -0
- package/lib/commonjs/components/text-input-field/_rn-text-input/index.js +17 -0
- package/lib/commonjs/components/text-input-field/_rn-text-input/index.js.map +1 -0
- package/lib/commonjs/components/text-input-field/index.js +17 -0
- package/lib/commonjs/components/text-input-field/index.js.map +1 -0
- package/lib/commonjs/components/text-input-fluid/TextInputFluid.js +91 -0
- package/lib/commonjs/components/text-input-fluid/TextInputFluid.js.map +1 -0
- package/lib/commonjs/components/text-input-fluid/TextInputFluidProps.js +6 -0
- package/lib/commonjs/components/text-input-fluid/TextInputFluidProps.js.map +1 -0
- package/lib/commonjs/components/text-input-fluid/TextInputFluidRef.js +6 -0
- package/lib/commonjs/components/text-input-fluid/TextInputFluidRef.js.map +1 -0
- package/lib/commonjs/components/text-input-fluid/index.js +17 -0
- package/lib/commonjs/components/text-input-fluid/index.js.map +1 -0
- package/lib/commonjs/components/toggle/State.js +6 -0
- package/lib/commonjs/components/toggle/State.js.map +1 -0
- package/lib/commonjs/components/toggle/base/Base.js +167 -0
- package/lib/commonjs/components/toggle/base/Base.js.map +1 -0
- package/lib/commonjs/components/toggle/base/BaseProps.js +6 -0
- package/lib/commonjs/components/toggle/base/BaseProps.js.map +1 -0
- package/lib/commonjs/components/toggle/base/BaseRef.js +6 -0
- package/lib/commonjs/components/toggle/base/BaseRef.js.map +1 -0
- package/lib/commonjs/components/toggle/base/_RefBase.js +6 -0
- package/lib/commonjs/components/toggle/base/_RefBase.js.map +1 -0
- package/lib/commonjs/components/toggle/base/index.js +30 -106
- package/lib/commonjs/components/toggle/base/index.js.map +1 -1
- package/lib/commonjs/components/toggle/default/Default.js +23 -0
- package/lib/commonjs/components/toggle/default/Default.js.map +1 -0
- package/lib/commonjs/components/toggle/default/DefaultProps.js +6 -0
- package/lib/commonjs/components/toggle/default/DefaultProps.js.map +1 -0
- package/lib/commonjs/components/toggle/default/DefaultRef.js +6 -0
- package/lib/commonjs/components/toggle/default/DefaultRef.js.map +1 -0
- package/lib/commonjs/components/toggle/default/index.js +31 -15
- package/lib/commonjs/components/toggle/default/index.js.map +1 -1
- package/lib/commonjs/components/toggle/index.js +4 -4
- package/lib/commonjs/components/toggle/index.js.map +1 -1
- package/lib/commonjs/components/toggle/small/Small.js +23 -0
- package/lib/commonjs/components/toggle/small/Small.js.map +1 -0
- package/lib/commonjs/components/toggle/small/SmallProps.js +6 -0
- package/lib/commonjs/components/toggle/small/SmallProps.js.map +1 -0
- package/lib/commonjs/components/toggle/small/SmallRef.js +6 -0
- package/lib/commonjs/components/toggle/small/SmallRef.js.map +1 -0
- package/lib/commonjs/components/toggle/small/index.js +31 -15
- package/lib/commonjs/components/toggle/small/index.js.map +1 -1
- package/lib/commonjs/const/dialog-animation-configs/carbon-react.js +30 -0
- package/lib/commonjs/const/dialog-animation-configs/carbon-react.js.map +1 -0
- package/lib/commonjs/const/dialog-animation-configs/fade-bottom-up-2.js +27 -0
- package/lib/commonjs/const/dialog-animation-configs/fade-bottom-up-2.js.map +1 -0
- package/lib/commonjs/const/dialog-animation-configs/fade-bottom-up.js +27 -0
- package/lib/commonjs/const/dialog-animation-configs/fade-bottom-up.js.map +1 -0
- package/lib/commonjs/const/dialog-animation-configs/index.js +39 -0
- package/lib/commonjs/const/dialog-animation-configs/index.js.map +1 -0
- package/lib/commonjs/const/index.js +10 -0
- package/lib/commonjs/const/index.js.map +1 -0
- package/lib/commonjs/contexts/breakpoint/BreakpointContext.js +11 -0
- package/lib/commonjs/contexts/breakpoint/BreakpointContext.js.map +1 -0
- package/lib/commonjs/contexts/breakpoint/index.js +17 -0
- package/lib/commonjs/contexts/breakpoint/index.js.map +1 -0
- package/lib/commonjs/contexts/dialog/DialogContext.js +20 -0
- package/lib/commonjs/contexts/dialog/DialogContext.js.map +1 -0
- package/lib/commonjs/contexts/dialog/DialogData.js +2 -0
- package/lib/commonjs/contexts/dialog/DialogData.js.map +1 -0
- package/lib/commonjs/contexts/dialog/DialogType.js +9 -0
- package/lib/commonjs/contexts/dialog/DialogType.js.map +1 -0
- package/lib/commonjs/contexts/dialog/index.js +17 -0
- package/lib/commonjs/contexts/dialog/index.js.map +1 -0
- package/lib/commonjs/contexts/index.js +41 -18
- package/lib/commonjs/contexts/index.js.map +1 -1
- package/lib/commonjs/contexts/theme/ThemeContext.js +16 -0
- package/lib/commonjs/contexts/theme/ThemeContext.js.map +1 -0
- package/lib/commonjs/contexts/theme/index.js +10 -7
- package/lib/commonjs/contexts/theme/index.js.map +1 -1
- package/lib/commonjs/contexts/toast/ToastContext.js +16 -0
- package/lib/commonjs/contexts/toast/ToastContext.js.map +1 -0
- package/lib/commonjs/contexts/toast/ToastContextShowConfig.js +2 -0
- package/lib/commonjs/contexts/toast/ToastContextShowConfig.js.map +1 -0
- package/lib/commonjs/contexts/toast/index.js +21 -9
- package/lib/commonjs/contexts/toast/index.js.map +1 -1
- package/lib/commonjs/helpers/breakpoint/get-token.js +11 -0
- package/lib/commonjs/helpers/breakpoint/get-token.js.map +1 -0
- package/lib/commonjs/helpers/breakpoint/index.js +17 -0
- package/lib/commonjs/helpers/breakpoint/index.js.map +1 -0
- package/lib/commonjs/helpers/color/get-color-token.js +2 -2
- package/lib/commonjs/helpers/color/get-color-token.js.map +1 -1
- package/lib/commonjs/helpers/index.js +4 -3
- package/lib/commonjs/helpers/index.js.map +1 -1
- package/lib/commonjs/hooks/breakpoint/index.js +17 -0
- package/lib/commonjs/hooks/breakpoint/index.js.map +1 -0
- package/lib/commonjs/hooks/breakpoint/use.js +17 -0
- package/lib/commonjs/hooks/breakpoint/use.js.map +1 -0
- package/lib/commonjs/hooks/index.js +17 -0
- package/lib/commonjs/hooks/index.js.map +1 -0
- package/lib/commonjs/index.js +6 -6
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/providers/dialog/DialogProvider.js +74 -0
- package/lib/commonjs/providers/dialog/DialogProvider.js.map +1 -0
- package/lib/commonjs/providers/dialog/DialogProviderAnimationConfig.js +6 -0
- package/lib/commonjs/providers/dialog/DialogProviderAnimationConfig.js.map +1 -0
- package/lib/commonjs/providers/dialog/DialogProviderProps.js +6 -0
- package/lib/commonjs/providers/dialog/DialogProviderProps.js.map +1 -0
- package/lib/commonjs/providers/dialog/DialogProviderRef.js +6 -0
- package/lib/commonjs/providers/dialog/DialogProviderRef.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/Controller.js +131 -0
- package/lib/commonjs/providers/dialog/_controller/Controller.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/ControllerProps.js +6 -0
- package/lib/commonjs/providers/dialog/_controller/ControllerProps.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/ControllerRef.js +6 -0
- package/lib/commonjs/providers/dialog/_controller/ControllerRef.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/Modal.js +81 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/Modal.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/ModalProps.js +6 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/ModalProps.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/ModalRef.js +6 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/ModalRef.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/_Interpolation.js +2 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/_Interpolation.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/index.js +17 -0
- package/lib/commonjs/providers/dialog/_controller/_modal/index.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/Overlay.js +73 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/Overlay.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/OverlayProps.js +6 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/OverlayProps.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/OverlayRef.js +6 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/OverlayRef.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/_OverlayRefBase.js +2 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/_OverlayRefBase.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/index.js +17 -0
- package/lib/commonjs/providers/dialog/_controller/_overlay/index.js.map +1 -0
- package/lib/commonjs/providers/dialog/_controller/index.js +17 -0
- package/lib/commonjs/providers/dialog/_controller/index.js.map +1 -0
- package/lib/commonjs/providers/dialog/index.js +17 -0
- package/lib/commonjs/providers/dialog/index.js.map +1 -0
- package/lib/commonjs/providers/index.js +20 -19
- package/lib/commonjs/providers/index.js.map +1 -1
- package/lib/commonjs/providers/toast/ToastProvider.js +37 -0
- package/lib/commonjs/providers/toast/ToastProvider.js.map +1 -0
- package/lib/commonjs/providers/toast/ToastProviderProps.js +2 -0
- package/lib/commonjs/providers/toast/ToastProviderProps.js.map +1 -0
- package/lib/commonjs/providers/toast/ToastRef.js +6 -0
- package/lib/commonjs/providers/toast/ToastRef.js.map +1 -0
- package/lib/commonjs/providers/toast/_overlay/Overlay.js +101 -0
- package/lib/commonjs/providers/toast/_overlay/Overlay.js.map +1 -0
- package/lib/commonjs/providers/toast/_overlay/OverlayRef.js +6 -0
- package/lib/commonjs/providers/toast/_overlay/OverlayRef.js.map +1 -0
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapper.js +103 -0
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapper.js.map +1 -0
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.js +6 -0
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.js.map +1 -0
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapperRef.js +2 -0
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapperRef.js.map +1 -0
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/index.js +17 -0
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/index.js.map +1 -0
- package/lib/commonjs/providers/toast/_overlay/index.js +8 -141
- package/lib/commonjs/providers/toast/_overlay/index.js.map +1 -1
- package/lib/commonjs/providers/toast/index.js +31 -29
- package/lib/commonjs/providers/toast/index.js.map +1 -1
- package/lib/commonjs/types/theme/ColorScheme.js +2 -0
- package/lib/commonjs/types/theme/ColorScheme.js.map +1 -0
- package/lib/module/_internal/contexts/button-group/ButtonGroupContext.js +10 -0
- package/lib/module/_internal/contexts/button-group/ButtonGroupContext.js.map +1 -0
- package/lib/module/_internal/contexts/button-group/index.js +4 -0
- package/lib/module/_internal/contexts/button-group/index.js.map +1 -0
- package/lib/module/_internal/contexts/global-config/GlobalConfigContext.js +10 -0
- package/lib/module/_internal/contexts/global-config/GlobalConfigContext.js.map +1 -0
- package/lib/module/_internal/contexts/global-config/index.js +4 -0
- package/lib/module/_internal/contexts/global-config/index.js.map +1 -0
- package/lib/module/_internal/contexts/index.js +6 -0
- package/lib/module/_internal/contexts/index.js.map +1 -0
- package/lib/module/_internal/contexts/modal/ModalContext.js +7 -0
- package/lib/module/_internal/contexts/modal/ModalContext.js.map +1 -0
- package/lib/module/_internal/contexts/modal/index.js +4 -0
- package/lib/module/_internal/contexts/modal/index.js.map +1 -0
- package/lib/module/_internal/globals/breakpoint/index.js +10 -0
- package/lib/module/_internal/globals/breakpoint/index.js.map +1 -0
- package/lib/module/_internal/globals/color-scheme/index.js +11 -0
- package/lib/module/_internal/globals/color-scheme/index.js.map +1 -0
- package/lib/module/_internal/globals/index.js +6 -0
- package/lib/module/_internal/globals/index.js.map +1 -0
- package/lib/module/_internal/helpers/index.js +5 -0
- package/lib/module/_internal/helpers/index.js.map +1 -0
- package/lib/module/_internal/helpers/math/clamp.js +6 -0
- package/lib/module/_internal/helpers/math/clamp.js.map +1 -0
- package/lib/module/_internal/helpers/math/index.js +4 -0
- package/lib/module/_internal/helpers/math/index.js.map +1 -0
- package/lib/module/_internal/providers/breakpoint/BreakpointProvider.js +19 -0
- package/lib/module/_internal/providers/breakpoint/BreakpointProvider.js.map +1 -0
- package/lib/module/_internal/providers/breakpoint/BreakpointProviderProps.js +2 -0
- package/lib/module/_internal/providers/breakpoint/BreakpointProviderProps.js.map +1 -0
- package/lib/module/_internal/providers/breakpoint/index.js +5 -0
- package/lib/module/_internal/providers/breakpoint/index.js.map +1 -0
- package/lib/module/_internal/providers/global-config/GlobalConfigProvider.js +22 -0
- package/lib/module/_internal/providers/global-config/GlobalConfigProvider.js.map +1 -0
- package/lib/module/_internal/providers/global-config/GlobalConfigProviderProps.js +4 -0
- package/lib/module/_internal/providers/global-config/GlobalConfigProviderProps.js.map +1 -0
- package/lib/module/_internal/providers/global-config/index.js +5 -0
- package/lib/module/_internal/providers/global-config/index.js.map +1 -0
- package/lib/module/_internal/providers/index.js +6 -0
- package/lib/module/_internal/providers/index.js.map +1 -0
- package/lib/module/_internal/providers/theme/ThemeProvider.js +22 -0
- package/lib/module/_internal/providers/theme/ThemeProvider.js.map +1 -0
- package/lib/module/_internal/providers/theme/ThemeProviderProps.js +4 -0
- package/lib/module/_internal/providers/theme/ThemeProviderProps.js.map +1 -0
- package/lib/module/_internal/providers/theme/index.js +5 -0
- package/lib/module/_internal/providers/theme/index.js.map +1 -0
- package/lib/module/_internal/style-sheets/common-style-sheet.js +21 -0
- package/lib/module/_internal/style-sheets/common-style-sheet.js.map +1 -0
- package/lib/module/_internal/style-sheets/flex-style-sheet.js +84 -0
- package/lib/module/_internal/style-sheets/flex-style-sheet.js.map +1 -0
- package/lib/module/_internal/style-sheets/index.js +6 -0
- package/lib/module/_internal/style-sheets/index.js.map +1 -0
- package/lib/module/_internal/style-sheets/text-style-sheet.js +62 -0
- package/lib/module/_internal/style-sheets/text-style-sheet.js.map +1 -0
- package/lib/module/carbon-react-native/CarbonReactNative.js +28 -0
- package/lib/module/carbon-react-native/CarbonReactNative.js.map +1 -0
- package/lib/module/carbon-react-native/CarbonReactNativeProps.js +4 -0
- package/lib/module/carbon-react-native/CarbonReactNativeProps.js.map +1 -0
- package/lib/module/carbon-react-native/index.js +4 -0
- package/lib/module/carbon-react-native/index.js.map +1 -0
- package/lib/module/carbon-style-sheet/breakpoint.js +14 -0
- package/lib/module/carbon-style-sheet/breakpoint.js.map +1 -0
- package/lib/module/carbon-style-sheet/color.js +8 -0
- package/lib/module/carbon-style-sheet/color.js.map +1 -0
- package/lib/module/carbon-style-sheet/create.js +108 -0
- package/lib/module/carbon-style-sheet/create.js.map +1 -0
- package/lib/module/carbon-style-sheet/index.js +21 -0
- package/lib/module/carbon-style-sheet/index.js.map +1 -0
- package/lib/module/carbon-style-sheet/use.js +13 -0
- package/lib/module/carbon-style-sheet/use.js.map +1 -0
- package/lib/module/components/accordion/Accordion.js +70 -0
- package/lib/module/components/accordion/Accordion.js.map +1 -0
- package/lib/module/components/accordion/AccordionHeaderProps.js +4 -0
- package/lib/module/components/accordion/AccordionHeaderProps.js.map +1 -0
- package/lib/module/components/accordion/AccordionItemProps.js +4 -0
- package/lib/module/components/accordion/AccordionItemProps.js.map +1 -0
- package/lib/module/components/accordion/AccordionItemRef.js +4 -0
- package/lib/module/components/accordion/AccordionItemRef.js.map +1 -0
- package/lib/module/components/accordion/AccordionProps.js +4 -0
- package/lib/module/components/accordion/AccordionProps.js.map +1 -0
- package/lib/module/components/accordion/AccordionRef.js +4 -0
- package/lib/module/components/accordion/AccordionRef.js.map +1 -0
- package/lib/module/components/accordion/AccordionSize.js +2 -0
- package/lib/module/components/accordion/AccordionSize.js.map +1 -0
- package/lib/module/components/accordion/_Header.js +124 -0
- package/lib/module/components/accordion/_Header.js.map +1 -0
- package/lib/module/components/accordion/_HeaderBorder.js +33 -0
- package/lib/module/components/accordion/_HeaderBorder.js.map +1 -0
- package/lib/module/components/accordion/_Item.js +79 -0
- package/lib/module/components/accordion/_Item.js.map +1 -0
- package/lib/module/components/accordion/_ItemRefBase.js +2 -0
- package/lib/module/components/accordion/_ItemRefBase.js.map +1 -0
- package/lib/module/components/accordion/_chevron/Chevron.js +58 -0
- package/lib/module/components/accordion/_chevron/Chevron.js.map +1 -0
- package/lib/module/components/accordion/_chevron/ChevronProps.js +4 -0
- package/lib/module/components/accordion/_chevron/ChevronProps.js.map +1 -0
- package/lib/module/components/accordion/_chevron/index.js +4 -0
- package/lib/module/components/accordion/_chevron/index.js.map +1 -0
- package/lib/module/components/accordion/_context.js.map +1 -1
- package/lib/module/components/accordion/_motion.js +4 -4
- package/lib/module/components/accordion/_motion.js.map +1 -1
- package/lib/module/components/accordion/_styles.js +3 -3
- package/lib/module/components/accordion/_styles.js.map +1 -1
- package/lib/module/components/accordion/index.js +7 -67
- package/lib/module/components/accordion/index.js.map +1 -1
- package/lib/module/components/button/Size.js +2 -0
- package/lib/module/components/button/Size.js.map +1 -0
- package/lib/module/components/button/base/Base.js +225 -0
- package/lib/module/components/button/base/Base.js.map +1 -0
- package/lib/module/components/button/base/BaseProps.js +4 -0
- package/lib/module/components/button/base/BaseProps.js.map +1 -0
- package/lib/module/components/button/base/BaseRef.js +4 -0
- package/lib/module/components/button/base/BaseRef.js.map +1 -0
- package/lib/module/components/button/base/index.js +3 -146
- package/lib/module/components/button/base/index.js.map +1 -1
- package/lib/module/components/button/base-color/BaseColor.js +167 -0
- package/lib/module/components/button/base-color/BaseColor.js.map +1 -0
- package/lib/module/components/button/base-color/BaseColorProps.js +4 -0
- package/lib/module/components/button/base-color/BaseColorProps.js.map +1 -0
- package/lib/module/components/button/base-color/BaseColorRef.js +4 -0
- package/lib/module/components/button/base-color/BaseColorRef.js.map +1 -0
- package/lib/module/components/button/base-color/BaseColorState.js +2 -0
- package/lib/module/components/button/base-color/BaseColorState.js.map +1 -0
- package/lib/module/components/button/base-color/index.js +4 -148
- package/lib/module/components/button/base-color/index.js.map +1 -1
- package/lib/module/components/button/ghost/Ghost.js +106 -0
- package/lib/module/components/button/ghost/Ghost.js.map +1 -0
- package/lib/module/components/button/ghost/GhostProps.js +4 -0
- package/lib/module/components/button/ghost/GhostProps.js.map +1 -0
- package/lib/module/components/button/ghost/GhostRef.js +4 -0
- package/lib/module/components/button/ghost/GhostRef.js.map +1 -0
- package/lib/module/components/button/ghost/index.js +3 -85
- package/lib/module/components/button/ghost/index.js.map +1 -1
- package/lib/module/components/button/ghost-danger/GhostDanger.js +106 -0
- package/lib/module/components/button/ghost-danger/GhostDanger.js.map +1 -0
- package/lib/module/components/button/ghost-danger/GhostDangerProps.js +4 -0
- package/lib/module/components/button/ghost-danger/GhostDangerProps.js.map +1 -0
- package/lib/module/components/button/ghost-danger/GhostDangerRef.js +4 -0
- package/lib/module/components/button/ghost-danger/GhostDangerRef.js.map +1 -0
- package/lib/module/components/button/ghost-danger/index.js +3 -85
- package/lib/module/components/button/ghost-danger/index.js.map +1 -1
- package/lib/module/components/button/ghost-icon/GhostIcon.js +87 -0
- package/lib/module/components/button/ghost-icon/GhostIcon.js.map +1 -0
- package/lib/module/components/button/ghost-icon/GhostIconProps.js +4 -0
- package/lib/module/components/button/ghost-icon/GhostIconProps.js.map +1 -0
- package/lib/module/components/button/ghost-icon/GhostIconRef.js +4 -0
- package/lib/module/components/button/ghost-icon/GhostIconRef.js.map +1 -0
- package/lib/module/components/button/ghost-icon/index.js +3 -74
- package/lib/module/components/button/ghost-icon/index.js.map +1 -1
- package/lib/module/components/button/index.js +1 -1
- package/lib/module/components/button/primary/Primary.js +86 -0
- package/lib/module/components/button/primary/Primary.js.map +1 -0
- package/lib/module/components/button/primary/PrimaryProps.js +4 -0
- package/lib/module/components/button/primary/PrimaryProps.js.map +1 -0
- package/lib/module/components/button/primary/PrimaryRef.js +4 -0
- package/lib/module/components/button/primary/PrimaryRef.js.map +1 -0
- package/lib/module/components/button/primary/index.js +3 -67
- package/lib/module/components/button/primary/index.js.map +1 -1
- package/lib/module/components/button/primary-danger/PrimaryDanger.js +86 -0
- package/lib/module/components/button/primary-danger/PrimaryDanger.js.map +1 -0
- package/lib/module/components/button/primary-danger/PrimaryDangerProps.js +4 -0
- package/lib/module/components/button/primary-danger/PrimaryDangerProps.js.map +1 -0
- package/lib/module/components/button/primary-danger/PrimaryDangerRef.js +4 -0
- package/lib/module/components/button/primary-danger/PrimaryDangerRef.js.map +1 -0
- package/lib/module/components/button/primary-danger/index.js +3 -67
- package/lib/module/components/button/primary-danger/index.js.map +1 -1
- package/lib/module/components/button/secondary/Secondary.js +86 -0
- package/lib/module/components/button/secondary/Secondary.js.map +1 -0
- package/lib/module/components/button/secondary/SecondaryProps.js +4 -0
- package/lib/module/components/button/secondary/SecondaryProps.js.map +1 -0
- package/lib/module/components/button/secondary/SecondaryRef.js +4 -0
- package/lib/module/components/button/secondary/SecondaryRef.js.map +1 -0
- package/lib/module/components/button/secondary/index.js +3 -67
- package/lib/module/components/button/secondary/index.js.map +1 -1
- package/lib/module/components/button/tertiary/Tertiary.js +101 -0
- package/lib/module/components/button/tertiary/Tertiary.js.map +1 -0
- package/lib/module/components/button/tertiary/TertiaryProps.js +4 -0
- package/lib/module/components/button/tertiary/TertiaryProps.js.map +1 -0
- package/lib/module/components/button/tertiary/TertiaryRef.js +4 -0
- package/lib/module/components/button/tertiary/TertiaryRef.js.map +1 -0
- package/lib/module/components/button/tertiary/index.js +3 -82
- package/lib/module/components/button/tertiary/index.js.map +1 -1
- package/lib/module/components/button/tertiary-danger/TertiaryDanger.js +101 -0
- package/lib/module/components/button/tertiary-danger/TertiaryDanger.js.map +1 -0
- package/lib/module/components/button/tertiary-danger/TertiaryDangerProps.js +4 -0
- package/lib/module/components/button/tertiary-danger/TertiaryDangerProps.js.map +1 -0
- package/lib/module/components/button/tertiary-danger/TertiaryDangerRef.js +4 -0
- package/lib/module/components/button/tertiary-danger/TertiaryDangerRef.js.map +1 -0
- package/lib/module/components/button/tertiary-danger/index.js +3 -82
- package/lib/module/components/button/tertiary-danger/index.js.map +1 -1
- package/lib/module/components/button-group/ButtonGroup.js +75 -0
- package/lib/module/components/button-group/ButtonGroup.js.map +1 -0
- package/lib/module/components/button-group/ButtonGroupProps.js +4 -0
- package/lib/module/components/button-group/ButtonGroupProps.js.map +1 -0
- package/lib/module/components/button-group/ButtonGroupRef.js +4 -0
- package/lib/module/components/button-group/ButtonGroupRef.js.map +1 -0
- package/lib/module/components/button-group/index.js +4 -0
- package/lib/module/components/button-group/index.js.map +1 -0
- package/lib/module/components/checkbox/Checkbox.js +108 -0
- package/lib/module/components/checkbox/Checkbox.js.map +1 -0
- package/lib/module/components/checkbox/CheckboxProps.js +4 -0
- package/lib/module/components/checkbox/CheckboxProps.js.map +1 -0
- package/lib/module/components/checkbox/CheckboxRef.js +4 -0
- package/lib/module/components/checkbox/CheckboxRef.js.map +1 -0
- package/lib/module/components/checkbox/_RefBase.js +4 -0
- package/lib/module/components/checkbox/_RefBase.js.map +1 -0
- package/lib/module/components/checkbox/index.js +3 -110
- package/lib/module/components/checkbox/index.js.map +1 -1
- package/lib/module/components/checkbox-group/CheckboxGroup.js +123 -0
- package/lib/module/components/checkbox-group/CheckboxGroup.js.map +1 -0
- package/lib/module/components/checkbox-group/CheckboxGroupHelperTextMode.js +2 -0
- package/lib/module/components/checkbox-group/CheckboxGroupHelperTextMode.js.map +1 -0
- package/lib/module/components/checkbox-group/CheckboxGroupProps.js +4 -0
- package/lib/module/components/checkbox-group/CheckboxGroupProps.js.map +1 -0
- package/lib/module/components/checkbox-group/CheckboxGroupRef.js +4 -0
- package/lib/module/components/checkbox-group/CheckboxGroupRef.js.map +1 -0
- package/lib/module/components/checkbox-group/index.js +4 -90
- package/lib/module/components/checkbox-group/index.js.map +1 -1
- package/lib/module/components/checkbox-input/CheckboxInput.js +195 -0
- package/lib/module/components/checkbox-input/CheckboxInput.js.map +1 -0
- package/lib/module/components/checkbox-input/CheckboxInputInteractiveState.js +2 -0
- package/lib/module/components/checkbox-input/CheckboxInputInteractiveState.js.map +1 -0
- package/lib/module/components/checkbox-input/CheckboxInputProps.js +4 -0
- package/lib/module/components/checkbox-input/CheckboxInputProps.js.map +1 -0
- package/lib/module/components/checkbox-input/CheckboxInputRef.js +4 -0
- package/lib/module/components/checkbox-input/CheckboxInputRef.js.map +1 -0
- package/lib/module/components/checkbox-input/CheckboxInputValue.js +2 -0
- package/lib/module/components/checkbox-input/CheckboxInputValue.js.map +1 -0
- package/lib/module/components/checkbox-input/_RefBase.js +4 -0
- package/lib/module/components/checkbox-input/_RefBase.js.map +1 -0
- package/lib/module/components/checkbox-input/index.js +5 -200
- package/lib/module/components/checkbox-input/index.js.map +1 -1
- package/lib/module/components/collapsible/Collapsible.js +148 -0
- package/lib/module/components/collapsible/Collapsible.js.map +1 -0
- package/lib/module/components/collapsible/CollapsibleProps.js +4 -0
- package/lib/module/components/collapsible/CollapsibleProps.js.map +1 -0
- package/lib/module/components/collapsible/CollapsibleRef.js +4 -0
- package/lib/module/components/collapsible/CollapsibleRef.js.map +1 -0
- package/lib/module/components/collapsible/_RefBase.js +2 -0
- package/lib/module/components/collapsible/_RefBase.js.map +1 -0
- package/lib/module/components/collapsible/index.js +3 -125
- package/lib/module/components/collapsible/index.js.map +1 -1
- package/lib/module/components/form-helper-text/FormHelperText.js +45 -0
- package/lib/module/components/form-helper-text/FormHelperText.js.map +1 -0
- package/lib/module/components/form-helper-text/FormHelperTextProps.js +4 -0
- package/lib/module/components/form-helper-text/FormHelperTextProps.js.map +1 -0
- package/lib/module/components/form-helper-text/FormHelperTextRef.js +4 -0
- package/lib/module/components/form-helper-text/FormHelperTextRef.js.map +1 -0
- package/lib/module/components/form-helper-text/index.js +3 -34
- package/lib/module/components/form-helper-text/index.js.map +1 -1
- package/lib/module/components/form-label/FormLabel.js +33 -0
- package/lib/module/components/form-label/FormLabel.js.map +1 -0
- package/lib/module/components/form-label/FormLabelProps.js +4 -0
- package/lib/module/components/form-label/FormLabelProps.js.map +1 -0
- package/lib/module/components/form-label/FormLabelRef.js +4 -0
- package/lib/module/components/form-label/FormLabelRef.js.map +1 -0
- package/lib/module/components/form-label/index.js +3 -28
- package/lib/module/components/form-label/index.js.map +1 -1
- package/lib/module/components/icon/Icon.js +35 -0
- package/lib/module/components/icon/Icon.js.map +1 -0
- package/lib/module/components/icon/IconProps.js +4 -0
- package/lib/module/components/icon/IconProps.js.map +1 -0
- package/lib/module/components/icon/index.js +2 -32
- package/lib/module/components/icon/index.js.map +1 -1
- package/lib/module/components/index.js +12 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/components/inline-loading/InlineLoading.js +64 -0
- package/lib/module/components/inline-loading/InlineLoading.js.map +1 -0
- package/lib/module/components/inline-loading/InlineLoadingProps.js +4 -0
- package/lib/module/components/inline-loading/InlineLoadingProps.js.map +1 -0
- package/lib/module/components/inline-loading/InlineLoadingRef.js +4 -0
- package/lib/module/components/inline-loading/InlineLoadingRef.js.map +1 -0
- package/lib/module/components/inline-loading/InlineLoadingState.js +2 -0
- package/lib/module/components/inline-loading/InlineLoadingState.js.map +1 -0
- package/lib/module/components/inline-loading/index.js +4 -0
- package/lib/module/components/inline-loading/index.js.map +1 -0
- package/lib/module/components/layer/Layer.js +39 -0
- package/lib/module/components/layer/Layer.js.map +1 -0
- package/lib/module/components/layer/LayerContext.js +5 -0
- package/lib/module/components/layer/LayerContext.js.map +1 -0
- package/lib/module/components/layer/LayerProps.js +4 -0
- package/lib/module/components/layer/LayerProps.js.map +1 -0
- package/lib/module/components/layer/LayerRef.js +4 -0
- package/lib/module/components/layer/LayerRef.js.map +1 -0
- package/lib/module/components/layer/index.js +5 -0
- package/lib/module/components/layer/index.js.map +1 -0
- package/lib/module/components/loading/Loading.js +55 -0
- package/lib/module/components/loading/Loading.js.map +1 -0
- package/lib/module/components/loading/LoadingProps.js +4 -0
- package/lib/module/components/loading/LoadingProps.js.map +1 -0
- package/lib/module/components/loading/LoadingRef.js +4 -0
- package/lib/module/components/loading/LoadingRef.js.map +1 -0
- package/lib/module/components/loading/LoadingType.js +2 -0
- package/lib/module/components/loading/LoadingType.js.map +1 -0
- package/lib/module/components/loading/_circular-progress/CircularProgress.js +72 -0
- package/lib/module/components/loading/_circular-progress/CircularProgress.js.map +1 -0
- package/lib/module/components/loading/_circular-progress/CircularProgressProps.js +4 -0
- package/lib/module/components/loading/_circular-progress/CircularProgressProps.js.map +1 -0
- package/lib/module/components/loading/_circular-progress/index.js +4 -0
- package/lib/module/components/loading/_circular-progress/index.js.map +1 -0
- package/lib/module/components/loading/_map-circle-background-color.js +18 -0
- package/lib/module/components/loading/_map-circle-background-color.js.map +1 -0
- package/lib/module/components/loading/_map-circle-stroke-color.js +8 -0
- package/lib/module/components/loading/_map-circle-stroke-color.js.map +1 -0
- package/lib/module/components/loading/index.js +4 -0
- package/lib/module/components/loading/index.js.map +1 -0
- package/lib/module/components/modal/Modal.js +276 -0
- package/lib/module/components/modal/Modal.js.map +1 -0
- package/lib/module/components/modal/ModalProps.js +4 -0
- package/lib/module/components/modal/ModalProps.js.map +1 -0
- package/lib/module/components/modal/ModalRef.js +4 -0
- package/lib/module/components/modal/ModalRef.js.map +1 -0
- package/lib/module/components/modal/ModalSize.js +2 -0
- package/lib/module/components/modal/ModalSize.js.map +1 -0
- package/lib/module/components/modal/index.js +4 -0
- package/lib/module/components/modal/index.js.map +1 -0
- package/lib/module/components/modal-content/ModalContent.js +120 -0
- package/lib/module/components/modal-content/ModalContent.js.map +1 -0
- package/lib/module/components/modal-content/ModalContentProps.js +4 -0
- package/lib/module/components/modal-content/ModalContentProps.js.map +1 -0
- package/lib/module/components/modal-content/ModalContentRef.js +4 -0
- package/lib/module/components/modal-content/ModalContentRef.js.map +1 -0
- package/lib/module/components/modal-content/index.js +4 -0
- package/lib/module/components/modal-content/index.js.map +1 -0
- package/lib/module/components/notification/NotificationColor.js +2 -0
- package/lib/module/components/notification/NotificationColor.js.map +1 -0
- package/lib/module/components/notification/_VariantContextProvider.js +19 -0
- package/lib/module/components/notification/_VariantContextProvider.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/_base/UseBaseData.js +4 -0
- package/lib/module/components/notification/_status-hooks/_base/UseBaseData.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/_base/UseBaseProps.js +4 -0
- package/lib/module/components/notification/_status-hooks/_base/UseBaseProps.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/_base/index.js +6 -0
- package/lib/module/components/notification/_status-hooks/_base/index.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/_base/useBase.js +44 -0
- package/lib/module/components/notification/_status-hooks/_base/useBase.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/error/UseErrorData.js +4 -0
- package/lib/module/components/notification/_status-hooks/error/UseErrorData.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/error/UseErrorProps.js +4 -0
- package/lib/module/components/notification/_status-hooks/error/UseErrorProps.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/error/index.js +3 -39
- package/lib/module/components/notification/_status-hooks/error/index.js.map +1 -1
- package/lib/module/components/notification/_status-hooks/error/useError.js +78 -0
- package/lib/module/components/notification/_status-hooks/error/useError.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/informational/UseInformationalData.js +4 -0
- package/lib/module/components/notification/_status-hooks/informational/UseInformationalData.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/informational/UseInformationalProps.js +4 -0
- package/lib/module/components/notification/_status-hooks/informational/UseInformationalProps.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/informational/index.js +3 -39
- package/lib/module/components/notification/_status-hooks/informational/index.js.map +1 -1
- package/lib/module/components/notification/_status-hooks/informational/useInformational.js +78 -0
- package/lib/module/components/notification/_status-hooks/informational/useInformational.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/success/UseSuccessData.js +4 -0
- package/lib/module/components/notification/_status-hooks/success/UseSuccessData.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/success/UseSuccessProps.js +4 -0
- package/lib/module/components/notification/_status-hooks/success/UseSuccessProps.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/success/index.js +3 -39
- package/lib/module/components/notification/_status-hooks/success/index.js.map +1 -1
- package/lib/module/components/notification/_status-hooks/success/useSuccess.js +78 -0
- package/lib/module/components/notification/_status-hooks/success/useSuccess.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/warning/UseWarningData.js +4 -0
- package/lib/module/components/notification/_status-hooks/warning/UseWarningData.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/warning/UseWarningProps.js +4 -0
- package/lib/module/components/notification/_status-hooks/warning/UseWarningProps.js.map +1 -0
- package/lib/module/components/notification/_status-hooks/warning/index.js +3 -39
- package/lib/module/components/notification/_status-hooks/warning/index.js.map +1 -1
- package/lib/module/components/notification/_status-hooks/warning/useWarning.js +78 -0
- package/lib/module/components/notification/_status-hooks/warning/useWarning.js.map +1 -0
- package/lib/module/components/notification/_variant-context.js +1 -15
- package/lib/module/components/notification/_variant-context.js.map +1 -1
- package/lib/module/components/notification/_variants/_ButtonGhost.js +41 -0
- package/lib/module/components/notification/_variants/_ButtonGhost.js.map +1 -0
- package/lib/module/components/notification/_variants/_ButtonTertiary.js +41 -0
- package/lib/module/components/notification/_variants/_ButtonTertiary.js.map +1 -0
- package/lib/module/components/notification/_variants/actionable/ActionableVariant.js +37 -0
- package/lib/module/components/notification/_variants/actionable/ActionableVariant.js.map +1 -0
- package/lib/module/components/notification/_variants/actionable/ActionableVariantProps.js +4 -0
- package/lib/module/components/notification/_variants/actionable/ActionableVariantProps.js.map +1 -0
- package/lib/module/components/notification/_variants/actionable/ActionableVariantRef.js +4 -0
- package/lib/module/components/notification/_variants/actionable/ActionableVariantRef.js.map +1 -0
- package/lib/module/components/notification/_variants/actionable/index.js +3 -34
- package/lib/module/components/notification/_variants/actionable/index.js.map +1 -1
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariant.js +37 -0
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariant.js.map +1 -0
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.js +4 -0
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.js.map +1 -0
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.js +4 -0
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.js.map +1 -0
- package/lib/module/components/notification/_variants/actionable-inline/index.js +3 -34
- package/lib/module/components/notification/_variants/actionable-inline/index.js.map +1 -1
- package/lib/module/components/notification/_variants/callout/CalloutVariant.js +31 -0
- package/lib/module/components/notification/_variants/callout/CalloutVariant.js.map +1 -0
- package/lib/module/components/notification/_variants/callout/CalloutVariantProps.js +4 -0
- package/lib/module/components/notification/_variants/callout/CalloutVariantProps.js.map +1 -0
- package/lib/module/components/notification/_variants/callout/CalloutVariantRef.js +4 -0
- package/lib/module/components/notification/_variants/callout/CalloutVariantRef.js.map +1 -0
- package/lib/module/components/notification/_variants/callout/index.js +3 -28
- package/lib/module/components/notification/_variants/callout/index.js.map +1 -1
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariant.js +31 -0
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariant.js.map +1 -0
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariantProps.js +4 -0
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariantProps.js.map +1 -0
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariantRef.js +4 -0
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariantRef.js.map +1 -0
- package/lib/module/components/notification/_variants/callout-inline/index.js +3 -28
- package/lib/module/components/notification/_variants/callout-inline/index.js.map +1 -1
- package/lib/module/components/notification/_variants/toast/ToastVariant.js +59 -0
- package/lib/module/components/notification/_variants/toast/ToastVariant.js.map +1 -0
- package/lib/module/components/notification/_variants/toast/ToastVariantProps.js +4 -0
- package/lib/module/components/notification/_variants/toast/ToastVariantProps.js.map +1 -0
- package/lib/module/components/notification/_variants/toast/ToastVariantRef.js +4 -0
- package/lib/module/components/notification/_variants/toast/ToastVariantRef.js.map +1 -0
- package/lib/module/components/notification/_variants/toast/index.js +3 -56
- package/lib/module/components/notification/_variants/toast/index.js.map +1 -1
- package/lib/module/components/notification/actionable/error/Error.js +45 -0
- package/lib/module/components/notification/actionable/error/Error.js.map +1 -0
- package/lib/module/components/notification/actionable/error/ErrorProps.js +4 -0
- package/lib/module/components/notification/actionable/error/ErrorProps.js.map +1 -0
- package/lib/module/components/notification/actionable/error/ErrorRef.js +4 -0
- package/lib/module/components/notification/actionable/error/ErrorRef.js.map +1 -0
- package/lib/module/components/notification/actionable/error/index.js +3 -42
- package/lib/module/components/notification/actionable/error/index.js.map +1 -1
- package/lib/module/components/notification/actionable/informational/Informational.js +45 -0
- package/lib/module/components/notification/actionable/informational/Informational.js.map +1 -0
- package/lib/module/components/notification/actionable/informational/InformationalProps.js +4 -0
- package/lib/module/components/notification/actionable/informational/InformationalProps.js.map +1 -0
- package/lib/module/components/notification/actionable/informational/InformationalRef.js +4 -0
- package/lib/module/components/notification/actionable/informational/InformationalRef.js.map +1 -0
- package/lib/module/components/notification/actionable/informational/index.js +3 -42
- package/lib/module/components/notification/actionable/informational/index.js.map +1 -1
- package/lib/module/components/notification/actionable/success/Success.js +45 -0
- package/lib/module/components/notification/actionable/success/Success.js.map +1 -0
- package/lib/module/components/notification/actionable/success/SuccessProps.js +4 -0
- package/lib/module/components/notification/actionable/success/SuccessProps.js.map +1 -0
- package/lib/module/components/notification/actionable/success/SuccessRef.js +4 -0
- package/lib/module/components/notification/actionable/success/SuccessRef.js.map +1 -0
- package/lib/module/components/notification/actionable/success/index.js +3 -42
- package/lib/module/components/notification/actionable/success/index.js.map +1 -1
- package/lib/module/components/notification/actionable/warning/Warning.js +45 -0
- package/lib/module/components/notification/actionable/warning/Warning.js.map +1 -0
- package/lib/module/components/notification/actionable/warning/WarningProps.js +4 -0
- package/lib/module/components/notification/actionable/warning/WarningProps.js.map +1 -0
- package/lib/module/components/notification/actionable/warning/WarningRef.js +4 -0
- package/lib/module/components/notification/actionable/warning/WarningRef.js.map +1 -0
- package/lib/module/components/notification/actionable/warning/index.js +3 -42
- package/lib/module/components/notification/actionable/warning/index.js.map +1 -1
- package/lib/module/components/notification/actionable-inline/error/Error.js +44 -0
- package/lib/module/components/notification/actionable-inline/error/Error.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/error/ErrorProps.js +4 -0
- package/lib/module/components/notification/actionable-inline/error/ErrorProps.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/error/ErrorRef.js +4 -0
- package/lib/module/components/notification/actionable-inline/error/ErrorRef.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/error/index.js +3 -41
- package/lib/module/components/notification/actionable-inline/error/index.js.map +1 -1
- package/lib/module/components/notification/actionable-inline/informational/Informational.js +44 -0
- package/lib/module/components/notification/actionable-inline/informational/Informational.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/informational/InformationalProps.js +4 -0
- package/lib/module/components/notification/actionable-inline/informational/InformationalProps.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/informational/InformationalRef.js +4 -0
- package/lib/module/components/notification/actionable-inline/informational/InformationalRef.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/informational/index.js +3 -41
- package/lib/module/components/notification/actionable-inline/informational/index.js.map +1 -1
- package/lib/module/components/notification/actionable-inline/success/Success.js +44 -0
- package/lib/module/components/notification/actionable-inline/success/Success.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/success/SuccessProps.js +4 -0
- package/lib/module/components/notification/actionable-inline/success/SuccessProps.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/success/SuccessRef.js +4 -0
- package/lib/module/components/notification/actionable-inline/success/SuccessRef.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/success/index.js +3 -41
- package/lib/module/components/notification/actionable-inline/success/index.js.map +1 -1
- package/lib/module/components/notification/actionable-inline/warning/Warning.js +44 -0
- package/lib/module/components/notification/actionable-inline/warning/Warning.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/warning/WarningProps.js +4 -0
- package/lib/module/components/notification/actionable-inline/warning/WarningProps.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/warning/WarningRef.js +4 -0
- package/lib/module/components/notification/actionable-inline/warning/WarningRef.js.map +1 -0
- package/lib/module/components/notification/actionable-inline/warning/index.js +3 -41
- package/lib/module/components/notification/actionable-inline/warning/index.js.map +1 -1
- package/lib/module/components/notification/base/Base.js +167 -0
- package/lib/module/components/notification/base/Base.js.map +1 -0
- package/lib/module/components/notification/base/BaseProps.js +4 -0
- package/lib/module/components/notification/base/BaseProps.js.map +1 -0
- package/lib/module/components/notification/base/BaseRef.js +4 -0
- package/lib/module/components/notification/base/BaseRef.js.map +1 -0
- package/lib/module/components/notification/base/index.js +3 -162
- package/lib/module/components/notification/base/index.js.map +1 -1
- package/lib/module/components/notification/callout/error/Error.js +45 -0
- package/lib/module/components/notification/callout/error/Error.js.map +1 -0
- package/lib/module/components/notification/callout/error/ErrorProps.js +4 -0
- package/lib/module/components/notification/callout/error/ErrorProps.js.map +1 -0
- package/lib/module/components/notification/callout/error/ErrorRef.js +4 -0
- package/lib/module/components/notification/callout/error/ErrorRef.js.map +1 -0
- package/lib/module/components/notification/callout/error/index.js +3 -42
- package/lib/module/components/notification/callout/error/index.js.map +1 -1
- package/lib/module/components/notification/callout/informational/Informational.js +45 -0
- package/lib/module/components/notification/callout/informational/Informational.js.map +1 -0
- package/lib/module/components/notification/callout/informational/InformationalProps.js +4 -0
- package/lib/module/components/notification/callout/informational/InformationalProps.js.map +1 -0
- package/lib/module/components/notification/callout/informational/InformationalRef.js +4 -0
- package/lib/module/components/notification/callout/informational/InformationalRef.js.map +1 -0
- package/lib/module/components/notification/callout/informational/index.js +3 -42
- package/lib/module/components/notification/callout/informational/index.js.map +1 -1
- package/lib/module/components/notification/callout/success/Success.js +45 -0
- package/lib/module/components/notification/callout/success/Success.js.map +1 -0
- package/lib/module/components/notification/callout/success/SuccessProps.js +4 -0
- package/lib/module/components/notification/callout/success/SuccessProps.js.map +1 -0
- package/lib/module/components/notification/callout/success/SuccessRef.js +4 -0
- package/lib/module/components/notification/callout/success/SuccessRef.js.map +1 -0
- package/lib/module/components/notification/callout/success/index.js +3 -42
- package/lib/module/components/notification/callout/success/index.js.map +1 -1
- package/lib/module/components/notification/callout/warning/Warning.js +45 -0
- package/lib/module/components/notification/callout/warning/Warning.js.map +1 -0
- package/lib/module/components/notification/callout/warning/WarningProps.js +4 -0
- package/lib/module/components/notification/callout/warning/WarningProps.js.map +1 -0
- package/lib/module/components/notification/callout/warning/WarningRef.js +4 -0
- package/lib/module/components/notification/callout/warning/WarningRef.js.map +1 -0
- package/lib/module/components/notification/callout/warning/index.js +3 -42
- package/lib/module/components/notification/callout/warning/index.js.map +1 -1
- package/lib/module/components/notification/callout-inline/error/Error.js +44 -0
- package/lib/module/components/notification/callout-inline/error/Error.js.map +1 -0
- package/lib/module/components/notification/callout-inline/error/ErrorProps.js +4 -0
- package/lib/module/components/notification/callout-inline/error/ErrorProps.js.map +1 -0
- package/lib/module/components/notification/callout-inline/error/ErrorRef.js +4 -0
- package/lib/module/components/notification/callout-inline/error/ErrorRef.js.map +1 -0
- package/lib/module/components/notification/callout-inline/error/index.js +3 -41
- package/lib/module/components/notification/callout-inline/error/index.js.map +1 -1
- package/lib/module/components/notification/callout-inline/informational/Informational.js +44 -0
- package/lib/module/components/notification/callout-inline/informational/Informational.js.map +1 -0
- package/lib/module/components/notification/callout-inline/informational/InformationalProps.js +4 -0
- package/lib/module/components/notification/callout-inline/informational/InformationalProps.js.map +1 -0
- package/lib/module/components/notification/callout-inline/informational/InformationalRef.js +4 -0
- package/lib/module/components/notification/callout-inline/informational/InformationalRef.js.map +1 -0
- package/lib/module/components/notification/callout-inline/informational/index.js +3 -41
- package/lib/module/components/notification/callout-inline/informational/index.js.map +1 -1
- package/lib/module/components/notification/callout-inline/success/Success.js +44 -0
- package/lib/module/components/notification/callout-inline/success/Success.js.map +1 -0
- package/lib/module/components/notification/callout-inline/success/SuccessProps.js +4 -0
- package/lib/module/components/notification/callout-inline/success/SuccessProps.js.map +1 -0
- package/lib/module/components/notification/callout-inline/success/SuccessRef.js +4 -0
- package/lib/module/components/notification/callout-inline/success/SuccessRef.js.map +1 -0
- package/lib/module/components/notification/callout-inline/success/index.js +3 -41
- package/lib/module/components/notification/callout-inline/success/index.js.map +1 -1
- package/lib/module/components/notification/callout-inline/warning/Warning.js +44 -0
- package/lib/module/components/notification/callout-inline/warning/Warning.js.map +1 -0
- package/lib/module/components/notification/callout-inline/warning/WarningProps.js +4 -0
- package/lib/module/components/notification/callout-inline/warning/WarningProps.js.map +1 -0
- package/lib/module/components/notification/callout-inline/warning/WarningRef.js +4 -0
- package/lib/module/components/notification/callout-inline/warning/WarningRef.js.map +1 -0
- package/lib/module/components/notification/callout-inline/warning/index.js +3 -41
- package/lib/module/components/notification/callout-inline/warning/index.js.map +1 -1
- package/lib/module/components/notification/index.js +1 -0
- package/lib/module/components/notification/index.js.map +1 -1
- package/lib/module/components/notification/subtitle/Subtitle.js +30 -0
- package/lib/module/components/notification/subtitle/Subtitle.js.map +1 -0
- package/lib/module/components/notification/subtitle/SubtitleProps.js +4 -0
- package/lib/module/components/notification/subtitle/SubtitleProps.js.map +1 -0
- package/lib/module/components/notification/subtitle/SubtitleRef.js +4 -0
- package/lib/module/components/notification/subtitle/SubtitleRef.js.map +1 -0
- package/lib/module/components/notification/subtitle/index.js +3 -23
- package/lib/module/components/notification/subtitle/index.js.map +1 -1
- package/lib/module/components/notification/subtitle-link/SubtitleLink.js +29 -0
- package/lib/module/components/notification/subtitle-link/SubtitleLink.js.map +1 -0
- package/lib/module/components/notification/subtitle-link/SubtitleLinkProps.js +4 -0
- package/lib/module/components/notification/subtitle-link/SubtitleLinkProps.js.map +1 -0
- package/lib/module/components/notification/subtitle-link/SubtitleLinkRef.js +4 -0
- package/lib/module/components/notification/subtitle-link/SubtitleLinkRef.js.map +1 -0
- package/lib/module/components/notification/subtitle-link/index.js +3 -22
- package/lib/module/components/notification/subtitle-link/index.js.map +1 -1
- package/lib/module/components/notification/toast/error/Error.js +45 -0
- package/lib/module/components/notification/toast/error/Error.js.map +1 -0
- package/lib/module/components/notification/toast/error/ErrorProps.js +4 -0
- package/lib/module/components/notification/toast/error/ErrorProps.js.map +1 -0
- package/lib/module/components/notification/toast/error/ErrorRef.js +4 -0
- package/lib/module/components/notification/toast/error/ErrorRef.js.map +1 -0
- package/lib/module/components/notification/toast/error/index.js +3 -42
- package/lib/module/components/notification/toast/error/index.js.map +1 -1
- package/lib/module/components/notification/toast/informational/Informational.js +45 -0
- package/lib/module/components/notification/toast/informational/Informational.js.map +1 -0
- package/lib/module/components/notification/toast/informational/InformationalProps.js +4 -0
- package/lib/module/components/notification/toast/informational/InformationalProps.js.map +1 -0
- package/lib/module/components/notification/toast/informational/InformationalRef.js +4 -0
- package/lib/module/components/notification/toast/informational/InformationalRef.js.map +1 -0
- package/lib/module/components/notification/toast/informational/index.js +3 -42
- package/lib/module/components/notification/toast/informational/index.js.map +1 -1
- package/lib/module/components/notification/toast/success/Success.js +45 -0
- package/lib/module/components/notification/toast/success/Success.js.map +1 -0
- package/lib/module/components/notification/toast/success/SuccessProps.js +4 -0
- package/lib/module/components/notification/toast/success/SuccessProps.js.map +1 -0
- package/lib/module/components/notification/toast/success/SuccessRef.js +4 -0
- package/lib/module/components/notification/toast/success/SuccessRef.js.map +1 -0
- package/lib/module/components/notification/toast/success/index.js +3 -42
- package/lib/module/components/notification/toast/success/index.js.map +1 -1
- package/lib/module/components/notification/toast/warning/Warning.js +45 -0
- package/lib/module/components/notification/toast/warning/Warning.js.map +1 -0
- package/lib/module/components/notification/toast/warning/WarningProps.js +4 -0
- package/lib/module/components/notification/toast/warning/WarningProps.js.map +1 -0
- package/lib/module/components/notification/toast/warning/WarningRef.js +4 -0
- package/lib/module/components/notification/toast/warning/WarningRef.js.map +1 -0
- package/lib/module/components/notification/toast/warning/index.js +3 -42
- package/lib/module/components/notification/toast/warning/index.js.map +1 -1
- package/lib/module/components/radio-button/RadioButton.js +108 -0
- package/lib/module/components/radio-button/RadioButton.js.map +1 -0
- package/lib/module/components/radio-button/RadioButtonProps.js +4 -0
- package/lib/module/components/radio-button/RadioButtonProps.js.map +1 -0
- package/lib/module/components/radio-button/RadioButtonRef.js +4 -0
- package/lib/module/components/radio-button/RadioButtonRef.js.map +1 -0
- package/lib/module/components/radio-button/_RefBase.js +4 -0
- package/lib/module/components/radio-button/_RefBase.js.map +1 -0
- package/lib/module/components/radio-button/index.js +3 -99
- package/lib/module/components/radio-button/index.js.map +1 -1
- package/lib/module/components/radio-button-group/RadioButtonGroup.js +134 -0
- package/lib/module/components/radio-button-group/RadioButtonGroup.js.map +1 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupHelperTextMode.js +2 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupHelperTextMode.js.map +1 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupItemProps.js +4 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupItemProps.js.map +1 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupItemRef.js +4 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupItemRef.js.map +1 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupProps.js +4 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupProps.js.map +1 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupRef.js +4 -0
- package/lib/module/components/radio-button-group/RadioButtonGroupRef.js.map +1 -0
- package/lib/module/components/radio-button-group/_Item.js +52 -0
- package/lib/module/components/radio-button-group/_Item.js.map +1 -0
- package/lib/module/components/radio-button-group/_RefBase.js +4 -0
- package/lib/module/components/radio-button-group/_RefBase.js.map +1 -0
- package/lib/module/components/radio-button-group/_item-context.js +1 -1
- package/lib/module/components/radio-button-group/_item-context.js.map +1 -1
- package/lib/module/components/radio-button-group/index.js +6 -133
- package/lib/module/components/radio-button-group/index.js.map +1 -1
- package/lib/module/components/radio-button-input/RadioButtonInput.js +164 -0
- package/lib/module/components/radio-button-input/RadioButtonInput.js.map +1 -0
- package/lib/module/components/radio-button-input/RadioButtonInputInteractiveState.js +2 -0
- package/lib/module/components/radio-button-input/RadioButtonInputInteractiveState.js.map +1 -0
- package/lib/module/components/radio-button-input/RadioButtonInputProps.js +4 -0
- package/lib/module/components/radio-button-input/RadioButtonInputProps.js.map +1 -0
- package/lib/module/components/radio-button-input/RadioButtonInputRef.js +4 -0
- package/lib/module/components/radio-button-input/RadioButtonInputRef.js.map +1 -0
- package/lib/module/components/radio-button-input/_RefBase.js +2 -0
- package/lib/module/components/radio-button-input/_RefBase.js.map +1 -0
- package/lib/module/components/radio-button-input/index.js +4 -193
- package/lib/module/components/radio-button-input/index.js.map +1 -1
- package/lib/module/components/switch/Switch.js +282 -0
- package/lib/module/components/switch/Switch.js.map +1 -0
- package/lib/module/components/switch/SwitchProps.js +4 -0
- package/lib/module/components/switch/SwitchProps.js.map +1 -0
- package/lib/module/components/switch/SwitchRef.js +4 -0
- package/lib/module/components/switch/SwitchRef.js.map +1 -0
- package/lib/module/components/switch/SwitchSize.js +2 -0
- package/lib/module/components/switch/SwitchSize.js.map +1 -0
- package/lib/module/components/switch/SwitchState.js +2 -0
- package/lib/module/components/switch/SwitchState.js.map +1 -0
- package/lib/module/components/switch/_RefBase.js +2 -0
- package/lib/module/components/switch/_RefBase.js.map +1 -0
- package/lib/module/components/switch/index.js +5 -235
- package/lib/module/components/switch/index.js.map +1 -1
- package/lib/module/components/text/Text.js +65 -0
- package/lib/module/components/text/Text.js.map +1 -0
- package/lib/module/components/text/TextProps.js +4 -0
- package/lib/module/components/text/TextProps.js.map +1 -0
- package/lib/module/components/text/TextRef.js +4 -0
- package/lib/module/components/text/TextRef.js.map +1 -0
- package/lib/module/components/text/index.js +3 -63
- package/lib/module/components/text/index.js.map +1 -1
- package/lib/module/components/text-area/TextArea.js +203 -0
- package/lib/module/components/text-area/TextArea.js.map +1 -0
- package/lib/module/components/text-area/TextAreaProps.js +4 -0
- package/lib/module/components/text-area/TextAreaProps.js.map +1 -0
- package/lib/module/components/text-area/TextAreaRef.js +4 -0
- package/lib/module/components/text-area/TextAreaRef.js.map +1 -0
- package/lib/module/components/text-area/_TextAreaRefBase.js +4 -0
- package/lib/module/components/text-area/_TextAreaRefBase.js.map +1 -0
- package/lib/module/components/text-area/index.js +4 -0
- package/lib/module/components/text-area/index.js.map +1 -0
- package/lib/module/components/text-area-field/TextAreaField.js +39 -0
- package/lib/module/components/text-area-field/TextAreaField.js.map +1 -0
- package/lib/module/components/text-area-field/TextAreaFieldInteractiveState.js +4 -0
- package/lib/module/components/text-area-field/TextAreaFieldInteractiveState.js.map +1 -0
- package/lib/module/components/text-area-field/TextAreaFieldProps.js +4 -0
- package/lib/module/components/text-area-field/TextAreaFieldProps.js.map +1 -0
- package/lib/module/components/text-area-field/TextAreaFieldRef.js +4 -0
- package/lib/module/components/text-area-field/TextAreaFieldRef.js.map +1 -0
- package/lib/module/components/text-area-field/index.js +4 -0
- package/lib/module/components/text-area-field/index.js.map +1 -0
- package/lib/module/components/text-area-fluid/TextAreaFluid.js +80 -0
- package/lib/module/components/text-area-fluid/TextAreaFluid.js.map +1 -0
- package/lib/module/components/text-area-fluid/TextAreaFluidProps.js +4 -0
- package/lib/module/components/text-area-fluid/TextAreaFluidProps.js.map +1 -0
- package/lib/module/components/text-area-fluid/TextAreaFluidRef.js +4 -0
- package/lib/module/components/text-area-fluid/TextAreaFluidRef.js.map +1 -0
- package/lib/module/components/text-area-fluid/index.js +4 -0
- package/lib/module/components/text-area-fluid/index.js.map +1 -0
- package/lib/module/components/text-input/TextInput.js +207 -0
- package/lib/module/components/text-input/TextInput.js.map +1 -0
- package/lib/module/components/text-input/TextInputProps.js +4 -0
- package/lib/module/components/text-input/TextInputProps.js.map +1 -0
- package/lib/module/components/text-input/TextInputRef.js +4 -0
- package/lib/module/components/text-input/TextInputRef.js.map +1 -0
- package/lib/module/components/text-input/TextInputSize.js +4 -0
- package/lib/module/components/text-input/TextInputSize.js.map +1 -0
- package/lib/module/components/text-input/_TextInputRefBase.js +4 -0
- package/lib/module/components/text-input/_TextInputRefBase.js.map +1 -0
- package/lib/module/components/text-input/index.js +4 -0
- package/lib/module/components/text-input/index.js.map +1 -0
- package/lib/module/components/text-input-field/TextInputField.js +298 -0
- package/lib/module/components/text-input-field/TextInputField.js.map +1 -0
- package/lib/module/components/text-input-field/TextInputFieldInteractiveState.js +2 -0
- package/lib/module/components/text-input-field/TextInputFieldInteractiveState.js.map +1 -0
- package/lib/module/components/text-input-field/TextInputFieldProps.js +4 -0
- package/lib/module/components/text-input-field/TextInputFieldProps.js.map +1 -0
- package/lib/module/components/text-input-field/TextInputFieldRef.js +4 -0
- package/lib/module/components/text-input-field/TextInputFieldRef.js.map +1 -0
- package/lib/module/components/text-input-field/TextInputFieldSize.js +2 -0
- package/lib/module/components/text-input-field/TextInputFieldSize.js.map +1 -0
- package/lib/module/components/text-input-field/_rn-text-input/RNTextInput.js +91 -0
- package/lib/module/components/text-input-field/_rn-text-input/RNTextInput.js.map +1 -0
- package/lib/module/components/text-input-field/_rn-text-input/RNTextInputProps.js +4 -0
- package/lib/module/components/text-input-field/_rn-text-input/RNTextInputProps.js.map +1 -0
- package/lib/module/components/text-input-field/_rn-text-input/RNTextInputRef.js +4 -0
- package/lib/module/components/text-input-field/_rn-text-input/RNTextInputRef.js.map +1 -0
- package/lib/module/components/text-input-field/_rn-text-input/index.js +4 -0
- package/lib/module/components/text-input-field/_rn-text-input/index.js.map +1 -0
- package/lib/module/components/text-input-field/index.js +4 -0
- package/lib/module/components/text-input-field/index.js.map +1 -0
- package/lib/module/components/text-input-fluid/TextInputFluid.js +86 -0
- package/lib/module/components/text-input-fluid/TextInputFluid.js.map +1 -0
- package/lib/module/components/text-input-fluid/TextInputFluidProps.js +4 -0
- package/lib/module/components/text-input-fluid/TextInputFluidProps.js.map +1 -0
- package/lib/module/components/text-input-fluid/TextInputFluidRef.js +4 -0
- package/lib/module/components/text-input-fluid/TextInputFluidRef.js.map +1 -0
- package/lib/module/components/text-input-fluid/index.js +4 -0
- package/lib/module/components/text-input-fluid/index.js.map +1 -0
- package/lib/module/components/toggle/State.js +4 -0
- package/lib/module/components/toggle/State.js.map +1 -0
- package/lib/module/components/toggle/base/Base.js +163 -0
- package/lib/module/components/toggle/base/Base.js.map +1 -0
- package/lib/module/components/toggle/base/BaseProps.js +4 -0
- package/lib/module/components/toggle/base/BaseProps.js.map +1 -0
- package/lib/module/components/toggle/base/BaseRef.js +4 -0
- package/lib/module/components/toggle/base/BaseRef.js.map +1 -0
- package/lib/module/components/toggle/base/_RefBase.js +4 -0
- package/lib/module/components/toggle/base/_RefBase.js.map +1 -0
- package/lib/module/components/toggle/base/index.js +3 -108
- package/lib/module/components/toggle/base/index.js.map +1 -1
- package/lib/module/components/toggle/default/Default.js +19 -0
- package/lib/module/components/toggle/default/Default.js.map +1 -0
- package/lib/module/components/toggle/default/DefaultProps.js +4 -0
- package/lib/module/components/toggle/default/DefaultProps.js.map +1 -0
- package/lib/module/components/toggle/default/DefaultRef.js +4 -0
- package/lib/module/components/toggle/default/DefaultRef.js.map +1 -0
- package/lib/module/components/toggle/default/index.js +3 -16
- package/lib/module/components/toggle/default/index.js.map +1 -1
- package/lib/module/components/toggle/index.js +1 -1
- package/lib/module/components/toggle/small/Small.js +19 -0
- package/lib/module/components/toggle/small/Small.js.map +1 -0
- package/lib/module/components/toggle/small/SmallProps.js +4 -0
- package/lib/module/components/toggle/small/SmallProps.js.map +1 -0
- package/lib/module/components/toggle/small/SmallRef.js +4 -0
- package/lib/module/components/toggle/small/SmallRef.js.map +1 -0
- package/lib/module/components/toggle/small/index.js +3 -16
- package/lib/module/components/toggle/small/index.js.map +1 -1
- package/lib/module/const/dialog-animation-configs/carbon-react.js +26 -0
- package/lib/module/const/dialog-animation-configs/carbon-react.js.map +1 -0
- package/lib/module/const/dialog-animation-configs/fade-bottom-up-2.js +23 -0
- package/lib/module/const/dialog-animation-configs/fade-bottom-up-2.js.map +1 -0
- package/lib/module/const/dialog-animation-configs/fade-bottom-up.js +23 -0
- package/lib/module/const/dialog-animation-configs/fade-bottom-up.js.map +1 -0
- package/lib/module/const/dialog-animation-configs/index.js +6 -0
- package/lib/module/const/dialog-animation-configs/index.js.map +1 -0
- package/lib/module/const/index.js +5 -0
- package/lib/module/const/index.js.map +1 -0
- package/lib/module/contexts/breakpoint/BreakpointContext.js +7 -0
- package/lib/module/contexts/breakpoint/BreakpointContext.js.map +1 -0
- package/lib/module/contexts/breakpoint/index.js +4 -0
- package/lib/module/contexts/breakpoint/index.js.map +1 -0
- package/lib/module/contexts/dialog/DialogContext.js +16 -0
- package/lib/module/contexts/dialog/DialogContext.js.map +1 -0
- package/lib/module/contexts/dialog/DialogData.js +2 -0
- package/lib/module/contexts/dialog/DialogData.js.map +1 -0
- package/lib/module/contexts/dialog/DialogType.js +9 -0
- package/lib/module/contexts/dialog/DialogType.js.map +1 -0
- package/lib/module/contexts/dialog/index.js +4 -0
- package/lib/module/contexts/dialog/index.js.map +1 -0
- package/lib/module/contexts/index.js +4 -3
- package/lib/module/contexts/index.js.map +1 -1
- package/lib/module/contexts/theme/ThemeContext.js +12 -0
- package/lib/module/contexts/theme/ThemeContext.js.map +1 -0
- package/lib/module/contexts/theme/index.js +1 -7
- package/lib/module/contexts/theme/index.js.map +1 -1
- package/lib/module/contexts/toast/ToastContext.js +12 -0
- package/lib/module/contexts/toast/ToastContext.js.map +1 -0
- package/lib/module/contexts/toast/ToastContextShowConfig.js +2 -0
- package/lib/module/contexts/toast/ToastContextShowConfig.js.map +1 -0
- package/lib/module/contexts/toast/index.js +2 -9
- package/lib/module/contexts/toast/index.js.map +1 -1
- package/lib/module/helpers/breakpoint/get-token.js +7 -0
- package/lib/module/helpers/breakpoint/get-token.js.map +1 -0
- package/lib/module/helpers/breakpoint/index.js +4 -0
- package/lib/module/helpers/breakpoint/index.js.map +1 -0
- package/lib/module/helpers/color/get-color-token.js +2 -2
- package/lib/module/helpers/color/get-color-token.js.map +1 -1
- package/lib/module/helpers/index.js +2 -1
- package/lib/module/helpers/index.js.map +1 -1
- package/lib/module/hooks/breakpoint/index.js +4 -0
- package/lib/module/hooks/breakpoint/index.js.map +1 -0
- package/lib/module/hooks/breakpoint/use.js +13 -0
- package/lib/module/hooks/breakpoint/use.js.map +1 -0
- package/lib/module/hooks/index.js +6 -0
- package/lib/module/hooks/index.js.map +1 -0
- package/lib/module/index.js +4 -4
- package/lib/module/index.js.map +1 -1
- package/lib/module/package.json +1 -0
- package/lib/module/providers/dialog/DialogProvider.js +70 -0
- package/lib/module/providers/dialog/DialogProvider.js.map +1 -0
- package/lib/module/providers/dialog/DialogProviderAnimationConfig.js +4 -0
- package/lib/module/providers/dialog/DialogProviderAnimationConfig.js.map +1 -0
- package/lib/module/providers/dialog/DialogProviderProps.js +4 -0
- package/lib/module/providers/dialog/DialogProviderProps.js.map +1 -0
- package/lib/module/providers/dialog/DialogProviderRef.js +4 -0
- package/lib/module/providers/dialog/DialogProviderRef.js.map +1 -0
- package/lib/module/providers/dialog/_controller/Controller.js +127 -0
- package/lib/module/providers/dialog/_controller/Controller.js.map +1 -0
- package/lib/module/providers/dialog/_controller/ControllerProps.js +4 -0
- package/lib/module/providers/dialog/_controller/ControllerProps.js.map +1 -0
- package/lib/module/providers/dialog/_controller/ControllerRef.js +4 -0
- package/lib/module/providers/dialog/_controller/ControllerRef.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_modal/Modal.js +77 -0
- package/lib/module/providers/dialog/_controller/_modal/Modal.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_modal/ModalProps.js +4 -0
- package/lib/module/providers/dialog/_controller/_modal/ModalProps.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_modal/ModalRef.js +4 -0
- package/lib/module/providers/dialog/_controller/_modal/ModalRef.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_modal/_Interpolation.js +2 -0
- package/lib/module/providers/dialog/_controller/_modal/_Interpolation.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_modal/index.js +4 -0
- package/lib/module/providers/dialog/_controller/_modal/index.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_overlay/Overlay.js +69 -0
- package/lib/module/providers/dialog/_controller/_overlay/Overlay.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_overlay/OverlayProps.js +4 -0
- package/lib/module/providers/dialog/_controller/_overlay/OverlayProps.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_overlay/OverlayRef.js +4 -0
- package/lib/module/providers/dialog/_controller/_overlay/OverlayRef.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_overlay/_OverlayRefBase.js +2 -0
- package/lib/module/providers/dialog/_controller/_overlay/_OverlayRefBase.js.map +1 -0
- package/lib/module/providers/dialog/_controller/_overlay/index.js +4 -0
- package/lib/module/providers/dialog/_controller/_overlay/index.js.map +1 -0
- package/lib/module/providers/dialog/_controller/index.js +4 -0
- package/lib/module/providers/dialog/_controller/index.js.map +1 -0
- package/lib/module/providers/dialog/index.js +4 -0
- package/lib/module/providers/dialog/index.js.map +1 -0
- package/lib/module/providers/index.js +2 -3
- package/lib/module/providers/index.js.map +1 -1
- package/lib/module/providers/toast/ToastProvider.js +33 -0
- package/lib/module/providers/toast/ToastProvider.js.map +1 -0
- package/lib/module/providers/toast/ToastProviderProps.js +2 -0
- package/lib/module/providers/toast/ToastProviderProps.js.map +1 -0
- package/lib/module/providers/toast/ToastRef.js +4 -0
- package/lib/module/providers/toast/ToastRef.js.map +1 -0
- package/lib/module/providers/toast/_overlay/Overlay.js +97 -0
- package/lib/module/providers/toast/_overlay/Overlay.js.map +1 -0
- package/lib/module/providers/toast/_overlay/OverlayRef.js +4 -0
- package/lib/module/providers/toast/_overlay/OverlayRef.js.map +1 -0
- package/lib/module/providers/toast/_overlay/_component-wrapper/ComponentWrapper.js +99 -0
- package/lib/module/providers/toast/_overlay/_component-wrapper/ComponentWrapper.js.map +1 -0
- package/lib/module/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.js +4 -0
- package/lib/module/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.js.map +1 -0
- package/lib/module/providers/toast/_overlay/_component-wrapper/ComponentWrapperRef.js +2 -0
- package/lib/module/providers/toast/_overlay/_component-wrapper/ComponentWrapperRef.js.map +1 -0
- package/lib/module/providers/toast/_overlay/_component-wrapper/index.js +4 -0
- package/lib/module/providers/toast/_overlay/_component-wrapper/index.js.map +1 -0
- package/lib/module/providers/toast/_overlay/index.js +1 -141
- package/lib/module/providers/toast/_overlay/index.js.map +1 -1
- package/lib/module/providers/toast/index.js +3 -30
- package/lib/module/providers/toast/index.js.map +1 -1
- package/lib/module/types/theme/ColorScheme.js +2 -0
- package/lib/module/types/theme/ColorScheme.js.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/button-group/ButtonGroupContext.d.ts +9 -0
- package/lib/typescript/commonjs/_internal/contexts/button-group/ButtonGroupContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/button-group/index.d.ts +2 -0
- package/lib/typescript/commonjs/_internal/contexts/button-group/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/global-config/GlobalConfigContext.d.ts +18 -0
- package/lib/typescript/commonjs/_internal/contexts/global-config/GlobalConfigContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/global-config/index.d.ts +2 -0
- package/lib/typescript/commonjs/_internal/contexts/global-config/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/index.d.ts +4 -0
- package/lib/typescript/commonjs/_internal/contexts/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/modal/ModalContext.d.ts +6 -0
- package/lib/typescript/commonjs/_internal/contexts/modal/ModalContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/modal/index.d.ts +2 -0
- package/lib/typescript/commonjs/_internal/contexts/modal/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/globals/breakpoint/index.d.ts +4 -0
- package/lib/typescript/commonjs/_internal/globals/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/globals/color-scheme/index.d.ts +5 -0
- package/lib/typescript/commonjs/_internal/globals/color-scheme/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/globals/index.d.ts +4 -0
- package/lib/typescript/commonjs/_internal/globals/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/helpers/index.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/helpers/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/helpers/math/clamp.d.ts +2 -0
- package/lib/typescript/commonjs/_internal/helpers/math/clamp.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/helpers/math/index.d.ts +2 -0
- package/lib/typescript/commonjs/_internal/helpers/math/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/breakpoint/BreakpointProvider.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/providers/breakpoint/BreakpointProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/breakpoint/BreakpointProviderProps.d.ts +4 -0
- package/lib/typescript/commonjs/_internal/providers/breakpoint/BreakpointProviderProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/breakpoint/index.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/providers/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProvider.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProviderProps.d.ts +5 -0
- package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProviderProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/global-config/index.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/providers/global-config/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/index.d.ts +4 -0
- package/lib/typescript/commonjs/_internal/providers/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/theme/ThemeProvider.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/providers/theme/ThemeProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/theme/ThemeProviderProps.d.ts +6 -0
- package/lib/typescript/commonjs/_internal/providers/theme/ThemeProviderProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/theme/index.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/providers/theme/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/style-sheets/common-style-sheet.d.ts +18 -0
- package/lib/typescript/commonjs/_internal/style-sheets/common-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/style-sheets/flex-style-sheet.d.ts +81 -0
- package/lib/typescript/commonjs/_internal/style-sheets/flex-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/style-sheets/index.d.ts +4 -0
- package/lib/typescript/commonjs/_internal/style-sheets/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/style-sheets/text-style-sheet.d.ts +59 -0
- package/lib/typescript/commonjs/_internal/style-sheets/text-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/carbon-react-native/CarbonReactNative.d.ts +3 -0
- package/lib/typescript/commonjs/carbon-react-native/CarbonReactNative.d.ts.map +1 -0
- package/lib/typescript/commonjs/carbon-react-native/CarbonReactNativeProps.d.ts +4 -0
- package/lib/typescript/commonjs/carbon-react-native/CarbonReactNativeProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/carbon-react-native/index.d.ts +3 -0
- package/lib/typescript/commonjs/carbon-react-native/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/carbon-style-sheet/breakpoint.d.ts +12 -0
- package/lib/typescript/commonjs/carbon-style-sheet/breakpoint.d.ts.map +1 -0
- package/lib/typescript/commonjs/carbon-style-sheet/color.d.ts +3 -0
- package/lib/typescript/commonjs/carbon-style-sheet/color.d.ts.map +1 -0
- package/lib/typescript/commonjs/carbon-style-sheet/create.d.ts +44 -0
- package/lib/typescript/commonjs/carbon-style-sheet/create.d.ts.map +1 -0
- package/lib/typescript/commonjs/carbon-style-sheet/index.d.ts +30 -0
- package/lib/typescript/commonjs/carbon-style-sheet/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/carbon-style-sheet/use.d.ts +5 -0
- package/lib/typescript/commonjs/carbon-style-sheet/use.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/Accordion.d.ts +6 -0
- package/lib/typescript/commonjs/components/accordion/Accordion.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/AccordionHeaderProps.d.ts +12 -0
- package/lib/typescript/commonjs/components/accordion/AccordionHeaderProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/AccordionItemProps.d.ts +12 -0
- package/lib/typescript/commonjs/components/accordion/AccordionItemProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/AccordionItemRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/accordion/AccordionItemRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/AccordionProps.d.ts +14 -0
- package/lib/typescript/commonjs/components/accordion/AccordionProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/AccordionRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/accordion/AccordionRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/AccordionSize.d.ts +2 -0
- package/lib/typescript/commonjs/components/accordion/AccordionSize.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_Header.d.ts +3 -0
- package/lib/typescript/commonjs/components/accordion/_Header.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_HeaderBorder.d.ts +10 -0
- package/lib/typescript/commonjs/components/accordion/_HeaderBorder.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_Item.d.ts +4 -0
- package/lib/typescript/commonjs/components/accordion/_Item.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_ItemRefBase.d.ts +8 -0
- package/lib/typescript/commonjs/components/accordion/_ItemRefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_chevron/Chevron.d.ts +3 -0
- package/lib/typescript/commonjs/components/accordion/_chevron/Chevron.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_chevron/ChevronProps.d.ts +8 -0
- package/lib/typescript/commonjs/components/accordion/_chevron/ChevronProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_chevron/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/accordion/_chevron/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_context.d.ts +9 -0
- package/lib/typescript/commonjs/components/accordion/_context.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_motion.d.ts +3 -0
- package/lib/typescript/commonjs/components/accordion/_motion.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/_styles.d.ts +16 -0
- package/lib/typescript/commonjs/components/accordion/_styles.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/accordion/index.d.ts +8 -0
- package/lib/typescript/commonjs/components/accordion/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/Size.d.ts +2 -0
- package/lib/typescript/commonjs/components/button/Size.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/base/Base.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/base/Base.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/base/BaseProps.d.ts +44 -0
- package/lib/typescript/commonjs/components/button/base/BaseProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/base/BaseRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/base/BaseRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/base/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/base/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/base-color/BaseColor.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/base-color/BaseColor.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/base-color/BaseColorProps.d.ts +20 -0
- package/lib/typescript/commonjs/components/button/base-color/BaseColorProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/base-color/BaseColorRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/base-color/BaseColorRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/base-color/BaseColorState.d.ts +2 -0
- package/lib/typescript/commonjs/components/button/base-color/BaseColorState.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/base-color/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/button/base-color/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost/Ghost.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost/Ghost.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost/GhostProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost/GhostProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost/GhostRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost/GhostRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost-danger/GhostDanger.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost-danger/GhostDanger.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost-danger/GhostDangerProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost-danger/GhostDangerProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost-danger/GhostDangerRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost-danger/GhostDangerRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost-danger/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost-danger/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost-icon/GhostIcon.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost-icon/GhostIcon.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost-icon/GhostIconProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/button/ghost-icon/GhostIconProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost-icon/GhostIconRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost-icon/GhostIconRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/ghost-icon/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/ghost-icon/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/index.d.ts +12 -0
- package/lib/typescript/commonjs/components/button/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/primary/Primary.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/primary/Primary.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/primary/PrimaryProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/primary/PrimaryProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/primary/PrimaryRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/primary/PrimaryRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/primary/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/primary/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/primary-danger/PrimaryDanger.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/primary-danger/PrimaryDanger.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/primary-danger/PrimaryDangerProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/primary-danger/PrimaryDangerProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/primary-danger/PrimaryDangerRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/primary-danger/PrimaryDangerRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/primary-danger/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/primary-danger/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/secondary/Secondary.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/secondary/Secondary.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/secondary/SecondaryProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/secondary/SecondaryProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/secondary/SecondaryRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/secondary/SecondaryRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/secondary/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/secondary/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/tertiary/Tertiary.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/tertiary/Tertiary.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/tertiary/TertiaryProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/tertiary/TertiaryProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/tertiary/TertiaryRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/tertiary/TertiaryRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/tertiary/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/tertiary/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/tertiary-danger/TertiaryDanger.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/tertiary-danger/TertiaryDanger.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/tertiary-danger/TertiaryDangerProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/tertiary-danger/TertiaryDangerProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/tertiary-danger/TertiaryDangerRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/tertiary-danger/TertiaryDangerRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/tertiary-danger/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button/tertiary-danger/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button-group/ButtonGroup.d.ts +4 -0
- package/lib/typescript/commonjs/components/button-group/ButtonGroup.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button-group/ButtonGroupProps.d.ts +32 -0
- package/lib/typescript/commonjs/components/button-group/ButtonGroupProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button-group/ButtonGroupRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/button-group/ButtonGroupRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button-group/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/button-group/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox/Checkbox.d.ts +4 -0
- package/lib/typescript/commonjs/components/checkbox/Checkbox.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox/CheckboxProps.d.ts +17 -0
- package/lib/typescript/commonjs/components/checkbox/CheckboxProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox/CheckboxRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/checkbox/CheckboxRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox/_RefBase.d.ts +9 -0
- package/lib/typescript/commonjs/components/checkbox/_RefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/checkbox/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroup.d.ts +6 -0
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroup.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroupHelperTextMode.d.ts +2 -0
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroupHelperTextMode.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroupProps.d.ts +16 -0
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroupProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroupRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroupRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-group/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/checkbox-group/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInput.d.ts +4 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInput.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputInteractiveState.d.ts +2 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputInteractiveState.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputProps.d.ts +11 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputValue.d.ts +5 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputValue.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-input/_RefBase.d.ts +9 -0
- package/lib/typescript/commonjs/components/checkbox-input/_RefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-input/index.d.ts +6 -0
- package/lib/typescript/commonjs/components/checkbox-input/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/collapsible/Collapsible.d.ts +4 -0
- package/lib/typescript/commonjs/components/collapsible/Collapsible.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/collapsible/CollapsibleProps.d.ts +14 -0
- package/lib/typescript/commonjs/components/collapsible/CollapsibleProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/collapsible/CollapsibleRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/collapsible/CollapsibleRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/collapsible/_RefBase.d.ts +7 -0
- package/lib/typescript/commonjs/components/collapsible/_RefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/collapsible/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/collapsible/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperText.d.ts +4 -0
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperText.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperTextProps.d.ts +10 -0
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperTextProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperTextRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperTextRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/form-helper-text/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/form-helper-text/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/form-label/FormLabel.d.ts +4 -0
- package/lib/typescript/commonjs/components/form-label/FormLabel.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/form-label/FormLabelProps.d.ts +9 -0
- package/lib/typescript/commonjs/components/form-label/FormLabelProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/form-label/FormLabelRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/form-label/FormLabelRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/form-label/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/form-label/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/icon/Icon.d.ts +9 -0
- package/lib/typescript/commonjs/components/icon/Icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/icon/IconProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/icon/IconProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/icon/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/icon/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/index.d.ts +30 -0
- package/lib/typescript/commonjs/components/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/inline-loading/InlineLoading.d.ts +4 -0
- package/lib/typescript/commonjs/components/inline-loading/InlineLoading.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/inline-loading/InlineLoadingProps.d.ts +12 -0
- package/lib/typescript/commonjs/components/inline-loading/InlineLoadingProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/inline-loading/InlineLoadingRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/inline-loading/InlineLoadingRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/inline-loading/InlineLoadingState.d.ts +2 -0
- package/lib/typescript/commonjs/components/inline-loading/InlineLoadingState.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/inline-loading/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/inline-loading/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/layer/Layer.d.ts +4 -0
- package/lib/typescript/commonjs/components/layer/Layer.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/layer/LayerContext.d.ts +2 -0
- package/lib/typescript/commonjs/components/layer/LayerContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/layer/LayerProps.d.ts +11 -0
- package/lib/typescript/commonjs/components/layer/LayerProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/layer/LayerRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/layer/LayerRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/layer/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/layer/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/Loading.d.ts +4 -0
- package/lib/typescript/commonjs/components/loading/Loading.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/LoadingProps.d.ts +9 -0
- package/lib/typescript/commonjs/components/loading/LoadingProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/LoadingRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/loading/LoadingRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/LoadingType.d.ts +2 -0
- package/lib/typescript/commonjs/components/loading/LoadingType.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/_circular-progress/CircularProgress.d.ts +6 -0
- package/lib/typescript/commonjs/components/loading/_circular-progress/CircularProgress.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/_circular-progress/CircularProgressProps.d.ts +12 -0
- package/lib/typescript/commonjs/components/loading/_circular-progress/CircularProgressProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/_circular-progress/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/loading/_circular-progress/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/_map-circle-background-color.d.ts +6 -0
- package/lib/typescript/commonjs/components/loading/_map-circle-background-color.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/_map-circle-stroke-color.d.ts +3 -0
- package/lib/typescript/commonjs/components/loading/_map-circle-stroke-color.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/loading/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/loading/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/modal/Modal.d.ts +10 -0
- package/lib/typescript/commonjs/components/modal/Modal.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/modal/ModalProps.d.ts +13 -0
- package/lib/typescript/commonjs/components/modal/ModalProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/modal/ModalRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/modal/ModalRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/modal/ModalSize.d.ts +2 -0
- package/lib/typescript/commonjs/components/modal/ModalSize.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/modal/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/modal/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/modal-content/ModalContent.d.ts +4 -0
- package/lib/typescript/commonjs/components/modal-content/ModalContent.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/modal-content/ModalContentProps.d.ts +5 -0
- package/lib/typescript/commonjs/components/modal-content/ModalContentProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/modal-content/ModalContentRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/modal-content/ModalContentRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/modal-content/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/modal-content/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/NotificationColor.d.ts +2 -0
- package/lib/typescript/commonjs/components/notification/NotificationColor.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_VariantContextProvider.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_VariantContextProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/UseBaseData.d.ts +9 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/UseBaseData.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/UseBaseProps.d.ts +19 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/UseBaseProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/useBase.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/useBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/UseErrorData.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/UseErrorData.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/UseErrorProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/UseErrorProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/useError.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/useError.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/UseInformationalData.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/UseInformationalData.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/UseInformationalProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/UseInformationalProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/useInformational.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/useInformational.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/UseSuccessData.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/UseSuccessData.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/UseSuccessProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/UseSuccessProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/useSuccess.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/useSuccess.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/UseWarningData.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/UseWarningData.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/UseWarningProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/UseWarningProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/useWarning.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/useWarning.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variant-context.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/_variant-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/_ButtonGhost.d.ts +5 -0
- package/lib/typescript/commonjs/components/notification/_variants/_ButtonGhost.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/_ButtonTertiary.d.ts +5 -0
- package/lib/typescript/commonjs/components/notification/_variants/_ButtonTertiary.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariant.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariant.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariantProps.d.ts +27 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariantProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariantRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariantRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariant.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariant.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.d.ts +27 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariant.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariant.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariantProps.d.ts +10 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariantProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariantRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariantRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariant.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariant.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantProps.d.ts +10 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariant.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariant.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariantProps.d.ts +14 -0
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariantProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariantRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariantRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/_variants/toast/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/_variants/toast/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/error/Error.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/error/Error.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/actionable/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/error/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/error/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/informational/Informational.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/actionable/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/informational/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/informational/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/success/Success.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/success/Success.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/actionable/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/success/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/success/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/warning/Warning.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/actionable/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable/warning/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable/warning/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/Error.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/Error.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/Informational.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/Success.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/Success.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/Warning.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/base/Base.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/base/Base.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/base/BaseProps.d.ts +26 -0
- package/lib/typescript/commonjs/components/notification/base/BaseProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/base/BaseRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/base/BaseRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/base/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/base/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/error/Error.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/error/Error.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/callout/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/error/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/error/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/informational/Informational.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/callout/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/informational/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/informational/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/success/Success.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/success/Success.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/callout/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/success/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/success/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/warning/Warning.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/callout/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout/warning/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout/warning/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/error/Error.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/error/Error.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/error/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/error/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/Informational.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/success/Success.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/success/Success.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/success/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/success/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/Warning.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/index.d.ts +11 -0
- package/lib/typescript/commonjs/components/notification/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/subtitle/Subtitle.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/subtitle/Subtitle.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/subtitle/SubtitleProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/subtitle/SubtitleProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/subtitle/SubtitleRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/subtitle/SubtitleRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/subtitle/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/subtitle/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/subtitle-link/SubtitleLink.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/subtitle-link/SubtitleLink.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/subtitle-link/SubtitleLinkProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/subtitle-link/SubtitleLinkProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/subtitle-link/SubtitleLinkRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/subtitle-link/SubtitleLinkRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/subtitle-link/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/subtitle-link/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/error/Error.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/error/Error.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/toast/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/error/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/error/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/informational/Informational.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/toast/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/informational/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/informational/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/success/Success.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/success/Success.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/toast/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/success/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/success/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/warning/Warning.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/notification/toast/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/notification/toast/warning/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/notification/toast/warning/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button/RadioButton.d.ts +4 -0
- package/lib/typescript/commonjs/components/radio-button/RadioButton.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button/RadioButtonProps.d.ts +19 -0
- package/lib/typescript/commonjs/components/radio-button/RadioButtonProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button/RadioButtonRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/radio-button/RadioButtonRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button/_RefBase.d.ts +9 -0
- package/lib/typescript/commonjs/components/radio-button/_RefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/radio-button/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroup.d.ts +6 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroup.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupHelperTextMode.d.ts +2 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupHelperTextMode.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupItemProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupItemProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupItemRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupItemRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupProps.d.ts +20 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/_Item.d.ts +4 -0
- package/lib/typescript/commonjs/components/radio-button-group/_Item.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/_RefBase.d.ts +9 -0
- package/lib/typescript/commonjs/components/radio-button-group/_RefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/_item-context.d.ts +10 -0
- package/lib/typescript/commonjs/components/radio-button-group/_item-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-group/index.d.ts +7 -0
- package/lib/typescript/commonjs/components/radio-button-group/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInput.d.ts +4 -0
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInput.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInputInteractiveState.d.ts +2 -0
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInputInteractiveState.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInputProps.d.ts +11 -0
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInputProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInputRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInputRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-input/_RefBase.d.ts +8 -0
- package/lib/typescript/commonjs/components/radio-button-input/_RefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button-input/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/radio-button-input/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/switch/Switch.d.ts +4 -0
- package/lib/typescript/commonjs/components/switch/Switch.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/switch/SwitchProps.d.ts +27 -0
- package/lib/typescript/commonjs/components/switch/SwitchProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/switch/SwitchRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/switch/SwitchRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/switch/SwitchSize.d.ts +5 -0
- package/lib/typescript/commonjs/components/switch/SwitchSize.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/switch/SwitchState.d.ts +2 -0
- package/lib/typescript/commonjs/components/switch/SwitchState.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/switch/_RefBase.d.ts +8 -0
- package/lib/typescript/commonjs/components/switch/_RefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/switch/index.d.ts +6 -0
- package/lib/typescript/commonjs/components/switch/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text/Text.d.ts +4 -0
- package/lib/typescript/commonjs/components/text/Text.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text/TextProps.d.ts +7 -0
- package/lib/typescript/commonjs/components/text/TextProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text/TextRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/text/TextRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/text/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area/TextArea.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-area/TextArea.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area/TextAreaProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/text-area/TextAreaProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area/TextAreaRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/text-area/TextAreaRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area/_TextAreaRefBase.d.ts +5 -0
- package/lib/typescript/commonjs/components/text-area/_TextAreaRefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-area/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area-field/TextAreaField.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-area-field/TextAreaField.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldInteractiveState.d.ts +3 -0
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldInteractiveState.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area-field/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/text-area-field/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area-fluid/TextAreaFluid.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-area-fluid/TextAreaFluid.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area-fluid/TextAreaFluidProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/text-area-fluid/TextAreaFluidProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area-fluid/TextAreaFluidRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-area-fluid/TextAreaFluidRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-area-fluid/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-area-fluid/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input/TextInput.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-input/TextInput.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input/TextInputProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/text-input/TextInputProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input/TextInputRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/text-input/TextInputRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input/TextInputSize.d.ts +3 -0
- package/lib/typescript/commonjs/components/text-input/TextInputSize.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input/_TextInputRefBase.d.ts +5 -0
- package/lib/typescript/commonjs/components/text-input/_TextInputRefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/text-input/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputField.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputField.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldInteractiveState.d.ts +2 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldInteractiveState.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldProps.d.ts +22 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldSize.d.ts +2 -0
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldSize.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInput.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInput.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInputProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInputProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInputRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInputRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-field/index.d.ts +6 -0
- package/lib/typescript/commonjs/components/text-input-field/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluid.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluid.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluidProps.d.ts +6 -0
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluidProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluidRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluidRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/text-input-fluid/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/text-input-fluid/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/State.d.ts +3 -0
- package/lib/typescript/commonjs/components/toggle/State.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/base/Base.d.ts +4 -0
- package/lib/typescript/commonjs/components/toggle/base/Base.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/base/BaseProps.d.ts +23 -0
- package/lib/typescript/commonjs/components/toggle/base/BaseProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/base/BaseRef.d.ts +5 -0
- package/lib/typescript/commonjs/components/toggle/base/BaseRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/base/_RefBase.d.ts +9 -0
- package/lib/typescript/commonjs/components/toggle/base/_RefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/base/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/toggle/base/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/default/Default.d.ts +4 -0
- package/lib/typescript/commonjs/components/toggle/default/Default.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/default/DefaultProps.d.ts +7 -0
- package/lib/typescript/commonjs/components/toggle/default/DefaultProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/default/DefaultRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/toggle/default/DefaultRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/default/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/toggle/default/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/toggle/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/small/Small.d.ts +4 -0
- package/lib/typescript/commonjs/components/toggle/small/Small.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/small/SmallProps.d.ts +5 -0
- package/lib/typescript/commonjs/components/toggle/small/SmallProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/small/SmallRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/toggle/small/SmallRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/toggle/small/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/toggle/small/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/carbon-react.d.ts +14 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/carbon-react.d.ts.map +1 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/fade-bottom-up-2.d.ts +11 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/fade-bottom-up-2.d.ts.map +1 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/fade-bottom-up.d.ts +11 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/fade-bottom-up.d.ts.map +1 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/index.d.ts +4 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/const/index.d.ts +3 -0
- package/lib/typescript/commonjs/const/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/breakpoint/BreakpointContext.d.ts +3 -0
- package/lib/typescript/commonjs/contexts/breakpoint/BreakpointContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/breakpoint/index.d.ts +2 -0
- package/lib/typescript/commonjs/contexts/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/dialog/DialogContext.d.ts +8 -0
- package/lib/typescript/commonjs/contexts/dialog/DialogContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/dialog/DialogData.d.ts +23 -0
- package/lib/typescript/commonjs/contexts/dialog/DialogData.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/dialog/DialogType.d.ts +5 -0
- package/lib/typescript/commonjs/contexts/dialog/DialogType.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/dialog/index.d.ts +3 -0
- package/lib/typescript/commonjs/contexts/dialog/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/index.d.ts +5 -0
- package/lib/typescript/commonjs/contexts/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/theme/ThemeContext.d.ts +6 -0
- package/lib/typescript/commonjs/contexts/theme/ThemeContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/theme/index.d.ts +2 -0
- package/lib/typescript/commonjs/contexts/theme/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/toast/ToastContext.d.ts +7 -0
- package/lib/typescript/commonjs/contexts/toast/ToastContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/toast/ToastContextShowConfig.d.ts +7 -0
- package/lib/typescript/commonjs/contexts/toast/ToastContextShowConfig.d.ts.map +1 -0
- package/lib/typescript/commonjs/contexts/toast/index.d.ts +3 -0
- package/lib/typescript/commonjs/contexts/toast/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/helpers/breakpoint/get-token.d.ts +3 -0
- package/lib/typescript/commonjs/helpers/breakpoint/get-token.d.ts.map +1 -0
- package/lib/typescript/commonjs/helpers/breakpoint/index.d.ts +2 -0
- package/lib/typescript/commonjs/helpers/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/helpers/color/get-color-scheme.d.ts.map +1 -0
- package/lib/typescript/commonjs/helpers/color/get-color-token.d.ts +4 -0
- package/lib/typescript/commonjs/helpers/color/get-color-token.d.ts.map +1 -0
- package/lib/typescript/commonjs/helpers/color/hex-to-rgba.d.ts.map +1 -0
- package/lib/typescript/commonjs/helpers/color/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/helpers/index.d.ts +4 -0
- package/lib/typescript/commonjs/helpers/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/hooks/breakpoint/index.d.ts +2 -0
- package/lib/typescript/commonjs/hooks/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/hooks/breakpoint/use.d.ts +6 -0
- package/lib/typescript/commonjs/hooks/breakpoint/use.d.ts.map +1 -0
- package/lib/typescript/commonjs/hooks/index.d.ts +4 -0
- package/lib/typescript/commonjs/hooks/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/index.d.ts +10 -0
- package/lib/typescript/commonjs/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/DialogProvider.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/DialogProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/DialogProviderAnimationConfig.d.ts +40 -0
- package/lib/typescript/commonjs/providers/dialog/DialogProviderAnimationConfig.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/DialogProviderProps.d.ts +20 -0
- package/lib/typescript/commonjs/providers/dialog/DialogProviderProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/DialogProviderRef.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/DialogProviderRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/Controller.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/Controller.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/ControllerProps.d.ts +5 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/ControllerProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/ControllerRef.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/ControllerRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/Modal.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/Modal.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/ModalProps.d.ts +6 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/ModalProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/ModalRef.d.ts +6 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/ModalRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/_Interpolation.d.ts +7 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/_Interpolation.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/index.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/Overlay.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/Overlay.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/OverlayProps.d.ts +7 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/OverlayProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/OverlayRef.d.ts +5 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/OverlayRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/_OverlayRefBase.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/_OverlayRefBase.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/index.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/index.d.ts +4 -0
- package/lib/typescript/commonjs/providers/dialog/_controller/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/dialog/index.d.ts +5 -0
- package/lib/typescript/commonjs/providers/dialog/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/index.d.ts +3 -0
- package/lib/typescript/commonjs/providers/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/ToastProvider.d.ts +4 -0
- package/lib/typescript/commonjs/providers/toast/ToastProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/ToastProviderProps.d.ts +4 -0
- package/lib/typescript/commonjs/providers/toast/ToastProviderProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/ToastRef.d.ts +4 -0
- package/lib/typescript/commonjs/providers/toast/ToastRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/Overlay.d.ts +3 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/Overlay.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/OverlayRef.d.ts +4 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/OverlayRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapper.d.ts +4 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapper.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.d.ts +6 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapperRef.d.ts +7 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapperRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/index.d.ts +4 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/index.d.ts +3 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/index.d.ts +4 -0
- package/lib/typescript/commonjs/providers/toast/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/index.d.ts +4 -0
- package/lib/typescript/commonjs/types/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/shared.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/theme/ColorScheme.d.ts +2 -0
- package/lib/typescript/commonjs/types/theme/ColorScheme.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/theme/index.d.ts +2 -0
- package/lib/typescript/commonjs/types/theme/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/contexts/button-group/ButtonGroupContext.d.ts +9 -0
- package/lib/typescript/module/_internal/contexts/button-group/ButtonGroupContext.d.ts.map +1 -0
- package/lib/typescript/module/_internal/contexts/button-group/index.d.ts +2 -0
- package/lib/typescript/module/_internal/contexts/button-group/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/contexts/global-config/GlobalConfigContext.d.ts +18 -0
- package/lib/typescript/module/_internal/contexts/global-config/GlobalConfigContext.d.ts.map +1 -0
- package/lib/typescript/module/_internal/contexts/global-config/index.d.ts +2 -0
- package/lib/typescript/module/_internal/contexts/global-config/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/contexts/index.d.ts +4 -0
- package/lib/typescript/module/_internal/contexts/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/contexts/modal/ModalContext.d.ts +6 -0
- package/lib/typescript/module/_internal/contexts/modal/ModalContext.d.ts.map +1 -0
- package/lib/typescript/module/_internal/contexts/modal/index.d.ts +2 -0
- package/lib/typescript/module/_internal/contexts/modal/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/globals/breakpoint/index.d.ts +4 -0
- package/lib/typescript/module/_internal/globals/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/globals/color-scheme/index.d.ts +5 -0
- package/lib/typescript/module/_internal/globals/color-scheme/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/globals/index.d.ts +4 -0
- package/lib/typescript/module/_internal/globals/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/helpers/index.d.ts +3 -0
- package/lib/typescript/module/_internal/helpers/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/helpers/math/clamp.d.ts +2 -0
- package/lib/typescript/module/_internal/helpers/math/clamp.d.ts.map +1 -0
- package/lib/typescript/module/_internal/helpers/math/index.d.ts +2 -0
- package/lib/typescript/module/_internal/helpers/math/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/breakpoint/BreakpointProvider.d.ts +3 -0
- package/lib/typescript/module/_internal/providers/breakpoint/BreakpointProvider.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/breakpoint/BreakpointProviderProps.d.ts +4 -0
- package/lib/typescript/module/_internal/providers/breakpoint/BreakpointProviderProps.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/breakpoint/index.d.ts +3 -0
- package/lib/typescript/module/_internal/providers/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProvider.d.ts +3 -0
- package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProvider.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProviderProps.d.ts +5 -0
- package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProviderProps.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/global-config/index.d.ts +3 -0
- package/lib/typescript/module/_internal/providers/global-config/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/index.d.ts +4 -0
- package/lib/typescript/module/_internal/providers/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/theme/ThemeProvider.d.ts +3 -0
- package/lib/typescript/module/_internal/providers/theme/ThemeProvider.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/theme/ThemeProviderProps.d.ts +6 -0
- package/lib/typescript/module/_internal/providers/theme/ThemeProviderProps.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/theme/index.d.ts +3 -0
- package/lib/typescript/module/_internal/providers/theme/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/style-sheets/common-style-sheet.d.ts +18 -0
- package/lib/typescript/module/_internal/style-sheets/common-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/_internal/style-sheets/flex-style-sheet.d.ts +81 -0
- package/lib/typescript/module/_internal/style-sheets/flex-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/_internal/style-sheets/index.d.ts +4 -0
- package/lib/typescript/module/_internal/style-sheets/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/style-sheets/text-style-sheet.d.ts +59 -0
- package/lib/typescript/module/_internal/style-sheets/text-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/carbon-react-native/CarbonReactNative.d.ts +3 -0
- package/lib/typescript/module/carbon-react-native/CarbonReactNative.d.ts.map +1 -0
- package/lib/typescript/module/carbon-react-native/CarbonReactNativeProps.d.ts +4 -0
- package/lib/typescript/module/carbon-react-native/CarbonReactNativeProps.d.ts.map +1 -0
- package/lib/typescript/module/carbon-react-native/index.d.ts +3 -0
- package/lib/typescript/module/carbon-react-native/index.d.ts.map +1 -0
- package/lib/typescript/module/carbon-style-sheet/breakpoint.d.ts +12 -0
- package/lib/typescript/module/carbon-style-sheet/breakpoint.d.ts.map +1 -0
- package/lib/typescript/module/carbon-style-sheet/color.d.ts +3 -0
- package/lib/typescript/module/carbon-style-sheet/color.d.ts.map +1 -0
- package/lib/typescript/module/carbon-style-sheet/create.d.ts +44 -0
- package/lib/typescript/module/carbon-style-sheet/create.d.ts.map +1 -0
- package/lib/typescript/module/carbon-style-sheet/index.d.ts +30 -0
- package/lib/typescript/module/carbon-style-sheet/index.d.ts.map +1 -0
- package/lib/typescript/module/carbon-style-sheet/use.d.ts +5 -0
- package/lib/typescript/module/carbon-style-sheet/use.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/Accordion.d.ts +6 -0
- package/lib/typescript/module/components/accordion/Accordion.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/AccordionHeaderProps.d.ts +12 -0
- package/lib/typescript/module/components/accordion/AccordionHeaderProps.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/AccordionItemProps.d.ts +12 -0
- package/lib/typescript/module/components/accordion/AccordionItemProps.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/AccordionItemRef.d.ts +5 -0
- package/lib/typescript/module/components/accordion/AccordionItemRef.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/AccordionProps.d.ts +14 -0
- package/lib/typescript/module/components/accordion/AccordionProps.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/AccordionRef.d.ts +4 -0
- package/lib/typescript/module/components/accordion/AccordionRef.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/AccordionSize.d.ts +2 -0
- package/lib/typescript/module/components/accordion/AccordionSize.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_Header.d.ts +3 -0
- package/lib/typescript/module/components/accordion/_Header.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_HeaderBorder.d.ts +10 -0
- package/lib/typescript/module/components/accordion/_HeaderBorder.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_Item.d.ts +4 -0
- package/lib/typescript/module/components/accordion/_Item.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_ItemRefBase.d.ts +8 -0
- package/lib/typescript/module/components/accordion/_ItemRefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_chevron/Chevron.d.ts +3 -0
- package/lib/typescript/module/components/accordion/_chevron/Chevron.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_chevron/ChevronProps.d.ts +8 -0
- package/lib/typescript/module/components/accordion/_chevron/ChevronProps.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_chevron/index.d.ts +3 -0
- package/lib/typescript/module/components/accordion/_chevron/index.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_context.d.ts +9 -0
- package/lib/typescript/module/components/accordion/_context.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_motion.d.ts +3 -0
- package/lib/typescript/module/components/accordion/_motion.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/_styles.d.ts +16 -0
- package/lib/typescript/module/components/accordion/_styles.d.ts.map +1 -0
- package/lib/typescript/module/components/accordion/index.d.ts +8 -0
- package/lib/typescript/module/components/accordion/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/Size.d.ts +2 -0
- package/lib/typescript/module/components/button/Size.d.ts.map +1 -0
- package/lib/typescript/module/components/button/base/Base.d.ts +4 -0
- package/lib/typescript/module/components/button/base/Base.d.ts.map +1 -0
- package/lib/typescript/module/components/button/base/BaseProps.d.ts +44 -0
- package/lib/typescript/module/components/button/base/BaseProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/base/BaseRef.d.ts +4 -0
- package/lib/typescript/module/components/button/base/BaseRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/base/index.d.ts +4 -0
- package/lib/typescript/module/components/button/base/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/base-color/BaseColor.d.ts +4 -0
- package/lib/typescript/module/components/button/base-color/BaseColor.d.ts.map +1 -0
- package/lib/typescript/module/components/button/base-color/BaseColorProps.d.ts +20 -0
- package/lib/typescript/module/components/button/base-color/BaseColorProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/base-color/BaseColorRef.d.ts +4 -0
- package/lib/typescript/module/components/button/base-color/BaseColorRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/base-color/BaseColorState.d.ts +2 -0
- package/lib/typescript/module/components/button/base-color/BaseColorState.d.ts.map +1 -0
- package/lib/typescript/module/components/button/base-color/index.d.ts +5 -0
- package/lib/typescript/module/components/button/base-color/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost/Ghost.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost/Ghost.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost/GhostProps.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost/GhostProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost/GhostRef.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost/GhostRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost/index.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost-danger/GhostDanger.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost-danger/GhostDanger.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost-danger/GhostDangerProps.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost-danger/GhostDangerProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost-danger/GhostDangerRef.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost-danger/GhostDangerRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost-danger/index.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost-danger/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost-icon/GhostIcon.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost-icon/GhostIcon.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost-icon/GhostIconProps.d.ts +6 -0
- package/lib/typescript/module/components/button/ghost-icon/GhostIconProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost-icon/GhostIconRef.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost-icon/GhostIconRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/ghost-icon/index.d.ts +4 -0
- package/lib/typescript/module/components/button/ghost-icon/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/index.d.ts +12 -0
- package/lib/typescript/module/components/button/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/primary/Primary.d.ts +4 -0
- package/lib/typescript/module/components/button/primary/Primary.d.ts.map +1 -0
- package/lib/typescript/module/components/button/primary/PrimaryProps.d.ts +4 -0
- package/lib/typescript/module/components/button/primary/PrimaryProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/primary/PrimaryRef.d.ts +4 -0
- package/lib/typescript/module/components/button/primary/PrimaryRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/primary/index.d.ts +4 -0
- package/lib/typescript/module/components/button/primary/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/primary-danger/PrimaryDanger.d.ts +4 -0
- package/lib/typescript/module/components/button/primary-danger/PrimaryDanger.d.ts.map +1 -0
- package/lib/typescript/module/components/button/primary-danger/PrimaryDangerProps.d.ts +4 -0
- package/lib/typescript/module/components/button/primary-danger/PrimaryDangerProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/primary-danger/PrimaryDangerRef.d.ts +4 -0
- package/lib/typescript/module/components/button/primary-danger/PrimaryDangerRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/primary-danger/index.d.ts +4 -0
- package/lib/typescript/module/components/button/primary-danger/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/secondary/Secondary.d.ts +4 -0
- package/lib/typescript/module/components/button/secondary/Secondary.d.ts.map +1 -0
- package/lib/typescript/module/components/button/secondary/SecondaryProps.d.ts +4 -0
- package/lib/typescript/module/components/button/secondary/SecondaryProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/secondary/SecondaryRef.d.ts +4 -0
- package/lib/typescript/module/components/button/secondary/SecondaryRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/secondary/index.d.ts +4 -0
- package/lib/typescript/module/components/button/secondary/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/tertiary/Tertiary.d.ts +4 -0
- package/lib/typescript/module/components/button/tertiary/Tertiary.d.ts.map +1 -0
- package/lib/typescript/module/components/button/tertiary/TertiaryProps.d.ts +4 -0
- package/lib/typescript/module/components/button/tertiary/TertiaryProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/tertiary/TertiaryRef.d.ts +4 -0
- package/lib/typescript/module/components/button/tertiary/TertiaryRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/tertiary/index.d.ts +4 -0
- package/lib/typescript/module/components/button/tertiary/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/tertiary-danger/TertiaryDanger.d.ts +4 -0
- package/lib/typescript/module/components/button/tertiary-danger/TertiaryDanger.d.ts.map +1 -0
- package/lib/typescript/module/components/button/tertiary-danger/TertiaryDangerProps.d.ts +4 -0
- package/lib/typescript/module/components/button/tertiary-danger/TertiaryDangerProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button/tertiary-danger/TertiaryDangerRef.d.ts +4 -0
- package/lib/typescript/module/components/button/tertiary-danger/TertiaryDangerRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button/tertiary-danger/index.d.ts +4 -0
- package/lib/typescript/module/components/button/tertiary-danger/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button-group/ButtonGroup.d.ts +4 -0
- package/lib/typescript/module/components/button-group/ButtonGroup.d.ts.map +1 -0
- package/lib/typescript/module/components/button-group/ButtonGroupProps.d.ts +32 -0
- package/lib/typescript/module/components/button-group/ButtonGroupProps.d.ts.map +1 -0
- package/lib/typescript/module/components/button-group/ButtonGroupRef.d.ts +4 -0
- package/lib/typescript/module/components/button-group/ButtonGroupRef.d.ts.map +1 -0
- package/lib/typescript/module/components/button-group/index.d.ts +4 -0
- package/lib/typescript/module/components/button-group/index.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox/Checkbox.d.ts +4 -0
- package/lib/typescript/module/components/checkbox/Checkbox.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox/CheckboxProps.d.ts +17 -0
- package/lib/typescript/module/components/checkbox/CheckboxProps.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox/CheckboxRef.d.ts +5 -0
- package/lib/typescript/module/components/checkbox/CheckboxRef.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox/_RefBase.d.ts +9 -0
- package/lib/typescript/module/components/checkbox/_RefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox/index.d.ts +4 -0
- package/lib/typescript/module/components/checkbox/index.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-group/CheckboxGroup.d.ts +6 -0
- package/lib/typescript/module/components/checkbox-group/CheckboxGroup.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-group/CheckboxGroupHelperTextMode.d.ts +2 -0
- package/lib/typescript/module/components/checkbox-group/CheckboxGroupHelperTextMode.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-group/CheckboxGroupProps.d.ts +16 -0
- package/lib/typescript/module/components/checkbox-group/CheckboxGroupProps.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-group/CheckboxGroupRef.d.ts +4 -0
- package/lib/typescript/module/components/checkbox-group/CheckboxGroupRef.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-group/index.d.ts +5 -0
- package/lib/typescript/module/components/checkbox-group/index.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInput.d.ts +4 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInput.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInputInteractiveState.d.ts +2 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInputInteractiveState.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInputProps.d.ts +11 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInputProps.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInputRef.d.ts +5 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInputRef.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInputValue.d.ts +5 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInputValue.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-input/_RefBase.d.ts +9 -0
- package/lib/typescript/module/components/checkbox-input/_RefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-input/index.d.ts +6 -0
- package/lib/typescript/module/components/checkbox-input/index.d.ts.map +1 -0
- package/lib/typescript/module/components/collapsible/Collapsible.d.ts +4 -0
- package/lib/typescript/module/components/collapsible/Collapsible.d.ts.map +1 -0
- package/lib/typescript/module/components/collapsible/CollapsibleProps.d.ts +14 -0
- package/lib/typescript/module/components/collapsible/CollapsibleProps.d.ts.map +1 -0
- package/lib/typescript/module/components/collapsible/CollapsibleRef.d.ts +5 -0
- package/lib/typescript/module/components/collapsible/CollapsibleRef.d.ts.map +1 -0
- package/lib/typescript/module/components/collapsible/_RefBase.d.ts +7 -0
- package/lib/typescript/module/components/collapsible/_RefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/collapsible/index.d.ts +4 -0
- package/lib/typescript/module/components/collapsible/index.d.ts.map +1 -0
- package/lib/typescript/module/components/form-helper-text/FormHelperText.d.ts +4 -0
- package/lib/typescript/module/components/form-helper-text/FormHelperText.d.ts.map +1 -0
- package/lib/typescript/module/components/form-helper-text/FormHelperTextProps.d.ts +10 -0
- package/lib/typescript/module/components/form-helper-text/FormHelperTextProps.d.ts.map +1 -0
- package/lib/typescript/module/components/form-helper-text/FormHelperTextRef.d.ts +4 -0
- package/lib/typescript/module/components/form-helper-text/FormHelperTextRef.d.ts.map +1 -0
- package/lib/typescript/module/components/form-helper-text/index.d.ts +4 -0
- package/lib/typescript/module/components/form-helper-text/index.d.ts.map +1 -0
- package/lib/typescript/module/components/form-label/FormLabel.d.ts +4 -0
- package/lib/typescript/module/components/form-label/FormLabel.d.ts.map +1 -0
- package/lib/typescript/module/components/form-label/FormLabelProps.d.ts +9 -0
- package/lib/typescript/module/components/form-label/FormLabelProps.d.ts.map +1 -0
- package/lib/typescript/module/components/form-label/FormLabelRef.d.ts +4 -0
- package/lib/typescript/module/components/form-label/FormLabelRef.d.ts.map +1 -0
- package/lib/typescript/module/components/form-label/index.d.ts +4 -0
- package/lib/typescript/module/components/form-label/index.d.ts.map +1 -0
- package/lib/typescript/module/components/icon/Icon.d.ts +9 -0
- package/lib/typescript/module/components/icon/Icon.d.ts.map +1 -0
- package/lib/typescript/module/components/icon/IconProps.d.ts +6 -0
- package/lib/typescript/module/components/icon/IconProps.d.ts.map +1 -0
- package/lib/typescript/module/components/icon/index.d.ts +3 -0
- package/lib/typescript/module/components/icon/index.d.ts.map +1 -0
- package/lib/typescript/module/components/index.d.ts +30 -0
- package/lib/typescript/module/components/index.d.ts.map +1 -0
- package/lib/typescript/module/components/inline-loading/InlineLoading.d.ts +4 -0
- package/lib/typescript/module/components/inline-loading/InlineLoading.d.ts.map +1 -0
- package/lib/typescript/module/components/inline-loading/InlineLoadingProps.d.ts +12 -0
- package/lib/typescript/module/components/inline-loading/InlineLoadingProps.d.ts.map +1 -0
- package/lib/typescript/module/components/inline-loading/InlineLoadingRef.d.ts +4 -0
- package/lib/typescript/module/components/inline-loading/InlineLoadingRef.d.ts.map +1 -0
- package/lib/typescript/module/components/inline-loading/InlineLoadingState.d.ts +2 -0
- package/lib/typescript/module/components/inline-loading/InlineLoadingState.d.ts.map +1 -0
- package/lib/typescript/module/components/inline-loading/index.d.ts +5 -0
- package/lib/typescript/module/components/inline-loading/index.d.ts.map +1 -0
- package/lib/typescript/module/components/layer/Layer.d.ts +4 -0
- package/lib/typescript/module/components/layer/Layer.d.ts.map +1 -0
- package/lib/typescript/module/components/layer/LayerContext.d.ts +2 -0
- package/lib/typescript/module/components/layer/LayerContext.d.ts.map +1 -0
- package/lib/typescript/module/components/layer/LayerProps.d.ts +11 -0
- package/lib/typescript/module/components/layer/LayerProps.d.ts.map +1 -0
- package/lib/typescript/module/components/layer/LayerRef.d.ts +4 -0
- package/lib/typescript/module/components/layer/LayerRef.d.ts.map +1 -0
- package/lib/typescript/module/components/layer/index.d.ts +5 -0
- package/lib/typescript/module/components/layer/index.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/Loading.d.ts +4 -0
- package/lib/typescript/module/components/loading/Loading.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/LoadingProps.d.ts +9 -0
- package/lib/typescript/module/components/loading/LoadingProps.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/LoadingRef.d.ts +4 -0
- package/lib/typescript/module/components/loading/LoadingRef.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/LoadingType.d.ts +2 -0
- package/lib/typescript/module/components/loading/LoadingType.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/_circular-progress/CircularProgress.d.ts +6 -0
- package/lib/typescript/module/components/loading/_circular-progress/CircularProgress.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/_circular-progress/CircularProgressProps.d.ts +12 -0
- package/lib/typescript/module/components/loading/_circular-progress/CircularProgressProps.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/_circular-progress/index.d.ts +3 -0
- package/lib/typescript/module/components/loading/_circular-progress/index.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/_map-circle-background-color.d.ts +6 -0
- package/lib/typescript/module/components/loading/_map-circle-background-color.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/_map-circle-stroke-color.d.ts +3 -0
- package/lib/typescript/module/components/loading/_map-circle-stroke-color.d.ts.map +1 -0
- package/lib/typescript/module/components/loading/index.d.ts +5 -0
- package/lib/typescript/module/components/loading/index.d.ts.map +1 -0
- package/lib/typescript/module/components/modal/Modal.d.ts +10 -0
- package/lib/typescript/module/components/modal/Modal.d.ts.map +1 -0
- package/lib/typescript/module/components/modal/ModalProps.d.ts +13 -0
- package/lib/typescript/module/components/modal/ModalProps.d.ts.map +1 -0
- package/lib/typescript/module/components/modal/ModalRef.d.ts +4 -0
- package/lib/typescript/module/components/modal/ModalRef.d.ts.map +1 -0
- package/lib/typescript/module/components/modal/ModalSize.d.ts +2 -0
- package/lib/typescript/module/components/modal/ModalSize.d.ts.map +1 -0
- package/lib/typescript/module/components/modal/index.d.ts +5 -0
- package/lib/typescript/module/components/modal/index.d.ts.map +1 -0
- package/lib/typescript/module/components/modal-content/ModalContent.d.ts +4 -0
- package/lib/typescript/module/components/modal-content/ModalContent.d.ts.map +1 -0
- package/lib/typescript/module/components/modal-content/ModalContentProps.d.ts +5 -0
- package/lib/typescript/module/components/modal-content/ModalContentProps.d.ts.map +1 -0
- package/lib/typescript/module/components/modal-content/ModalContentRef.d.ts +4 -0
- package/lib/typescript/module/components/modal-content/ModalContentRef.d.ts.map +1 -0
- package/lib/typescript/module/components/modal-content/index.d.ts +4 -0
- package/lib/typescript/module/components/modal-content/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/NotificationColor.d.ts +2 -0
- package/lib/typescript/module/components/notification/NotificationColor.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_VariantContextProvider.d.ts +6 -0
- package/lib/typescript/module/components/notification/_VariantContextProvider.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/_base/UseBaseData.d.ts +9 -0
- package/lib/typescript/module/components/notification/_status-hooks/_base/UseBaseData.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/_base/UseBaseProps.d.ts +19 -0
- package/lib/typescript/module/components/notification/_status-hooks/_base/UseBaseProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/_base/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/_base/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/_base/useBase.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/_base/useBase.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/error/UseErrorData.d.ts +6 -0
- package/lib/typescript/module/components/notification/_status-hooks/error/UseErrorData.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/error/UseErrorProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/_status-hooks/error/UseErrorProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/error/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/error/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/error/useError.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/error/useError.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/informational/UseInformationalData.d.ts +6 -0
- package/lib/typescript/module/components/notification/_status-hooks/informational/UseInformationalData.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/informational/UseInformationalProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/_status-hooks/informational/UseInformationalProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/informational/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/informational/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/informational/useInformational.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/informational/useInformational.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/success/UseSuccessData.d.ts +6 -0
- package/lib/typescript/module/components/notification/_status-hooks/success/UseSuccessData.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/success/UseSuccessProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/_status-hooks/success/UseSuccessProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/success/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/success/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/success/useSuccess.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/success/useSuccess.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/warning/UseWarningData.d.ts +6 -0
- package/lib/typescript/module/components/notification/_status-hooks/warning/UseWarningData.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/warning/UseWarningProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/_status-hooks/warning/UseWarningProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/warning/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/warning/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_status-hooks/warning/useWarning.d.ts +4 -0
- package/lib/typescript/module/components/notification/_status-hooks/warning/useWarning.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variant-context.d.ts +6 -0
- package/lib/typescript/module/components/notification/_variant-context.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/_ButtonGhost.d.ts +5 -0
- package/lib/typescript/module/components/notification/_variants/_ButtonGhost.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/_ButtonTertiary.d.ts +5 -0
- package/lib/typescript/module/components/notification/_variants/_ButtonTertiary.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariant.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariant.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariantProps.d.ts +27 -0
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariantProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariantRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariantRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/actionable/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/actionable/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariant.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariant.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.d.ts +27 -0
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/actionable-inline/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/actionable-inline/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariant.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariant.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariantProps.d.ts +10 -0
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariantProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariantRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariantRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/callout/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/callout/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariant.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariant.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariantProps.d.ts +10 -0
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariantProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariantRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariantRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/callout-inline/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/callout-inline/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariant.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariant.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariantProps.d.ts +14 -0
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariantProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariantRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariantRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/_variants/toast/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/_variants/toast/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/error/Error.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/error/Error.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/actionable/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/error/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/error/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/informational/Informational.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/actionable/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/informational/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/informational/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/success/Success.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/success/Success.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/actionable/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/success/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/success/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/warning/Warning.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/actionable/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable/warning/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable/warning/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/error/Error.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/error/Error.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/actionable-inline/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/error/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/error/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/informational/Informational.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/actionable-inline/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/informational/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/informational/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/success/Success.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/success/Success.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/actionable-inline/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/success/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/success/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/warning/Warning.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/actionable-inline/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/actionable-inline/warning/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/actionable-inline/warning/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/base/Base.d.ts +4 -0
- package/lib/typescript/module/components/notification/base/Base.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/base/BaseProps.d.ts +26 -0
- package/lib/typescript/module/components/notification/base/BaseProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/base/BaseRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/base/BaseRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/base/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/base/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/error/Error.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/error/Error.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/callout/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/error/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/error/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/informational/Informational.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/callout/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/informational/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/informational/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/success/Success.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/success/Success.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/callout/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/success/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/success/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/warning/Warning.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/callout/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout/warning/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout/warning/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/error/Error.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/error/Error.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/callout-inline/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/error/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/error/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/informational/Informational.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/callout-inline/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/informational/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/informational/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/success/Success.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/success/Success.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/callout-inline/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/success/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/success/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/warning/Warning.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/callout-inline/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/callout-inline/warning/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/callout-inline/warning/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/index.d.ts +11 -0
- package/lib/typescript/module/components/notification/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/subtitle/Subtitle.d.ts +4 -0
- package/lib/typescript/module/components/notification/subtitle/Subtitle.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/subtitle/SubtitleProps.d.ts +4 -0
- package/lib/typescript/module/components/notification/subtitle/SubtitleProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/subtitle/SubtitleRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/subtitle/SubtitleRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/subtitle/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/subtitle/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/subtitle-link/SubtitleLink.d.ts +4 -0
- package/lib/typescript/module/components/notification/subtitle-link/SubtitleLink.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/subtitle-link/SubtitleLinkProps.d.ts +4 -0
- package/lib/typescript/module/components/notification/subtitle-link/SubtitleLinkProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/subtitle-link/SubtitleLinkRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/subtitle-link/SubtitleLinkRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/subtitle-link/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/subtitle-link/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/error/Error.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/error/Error.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/error/ErrorProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/toast/error/ErrorProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/error/ErrorRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/error/ErrorRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/error/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/error/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/informational/Informational.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/informational/Informational.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/informational/InformationalProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/toast/informational/InformationalProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/informational/InformationalRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/informational/InformationalRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/informational/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/informational/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/success/Success.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/success/Success.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/success/SuccessProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/toast/success/SuccessProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/success/SuccessRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/success/SuccessRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/success/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/success/index.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/warning/Warning.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/warning/Warning.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/warning/WarningProps.d.ts +6 -0
- package/lib/typescript/module/components/notification/toast/warning/WarningProps.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/warning/WarningRef.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/warning/WarningRef.d.ts.map +1 -0
- package/lib/typescript/module/components/notification/toast/warning/index.d.ts +4 -0
- package/lib/typescript/module/components/notification/toast/warning/index.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button/RadioButton.d.ts +4 -0
- package/lib/typescript/module/components/radio-button/RadioButton.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button/RadioButtonProps.d.ts +19 -0
- package/lib/typescript/module/components/radio-button/RadioButtonProps.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button/RadioButtonRef.d.ts +5 -0
- package/lib/typescript/module/components/radio-button/RadioButtonRef.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button/_RefBase.d.ts +9 -0
- package/lib/typescript/module/components/radio-button/_RefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button/index.d.ts +4 -0
- package/lib/typescript/module/components/radio-button/index.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroup.d.ts +6 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroup.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupHelperTextMode.d.ts +2 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupHelperTextMode.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupItemProps.d.ts +4 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupItemProps.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupItemRef.d.ts +4 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupItemRef.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupProps.d.ts +20 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupProps.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupRef.d.ts +5 -0
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupRef.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/_Item.d.ts +4 -0
- package/lib/typescript/module/components/radio-button-group/_Item.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/_RefBase.d.ts +9 -0
- package/lib/typescript/module/components/radio-button-group/_RefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/_item-context.d.ts +10 -0
- package/lib/typescript/module/components/radio-button-group/_item-context.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-group/index.d.ts +7 -0
- package/lib/typescript/module/components/radio-button-group/index.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-input/RadioButtonInput.d.ts +4 -0
- package/lib/typescript/module/components/radio-button-input/RadioButtonInput.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-input/RadioButtonInputInteractiveState.d.ts +2 -0
- package/lib/typescript/module/components/radio-button-input/RadioButtonInputInteractiveState.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-input/RadioButtonInputProps.d.ts +11 -0
- package/lib/typescript/module/components/radio-button-input/RadioButtonInputProps.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-input/RadioButtonInputRef.d.ts +5 -0
- package/lib/typescript/module/components/radio-button-input/RadioButtonInputRef.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-input/_RefBase.d.ts +8 -0
- package/lib/typescript/module/components/radio-button-input/_RefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button-input/index.d.ts +5 -0
- package/lib/typescript/module/components/radio-button-input/index.d.ts.map +1 -0
- package/lib/typescript/module/components/switch/Switch.d.ts +4 -0
- package/lib/typescript/module/components/switch/Switch.d.ts.map +1 -0
- package/lib/typescript/module/components/switch/SwitchProps.d.ts +27 -0
- package/lib/typescript/module/components/switch/SwitchProps.d.ts.map +1 -0
- package/lib/typescript/module/components/switch/SwitchRef.d.ts +5 -0
- package/lib/typescript/module/components/switch/SwitchRef.d.ts.map +1 -0
- package/lib/typescript/module/components/switch/SwitchSize.d.ts +5 -0
- package/lib/typescript/module/components/switch/SwitchSize.d.ts.map +1 -0
- package/lib/typescript/module/components/switch/SwitchState.d.ts +2 -0
- package/lib/typescript/module/components/switch/SwitchState.d.ts.map +1 -0
- package/lib/typescript/module/components/switch/_RefBase.d.ts +8 -0
- package/lib/typescript/module/components/switch/_RefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/switch/index.d.ts +6 -0
- package/lib/typescript/module/components/switch/index.d.ts.map +1 -0
- package/lib/typescript/module/components/text/Text.d.ts +4 -0
- package/lib/typescript/module/components/text/Text.d.ts.map +1 -0
- package/lib/typescript/module/components/text/TextProps.d.ts +7 -0
- package/lib/typescript/module/components/text/TextProps.d.ts.map +1 -0
- package/lib/typescript/module/components/text/TextRef.d.ts +4 -0
- package/lib/typescript/module/components/text/TextRef.d.ts.map +1 -0
- package/lib/typescript/module/components/text/index.d.ts +4 -0
- package/lib/typescript/module/components/text/index.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area/TextArea.d.ts +4 -0
- package/lib/typescript/module/components/text-area/TextArea.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area/TextAreaProps.d.ts +6 -0
- package/lib/typescript/module/components/text-area/TextAreaProps.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area/TextAreaRef.d.ts +5 -0
- package/lib/typescript/module/components/text-area/TextAreaRef.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area/_TextAreaRefBase.d.ts +5 -0
- package/lib/typescript/module/components/text-area/_TextAreaRefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area/index.d.ts +4 -0
- package/lib/typescript/module/components/text-area/index.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area-field/TextAreaField.d.ts +4 -0
- package/lib/typescript/module/components/text-area-field/TextAreaField.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area-field/TextAreaFieldInteractiveState.d.ts +3 -0
- package/lib/typescript/module/components/text-area-field/TextAreaFieldInteractiveState.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area-field/TextAreaFieldProps.d.ts +4 -0
- package/lib/typescript/module/components/text-area-field/TextAreaFieldProps.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area-field/TextAreaFieldRef.d.ts +4 -0
- package/lib/typescript/module/components/text-area-field/TextAreaFieldRef.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area-field/index.d.ts +5 -0
- package/lib/typescript/module/components/text-area-field/index.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area-fluid/TextAreaFluid.d.ts +4 -0
- package/lib/typescript/module/components/text-area-fluid/TextAreaFluid.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area-fluid/TextAreaFluidProps.d.ts +6 -0
- package/lib/typescript/module/components/text-area-fluid/TextAreaFluidProps.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area-fluid/TextAreaFluidRef.d.ts +4 -0
- package/lib/typescript/module/components/text-area-fluid/TextAreaFluidRef.d.ts.map +1 -0
- package/lib/typescript/module/components/text-area-fluid/index.d.ts +4 -0
- package/lib/typescript/module/components/text-area-fluid/index.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input/TextInput.d.ts +4 -0
- package/lib/typescript/module/components/text-input/TextInput.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input/TextInputProps.d.ts +6 -0
- package/lib/typescript/module/components/text-input/TextInputProps.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input/TextInputRef.d.ts +5 -0
- package/lib/typescript/module/components/text-input/TextInputRef.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input/TextInputSize.d.ts +3 -0
- package/lib/typescript/module/components/text-input/TextInputSize.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input/_TextInputRefBase.d.ts +5 -0
- package/lib/typescript/module/components/text-input/_TextInputRefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input/index.d.ts +5 -0
- package/lib/typescript/module/components/text-input/index.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/TextInputField.d.ts +4 -0
- package/lib/typescript/module/components/text-input-field/TextInputField.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/TextInputFieldInteractiveState.d.ts +2 -0
- package/lib/typescript/module/components/text-input-field/TextInputFieldInteractiveState.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/TextInputFieldProps.d.ts +22 -0
- package/lib/typescript/module/components/text-input-field/TextInputFieldProps.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/TextInputFieldRef.d.ts +5 -0
- package/lib/typescript/module/components/text-input-field/TextInputFieldRef.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/TextInputFieldSize.d.ts +2 -0
- package/lib/typescript/module/components/text-input-field/TextInputFieldSize.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInput.d.ts +4 -0
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInput.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInputProps.d.ts +6 -0
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInputProps.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInputRef.d.ts +4 -0
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInputRef.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/_rn-text-input/index.d.ts +4 -0
- package/lib/typescript/module/components/text-input-field/_rn-text-input/index.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-field/index.d.ts +6 -0
- package/lib/typescript/module/components/text-input-field/index.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-fluid/TextInputFluid.d.ts +4 -0
- package/lib/typescript/module/components/text-input-fluid/TextInputFluid.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-fluid/TextInputFluidProps.d.ts +6 -0
- package/lib/typescript/module/components/text-input-fluid/TextInputFluidProps.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-fluid/TextInputFluidRef.d.ts +4 -0
- package/lib/typescript/module/components/text-input-fluid/TextInputFluidRef.d.ts.map +1 -0
- package/lib/typescript/module/components/text-input-fluid/index.d.ts +4 -0
- package/lib/typescript/module/components/text-input-fluid/index.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/State.d.ts +3 -0
- package/lib/typescript/module/components/toggle/State.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/base/Base.d.ts +4 -0
- package/lib/typescript/module/components/toggle/base/Base.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/base/BaseProps.d.ts +23 -0
- package/lib/typescript/module/components/toggle/base/BaseProps.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/base/BaseRef.d.ts +5 -0
- package/lib/typescript/module/components/toggle/base/BaseRef.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/base/_RefBase.d.ts +9 -0
- package/lib/typescript/module/components/toggle/base/_RefBase.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/base/index.d.ts +4 -0
- package/lib/typescript/module/components/toggle/base/index.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/default/Default.d.ts +4 -0
- package/lib/typescript/module/components/toggle/default/Default.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/default/DefaultProps.d.ts +7 -0
- package/lib/typescript/module/components/toggle/default/DefaultProps.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/default/DefaultRef.d.ts +4 -0
- package/lib/typescript/module/components/toggle/default/DefaultRef.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/default/index.d.ts +4 -0
- package/lib/typescript/module/components/toggle/default/index.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/index.d.ts +5 -0
- package/lib/typescript/module/components/toggle/index.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/small/Small.d.ts +4 -0
- package/lib/typescript/module/components/toggle/small/Small.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/small/SmallProps.d.ts +5 -0
- package/lib/typescript/module/components/toggle/small/SmallProps.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/small/SmallRef.d.ts +4 -0
- package/lib/typescript/module/components/toggle/small/SmallRef.d.ts.map +1 -0
- package/lib/typescript/module/components/toggle/small/index.d.ts +4 -0
- package/lib/typescript/module/components/toggle/small/index.d.ts.map +1 -0
- package/lib/typescript/module/const/dialog-animation-configs/carbon-react.d.ts +14 -0
- package/lib/typescript/module/const/dialog-animation-configs/carbon-react.d.ts.map +1 -0
- package/lib/typescript/module/const/dialog-animation-configs/fade-bottom-up-2.d.ts +11 -0
- package/lib/typescript/module/const/dialog-animation-configs/fade-bottom-up-2.d.ts.map +1 -0
- package/lib/typescript/module/const/dialog-animation-configs/fade-bottom-up.d.ts +11 -0
- package/lib/typescript/module/const/dialog-animation-configs/fade-bottom-up.d.ts.map +1 -0
- package/lib/typescript/module/const/dialog-animation-configs/index.d.ts +4 -0
- package/lib/typescript/module/const/dialog-animation-configs/index.d.ts.map +1 -0
- package/lib/typescript/module/const/index.d.ts +3 -0
- package/lib/typescript/module/const/index.d.ts.map +1 -0
- package/lib/typescript/module/contexts/breakpoint/BreakpointContext.d.ts +3 -0
- package/lib/typescript/module/contexts/breakpoint/BreakpointContext.d.ts.map +1 -0
- package/lib/typescript/module/contexts/breakpoint/index.d.ts +2 -0
- package/lib/typescript/module/contexts/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/module/contexts/dialog/DialogContext.d.ts +8 -0
- package/lib/typescript/module/contexts/dialog/DialogContext.d.ts.map +1 -0
- package/lib/typescript/module/contexts/dialog/DialogData.d.ts +23 -0
- package/lib/typescript/module/contexts/dialog/DialogData.d.ts.map +1 -0
- package/lib/typescript/module/contexts/dialog/DialogType.d.ts +5 -0
- package/lib/typescript/module/contexts/dialog/DialogType.d.ts.map +1 -0
- package/lib/typescript/module/contexts/dialog/index.d.ts +3 -0
- package/lib/typescript/module/contexts/dialog/index.d.ts.map +1 -0
- package/lib/typescript/module/contexts/index.d.ts +5 -0
- package/lib/typescript/module/contexts/index.d.ts.map +1 -0
- package/lib/typescript/module/contexts/theme/ThemeContext.d.ts +6 -0
- package/lib/typescript/module/contexts/theme/ThemeContext.d.ts.map +1 -0
- package/lib/typescript/module/contexts/theme/index.d.ts +2 -0
- package/lib/typescript/module/contexts/theme/index.d.ts.map +1 -0
- package/lib/typescript/module/contexts/toast/ToastContext.d.ts +7 -0
- package/lib/typescript/module/contexts/toast/ToastContext.d.ts.map +1 -0
- package/lib/typescript/module/contexts/toast/ToastContextShowConfig.d.ts +7 -0
- package/lib/typescript/module/contexts/toast/ToastContextShowConfig.d.ts.map +1 -0
- package/lib/typescript/module/contexts/toast/index.d.ts +3 -0
- package/lib/typescript/module/contexts/toast/index.d.ts.map +1 -0
- package/lib/typescript/module/helpers/breakpoint/get-token.d.ts +3 -0
- package/lib/typescript/module/helpers/breakpoint/get-token.d.ts.map +1 -0
- package/lib/typescript/module/helpers/breakpoint/index.d.ts +2 -0
- package/lib/typescript/module/helpers/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/module/helpers/color/get-color-scheme.d.ts.map +1 -0
- package/lib/typescript/module/helpers/color/get-color-token.d.ts +4 -0
- package/lib/typescript/module/helpers/color/get-color-token.d.ts.map +1 -0
- package/lib/typescript/module/helpers/color/hex-to-rgba.d.ts.map +1 -0
- package/lib/typescript/module/helpers/color/index.d.ts.map +1 -0
- package/lib/typescript/module/helpers/index.d.ts +4 -0
- package/lib/typescript/module/helpers/index.d.ts.map +1 -0
- package/lib/typescript/module/hooks/breakpoint/index.d.ts +2 -0
- package/lib/typescript/module/hooks/breakpoint/index.d.ts.map +1 -0
- package/lib/typescript/module/hooks/breakpoint/use.d.ts +6 -0
- package/lib/typescript/module/hooks/breakpoint/use.d.ts.map +1 -0
- package/lib/typescript/module/hooks/index.d.ts +4 -0
- package/lib/typescript/module/hooks/index.d.ts.map +1 -0
- package/lib/typescript/module/index.d.ts +10 -0
- package/lib/typescript/module/index.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/DialogProvider.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/DialogProvider.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/DialogProviderAnimationConfig.d.ts +40 -0
- package/lib/typescript/module/providers/dialog/DialogProviderAnimationConfig.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/DialogProviderProps.d.ts +20 -0
- package/lib/typescript/module/providers/dialog/DialogProviderProps.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/DialogProviderRef.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/DialogProviderRef.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/Controller.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/_controller/Controller.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/ControllerProps.d.ts +5 -0
- package/lib/typescript/module/providers/dialog/_controller/ControllerProps.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/ControllerRef.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/_controller/ControllerRef.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/Modal.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/Modal.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/ModalProps.d.ts +6 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/ModalProps.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/ModalRef.d.ts +6 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/ModalRef.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/_Interpolation.d.ts +7 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/_Interpolation.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/index.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/_controller/_modal/index.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/Overlay.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/Overlay.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/OverlayProps.d.ts +7 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/OverlayProps.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/OverlayRef.d.ts +5 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/OverlayRef.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/_OverlayRefBase.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/_OverlayRefBase.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/index.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/_controller/_overlay/index.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/_controller/index.d.ts +4 -0
- package/lib/typescript/module/providers/dialog/_controller/index.d.ts.map +1 -0
- package/lib/typescript/module/providers/dialog/index.d.ts +5 -0
- package/lib/typescript/module/providers/dialog/index.d.ts.map +1 -0
- package/lib/typescript/module/providers/index.d.ts +3 -0
- package/lib/typescript/module/providers/index.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/ToastProvider.d.ts +4 -0
- package/lib/typescript/module/providers/toast/ToastProvider.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/ToastProviderProps.d.ts +4 -0
- package/lib/typescript/module/providers/toast/ToastProviderProps.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/ToastRef.d.ts +4 -0
- package/lib/typescript/module/providers/toast/ToastRef.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/_overlay/Overlay.d.ts +3 -0
- package/lib/typescript/module/providers/toast/_overlay/Overlay.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/_overlay/OverlayRef.d.ts +4 -0
- package/lib/typescript/module/providers/toast/_overlay/OverlayRef.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/ComponentWrapper.d.ts +4 -0
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/ComponentWrapper.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.d.ts +6 -0
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/ComponentWrapperRef.d.ts +7 -0
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/ComponentWrapperRef.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/index.d.ts +4 -0
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/index.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/_overlay/index.d.ts +3 -0
- package/lib/typescript/module/providers/toast/_overlay/index.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/index.d.ts +4 -0
- package/lib/typescript/module/providers/toast/index.d.ts.map +1 -0
- package/lib/typescript/module/types/index.d.ts +4 -0
- package/lib/typescript/module/types/index.d.ts.map +1 -0
- package/lib/typescript/module/types/shared.d.ts.map +1 -0
- package/lib/typescript/module/types/theme/ColorScheme.d.ts +2 -0
- package/lib/typescript/module/types/theme/ColorScheme.d.ts.map +1 -0
- package/lib/typescript/module/types/theme/index.d.ts +2 -0
- package/lib/typescript/module/types/theme/index.d.ts.map +1 -0
- package/package.json +8 -43
- package/lib/commonjs/_carbon-react-native/index.js +0 -24
- package/lib/commonjs/_carbon-react-native/index.js.map +0 -1
- package/lib/commonjs/_style-sheet/create.js +0 -59
- package/lib/commonjs/_style-sheet/create.js.map +0 -1
- package/lib/commonjs/_style-sheet/index.js +0 -14
- package/lib/commonjs/_style-sheet/index.js.map +0 -1
- package/lib/commonjs/components/accordion/_header-border.js +0 -33
- package/lib/commonjs/components/accordion/_header-border.js.map +0 -1
- package/lib/commonjs/components/accordion/_header.js +0 -156
- package/lib/commonjs/components/accordion/_header.js.map +0 -1
- package/lib/commonjs/components/accordion/_item.js +0 -91
- package/lib/commonjs/components/accordion/_item.js.map +0 -1
- package/lib/commonjs/components/accordion/types.js +0 -2
- package/lib/commonjs/components/accordion/types.js.map +0 -1
- package/lib/commonjs/components/button/size.js +0 -2
- package/lib/commonjs/components/button/size.js.map +0 -1
- package/lib/commonjs/components/notification/_status-hooks/_base.js +0 -54
- package/lib/commonjs/components/notification/_status-hooks/_base.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/_button-ghost.js +0 -45
- package/lib/commonjs/components/notification/_variants/_button-ghost.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/_button-tertiary.js +0 -45
- package/lib/commonjs/components/notification/_variants/_button-tertiary.js.map +0 -1
- package/lib/commonjs/components/notification/types.js +0 -2
- package/lib/commonjs/components/notification/types.js.map +0 -1
- package/lib/commonjs/components/radio-button-group/_item.js +0 -52
- package/lib/commonjs/components/radio-button-group/_item.js.map +0 -1
- package/lib/commonjs/components/radio-button-group/_types/index.js +0 -6
- package/lib/commonjs/components/radio-button-group/_types/index.js.map +0 -1
- package/lib/commonjs/components/radio-button-group/_types/ref-base.js +0 -6
- package/lib/commonjs/components/radio-button-group/_types/ref-base.js.map +0 -1
- package/lib/commonjs/components/toggle/state.js +0 -2
- package/lib/commonjs/components/toggle/state.js.map +0 -1
- package/lib/commonjs/constants/color/code.json +0 -273
- package/lib/commonjs/constants/color/index.js +0 -19
- package/lib/commonjs/constants/color/index.js.map +0 -1
- package/lib/commonjs/constants/color/tokens/gray-10.js +0 -181
- package/lib/commonjs/constants/color/tokens/gray-10.js.map +0 -1
- package/lib/commonjs/constants/color/tokens/gray-100.js +0 -181
- package/lib/commonjs/constants/color/tokens/gray-100.js.map +0 -1
- package/lib/commonjs/constants/color/tokens/index.js +0 -28
- package/lib/commonjs/constants/color/tokens/index.js.map +0 -1
- package/lib/commonjs/constants/index.js +0 -24
- package/lib/commonjs/constants/index.js.map +0 -1
- package/lib/commonjs/constants/motion/index.js +0 -71
- package/lib/commonjs/constants/motion/index.js.map +0 -1
- package/lib/commonjs/constants/spacing.js +0 -22
- package/lib/commonjs/constants/spacing.js.map +0 -1
- package/lib/commonjs/constants/typography/font-family.js +0 -23
- package/lib/commonjs/constants/typography/font-family.js.map +0 -1
- package/lib/commonjs/constants/typography/index.js +0 -28
- package/lib/commonjs/constants/typography/index.js.map +0 -1
- package/lib/commonjs/constants/typography/type-sets.js +0 -141
- package/lib/commonjs/constants/typography/type-sets.js.map +0 -1
- package/lib/commonjs/contexts/global-config/index.js +0 -13
- package/lib/commonjs/contexts/global-config/index.js.map +0 -1
- package/lib/commonjs/globals/color-scheme/index.js +0 -16
- package/lib/commonjs/globals/color-scheme/index.js.map +0 -1
- package/lib/commonjs/globals/index.js +0 -11
- package/lib/commonjs/globals/index.js.map +0 -1
- package/lib/commonjs/providers/global-config/index.js +0 -24
- package/lib/commonjs/providers/global-config/index.js.map +0 -1
- package/lib/commonjs/providers/theme/index.js +0 -31
- package/lib/commonjs/providers/theme/index.js.map +0 -1
- package/lib/commonjs/providers/toast/_types/index.js +0 -17
- package/lib/commonjs/providers/toast/_types/index.js.map +0 -1
- package/lib/commonjs/providers/toast/_types/toast-ref.js +0 -6
- package/lib/commonjs/providers/toast/_types/toast-ref.js.map +0 -1
- package/lib/commonjs/styles/common.js +0 -25
- package/lib/commonjs/styles/common.js.map +0 -1
- package/lib/commonjs/styles/flex.js +0 -82
- package/lib/commonjs/styles/flex.js.map +0 -1
- package/lib/commonjs/styles/index.js +0 -39
- package/lib/commonjs/styles/index.js.map +0 -1
- package/lib/commonjs/styles/text.js +0 -67
- package/lib/commonjs/styles/text.js.map +0 -1
- package/lib/commonjs/types/@carbon/icons/index.d.js +0 -2
- package/lib/commonjs/types/@carbon/icons/index.d.js.map +0 -1
- package/lib/commonjs/types/theme/color-scheme.js +0 -2
- package/lib/commonjs/types/theme/color-scheme.js.map +0 -1
- package/lib/commonjs/types/theme/color-token.js +0 -2
- package/lib/commonjs/types/theme/color-token.js.map +0 -1
- package/lib/commonjs/types/typography.js +0 -6
- package/lib/commonjs/types/typography.js.map +0 -1
- package/lib/module/_carbon-react-native/index.js +0 -20
- package/lib/module/_carbon-react-native/index.js.map +0 -1
- package/lib/module/_style-sheet/create.js +0 -55
- package/lib/module/_style-sheet/create.js.map +0 -1
- package/lib/module/_style-sheet/index.js +0 -10
- package/lib/module/_style-sheet/index.js.map +0 -1
- package/lib/module/components/accordion/_header-border.js +0 -29
- package/lib/module/components/accordion/_header-border.js.map +0 -1
- package/lib/module/components/accordion/_header.js +0 -149
- package/lib/module/components/accordion/_header.js.map +0 -1
- package/lib/module/components/accordion/_item.js +0 -87
- package/lib/module/components/accordion/_item.js.map +0 -1
- package/lib/module/components/accordion/types.js +0 -2
- package/lib/module/components/accordion/types.js.map +0 -1
- package/lib/module/components/button/size.js +0 -2
- package/lib/module/components/button/size.js.map +0 -1
- package/lib/module/components/notification/_status-hooks/_base.js +0 -50
- package/lib/module/components/notification/_status-hooks/_base.js.map +0 -1
- package/lib/module/components/notification/_variants/_button-ghost.js +0 -41
- package/lib/module/components/notification/_variants/_button-ghost.js.map +0 -1
- package/lib/module/components/notification/_variants/_button-tertiary.js +0 -41
- package/lib/module/components/notification/_variants/_button-tertiary.js.map +0 -1
- package/lib/module/components/notification/types.js +0 -2
- package/lib/module/components/notification/types.js.map +0 -1
- package/lib/module/components/radio-button-group/_item.js +0 -48
- package/lib/module/components/radio-button-group/_item.js.map +0 -1
- package/lib/module/components/radio-button-group/_types/index.js +0 -4
- package/lib/module/components/radio-button-group/_types/index.js.map +0 -1
- package/lib/module/components/radio-button-group/_types/ref-base.js +0 -4
- package/lib/module/components/radio-button-group/_types/ref-base.js.map +0 -1
- package/lib/module/components/toggle/state.js +0 -2
- package/lib/module/components/toggle/state.js.map +0 -1
- package/lib/module/constants/color/code.json +0 -273
- package/lib/module/constants/color/index.js +0 -6
- package/lib/module/constants/color/index.js.map +0 -1
- package/lib/module/constants/color/tokens/gray-10.js +0 -176
- package/lib/module/constants/color/tokens/gray-10.js.map +0 -1
- package/lib/module/constants/color/tokens/gray-100.js +0 -176
- package/lib/module/constants/color/tokens/gray-100.js.map +0 -1
- package/lib/module/constants/color/tokens/index.js +0 -5
- package/lib/module/constants/color/tokens/index.js.map +0 -1
- package/lib/module/constants/index.js +0 -8
- package/lib/module/constants/index.js.map +0 -1
- package/lib/module/constants/motion/index.js +0 -67
- package/lib/module/constants/motion/index.js.map +0 -1
- package/lib/module/constants/spacing.js +0 -18
- package/lib/module/constants/spacing.js.map +0 -1
- package/lib/module/constants/typography/font-family.js +0 -19
- package/lib/module/constants/typography/font-family.js.map +0 -1
- package/lib/module/constants/typography/index.js +0 -5
- package/lib/module/constants/typography/index.js.map +0 -1
- package/lib/module/constants/typography/type-sets.js +0 -137
- package/lib/module/constants/typography/type-sets.js.map +0 -1
- package/lib/module/contexts/global-config/index.js +0 -9
- package/lib/module/contexts/global-config/index.js.map +0 -1
- package/lib/module/globals/color-scheme/index.js +0 -11
- package/lib/module/globals/color-scheme/index.js.map +0 -1
- package/lib/module/globals/index.js +0 -5
- package/lib/module/globals/index.js.map +0 -1
- package/lib/module/providers/global-config/index.js +0 -20
- package/lib/module/providers/global-config/index.js.map +0 -1
- package/lib/module/providers/theme/index.js +0 -27
- package/lib/module/providers/theme/index.js.map +0 -1
- package/lib/module/providers/toast/_types/index.js +0 -4
- package/lib/module/providers/toast/_types/index.js.map +0 -1
- package/lib/module/providers/toast/_types/toast-ref.js +0 -4
- package/lib/module/providers/toast/_types/toast-ref.js.map +0 -1
- package/lib/module/styles/common.js +0 -21
- package/lib/module/styles/common.js.map +0 -1
- package/lib/module/styles/flex.js +0 -78
- package/lib/module/styles/flex.js.map +0 -1
- package/lib/module/styles/index.js +0 -6
- package/lib/module/styles/index.js.map +0 -1
- package/lib/module/styles/text.js +0 -63
- package/lib/module/styles/text.js.map +0 -1
- package/lib/module/types/@carbon/icons/index.d.js +0 -2
- package/lib/module/types/@carbon/icons/index.d.js.map +0 -1
- package/lib/module/types/theme/color-scheme.js +0 -2
- package/lib/module/types/theme/color-scheme.js.map +0 -1
- package/lib/module/types/theme/color-token.js +0 -2
- package/lib/module/types/theme/color-token.js.map +0 -1
- package/lib/module/types/typography.js +0 -4
- package/lib/module/types/typography.js.map +0 -1
- package/lib/typescript/commonjs/src/_carbon-react-native/index.d.ts +0 -7
- package/lib/typescript/commonjs/src/_carbon-react-native/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/_style-sheet/create.d.ts +0 -6
- package/lib/typescript/commonjs/src/_style-sheet/create.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/_style-sheet/index.d.ts +0 -7
- package/lib/typescript/commonjs/src/_style-sheet/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/accordion/_context.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/accordion/_context.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/accordion/_header-border.d.ts +0 -10
- package/lib/typescript/commonjs/src/components/accordion/_header-border.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/accordion/_header.d.ts +0 -13
- package/lib/typescript/commonjs/src/components/accordion/_header.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/accordion/_item.d.ts +0 -23
- package/lib/typescript/commonjs/src/components/accordion/_item.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/accordion/_motion.d.ts +0 -3
- package/lib/typescript/commonjs/src/components/accordion/_motion.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/accordion/_styles.d.ts +0 -16
- package/lib/typescript/commonjs/src/components/accordion/_styles.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/accordion/index.d.ts +0 -16
- package/lib/typescript/commonjs/src/components/accordion/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/accordion/types.d.ts +0 -2
- package/lib/typescript/commonjs/src/components/accordion/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/base/index.d.ts +0 -37
- package/lib/typescript/commonjs/src/components/button/base/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/base-color/index.d.ts +0 -21
- package/lib/typescript/commonjs/src/components/button/base-color/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/ghost/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/button/ghost/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/ghost-danger/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/button/ghost-danger/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/ghost-icon/index.d.ts +0 -8
- package/lib/typescript/commonjs/src/components/button/ghost-icon/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/index.d.ts +0 -12
- package/lib/typescript/commonjs/src/components/button/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/primary/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/button/primary/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/primary-danger/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/button/primary-danger/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/secondary/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/button/secondary/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/size.d.ts +0 -2
- package/lib/typescript/commonjs/src/components/button/size.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/tertiary/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/button/tertiary/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/button/tertiary-danger/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/button/tertiary-danger/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/checkbox/index.d.ts +0 -32
- package/lib/typescript/commonjs/src/components/checkbox/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/checkbox-group/index.d.ts +0 -21
- package/lib/typescript/commonjs/src/components/checkbox-group/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/checkbox-input/index.d.ts +0 -25
- package/lib/typescript/commonjs/src/components/checkbox-input/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/collapsible/index.d.ts +0 -26
- package/lib/typescript/commonjs/src/components/collapsible/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/form-helper-text/index.d.ts +0 -11
- package/lib/typescript/commonjs/src/components/form-helper-text/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/form-label/index.d.ts +0 -10
- package/lib/typescript/commonjs/src/components/form-label/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/icon/index.d.ts +0 -13
- package/lib/typescript/commonjs/src/components/icon/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/index.d.ts +0 -18
- package/lib/typescript/commonjs/src/components/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/_base.d.ts +0 -28
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/_base.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/error/index.d.ts +0 -11
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/error/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/informational/index.d.ts +0 -11
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/informational/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/success/index.d.ts +0 -11
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/success/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/warning/index.d.ts +0 -11
- package/lib/typescript/commonjs/src/components/notification/_status-hooks/warning/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_variant-context.d.ts +0 -10
- package/lib/typescript/commonjs/src/components/notification/_variant-context.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_variants/_button-ghost.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/notification/_variants/_button-ghost.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_variants/_button-tertiary.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/notification/_variants/_button-tertiary.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_variants/actionable/index.d.ts +0 -30
- package/lib/typescript/commonjs/src/components/notification/_variants/actionable/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_variants/actionable-inline/index.d.ts +0 -30
- package/lib/typescript/commonjs/src/components/notification/_variants/actionable-inline/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_variants/callout/index.d.ts +0 -13
- package/lib/typescript/commonjs/src/components/notification/_variants/callout/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_variants/callout-inline/index.d.ts +0 -13
- package/lib/typescript/commonjs/src/components/notification/_variants/callout-inline/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_variants/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/_variants/toast/index.d.ts +0 -17
- package/lib/typescript/commonjs/src/components/notification/_variants/toast/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable/error/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/actionable/error/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable/informational/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/actionable/informational/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable/success/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/actionable/success/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable/warning/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/actionable/warning/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable-inline/error/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/actionable-inline/error/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable-inline/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable-inline/informational/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/actionable-inline/informational/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable-inline/success/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/actionable-inline/success/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/actionable-inline/warning/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/actionable-inline/warning/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/base/index.d.ts +0 -29
- package/lib/typescript/commonjs/src/components/notification/base/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout/error/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/callout/error/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout/informational/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/callout/informational/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout/success/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/callout/success/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout/warning/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/callout/warning/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout-inline/error/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/callout-inline/error/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout-inline/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout-inline/informational/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/callout-inline/informational/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout-inline/success/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/callout-inline/success/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/callout-inline/warning/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/callout-inline/warning/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/index.d.ts +0 -10
- package/lib/typescript/commonjs/src/components/notification/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/subtitle/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/notification/subtitle/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/subtitle-link/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/notification/subtitle-link/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/toast/error/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/toast/error/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/toast/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/toast/informational/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/toast/informational/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/toast/success/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/toast/success/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/toast/warning/index.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/notification/toast/warning/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/notification/types.d.ts +0 -2
- package/lib/typescript/commonjs/src/components/notification/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/radio-button/index.d.ts +0 -32
- package/lib/typescript/commonjs/src/components/radio-button/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/radio-button-group/_item-context.d.ts +0 -8
- package/lib/typescript/commonjs/src/components/radio-button-group/_item-context.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/radio-button-group/_item.d.ts +0 -3
- package/lib/typescript/commonjs/src/components/radio-button-group/_item.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/radio-button-group/_types/index.d.ts +0 -27
- package/lib/typescript/commonjs/src/components/radio-button-group/_types/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/radio-button-group/_types/ref-base.d.ts +0 -9
- package/lib/typescript/commonjs/src/components/radio-button-group/_types/ref-base.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/radio-button-group/index.d.ts +0 -6
- package/lib/typescript/commonjs/src/components/radio-button-group/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/radio-button-input/index.d.ts +0 -22
- package/lib/typescript/commonjs/src/components/radio-button-input/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/switch/index.d.ts +0 -33
- package/lib/typescript/commonjs/src/components/switch/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/text/index.d.ts +0 -8
- package/lib/typescript/commonjs/src/components/text/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/toggle/base/index.d.ts +0 -33
- package/lib/typescript/commonjs/src/components/toggle/base/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/toggle/default/index.d.ts +0 -10
- package/lib/typescript/commonjs/src/components/toggle/default/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/toggle/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/components/toggle/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/toggle/small/index.d.ts +0 -8
- package/lib/typescript/commonjs/src/components/toggle/small/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/components/toggle/state.d.ts +0 -2
- package/lib/typescript/commonjs/src/components/toggle/state.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/color/index.d.ts +0 -4
- package/lib/typescript/commonjs/src/constants/color/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/color/tokens/gray-10.d.ts +0 -172
- package/lib/typescript/commonjs/src/constants/color/tokens/gray-10.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/color/tokens/gray-100.d.ts +0 -172
- package/lib/typescript/commonjs/src/constants/color/tokens/gray-100.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/color/tokens/index.d.ts +0 -3
- package/lib/typescript/commonjs/src/constants/color/tokens/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/index.d.ts +0 -6
- package/lib/typescript/commonjs/src/constants/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/motion/index.d.ts +0 -63
- package/lib/typescript/commonjs/src/constants/motion/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/spacing.d.ts +0 -17
- package/lib/typescript/commonjs/src/constants/spacing.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/typography/font-family.d.ts +0 -17
- package/lib/typescript/commonjs/src/constants/typography/font-family.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/typography/index.d.ts +0 -3
- package/lib/typescript/commonjs/src/constants/typography/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/constants/typography/type-sets.d.ts +0 -3
- package/lib/typescript/commonjs/src/constants/typography/type-sets.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/contexts/global-config/index.d.ts +0 -15
- package/lib/typescript/commonjs/src/contexts/global-config/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/contexts/index.d.ts +0 -4
- package/lib/typescript/commonjs/src/contexts/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/contexts/theme/index.d.ts +0 -7
- package/lib/typescript/commonjs/src/contexts/theme/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/contexts/toast/index.d.ts +0 -12
- package/lib/typescript/commonjs/src/contexts/toast/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/globals/color-scheme/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/globals/color-scheme/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/globals/index.d.ts +0 -3
- package/lib/typescript/commonjs/src/globals/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/helpers/color/get-color-scheme.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/helpers/color/get-color-token.d.ts +0 -3
- package/lib/typescript/commonjs/src/helpers/color/get-color-token.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/helpers/color/hex-to-rgba.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/helpers/color/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/helpers/index.d.ts +0 -3
- package/lib/typescript/commonjs/src/helpers/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/index.d.ts +0 -10
- package/lib/typescript/commonjs/src/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/providers/global-config/index.d.ts +0 -6
- package/lib/typescript/commonjs/src/providers/global-config/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/providers/index.d.ts +0 -4
- package/lib/typescript/commonjs/src/providers/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/providers/theme/index.d.ts +0 -11
- package/lib/typescript/commonjs/src/providers/theme/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/providers/toast/_overlay/index.d.ts +0 -7
- package/lib/typescript/commonjs/src/providers/toast/_overlay/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/providers/toast/_types/index.d.ts +0 -2
- package/lib/typescript/commonjs/src/providers/toast/_types/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/providers/toast/_types/toast-ref.d.ts +0 -4
- package/lib/typescript/commonjs/src/providers/toast/_types/toast-ref.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/providers/toast/index.d.ts +0 -7
- package/lib/typescript/commonjs/src/providers/toast/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/styles/common.d.ts +0 -18
- package/lib/typescript/commonjs/src/styles/common.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/styles/flex.d.ts +0 -75
- package/lib/typescript/commonjs/src/styles/flex.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/styles/index.d.ts +0 -4
- package/lib/typescript/commonjs/src/styles/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/styles/text.d.ts +0 -59
- package/lib/typescript/commonjs/src/styles/text.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/index.d.ts +0 -5
- package/lib/typescript/commonjs/src/types/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/shared.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/theme/color-scheme.d.ts +0 -2
- package/lib/typescript/commonjs/src/types/theme/color-scheme.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/theme/color-token.d.ts +0 -2
- package/lib/typescript/commonjs/src/types/theme/color-token.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/theme/index.d.ts +0 -3
- package/lib/typescript/commonjs/src/types/theme/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/types/typography.d.ts +0 -11
- package/lib/typescript/commonjs/src/types/typography.d.ts.map +0 -1
- package/lib/typescript/module/src/_carbon-react-native/index.d.ts +0 -7
- package/lib/typescript/module/src/_carbon-react-native/index.d.ts.map +0 -1
- package/lib/typescript/module/src/_style-sheet/create.d.ts +0 -6
- package/lib/typescript/module/src/_style-sheet/create.d.ts.map +0 -1
- package/lib/typescript/module/src/_style-sheet/index.d.ts +0 -7
- package/lib/typescript/module/src/_style-sheet/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/accordion/_context.d.ts +0 -9
- package/lib/typescript/module/src/components/accordion/_context.d.ts.map +0 -1
- package/lib/typescript/module/src/components/accordion/_header-border.d.ts +0 -10
- package/lib/typescript/module/src/components/accordion/_header-border.d.ts.map +0 -1
- package/lib/typescript/module/src/components/accordion/_header.d.ts +0 -13
- package/lib/typescript/module/src/components/accordion/_header.d.ts.map +0 -1
- package/lib/typescript/module/src/components/accordion/_item.d.ts +0 -23
- package/lib/typescript/module/src/components/accordion/_item.d.ts.map +0 -1
- package/lib/typescript/module/src/components/accordion/_motion.d.ts +0 -3
- package/lib/typescript/module/src/components/accordion/_motion.d.ts.map +0 -1
- package/lib/typescript/module/src/components/accordion/_styles.d.ts +0 -16
- package/lib/typescript/module/src/components/accordion/_styles.d.ts.map +0 -1
- package/lib/typescript/module/src/components/accordion/index.d.ts +0 -16
- package/lib/typescript/module/src/components/accordion/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/accordion/types.d.ts +0 -2
- package/lib/typescript/module/src/components/accordion/types.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/base/index.d.ts +0 -37
- package/lib/typescript/module/src/components/button/base/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/base-color/index.d.ts +0 -21
- package/lib/typescript/module/src/components/button/base-color/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/ghost/index.d.ts +0 -5
- package/lib/typescript/module/src/components/button/ghost/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/ghost-danger/index.d.ts +0 -5
- package/lib/typescript/module/src/components/button/ghost-danger/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/ghost-icon/index.d.ts +0 -8
- package/lib/typescript/module/src/components/button/ghost-icon/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/index.d.ts +0 -12
- package/lib/typescript/module/src/components/button/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/primary/index.d.ts +0 -5
- package/lib/typescript/module/src/components/button/primary/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/primary-danger/index.d.ts +0 -5
- package/lib/typescript/module/src/components/button/primary-danger/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/secondary/index.d.ts +0 -5
- package/lib/typescript/module/src/components/button/secondary/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/size.d.ts +0 -2
- package/lib/typescript/module/src/components/button/size.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/tertiary/index.d.ts +0 -5
- package/lib/typescript/module/src/components/button/tertiary/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/button/tertiary-danger/index.d.ts +0 -5
- package/lib/typescript/module/src/components/button/tertiary-danger/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/checkbox/index.d.ts +0 -32
- package/lib/typescript/module/src/components/checkbox/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/checkbox-group/index.d.ts +0 -21
- package/lib/typescript/module/src/components/checkbox-group/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/checkbox-input/index.d.ts +0 -25
- package/lib/typescript/module/src/components/checkbox-input/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/collapsible/index.d.ts +0 -26
- package/lib/typescript/module/src/components/collapsible/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/form-helper-text/index.d.ts +0 -11
- package/lib/typescript/module/src/components/form-helper-text/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/form-label/index.d.ts +0 -10
- package/lib/typescript/module/src/components/form-label/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/icon/index.d.ts +0 -13
- package/lib/typescript/module/src/components/icon/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/index.d.ts +0 -18
- package/lib/typescript/module/src/components/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_status-hooks/_base.d.ts +0 -28
- package/lib/typescript/module/src/components/notification/_status-hooks/_base.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_status-hooks/error/index.d.ts +0 -11
- package/lib/typescript/module/src/components/notification/_status-hooks/error/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_status-hooks/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_status-hooks/informational/index.d.ts +0 -11
- package/lib/typescript/module/src/components/notification/_status-hooks/informational/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_status-hooks/success/index.d.ts +0 -11
- package/lib/typescript/module/src/components/notification/_status-hooks/success/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_status-hooks/warning/index.d.ts +0 -11
- package/lib/typescript/module/src/components/notification/_status-hooks/warning/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_variant-context.d.ts +0 -10
- package/lib/typescript/module/src/components/notification/_variant-context.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_variants/_button-ghost.d.ts +0 -5
- package/lib/typescript/module/src/components/notification/_variants/_button-ghost.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_variants/_button-tertiary.d.ts +0 -5
- package/lib/typescript/module/src/components/notification/_variants/_button-tertiary.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_variants/actionable/index.d.ts +0 -30
- package/lib/typescript/module/src/components/notification/_variants/actionable/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_variants/actionable-inline/index.d.ts +0 -30
- package/lib/typescript/module/src/components/notification/_variants/actionable-inline/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_variants/callout/index.d.ts +0 -13
- package/lib/typescript/module/src/components/notification/_variants/callout/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_variants/callout-inline/index.d.ts +0 -13
- package/lib/typescript/module/src/components/notification/_variants/callout-inline/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_variants/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/_variants/toast/index.d.ts +0 -17
- package/lib/typescript/module/src/components/notification/_variants/toast/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable/error/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/actionable/error/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable/informational/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/actionable/informational/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable/success/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/actionable/success/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable/warning/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/actionable/warning/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable-inline/error/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/actionable-inline/error/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable-inline/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable-inline/informational/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/actionable-inline/informational/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable-inline/success/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/actionable-inline/success/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/actionable-inline/warning/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/actionable-inline/warning/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/base/index.d.ts +0 -29
- package/lib/typescript/module/src/components/notification/base/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout/error/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/callout/error/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout/informational/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/callout/informational/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout/success/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/callout/success/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout/warning/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/callout/warning/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout-inline/error/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/callout-inline/error/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout-inline/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout-inline/informational/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/callout-inline/informational/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout-inline/success/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/callout-inline/success/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/callout-inline/warning/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/callout-inline/warning/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/index.d.ts +0 -10
- package/lib/typescript/module/src/components/notification/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/subtitle/index.d.ts +0 -5
- package/lib/typescript/module/src/components/notification/subtitle/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/subtitle-link/index.d.ts +0 -5
- package/lib/typescript/module/src/components/notification/subtitle-link/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/toast/error/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/toast/error/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/toast/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/toast/informational/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/toast/informational/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/toast/success/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/toast/success/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/toast/warning/index.d.ts +0 -9
- package/lib/typescript/module/src/components/notification/toast/warning/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/notification/types.d.ts +0 -2
- package/lib/typescript/module/src/components/notification/types.d.ts.map +0 -1
- package/lib/typescript/module/src/components/radio-button/index.d.ts +0 -32
- package/lib/typescript/module/src/components/radio-button/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/radio-button-group/_item-context.d.ts +0 -8
- package/lib/typescript/module/src/components/radio-button-group/_item-context.d.ts.map +0 -1
- package/lib/typescript/module/src/components/radio-button-group/_item.d.ts +0 -3
- package/lib/typescript/module/src/components/radio-button-group/_item.d.ts.map +0 -1
- package/lib/typescript/module/src/components/radio-button-group/_types/index.d.ts +0 -27
- package/lib/typescript/module/src/components/radio-button-group/_types/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/radio-button-group/_types/ref-base.d.ts +0 -9
- package/lib/typescript/module/src/components/radio-button-group/_types/ref-base.d.ts.map +0 -1
- package/lib/typescript/module/src/components/radio-button-group/index.d.ts +0 -6
- package/lib/typescript/module/src/components/radio-button-group/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/radio-button-input/index.d.ts +0 -22
- package/lib/typescript/module/src/components/radio-button-input/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/switch/index.d.ts +0 -33
- package/lib/typescript/module/src/components/switch/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/text/index.d.ts +0 -8
- package/lib/typescript/module/src/components/text/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/toggle/base/index.d.ts +0 -33
- package/lib/typescript/module/src/components/toggle/base/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/toggle/default/index.d.ts +0 -10
- package/lib/typescript/module/src/components/toggle/default/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/toggle/index.d.ts +0 -5
- package/lib/typescript/module/src/components/toggle/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/toggle/small/index.d.ts +0 -8
- package/lib/typescript/module/src/components/toggle/small/index.d.ts.map +0 -1
- package/lib/typescript/module/src/components/toggle/state.d.ts +0 -2
- package/lib/typescript/module/src/components/toggle/state.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/color/index.d.ts +0 -4
- package/lib/typescript/module/src/constants/color/index.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/color/tokens/gray-10.d.ts +0 -172
- package/lib/typescript/module/src/constants/color/tokens/gray-10.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/color/tokens/gray-100.d.ts +0 -172
- package/lib/typescript/module/src/constants/color/tokens/gray-100.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/color/tokens/index.d.ts +0 -3
- package/lib/typescript/module/src/constants/color/tokens/index.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/index.d.ts +0 -6
- package/lib/typescript/module/src/constants/index.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/motion/index.d.ts +0 -63
- package/lib/typescript/module/src/constants/motion/index.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/spacing.d.ts +0 -17
- package/lib/typescript/module/src/constants/spacing.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/typography/font-family.d.ts +0 -17
- package/lib/typescript/module/src/constants/typography/font-family.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/typography/index.d.ts +0 -3
- package/lib/typescript/module/src/constants/typography/index.d.ts.map +0 -1
- package/lib/typescript/module/src/constants/typography/type-sets.d.ts +0 -3
- package/lib/typescript/module/src/constants/typography/type-sets.d.ts.map +0 -1
- package/lib/typescript/module/src/contexts/global-config/index.d.ts +0 -15
- package/lib/typescript/module/src/contexts/global-config/index.d.ts.map +0 -1
- package/lib/typescript/module/src/contexts/index.d.ts +0 -4
- package/lib/typescript/module/src/contexts/index.d.ts.map +0 -1
- package/lib/typescript/module/src/contexts/theme/index.d.ts +0 -7
- package/lib/typescript/module/src/contexts/theme/index.d.ts.map +0 -1
- package/lib/typescript/module/src/contexts/toast/index.d.ts +0 -12
- package/lib/typescript/module/src/contexts/toast/index.d.ts.map +0 -1
- package/lib/typescript/module/src/globals/color-scheme/index.d.ts +0 -5
- package/lib/typescript/module/src/globals/color-scheme/index.d.ts.map +0 -1
- package/lib/typescript/module/src/globals/index.d.ts +0 -3
- package/lib/typescript/module/src/globals/index.d.ts.map +0 -1
- package/lib/typescript/module/src/helpers/color/get-color-scheme.d.ts.map +0 -1
- package/lib/typescript/module/src/helpers/color/get-color-token.d.ts +0 -3
- package/lib/typescript/module/src/helpers/color/get-color-token.d.ts.map +0 -1
- package/lib/typescript/module/src/helpers/color/hex-to-rgba.d.ts.map +0 -1
- package/lib/typescript/module/src/helpers/color/index.d.ts.map +0 -1
- package/lib/typescript/module/src/helpers/index.d.ts +0 -3
- package/lib/typescript/module/src/helpers/index.d.ts.map +0 -1
- package/lib/typescript/module/src/index.d.ts +0 -10
- package/lib/typescript/module/src/index.d.ts.map +0 -1
- package/lib/typescript/module/src/providers/global-config/index.d.ts +0 -6
- package/lib/typescript/module/src/providers/global-config/index.d.ts.map +0 -1
- package/lib/typescript/module/src/providers/index.d.ts +0 -4
- package/lib/typescript/module/src/providers/index.d.ts.map +0 -1
- package/lib/typescript/module/src/providers/theme/index.d.ts +0 -11
- package/lib/typescript/module/src/providers/theme/index.d.ts.map +0 -1
- package/lib/typescript/module/src/providers/toast/_overlay/index.d.ts +0 -7
- package/lib/typescript/module/src/providers/toast/_overlay/index.d.ts.map +0 -1
- package/lib/typescript/module/src/providers/toast/_types/index.d.ts +0 -2
- package/lib/typescript/module/src/providers/toast/_types/index.d.ts.map +0 -1
- package/lib/typescript/module/src/providers/toast/_types/toast-ref.d.ts +0 -4
- package/lib/typescript/module/src/providers/toast/_types/toast-ref.d.ts.map +0 -1
- package/lib/typescript/module/src/providers/toast/index.d.ts +0 -7
- package/lib/typescript/module/src/providers/toast/index.d.ts.map +0 -1
- package/lib/typescript/module/src/styles/common.d.ts +0 -18
- package/lib/typescript/module/src/styles/common.d.ts.map +0 -1
- package/lib/typescript/module/src/styles/flex.d.ts +0 -75
- package/lib/typescript/module/src/styles/flex.d.ts.map +0 -1
- package/lib/typescript/module/src/styles/index.d.ts +0 -4
- package/lib/typescript/module/src/styles/index.d.ts.map +0 -1
- package/lib/typescript/module/src/styles/text.d.ts +0 -59
- package/lib/typescript/module/src/styles/text.d.ts.map +0 -1
- package/lib/typescript/module/src/types/index.d.ts +0 -5
- package/lib/typescript/module/src/types/index.d.ts.map +0 -1
- package/lib/typescript/module/src/types/shared.d.ts.map +0 -1
- package/lib/typescript/module/src/types/theme/color-scheme.d.ts +0 -2
- package/lib/typescript/module/src/types/theme/color-scheme.d.ts.map +0 -1
- package/lib/typescript/module/src/types/theme/color-token.d.ts +0 -2
- package/lib/typescript/module/src/types/theme/color-token.d.ts.map +0 -1
- package/lib/typescript/module/src/types/theme/index.d.ts +0 -3
- package/lib/typescript/module/src/types/theme/index.d.ts.map +0 -1
- package/lib/typescript/module/src/types/typography.d.ts +0 -11
- package/lib/typescript/module/src/types/typography.d.ts.map +0 -1
- package/src/_carbon-react-native/index.tsx +0 -35
- package/src/_style-sheet/create.ts +0 -145
- package/src/_style-sheet/index.ts +0 -15
- package/src/components/accordion/_context.tsx +0 -19
- package/src/components/accordion/_header-border.tsx +0 -68
- package/src/components/accordion/_header.tsx +0 -269
- package/src/components/accordion/_item.tsx +0 -186
- package/src/components/accordion/_motion.ts +0 -27
- package/src/components/accordion/_styles.ts +0 -24
- package/src/components/accordion/index.tsx +0 -152
- package/src/components/accordion/types.ts +0 -4
- package/src/components/button/base/index.tsx +0 -270
- package/src/components/button/base-color/index.tsx +0 -277
- package/src/components/button/ghost/index.tsx +0 -132
- package/src/components/button/ghost-danger/index.tsx +0 -132
- package/src/components/button/ghost-icon/index.tsx +0 -125
- package/src/components/button/index.tsx +0 -11
- package/src/components/button/primary/index.tsx +0 -108
- package/src/components/button/primary-danger/index.tsx +0 -108
- package/src/components/button/secondary/index.tsx +0 -108
- package/src/components/button/size.ts +0 -7
- package/src/components/button/tertiary/index.tsx +0 -125
- package/src/components/button/tertiary-danger/index.tsx +0 -125
- package/src/components/checkbox/index.tsx +0 -239
- package/src/components/checkbox-group/index.tsx +0 -197
- package/src/components/checkbox-input/index.tsx +0 -368
- package/src/components/collapsible/index.tsx +0 -289
- package/src/components/form-helper-text/index.tsx +0 -84
- package/src/components/form-label/index.tsx +0 -66
- package/src/components/icon/index.tsx +0 -53
- package/src/components/index.tsx +0 -23
- package/src/components/notification/_status-hooks/_base.tsx +0 -104
- package/src/components/notification/_status-hooks/error/index.tsx +0 -61
- package/src/components/notification/_status-hooks/index.tsx +0 -4
- package/src/components/notification/_status-hooks/informational/index.tsx +0 -61
- package/src/components/notification/_status-hooks/success/index.tsx +0 -61
- package/src/components/notification/_status-hooks/warning/index.tsx +0 -61
- package/src/components/notification/_variant-context.tsx +0 -44
- package/src/components/notification/_variants/_button-ghost.tsx +0 -73
- package/src/components/notification/_variants/_button-tertiary.tsx +0 -73
- package/src/components/notification/_variants/actionable/index.tsx +0 -104
- package/src/components/notification/_variants/actionable-inline/index.tsx +0 -104
- package/src/components/notification/_variants/callout/index.tsx +0 -76
- package/src/components/notification/_variants/callout-inline/index.tsx +0 -76
- package/src/components/notification/_variants/index.tsx +0 -5
- package/src/components/notification/_variants/toast/index.tsx +0 -135
- package/src/components/notification/actionable/error/index.tsx +0 -86
- package/src/components/notification/actionable/index.tsx +0 -4
- package/src/components/notification/actionable/informational/index.tsx +0 -86
- package/src/components/notification/actionable/success/index.tsx +0 -86
- package/src/components/notification/actionable/warning/index.tsx +0 -86
- package/src/components/notification/actionable-inline/error/index.tsx +0 -85
- package/src/components/notification/actionable-inline/index.tsx +0 -4
- package/src/components/notification/actionable-inline/informational/index.tsx +0 -85
- package/src/components/notification/actionable-inline/success/index.tsx +0 -85
- package/src/components/notification/actionable-inline/warning/index.tsx +0 -85
- package/src/components/notification/base/index.tsx +0 -321
- package/src/components/notification/callout/error/index.tsx +0 -86
- package/src/components/notification/callout/index.tsx +0 -4
- package/src/components/notification/callout/informational/index.tsx +0 -86
- package/src/components/notification/callout/success/index.tsx +0 -86
- package/src/components/notification/callout/warning/index.tsx +0 -86
- package/src/components/notification/callout-inline/error/index.tsx +0 -85
- package/src/components/notification/callout-inline/index.tsx +0 -4
- package/src/components/notification/callout-inline/informational/index.tsx +0 -85
- package/src/components/notification/callout-inline/success/index.tsx +0 -85
- package/src/components/notification/callout-inline/warning/index.tsx +0 -85
- package/src/components/notification/index.tsx +0 -17
- package/src/components/notification/subtitle/index.tsx +0 -58
- package/src/components/notification/subtitle-link/index.tsx +0 -57
- package/src/components/notification/toast/error/index.tsx +0 -86
- package/src/components/notification/toast/index.tsx +0 -4
- package/src/components/notification/toast/informational/index.tsx +0 -86
- package/src/components/notification/toast/success/index.tsx +0 -86
- package/src/components/notification/toast/warning/index.tsx +0 -86
- package/src/components/notification/types.ts +0 -3
- package/src/components/radio-button/index.tsx +0 -238
- package/src/components/radio-button-group/_item-context.tsx +0 -15
- package/src/components/radio-button-group/_item.tsx +0 -91
- package/src/components/radio-button-group/_types/index.ts +0 -55
- package/src/components/radio-button-group/_types/ref-base.ts +0 -11
- package/src/components/radio-button-group/index.tsx +0 -251
- package/src/components/radio-button-input/index.tsx +0 -366
- package/src/components/switch/index.tsx +0 -448
- package/src/components/text/index.tsx +0 -135
- package/src/components/toggle/base/index.tsx +0 -254
- package/src/components/toggle/default/index.tsx +0 -41
- package/src/components/toggle/index.tsx +0 -4
- package/src/components/toggle/small/index.tsx +0 -39
- package/src/components/toggle/state.ts +0 -4
- package/src/constants/color/code.json +0 -273
- package/src/constants/color/index.ts +0 -7
- package/src/constants/color/tokens/gray-10.ts +0 -197
- package/src/constants/color/tokens/gray-100.ts +0 -197
- package/src/constants/color/tokens/index.ts +0 -2
- package/src/constants/index.ts +0 -11
- package/src/constants/motion/index.ts +0 -34
- package/src/constants/spacing.ts +0 -17
- package/src/constants/typography/font-family.ts +0 -16
- package/src/constants/typography/index.ts +0 -2
- package/src/constants/typography/type-sets.ts +0 -151
- package/src/contexts/global-config/index.ts +0 -26
- package/src/contexts/index.ts +0 -12
- package/src/contexts/theme/index.ts +0 -26
- package/src/contexts/toast/index.ts +0 -27
- package/src/globals/color-scheme/index.ts +0 -13
- package/src/globals/index.ts +0 -5
- package/src/helpers/color/get-color-scheme.ts +0 -19
- package/src/helpers/color/get-color-token.ts +0 -14
- package/src/helpers/color/hex-to-rgba.ts +0 -11
- package/src/helpers/color/index.ts +0 -3
- package/src/helpers/index.ts +0 -5
- package/src/index.tsx +0 -10
- package/src/providers/global-config/index.tsx +0 -28
- package/src/providers/index.tsx +0 -15
- package/src/providers/theme/index.tsx +0 -55
- package/src/providers/toast/_overlay/index.tsx +0 -322
- package/src/providers/toast/_types/index.ts +0 -1
- package/src/providers/toast/_types/toast-ref.ts +0 -6
- package/src/providers/toast/index.tsx +0 -77
- package/src/styles/common.ts +0 -21
- package/src/styles/flex.ts +0 -78
- package/src/styles/index.ts +0 -3
- package/src/styles/text.ts +0 -66
- package/src/types/@carbon/icons/index.d.ts +0 -1
- package/src/types/index.ts +0 -9
- package/src/types/shared.ts +0 -1
- package/src/types/theme/color-scheme.ts +0 -1
- package/src/types/theme/color-token.ts +0 -170
- package/src/types/theme/index.ts +0 -2
- package/src/types/typography.ts +0 -36
- /package/lib/typescript/commonjs/{src/components → components}/notification/_status-hooks/index.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/notification/_variants/index.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/notification/actionable/index.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/notification/actionable-inline/index.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/notification/callout/index.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/notification/callout-inline/index.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/components → components}/notification/toast/index.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/helpers → helpers}/color/get-color-scheme.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/helpers → helpers}/color/hex-to-rgba.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/helpers → helpers}/color/index.d.ts +0 -0
- /package/lib/typescript/commonjs/{src/types → types}/shared.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/notification/_status-hooks/index.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/notification/_variants/index.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/notification/actionable/index.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/notification/actionable-inline/index.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/notification/callout/index.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/notification/callout-inline/index.d.ts +0 -0
- /package/lib/typescript/module/{src/components → components}/notification/toast/index.d.ts +0 -0
- /package/lib/typescript/module/{src/helpers → helpers}/color/get-color-scheme.d.ts +0 -0
- /package/lib/typescript/module/{src/helpers → helpers}/color/hex-to-rgba.d.ts +0 -0
- /package/lib/typescript/module/{src/helpers → helpers}/color/index.d.ts +0 -0
- /package/lib/typescript/module/{src/types → types}/shared.d.ts +0 -0
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type { ThemeType } from '../../../types';
|
|
2
|
-
import type { BaseProps } from '../base';
|
|
3
|
-
import type { NotificationColor } from '../types';
|
|
4
|
-
type ColorModifier = Record<NotificationColor, ThemeType.ColorToken>;
|
|
5
|
-
export interface UseBaseProps {
|
|
6
|
-
color?: NotificationColor;
|
|
7
|
-
backgroundColor: ColorModifier;
|
|
8
|
-
borderColor: ColorModifier;
|
|
9
|
-
leftBarColor: ColorModifier;
|
|
10
|
-
iconColor: ColorModifier;
|
|
11
|
-
iconCloseColor: ColorModifier;
|
|
12
|
-
titleColor: ColorModifier;
|
|
13
|
-
/**
|
|
14
|
-
* true to use background color for top-right-bottom border.
|
|
15
|
-
* Currently for actionable variant
|
|
16
|
-
*/
|
|
17
|
-
transparentBorderColor?: boolean;
|
|
18
|
-
}
|
|
19
|
-
export interface UseBaseData {
|
|
20
|
-
iconProps: BaseProps['iconProps'];
|
|
21
|
-
iconCloseProps: BaseProps['iconCloseProps'];
|
|
22
|
-
titleStyle: BaseProps['titleStyle'];
|
|
23
|
-
leftBarStyle: BaseProps['leftBarStyle'];
|
|
24
|
-
style: BaseProps['style'];
|
|
25
|
-
}
|
|
26
|
-
export declare function useBase({ color: colorProp, backgroundColor, borderColor, leftBarColor, iconColor, iconCloseColor, titleColor, transparentBorderColor, }: UseBaseProps): UseBaseData;
|
|
27
|
-
export {};
|
|
28
|
-
//# sourceMappingURL=_base.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_base.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/_status-hooks/_base.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EACX,SAAS,EACT,MAAM,gBAAgB,CAAA;AAEvB,OAAO,KAAK,EACX,SAAS,EACT,MAAM,SAAS,CAAA;AAEhB,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,UAAU,CAAA;AAEjB,KAAK,aAAa,GAAG,MAAM,CAAC,iBAAiB,EAAE,SAAS,CAAC,UAAU,CAAC,CAAA;AAEpE,MAAM,WAAW,YAAY;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,eAAe,EAAE,aAAa,CAAC;IAC/B,WAAW,EAAE,aAAa,CAAC;IAC3B,YAAY,EAAE,aAAa,CAAC;IAC5B,SAAS,EAAE,aAAa,CAAC;IACzB,cAAc,EAAE,aAAa,CAAC;IAC9B,UAAU,EAAE,aAAa,CAAC;IAC1B;;;OAGG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED,MAAM,WAAW,WAAW;IAC3B,SAAS,EAAE,SAAS,CAAC,WAAW,CAAC,CAAC;IAClC,cAAc,EAAE,SAAS,CAAC,gBAAgB,CAAC,CAAC;IAC5C,UAAU,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;IACpC,YAAY,EAAE,SAAS,CAAC,cAAc,CAAC,CAAC;IACxC,KAAK,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC;CAC1B;AAED,wBAAgB,OAAO,CAAC,EACvB,KAAK,EAAE,SAAS,EAChB,eAAe,EACf,WAAW,EACX,YAAY,EACZ,SAAS,EACT,cAAc,EACd,UAAU,EACV,sBAAsB,GACtB,EAAE,YAAY,GAAG,WAAW,CAgD5B"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { BaseProps } from '../../base';
|
|
2
|
-
import { type UseBaseProps, type UseBaseData } from '../_base';
|
|
3
|
-
export interface UseErrorProps {
|
|
4
|
-
color?: UseBaseProps['color'];
|
|
5
|
-
transparentBorderColor?: UseBaseProps['transparentBorderColor'];
|
|
6
|
-
}
|
|
7
|
-
export interface UseErrorData extends UseBaseData {
|
|
8
|
-
icon: NonNullable<BaseProps['icon']>;
|
|
9
|
-
}
|
|
10
|
-
export declare function useError({ color, transparentBorderColor, }: UseErrorProps): UseErrorData;
|
|
11
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/_status-hooks/error/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/_status-hooks/error/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,SAAS,EACT,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,YAAY,EACjB,KAAK,WAAW,EAChB,MAAM,UAAU,CAAA;AAIjB,MAAM,WAAW,aAAa;IAC7B,KAAK,CAAC,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;IAC9B,sBAAsB,CAAC,EAAE,YAAY,CAAC,wBAAwB,CAAC,CAAC;CAChE;AAED,MAAM,WAAW,YAAa,SAAQ,WAAW;IAChD,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;CACrC;AAED,wBAAgB,QAAQ,CAAC,EACxB,KAAK,EACL,sBAAsB,GACtB,EAAE,aAAa,GAAG,YAAY,CAoC9B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/_status-hooks/index.tsx"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/_status-hooks/informational/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { BaseProps } from '../../base';
|
|
2
|
-
import { type UseBaseProps, type UseBaseData } from '../_base';
|
|
3
|
-
export interface UseInformationalProps {
|
|
4
|
-
color?: UseBaseProps['color'];
|
|
5
|
-
transparentBorderColor?: UseBaseProps['transparentBorderColor'];
|
|
6
|
-
}
|
|
7
|
-
export interface UseInformationalData extends UseBaseData {
|
|
8
|
-
icon: NonNullable<BaseProps['icon']>;
|
|
9
|
-
}
|
|
10
|
-
export declare function useInformational({ color, transparentBorderColor, }: UseInformationalProps): UseInformationalData;
|
|
11
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/_status-hooks/informational/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,SAAS,EACT,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,YAAY,EACjB,KAAK,WAAW,EAChB,MAAM,UAAU,CAAA;AAIjB,MAAM,WAAW,qBAAqB;IACrC,KAAK,CAAC,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;IAC9B,sBAAsB,CAAC,EAAE,YAAY,CAAC,wBAAwB,CAAC,CAAC;CAChE;AAED,MAAM,WAAW,oBAAqB,SAAQ,WAAW;IACxD,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;CACrC;AAED,wBAAgB,gBAAgB,CAAC,EAChC,KAAK,EACL,sBAAsB,GACtB,EAAE,qBAAqB,GAAG,oBAAoB,CAoC9C"}
|
package/lib/typescript/commonjs/src/components/notification/_status-hooks/success/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { BaseProps } from '../../base';
|
|
2
|
-
import { type UseBaseProps, type UseBaseData } from '../_base';
|
|
3
|
-
export interface UseSuccessProps {
|
|
4
|
-
color?: UseBaseProps['color'];
|
|
5
|
-
transparentBorderColor?: UseBaseProps['transparentBorderColor'];
|
|
6
|
-
}
|
|
7
|
-
export interface UseSuccessData extends UseBaseData {
|
|
8
|
-
icon: NonNullable<BaseProps['icon']>;
|
|
9
|
-
}
|
|
10
|
-
export declare function useSuccess({ color, transparentBorderColor, }: UseSuccessProps): UseSuccessData;
|
|
11
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/_status-hooks/success/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/_status-hooks/success/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,SAAS,EACT,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,YAAY,EACjB,KAAK,WAAW,EAChB,MAAM,UAAU,CAAA;AAIjB,MAAM,WAAW,eAAe;IAC/B,KAAK,CAAC,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;IAC9B,sBAAsB,CAAC,EAAE,YAAY,CAAC,wBAAwB,CAAC,CAAC;CAChE;AAED,MAAM,WAAW,cAAe,SAAQ,WAAW;IAClD,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;CACrC;AAED,wBAAgB,UAAU,CAAC,EAC1B,KAAK,EACL,sBAAsB,GACtB,EAAE,eAAe,GAAG,cAAc,CAoClC"}
|
package/lib/typescript/commonjs/src/components/notification/_status-hooks/warning/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { BaseProps } from '../../base';
|
|
2
|
-
import { type UseBaseProps, type UseBaseData } from '../_base';
|
|
3
|
-
export interface UseWarningProps {
|
|
4
|
-
color?: UseBaseProps['color'];
|
|
5
|
-
transparentBorderColor?: UseBaseProps['transparentBorderColor'];
|
|
6
|
-
}
|
|
7
|
-
export interface UseWarningData extends UseBaseData {
|
|
8
|
-
icon: NonNullable<BaseProps['icon']>;
|
|
9
|
-
}
|
|
10
|
-
export declare function useWarning({ color, transparentBorderColor, }: UseWarningProps): UseWarningData;
|
|
11
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/_status-hooks/warning/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/_status-hooks/warning/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,SAAS,EACT,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,YAAY,EACjB,KAAK,WAAW,EAChB,MAAM,UAAU,CAAA;AAIjB,MAAM,WAAW,eAAe;IAC/B,KAAK,CAAC,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;IAC9B,sBAAsB,CAAC,EAAE,YAAY,CAAC,wBAAwB,CAAC,CAAC;CAChE;AAED,MAAM,WAAW,cAAe,SAAQ,WAAW;IAClD,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;CACrC;AAED,wBAAgB,UAAU,CAAC,EAC1B,KAAK,EACL,sBAAsB,GACtB,EAAE,eAAe,GAAG,cAAc,CAoClC"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { NotificationColor } from './types';
|
|
2
|
-
export interface VariantContext {
|
|
3
|
-
color: NotificationColor;
|
|
4
|
-
}
|
|
5
|
-
export declare const VariantContext: import("react").Context<VariantContext>;
|
|
6
|
-
export declare function VariantContextProvider({ color, children, }: {
|
|
7
|
-
color?: NotificationColor;
|
|
8
|
-
children?: React.ReactNode;
|
|
9
|
-
}): import("react").JSX.Element;
|
|
10
|
-
//# sourceMappingURL=_variant-context.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_variant-context.d.ts","sourceRoot":"","sources":["../../../../../../src/components/notification/_variant-context.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,SAAS,CAAA;AAEhB,MAAM,WAAW,cAAc;IAC9B,KAAK,EAAE,iBAAiB,CAAC;CACzB;AAED,eAAO,MAAM,cAAc,yCAEzB,CAAA;AAEF,wBAAgB,sBAAsB,CAAC,EACtC,KAAK,EACL,QAAQ,GACR,EAAE;IACF,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,+BAgBA"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { type GhostProps } from '../../button/ghost';
|
|
2
|
-
export interface ButtonGhostProps extends GhostProps {
|
|
3
|
-
}
|
|
4
|
-
export declare function ButtonGhost({ size, style, ...props }: ButtonGhostProps): import("react").JSX.Element;
|
|
5
|
-
//# sourceMappingURL=_button-ghost.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/_variants/_button-ghost.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_button-ghost.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/_variants/_button-ghost.tsx"],"names":[],"mappings":"AAiBA,OAAO,EAEN,KAAK,UAAU,EACf,MAAM,oBAAoB,CAAA;AAU3B,MAAM,WAAW,gBAAiB,SAAQ,UAAU;CACnD;AAED,wBAAgB,WAAW,CAAC,EAC3B,IAAc,EACd,KAAK,EACL,GAAG,KAAK,EACR,EAAE,gBAAgB,+BAoBlB"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { type TertiaryProps } from '../../button/tertiary';
|
|
2
|
-
export interface ButtonTertiaryProps extends TertiaryProps {
|
|
3
|
-
}
|
|
4
|
-
export declare function ButtonTertiary({ size, style, ...props }: ButtonTertiaryProps): import("react").JSX.Element;
|
|
5
|
-
//# sourceMappingURL=_button-tertiary.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/_variants/_button-tertiary.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_button-tertiary.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/_variants/_button-tertiary.tsx"],"names":[],"mappings":"AAiBA,OAAO,EAEN,KAAK,aAAa,EAClB,MAAM,uBAAuB,CAAA;AAU9B,MAAM,WAAW,mBAAoB,SAAQ,aAAa;CACzD;AAED,wBAAgB,cAAc,CAAC,EAC9B,IAAc,EACd,KAAK,EACL,GAAG,KAAK,EACR,EAAE,mBAAmB,+BAoBrB"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { type BaseProps, type BaseRef } from '../../base';
|
|
2
|
-
import { type SubtitleProps } from '../../subtitle';
|
|
3
|
-
import type { NotificationColor } from '../../types';
|
|
4
|
-
import { type ButtonTertiaryProps } from '../_button-tertiary';
|
|
5
|
-
export interface ActionableVariantProps extends Omit<BaseProps, 'inline' | 'body' | 'icon' | 'iconClose' | 'nodes' | 'leftContainerStyle'> {
|
|
6
|
-
color?: NotificationColor;
|
|
7
|
-
icon: NonNullable<BaseProps['icon']>;
|
|
8
|
-
/**
|
|
9
|
-
* Fill the button prop to render an button action in the notification component
|
|
10
|
-
* Props are similar like you're calling an button component `<Button.Ghost text="button"/>`, just without the JSX
|
|
11
|
-
* @example
|
|
12
|
-
* <Notification.Actionable.Informational
|
|
13
|
-
* title="Title goes here"
|
|
14
|
-
* subtitle="Subtitle goes here"
|
|
15
|
-
* buttonProps={{
|
|
16
|
-
* text: 'Action',
|
|
17
|
-
* onPress: event => {
|
|
18
|
-
* // your function
|
|
19
|
-
* },
|
|
20
|
-
* }}
|
|
21
|
-
* />
|
|
22
|
-
*/
|
|
23
|
-
buttonProps?: Omit<ButtonTertiaryProps, 'color'>;
|
|
24
|
-
subtitle: React.ReactNode;
|
|
25
|
-
subtitleStyle?: SubtitleProps['style'];
|
|
26
|
-
}
|
|
27
|
-
export interface ActionableVariantRef extends BaseRef {
|
|
28
|
-
}
|
|
29
|
-
export declare const ActionableVariant: import("react").ForwardRefExoticComponent<ActionableVariantProps & import("react").RefAttributes<ActionableVariantRef>>;
|
|
30
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/_variants/actionable/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/_variants/actionable/index.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEN,KAAK,SAAS,EACd,KAAK,OAAO,EACZ,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,aAAa,EAClB,MAAM,gBAAgB,CAAA;AAEvB,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,aAAa,CAAA;AAMpB,OAAO,EAEN,KAAK,mBAAmB,EACxB,MAAM,qBAAqB,CAAA;AAE5B,MAAM,WAAW,sBAAuB,SAAQ,IAAI,CACnD,SAAS,EACP,QAAQ,GACR,MAAM,GACN,MAAM,GACN,WAAW,GACX,OAAO,GACP,oBAAoB,CACtB;IACA,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;IACrC;;;;;;;;;;;;;;OAcG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC,mBAAmB,EAAE,OAAO,CAAC,CAAC;IACjD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,CAAC,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;CACvC;AAED,MAAM,WAAW,oBAAqB,SAAQ,OAAO;CACpD;AAED,eAAO,MAAM,iBAAiB,yHAyC7B,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/_variants/actionable-inline/index.d.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { type BaseProps, type BaseRef } from '../../base';
|
|
2
|
-
import { type SubtitleProps } from '../../subtitle';
|
|
3
|
-
import type { NotificationColor } from '../../types';
|
|
4
|
-
import { type ButtonGhostProps } from '../_button-ghost';
|
|
5
|
-
export interface ActionableInlineVariantProps extends Omit<BaseProps, 'inline' | 'body' | 'icon' | 'iconClose' | 'nodes' | 'leftContainerStyle'> {
|
|
6
|
-
color?: NotificationColor;
|
|
7
|
-
icon: NonNullable<BaseProps['icon']>;
|
|
8
|
-
/**
|
|
9
|
-
* Fill the button prop to render an button action in the notification component
|
|
10
|
-
* Props are similar like you're calling an button component `<Button.Ghost text="button"/>`, just without the JSX
|
|
11
|
-
* @example
|
|
12
|
-
* <Notification.ActionableInline.Informational
|
|
13
|
-
* title="Title goes here"
|
|
14
|
-
* subtitle="Subtitle goes here"
|
|
15
|
-
* buttonProps={{
|
|
16
|
-
* text: 'Action',
|
|
17
|
-
* onPress: event => {
|
|
18
|
-
* // your function
|
|
19
|
-
* },
|
|
20
|
-
* }}
|
|
21
|
-
* />
|
|
22
|
-
*/
|
|
23
|
-
buttonProps?: Omit<ButtonGhostProps, 'color'>;
|
|
24
|
-
subtitle: React.ReactNode;
|
|
25
|
-
subtitleStyle?: SubtitleProps['style'];
|
|
26
|
-
}
|
|
27
|
-
export interface ActionableInlineVariantRef extends BaseRef {
|
|
28
|
-
}
|
|
29
|
-
export declare const ActionableInlineVariant: import("react").ForwardRefExoticComponent<ActionableInlineVariantProps & import("react").RefAttributes<ActionableInlineVariantRef>>;
|
|
30
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/_variants/actionable-inline/index.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEN,KAAK,SAAS,EACd,KAAK,OAAO,EACZ,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,aAAa,EAClB,MAAM,gBAAgB,CAAA;AAEvB,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,aAAa,CAAA;AAMpB,OAAO,EAEN,KAAK,gBAAgB,EACrB,MAAM,kBAAkB,CAAA;AAEzB,MAAM,WAAW,4BAA6B,SAAQ,IAAI,CACzD,SAAS,EACP,QAAQ,GACR,MAAM,GACN,MAAM,GACN,WAAW,GACX,OAAO,GACP,oBAAoB,CACtB;IACA,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;IACrC;;;;;;;;;;;;;;OAcG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC,gBAAgB,EAAE,OAAO,CAAC,CAAC;IAC9C,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,CAAC,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;CACvC;AAED,MAAM,WAAW,0BAA2B,SAAQ,OAAO;CAC1D;AAED,eAAO,MAAM,uBAAuB,qIAyCnC,CAAA"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { type BaseProps, type BaseRef } from '../../base';
|
|
2
|
-
import { type SubtitleProps } from '../../subtitle';
|
|
3
|
-
import type { NotificationColor } from '../../types';
|
|
4
|
-
export interface CalloutVariantProps extends Omit<BaseProps, 'inline' | 'body' | 'icon' | 'iconClose' | 'nodes' | 'leftContainerStyle'> {
|
|
5
|
-
color?: NotificationColor;
|
|
6
|
-
icon: NonNullable<BaseProps['icon']>;
|
|
7
|
-
subtitle: React.ReactNode;
|
|
8
|
-
subtitleStyle?: SubtitleProps['style'];
|
|
9
|
-
}
|
|
10
|
-
export interface CalloutVariantRef extends BaseRef {
|
|
11
|
-
}
|
|
12
|
-
export declare const CalloutVariant: import("react").ForwardRefExoticComponent<CalloutVariantProps & import("react").RefAttributes<CalloutVariantRef>>;
|
|
13
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/_variants/callout/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/_variants/callout/index.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEN,KAAK,SAAS,EACd,KAAK,OAAO,EACZ,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,aAAa,EAClB,MAAM,gBAAgB,CAAA;AAEvB,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,aAAa,CAAA;AAMpB,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAChD,SAAS,EACP,QAAQ,GACR,MAAM,GACN,MAAM,GACN,WAAW,GACX,OAAO,GACP,oBAAoB,CACtB;IACA,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;IACrC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,CAAC,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;CACvC;AAED,MAAM,WAAW,iBAAkB,SAAQ,OAAO;CACjD;AAED,eAAO,MAAM,cAAc,mHAkC1B,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/_variants/callout-inline/index.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { type BaseProps, type BaseRef } from '../../base';
|
|
2
|
-
import { type SubtitleProps } from '../../subtitle';
|
|
3
|
-
import type { NotificationColor } from '../../types';
|
|
4
|
-
export interface CalloutInlineVariantProps extends Omit<BaseProps, 'inline' | 'body' | 'icon' | 'iconClose' | 'nodes' | 'leftContainerStyle'> {
|
|
5
|
-
color?: NotificationColor;
|
|
6
|
-
icon: NonNullable<BaseProps['icon']>;
|
|
7
|
-
subtitle: React.ReactNode;
|
|
8
|
-
subtitleStyle?: SubtitleProps['style'];
|
|
9
|
-
}
|
|
10
|
-
export interface CalloutInlineVariantRef extends BaseRef {
|
|
11
|
-
}
|
|
12
|
-
export declare const CalloutInlineVariant: import("react").ForwardRefExoticComponent<CalloutInlineVariantProps & import("react").RefAttributes<CalloutInlineVariantRef>>;
|
|
13
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/_variants/callout-inline/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/_variants/callout-inline/index.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEN,KAAK,SAAS,EACd,KAAK,OAAO,EACZ,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,aAAa,EAClB,MAAM,gBAAgB,CAAA;AAEvB,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,aAAa,CAAA;AAMpB,MAAM,WAAW,yBAA0B,SAAQ,IAAI,CACtD,SAAS,EACP,QAAQ,GACR,MAAM,GACN,MAAM,GACN,WAAW,GACX,OAAO,GACP,oBAAoB,CACtB;IACA,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;IACrC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,CAAC,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;CACvC;AAED,MAAM,WAAW,uBAAwB,SAAQ,OAAO;CACvD;AAED,eAAO,MAAM,oBAAoB,+HAkChC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/_variants/index.tsx"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,qBAAqB,CAAA;AACnC,cAAc,WAAW,CAAA;AACzB,cAAc,kBAAkB,CAAA;AAChC,cAAc,SAAS,CAAA"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { type BaseProps, type BaseRef } from '../../base';
|
|
2
|
-
import { type SubtitleProps } from '../../subtitle';
|
|
3
|
-
import type { NotificationColor } from '../../types';
|
|
4
|
-
export interface ToastVariantProps extends Omit<BaseProps, 'inline' | 'body' | 'icon' | 'iconClose' | 'nodes' | 'leftContainerStyle'> {
|
|
5
|
-
color?: NotificationColor;
|
|
6
|
-
icon: NonNullable<BaseProps['icon']>;
|
|
7
|
-
/**
|
|
8
|
-
* Override timestamp text with this prop
|
|
9
|
-
*/
|
|
10
|
-
timestamp?: string;
|
|
11
|
-
subtitle: React.ReactNode;
|
|
12
|
-
subtitleStyle?: SubtitleProps['style'];
|
|
13
|
-
}
|
|
14
|
-
export interface ToastVariantRef extends BaseRef {
|
|
15
|
-
}
|
|
16
|
-
export declare const ToastVariant: import("react").ForwardRefExoticComponent<ToastVariantProps & import("react").RefAttributes<ToastVariantRef>>;
|
|
17
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/_variants/toast/index.tsx"],"names":[],"mappings":"AAYA,OAAO,EAEN,KAAK,SAAS,EACd,KAAK,OAAO,EACZ,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,aAAa,EAClB,MAAM,gBAAgB,CAAA;AAEvB,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,aAAa,CAAA;AAMpB,MAAM,WAAW,iBAAkB,SAAQ,IAAI,CAC9C,SAAS,EACP,QAAQ,GACR,MAAM,GACN,MAAM,GACN,WAAW,GACX,OAAO,GACP,oBAAoB,CACtB;IACA,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;IACrC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,CAAC,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;CACvC;AAED,MAAM,WAAW,eAAgB,SAAQ,OAAO;CAC/C;AAED,eAAO,MAAM,YAAY,+GA2CxB,CAAA"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ActionableVariantProps, type ActionableVariantRef } from '../../_variants';
|
|
2
|
-
export interface ErrorProps extends Omit<ActionableVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<ActionableVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<ActionableVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface ErrorRef extends ActionableVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Error: import("react").ForwardRefExoticComponent<ErrorProps & import("react").RefAttributes<ActionableVariantRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/actionable/error/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,sBAAsB,EAC3B,KAAK,oBAAoB,EACzB,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,UAAW,SAAQ,IAAI,CAAC,sBAAsB,EAAE,MAAM,CAAC;IACvE,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,sBAAsB,CAAC,WAAW,CAAC,CAAC,EAC9C,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,sBAAsB,CAAC,gBAAgB,CAAC,CAAC,EACnD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,QAAS,SAAQ,oBAAoB;CACrD;AAED,eAAO,MAAM,KAAK,6GAyDjB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/actionable/index.tsx"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/actionable/informational/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ActionableVariantProps, type ActionableVariantRef } from '../../_variants';
|
|
2
|
-
export interface InformationalProps extends Omit<ActionableVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<ActionableVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<ActionableVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface InformationalRef extends ActionableVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Informational: import("react").ForwardRefExoticComponent<InformationalProps & import("react").RefAttributes<InformationalRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/actionable/informational/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/actionable/informational/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,sBAAsB,EAC3B,KAAK,oBAAoB,EACzB,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,kBAAmB,SAAQ,IAAI,CAAC,sBAAsB,EAAE,MAAM,CAAC;IAC/E,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,sBAAsB,CAAC,WAAW,CAAC,CAAC,EAC9C,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,sBAAsB,CAAC,gBAAgB,CAAC,CAAC,EACnD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,gBAAiB,SAAQ,oBAAoB;CAC7D;AAED,eAAO,MAAM,aAAa,iHAyDzB,CAAA"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ActionableVariantProps, type ActionableVariantRef } from '../../_variants';
|
|
2
|
-
export interface SuccessProps extends Omit<ActionableVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<ActionableVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<ActionableVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface SuccessRef extends ActionableVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Success: import("react").ForwardRefExoticComponent<SuccessProps & import("react").RefAttributes<SuccessRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/actionable/success/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/actionable/success/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,sBAAsB,EAC3B,KAAK,oBAAoB,EACzB,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,sBAAsB,EAAE,MAAM,CAAC;IACzE,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,sBAAsB,CAAC,WAAW,CAAC,CAAC,EAC9C,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,sBAAsB,CAAC,gBAAgB,CAAC,CAAC,EACnD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,UAAW,SAAQ,oBAAoB;CACvD;AAED,eAAO,MAAM,OAAO,qGAyDnB,CAAA"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ActionableVariantProps, type ActionableVariantRef } from '../../_variants';
|
|
2
|
-
export interface WarningProps extends Omit<ActionableVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<ActionableVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<ActionableVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface WarningRef extends ActionableVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Warning: import("react").ForwardRefExoticComponent<WarningProps & import("react").RefAttributes<WarningRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/actionable/warning/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/actionable/warning/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,sBAAsB,EAC3B,KAAK,oBAAoB,EACzB,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,sBAAsB,EAAE,MAAM,CAAC;IACzE,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,sBAAsB,CAAC,WAAW,CAAC,CAAC,EAC9C,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,sBAAsB,CAAC,gBAAgB,CAAC,CAAC,EACnD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,UAAW,SAAQ,oBAAoB;CACvD;AAED,eAAO,MAAM,OAAO,qGAyDnB,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/actionable-inline/error/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ActionableInlineVariantProps, type ActionableInlineVariantRef } from '../../_variants';
|
|
2
|
-
export interface ErrorProps extends Omit<ActionableInlineVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<ActionableInlineVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<ActionableInlineVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface ErrorRef extends ActionableInlineVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Error: import("react").ForwardRefExoticComponent<ErrorProps & import("react").RefAttributes<ErrorRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/actionable-inline/error/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/actionable-inline/error/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,4BAA4B,EACjC,KAAK,0BAA0B,EAC/B,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,UAAW,SAAQ,IAAI,CAAC,4BAA4B,EAAE,MAAM,CAAC;IAC7E,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,4BAA4B,CAAC,WAAW,CAAC,CAAC,EACpD,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,4BAA4B,CAAC,gBAAgB,CAAC,CAAC,EACzD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,QAAS,SAAQ,0BAA0B;CAC3D;AAED,eAAO,MAAM,KAAK,iGAwDjB,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/actionable-inline/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/actionable-inline/index.tsx"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ActionableInlineVariantProps, type ActionableInlineVariantRef } from '../../_variants';
|
|
2
|
-
export interface InformationalProps extends Omit<ActionableInlineVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<ActionableInlineVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<ActionableInlineVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface InformationalRef extends ActionableInlineVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Informational: import("react").ForwardRefExoticComponent<InformationalProps & import("react").RefAttributes<InformationalRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/actionable-inline/informational/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,4BAA4B,EACjC,KAAK,0BAA0B,EAC/B,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,kBAAmB,SAAQ,IAAI,CAAC,4BAA4B,EAAE,MAAM,CAAC;IACrF,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,4BAA4B,CAAC,WAAW,CAAC,CAAC,EACpD,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,4BAA4B,CAAC,gBAAgB,CAAC,CAAC,EACzD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,gBAAiB,SAAQ,0BAA0B;CACnE;AAED,eAAO,MAAM,aAAa,iHAwDzB,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/actionable-inline/success/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ActionableInlineVariantProps, type ActionableInlineVariantRef } from '../../_variants';
|
|
2
|
-
export interface SuccessProps extends Omit<ActionableInlineVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<ActionableInlineVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<ActionableInlineVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface SuccessRef extends ActionableInlineVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Success: import("react").ForwardRefExoticComponent<SuccessProps & import("react").RefAttributes<SuccessRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/actionable-inline/success/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/actionable-inline/success/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,4BAA4B,EACjC,KAAK,0BAA0B,EAC/B,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,4BAA4B,EAAE,MAAM,CAAC;IAC/E,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,4BAA4B,CAAC,WAAW,CAAC,CAAC,EACpD,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,4BAA4B,CAAC,gBAAgB,CAAC,CAAC,EACzD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,UAAW,SAAQ,0BAA0B;CAC7D;AAED,eAAO,MAAM,OAAO,qGAwDnB,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/actionable-inline/warning/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ActionableInlineVariantProps, type ActionableInlineVariantRef } from '../../_variants';
|
|
2
|
-
export interface WarningProps extends Omit<ActionableInlineVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<ActionableInlineVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<ActionableInlineVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface WarningRef extends ActionableInlineVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Warning: import("react").ForwardRefExoticComponent<WarningProps & import("react").RefAttributes<WarningRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/actionable-inline/warning/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/actionable-inline/warning/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,4BAA4B,EACjC,KAAK,0BAA0B,EAC/B,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,4BAA4B,EAAE,MAAM,CAAC;IAC/E,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,4BAA4B,CAAC,WAAW,CAAC,CAAC,EACpD,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,4BAA4B,CAAC,gBAAgB,CAAC,CAAC,EACzD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,UAAW,SAAQ,0BAA0B;CAC7D;AAED,eAAO,MAAM,OAAO,qGAwDnB,CAAA"}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { View, type ViewProps } from 'react-native';
|
|
2
|
-
import { type BaseColorProps } from '../../button/base-color';
|
|
3
|
-
import { type IconProps } from '../../icon';
|
|
4
|
-
import { type TextProps } from '../../text';
|
|
5
|
-
export interface BaseProps extends Omit<ViewProps, 'children'> {
|
|
6
|
-
title?: string;
|
|
7
|
-
/**
|
|
8
|
-
* You can fill it with string or number to render quickly useful message.
|
|
9
|
-
* Alternatively, you can use `<Notification.Subtitle>` with `<Notification.SubtitleLink>` if necessary
|
|
10
|
-
*/
|
|
11
|
-
body?: React.ReactNode;
|
|
12
|
-
inline?: boolean;
|
|
13
|
-
icon?: IconProps['src'];
|
|
14
|
-
iconProps?: Omit<IconProps, 'src' | 'width' | 'height'>;
|
|
15
|
-
iconContainerStyle?: ViewProps['style'];
|
|
16
|
-
iconClose?: boolean;
|
|
17
|
-
onPressIconClose?: BaseColorProps['onPress'];
|
|
18
|
-
iconCloseProps?: Omit<IconProps, 'src' | 'width' | 'height'>;
|
|
19
|
-
iconCloseButtonProps?: Omit<BaseColorProps, 'text' | 'size' | 'icon' | 'iconNode' | 'colorStateStyle' | 'onPress'>;
|
|
20
|
-
nodes?: Partial<Record<'beforeContentContainer' | 'beforeButtonClose' | 'afterContentContainer' | 'beforeContentContainerEnd', React.ReactNode>>;
|
|
21
|
-
titleStyle?: TextProps['style'];
|
|
22
|
-
leftBarStyle?: ViewProps['style'];
|
|
23
|
-
leftContainerStyle?: ViewProps['style'];
|
|
24
|
-
contentContainerStyle?: ViewProps['style'];
|
|
25
|
-
}
|
|
26
|
-
export interface BaseRef extends View {
|
|
27
|
-
}
|
|
28
|
-
export declare const Base: import("react").ForwardRefExoticComponent<BaseProps & import("react").RefAttributes<BaseRef>>;
|
|
29
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/base/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAEN,IAAI,EACJ,KAAK,SAAS,EACd,MAAM,cAAc,CAAA;AAcrB,OAAO,EAEN,KAAK,cAAc,EACnB,MAAM,yBAAyB,CAAA;AAEhC,OAAO,EAEN,KAAK,SAAS,EACd,MAAM,YAAY,CAAA;AAEnB,OAAO,EAEN,KAAK,SAAS,EACd,MAAM,YAAY,CAAA;AAInB,MAAM,WAAW,SAAU,SAAQ,IAAI,CAAC,SAAS,EAAE,UAAU,CAAC;IAC7D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB,IAAI,CAAC,EAAE,SAAS,CAAC,KAAK,CAAC,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,CAAC,SAAS,EAAE,KAAK,GAAG,OAAO,GAAG,QAAQ,CAAC,CAAC;IACxD,kBAAkB,CAAC,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC;IAExC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,gBAAgB,CAAC,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC;IAC7C,cAAc,CAAC,EAAE,IAAI,CACpB,SAAS,EACP,KAAK,GACL,OAAO,GACP,QAAQ,CACV,CAAC;IACF,oBAAoB,CAAC,EAAE,IAAI,CAC1B,cAAc,EACZ,MAAM,GACN,MAAM,GACN,MAAM,GACN,UAAU,GACV,iBAAiB,GACjB,SAAS,CACX,CAAC;IAEF,KAAK,CAAC,EAAE,OAAO,CAAC,MAAM,CACnB,wBAAwB,GACxB,mBAAmB,GACnB,uBAAuB,GACvB,2BAA2B,EAC7B,KAAK,CAAC,SAAS,CACf,CAAC,CAAC;IAEH,UAAU,CAAC,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC;IAChC,YAAY,CAAC,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC;IAClC,kBAAkB,CAAC,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC;IACxC,qBAAqB,CAAC,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC;CAC3C;AAED,MAAM,WAAW,OAAQ,SAAQ,IAAI;CACpC;AAED,eAAO,MAAM,IAAI,+FAqKhB,CAAA"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type CalloutVariantProps, type CalloutVariantRef } from '../../_variants';
|
|
2
|
-
export interface ErrorProps extends Omit<CalloutVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<CalloutVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<CalloutVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface ErrorRef extends CalloutVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Error: import("react").ForwardRefExoticComponent<ErrorProps & import("react").RefAttributes<ErrorRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/callout/error/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,mBAAmB,EACxB,KAAK,iBAAiB,EACtB,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,UAAW,SAAQ,IAAI,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACpE,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,mBAAmB,CAAC,WAAW,CAAC,CAAC,EAC3C,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC,EAChD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,QAAS,SAAQ,iBAAiB;CAClD;AAED,eAAO,MAAM,KAAK,iGAyDjB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/callout/index.tsx"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/callout/informational/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type CalloutVariantProps, type CalloutVariantRef } from '../../_variants';
|
|
2
|
-
export interface InformationalProps extends Omit<CalloutVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<CalloutVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<CalloutVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface InformationalRef extends CalloutVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Informational: import("react").ForwardRefExoticComponent<InformationalProps & import("react").RefAttributes<InformationalRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/callout/informational/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/callout/informational/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,mBAAmB,EACxB,KAAK,iBAAiB,EACtB,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,kBAAmB,SAAQ,IAAI,CAAC,mBAAmB,EAAE,MAAM,CAAC;IAC5E,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,mBAAmB,CAAC,WAAW,CAAC,CAAC,EAC3C,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC,EAChD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,gBAAiB,SAAQ,iBAAiB;CAC1D;AAED,eAAO,MAAM,aAAa,iHAyDzB,CAAA"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type CalloutVariantProps, type CalloutVariantRef } from '../../_variants';
|
|
2
|
-
export interface SuccessProps extends Omit<CalloutVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<CalloutVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<CalloutVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface SuccessRef extends CalloutVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Success: import("react").ForwardRefExoticComponent<SuccessProps & import("react").RefAttributes<SuccessRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/callout/success/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,mBAAmB,EACxB,KAAK,iBAAiB,EACtB,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACtE,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,mBAAmB,CAAC,WAAW,CAAC,CAAC,EAC3C,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC,EAChD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,UAAW,SAAQ,iBAAiB;CACpD;AAED,eAAO,MAAM,OAAO,qGAyDnB,CAAA"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type CalloutVariantProps, type CalloutVariantRef } from '../../_variants';
|
|
2
|
-
export interface WarningProps extends Omit<CalloutVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<CalloutVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<CalloutVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface WarningRef extends CalloutVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Warning: import("react").ForwardRefExoticComponent<WarningProps & import("react").RefAttributes<WarningRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/callout/warning/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,mBAAmB,EACxB,KAAK,iBAAiB,EACtB,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACtE,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,mBAAmB,CAAC,WAAW,CAAC,CAAC,EAC3C,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC,EAChD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,UAAW,SAAQ,iBAAiB;CACpD;AAED,eAAO,MAAM,OAAO,qGAyDnB,CAAA"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type CalloutInlineVariantProps, type CalloutInlineVariantRef } from '../../_variants';
|
|
2
|
-
export interface ErrorProps extends Omit<CalloutInlineVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<CalloutInlineVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<CalloutInlineVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface ErrorRef extends CalloutInlineVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Error: import("react").ForwardRefExoticComponent<ErrorProps & import("react").RefAttributes<ErrorRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/callout-inline/error/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/callout-inline/error/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,EAC5B,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,UAAW,SAAQ,IAAI,CAAC,yBAAyB,EAAE,MAAM,CAAC;IAC1E,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,yBAAyB,CAAC,WAAW,CAAC,CAAC,EACjD,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,yBAAyB,CAAC,gBAAgB,CAAC,CAAC,EACtD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,QAAS,SAAQ,uBAAuB;CACxD;AAED,eAAO,MAAM,KAAK,iGAwDjB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/notification/callout-inline/index.tsx"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/callout-inline/informational/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type CalloutInlineVariantProps, type CalloutInlineVariantRef } from '../../_variants';
|
|
2
|
-
export interface InformationalProps extends Omit<CalloutInlineVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<CalloutInlineVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<CalloutInlineVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface InformationalRef extends CalloutInlineVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Informational: import("react").ForwardRefExoticComponent<InformationalProps & import("react").RefAttributes<InformationalRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/callout-inline/informational/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,EAC5B,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,kBAAmB,SAAQ,IAAI,CAAC,yBAAyB,EAAE,MAAM,CAAC;IAClF,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,yBAAyB,CAAC,WAAW,CAAC,CAAC,EACjD,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,yBAAyB,CAAC,gBAAgB,CAAC,CAAC,EACtD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,gBAAiB,SAAQ,uBAAuB;CAChE;AAED,eAAO,MAAM,aAAa,iHAwDzB,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/callout-inline/success/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type CalloutInlineVariantProps, type CalloutInlineVariantRef } from '../../_variants';
|
|
2
|
-
export interface SuccessProps extends Omit<CalloutInlineVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<CalloutInlineVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<CalloutInlineVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface SuccessRef extends CalloutInlineVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Success: import("react").ForwardRefExoticComponent<SuccessProps & import("react").RefAttributes<SuccessRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/callout-inline/success/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/callout-inline/success/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,EAC5B,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,yBAAyB,EAAE,MAAM,CAAC;IAC5E,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,yBAAyB,CAAC,WAAW,CAAC,CAAC,EACjD,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,yBAAyB,CAAC,gBAAgB,CAAC,CAAC,EACtD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,UAAW,SAAQ,uBAAuB;CAC1D;AAED,eAAO,MAAM,OAAO,qGAwDnB,CAAA"}
|
package/lib/typescript/commonjs/src/components/notification/callout-inline/warning/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type CalloutInlineVariantProps, type CalloutInlineVariantRef } from '../../_variants';
|
|
2
|
-
export interface WarningProps extends Omit<CalloutInlineVariantProps, 'icon'> {
|
|
3
|
-
iconProps?: Omit<NonNullable<CalloutInlineVariantProps['iconProps']>, 'color'>;
|
|
4
|
-
iconCloseProps?: Omit<NonNullable<CalloutInlineVariantProps['iconCloseProps']>, 'color'>;
|
|
5
|
-
}
|
|
6
|
-
export interface WarningRef extends CalloutInlineVariantRef {
|
|
7
|
-
}
|
|
8
|
-
export declare const Warning: import("react").ForwardRefExoticComponent<WarningProps & import("react").RefAttributes<WarningRef>>;
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/typescript/commonjs/src/components/notification/callout-inline/warning/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/notification/callout-inline/warning/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEN,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,EAC5B,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,yBAAyB,EAAE,MAAM,CAAC;IAC5E,SAAS,CAAC,EAAE,IAAI,CACf,WAAW,CAAC,yBAAyB,CAAC,WAAW,CAAC,CAAC,EACjD,OAAO,CACT,CAAC;IACF,cAAc,CAAC,EAAE,IAAI,CACpB,WAAW,CAAC,yBAAyB,CAAC,gBAAgB,CAAC,CAAC,EACtD,OAAO,CACT,CAAC;CACF;AAED,MAAM,WAAW,UAAW,SAAQ,uBAAuB;CAC1D;AAED,eAAO,MAAM,OAAO,qGAwDnB,CAAA"}
|