@audira/carbon-react-native 1.0.0-beta.2 → 1.0.0-beta.21
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 +1 -1
- package/lib/commonjs/_internal/contexts/button-group/ButtonGroupContext.js +1 -1
- package/lib/commonjs/_internal/contexts/global-config/GlobalConfigContext.js +1 -1
- package/lib/commonjs/_internal/contexts/in-dialog/InDialogContext.js +9 -0
- package/lib/commonjs/_internal/contexts/in-dialog/InDialogContext.js.map +1 -0
- package/lib/commonjs/_internal/contexts/in-dialog/index.js +17 -0
- package/lib/commonjs/_internal/contexts/in-dialog/index.js.map +1 -0
- package/lib/commonjs/_internal/contexts/index.js +12 -1
- package/lib/commonjs/_internal/contexts/index.js.map +1 -1
- package/lib/commonjs/_internal/contexts/modal/ModalContext.js +8 -1
- package/lib/commonjs/_internal/contexts/modal/ModalContext.js.map +1 -1
- package/lib/commonjs/_internal/helpers/index.js +3 -1
- package/lib/commonjs/_internal/helpers/index.js.map +1 -1
- package/lib/commonjs/_internal/helpers/modal/index.js +17 -0
- package/lib/commonjs/_internal/helpers/modal/index.js.map +1 -0
- package/lib/commonjs/_internal/helpers/modal/is-apply-insets.js +17 -0
- package/lib/commonjs/_internal/helpers/modal/is-apply-insets.js.map +1 -0
- package/lib/commonjs/_internal/hooks/index.js +10 -0
- package/lib/commonjs/_internal/hooks/index.js.map +1 -0
- package/lib/commonjs/_internal/hooks/secure-text-entry-control/UseProps.js +2 -0
- package/lib/commonjs/_internal/hooks/secure-text-entry-control/UseProps.js.map +1 -0
- package/lib/commonjs/_internal/hooks/secure-text-entry-control/index.js +17 -0
- package/lib/commonjs/_internal/hooks/secure-text-entry-control/index.js.map +1 -0
- package/lib/commonjs/_internal/hooks/secure-text-entry-control/use.js +16 -0
- package/lib/commonjs/_internal/hooks/secure-text-entry-control/use.js.map +1 -0
- package/lib/commonjs/carbon-react-native/CarbonReactNative.js +1 -1
- package/lib/commonjs/carbon-style-sheet/breakpoint.js +5 -5
- package/lib/commonjs/carbon-style-sheet/create.js +5 -5
- package/lib/commonjs/components/accordion/Accordion.js +6 -6
- package/lib/commonjs/components/accordion/Accordion.js.map +1 -1
- package/lib/commonjs/components/accordion/_Header.js +44 -42
- package/lib/commonjs/components/accordion/_Header.js.map +1 -1
- package/lib/commonjs/components/accordion/_HeaderBorder.js +8 -8
- package/lib/commonjs/components/accordion/_HeaderBorder.js.map +1 -1
- package/lib/commonjs/components/accordion/_Item.js +10 -6
- package/lib/commonjs/components/accordion/_Item.js.map +1 -1
- package/lib/commonjs/components/accordion/_chevron/Chevron.js +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.map +1 -1
- package/lib/commonjs/components/box/Box.js +26 -0
- package/lib/commonjs/components/box/Box.js.map +1 -0
- package/lib/commonjs/components/box/BoxProps.js +6 -0
- package/lib/commonjs/components/box/BoxProps.js.map +1 -0
- package/lib/commonjs/components/box/BoxRef.js +6 -0
- package/lib/commonjs/components/box/BoxRef.js.map +1 -0
- package/lib/commonjs/components/box/index.js +17 -0
- package/lib/commonjs/components/box/index.js.map +1 -0
- package/lib/commonjs/components/button/base/Base.js +35 -65
- package/lib/commonjs/components/button/base/Base.js.map +1 -1
- package/lib/commonjs/components/button/base-color/BaseColor.js +5 -5
- package/lib/commonjs/components/button/ghost/Ghost.js +26 -24
- package/lib/commonjs/components/button/ghost/Ghost.js.map +1 -1
- package/lib/commonjs/components/button/ghost-danger/GhostDanger.js +25 -23
- package/lib/commonjs/components/button/ghost-danger/GhostDanger.js.map +1 -1
- package/lib/commonjs/components/button/ghost-icon/GhostIcon.js +24 -33
- package/lib/commonjs/components/button/ghost-icon/GhostIcon.js.map +1 -1
- package/lib/commonjs/components/button/primary/Primary.js +24 -22
- package/lib/commonjs/components/button/primary/Primary.js.map +1 -1
- package/lib/commonjs/components/button/primary-danger/PrimaryDanger.js +24 -22
- package/lib/commonjs/components/button/primary-danger/PrimaryDanger.js.map +1 -1
- package/lib/commonjs/components/button/secondary/Secondary.js +24 -22
- package/lib/commonjs/components/button/secondary/Secondary.js.map +1 -1
- package/lib/commonjs/components/button/tertiary/Tertiary.js +26 -24
- package/lib/commonjs/components/button/tertiary/Tertiary.js.map +1 -1
- package/lib/commonjs/components/button/tertiary-danger/TertiaryDanger.js +27 -25
- package/lib/commonjs/components/button/tertiary-danger/TertiaryDanger.js.map +1 -1
- package/lib/commonjs/components/button-group/ButtonGroup.js +13 -16
- package/lib/commonjs/components/button-group/ButtonGroup.js.map +1 -1
- package/lib/commonjs/components/button-group/index.js.map +1 -1
- package/lib/commonjs/components/checkbox/Checkbox.js +35 -34
- package/lib/commonjs/components/checkbox/Checkbox.js.map +1 -1
- package/lib/commonjs/components/checkbox/index.js.map +1 -1
- package/lib/commonjs/components/checkbox-group/CheckboxGroup.js +20 -26
- package/lib/commonjs/components/checkbox-group/CheckboxGroup.js.map +1 -1
- package/lib/commonjs/components/checkbox-group/index.js.map +1 -1
- package/lib/commonjs/components/checkbox-input/CheckboxInput.js +51 -51
- package/lib/commonjs/components/checkbox-input/CheckboxInput.js.map +1 -1
- package/lib/commonjs/components/checkbox-input/CheckboxInputState.js +2 -0
- package/lib/commonjs/components/checkbox-input/CheckboxInputState.js.map +1 -0
- package/lib/commonjs/components/checkbox-input/index.js +4 -4
- package/lib/commonjs/components/checkbox-input/index.js.map +1 -1
- package/lib/commonjs/components/collapsible/Collapsible.js +9 -9
- package/lib/commonjs/components/collapsible/Collapsible.js.map +1 -1
- package/lib/commonjs/components/form-helper-text/FormHelperText.js +13 -12
- package/lib/commonjs/components/form-helper-text/FormHelperText.js.map +1 -1
- package/lib/commonjs/components/form-label/FormLabel.js +6 -5
- package/lib/commonjs/components/form-label/FormLabel.js.map +1 -1
- package/lib/commonjs/components/form-label/index.js.map +1 -1
- package/lib/commonjs/components/icon/Icon.js +5 -5
- package/lib/commonjs/components/icon/Icon.js.map +1 -1
- package/lib/commonjs/components/index.js +47 -11
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/components/inline-loading/InlineLoading.js +17 -16
- package/lib/commonjs/components/inline-loading/InlineLoading.js.map +1 -1
- package/lib/commonjs/components/inline-loading/index.js.map +1 -1
- package/lib/commonjs/components/layer/index.js.map +1 -1
- package/lib/commonjs/components/loading/Loading.js +2 -2
- package/lib/commonjs/components/loading/_circular-progress/CircularProgress.js +3 -3
- package/lib/commonjs/components/modal/Modal.js +143 -91
- package/lib/commonjs/components/modal/Modal.js.map +1 -1
- package/lib/commonjs/components/modal/index.js.map +1 -1
- package/lib/commonjs/components/modal-content/ModalContent.js +59 -46
- package/lib/commonjs/components/modal-content/ModalContent.js.map +1 -1
- package/lib/commonjs/components/modal-content/index.js.map +1 -1
- package/lib/commonjs/components/notification/_status-hooks/_base/useBase.js +3 -3
- package/lib/commonjs/components/notification/_variant-context.js +1 -1
- package/lib/commonjs/components/notification/_variants/_ButtonGhost.js +3 -3
- package/lib/commonjs/components/notification/_variants/_ButtonTertiary.js +3 -3
- package/lib/commonjs/components/notification/_variants/actionable/ActionableVariant.js +1 -2
- package/lib/commonjs/components/notification/_variants/actionable/ActionableVariant.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/actionable/index.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/callout/CalloutVariant.js +1 -2
- package/lib/commonjs/components/notification/_variants/callout/CalloutVariant.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/callout/index.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/index.js +2 -24
- package/lib/commonjs/components/notification/_variants/index.js.map +1 -1
- package/lib/commonjs/components/notification/_variants/toast/ToastVariant.js +5 -5
- package/lib/commonjs/components/notification/_variants/toast/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable/error/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable/informational/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable/success/index.js.map +1 -1
- package/lib/commonjs/components/notification/actionable/warning/index.js.map +1 -1
- package/lib/commonjs/components/notification/base/Base.js +49 -54
- package/lib/commonjs/components/notification/base/Base.js.map +1 -1
- package/lib/commonjs/components/notification/base/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout/error/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout/informational/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout/success/index.js.map +1 -1
- package/lib/commonjs/components/notification/callout/warning/index.js.map +1 -1
- package/lib/commonjs/components/notification/index.js +13 -19
- package/lib/commonjs/components/notification/index.js.map +1 -1
- package/lib/commonjs/components/notification/subtitle/index.js.map +1 -1
- package/lib/commonjs/components/notification/subtitle-link/index.js.map +1 -1
- package/lib/commonjs/components/notification/toast/error/index.js.map +1 -1
- package/lib/commonjs/components/notification/toast/index.js.map +1 -1
- package/lib/commonjs/components/notification/toast/informational/index.js.map +1 -1
- package/lib/commonjs/components/notification/toast/success/index.js.map +1 -1
- package/lib/commonjs/components/notification/toast/warning/index.js.map +1 -1
- package/lib/commonjs/components/password-input/PasswordInput.js +35 -0
- package/lib/commonjs/components/password-input/PasswordInput.js.map +1 -0
- package/lib/commonjs/components/password-input/PasswordInputProps.js +6 -0
- package/lib/commonjs/components/password-input/PasswordInputProps.js.map +1 -0
- package/lib/commonjs/components/password-input/PasswordInputRef.js +6 -0
- package/lib/commonjs/components/password-input/PasswordInputRef.js.map +1 -0
- package/lib/commonjs/components/password-input/index.js +17 -0
- package/lib/commonjs/components/password-input/index.js.map +1 -0
- package/lib/commonjs/components/password-input-field/PasswordInputField.js +35 -0
- package/lib/commonjs/components/password-input-field/PasswordInputField.js.map +1 -0
- package/lib/commonjs/components/password-input-field/PasswordInputFieldProps.js +6 -0
- package/lib/commonjs/components/password-input-field/PasswordInputFieldProps.js.map +1 -0
- package/lib/commonjs/components/password-input-field/PasswordInputFieldRef.js +6 -0
- package/lib/commonjs/components/password-input-field/PasswordInputFieldRef.js.map +1 -0
- package/lib/commonjs/components/password-input-field/_ghost-icon/GhostIcon.js +40 -0
- package/lib/commonjs/components/password-input-field/_ghost-icon/GhostIcon.js.map +1 -0
- package/lib/commonjs/components/password-input-field/_ghost-icon/GhostIconProps.js +6 -0
- package/lib/commonjs/components/password-input-field/_ghost-icon/GhostIconProps.js.map +1 -0
- package/lib/commonjs/components/password-input-field/_ghost-icon/GhostIconRef.js +6 -0
- package/lib/commonjs/components/password-input-field/_ghost-icon/GhostIconRef.js.map +1 -0
- package/lib/commonjs/components/password-input-field/_ghost-icon/index.js +17 -0
- package/lib/commonjs/components/password-input-field/_ghost-icon/index.js.map +1 -0
- package/lib/commonjs/components/password-input-field/index.js +17 -0
- package/lib/commonjs/components/password-input-field/index.js.map +1 -0
- package/lib/commonjs/components/password-input-fluid/PasswordInputFluid.js +33 -0
- package/lib/commonjs/components/password-input-fluid/PasswordInputFluid.js.map +1 -0
- package/lib/commonjs/components/password-input-fluid/PasswordInputFluidProps.js +6 -0
- package/lib/commonjs/components/password-input-fluid/PasswordInputFluidProps.js.map +1 -0
- package/lib/commonjs/components/password-input-fluid/PasswordInputFluidRef.js +6 -0
- package/lib/commonjs/components/password-input-fluid/PasswordInputFluidRef.js.map +1 -0
- package/lib/commonjs/components/password-input-fluid/index.js +17 -0
- package/lib/commonjs/components/password-input-fluid/index.js.map +1 -0
- package/lib/commonjs/components/radio-button/RadioButton.js +21 -16
- package/lib/commonjs/components/radio-button/RadioButton.js.map +1 -1
- package/lib/commonjs/components/radio-button/index.js.map +1 -1
- package/lib/commonjs/components/radio-button-group/RadioButtonGroup.js +20 -19
- package/lib/commonjs/components/radio-button-group/RadioButtonGroup.js.map +1 -1
- package/lib/commonjs/components/radio-button-group/_Item.js +1 -1
- package/lib/commonjs/components/radio-button-group/index.js.map +1 -1
- package/lib/commonjs/components/radio-button-input/RadioButtonInput.js +33 -33
- package/lib/commonjs/components/radio-button-input/RadioButtonInput.js.map +1 -1
- package/lib/commonjs/components/radio-button-input/index.js.map +1 -1
- package/lib/commonjs/components/switch/Switch.js +31 -22
- package/lib/commonjs/components/switch/Switch.js.map +1 -1
- package/lib/commonjs/components/text/Text.js +37 -33
- package/lib/commonjs/components/text/Text.js.map +1 -1
- package/lib/commonjs/components/text/index.js.map +1 -1
- package/lib/commonjs/components/text-area/TextArea.js +3 -5
- package/lib/commonjs/components/text-area/TextArea.js.map +1 -1
- package/lib/commonjs/components/text-area/index.js.map +1 -1
- package/lib/commonjs/components/text-area-field/TextAreaField.js +3 -3
- package/lib/commonjs/components/text-area-field/index.js.map +1 -1
- package/lib/commonjs/components/text-area-fluid/TextAreaFluid.js +7 -7
- package/lib/commonjs/components/text-area-fluid/TextAreaFluid.js.map +1 -1
- package/lib/commonjs/components/text-area-fluid/index.js.map +1 -1
- package/lib/commonjs/components/text-input/TextInput.js +8 -4
- package/lib/commonjs/components/text-input/TextInput.js.map +1 -1
- package/lib/commonjs/components/text-input-field/TextInputField.js +41 -28
- package/lib/commonjs/components/text-input-field/TextInputField.js.map +1 -1
- package/lib/commonjs/components/text-input-field/_rn-text-input/RNTextInput.js +17 -10
- package/lib/commonjs/components/text-input-field/_rn-text-input/RNTextInput.js.map +1 -1
- package/lib/commonjs/components/text-input-field/index.js.map +1 -1
- package/lib/commonjs/components/text-input-fluid/TextInputFluid.js +25 -19
- package/lib/commonjs/components/text-input-fluid/TextInputFluid.js.map +1 -1
- package/lib/commonjs/components/text-input-fluid/index.js.map +1 -1
- package/lib/commonjs/components/toggle/base/Base.js +34 -19
- package/lib/commonjs/components/toggle/base/Base.js.map +1 -1
- package/lib/commonjs/components/toggle/base/index.js.map +1 -1
- package/lib/commonjs/components/toggle/default/Default.js +1 -1
- package/lib/commonjs/components/toggle/default/index.js.map +1 -1
- package/lib/commonjs/components/toggle/index.js.map +1 -1
- package/lib/commonjs/components/toggle/small/Small.js +1 -1
- package/lib/commonjs/components/toggle/small/index.js.map +1 -1
- package/lib/commonjs/const/dialog-animation-configs/carbon-react.js +2 -1
- package/lib/commonjs/const/dialog-animation-configs/carbon-react.js.map +1 -1
- package/lib/commonjs/const/dialog-animation-configs/fade-bottom-up-2.js +2 -1
- package/lib/commonjs/const/dialog-animation-configs/fade-bottom-up-2.js.map +1 -1
- package/lib/commonjs/const/dialog-animation-configs/fade-bottom-up.js +2 -1
- package/lib/commonjs/const/dialog-animation-configs/fade-bottom-up.js.map +1 -1
- package/lib/commonjs/contexts/breakpoint/BreakpointContext.js +1 -1
- package/lib/commonjs/contexts/dialog/DialogContext.js +1 -1
- package/lib/commonjs/contexts/toast/ToastContext.js +2 -2
- package/lib/commonjs/helpers/breakpoint/get-token.js +1 -1
- package/lib/commonjs/helpers/color/get-color-scheme.js +3 -3
- package/lib/commonjs/helpers/color/get-color-token.js +2 -2
- package/lib/commonjs/providers/dialog/DialogProvider.js +73 -35
- package/lib/commonjs/providers/dialog/DialogProvider.js.map +1 -1
- package/lib/commonjs/providers/dialog/_controller/Controller.js +8 -11
- package/lib/commonjs/providers/dialog/_controller/Controller.js.map +1 -1
- package/lib/commonjs/providers/dialog/_controller/_modal/Modal.js +5 -6
- package/lib/commonjs/providers/dialog/_controller/_modal/Modal.js.map +1 -1
- package/lib/commonjs/providers/dialog/_controller/_overlay/Overlay.js +4 -4
- package/lib/commonjs/providers/dialog/_controller/_overlay/Overlay.js.map +1 -1
- package/lib/commonjs/providers/toast/_overlay/Overlay.js +9 -11
- package/lib/commonjs/providers/toast/_overlay/Overlay.js.map +1 -1
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapper.js +13 -8
- package/lib/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapper.js.map +1 -1
- package/lib/commonjs/providers/toast/_overlay/_gap.js +9 -0
- package/lib/commonjs/providers/toast/_overlay/_gap.js.map +1 -0
- package/lib/commonjs/providers/toast/index.js.map +1 -1
- package/lib/commonjs/style-sheets/direction-style-sheet.js +10 -0
- package/lib/commonjs/style-sheets/direction-style-sheet.js.map +1 -0
- package/lib/commonjs/style-sheets/display-style-sheet.js +10 -0
- package/lib/commonjs/style-sheets/display-style-sheet.js.map +1 -0
- package/lib/commonjs/style-sheets/flex-style-sheet.js +10 -0
- package/lib/commonjs/style-sheets/flex-style-sheet.js.map +1 -0
- package/lib/commonjs/style-sheets/font-style-sheet.js +10 -0
- package/lib/commonjs/style-sheets/font-style-sheet.js.map +1 -0
- package/lib/commonjs/style-sheets/height-style-sheet.js +10 -0
- package/lib/commonjs/style-sheets/height-style-sheet.js.map +1 -0
- package/lib/commonjs/style-sheets/index.js +121 -0
- package/lib/commonjs/style-sheets/index.js.map +1 -0
- package/lib/commonjs/style-sheets/overflow-style-sheet.js +10 -0
- package/lib/commonjs/style-sheets/overflow-style-sheet.js.map +1 -0
- package/lib/commonjs/style-sheets/position-style-sheet.js +10 -0
- package/lib/commonjs/style-sheets/position-style-sheet.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/direction.js +18 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/direction.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/display.js +15 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/display.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/flex.js +105 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/flex.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/font.js +65 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/font.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/height.js +18 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/height.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/index.js +105 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/index.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/overflow.js +18 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/overflow.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/position.js +18 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/position.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/typography.js +31 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/typography.js.map +1 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/width.js +18 -0
- package/lib/commonjs/style-sheets/style-sheet-obj/width.js.map +1 -0
- package/lib/commonjs/style-sheets/typography-style-sheet.js +10 -0
- package/lib/commonjs/style-sheets/typography-style-sheet.js.map +1 -0
- package/lib/commonjs/style-sheets/width-style-sheet.js +10 -0
- package/lib/commonjs/style-sheets/width-style-sheet.js.map +1 -0
- package/lib/module/_internal/contexts/button-group/ButtonGroupContext.js +2 -2
- package/lib/module/_internal/contexts/global-config/GlobalConfigContext.js +2 -2
- package/lib/module/_internal/contexts/in-dialog/InDialogContext.js +5 -0
- package/lib/module/_internal/contexts/in-dialog/InDialogContext.js.map +1 -0
- package/lib/module/_internal/contexts/in-dialog/index.js +4 -0
- package/lib/module/_internal/contexts/in-dialog/index.js.map +1 -0
- package/lib/module/_internal/contexts/index.js +1 -0
- package/lib/module/_internal/contexts/index.js.map +1 -1
- package/lib/module/_internal/contexts/modal/ModalContext.js +9 -2
- package/lib/module/_internal/contexts/modal/ModalContext.js.map +1 -1
- package/lib/module/_internal/helpers/index.js +2 -1
- package/lib/module/_internal/helpers/index.js.map +1 -1
- package/lib/module/_internal/helpers/modal/index.js +4 -0
- package/lib/module/_internal/helpers/modal/index.js.map +1 -0
- package/lib/module/_internal/helpers/modal/is-apply-insets.js +13 -0
- package/lib/module/_internal/helpers/modal/is-apply-insets.js.map +1 -0
- package/lib/module/_internal/hooks/index.js +5 -0
- package/lib/module/_internal/hooks/index.js.map +1 -0
- package/lib/module/_internal/hooks/secure-text-entry-control/UseProps.js +2 -0
- package/lib/module/_internal/hooks/secure-text-entry-control/UseProps.js.map +1 -0
- package/lib/module/_internal/hooks/secure-text-entry-control/index.js +4 -0
- package/lib/module/_internal/hooks/secure-text-entry-control/index.js.map +1 -0
- package/lib/module/_internal/hooks/secure-text-entry-control/use.js +12 -0
- package/lib/module/_internal/hooks/secure-text-entry-control/use.js.map +1 -0
- package/lib/module/_internal/providers/breakpoint/BreakpointProvider.js +1 -1
- package/lib/module/_internal/providers/theme/ThemeProvider.js +1 -1
- package/lib/module/carbon-react-native/CarbonReactNative.js +1 -1
- package/lib/module/carbon-style-sheet/breakpoint.js +5 -5
- package/lib/module/carbon-style-sheet/color.js +1 -1
- package/lib/module/carbon-style-sheet/create.js +7 -7
- package/lib/module/carbon-style-sheet/index.js +1 -1
- package/lib/module/carbon-style-sheet/use.js +1 -1
- package/lib/module/components/accordion/Accordion.js +8 -8
- package/lib/module/components/accordion/Accordion.js.map +1 -1
- package/lib/module/components/accordion/_Header.js +35 -33
- package/lib/module/components/accordion/_Header.js.map +1 -1
- package/lib/module/components/accordion/_HeaderBorder.js +6 -6
- package/lib/module/components/accordion/_HeaderBorder.js.map +1 -1
- package/lib/module/components/accordion/_Item.js +11 -7
- package/lib/module/components/accordion/_Item.js.map +1 -1
- package/lib/module/components/accordion/_chevron/Chevron.js +4 -4
- package/lib/module/components/accordion/_context.js +1 -1
- package/lib/module/components/accordion/_motion.js +2 -2
- package/lib/module/components/accordion/_styles.js +5 -5
- package/lib/module/components/accordion/_styles.js.map +1 -1
- package/lib/module/components/accordion/index.js.map +1 -1
- package/lib/module/components/box/Box.js +22 -0
- package/lib/module/components/box/Box.js.map +1 -0
- package/lib/module/components/box/BoxProps.js +4 -0
- package/lib/module/components/box/BoxProps.js.map +1 -0
- package/lib/module/components/box/BoxRef.js +4 -0
- package/lib/module/components/box/BoxRef.js.map +1 -0
- package/lib/module/components/box/index.js +4 -0
- package/lib/module/components/box/index.js.map +1 -0
- package/lib/module/components/button/base/Base.js +38 -68
- package/lib/module/components/button/base/Base.js.map +1 -1
- package/lib/module/components/button/base-color/BaseColor.js +8 -8
- package/lib/module/components/button/ghost/Ghost.js +29 -27
- package/lib/module/components/button/ghost/Ghost.js.map +1 -1
- package/lib/module/components/button/ghost-danger/GhostDanger.js +28 -26
- package/lib/module/components/button/ghost-danger/GhostDanger.js.map +1 -1
- package/lib/module/components/button/ghost-icon/GhostIcon.js +26 -35
- package/lib/module/components/button/ghost-icon/GhostIcon.js.map +1 -1
- package/lib/module/components/button/primary/Primary.js +26 -24
- package/lib/module/components/button/primary/Primary.js.map +1 -1
- package/lib/module/components/button/primary-danger/PrimaryDanger.js +26 -24
- package/lib/module/components/button/primary-danger/PrimaryDanger.js.map +1 -1
- package/lib/module/components/button/secondary/Secondary.js +26 -24
- package/lib/module/components/button/secondary/Secondary.js.map +1 -1
- package/lib/module/components/button/tertiary/Tertiary.js +29 -27
- package/lib/module/components/button/tertiary/Tertiary.js.map +1 -1
- package/lib/module/components/button/tertiary-danger/TertiaryDanger.js +30 -28
- package/lib/module/components/button/tertiary-danger/TertiaryDanger.js.map +1 -1
- package/lib/module/components/button-group/ButtonGroup.js +16 -19
- package/lib/module/components/button-group/ButtonGroup.js.map +1 -1
- package/lib/module/components/button-group/index.js.map +1 -1
- package/lib/module/components/checkbox/Checkbox.js +24 -23
- package/lib/module/components/checkbox/Checkbox.js.map +1 -1
- package/lib/module/components/checkbox/index.js.map +1 -1
- package/lib/module/components/checkbox-group/CheckboxGroup.js +16 -22
- package/lib/module/components/checkbox-group/CheckboxGroup.js.map +1 -1
- package/lib/module/components/checkbox-group/index.js.map +1 -1
- package/lib/module/components/checkbox-input/CheckboxInput.js +36 -36
- package/lib/module/components/checkbox-input/CheckboxInput.js.map +1 -1
- package/lib/module/components/checkbox-input/CheckboxInputState.js +2 -0
- package/lib/module/components/checkbox-input/CheckboxInputState.js.map +1 -0
- package/lib/module/components/checkbox-input/index.js +1 -1
- package/lib/module/components/checkbox-input/index.js.map +1 -1
- package/lib/module/components/collapsible/Collapsible.js +12 -12
- package/lib/module/components/collapsible/Collapsible.js.map +1 -1
- package/lib/module/components/form-helper-text/FormHelperText.js +6 -5
- package/lib/module/components/form-helper-text/FormHelperText.js.map +1 -1
- package/lib/module/components/form-label/FormLabel.js +6 -5
- package/lib/module/components/form-label/FormLabel.js.map +1 -1
- package/lib/module/components/form-label/index.js.map +1 -1
- package/lib/module/components/icon/Icon.js +8 -8
- package/lib/module/components/icon/Icon.js.map +1 -1
- package/lib/module/components/index.js +3 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/components/inline-loading/InlineLoading.js +13 -12
- package/lib/module/components/inline-loading/InlineLoading.js.map +1 -1
- package/lib/module/components/inline-loading/index.js.map +1 -1
- package/lib/module/components/layer/Layer.js +3 -3
- package/lib/module/components/layer/LayerContext.js +1 -1
- package/lib/module/components/layer/index.js.map +1 -1
- package/lib/module/components/loading/Loading.js +5 -5
- package/lib/module/components/loading/_circular-progress/CircularProgress.js +5 -5
- package/lib/module/components/loading/_map-circle-background-color.js +1 -1
- package/lib/module/components/loading/_map-circle-stroke-color.js +1 -1
- package/lib/module/components/modal/Modal.js +146 -94
- package/lib/module/components/modal/Modal.js.map +1 -1
- package/lib/module/components/modal/index.js.map +1 -1
- package/lib/module/components/modal-content/ModalContent.js +61 -48
- package/lib/module/components/modal-content/ModalContent.js.map +1 -1
- package/lib/module/components/modal-content/index.js.map +1 -1
- package/lib/module/components/notification/_VariantContextProvider.js +1 -1
- package/lib/module/components/notification/_status-hooks/_base/useBase.js +5 -5
- package/lib/module/components/notification/_status-hooks/error/useError.js +3 -3
- package/lib/module/components/notification/_status-hooks/informational/useInformational.js +3 -3
- package/lib/module/components/notification/_status-hooks/success/useSuccess.js +3 -3
- package/lib/module/components/notification/_status-hooks/warning/useWarning.js +3 -3
- package/lib/module/components/notification/_variant-context.js +2 -2
- package/lib/module/components/notification/_variants/_ButtonGhost.js +6 -6
- package/lib/module/components/notification/_variants/_ButtonTertiary.js +6 -6
- package/lib/module/components/notification/_variants/actionable/ActionableVariant.js +2 -3
- package/lib/module/components/notification/_variants/actionable/ActionableVariant.js.map +1 -1
- package/lib/module/components/notification/_variants/actionable/index.js.map +1 -1
- package/lib/module/components/notification/_variants/callout/CalloutVariant.js +2 -3
- package/lib/module/components/notification/_variants/callout/CalloutVariant.js.map +1 -1
- package/lib/module/components/notification/_variants/callout/index.js.map +1 -1
- package/lib/module/components/notification/_variants/index.js +0 -2
- package/lib/module/components/notification/_variants/index.js.map +1 -1
- package/lib/module/components/notification/_variants/toast/ToastVariant.js +8 -8
- package/lib/module/components/notification/_variants/toast/index.js.map +1 -1
- package/lib/module/components/notification/actionable/error/Error.js +1 -1
- package/lib/module/components/notification/actionable/error/index.js.map +1 -1
- package/lib/module/components/notification/actionable/index.js.map +1 -1
- package/lib/module/components/notification/actionable/informational/Informational.js +1 -1
- package/lib/module/components/notification/actionable/informational/index.js.map +1 -1
- package/lib/module/components/notification/actionable/success/Success.js +1 -1
- package/lib/module/components/notification/actionable/success/index.js.map +1 -1
- package/lib/module/components/notification/actionable/warning/Warning.js +1 -1
- package/lib/module/components/notification/actionable/warning/index.js.map +1 -1
- package/lib/module/components/notification/base/Base.js +45 -50
- package/lib/module/components/notification/base/Base.js.map +1 -1
- package/lib/module/components/notification/base/index.js.map +1 -1
- package/lib/module/components/notification/callout/error/Error.js +1 -1
- package/lib/module/components/notification/callout/error/index.js.map +1 -1
- package/lib/module/components/notification/callout/index.js.map +1 -1
- package/lib/module/components/notification/callout/informational/Informational.js +1 -1
- package/lib/module/components/notification/callout/informational/index.js.map +1 -1
- package/lib/module/components/notification/callout/success/Success.js +1 -1
- package/lib/module/components/notification/callout/success/index.js.map +1 -1
- package/lib/module/components/notification/callout/warning/Warning.js +1 -1
- package/lib/module/components/notification/callout/warning/index.js.map +1 -1
- package/lib/module/components/notification/index.js +1 -3
- package/lib/module/components/notification/index.js.map +1 -1
- package/lib/module/components/notification/subtitle/Subtitle.js +1 -1
- package/lib/module/components/notification/subtitle/index.js.map +1 -1
- package/lib/module/components/notification/subtitle-link/SubtitleLink.js +1 -1
- package/lib/module/components/notification/subtitle-link/index.js.map +1 -1
- package/lib/module/components/notification/toast/error/Error.js +1 -1
- package/lib/module/components/notification/toast/error/index.js.map +1 -1
- package/lib/module/components/notification/toast/index.js.map +1 -1
- package/lib/module/components/notification/toast/informational/Informational.js +1 -1
- package/lib/module/components/notification/toast/informational/index.js.map +1 -1
- package/lib/module/components/notification/toast/success/Success.js +1 -1
- package/lib/module/components/notification/toast/success/index.js.map +1 -1
- package/lib/module/components/notification/toast/warning/Warning.js +1 -1
- package/lib/module/components/notification/toast/warning/index.js.map +1 -1
- package/lib/module/components/password-input/PasswordInput.js +31 -0
- package/lib/module/components/password-input/PasswordInput.js.map +1 -0
- package/lib/module/components/password-input/PasswordInputProps.js +4 -0
- package/lib/module/components/password-input/PasswordInputProps.js.map +1 -0
- package/lib/module/components/password-input/PasswordInputRef.js +4 -0
- package/lib/module/components/password-input/PasswordInputRef.js.map +1 -0
- package/lib/module/components/password-input/index.js +4 -0
- package/lib/module/components/password-input/index.js.map +1 -0
- package/lib/module/components/password-input-field/PasswordInputField.js +31 -0
- package/lib/module/components/password-input-field/PasswordInputField.js.map +1 -0
- package/lib/module/components/password-input-field/PasswordInputFieldProps.js +4 -0
- package/lib/module/components/password-input-field/PasswordInputFieldProps.js.map +1 -0
- package/lib/module/components/password-input-field/PasswordInputFieldRef.js +4 -0
- package/lib/module/components/password-input-field/PasswordInputFieldRef.js.map +1 -0
- package/lib/module/components/password-input-field/_ghost-icon/GhostIcon.js +35 -0
- package/lib/module/components/password-input-field/_ghost-icon/GhostIcon.js.map +1 -0
- package/lib/module/components/password-input-field/_ghost-icon/GhostIconProps.js +4 -0
- package/lib/module/components/password-input-field/_ghost-icon/GhostIconProps.js.map +1 -0
- package/lib/module/components/password-input-field/_ghost-icon/GhostIconRef.js +4 -0
- package/lib/module/components/password-input-field/_ghost-icon/GhostIconRef.js.map +1 -0
- package/lib/module/components/password-input-field/_ghost-icon/index.js +4 -0
- package/lib/module/components/password-input-field/_ghost-icon/index.js.map +1 -0
- package/lib/module/components/password-input-field/index.js +4 -0
- package/lib/module/components/password-input-field/index.js.map +1 -0
- package/lib/module/components/password-input-fluid/PasswordInputFluid.js +29 -0
- package/lib/module/components/password-input-fluid/PasswordInputFluid.js.map +1 -0
- package/lib/module/components/password-input-fluid/PasswordInputFluidProps.js +4 -0
- package/lib/module/components/password-input-fluid/PasswordInputFluidProps.js.map +1 -0
- package/lib/module/components/password-input-fluid/PasswordInputFluidRef.js +4 -0
- package/lib/module/components/password-input-fluid/PasswordInputFluidRef.js.map +1 -0
- package/lib/module/components/password-input-fluid/index.js +4 -0
- package/lib/module/components/password-input-fluid/index.js.map +1 -0
- package/lib/module/components/radio-button/RadioButton.js +19 -14
- package/lib/module/components/radio-button/RadioButton.js.map +1 -1
- package/lib/module/components/radio-button/index.js.map +1 -1
- package/lib/module/components/radio-button-group/RadioButtonGroup.js +18 -17
- package/lib/module/components/radio-button-group/RadioButtonGroup.js.map +1 -1
- package/lib/module/components/radio-button-group/_Item.js +2 -2
- package/lib/module/components/radio-button-group/_item-context.js +1 -1
- package/lib/module/components/radio-button-group/index.js.map +1 -1
- package/lib/module/components/radio-button-input/RadioButtonInput.js +13 -13
- package/lib/module/components/radio-button-input/RadioButtonInput.js.map +1 -1
- package/lib/module/components/radio-button-input/index.js.map +1 -1
- package/lib/module/components/switch/Switch.js +33 -24
- package/lib/module/components/switch/Switch.js.map +1 -1
- package/lib/module/components/text/Text.js +39 -35
- package/lib/module/components/text/Text.js.map +1 -1
- package/lib/module/components/text/index.js.map +1 -1
- package/lib/module/components/text-area/TextArea.js +6 -8
- package/lib/module/components/text-area/TextArea.js.map +1 -1
- package/lib/module/components/text-area/index.js.map +1 -1
- package/lib/module/components/text-area-field/TextAreaField.js +6 -6
- package/lib/module/components/text-area-field/index.js.map +1 -1
- package/lib/module/components/text-area-fluid/TextAreaFluid.js +9 -9
- package/lib/module/components/text-area-fluid/TextAreaFluid.js.map +1 -1
- package/lib/module/components/text-area-fluid/index.js.map +1 -1
- package/lib/module/components/text-input/TextInput.js +11 -7
- package/lib/module/components/text-input/TextInput.js.map +1 -1
- package/lib/module/components/text-input-field/TextInputField.js +33 -20
- package/lib/module/components/text-input-field/TextInputField.js.map +1 -1
- package/lib/module/components/text-input-field/_rn-text-input/RNTextInput.js +19 -12
- package/lib/module/components/text-input-field/_rn-text-input/RNTextInput.js.map +1 -1
- package/lib/module/components/text-input-field/index.js.map +1 -1
- package/lib/module/components/text-input-fluid/TextInputFluid.js +29 -23
- package/lib/module/components/text-input-fluid/TextInputFluid.js.map +1 -1
- package/lib/module/components/text-input-fluid/index.js.map +1 -1
- package/lib/module/components/toggle/base/Base.js +30 -15
- package/lib/module/components/toggle/base/Base.js.map +1 -1
- package/lib/module/components/toggle/base/index.js.map +1 -1
- package/lib/module/components/toggle/default/Default.js +2 -2
- package/lib/module/components/toggle/default/index.js.map +1 -1
- package/lib/module/components/toggle/index.js.map +1 -1
- package/lib/module/components/toggle/small/Small.js +2 -2
- package/lib/module/components/toggle/small/index.js.map +1 -1
- package/lib/module/const/dialog-animation-configs/carbon-react.js +4 -3
- package/lib/module/const/dialog-animation-configs/carbon-react.js.map +1 -1
- package/lib/module/const/dialog-animation-configs/fade-bottom-up-2.js +4 -3
- package/lib/module/const/dialog-animation-configs/fade-bottom-up-2.js.map +1 -1
- package/lib/module/const/dialog-animation-configs/fade-bottom-up.js +4 -3
- package/lib/module/const/dialog-animation-configs/fade-bottom-up.js.map +1 -1
- package/lib/module/contexts/breakpoint/BreakpointContext.js +3 -3
- package/lib/module/contexts/dialog/DialogContext.js +2 -2
- package/lib/module/contexts/theme/ThemeContext.js +1 -1
- package/lib/module/contexts/toast/ToastContext.js +3 -3
- package/lib/module/helpers/breakpoint/get-token.js +2 -2
- package/lib/module/helpers/color/get-color-scheme.js +4 -4
- package/lib/module/helpers/color/get-color-token.js +2 -2
- package/lib/module/hooks/breakpoint/use.js +2 -2
- package/lib/module/providers/dialog/DialogProvider.js +71 -33
- package/lib/module/providers/dialog/DialogProvider.js.map +1 -1
- package/lib/module/providers/dialog/_controller/Controller.js +6 -9
- package/lib/module/providers/dialog/_controller/Controller.js.map +1 -1
- package/lib/module/providers/dialog/_controller/_modal/Modal.js +7 -8
- package/lib/module/providers/dialog/_controller/_modal/Modal.js.map +1 -1
- package/lib/module/providers/dialog/_controller/_overlay/Overlay.js +6 -6
- package/lib/module/providers/dialog/_controller/_overlay/Overlay.js.map +1 -1
- package/lib/module/providers/toast/ToastProvider.js +1 -1
- package/lib/module/providers/toast/_overlay/Overlay.js +11 -13
- package/lib/module/providers/toast/_overlay/Overlay.js.map +1 -1
- package/lib/module/providers/toast/_overlay/_component-wrapper/ComponentWrapper.js +16 -11
- package/lib/module/providers/toast/_overlay/_component-wrapper/ComponentWrapper.js.map +1 -1
- package/lib/module/providers/toast/_overlay/_gap.js +5 -0
- package/lib/module/providers/toast/_overlay/_gap.js.map +1 -0
- package/lib/module/providers/toast/index.js.map +1 -1
- package/lib/module/style-sheets/direction-style-sheet.js +6 -0
- package/lib/module/style-sheets/direction-style-sheet.js.map +1 -0
- package/lib/module/style-sheets/display-style-sheet.js +6 -0
- package/lib/module/style-sheets/display-style-sheet.js.map +1 -0
- package/lib/module/style-sheets/flex-style-sheet.js +6 -0
- package/lib/module/style-sheets/flex-style-sheet.js.map +1 -0
- package/lib/module/style-sheets/font-style-sheet.js +6 -0
- package/lib/module/style-sheets/font-style-sheet.js.map +1 -0
- package/lib/module/style-sheets/height-style-sheet.js +6 -0
- package/lib/module/style-sheets/height-style-sheet.js.map +1 -0
- package/lib/module/style-sheets/index.js +14 -0
- package/lib/module/style-sheets/index.js.map +1 -0
- package/lib/module/style-sheets/overflow-style-sheet.js +6 -0
- package/lib/module/style-sheets/overflow-style-sheet.js.map +1 -0
- package/lib/module/style-sheets/position-style-sheet.js +6 -0
- package/lib/module/style-sheets/position-style-sheet.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/direction.js +14 -0
- package/lib/module/style-sheets/style-sheet-obj/direction.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/display.js +11 -0
- package/lib/module/style-sheets/style-sheet-obj/display.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/flex.js +101 -0
- package/lib/module/style-sheets/style-sheet-obj/flex.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/font.js +61 -0
- package/lib/module/style-sheets/style-sheet-obj/font.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/height.js +14 -0
- package/lib/module/style-sheets/style-sheet-obj/height.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/index.js +12 -0
- package/lib/module/style-sheets/style-sheet-obj/index.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/overflow.js +14 -0
- package/lib/module/style-sheets/style-sheet-obj/overflow.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/position.js +14 -0
- package/lib/module/style-sheets/style-sheet-obj/position.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/typography.js +27 -0
- package/lib/module/style-sheets/style-sheet-obj/typography.js.map +1 -0
- package/lib/module/style-sheets/style-sheet-obj/width.js +14 -0
- package/lib/module/style-sheets/style-sheet-obj/width.js.map +1 -0
- package/lib/module/style-sheets/typography-style-sheet.js +6 -0
- package/lib/module/style-sheets/typography-style-sheet.js.map +1 -0
- package/lib/module/style-sheets/width-style-sheet.js +6 -0
- package/lib/module/style-sheets/width-style-sheet.js.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/button-group/ButtonGroupContext.d.ts +4 -4
- package/lib/typescript/commonjs/_internal/contexts/button-group/index.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/contexts/global-config/GlobalConfigContext.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/contexts/global-config/index.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/contexts/in-dialog/InDialogContext.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/contexts/in-dialog/InDialogContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/in-dialog/index.d.ts +2 -0
- package/lib/typescript/commonjs/_internal/contexts/in-dialog/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/contexts/index.d.ts +4 -3
- package/lib/typescript/commonjs/_internal/contexts/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/_internal/contexts/modal/ModalContext.d.ts +4 -1
- package/lib/typescript/commonjs/_internal/contexts/modal/ModalContext.d.ts.map +1 -1
- package/lib/typescript/commonjs/_internal/contexts/modal/index.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/globals/breakpoint/index.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/globals/index.d.ts +2 -2
- package/lib/typescript/commonjs/_internal/helpers/index.d.ts +3 -2
- package/lib/typescript/commonjs/_internal/helpers/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/_internal/helpers/math/index.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/helpers/modal/index.d.ts +2 -0
- package/lib/typescript/commonjs/_internal/helpers/modal/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/helpers/modal/is-apply-insets.d.ts +8 -0
- package/lib/typescript/commonjs/_internal/helpers/modal/is-apply-insets.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/hooks/index.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/hooks/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/hooks/secure-text-entry-control/UseProps.d.ts +5 -0
- package/lib/typescript/commonjs/_internal/hooks/secure-text-entry-control/UseProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/hooks/secure-text-entry-control/index.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/hooks/secure-text-entry-control/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/hooks/secure-text-entry-control/use.d.ts +3 -0
- package/lib/typescript/commonjs/_internal/hooks/secure-text-entry-control/use.d.ts.map +1 -0
- package/lib/typescript/commonjs/_internal/providers/breakpoint/BreakpointProvider.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/providers/breakpoint/index.d.ts +2 -2
- package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProvider.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProviderProps.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/providers/global-config/index.d.ts +2 -2
- package/lib/typescript/commonjs/_internal/providers/index.d.ts +3 -3
- package/lib/typescript/commonjs/_internal/providers/theme/ThemeProvider.d.ts +1 -1
- package/lib/typescript/commonjs/_internal/providers/theme/ThemeProviderProps.d.ts +2 -2
- package/lib/typescript/commonjs/_internal/providers/theme/index.d.ts +2 -2
- package/lib/typescript/commonjs/carbon-react-native/CarbonReactNative.d.ts +1 -1
- package/lib/typescript/commonjs/carbon-react-native/CarbonReactNativeProps.d.ts +1 -1
- package/lib/typescript/commonjs/carbon-react-native/index.d.ts +2 -2
- package/lib/typescript/commonjs/carbon-style-sheet/color.d.ts +1 -1
- package/lib/typescript/commonjs/carbon-style-sheet/create.d.ts +2 -2
- package/lib/typescript/commonjs/carbon-style-sheet/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/accordion/Accordion.d.ts +2 -2
- package/lib/typescript/commonjs/components/accordion/Accordion.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/accordion/AccordionHeaderProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/accordion/AccordionItemProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/accordion/AccordionItemRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/accordion/AccordionProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/accordion/AccordionRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/accordion/AccordionSize.d.ts +1 -1
- package/lib/typescript/commonjs/components/accordion/_Header.d.ts +1 -1
- package/lib/typescript/commonjs/components/accordion/_HeaderBorder.d.ts +2 -2
- package/lib/typescript/commonjs/components/accordion/_HeaderBorder.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/accordion/_Item.d.ts +2 -2
- package/lib/typescript/commonjs/components/accordion/_Item.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/accordion/_chevron/Chevron.d.ts +1 -1
- package/lib/typescript/commonjs/components/accordion/_chevron/ChevronProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/accordion/_chevron/index.d.ts +2 -2
- package/lib/typescript/commonjs/components/accordion/_context.d.ts +5 -5
- package/lib/typescript/commonjs/components/accordion/_motion.d.ts +2 -2
- package/lib/typescript/commonjs/components/accordion/_styles.d.ts +3 -3
- package/lib/typescript/commonjs/components/accordion/index.d.ts +7 -7
- package/lib/typescript/commonjs/components/accordion/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/box/Box.d.ts +4 -0
- package/lib/typescript/commonjs/components/box/Box.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/box/BoxProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/box/BoxProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/box/BoxRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/box/BoxRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/box/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/box/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/button/Size.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/base/Base.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/base/Base.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/button/base/BaseProps.d.ts +11 -11
- package/lib/typescript/commonjs/components/button/base/BaseRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/base/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button/base-color/BaseColor.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/base-color/BaseColorProps.d.ts +5 -5
- package/lib/typescript/commonjs/components/button/base-color/BaseColorRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/base-color/BaseColorState.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/base-color/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/button/ghost/Ghost.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/ghost/GhostProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/ghost/GhostRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/ghost/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button/ghost-danger/GhostDanger.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/ghost-danger/GhostDangerProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/ghost-danger/GhostDangerRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/ghost-danger/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button/ghost-icon/GhostIcon.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/ghost-icon/GhostIconProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/button/ghost-icon/GhostIconRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/ghost-icon/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button/index.d.ts +11 -11
- package/lib/typescript/commonjs/components/button/primary/Primary.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/primary/PrimaryProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/primary/PrimaryRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/primary/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button/primary-danger/PrimaryDanger.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/primary-danger/PrimaryDangerProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/primary-danger/PrimaryDangerRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/primary-danger/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button/secondary/Secondary.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/secondary/SecondaryProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/secondary/SecondaryRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/secondary/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button/tertiary/Tertiary.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/tertiary/TertiaryProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/tertiary/TertiaryRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/tertiary/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button/tertiary-danger/TertiaryDanger.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/tertiary-danger/TertiaryDangerProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/button/tertiary-danger/TertiaryDangerRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button/tertiary-danger/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button-group/ButtonGroup.d.ts +2 -2
- package/lib/typescript/commonjs/components/button-group/ButtonGroup.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/button-group/ButtonGroupProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/button-group/ButtonGroupRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/button-group/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/button-group/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox/Checkbox.d.ts +2 -2
- package/lib/typescript/commonjs/components/checkbox/Checkbox.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox/CheckboxProps.d.ts +14 -13
- package/lib/typescript/commonjs/components/checkbox/CheckboxProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox/CheckboxRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/checkbox/_RefBase.d.ts +3 -3
- package/lib/typescript/commonjs/components/checkbox/_RefBase.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/checkbox/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroup.d.ts +2 -2
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroup.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroupHelperTextMode.d.ts +1 -1
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroupProps.d.ts +5 -5
- package/lib/typescript/commonjs/components/checkbox-group/CheckboxGroupRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/checkbox-group/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/checkbox-group/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInput.d.ts +2 -2
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInput.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputInteractiveState.d.ts +1 -1
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputProps.d.ts +8 -8
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputState.d.ts +5 -0
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputState.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/checkbox-input/_RefBase.d.ts +3 -3
- package/lib/typescript/commonjs/components/checkbox-input/_RefBase.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/checkbox-input/index.d.ts +5 -5
- package/lib/typescript/commonjs/components/checkbox-input/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/collapsible/Collapsible.d.ts +2 -2
- package/lib/typescript/commonjs/components/collapsible/Collapsible.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/collapsible/CollapsibleProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/collapsible/CollapsibleRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/collapsible/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperText.d.ts +2 -2
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperText.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperTextProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperTextProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/form-helper-text/FormHelperTextRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/form-helper-text/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/form-label/FormLabel.d.ts +2 -2
- package/lib/typescript/commonjs/components/form-label/FormLabel.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/form-label/FormLabelProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/form-label/FormLabelProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/form-label/FormLabelRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/form-label/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/form-label/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/icon/Icon.d.ts +2 -2
- package/lib/typescript/commonjs/components/icon/IconProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/icon/index.d.ts +2 -2
- package/lib/typescript/commonjs/components/index.d.ts +31 -28
- package/lib/typescript/commonjs/components/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/inline-loading/InlineLoading.d.ts +2 -2
- package/lib/typescript/commonjs/components/inline-loading/InlineLoading.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/inline-loading/InlineLoadingProps.d.ts +5 -5
- package/lib/typescript/commonjs/components/inline-loading/InlineLoadingRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/inline-loading/InlineLoadingState.d.ts +1 -1
- package/lib/typescript/commonjs/components/inline-loading/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/inline-loading/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/layer/Layer.d.ts +2 -2
- package/lib/typescript/commonjs/components/layer/LayerProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/layer/LayerRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/layer/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/layer/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/loading/Loading.d.ts +2 -2
- package/lib/typescript/commonjs/components/loading/LoadingProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/loading/LoadingRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/loading/LoadingType.d.ts +1 -1
- package/lib/typescript/commonjs/components/loading/_circular-progress/CircularProgress.d.ts +2 -2
- package/lib/typescript/commonjs/components/loading/_circular-progress/CircularProgressProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/loading/_circular-progress/index.d.ts +2 -2
- package/lib/typescript/commonjs/components/loading/_map-circle-background-color.d.ts +3 -3
- package/lib/typescript/commonjs/components/loading/_map-circle-stroke-color.d.ts +2 -2
- package/lib/typescript/commonjs/components/loading/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/modal/Modal.d.ts +2 -2
- package/lib/typescript/commonjs/components/modal/Modal.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/modal/ModalProps.d.ts +33 -5
- package/lib/typescript/commonjs/components/modal/ModalProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/modal/ModalRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/modal/ModalSize.d.ts +1 -1
- package/lib/typescript/commonjs/components/modal/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/modal/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/modal-content/ModalContent.d.ts +2 -2
- package/lib/typescript/commonjs/components/modal-content/ModalContent.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/modal-content/ModalContentProps.d.ts +1 -1
- package/lib/typescript/commonjs/components/modal-content/ModalContentRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/modal-content/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/modal-content/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/NotificationColor.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/_VariantContextProvider.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/UseBaseData.d.ts +6 -6
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/UseBaseProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/_base/useBase.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/UseErrorData.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/UseErrorProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/error/useError.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/_status-hooks/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/UseInformationalData.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/UseInformationalProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/informational/useInformational.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/UseSuccessData.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/UseSuccessProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/success/useSuccess.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/UseWarningData.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/UseWarningProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_status-hooks/warning/useWarning.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/_variant-context.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/_ButtonGhost.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/_ButtonTertiary.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariant.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariant.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariantProps.d.ts +8 -8
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariantProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/actionable/ActionableVariantRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/actionable/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_variants/actionable/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariant.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariant.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariantProps.d.ts +6 -6
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariantProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/callout/CalloutVariantRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/callout/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_variants/callout/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/index.d.ts +3 -5
- package/lib/typescript/commonjs/components/notification/_variants/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariant.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariantProps.d.ts +6 -6
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariantProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/toast/ToastVariantRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/_variants/toast/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/_variants/toast/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/actionable/error/Error.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/actionable/error/ErrorProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/actionable/error/ErrorRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/actionable/error/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/actionable/error/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/actionable/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/actionable/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/actionable/informational/Informational.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/actionable/informational/InformationalProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/actionable/informational/InformationalRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/actionable/informational/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/actionable/informational/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/actionable/success/Success.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/actionable/success/SuccessProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/actionable/success/SuccessRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/actionable/success/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/actionable/success/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/actionable/warning/Warning.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/actionable/warning/WarningProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/actionable/warning/WarningRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/actionable/warning/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/actionable/warning/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/base/Base.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/base/Base.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/base/BaseProps.d.ts +16 -16
- package/lib/typescript/commonjs/components/notification/base/BaseRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/base/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/base/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/callout/error/Error.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/callout/error/ErrorProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/callout/error/ErrorRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/callout/error/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/callout/error/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/callout/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/callout/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/callout/informational/Informational.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/callout/informational/InformationalProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/callout/informational/InformationalRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/callout/informational/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/callout/informational/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/callout/success/Success.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/callout/success/SuccessProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/callout/success/SuccessProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/callout/success/SuccessRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/callout/success/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/callout/success/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/callout/warning/Warning.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/callout/warning/WarningProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/callout/warning/WarningRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/callout/warning/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/callout/warning/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/index.d.ts +8 -10
- package/lib/typescript/commonjs/components/notification/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/subtitle/Subtitle.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/subtitle/SubtitleProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/subtitle/SubtitleRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/subtitle/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/subtitle/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/subtitle-link/SubtitleLink.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/subtitle-link/SubtitleLinkProps.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/subtitle-link/SubtitleLinkRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/subtitle-link/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/subtitle-link/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/toast/error/Error.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/toast/error/ErrorProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/toast/error/ErrorRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/toast/error/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/toast/error/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/toast/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/toast/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/toast/informational/Informational.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/toast/informational/InformationalProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/toast/informational/InformationalRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/toast/informational/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/toast/informational/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/toast/success/Success.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/toast/success/SuccessProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/toast/success/SuccessProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/toast/success/SuccessRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/toast/success/SuccessRef.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/toast/success/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/toast/success/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/notification/toast/warning/Warning.d.ts +2 -2
- package/lib/typescript/commonjs/components/notification/toast/warning/WarningProps.d.ts +4 -4
- package/lib/typescript/commonjs/components/notification/toast/warning/WarningRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/notification/toast/warning/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/notification/toast/warning/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/password-input/PasswordInput.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input/PasswordInput.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input/PasswordInputProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input/PasswordInputProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input/PasswordInputRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input/PasswordInputRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-field/PasswordInputField.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-field/PasswordInputField.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-field/PasswordInputFieldProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-field/PasswordInputFieldProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-field/PasswordInputFieldRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-field/PasswordInputFieldRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-field/_ghost-icon/GhostIcon.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-field/_ghost-icon/GhostIcon.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-field/_ghost-icon/GhostIconProps.d.ts +7 -0
- package/lib/typescript/commonjs/components/password-input-field/_ghost-icon/GhostIconProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-field/_ghost-icon/GhostIconRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-field/_ghost-icon/GhostIconRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-field/_ghost-icon/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-field/_ghost-icon/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-field/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-field/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-fluid/PasswordInputFluid.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-fluid/PasswordInputFluid.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-fluid/PasswordInputFluidProps.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-fluid/PasswordInputFluidProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-fluid/PasswordInputFluidRef.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-fluid/PasswordInputFluidRef.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/password-input-fluid/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/password-input-fluid/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/radio-button/RadioButton.d.ts +2 -2
- package/lib/typescript/commonjs/components/radio-button/RadioButton.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/radio-button/RadioButtonProps.d.ts +12 -12
- package/lib/typescript/commonjs/components/radio-button/RadioButtonRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/radio-button/_RefBase.d.ts +2 -2
- package/lib/typescript/commonjs/components/radio-button/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/radio-button/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroup.d.ts +2 -2
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroup.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupHelperTextMode.d.ts +1 -1
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupItemProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupItemRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupProps.d.ts +9 -9
- package/lib/typescript/commonjs/components/radio-button-group/RadioButtonGroupRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/radio-button-group/_Item.d.ts +2 -2
- package/lib/typescript/commonjs/components/radio-button-group/_RefBase.d.ts +3 -3
- package/lib/typescript/commonjs/components/radio-button-group/_item-context.d.ts +4 -4
- package/lib/typescript/commonjs/components/radio-button-group/index.d.ts +6 -6
- package/lib/typescript/commonjs/components/radio-button-group/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInput.d.ts +2 -2
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInput.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInputInteractiveState.d.ts +1 -1
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInputProps.d.ts +5 -5
- package/lib/typescript/commonjs/components/radio-button-input/RadioButtonInputRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/radio-button-input/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/radio-button-input/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/switch/Switch.d.ts +2 -2
- package/lib/typescript/commonjs/components/switch/Switch.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/switch/SwitchProps.d.ts +7 -7
- package/lib/typescript/commonjs/components/switch/SwitchRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/switch/SwitchSize.d.ts +1 -1
- package/lib/typescript/commonjs/components/switch/SwitchState.d.ts +1 -1
- package/lib/typescript/commonjs/components/switch/index.d.ts +5 -5
- package/lib/typescript/commonjs/components/text/Text.d.ts +2 -2
- package/lib/typescript/commonjs/components/text/Text.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text/TextProps.d.ts +9 -2
- package/lib/typescript/commonjs/components/text/TextProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text/TextRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/text/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/text/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-area/TextArea.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-area/TextArea.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-area/TextAreaProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-area/TextAreaRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-area/_TextAreaRefBase.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-area/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/text-area/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-area-field/TextAreaField.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldInteractiveState.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-area-field/TextAreaFieldRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-area-field/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/text-area-field/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-area-fluid/TextAreaFluid.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-area-fluid/TextAreaFluidProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-area-fluid/TextAreaFluidRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-area-fluid/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/text-area-fluid/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-input/TextInput.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-input/TextInput.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-input/TextInputProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-input/TextInputProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-input/TextInputRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-input/TextInputSize.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-input/_TextInputRefBase.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-input/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/text-input-field/TextInputField.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-input-field/TextInputField.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldInteractiveState.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldProps.d.ts +6 -6
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-input-field/TextInputFieldSize.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInput.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInput.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInputProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/RNTextInputRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-input-field/_rn-text-input/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/text-input-field/index.d.ts +5 -5
- package/lib/typescript/commonjs/components/text-input-field/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluid.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluid.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluidProps.d.ts +2 -2
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluidProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/text-input-fluid/TextInputFluidRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/text-input-fluid/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/text-input-fluid/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/toggle/State.d.ts +1 -1
- package/lib/typescript/commonjs/components/toggle/base/Base.d.ts +2 -2
- package/lib/typescript/commonjs/components/toggle/base/Base.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/toggle/base/BaseProps.d.ts +12 -12
- package/lib/typescript/commonjs/components/toggle/base/BaseRef.d.ts +2 -2
- package/lib/typescript/commonjs/components/toggle/base/_RefBase.d.ts +3 -3
- package/lib/typescript/commonjs/components/toggle/base/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/toggle/base/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/toggle/default/Default.d.ts +2 -2
- package/lib/typescript/commonjs/components/toggle/default/DefaultProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/toggle/default/DefaultRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/toggle/default/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/toggle/default/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/toggle/index.d.ts +4 -4
- package/lib/typescript/commonjs/components/toggle/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/toggle/small/Small.d.ts +2 -2
- package/lib/typescript/commonjs/components/toggle/small/SmallProps.d.ts +3 -3
- package/lib/typescript/commonjs/components/toggle/small/SmallRef.d.ts +1 -1
- package/lib/typescript/commonjs/components/toggle/small/index.d.ts +3 -3
- package/lib/typescript/commonjs/components/toggle/small/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/const/dialog-animation-configs/carbon-react.d.ts +1 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/carbon-react.d.ts.map +1 -1
- package/lib/typescript/commonjs/const/dialog-animation-configs/fade-bottom-up-2.d.ts +1 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/fade-bottom-up-2.d.ts.map +1 -1
- package/lib/typescript/commonjs/const/dialog-animation-configs/fade-bottom-up.d.ts +1 -0
- package/lib/typescript/commonjs/const/dialog-animation-configs/fade-bottom-up.d.ts.map +1 -1
- package/lib/typescript/commonjs/const/dialog-animation-configs/index.d.ts +3 -3
- package/lib/typescript/commonjs/const/index.d.ts +1 -1
- package/lib/typescript/commonjs/contexts/breakpoint/BreakpointContext.d.ts +1 -1
- package/lib/typescript/commonjs/contexts/breakpoint/index.d.ts +1 -1
- package/lib/typescript/commonjs/contexts/dialog/DialogContext.d.ts +1 -1
- package/lib/typescript/commonjs/contexts/dialog/DialogType.d.ts +1 -0
- package/lib/typescript/commonjs/contexts/dialog/DialogType.d.ts.map +1 -1
- package/lib/typescript/commonjs/contexts/dialog/index.d.ts +2 -2
- package/lib/typescript/commonjs/contexts/index.d.ts +4 -4
- package/lib/typescript/commonjs/contexts/theme/ThemeContext.d.ts +1 -1
- package/lib/typescript/commonjs/contexts/theme/index.d.ts +1 -1
- package/lib/typescript/commonjs/contexts/toast/ToastContext.d.ts +1 -1
- package/lib/typescript/commonjs/contexts/toast/index.d.ts +2 -2
- package/lib/typescript/commonjs/helpers/breakpoint/get-token.d.ts +1 -1
- package/lib/typescript/commonjs/helpers/breakpoint/index.d.ts +1 -1
- package/lib/typescript/commonjs/helpers/color/get-color-scheme.d.ts +2 -2
- package/lib/typescript/commonjs/helpers/color/get-color-token.d.ts +2 -2
- package/lib/typescript/commonjs/helpers/color/index.d.ts +3 -3
- package/lib/typescript/commonjs/helpers/index.d.ts +2 -2
- package/lib/typescript/commonjs/hooks/breakpoint/index.d.ts +1 -1
- package/lib/typescript/commonjs/hooks/breakpoint/use.d.ts +1 -1
- package/lib/typescript/commonjs/hooks/index.d.ts +2 -2
- package/lib/typescript/commonjs/index.d.ts +9 -9
- package/lib/typescript/commonjs/providers/dialog/DialogProvider.d.ts +2 -2
- package/lib/typescript/commonjs/providers/dialog/DialogProvider.d.ts.map +1 -1
- package/lib/typescript/commonjs/providers/dialog/DialogProviderAnimationConfig.d.ts +10 -1
- package/lib/typescript/commonjs/providers/dialog/DialogProviderAnimationConfig.d.ts.map +1 -1
- package/lib/typescript/commonjs/providers/dialog/DialogProviderProps.d.ts +5 -5
- package/lib/typescript/commonjs/providers/dialog/DialogProviderRef.d.ts +1 -1
- package/lib/typescript/commonjs/providers/dialog/_controller/Controller.d.ts +2 -2
- package/lib/typescript/commonjs/providers/dialog/_controller/Controller.d.ts.map +1 -1
- package/lib/typescript/commonjs/providers/dialog/_controller/ControllerProps.d.ts +3 -2
- package/lib/typescript/commonjs/providers/dialog/_controller/ControllerProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/providers/dialog/_controller/ControllerRef.d.ts +1 -1
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/Modal.d.ts +2 -2
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/Modal.d.ts.map +1 -1
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/ModalProps.d.ts +3 -3
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/ModalProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/ModalRef.d.ts +1 -1
- package/lib/typescript/commonjs/providers/dialog/_controller/_modal/index.d.ts +3 -3
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/Overlay.d.ts +2 -2
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/OverlayProps.d.ts +3 -2
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/OverlayProps.d.ts.map +1 -1
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/OverlayRef.d.ts +2 -2
- package/lib/typescript/commonjs/providers/dialog/_controller/_overlay/index.d.ts +3 -3
- package/lib/typescript/commonjs/providers/dialog/_controller/index.d.ts +3 -3
- package/lib/typescript/commonjs/providers/dialog/index.d.ts +4 -4
- package/lib/typescript/commonjs/providers/index.d.ts +2 -2
- package/lib/typescript/commonjs/providers/toast/ToastProvider.d.ts +2 -2
- package/lib/typescript/commonjs/providers/toast/ToastRef.d.ts +1 -1
- package/lib/typescript/commonjs/providers/toast/_overlay/Overlay.d.ts +1 -1
- package/lib/typescript/commonjs/providers/toast/_overlay/Overlay.d.ts.map +1 -1
- package/lib/typescript/commonjs/providers/toast/_overlay/OverlayRef.d.ts +1 -1
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapper.d.ts +2 -2
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapper.d.ts.map +1 -1
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.d.ts +1 -1
- package/lib/typescript/commonjs/providers/toast/_overlay/_component-wrapper/index.d.ts +3 -3
- package/lib/typescript/commonjs/providers/toast/_overlay/_gap.d.ts +2 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/_gap.d.ts.map +1 -0
- package/lib/typescript/commonjs/providers/toast/_overlay/index.d.ts +2 -2
- package/lib/typescript/commonjs/providers/toast/index.d.ts +3 -3
- package/lib/typescript/commonjs/providers/toast/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/style-sheets/direction-style-sheet.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/direction-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/display-style-sheet.d.ts +9 -0
- package/lib/typescript/commonjs/style-sheets/display-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/flex-style-sheet.d.ts +99 -0
- package/lib/typescript/commonjs/style-sheets/flex-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/font-style-sheet.d.ts +59 -0
- package/lib/typescript/commonjs/style-sheets/font-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/height-style-sheet.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/height-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/index.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/overflow-style-sheet.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/overflow-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/position-style-sheet.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/position-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/direction.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/direction.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/display.d.ts +9 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/display.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/flex.d.ts +99 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/flex.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/font.d.ts +59 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/font.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/height.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/height.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/index.d.ts +10 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/overflow.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/overflow.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/position.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/position.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/typography.d.ts +24 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/typography.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/width.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/style-sheet-obj/width.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/typography-style-sheet.d.ts +24 -0
- package/lib/typescript/commonjs/style-sheets/typography-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/style-sheets/width-style-sheet.d.ts +12 -0
- package/lib/typescript/commonjs/style-sheets/width-style-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/index.d.ts +2 -2
- package/lib/typescript/commonjs/types/theme/ColorScheme.d.ts +1 -1
- package/lib/typescript/commonjs/types/theme/index.d.ts +1 -1
- package/lib/typescript/module/_internal/contexts/button-group/ButtonGroupContext.d.ts +4 -4
- package/lib/typescript/module/_internal/contexts/button-group/index.d.ts +1 -1
- package/lib/typescript/module/_internal/contexts/global-config/GlobalConfigContext.d.ts +1 -1
- package/lib/typescript/module/_internal/contexts/global-config/index.d.ts +1 -1
- package/lib/typescript/module/_internal/contexts/in-dialog/InDialogContext.d.ts +3 -0
- package/lib/typescript/module/_internal/contexts/in-dialog/InDialogContext.d.ts.map +1 -0
- package/lib/typescript/module/_internal/contexts/in-dialog/index.d.ts +2 -0
- package/lib/typescript/module/_internal/contexts/in-dialog/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/contexts/index.d.ts +4 -3
- package/lib/typescript/module/_internal/contexts/index.d.ts.map +1 -1
- package/lib/typescript/module/_internal/contexts/modal/ModalContext.d.ts +4 -1
- package/lib/typescript/module/_internal/contexts/modal/ModalContext.d.ts.map +1 -1
- package/lib/typescript/module/_internal/contexts/modal/index.d.ts +1 -1
- package/lib/typescript/module/_internal/globals/breakpoint/index.d.ts +1 -1
- package/lib/typescript/module/_internal/globals/index.d.ts +2 -2
- package/lib/typescript/module/_internal/helpers/index.d.ts +3 -2
- package/lib/typescript/module/_internal/helpers/index.d.ts.map +1 -1
- package/lib/typescript/module/_internal/helpers/math/index.d.ts +1 -1
- package/lib/typescript/module/_internal/helpers/modal/index.d.ts +2 -0
- package/lib/typescript/module/_internal/helpers/modal/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/helpers/modal/is-apply-insets.d.ts +8 -0
- package/lib/typescript/module/_internal/helpers/modal/is-apply-insets.d.ts.map +1 -0
- package/lib/typescript/module/_internal/hooks/index.d.ts +3 -0
- package/lib/typescript/module/_internal/hooks/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/hooks/secure-text-entry-control/UseProps.d.ts +5 -0
- package/lib/typescript/module/_internal/hooks/secure-text-entry-control/UseProps.d.ts.map +1 -0
- package/lib/typescript/module/_internal/hooks/secure-text-entry-control/index.d.ts +3 -0
- package/lib/typescript/module/_internal/hooks/secure-text-entry-control/index.d.ts.map +1 -0
- package/lib/typescript/module/_internal/hooks/secure-text-entry-control/use.d.ts +3 -0
- package/lib/typescript/module/_internal/hooks/secure-text-entry-control/use.d.ts.map +1 -0
- package/lib/typescript/module/_internal/providers/breakpoint/BreakpointProvider.d.ts +1 -1
- package/lib/typescript/module/_internal/providers/breakpoint/index.d.ts +2 -2
- package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProvider.d.ts +1 -1
- package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProviderProps.d.ts +1 -1
- package/lib/typescript/module/_internal/providers/global-config/index.d.ts +2 -2
- package/lib/typescript/module/_internal/providers/index.d.ts +3 -3
- package/lib/typescript/module/_internal/providers/theme/ThemeProvider.d.ts +1 -1
- package/lib/typescript/module/_internal/providers/theme/ThemeProviderProps.d.ts +2 -2
- package/lib/typescript/module/_internal/providers/theme/index.d.ts +2 -2
- package/lib/typescript/module/carbon-react-native/CarbonReactNative.d.ts +1 -1
- package/lib/typescript/module/carbon-react-native/CarbonReactNativeProps.d.ts +1 -1
- package/lib/typescript/module/carbon-react-native/index.d.ts +2 -2
- package/lib/typescript/module/carbon-style-sheet/color.d.ts +1 -1
- package/lib/typescript/module/carbon-style-sheet/create.d.ts +2 -2
- package/lib/typescript/module/carbon-style-sheet/index.d.ts +3 -3
- package/lib/typescript/module/components/accordion/Accordion.d.ts +2 -2
- package/lib/typescript/module/components/accordion/Accordion.d.ts.map +1 -1
- package/lib/typescript/module/components/accordion/AccordionHeaderProps.d.ts +3 -3
- package/lib/typescript/module/components/accordion/AccordionItemProps.d.ts +4 -4
- package/lib/typescript/module/components/accordion/AccordionItemRef.d.ts +2 -2
- package/lib/typescript/module/components/accordion/AccordionProps.d.ts +3 -3
- package/lib/typescript/module/components/accordion/AccordionRef.d.ts +1 -1
- package/lib/typescript/module/components/accordion/AccordionSize.d.ts +1 -1
- package/lib/typescript/module/components/accordion/_Header.d.ts +1 -1
- package/lib/typescript/module/components/accordion/_HeaderBorder.d.ts +2 -2
- package/lib/typescript/module/components/accordion/_HeaderBorder.d.ts.map +1 -1
- package/lib/typescript/module/components/accordion/_Item.d.ts +2 -2
- package/lib/typescript/module/components/accordion/_Item.d.ts.map +1 -1
- package/lib/typescript/module/components/accordion/_chevron/Chevron.d.ts +1 -1
- package/lib/typescript/module/components/accordion/_chevron/ChevronProps.d.ts +2 -2
- package/lib/typescript/module/components/accordion/_chevron/index.d.ts +2 -2
- package/lib/typescript/module/components/accordion/_context.d.ts +5 -5
- package/lib/typescript/module/components/accordion/_motion.d.ts +2 -2
- package/lib/typescript/module/components/accordion/_styles.d.ts +3 -3
- package/lib/typescript/module/components/accordion/index.d.ts +7 -7
- package/lib/typescript/module/components/accordion/index.d.ts.map +1 -1
- package/lib/typescript/module/components/box/Box.d.ts +4 -0
- package/lib/typescript/module/components/box/Box.d.ts.map +1 -0
- package/lib/typescript/module/components/box/BoxProps.d.ts +4 -0
- package/lib/typescript/module/components/box/BoxProps.d.ts.map +1 -0
- package/lib/typescript/module/components/box/BoxRef.d.ts +4 -0
- package/lib/typescript/module/components/box/BoxRef.d.ts.map +1 -0
- package/lib/typescript/module/components/box/index.d.ts +4 -0
- package/lib/typescript/module/components/box/index.d.ts.map +1 -0
- package/lib/typescript/module/components/button/Size.d.ts +1 -1
- package/lib/typescript/module/components/button/base/Base.d.ts +2 -2
- package/lib/typescript/module/components/button/base/Base.d.ts.map +1 -1
- package/lib/typescript/module/components/button/base/BaseProps.d.ts +11 -11
- package/lib/typescript/module/components/button/base/BaseRef.d.ts +1 -1
- package/lib/typescript/module/components/button/base/index.d.ts +3 -3
- package/lib/typescript/module/components/button/base-color/BaseColor.d.ts +2 -2
- package/lib/typescript/module/components/button/base-color/BaseColorProps.d.ts +5 -5
- package/lib/typescript/module/components/button/base-color/BaseColorRef.d.ts +1 -1
- package/lib/typescript/module/components/button/base-color/BaseColorState.d.ts +1 -1
- package/lib/typescript/module/components/button/base-color/index.d.ts +4 -4
- package/lib/typescript/module/components/button/ghost/Ghost.d.ts +2 -2
- package/lib/typescript/module/components/button/ghost/GhostProps.d.ts +2 -2
- package/lib/typescript/module/components/button/ghost/GhostRef.d.ts +1 -1
- package/lib/typescript/module/components/button/ghost/index.d.ts +3 -3
- package/lib/typescript/module/components/button/ghost-danger/GhostDanger.d.ts +2 -2
- package/lib/typescript/module/components/button/ghost-danger/GhostDangerProps.d.ts +2 -2
- package/lib/typescript/module/components/button/ghost-danger/GhostDangerRef.d.ts +1 -1
- package/lib/typescript/module/components/button/ghost-danger/index.d.ts +3 -3
- package/lib/typescript/module/components/button/ghost-icon/GhostIcon.d.ts +2 -2
- package/lib/typescript/module/components/button/ghost-icon/GhostIconProps.d.ts +4 -4
- package/lib/typescript/module/components/button/ghost-icon/GhostIconRef.d.ts +1 -1
- package/lib/typescript/module/components/button/ghost-icon/index.d.ts +3 -3
- package/lib/typescript/module/components/button/index.d.ts +11 -11
- package/lib/typescript/module/components/button/primary/Primary.d.ts +2 -2
- package/lib/typescript/module/components/button/primary/PrimaryProps.d.ts +2 -2
- package/lib/typescript/module/components/button/primary/PrimaryRef.d.ts +1 -1
- package/lib/typescript/module/components/button/primary/index.d.ts +3 -3
- package/lib/typescript/module/components/button/primary-danger/PrimaryDanger.d.ts +2 -2
- package/lib/typescript/module/components/button/primary-danger/PrimaryDangerProps.d.ts +2 -2
- package/lib/typescript/module/components/button/primary-danger/PrimaryDangerRef.d.ts +1 -1
- package/lib/typescript/module/components/button/primary-danger/index.d.ts +3 -3
- package/lib/typescript/module/components/button/secondary/Secondary.d.ts +2 -2
- package/lib/typescript/module/components/button/secondary/SecondaryProps.d.ts +2 -2
- package/lib/typescript/module/components/button/secondary/SecondaryRef.d.ts +1 -1
- package/lib/typescript/module/components/button/secondary/index.d.ts +3 -3
- package/lib/typescript/module/components/button/tertiary/Tertiary.d.ts +2 -2
- package/lib/typescript/module/components/button/tertiary/TertiaryProps.d.ts +2 -2
- package/lib/typescript/module/components/button/tertiary/TertiaryRef.d.ts +1 -1
- package/lib/typescript/module/components/button/tertiary/index.d.ts +3 -3
- package/lib/typescript/module/components/button/tertiary-danger/TertiaryDanger.d.ts +2 -2
- package/lib/typescript/module/components/button/tertiary-danger/TertiaryDangerProps.d.ts +2 -2
- package/lib/typescript/module/components/button/tertiary-danger/TertiaryDangerRef.d.ts +1 -1
- package/lib/typescript/module/components/button/tertiary-danger/index.d.ts +3 -3
- package/lib/typescript/module/components/button-group/ButtonGroup.d.ts +2 -2
- package/lib/typescript/module/components/button-group/ButtonGroup.d.ts.map +1 -1
- package/lib/typescript/module/components/button-group/ButtonGroupProps.d.ts +4 -4
- package/lib/typescript/module/components/button-group/ButtonGroupRef.d.ts +1 -1
- package/lib/typescript/module/components/button-group/index.d.ts +3 -3
- package/lib/typescript/module/components/button-group/index.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox/Checkbox.d.ts +2 -2
- package/lib/typescript/module/components/checkbox/Checkbox.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox/CheckboxProps.d.ts +14 -13
- package/lib/typescript/module/components/checkbox/CheckboxProps.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox/CheckboxRef.d.ts +2 -2
- package/lib/typescript/module/components/checkbox/_RefBase.d.ts +3 -3
- package/lib/typescript/module/components/checkbox/_RefBase.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox/index.d.ts +3 -3
- package/lib/typescript/module/components/checkbox/index.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox-group/CheckboxGroup.d.ts +2 -2
- package/lib/typescript/module/components/checkbox-group/CheckboxGroup.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox-group/CheckboxGroupHelperTextMode.d.ts +1 -1
- package/lib/typescript/module/components/checkbox-group/CheckboxGroupProps.d.ts +5 -5
- package/lib/typescript/module/components/checkbox-group/CheckboxGroupRef.d.ts +1 -1
- package/lib/typescript/module/components/checkbox-group/index.d.ts +4 -4
- package/lib/typescript/module/components/checkbox-group/index.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox-input/CheckboxInput.d.ts +2 -2
- package/lib/typescript/module/components/checkbox-input/CheckboxInput.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox-input/CheckboxInputInteractiveState.d.ts +1 -1
- package/lib/typescript/module/components/checkbox-input/CheckboxInputProps.d.ts +8 -8
- package/lib/typescript/module/components/checkbox-input/CheckboxInputProps.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox-input/CheckboxInputRef.d.ts +2 -2
- package/lib/typescript/module/components/checkbox-input/CheckboxInputState.d.ts +5 -0
- package/lib/typescript/module/components/checkbox-input/CheckboxInputState.d.ts.map +1 -0
- package/lib/typescript/module/components/checkbox-input/_RefBase.d.ts +3 -3
- package/lib/typescript/module/components/checkbox-input/_RefBase.d.ts.map +1 -1
- package/lib/typescript/module/components/checkbox-input/index.d.ts +5 -5
- package/lib/typescript/module/components/checkbox-input/index.d.ts.map +1 -1
- package/lib/typescript/module/components/collapsible/Collapsible.d.ts +2 -2
- package/lib/typescript/module/components/collapsible/Collapsible.d.ts.map +1 -1
- package/lib/typescript/module/components/collapsible/CollapsibleProps.d.ts +3 -3
- package/lib/typescript/module/components/collapsible/CollapsibleRef.d.ts +2 -2
- package/lib/typescript/module/components/collapsible/index.d.ts +3 -3
- package/lib/typescript/module/components/form-helper-text/FormHelperText.d.ts +2 -2
- package/lib/typescript/module/components/form-helper-text/FormHelperText.d.ts.map +1 -1
- package/lib/typescript/module/components/form-helper-text/FormHelperTextProps.d.ts +4 -4
- package/lib/typescript/module/components/form-helper-text/FormHelperTextProps.d.ts.map +1 -1
- package/lib/typescript/module/components/form-helper-text/FormHelperTextRef.d.ts +1 -1
- package/lib/typescript/module/components/form-helper-text/index.d.ts +3 -3
- package/lib/typescript/module/components/form-label/FormLabel.d.ts +2 -2
- package/lib/typescript/module/components/form-label/FormLabel.d.ts.map +1 -1
- package/lib/typescript/module/components/form-label/FormLabelProps.d.ts +4 -4
- package/lib/typescript/module/components/form-label/FormLabelProps.d.ts.map +1 -1
- package/lib/typescript/module/components/form-label/FormLabelRef.d.ts +1 -1
- package/lib/typescript/module/components/form-label/index.d.ts +3 -3
- package/lib/typescript/module/components/form-label/index.d.ts.map +1 -1
- package/lib/typescript/module/components/icon/Icon.d.ts +2 -2
- package/lib/typescript/module/components/icon/IconProps.d.ts +3 -3
- package/lib/typescript/module/components/icon/index.d.ts +2 -2
- package/lib/typescript/module/components/index.d.ts +31 -28
- package/lib/typescript/module/components/index.d.ts.map +1 -1
- package/lib/typescript/module/components/inline-loading/InlineLoading.d.ts +2 -2
- package/lib/typescript/module/components/inline-loading/InlineLoading.d.ts.map +1 -1
- package/lib/typescript/module/components/inline-loading/InlineLoadingProps.d.ts +5 -5
- package/lib/typescript/module/components/inline-loading/InlineLoadingRef.d.ts +1 -1
- package/lib/typescript/module/components/inline-loading/InlineLoadingState.d.ts +1 -1
- package/lib/typescript/module/components/inline-loading/index.d.ts +4 -4
- package/lib/typescript/module/components/inline-loading/index.d.ts.map +1 -1
- package/lib/typescript/module/components/layer/Layer.d.ts +2 -2
- package/lib/typescript/module/components/layer/LayerProps.d.ts +2 -2
- package/lib/typescript/module/components/layer/LayerRef.d.ts +1 -1
- package/lib/typescript/module/components/layer/index.d.ts +4 -4
- package/lib/typescript/module/components/layer/index.d.ts.map +1 -1
- package/lib/typescript/module/components/loading/Loading.d.ts +2 -2
- package/lib/typescript/module/components/loading/LoadingProps.d.ts +2 -2
- package/lib/typescript/module/components/loading/LoadingRef.d.ts +1 -1
- package/lib/typescript/module/components/loading/LoadingType.d.ts +1 -1
- package/lib/typescript/module/components/loading/_circular-progress/CircularProgress.d.ts +2 -2
- package/lib/typescript/module/components/loading/_circular-progress/CircularProgressProps.d.ts +3 -3
- package/lib/typescript/module/components/loading/_circular-progress/index.d.ts +2 -2
- package/lib/typescript/module/components/loading/_map-circle-background-color.d.ts +3 -3
- package/lib/typescript/module/components/loading/_map-circle-stroke-color.d.ts +2 -2
- package/lib/typescript/module/components/loading/index.d.ts +4 -4
- package/lib/typescript/module/components/modal/Modal.d.ts +2 -2
- package/lib/typescript/module/components/modal/Modal.d.ts.map +1 -1
- package/lib/typescript/module/components/modal/ModalProps.d.ts +33 -5
- package/lib/typescript/module/components/modal/ModalProps.d.ts.map +1 -1
- package/lib/typescript/module/components/modal/ModalRef.d.ts +1 -1
- package/lib/typescript/module/components/modal/ModalSize.d.ts +1 -1
- package/lib/typescript/module/components/modal/index.d.ts +4 -4
- package/lib/typescript/module/components/modal/index.d.ts.map +1 -1
- package/lib/typescript/module/components/modal-content/ModalContent.d.ts +2 -2
- package/lib/typescript/module/components/modal-content/ModalContent.d.ts.map +1 -1
- package/lib/typescript/module/components/modal-content/ModalContentProps.d.ts +1 -1
- package/lib/typescript/module/components/modal-content/ModalContentRef.d.ts +1 -1
- package/lib/typescript/module/components/modal-content/index.d.ts +3 -3
- package/lib/typescript/module/components/modal-content/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/NotificationColor.d.ts +1 -1
- package/lib/typescript/module/components/notification/_VariantContextProvider.d.ts +1 -1
- package/lib/typescript/module/components/notification/_status-hooks/_base/UseBaseData.d.ts +6 -6
- package/lib/typescript/module/components/notification/_status-hooks/_base/UseBaseProps.d.ts +2 -2
- package/lib/typescript/module/components/notification/_status-hooks/_base/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/_base/useBase.d.ts +2 -2
- package/lib/typescript/module/components/notification/_status-hooks/error/UseErrorData.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/error/UseErrorProps.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/error/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/error/useError.d.ts +2 -2
- package/lib/typescript/module/components/notification/_status-hooks/index.d.ts +4 -4
- package/lib/typescript/module/components/notification/_status-hooks/informational/UseInformationalData.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/informational/UseInformationalProps.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/informational/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/informational/useInformational.d.ts +2 -2
- package/lib/typescript/module/components/notification/_status-hooks/success/UseSuccessData.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/success/UseSuccessProps.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/success/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/success/useSuccess.d.ts +2 -2
- package/lib/typescript/module/components/notification/_status-hooks/warning/UseWarningData.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/warning/UseWarningProps.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/warning/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/_status-hooks/warning/useWarning.d.ts +2 -2
- package/lib/typescript/module/components/notification/_variant-context.d.ts +1 -1
- package/lib/typescript/module/components/notification/_variants/_ButtonGhost.d.ts +1 -1
- package/lib/typescript/module/components/notification/_variants/_ButtonTertiary.d.ts +1 -1
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariant.d.ts +2 -2
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariant.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariantProps.d.ts +8 -8
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariantProps.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/_variants/actionable/ActionableVariantRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/_variants/actionable/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/_variants/actionable/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariant.d.ts +2 -2
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariant.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariantProps.d.ts +6 -6
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariantProps.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/_variants/callout/CalloutVariantRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/_variants/callout/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/_variants/callout/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/_variants/index.d.ts +3 -5
- package/lib/typescript/module/components/notification/_variants/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariant.d.ts +2 -2
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariantProps.d.ts +6 -6
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariantProps.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/_variants/toast/ToastVariantRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/_variants/toast/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/_variants/toast/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/actionable/error/Error.d.ts +2 -2
- package/lib/typescript/module/components/notification/actionable/error/ErrorProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/actionable/error/ErrorRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/actionable/error/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/actionable/error/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/actionable/index.d.ts +4 -4
- package/lib/typescript/module/components/notification/actionable/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/actionable/informational/Informational.d.ts +2 -2
- package/lib/typescript/module/components/notification/actionable/informational/InformationalProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/actionable/informational/InformationalRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/actionable/informational/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/actionable/informational/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/actionable/success/Success.d.ts +2 -2
- package/lib/typescript/module/components/notification/actionable/success/SuccessProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/actionable/success/SuccessRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/actionable/success/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/actionable/success/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/actionable/warning/Warning.d.ts +2 -2
- package/lib/typescript/module/components/notification/actionable/warning/WarningProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/actionable/warning/WarningRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/actionable/warning/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/actionable/warning/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/base/Base.d.ts +2 -2
- package/lib/typescript/module/components/notification/base/Base.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/base/BaseProps.d.ts +16 -16
- package/lib/typescript/module/components/notification/base/BaseRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/base/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/base/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/callout/error/Error.d.ts +2 -2
- package/lib/typescript/module/components/notification/callout/error/ErrorProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/callout/error/ErrorRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/callout/error/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/callout/error/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/callout/index.d.ts +4 -4
- package/lib/typescript/module/components/notification/callout/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/callout/informational/Informational.d.ts +2 -2
- package/lib/typescript/module/components/notification/callout/informational/InformationalProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/callout/informational/InformationalRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/callout/informational/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/callout/informational/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/callout/success/Success.d.ts +2 -2
- package/lib/typescript/module/components/notification/callout/success/SuccessProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/callout/success/SuccessProps.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/callout/success/SuccessRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/callout/success/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/callout/success/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/callout/warning/Warning.d.ts +2 -2
- package/lib/typescript/module/components/notification/callout/warning/WarningProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/callout/warning/WarningRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/callout/warning/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/callout/warning/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/index.d.ts +8 -10
- package/lib/typescript/module/components/notification/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/subtitle/Subtitle.d.ts +2 -2
- package/lib/typescript/module/components/notification/subtitle/SubtitleProps.d.ts +2 -2
- package/lib/typescript/module/components/notification/subtitle/SubtitleRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/subtitle/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/subtitle/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/subtitle-link/SubtitleLink.d.ts +2 -2
- package/lib/typescript/module/components/notification/subtitle-link/SubtitleLinkProps.d.ts +1 -1
- package/lib/typescript/module/components/notification/subtitle-link/SubtitleLinkRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/subtitle-link/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/subtitle-link/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/toast/error/Error.d.ts +2 -2
- package/lib/typescript/module/components/notification/toast/error/ErrorProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/toast/error/ErrorRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/toast/error/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/toast/error/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/toast/index.d.ts +4 -4
- package/lib/typescript/module/components/notification/toast/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/toast/informational/Informational.d.ts +2 -2
- package/lib/typescript/module/components/notification/toast/informational/InformationalProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/toast/informational/InformationalRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/toast/informational/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/toast/informational/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/toast/success/Success.d.ts +2 -2
- package/lib/typescript/module/components/notification/toast/success/SuccessProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/toast/success/SuccessProps.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/toast/success/SuccessRef.d.ts +2 -2
- package/lib/typescript/module/components/notification/toast/success/SuccessRef.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/toast/success/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/toast/success/index.d.ts.map +1 -1
- package/lib/typescript/module/components/notification/toast/warning/Warning.d.ts +2 -2
- package/lib/typescript/module/components/notification/toast/warning/WarningProps.d.ts +4 -4
- package/lib/typescript/module/components/notification/toast/warning/WarningRef.d.ts +1 -1
- package/lib/typescript/module/components/notification/toast/warning/index.d.ts +3 -3
- package/lib/typescript/module/components/notification/toast/warning/index.d.ts.map +1 -1
- package/lib/typescript/module/components/password-input/PasswordInput.d.ts +4 -0
- package/lib/typescript/module/components/password-input/PasswordInput.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input/PasswordInputProps.d.ts +4 -0
- package/lib/typescript/module/components/password-input/PasswordInputProps.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input/PasswordInputRef.d.ts +4 -0
- package/lib/typescript/module/components/password-input/PasswordInputRef.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input/index.d.ts +4 -0
- package/lib/typescript/module/components/password-input/index.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-field/PasswordInputField.d.ts +4 -0
- package/lib/typescript/module/components/password-input-field/PasswordInputField.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-field/PasswordInputFieldProps.d.ts +4 -0
- package/lib/typescript/module/components/password-input-field/PasswordInputFieldProps.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-field/PasswordInputFieldRef.d.ts +4 -0
- package/lib/typescript/module/components/password-input-field/PasswordInputFieldRef.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-field/_ghost-icon/GhostIcon.d.ts +4 -0
- package/lib/typescript/module/components/password-input-field/_ghost-icon/GhostIcon.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-field/_ghost-icon/GhostIconProps.d.ts +7 -0
- package/lib/typescript/module/components/password-input-field/_ghost-icon/GhostIconProps.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-field/_ghost-icon/GhostIconRef.d.ts +4 -0
- package/lib/typescript/module/components/password-input-field/_ghost-icon/GhostIconRef.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-field/_ghost-icon/index.d.ts +4 -0
- package/lib/typescript/module/components/password-input-field/_ghost-icon/index.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-field/index.d.ts +4 -0
- package/lib/typescript/module/components/password-input-field/index.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-fluid/PasswordInputFluid.d.ts +4 -0
- package/lib/typescript/module/components/password-input-fluid/PasswordInputFluid.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-fluid/PasswordInputFluidProps.d.ts +4 -0
- package/lib/typescript/module/components/password-input-fluid/PasswordInputFluidProps.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-fluid/PasswordInputFluidRef.d.ts +4 -0
- package/lib/typescript/module/components/password-input-fluid/PasswordInputFluidRef.d.ts.map +1 -0
- package/lib/typescript/module/components/password-input-fluid/index.d.ts +4 -0
- package/lib/typescript/module/components/password-input-fluid/index.d.ts.map +1 -0
- package/lib/typescript/module/components/radio-button/RadioButton.d.ts +2 -2
- package/lib/typescript/module/components/radio-button/RadioButton.d.ts.map +1 -1
- package/lib/typescript/module/components/radio-button/RadioButtonProps.d.ts +12 -12
- package/lib/typescript/module/components/radio-button/RadioButtonRef.d.ts +2 -2
- package/lib/typescript/module/components/radio-button/_RefBase.d.ts +2 -2
- package/lib/typescript/module/components/radio-button/index.d.ts +3 -3
- package/lib/typescript/module/components/radio-button/index.d.ts.map +1 -1
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroup.d.ts +2 -2
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroup.d.ts.map +1 -1
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupHelperTextMode.d.ts +1 -1
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupItemProps.d.ts +2 -2
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupItemRef.d.ts +1 -1
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupProps.d.ts +9 -9
- package/lib/typescript/module/components/radio-button-group/RadioButtonGroupRef.d.ts +2 -2
- package/lib/typescript/module/components/radio-button-group/_Item.d.ts +2 -2
- package/lib/typescript/module/components/radio-button-group/_RefBase.d.ts +3 -3
- package/lib/typescript/module/components/radio-button-group/_item-context.d.ts +4 -4
- package/lib/typescript/module/components/radio-button-group/index.d.ts +6 -6
- package/lib/typescript/module/components/radio-button-group/index.d.ts.map +1 -1
- package/lib/typescript/module/components/radio-button-input/RadioButtonInput.d.ts +2 -2
- package/lib/typescript/module/components/radio-button-input/RadioButtonInput.d.ts.map +1 -1
- package/lib/typescript/module/components/radio-button-input/RadioButtonInputInteractiveState.d.ts +1 -1
- package/lib/typescript/module/components/radio-button-input/RadioButtonInputProps.d.ts +5 -5
- package/lib/typescript/module/components/radio-button-input/RadioButtonInputRef.d.ts +2 -2
- package/lib/typescript/module/components/radio-button-input/index.d.ts +4 -4
- package/lib/typescript/module/components/radio-button-input/index.d.ts.map +1 -1
- package/lib/typescript/module/components/switch/Switch.d.ts +2 -2
- package/lib/typescript/module/components/switch/Switch.d.ts.map +1 -1
- package/lib/typescript/module/components/switch/SwitchProps.d.ts +7 -7
- package/lib/typescript/module/components/switch/SwitchRef.d.ts +2 -2
- package/lib/typescript/module/components/switch/SwitchSize.d.ts +1 -1
- package/lib/typescript/module/components/switch/SwitchState.d.ts +1 -1
- package/lib/typescript/module/components/switch/index.d.ts +5 -5
- package/lib/typescript/module/components/text/Text.d.ts +2 -2
- package/lib/typescript/module/components/text/Text.d.ts.map +1 -1
- package/lib/typescript/module/components/text/TextProps.d.ts +9 -2
- package/lib/typescript/module/components/text/TextProps.d.ts.map +1 -1
- package/lib/typescript/module/components/text/TextRef.d.ts +1 -1
- package/lib/typescript/module/components/text/index.d.ts +3 -3
- package/lib/typescript/module/components/text/index.d.ts.map +1 -1
- package/lib/typescript/module/components/text-area/TextArea.d.ts +2 -2
- package/lib/typescript/module/components/text-area/TextArea.d.ts.map +1 -1
- package/lib/typescript/module/components/text-area/TextAreaProps.d.ts +2 -2
- package/lib/typescript/module/components/text-area/TextAreaRef.d.ts +2 -2
- package/lib/typescript/module/components/text-area/_TextAreaRefBase.d.ts +1 -1
- package/lib/typescript/module/components/text-area/index.d.ts +3 -3
- package/lib/typescript/module/components/text-area/index.d.ts.map +1 -1
- package/lib/typescript/module/components/text-area-field/TextAreaField.d.ts +2 -2
- package/lib/typescript/module/components/text-area-field/TextAreaFieldInteractiveState.d.ts +1 -1
- package/lib/typescript/module/components/text-area-field/TextAreaFieldProps.d.ts +2 -2
- package/lib/typescript/module/components/text-area-field/TextAreaFieldProps.d.ts.map +1 -1
- package/lib/typescript/module/components/text-area-field/TextAreaFieldRef.d.ts +1 -1
- package/lib/typescript/module/components/text-area-field/index.d.ts +4 -4
- package/lib/typescript/module/components/text-area-field/index.d.ts.map +1 -1
- package/lib/typescript/module/components/text-area-fluid/TextAreaFluid.d.ts +2 -2
- package/lib/typescript/module/components/text-area-fluid/TextAreaFluidProps.d.ts +2 -2
- package/lib/typescript/module/components/text-area-fluid/TextAreaFluidRef.d.ts +1 -1
- package/lib/typescript/module/components/text-area-fluid/index.d.ts +3 -3
- package/lib/typescript/module/components/text-area-fluid/index.d.ts.map +1 -1
- package/lib/typescript/module/components/text-input/TextInput.d.ts +2 -2
- package/lib/typescript/module/components/text-input/TextInput.d.ts.map +1 -1
- package/lib/typescript/module/components/text-input/TextInputProps.d.ts +2 -2
- package/lib/typescript/module/components/text-input/TextInputProps.d.ts.map +1 -1
- package/lib/typescript/module/components/text-input/TextInputRef.d.ts +2 -2
- package/lib/typescript/module/components/text-input/TextInputSize.d.ts +1 -1
- package/lib/typescript/module/components/text-input/_TextInputRefBase.d.ts +1 -1
- package/lib/typescript/module/components/text-input/index.d.ts +4 -4
- package/lib/typescript/module/components/text-input-field/TextInputField.d.ts +2 -2
- package/lib/typescript/module/components/text-input-field/TextInputField.d.ts.map +1 -1
- package/lib/typescript/module/components/text-input-field/TextInputFieldInteractiveState.d.ts +1 -1
- package/lib/typescript/module/components/text-input-field/TextInputFieldProps.d.ts +6 -6
- package/lib/typescript/module/components/text-input-field/TextInputFieldRef.d.ts +1 -1
- package/lib/typescript/module/components/text-input-field/TextInputFieldSize.d.ts +1 -1
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInput.d.ts +2 -2
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInput.d.ts.map +1 -1
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInputProps.d.ts +2 -2
- package/lib/typescript/module/components/text-input-field/_rn-text-input/RNTextInputRef.d.ts +1 -1
- package/lib/typescript/module/components/text-input-field/_rn-text-input/index.d.ts +3 -3
- package/lib/typescript/module/components/text-input-field/index.d.ts +5 -5
- package/lib/typescript/module/components/text-input-field/index.d.ts.map +1 -1
- package/lib/typescript/module/components/text-input-fluid/TextInputFluid.d.ts +2 -2
- package/lib/typescript/module/components/text-input-fluid/TextInputFluid.d.ts.map +1 -1
- package/lib/typescript/module/components/text-input-fluid/TextInputFluidProps.d.ts +2 -2
- package/lib/typescript/module/components/text-input-fluid/TextInputFluidProps.d.ts.map +1 -1
- package/lib/typescript/module/components/text-input-fluid/TextInputFluidRef.d.ts +1 -1
- package/lib/typescript/module/components/text-input-fluid/index.d.ts +3 -3
- package/lib/typescript/module/components/text-input-fluid/index.d.ts.map +1 -1
- package/lib/typescript/module/components/toggle/State.d.ts +1 -1
- package/lib/typescript/module/components/toggle/base/Base.d.ts +2 -2
- package/lib/typescript/module/components/toggle/base/Base.d.ts.map +1 -1
- package/lib/typescript/module/components/toggle/base/BaseProps.d.ts +12 -12
- package/lib/typescript/module/components/toggle/base/BaseRef.d.ts +2 -2
- package/lib/typescript/module/components/toggle/base/_RefBase.d.ts +3 -3
- package/lib/typescript/module/components/toggle/base/index.d.ts +3 -3
- package/lib/typescript/module/components/toggle/base/index.d.ts.map +1 -1
- package/lib/typescript/module/components/toggle/default/Default.d.ts +2 -2
- package/lib/typescript/module/components/toggle/default/DefaultProps.d.ts +3 -3
- package/lib/typescript/module/components/toggle/default/DefaultRef.d.ts +1 -1
- package/lib/typescript/module/components/toggle/default/index.d.ts +3 -3
- package/lib/typescript/module/components/toggle/default/index.d.ts.map +1 -1
- package/lib/typescript/module/components/toggle/index.d.ts +4 -4
- package/lib/typescript/module/components/toggle/index.d.ts.map +1 -1
- package/lib/typescript/module/components/toggle/small/Small.d.ts +2 -2
- package/lib/typescript/module/components/toggle/small/SmallProps.d.ts +3 -3
- package/lib/typescript/module/components/toggle/small/SmallRef.d.ts +1 -1
- package/lib/typescript/module/components/toggle/small/index.d.ts +3 -3
- package/lib/typescript/module/components/toggle/small/index.d.ts.map +1 -1
- package/lib/typescript/module/const/dialog-animation-configs/carbon-react.d.ts +1 -0
- package/lib/typescript/module/const/dialog-animation-configs/carbon-react.d.ts.map +1 -1
- package/lib/typescript/module/const/dialog-animation-configs/fade-bottom-up-2.d.ts +1 -0
- package/lib/typescript/module/const/dialog-animation-configs/fade-bottom-up-2.d.ts.map +1 -1
- package/lib/typescript/module/const/dialog-animation-configs/fade-bottom-up.d.ts +1 -0
- package/lib/typescript/module/const/dialog-animation-configs/fade-bottom-up.d.ts.map +1 -1
- package/lib/typescript/module/const/dialog-animation-configs/index.d.ts +3 -3
- package/lib/typescript/module/const/index.d.ts +1 -1
- package/lib/typescript/module/contexts/breakpoint/BreakpointContext.d.ts +1 -1
- package/lib/typescript/module/contexts/breakpoint/index.d.ts +1 -1
- package/lib/typescript/module/contexts/dialog/DialogContext.d.ts +1 -1
- package/lib/typescript/module/contexts/dialog/DialogType.d.ts +1 -0
- package/lib/typescript/module/contexts/dialog/DialogType.d.ts.map +1 -1
- package/lib/typescript/module/contexts/dialog/index.d.ts +2 -2
- package/lib/typescript/module/contexts/index.d.ts +4 -4
- package/lib/typescript/module/contexts/theme/ThemeContext.d.ts +1 -1
- package/lib/typescript/module/contexts/theme/index.d.ts +1 -1
- package/lib/typescript/module/contexts/toast/ToastContext.d.ts +1 -1
- package/lib/typescript/module/contexts/toast/index.d.ts +2 -2
- package/lib/typescript/module/helpers/breakpoint/get-token.d.ts +1 -1
- package/lib/typescript/module/helpers/breakpoint/index.d.ts +1 -1
- package/lib/typescript/module/helpers/color/get-color-scheme.d.ts +2 -2
- package/lib/typescript/module/helpers/color/get-color-token.d.ts +2 -2
- package/lib/typescript/module/helpers/color/index.d.ts +3 -3
- package/lib/typescript/module/helpers/index.d.ts +2 -2
- package/lib/typescript/module/hooks/breakpoint/index.d.ts +1 -1
- package/lib/typescript/module/hooks/breakpoint/use.d.ts +1 -1
- package/lib/typescript/module/hooks/index.d.ts +2 -2
- package/lib/typescript/module/index.d.ts +9 -9
- package/lib/typescript/module/providers/dialog/DialogProvider.d.ts +2 -2
- package/lib/typescript/module/providers/dialog/DialogProvider.d.ts.map +1 -1
- package/lib/typescript/module/providers/dialog/DialogProviderAnimationConfig.d.ts +10 -1
- package/lib/typescript/module/providers/dialog/DialogProviderAnimationConfig.d.ts.map +1 -1
- package/lib/typescript/module/providers/dialog/DialogProviderProps.d.ts +5 -5
- package/lib/typescript/module/providers/dialog/DialogProviderRef.d.ts +1 -1
- package/lib/typescript/module/providers/dialog/_controller/Controller.d.ts +2 -2
- package/lib/typescript/module/providers/dialog/_controller/Controller.d.ts.map +1 -1
- package/lib/typescript/module/providers/dialog/_controller/ControllerProps.d.ts +3 -2
- package/lib/typescript/module/providers/dialog/_controller/ControllerProps.d.ts.map +1 -1
- package/lib/typescript/module/providers/dialog/_controller/ControllerRef.d.ts +1 -1
- package/lib/typescript/module/providers/dialog/_controller/_modal/Modal.d.ts +2 -2
- package/lib/typescript/module/providers/dialog/_controller/_modal/Modal.d.ts.map +1 -1
- package/lib/typescript/module/providers/dialog/_controller/_modal/ModalProps.d.ts +3 -3
- package/lib/typescript/module/providers/dialog/_controller/_modal/ModalProps.d.ts.map +1 -1
- package/lib/typescript/module/providers/dialog/_controller/_modal/ModalRef.d.ts +1 -1
- package/lib/typescript/module/providers/dialog/_controller/_modal/index.d.ts +3 -3
- package/lib/typescript/module/providers/dialog/_controller/_overlay/Overlay.d.ts +2 -2
- package/lib/typescript/module/providers/dialog/_controller/_overlay/OverlayProps.d.ts +3 -2
- package/lib/typescript/module/providers/dialog/_controller/_overlay/OverlayProps.d.ts.map +1 -1
- package/lib/typescript/module/providers/dialog/_controller/_overlay/OverlayRef.d.ts +2 -2
- package/lib/typescript/module/providers/dialog/_controller/_overlay/index.d.ts +3 -3
- package/lib/typescript/module/providers/dialog/_controller/index.d.ts +3 -3
- package/lib/typescript/module/providers/dialog/index.d.ts +4 -4
- package/lib/typescript/module/providers/index.d.ts +2 -2
- package/lib/typescript/module/providers/toast/ToastProvider.d.ts +2 -2
- package/lib/typescript/module/providers/toast/ToastRef.d.ts +1 -1
- package/lib/typescript/module/providers/toast/_overlay/Overlay.d.ts +1 -1
- package/lib/typescript/module/providers/toast/_overlay/Overlay.d.ts.map +1 -1
- package/lib/typescript/module/providers/toast/_overlay/OverlayRef.d.ts +1 -1
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/ComponentWrapper.d.ts +2 -2
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/ComponentWrapper.d.ts.map +1 -1
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.d.ts +1 -1
- package/lib/typescript/module/providers/toast/_overlay/_component-wrapper/index.d.ts +3 -3
- package/lib/typescript/module/providers/toast/_overlay/_gap.d.ts +2 -0
- package/lib/typescript/module/providers/toast/_overlay/_gap.d.ts.map +1 -0
- package/lib/typescript/module/providers/toast/_overlay/index.d.ts +2 -2
- package/lib/typescript/module/providers/toast/index.d.ts +3 -3
- package/lib/typescript/module/providers/toast/index.d.ts.map +1 -1
- package/lib/typescript/module/style-sheets/direction-style-sheet.d.ts +12 -0
- package/lib/typescript/module/style-sheets/direction-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/display-style-sheet.d.ts +9 -0
- package/lib/typescript/module/style-sheets/display-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/flex-style-sheet.d.ts +99 -0
- package/lib/typescript/module/style-sheets/flex-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/font-style-sheet.d.ts +59 -0
- package/lib/typescript/module/style-sheets/font-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/height-style-sheet.d.ts +12 -0
- package/lib/typescript/module/style-sheets/height-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/index.d.ts +12 -0
- package/lib/typescript/module/style-sheets/index.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/overflow-style-sheet.d.ts +12 -0
- package/lib/typescript/module/style-sheets/overflow-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/position-style-sheet.d.ts +12 -0
- package/lib/typescript/module/style-sheets/position-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/direction.d.ts +12 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/direction.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/display.d.ts +9 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/display.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/flex.d.ts +99 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/flex.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/font.d.ts +59 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/font.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/height.d.ts +12 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/height.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/index.d.ts +10 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/index.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/overflow.d.ts +12 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/overflow.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/position.d.ts +12 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/position.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/typography.d.ts +24 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/typography.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/width.d.ts +12 -0
- package/lib/typescript/module/style-sheets/style-sheet-obj/width.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/typography-style-sheet.d.ts +24 -0
- package/lib/typescript/module/style-sheets/typography-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/style-sheets/width-style-sheet.d.ts +12 -0
- package/lib/typescript/module/style-sheets/width-style-sheet.d.ts.map +1 -0
- package/lib/typescript/module/types/index.d.ts +2 -2
- package/lib/typescript/module/types/theme/ColorScheme.d.ts +1 -1
- package/lib/typescript/module/types/theme/index.d.ts +1 -1
- package/lib/typescript/tsconfig.tsbuildinfo +1 -0
- package/package.json +4 -1
- package/src/_internal/contexts/button-group/ButtonGroupContext.ts +25 -0
- package/src/_internal/contexts/button-group/index.tsx +1 -0
- package/src/_internal/contexts/global-config/GlobalConfigContext.ts +30 -0
- package/src/_internal/contexts/global-config/index.ts +1 -0
- package/src/_internal/contexts/in-dialog/InDialogContext.ts +7 -0
- package/src/_internal/contexts/in-dialog/index.ts +1 -0
- package/src/_internal/contexts/index.ts +4 -0
- package/src/_internal/contexts/modal/ModalContext.ts +28 -0
- package/src/_internal/contexts/modal/index.ts +1 -0
- package/src/_internal/globals/breakpoint/index.ts +13 -0
- package/src/_internal/globals/color-scheme/index.ts +13 -0
- package/src/_internal/globals/index.ts +7 -0
- package/src/_internal/helpers/index.ts +7 -0
- package/src/_internal/helpers/math/clamp.ts +3 -0
- package/src/_internal/helpers/math/index.ts +1 -0
- package/src/_internal/helpers/modal/index.ts +1 -0
- package/src/_internal/helpers/modal/is-apply-insets.ts +23 -0
- package/src/_internal/hooks/index.ts +5 -0
- package/src/_internal/hooks/secure-text-entry-control/UseProps.ts +4 -0
- package/src/_internal/hooks/secure-text-entry-control/index.ts +2 -0
- package/src/_internal/hooks/secure-text-entry-control/use.tsx +26 -0
- package/src/_internal/providers/breakpoint/BreakpointProvider.tsx +42 -0
- package/src/_internal/providers/breakpoint/BreakpointProviderProps.ts +3 -0
- package/src/_internal/providers/breakpoint/index.tsx +2 -0
- package/src/_internal/providers/global-config/GlobalConfigProvider.tsx +30 -0
- package/src/_internal/providers/global-config/GlobalConfigProviderProps.ts +7 -0
- package/src/_internal/providers/global-config/index.tsx +2 -0
- package/src/_internal/providers/index.ts +3 -0
- package/src/_internal/providers/theme/ThemeProvider.tsx +45 -0
- package/src/_internal/providers/theme/ThemeProviderProps.ts +8 -0
- package/src/_internal/providers/theme/index.tsx +2 -0
- package/src/carbon-react-native/CarbonReactNative.tsx +41 -0
- package/src/carbon-react-native/CarbonReactNativeProps.ts +7 -0
- package/src/carbon-react-native/index.tsx +2 -0
- package/src/carbon-style-sheet/breakpoint.ts +16 -0
- package/src/carbon-style-sheet/color.ts +13 -0
- package/src/carbon-style-sheet/create.ts +232 -0
- package/src/carbon-style-sheet/index.tsx +51 -0
- package/src/carbon-style-sheet/use.tsx +16 -0
- package/src/components/accordion/Accordion.tsx +132 -0
- package/src/components/accordion/AccordionHeaderProps.ts +17 -0
- package/src/components/accordion/AccordionItemProps.ts +24 -0
- package/src/components/accordion/AccordionItemRef.ts +10 -0
- package/src/components/accordion/AccordionProps.ts +19 -0
- package/src/components/accordion/AccordionRef.ts +6 -0
- package/src/components/accordion/AccordionSize.ts +4 -0
- package/src/components/accordion/_Header.tsx +201 -0
- package/src/components/accordion/_HeaderBorder.tsx +76 -0
- package/src/components/accordion/_Item.tsx +175 -0
- package/src/components/accordion/_ItemRefBase.ts +7 -0
- package/src/components/accordion/_chevron/Chevron.tsx +97 -0
- package/src/components/accordion/_chevron/ChevronProps.ts +10 -0
- package/src/components/accordion/_chevron/index.ts +2 -0
- package/src/components/accordion/_context.ts +20 -0
- package/src/components/accordion/_motion.ts +27 -0
- package/src/components/accordion/_styles.ts +24 -0
- package/src/components/accordion/index.ts +7 -0
- package/src/components/box/Box.tsx +57 -0
- package/src/components/box/BoxProps.ts +6 -0
- package/src/components/box/BoxRef.ts +6 -0
- package/src/components/box/index.ts +3 -0
- package/src/components/button/Size.ts +7 -0
- package/src/components/button/base/Base.tsx +323 -0
- package/src/components/button/base/BaseProps.ts +60 -0
- package/src/components/button/base/BaseRef.ts +6 -0
- package/src/components/button/base/index.tsx +3 -0
- package/src/components/button/base-color/BaseColor.tsx +289 -0
- package/src/components/button/base-color/BaseColorProps.ts +32 -0
- package/src/components/button/base-color/BaseColorRef.ts +6 -0
- package/src/components/button/base-color/BaseColorState.ts +6 -0
- package/src/components/button/base-color/index.tsx +4 -0
- package/src/components/button/ghost/Ghost.tsx +165 -0
- package/src/components/button/ghost/GhostProps.ts +10 -0
- package/src/components/button/ghost/GhostRef.ts +6 -0
- package/src/components/button/ghost/index.tsx +3 -0
- package/src/components/button/ghost-danger/GhostDanger.tsx +165 -0
- package/src/components/button/ghost-danger/GhostDangerProps.ts +10 -0
- package/src/components/button/ghost-danger/GhostDangerRef.ts +6 -0
- package/src/components/button/ghost-danger/index.tsx +3 -0
- package/src/components/button/ghost-icon/GhostIcon.tsx +127 -0
- package/src/components/button/ghost-icon/GhostIconProps.ts +17 -0
- package/src/components/button/ghost-icon/GhostIconRef.ts +6 -0
- package/src/components/button/ghost-icon/index.tsx +3 -0
- package/src/components/button/index.tsx +11 -0
- package/src/components/button/primary/Primary.tsx +140 -0
- package/src/components/button/primary/PrimaryProps.ts +11 -0
- package/src/components/button/primary/PrimaryRef.ts +6 -0
- package/src/components/button/primary/index.tsx +3 -0
- package/src/components/button/primary-danger/PrimaryDanger.tsx +140 -0
- package/src/components/button/primary-danger/PrimaryDangerProps.ts +12 -0
- package/src/components/button/primary-danger/PrimaryDangerRef.ts +6 -0
- package/src/components/button/primary-danger/index.tsx +3 -0
- package/src/components/button/secondary/Secondary.tsx +140 -0
- package/src/components/button/secondary/SecondaryProps.ts +12 -0
- package/src/components/button/secondary/SecondaryRef.ts +6 -0
- package/src/components/button/secondary/index.tsx +3 -0
- package/src/components/button/tertiary/Tertiary.tsx +157 -0
- package/src/components/button/tertiary/TertiaryProps.ts +12 -0
- package/src/components/button/tertiary/TertiaryRef.ts +6 -0
- package/src/components/button/tertiary/index.tsx +3 -0
- package/src/components/button/tertiary-danger/TertiaryDanger.tsx +157 -0
- package/src/components/button/tertiary-danger/TertiaryDangerProps.ts +12 -0
- package/src/components/button/tertiary-danger/TertiaryDangerRef.ts +6 -0
- package/src/components/button/tertiary-danger/index.tsx +3 -0
- package/src/components/button-group/ButtonGroup.tsx +145 -0
- package/src/components/button-group/ButtonGroupProps.ts +37 -0
- package/src/components/button-group/ButtonGroupRef.ts +6 -0
- package/src/components/button-group/index.ts +3 -0
- package/src/components/checkbox/Checkbox.tsx +217 -0
- package/src/components/checkbox/CheckboxProps.ts +41 -0
- package/src/components/checkbox/CheckboxRef.ts +10 -0
- package/src/components/checkbox/_RefBase.ts +11 -0
- package/src/components/checkbox/index.ts +3 -0
- package/src/components/checkbox-group/CheckboxGroup.tsx +209 -0
- package/src/components/checkbox-group/CheckboxGroupHelperTextMode.ts +4 -0
- package/src/components/checkbox-group/CheckboxGroupProps.ts +28 -0
- package/src/components/checkbox-group/CheckboxGroupRef.ts +6 -0
- package/src/components/checkbox-group/index.ts +4 -0
- package/src/components/checkbox-input/CheckboxInput.tsx +341 -0
- package/src/components/checkbox-input/CheckboxInputInteractiveState.ts +6 -0
- package/src/components/checkbox-input/CheckboxInputProps.ts +27 -0
- package/src/components/checkbox-input/CheckboxInputRef.ts +11 -0
- package/src/components/checkbox-input/CheckboxInputState.ts +6 -0
- package/src/components/checkbox-input/_RefBase.ts +11 -0
- package/src/components/checkbox-input/index.ts +5 -0
- package/src/components/collapsible/Collapsible.tsx +275 -0
- package/src/components/collapsible/CollapsibleProps.ts +17 -0
- package/src/components/collapsible/CollapsibleRef.ts +11 -0
- package/src/components/collapsible/_RefBase.ts +6 -0
- package/src/components/collapsible/index.ts +3 -0
- package/src/components/form-helper-text/FormHelperText.tsx +100 -0
- package/src/components/form-helper-text/FormHelperTextProps.ts +15 -0
- package/src/components/form-helper-text/FormHelperTextRef.ts +6 -0
- package/src/components/form-helper-text/index.tsx +3 -0
- package/src/components/form-label/FormLabel.tsx +75 -0
- package/src/components/form-label/FormLabelProps.ts +17 -0
- package/src/components/form-label/FormLabelRef.ts +6 -0
- package/src/components/form-label/index.ts +3 -0
- package/src/components/icon/Icon.tsx +48 -0
- package/src/components/icon/IconProps.ts +11 -0
- package/src/components/icon/index.tsx +2 -0
- package/src/components/index.ts +38 -0
- package/src/components/inline-loading/InlineLoading.tsx +136 -0
- package/src/components/inline-loading/InlineLoadingProps.ts +24 -0
- package/src/components/inline-loading/InlineLoadingRef.ts +6 -0
- package/src/components/inline-loading/InlineLoadingState.ts +5 -0
- package/src/components/inline-loading/index.ts +4 -0
- package/src/components/layer/Layer.tsx +87 -0
- package/src/components/layer/LayerContext.ts +9 -0
- package/src/components/layer/LayerProps.ts +16 -0
- package/src/components/layer/LayerRef.ts +6 -0
- package/src/components/layer/index.ts +4 -0
- package/src/components/loading/Loading.tsx +116 -0
- package/src/components/loading/LoadingProps.ts +14 -0
- package/src/components/loading/LoadingRef.ts +4 -0
- package/src/components/loading/LoadingType.ts +3 -0
- package/src/components/loading/_circular-progress/CircularProgress.tsx +113 -0
- package/src/components/loading/_circular-progress/CircularProgressProps.ts +18 -0
- package/src/components/loading/_circular-progress/index.ts +2 -0
- package/src/components/loading/_map-circle-background-color.ts +26 -0
- package/src/components/loading/_map-circle-stroke-color.ts +13 -0
- package/src/components/loading/index.ts +4 -0
- package/src/components/modal/Modal.tsx +462 -0
- package/src/components/modal/ModalProps.ts +61 -0
- package/src/components/modal/ModalRef.ts +6 -0
- package/src/components/modal/ModalSize.ts +5 -0
- package/src/components/modal/index.ts +4 -0
- package/src/components/modal-content/ModalContent.tsx +204 -0
- package/src/components/modal-content/ModalContentProps.ts +7 -0
- package/src/components/modal-content/ModalContentRef.ts +6 -0
- package/src/components/modal-content/index.ts +3 -0
- package/src/components/notification/NotificationColor.ts +3 -0
- package/src/components/notification/_VariantContextProvider.tsx +39 -0
- package/src/components/notification/_status-hooks/_base/UseBaseData.ts +11 -0
- package/src/components/notification/_status-hooks/_base/UseBaseProps.ts +21 -0
- package/src/components/notification/_status-hooks/_base/index.tsx +3 -0
- package/src/components/notification/_status-hooks/_base/useBase.tsx +77 -0
- package/src/components/notification/_status-hooks/error/UseErrorData.ts +11 -0
- package/src/components/notification/_status-hooks/error/UseErrorProps.ts +8 -0
- package/src/components/notification/_status-hooks/error/index.tsx +3 -0
- package/src/components/notification/_status-hooks/error/useError.tsx +122 -0
- package/src/components/notification/_status-hooks/index.tsx +4 -0
- package/src/components/notification/_status-hooks/informational/UseInformationalData.ts +11 -0
- package/src/components/notification/_status-hooks/informational/UseInformationalProps.ts +8 -0
- package/src/components/notification/_status-hooks/informational/index.tsx +3 -0
- package/src/components/notification/_status-hooks/informational/useInformational.tsx +122 -0
- package/src/components/notification/_status-hooks/success/UseSuccessData.ts +11 -0
- package/src/components/notification/_status-hooks/success/UseSuccessProps.ts +8 -0
- package/src/components/notification/_status-hooks/success/index.tsx +3 -0
- package/src/components/notification/_status-hooks/success/useSuccess.tsx +122 -0
- package/src/components/notification/_status-hooks/warning/UseWarningData.ts +11 -0
- package/src/components/notification/_status-hooks/warning/UseWarningProps.ts +8 -0
- package/src/components/notification/_status-hooks/warning/index.tsx +3 -0
- package/src/components/notification/_status-hooks/warning/useWarning.tsx +122 -0
- package/src/components/notification/_variant-context.ts +15 -0
- package/src/components/notification/_variants/_ButtonGhost.tsx +73 -0
- package/src/components/notification/_variants/_ButtonTertiary.tsx +73 -0
- package/src/components/notification/_variants/actionable/ActionableVariant.tsx +69 -0
- package/src/components/notification/_variants/actionable/ActionableVariantProps.ts +44 -0
- package/src/components/notification/_variants/actionable/ActionableVariantRef.ts +6 -0
- package/src/components/notification/_variants/actionable/index.ts +3 -0
- package/src/components/notification/_variants/callout/CalloutVariant.tsx +58 -0
- package/src/components/notification/_variants/callout/CalloutVariantProps.ts +24 -0
- package/src/components/notification/_variants/callout/CalloutVariantRef.ts +6 -0
- package/src/components/notification/_variants/callout/index.ts +3 -0
- package/src/components/notification/_variants/index.ts +3 -0
- package/src/components/notification/_variants/toast/ToastVariant.tsx +115 -0
- package/src/components/notification/_variants/toast/ToastVariantProps.ts +29 -0
- package/src/components/notification/_variants/toast/ToastVariantRef.ts +6 -0
- package/src/components/notification/_variants/toast/index.ts +3 -0
- package/src/components/notification/actionable/error/Error.tsx +78 -0
- package/src/components/notification/actionable/error/ErrorProps.ts +14 -0
- package/src/components/notification/actionable/error/ErrorRef.ts +6 -0
- package/src/components/notification/actionable/error/index.ts +3 -0
- package/src/components/notification/actionable/index.ts +4 -0
- package/src/components/notification/actionable/informational/Informational.tsx +78 -0
- package/src/components/notification/actionable/informational/InformationalProps.ts +14 -0
- package/src/components/notification/actionable/informational/InformationalRef.ts +6 -0
- package/src/components/notification/actionable/informational/index.ts +3 -0
- package/src/components/notification/actionable/success/Success.tsx +78 -0
- package/src/components/notification/actionable/success/SuccessProps.ts +14 -0
- package/src/components/notification/actionable/success/SuccessRef.ts +6 -0
- package/src/components/notification/actionable/success/index.ts +3 -0
- package/src/components/notification/actionable/warning/Warning.tsx +78 -0
- package/src/components/notification/actionable/warning/WarningProps.ts +14 -0
- package/src/components/notification/actionable/warning/WarningRef.ts +6 -0
- package/src/components/notification/actionable/warning/index.ts +3 -0
- package/src/components/notification/base/Base.tsx +292 -0
- package/src/components/notification/base/BaseProps.ts +59 -0
- package/src/components/notification/base/BaseRef.ts +6 -0
- package/src/components/notification/base/index.ts +3 -0
- package/src/components/notification/callout/error/Error.tsx +78 -0
- package/src/components/notification/callout/error/ErrorProps.ts +14 -0
- package/src/components/notification/callout/error/ErrorRef.ts +6 -0
- package/src/components/notification/callout/error/index.ts +3 -0
- package/src/components/notification/callout/index.ts +4 -0
- package/src/components/notification/callout/informational/Informational.tsx +78 -0
- package/src/components/notification/callout/informational/InformationalProps.ts +14 -0
- package/src/components/notification/callout/informational/InformationalRef.ts +6 -0
- package/src/components/notification/callout/informational/index.ts +3 -0
- package/src/components/notification/callout/success/Success.tsx +78 -0
- package/src/components/notification/callout/success/SuccessProps.ts +14 -0
- package/src/components/notification/callout/success/SuccessRef.ts +6 -0
- package/src/components/notification/callout/success/index.ts +3 -0
- package/src/components/notification/callout/warning/Warning.tsx +78 -0
- package/src/components/notification/callout/warning/WarningProps.ts +14 -0
- package/src/components/notification/callout/warning/WarningRef.ts +6 -0
- package/src/components/notification/callout/warning/index.ts +3 -0
- package/src/components/notification/index.ts +14 -0
- package/src/components/notification/subtitle/Subtitle.tsx +75 -0
- package/src/components/notification/subtitle/SubtitleProps.ts +6 -0
- package/src/components/notification/subtitle/SubtitleRef.ts +6 -0
- package/src/components/notification/subtitle/index.ts +3 -0
- package/src/components/notification/subtitle-link/SubtitleLink.tsx +74 -0
- package/src/components/notification/subtitle-link/SubtitleLinkProps.ts +6 -0
- package/src/components/notification/subtitle-link/SubtitleLinkRef.ts +6 -0
- package/src/components/notification/subtitle-link/index.ts +3 -0
- package/src/components/notification/toast/error/Error.tsx +78 -0
- package/src/components/notification/toast/error/ErrorProps.ts +14 -0
- package/src/components/notification/toast/error/ErrorRef.ts +6 -0
- package/src/components/notification/toast/error/index.ts +3 -0
- package/src/components/notification/toast/index.ts +4 -0
- package/src/components/notification/toast/informational/Informational.tsx +78 -0
- package/src/components/notification/toast/informational/InformationalProps.ts +14 -0
- package/src/components/notification/toast/informational/InformationalRef.ts +6 -0
- package/src/components/notification/toast/informational/index.ts +3 -0
- package/src/components/notification/toast/success/Success.tsx +78 -0
- package/src/components/notification/toast/success/SuccessProps.ts +14 -0
- package/src/components/notification/toast/success/SuccessRef.ts +6 -0
- package/src/components/notification/toast/success/index.ts +3 -0
- package/src/components/notification/toast/warning/Warning.tsx +78 -0
- package/src/components/notification/toast/warning/WarningProps.ts +14 -0
- package/src/components/notification/toast/warning/WarningRef.ts +6 -0
- package/src/components/notification/toast/warning/index.ts +3 -0
- package/src/components/password-input/PasswordInput.tsx +61 -0
- package/src/components/password-input/PasswordInputProps.ts +6 -0
- package/src/components/password-input/PasswordInputRef.ts +6 -0
- package/src/components/password-input/index.ts +3 -0
- package/src/components/password-input-field/PasswordInputField.tsx +61 -0
- package/src/components/password-input-field/PasswordInputFieldProps.ts +6 -0
- package/src/components/password-input-field/PasswordInputFieldRef.tsx +6 -0
- package/src/components/password-input-field/_ghost-icon/GhostIcon.tsx +71 -0
- package/src/components/password-input-field/_ghost-icon/GhostIconProps.ts +12 -0
- package/src/components/password-input-field/_ghost-icon/GhostIconRef.ts +6 -0
- package/src/components/password-input-field/_ghost-icon/index.ts +3 -0
- package/src/components/password-input-field/index.ts +3 -0
- package/src/components/password-input-fluid/PasswordInputFluid.tsx +59 -0
- package/src/components/password-input-fluid/PasswordInputFluidProps.ts +6 -0
- package/src/components/password-input-fluid/PasswordInputFluidRef.ts +6 -0
- package/src/components/password-input-fluid/index.ts +3 -0
- package/src/components/radio-button/RadioButton.tsx +221 -0
- package/src/components/radio-button/RadioButtonProps.ts +44 -0
- package/src/components/radio-button/RadioButtonRef.ts +10 -0
- package/src/components/radio-button/_RefBase.ts +11 -0
- package/src/components/radio-button/index.ts +3 -0
- package/src/components/radio-button-group/RadioButtonGroup.tsx +250 -0
- package/src/components/radio-button-group/RadioButtonGroupHelperTextMode.ts +4 -0
- package/src/components/radio-button-group/RadioButtonGroupItemProps.ts +10 -0
- package/src/components/radio-button-group/RadioButtonGroupItemRef.ts +6 -0
- package/src/components/radio-button-group/RadioButtonGroupProps.ts +35 -0
- package/src/components/radio-button-group/RadioButtonGroupRef.ts +10 -0
- package/src/components/radio-button-group/_Item.tsx +101 -0
- package/src/components/radio-button-group/_RefBase.ts +11 -0
- package/src/components/radio-button-group/_item-context.tsx +18 -0
- package/src/components/radio-button-group/index.ts +6 -0
- package/src/components/radio-button-input/RadioButtonInput.tsx +296 -0
- package/src/components/radio-button-input/RadioButtonInputInteractiveState.ts +6 -0
- package/src/components/radio-button-input/RadioButtonInputProps.ts +25 -0
- package/src/components/radio-button-input/RadioButtonInputRef.ts +10 -0
- package/src/components/radio-button-input/_RefBase.ts +7 -0
- package/src/components/radio-button-input/index.ts +4 -0
- package/src/components/switch/Switch.tsx +487 -0
- package/src/components/switch/SwitchProps.ts +38 -0
- package/src/components/switch/SwitchRef.ts +10 -0
- package/src/components/switch/SwitchSize.ts +4 -0
- package/src/components/switch/SwitchState.ts +4 -0
- package/src/components/switch/_RefBase.ts +7 -0
- package/src/components/switch/index.ts +5 -0
- package/src/components/text/Text.tsx +137 -0
- package/src/components/text/TextProps.ts +20 -0
- package/src/components/text/TextRef.ts +6 -0
- package/src/components/text/index.ts +3 -0
- package/src/components/text-area/TextArea.tsx +264 -0
- package/src/components/text-area/TextAreaProps.ts +13 -0
- package/src/components/text-area/TextAreaRef.ts +10 -0
- package/src/components/text-area/_TextAreaRefBase.ts +7 -0
- package/src/components/text-area/index.ts +3 -0
- package/src/components/text-area-field/TextAreaField.tsx +75 -0
- package/src/components/text-area-field/TextAreaFieldInteractiveState.ts +5 -0
- package/src/components/text-area-field/TextAreaFieldProps.ts +6 -0
- package/src/components/text-area-field/TextAreaFieldRef.ts +6 -0
- package/src/components/text-area-field/index.ts +4 -0
- package/src/components/text-area-fluid/TextAreaFluid.tsx +157 -0
- package/src/components/text-area-fluid/TextAreaFluidProps.ts +13 -0
- package/src/components/text-area-fluid/TextAreaFluidRef.ts +6 -0
- package/src/components/text-area-fluid/index.ts +3 -0
- package/src/components/text-input/TextInput.tsx +274 -0
- package/src/components/text-input/TextInputProps.ts +11 -0
- package/src/components/text-input/TextInputRef.ts +10 -0
- package/src/components/text-input/TextInputSize.ts +5 -0
- package/src/components/text-input/_TextInputRefBase.ts +7 -0
- package/src/components/text-input/index.ts +4 -0
- package/src/components/text-input-field/TextInputField.tsx +469 -0
- package/src/components/text-input-field/TextInputFieldInteractiveState.ts +6 -0
- package/src/components/text-input-field/TextInputFieldProps.ts +31 -0
- package/src/components/text-input-field/TextInputFieldRef.ts +8 -0
- package/src/components/text-input-field/TextInputFieldSize.ts +4 -0
- package/src/components/text-input-field/_rn-text-input/RNTextInput.tsx +161 -0
- package/src/components/text-input-field/_rn-text-input/RNTextInputProps.ts +11 -0
- package/src/components/text-input-field/_rn-text-input/RNTextInputRef.ts +6 -0
- package/src/components/text-input-field/_rn-text-input/index.ts +3 -0
- package/src/components/text-input-field/index.ts +5 -0
- package/src/components/text-input-fluid/TextInputFluid.tsx +170 -0
- package/src/components/text-input-fluid/TextInputFluidProps.ts +12 -0
- package/src/components/text-input-fluid/TextInputFluidRef.ts +6 -0
- package/src/components/text-input-fluid/index.ts +3 -0
- package/src/components/toggle/State.ts +5 -0
- package/src/components/toggle/base/Base.tsx +307 -0
- package/src/components/toggle/base/BaseProps.ts +54 -0
- package/src/components/toggle/base/BaseRef.ts +10 -0
- package/src/components/toggle/base/_RefBase.ts +11 -0
- package/src/components/toggle/base/index.ts +3 -0
- package/src/components/toggle/default/Default.tsx +38 -0
- package/src/components/toggle/default/DefaultProps.ts +9 -0
- package/src/components/toggle/default/DefaultRef.ts +6 -0
- package/src/components/toggle/default/index.ts +3 -0
- package/src/components/toggle/index.ts +4 -0
- package/src/components/toggle/small/Small.tsx +38 -0
- package/src/components/toggle/small/SmallProps.ts +7 -0
- package/src/components/toggle/small/SmallRef.ts +6 -0
- package/src/components/toggle/small/index.ts +3 -0
- package/src/const/dialog-animation-configs/carbon-react.ts +58 -0
- package/src/const/dialog-animation-configs/fade-bottom-up-2.ts +41 -0
- package/src/const/dialog-animation-configs/fade-bottom-up.ts +41 -0
- package/src/const/dialog-animation-configs/index.ts +3 -0
- package/src/const/index.ts +5 -0
- package/src/contexts/breakpoint/BreakpointContext.ts +19 -0
- package/src/contexts/breakpoint/index.ts +1 -0
- package/src/contexts/dialog/DialogContext.ts +27 -0
- package/src/contexts/dialog/DialogData.ts +27 -0
- package/src/contexts/dialog/DialogType.ts +7 -0
- package/src/contexts/dialog/index.ts +2 -0
- package/src/contexts/index.ts +4 -0
- package/src/contexts/theme/ThemeContext.ts +24 -0
- package/src/contexts/theme/index.ts +1 -0
- package/src/contexts/toast/ToastContext.ts +24 -0
- package/src/contexts/toast/ToastContextShowConfig.ts +6 -0
- package/src/contexts/toast/index.ts +2 -0
- package/src/helpers/breakpoint/get-token.ts +20 -0
- package/src/helpers/breakpoint/index.ts +1 -0
- package/src/helpers/color/get-color-scheme.ts +19 -0
- package/src/helpers/color/get-color-token.ts +23 -0
- package/src/helpers/color/hex-to-rgba.ts +11 -0
- package/src/helpers/color/index.ts +3 -0
- package/src/helpers/index.ts +7 -0
- package/src/hooks/breakpoint/index.tsx +1 -0
- package/src/hooks/breakpoint/use.tsx +30 -0
- package/src/hooks/index.tsx +9 -0
- package/src/index.ts +9 -0
- package/src/providers/dialog/DialogProvider.tsx +189 -0
- package/src/providers/dialog/DialogProviderAnimationConfig.ts +60 -0
- package/src/providers/dialog/DialogProviderProps.ts +28 -0
- package/src/providers/dialog/DialogProviderRef.ts +6 -0
- package/src/providers/dialog/_controller/Controller.tsx +214 -0
- package/src/providers/dialog/_controller/ControllerProps.ts +13 -0
- package/src/providers/dialog/_controller/ControllerRef.ts +6 -0
- package/src/providers/dialog/_controller/_modal/Modal.tsx +144 -0
- package/src/providers/dialog/_controller/_modal/ModalProps.ts +11 -0
- package/src/providers/dialog/_controller/_modal/ModalRef.ts +8 -0
- package/src/providers/dialog/_controller/_modal/_Interpolation.ts +9 -0
- package/src/providers/dialog/_controller/_modal/index.ts +3 -0
- package/src/providers/dialog/_controller/_overlay/Overlay.tsx +132 -0
- package/src/providers/dialog/_controller/_overlay/OverlayProps.ts +10 -0
- package/src/providers/dialog/_controller/_overlay/OverlayRef.ts +10 -0
- package/src/providers/dialog/_controller/_overlay/_OverlayRefBase.ts +3 -0
- package/src/providers/dialog/_controller/_overlay/index.ts +3 -0
- package/src/providers/dialog/_controller/index.ts +3 -0
- package/src/providers/dialog/index.ts +4 -0
- package/src/providers/index.ts +2 -0
- package/src/providers/toast/ToastProvider.tsx +73 -0
- package/src/providers/toast/ToastProviderProps.ts +3 -0
- package/src/providers/toast/ToastRef.ts +6 -0
- package/src/providers/toast/_overlay/Overlay.tsx +207 -0
- package/src/providers/toast/_overlay/OverlayRef.ts +6 -0
- package/src/providers/toast/_overlay/_component-wrapper/ComponentWrapper.tsx +180 -0
- package/src/providers/toast/_overlay/_component-wrapper/ComponentWrapperProps.ts +8 -0
- package/src/providers/toast/_overlay/_component-wrapper/ComponentWrapperRef.ts +6 -0
- package/src/providers/toast/_overlay/_component-wrapper/index.ts +3 -0
- package/src/providers/toast/_overlay/_gap.ts +5 -0
- package/src/providers/toast/_overlay/index.ts +2 -0
- package/src/providers/toast/index.ts +3 -0
- package/src/style-sheets/direction-style-sheet.ts +9 -0
- package/src/style-sheets/display-style-sheet.ts +9 -0
- package/src/style-sheets/flex-style-sheet.ts +9 -0
- package/src/style-sheets/font-style-sheet.ts +9 -0
- package/src/style-sheets/height-style-sheet.ts +9 -0
- package/src/style-sheets/index.ts +15 -0
- package/src/style-sheets/overflow-style-sheet.ts +9 -0
- package/src/style-sheets/position-style-sheet.ts +9 -0
- package/src/style-sheets/style-sheet-obj/direction.ts +15 -0
- package/src/style-sheets/style-sheet-obj/display.ts +12 -0
- package/src/style-sheets/style-sheet-obj/flex.ts +102 -0
- package/src/style-sheets/style-sheet-obj/font.ts +62 -0
- package/src/style-sheets/style-sheet-obj/height.ts +15 -0
- package/src/style-sheets/style-sheet-obj/index.ts +9 -0
- package/src/style-sheets/style-sheet-obj/overflow.ts +15 -0
- package/src/style-sheets/style-sheet-obj/position.ts +15 -0
- package/src/style-sheets/style-sheet-obj/typography.ts +31 -0
- package/src/style-sheets/style-sheet-obj/width.ts +15 -0
- package/src/style-sheets/typography-style-sheet.ts +9 -0
- package/src/style-sheets/width-style-sheet.ts +9 -0
- package/src/types/index.ts +7 -0
- package/src/types/shared.ts +1 -0
- package/src/types/theme/ColorScheme.ts +1 -0
- package/src/types/theme/index.ts +1 -0
- package/lib/commonjs/_internal/style-sheets/common-style-sheet.js +0 -25
- package/lib/commonjs/_internal/style-sheets/common-style-sheet.js.map +0 -1
- package/lib/commonjs/_internal/style-sheets/flex-style-sheet.js +0 -88
- package/lib/commonjs/_internal/style-sheets/flex-style-sheet.js.map +0 -1
- package/lib/commonjs/_internal/style-sheets/index.js +0 -39
- package/lib/commonjs/_internal/style-sheets/index.js.map +0 -1
- package/lib/commonjs/_internal/style-sheets/text-style-sheet.js +0 -66
- package/lib/commonjs/_internal/style-sheets/text-style-sheet.js.map +0 -1
- package/lib/commonjs/components/checkbox-input/CheckboxInputValue.js +0 -2
- package/lib/commonjs/components/checkbox-input/CheckboxInputValue.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariant.js +0 -41
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariant.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.js +0 -6
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.js +0 -6
- package/lib/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/actionable-inline/index.js +0 -39
- package/lib/commonjs/components/notification/_variants/actionable-inline/index.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariant.js +0 -35
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariant.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantProps.js +0 -6
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantProps.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantRef.js +0 -6
- package/lib/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantRef.js.map +0 -1
- package/lib/commonjs/components/notification/_variants/callout-inline/index.js +0 -39
- package/lib/commonjs/components/notification/_variants/callout-inline/index.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/error/Error.js +0 -48
- package/lib/commonjs/components/notification/actionable-inline/error/Error.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/error/ErrorProps.js +0 -6
- package/lib/commonjs/components/notification/actionable-inline/error/ErrorProps.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/error/ErrorRef.js +0 -6
- package/lib/commonjs/components/notification/actionable-inline/error/ErrorRef.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/error/index.js +0 -39
- package/lib/commonjs/components/notification/actionable-inline/error/index.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/index.js +0 -50
- package/lib/commonjs/components/notification/actionable-inline/index.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/informational/Informational.js +0 -48
- package/lib/commonjs/components/notification/actionable-inline/informational/Informational.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/informational/InformationalProps.js +0 -6
- package/lib/commonjs/components/notification/actionable-inline/informational/InformationalProps.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/informational/InformationalRef.js +0 -6
- package/lib/commonjs/components/notification/actionable-inline/informational/InformationalRef.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/informational/index.js +0 -39
- package/lib/commonjs/components/notification/actionable-inline/informational/index.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/success/Success.js +0 -48
- package/lib/commonjs/components/notification/actionable-inline/success/Success.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/success/SuccessProps.js +0 -6
- package/lib/commonjs/components/notification/actionable-inline/success/SuccessProps.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/success/SuccessRef.js +0 -6
- package/lib/commonjs/components/notification/actionable-inline/success/SuccessRef.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/success/index.js +0 -39
- package/lib/commonjs/components/notification/actionable-inline/success/index.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/warning/Warning.js +0 -48
- package/lib/commonjs/components/notification/actionable-inline/warning/Warning.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/warning/WarningProps.js +0 -6
- package/lib/commonjs/components/notification/actionable-inline/warning/WarningProps.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/warning/WarningRef.js +0 -6
- package/lib/commonjs/components/notification/actionable-inline/warning/WarningRef.js.map +0 -1
- package/lib/commonjs/components/notification/actionable-inline/warning/index.js +0 -39
- package/lib/commonjs/components/notification/actionable-inline/warning/index.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/error/Error.js +0 -48
- package/lib/commonjs/components/notification/callout-inline/error/Error.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/error/ErrorProps.js +0 -6
- package/lib/commonjs/components/notification/callout-inline/error/ErrorProps.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/error/ErrorRef.js +0 -6
- package/lib/commonjs/components/notification/callout-inline/error/ErrorRef.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/error/index.js +0 -39
- package/lib/commonjs/components/notification/callout-inline/error/index.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/index.js +0 -50
- package/lib/commonjs/components/notification/callout-inline/index.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/informational/Informational.js +0 -48
- package/lib/commonjs/components/notification/callout-inline/informational/Informational.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/informational/InformationalProps.js +0 -6
- package/lib/commonjs/components/notification/callout-inline/informational/InformationalProps.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/informational/InformationalRef.js +0 -6
- package/lib/commonjs/components/notification/callout-inline/informational/InformationalRef.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/informational/index.js +0 -39
- package/lib/commonjs/components/notification/callout-inline/informational/index.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/success/Success.js +0 -48
- package/lib/commonjs/components/notification/callout-inline/success/Success.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/success/SuccessProps.js +0 -6
- package/lib/commonjs/components/notification/callout-inline/success/SuccessProps.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/success/SuccessRef.js +0 -6
- package/lib/commonjs/components/notification/callout-inline/success/SuccessRef.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/success/index.js +0 -39
- package/lib/commonjs/components/notification/callout-inline/success/index.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/warning/Warning.js +0 -48
- package/lib/commonjs/components/notification/callout-inline/warning/Warning.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/warning/WarningProps.js +0 -6
- package/lib/commonjs/components/notification/callout-inline/warning/WarningProps.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/warning/WarningRef.js +0 -6
- package/lib/commonjs/components/notification/callout-inline/warning/WarningRef.js.map +0 -1
- package/lib/commonjs/components/notification/callout-inline/warning/index.js +0 -39
- package/lib/commonjs/components/notification/callout-inline/warning/index.js.map +0 -1
- package/lib/module/_internal/style-sheets/common-style-sheet.js +0 -21
- package/lib/module/_internal/style-sheets/common-style-sheet.js.map +0 -1
- package/lib/module/_internal/style-sheets/flex-style-sheet.js +0 -84
- package/lib/module/_internal/style-sheets/flex-style-sheet.js.map +0 -1
- package/lib/module/_internal/style-sheets/index.js +0 -6
- package/lib/module/_internal/style-sheets/index.js.map +0 -1
- package/lib/module/_internal/style-sheets/text-style-sheet.js +0 -62
- package/lib/module/_internal/style-sheets/text-style-sheet.js.map +0 -1
- package/lib/module/components/checkbox-input/CheckboxInputValue.js +0 -2
- package/lib/module/components/checkbox-input/CheckboxInputValue.js.map +0 -1
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariant.js +0 -37
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariant.js.map +0 -1
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.js +0 -4
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.js.map +0 -1
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.js +0 -4
- package/lib/module/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.js.map +0 -1
- package/lib/module/components/notification/_variants/actionable-inline/index.js +0 -6
- package/lib/module/components/notification/_variants/actionable-inline/index.js.map +0 -1
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariant.js +0 -31
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariant.js.map +0 -1
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariantProps.js +0 -4
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariantProps.js.map +0 -1
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariantRef.js +0 -4
- package/lib/module/components/notification/_variants/callout-inline/CalloutInlineVariantRef.js.map +0 -1
- package/lib/module/components/notification/_variants/callout-inline/index.js +0 -6
- package/lib/module/components/notification/_variants/callout-inline/index.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/error/Error.js +0 -44
- package/lib/module/components/notification/actionable-inline/error/Error.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/error/ErrorProps.js +0 -4
- package/lib/module/components/notification/actionable-inline/error/ErrorProps.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/error/ErrorRef.js +0 -4
- package/lib/module/components/notification/actionable-inline/error/ErrorRef.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/error/index.js +0 -6
- package/lib/module/components/notification/actionable-inline/error/index.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/index.js +0 -7
- package/lib/module/components/notification/actionable-inline/index.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/informational/Informational.js +0 -44
- package/lib/module/components/notification/actionable-inline/informational/Informational.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/informational/InformationalProps.js +0 -4
- package/lib/module/components/notification/actionable-inline/informational/InformationalProps.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/informational/InformationalRef.js +0 -4
- package/lib/module/components/notification/actionable-inline/informational/InformationalRef.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/informational/index.js +0 -6
- package/lib/module/components/notification/actionable-inline/informational/index.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/success/Success.js +0 -44
- package/lib/module/components/notification/actionable-inline/success/Success.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/success/SuccessProps.js +0 -4
- package/lib/module/components/notification/actionable-inline/success/SuccessProps.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/success/SuccessRef.js +0 -4
- package/lib/module/components/notification/actionable-inline/success/SuccessRef.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/success/index.js +0 -6
- package/lib/module/components/notification/actionable-inline/success/index.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/warning/Warning.js +0 -44
- package/lib/module/components/notification/actionable-inline/warning/Warning.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/warning/WarningProps.js +0 -4
- package/lib/module/components/notification/actionable-inline/warning/WarningProps.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/warning/WarningRef.js +0 -4
- package/lib/module/components/notification/actionable-inline/warning/WarningRef.js.map +0 -1
- package/lib/module/components/notification/actionable-inline/warning/index.js +0 -6
- package/lib/module/components/notification/actionable-inline/warning/index.js.map +0 -1
- package/lib/module/components/notification/callout-inline/error/Error.js +0 -44
- package/lib/module/components/notification/callout-inline/error/Error.js.map +0 -1
- package/lib/module/components/notification/callout-inline/error/ErrorProps.js +0 -4
- package/lib/module/components/notification/callout-inline/error/ErrorProps.js.map +0 -1
- package/lib/module/components/notification/callout-inline/error/ErrorRef.js +0 -4
- package/lib/module/components/notification/callout-inline/error/ErrorRef.js.map +0 -1
- package/lib/module/components/notification/callout-inline/error/index.js +0 -6
- package/lib/module/components/notification/callout-inline/error/index.js.map +0 -1
- package/lib/module/components/notification/callout-inline/index.js +0 -7
- package/lib/module/components/notification/callout-inline/index.js.map +0 -1
- package/lib/module/components/notification/callout-inline/informational/Informational.js +0 -44
- package/lib/module/components/notification/callout-inline/informational/Informational.js.map +0 -1
- package/lib/module/components/notification/callout-inline/informational/InformationalProps.js +0 -4
- package/lib/module/components/notification/callout-inline/informational/InformationalProps.js.map +0 -1
- package/lib/module/components/notification/callout-inline/informational/InformationalRef.js +0 -4
- package/lib/module/components/notification/callout-inline/informational/InformationalRef.js.map +0 -1
- package/lib/module/components/notification/callout-inline/informational/index.js +0 -6
- package/lib/module/components/notification/callout-inline/informational/index.js.map +0 -1
- package/lib/module/components/notification/callout-inline/success/Success.js +0 -44
- package/lib/module/components/notification/callout-inline/success/Success.js.map +0 -1
- package/lib/module/components/notification/callout-inline/success/SuccessProps.js +0 -4
- package/lib/module/components/notification/callout-inline/success/SuccessProps.js.map +0 -1
- package/lib/module/components/notification/callout-inline/success/SuccessRef.js +0 -4
- package/lib/module/components/notification/callout-inline/success/SuccessRef.js.map +0 -1
- package/lib/module/components/notification/callout-inline/success/index.js +0 -6
- package/lib/module/components/notification/callout-inline/success/index.js.map +0 -1
- package/lib/module/components/notification/callout-inline/warning/Warning.js +0 -44
- package/lib/module/components/notification/callout-inline/warning/Warning.js.map +0 -1
- package/lib/module/components/notification/callout-inline/warning/WarningProps.js +0 -4
- package/lib/module/components/notification/callout-inline/warning/WarningProps.js.map +0 -1
- package/lib/module/components/notification/callout-inline/warning/WarningRef.js +0 -4
- package/lib/module/components/notification/callout-inline/warning/WarningRef.js.map +0 -1
- package/lib/module/components/notification/callout-inline/warning/index.js +0 -6
- package/lib/module/components/notification/callout-inline/warning/index.js.map +0 -1
- package/lib/typescript/commonjs/_internal/style-sheets/common-style-sheet.d.ts +0 -18
- package/lib/typescript/commonjs/_internal/style-sheets/common-style-sheet.d.ts.map +0 -1
- package/lib/typescript/commonjs/_internal/style-sheets/flex-style-sheet.d.ts +0 -81
- package/lib/typescript/commonjs/_internal/style-sheets/flex-style-sheet.d.ts.map +0 -1
- package/lib/typescript/commonjs/_internal/style-sheets/index.d.ts +0 -4
- package/lib/typescript/commonjs/_internal/style-sheets/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/_internal/style-sheets/text-style-sheet.d.ts +0 -59
- package/lib/typescript/commonjs/_internal/style-sheets/text-style-sheet.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputValue.d.ts +0 -5
- package/lib/typescript/commonjs/components/checkbox-input/CheckboxInputValue.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariant.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariant.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.d.ts +0 -27
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/_variants/actionable-inline/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariant.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariant.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantProps.d.ts +0 -10
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/CalloutInlineVariantRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/_variants/callout-inline/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/Error.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/Error.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/ErrorProps.d.ts +0 -6
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/ErrorProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/ErrorRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/ErrorRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/error/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/index.d.ts +0 -5
- package/lib/typescript/commonjs/components/notification/actionable-inline/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/Informational.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/Informational.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/InformationalProps.d.ts +0 -6
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/InformationalProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/InformationalRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/InformationalRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/informational/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/Success.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/Success.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/SuccessProps.d.ts +0 -6
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/SuccessProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/SuccessRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/SuccessRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/success/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/Warning.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/Warning.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/WarningProps.d.ts +0 -6
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/WarningProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/WarningRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/WarningRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/actionable-inline/warning/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/error/Error.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/error/Error.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/error/ErrorProps.d.ts +0 -6
- package/lib/typescript/commonjs/components/notification/callout-inline/error/ErrorProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/error/ErrorRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/error/ErrorRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/error/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/error/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/index.d.ts +0 -5
- package/lib/typescript/commonjs/components/notification/callout-inline/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/Informational.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/Informational.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/InformationalProps.d.ts +0 -6
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/InformationalProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/InformationalRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/InformationalRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/informational/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/success/Success.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/success/Success.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/success/SuccessProps.d.ts +0 -6
- package/lib/typescript/commonjs/components/notification/callout-inline/success/SuccessProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/success/SuccessRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/success/SuccessRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/success/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/success/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/Warning.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/Warning.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/WarningProps.d.ts +0 -6
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/WarningProps.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/WarningRef.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/WarningRef.d.ts.map +0 -1
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/index.d.ts +0 -4
- package/lib/typescript/commonjs/components/notification/callout-inline/warning/index.d.ts.map +0 -1
- package/lib/typescript/module/_internal/style-sheets/common-style-sheet.d.ts +0 -18
- package/lib/typescript/module/_internal/style-sheets/common-style-sheet.d.ts.map +0 -1
- package/lib/typescript/module/_internal/style-sheets/flex-style-sheet.d.ts +0 -81
- package/lib/typescript/module/_internal/style-sheets/flex-style-sheet.d.ts.map +0 -1
- package/lib/typescript/module/_internal/style-sheets/index.d.ts +0 -4
- package/lib/typescript/module/_internal/style-sheets/index.d.ts.map +0 -1
- package/lib/typescript/module/_internal/style-sheets/text-style-sheet.d.ts +0 -59
- package/lib/typescript/module/_internal/style-sheets/text-style-sheet.d.ts.map +0 -1
- package/lib/typescript/module/components/checkbox-input/CheckboxInputValue.d.ts +0 -5
- package/lib/typescript/module/components/checkbox-input/CheckboxInputValue.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariant.d.ts +0 -4
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariant.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.d.ts +0 -27
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariantProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/_variants/actionable-inline/ActionableInlineVariantRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/_variants/actionable-inline/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/_variants/actionable-inline/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariant.d.ts +0 -4
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariant.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariantProps.d.ts +0 -10
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariantProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariantRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/_variants/callout-inline/CalloutInlineVariantRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/_variants/callout-inline/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/_variants/callout-inline/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/error/Error.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/error/Error.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/error/ErrorProps.d.ts +0 -6
- package/lib/typescript/module/components/notification/actionable-inline/error/ErrorProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/error/ErrorRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/error/ErrorRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/error/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/error/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/index.d.ts +0 -5
- package/lib/typescript/module/components/notification/actionable-inline/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/informational/Informational.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/informational/Informational.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/informational/InformationalProps.d.ts +0 -6
- package/lib/typescript/module/components/notification/actionable-inline/informational/InformationalProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/informational/InformationalRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/informational/InformationalRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/informational/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/informational/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/success/Success.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/success/Success.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/success/SuccessProps.d.ts +0 -6
- package/lib/typescript/module/components/notification/actionable-inline/success/SuccessProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/success/SuccessRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/success/SuccessRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/success/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/success/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/warning/Warning.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/warning/Warning.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/warning/WarningProps.d.ts +0 -6
- package/lib/typescript/module/components/notification/actionable-inline/warning/WarningProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/warning/WarningRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/warning/WarningRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/actionable-inline/warning/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/actionable-inline/warning/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/error/Error.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/error/Error.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/error/ErrorProps.d.ts +0 -6
- package/lib/typescript/module/components/notification/callout-inline/error/ErrorProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/error/ErrorRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/error/ErrorRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/error/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/error/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/index.d.ts +0 -5
- package/lib/typescript/module/components/notification/callout-inline/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/informational/Informational.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/informational/Informational.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/informational/InformationalProps.d.ts +0 -6
- package/lib/typescript/module/components/notification/callout-inline/informational/InformationalProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/informational/InformationalRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/informational/InformationalRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/informational/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/informational/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/success/Success.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/success/Success.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/success/SuccessProps.d.ts +0 -6
- package/lib/typescript/module/components/notification/callout-inline/success/SuccessProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/success/SuccessRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/success/SuccessRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/success/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/success/index.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/warning/Warning.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/warning/Warning.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/warning/WarningProps.d.ts +0 -6
- package/lib/typescript/module/components/notification/callout-inline/warning/WarningProps.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/warning/WarningRef.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/warning/WarningRef.d.ts.map +0 -1
- package/lib/typescript/module/components/notification/callout-inline/warning/index.d.ts +0 -4
- package/lib/typescript/module/components/notification/callout-inline/warning/index.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","_checkmark","_interopRequireDefault","_index","_index2","_index3","_jsxRuntime","e","__esModule","default","Switch","exports","forwardRef","size","state","defaultValue","value","valueProp","trackColor","trackColorProp","thumbColor","thumbColorProp","motion","false","motionDefault","true","style","role","ariaChecked","onChange","onBlur","onFocus","onPress","props","forwardedRef","viewRef","useRef","ref","onChangeEffect","themeContext","useContext","ThemeContext","isFocused","setIsFocused","useState","valueSelf","setValueSelf","current","controlled","sharedValue","Animated","Value","useMemo","trackColor_","mapSwitchTrackColorToken","thumbColor_","mapSwitchThumbColorToken","colorScheme","blurHandler","useCallback","event","focusHandler","pressHandler","self","useEffect","timing","toValue","duration","easing","useNativeDriver","start","useImperativeHandle","Object","assign","setValue","valueParam","jsxs","PressableAnimated","FlexStyleSheet","justify_center","baseStyle","container","sizeStyle","backgroundColor","interpolate","inputRange","interpolationRange","outputRange","baseStyleCarbon","containerReadonly","children","jsx","View","items_center","thumb","thumbSizeStyle","transform","translateX","width","IconCheckmarkAnimated","fill","mapIconAnimatedFillColor","opacity","CommonStyleSheet","absolute","focusBoxSizeStyle","focusBox","focusBoxBorderColor","StyleSheet","create","borderRadius","borderWidth","CarbonStyleSheet","borderColor","color","border_subtle_00","focus","height","small","normal","gray_10","Color","Token","toggle_off","gray_100","support_success","disabled","button_disabled","read_only","focused","icon_on_color","icon_on_color_disabled","icon_primary","Motion","Duration","fast_01","Easing","bezier","exit","productive","x1","y1","x2","y2","createAnimatedComponent","Pressable","IconCheckmark"],"sourceRoot":"../../../../src","sources":["components/switch/Switch.tsx"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","_checkmark","_interopRequireDefault","_index","_index2","_index3","_index4","_jsxRuntime","e","__esModule","default","Switch","exports","forwardRef","size","state","defaultValue","value","valueProp","trackColor","trackColorProp","thumbColor","thumbColorProp","motion","false","motionDefault","true","style","role","ariaChecked","onChange","onBlur","onFocus","onPress","props","forwardedRef","viewRef","useRef","ref","onChangeEffect","globalConfigContext","useContext","GlobalConfigContext","themeContext","ThemeContext","isFocused","setIsFocused","useState","valueSelf","setValueSelf","current","controlled","sharedValue","Animated","Value","useMemo","trackColor_","mapSwitchTrackColorToken","thumbColor_","mapSwitchThumbColorToken","colorScheme","blurHandler","useCallback","event","focusHandler","pressHandler","self","transformInterpolationOutputRange","ltr","sizeStyle","width","thumbSizeStyle","rtl","reverse","useEffect","timing","toValue","duration","easing","useNativeDriver","start","useImperativeHandle","Object","assign","setValue","valueParam","jsxs","PressableAnimated","FlexStyleSheet","justify_center","baseStyle","container","backgroundColor","interpolate","inputRange","interpolationRange","outputRange","baseStyleCarbon","containerReadonly","children","jsx","View","items_center","thumb","transform","translateX","IconCheckmarkAnimated","fill","mapIconAnimatedFillColor","opacity","PositionStyleSheet","absolute","focusBoxSizeStyle","focusBox","focusBoxBorderColor","StyleSheet","create","borderRadius","borderWidth","CarbonStyleSheet","borderColor","color","border_subtle_00","focus","height","small","normal","gray_10","Color","Token","toggle_off","gray_100","support_success","disabled","button_disabled","read_only","focused","icon_on_color","icon_on_color_disabled","icon_primary","Motion","Duration","fast_01","Easing","bezier","exit","productive","x1","y1","x2","y2","createAnimatedComponent","Pressable","IconCheckmark"],"sourceRoot":"../../../../src","sources":["components/switch/Switch.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -6,64 +6,68 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.Text = void 0;
|
|
7
7
|
var _react = require("react");
|
|
8
8
|
var _reactNative = require("react-native");
|
|
9
|
-
var
|
|
10
|
-
var _index = require("../../_internal/style-sheets/index.js");
|
|
9
|
+
var _index = require("../../_internal/contexts/index.js");
|
|
11
10
|
var _index2 = require("../../carbon-style-sheet/index.js");
|
|
12
11
|
var _index3 = require("../../contexts/index.js");
|
|
12
|
+
var _index4 = require("../../style-sheets/index.js");
|
|
13
13
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
14
14
|
const Text = exports.Text = /*#__PURE__*/(0, _react.forwardRef)(function Text_({
|
|
15
|
-
type,
|
|
15
|
+
type = "body_compact_02",
|
|
16
16
|
italic = false,
|
|
17
|
+
weight,
|
|
17
18
|
style,
|
|
19
|
+
dir,
|
|
18
20
|
...props
|
|
19
21
|
}, ref) {
|
|
20
22
|
(0, _react.useContext)(_index3.ThemeContext);
|
|
23
|
+
const globalConfigContext = (0, _react.useContext)(_index.GlobalConfigContext);
|
|
21
24
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
22
25
|
...props,
|
|
23
|
-
|
|
26
|
+
dir: dir ?? globalConfigContext.rtl ? "rtl" : undefined,
|
|
27
|
+
style: [carbonStyle.text, getTextStyle(type, italic, weight), globalConfigContext.rtl ? _index4.DirectionStyleSheet.rtl : undefined, style],
|
|
24
28
|
ref: ref
|
|
25
29
|
});
|
|
26
30
|
});
|
|
27
31
|
const mapFamilyStyle = {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
'500_italic': _index.TextStyleSheet.medium_italic,
|
|
38
|
-
'600': _index.TextStyleSheet.semibold,
|
|
39
|
-
'600_italic': _index.TextStyleSheet.semibold_italic,
|
|
40
|
-
'700': _index.TextStyleSheet.bold,
|
|
41
|
-
'700_italic': _index.TextStyleSheet.bold_italic
|
|
32
|
+
100: _index4.FontStyleSheet.thin,
|
|
33
|
+
200: _index4.FontStyleSheet.extralight,
|
|
34
|
+
300: _index4.FontStyleSheet.light,
|
|
35
|
+
400: _index4.FontStyleSheet.normal,
|
|
36
|
+
500: _index4.FontStyleSheet.medium,
|
|
37
|
+
600: _index4.FontStyleSheet.semibold,
|
|
38
|
+
700: _index4.FontStyleSheet.bold,
|
|
39
|
+
800: _index4.FontStyleSheet.bold,
|
|
40
|
+
900: _index4.FontStyleSheet.bold
|
|
42
41
|
},
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
42
|
+
mapFamilyItalicStyle = {
|
|
43
|
+
100: _index4.FontStyleSheet.thin_italic,
|
|
44
|
+
200: _index4.FontStyleSheet.extralight_italic,
|
|
45
|
+
300: _index4.FontStyleSheet.light_italic,
|
|
46
|
+
400: _index4.FontStyleSheet.normal_italic,
|
|
47
|
+
500: _index4.FontStyleSheet.medium_italic,
|
|
48
|
+
600: _index4.FontStyleSheet.semibold_italic,
|
|
49
|
+
700: _index4.FontStyleSheet.bold_italic,
|
|
50
|
+
800: _index4.FontStyleSheet.bold_italic,
|
|
51
|
+
900: _index4.FontStyleSheet.bold_italic
|
|
52
52
|
},
|
|
53
53
|
carbonStyle = _index2.CarbonStyleSheet.create({
|
|
54
54
|
text: {
|
|
55
55
|
color: _index2.CarbonStyleSheet.color.text_primary
|
|
56
56
|
}
|
|
57
|
-
})
|
|
58
|
-
|
|
59
|
-
typeSetsItalicStyle = createTypeSets(true);
|
|
60
|
-
function getTypeSets(type, italic) {
|
|
57
|
+
});
|
|
58
|
+
function getTextStyle(type, italic, overrideWeight) {
|
|
61
59
|
if (!type) {
|
|
62
60
|
return null;
|
|
63
61
|
}
|
|
62
|
+
if (italic && overrideWeight) {
|
|
63
|
+
return [_index4.TypographyStyleSheet[type], mapFamilyItalicStyle[overrideWeight]];
|
|
64
|
+
}
|
|
64
65
|
if (italic) {
|
|
65
|
-
return
|
|
66
|
+
return [_index4.TypographyStyleSheet[type], mapFamilyItalicStyle[_index4.StyleSheetObj.Typography[type].fontWeight]];
|
|
67
|
+
}
|
|
68
|
+
if (overrideWeight) {
|
|
69
|
+
return [_index4.TypographyStyleSheet[type], mapFamilyStyle[overrideWeight]];
|
|
66
70
|
}
|
|
67
|
-
return
|
|
71
|
+
return _index4.TypographyStyleSheet[type];
|
|
68
72
|
}
|
|
69
73
|
//# sourceMappingURL=Text.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","
|
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_index","_index2","_index3","_index4","_jsxRuntime","Text","exports","forwardRef","Text_","type","italic","weight","style","dir","props","ref","useContext","ThemeContext","globalConfigContext","GlobalConfigContext","jsx","rtl","undefined","carbonStyle","text","getTextStyle","DirectionStyleSheet","mapFamilyStyle","FontStyleSheet","thin","extralight","light","normal","medium","semibold","bold","mapFamilyItalicStyle","thin_italic","extralight_italic","light_italic","normal_italic","medium_italic","semibold_italic","bold_italic","CarbonStyleSheet","create","color","text_primary","overrideWeight","TypographyStyleSheet","StyleSheetObj","Typography","fontWeight"],"sourceRoot":"../../../../src","sources":["components/text/Text.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_Text","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get","_TextProps","_TextRef"],"sourceRoot":"../../../../src","sources":["components/text/index.
|
|
1
|
+
{"version":3,"names":["_Text","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get","_TextProps","_TextRef"],"sourceRoot":"../../../../src","sources":["components/text/index.ts"],"mappings":";;;;;AAAA,IAAAA,KAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,KAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,KAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,KAAA,CAAAK,GAAA;IAAA;EAAA;AAAA;AACA,IAAAK,UAAA,GAAAT,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAO,UAAA,EAAAN,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAK,UAAA,CAAAL,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAC,UAAA,CAAAL,GAAA;IAAA;EAAA;AAAA;AACA,IAAAM,QAAA,GAAAV,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAQ,QAAA,EAAAP,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAM,QAAA,CAAAN,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAE,QAAA,CAAAN,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -15,7 +15,7 @@ const TextArea = exports.TextArea = /*#__PURE__*/(0, _react.forwardRef)(function
|
|
|
15
15
|
label,
|
|
16
16
|
helperText,
|
|
17
17
|
// hoist the `TextAreaFieldProps`
|
|
18
|
-
interactiveState =
|
|
18
|
+
interactiveState = "normal",
|
|
19
19
|
textInputStyle,
|
|
20
20
|
// -----
|
|
21
21
|
|
|
@@ -53,7 +53,6 @@ const TextArea = exports.TextArea = /*#__PURE__*/(0, _react.forwardRef)(function
|
|
|
53
53
|
readOnly,
|
|
54
54
|
returnKeyType,
|
|
55
55
|
enterKeyHint,
|
|
56
|
-
secureTextEntry,
|
|
57
56
|
selectTextOnFocus,
|
|
58
57
|
selection,
|
|
59
58
|
selectionColor,
|
|
@@ -119,7 +118,7 @@ const TextArea = exports.TextArea = /*#__PURE__*/(0, _react.forwardRef)(function
|
|
|
119
118
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index3.TextAreaField, {
|
|
120
119
|
ref: textInputFieldRef,
|
|
121
120
|
interactiveState: interactiveState,
|
|
122
|
-
|
|
121
|
+
textInputStyle: textInputStyle,
|
|
123
122
|
allowFontScaling: allowFontScaling,
|
|
124
123
|
autoCapitalize: autoCapitalize,
|
|
125
124
|
autoComplete: autoComplete,
|
|
@@ -153,7 +152,6 @@ const TextArea = exports.TextArea = /*#__PURE__*/(0, _react.forwardRef)(function
|
|
|
153
152
|
readOnly: readOnly,
|
|
154
153
|
returnKeyType: returnKeyType,
|
|
155
154
|
enterKeyHint: enterKeyHint,
|
|
156
|
-
secureTextEntry: secureTextEntry,
|
|
157
155
|
selectTextOnFocus: selectTextOnFocus,
|
|
158
156
|
selection: selection,
|
|
159
157
|
selectionColor: selectionColor,
|
|
@@ -191,7 +189,7 @@ const TextArea = exports.TextArea = /*#__PURE__*/(0, _react.forwardRef)(function
|
|
|
191
189
|
smartInsertDelete: smartInsertDelete
|
|
192
190
|
}), !!helperText?.length && /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.FormHelperText, {
|
|
193
191
|
text: helperText,
|
|
194
|
-
error: interactiveState ===
|
|
192
|
+
error: interactiveState === "invalid",
|
|
195
193
|
style: styleSheet.helperText
|
|
196
194
|
})]
|
|
197
195
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","_index","_index2","_index3","_jsxRuntime","TextArea","exports","forwardRef","label","helperText","interactiveState","textInputStyle","allowFontScaling","autoCapitalize","autoComplete","autoCorrect","autoFocus","blurOnSubmit","submitBehavior","caretHidden","contextMenuHidden","defaultValue","value","editable","keyboardType","inputMode","maxLength","onBlur","onChange","onChangeText","onContentSizeChange","onEndEditing","onPress","onPressIn","onPressOut","onFocus","onSelectionChange","onSubmitEditing","onScroll","onKeyPress","placeholder","placeholderTextColor","readOnly","returnKeyType","enterKeyHint","
|
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","_index","_index2","_index3","_jsxRuntime","TextArea","exports","forwardRef","label","helperText","interactiveState","textInputStyle","allowFontScaling","autoCapitalize","autoComplete","autoCorrect","autoFocus","blurOnSubmit","submitBehavior","caretHidden","contextMenuHidden","defaultValue","value","editable","keyboardType","inputMode","maxLength","onBlur","onChange","onChangeText","onContentSizeChange","onEndEditing","onPress","onPressIn","onPressOut","onFocus","onSelectionChange","onSubmitEditing","onScroll","onKeyPress","placeholder","placeholderTextColor","readOnly","returnKeyType","enterKeyHint","selectTextOnFocus","selection","selectionColor","textAlign","inputAccessoryViewID","inputAccessoryViewButtonLabel","maxFontSizeMultiplier","cursorColor","selectionHandleColor","importantForAutofill","disableFullscreenUI","inlineImageLeft","inlineImagePadding","numberOfLines","returnKeyLabel","textBreakStrategy","underlineColorAndroid","textAlignVertical","showSoftInputOnFocus","verticalAlign","disableKeyboardShortcuts","clearButtonMode","clearTextOnFocus","dataDetectorTypes","enablesReturnKeyAutomatically","keyboardAppearance","passwordRules","rejectResponderTermination","selectionState","spellCheck","textContentType","scrollEnabled","lineBreakStrategyIOS","lineBreakModeIOS","smartInsertDelete","style","viewStyleProp","viewProps","ref","viewRef","useRef","textInputFieldRef","useImperativeHandle","Object","assign","current","textAreaField","undefined","jsxs","View","children","jsx","FormLabel","styleSheet","TextAreaField","length","FormHelperText","text","error","StyleSheet","create","marginBottom","Spacing","spacing_03","marginTop","spacing_02"],"sourceRoot":"../../../../src","sources":["components/text-area/TextArea.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_TextArea","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../src","sources":["components/text-area/index.
|
|
1
|
+
{"version":3,"names":["_TextArea","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../src","sources":["components/text-area/index.ts"],"mappings":";;;;;AAAA,IAAAA,SAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,SAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,SAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,SAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -11,7 +11,7 @@ var _index = require("../text-input-field/index.js");
|
|
|
11
11
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
12
12
|
const TextAreaField = exports.TextAreaField = /*#__PURE__*/(0, _react.forwardRef)(function ({
|
|
13
13
|
style,
|
|
14
|
-
textAlignVertical =
|
|
14
|
+
textAlignVertical = "top",
|
|
15
15
|
textInputStyle,
|
|
16
16
|
...props
|
|
17
17
|
}, ref) {
|
|
@@ -26,7 +26,7 @@ const TextAreaField = exports.TextAreaField = /*#__PURE__*/(0, _react.forwardRef
|
|
|
26
26
|
});
|
|
27
27
|
const styleSheet = _reactNative.StyleSheet.create({
|
|
28
28
|
textAreaField: {
|
|
29
|
-
height:
|
|
29
|
+
height: "auto",
|
|
30
30
|
minHeight: _carbonReactNativeElements.Spacing.spacing_08
|
|
31
31
|
},
|
|
32
32
|
rnTextInput: {
|
|
@@ -35,7 +35,7 @@ const styleSheet = _reactNative.StyleSheet.create({
|
|
|
35
35
|
height: _carbonReactNativeElements.Typography.TypeSets.body_compact_01.lineHeight * 4 + 22,
|
|
36
36
|
..._reactNative.Platform.select({
|
|
37
37
|
web: {
|
|
38
|
-
resize:
|
|
38
|
+
resize: "vertical"
|
|
39
39
|
}
|
|
40
40
|
})
|
|
41
41
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_TextAreaField","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../src","sources":["components/text-area-field/index.
|
|
1
|
+
{"version":3,"names":["_TextAreaField","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../src","sources":["components/text-area-field/index.ts"],"mappings":";;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,cAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,cAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,cAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -9,8 +9,8 @@ var _reactNative = require("react-native");
|
|
|
9
9
|
var _carbonReactNativeElements = require("@audira/carbon-react-native-elements");
|
|
10
10
|
var _warningAltFilled = _interopRequireDefault(require("@carbon/icons/svg/32/warning--alt--filled.svg"));
|
|
11
11
|
var _warningFilled = _interopRequireDefault(require("@carbon/icons/svg/32/warning--filled.svg"));
|
|
12
|
-
var _index = require("../../
|
|
13
|
-
var _index2 = require("../../
|
|
12
|
+
var _index = require("../../contexts/index.js");
|
|
13
|
+
var _index2 = require("../../style-sheets/index.js");
|
|
14
14
|
var _index3 = require("../form-helper-text/index.js");
|
|
15
15
|
var _index4 = require("../form-label/index.js");
|
|
16
16
|
var _index5 = require("../text-area-field/index.js");
|
|
@@ -24,7 +24,7 @@ const TextAreaFluid = exports.TextAreaFluid = /*#__PURE__*/(0, _react.forwardRef
|
|
|
24
24
|
textInputStyle,
|
|
25
25
|
...textInputFieldProps
|
|
26
26
|
}, ref) {
|
|
27
|
-
const themeContext = (0, _react.useContext)(
|
|
27
|
+
const themeContext = (0, _react.useContext)(_index.ThemeContext);
|
|
28
28
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_index5.TextAreaField, {
|
|
29
29
|
ref: ref,
|
|
30
30
|
...textInputFieldProps,
|
|
@@ -36,12 +36,12 @@ const TextAreaFluid = exports.TextAreaFluid = /*#__PURE__*/(0, _react.forwardRef
|
|
|
36
36
|
}),
|
|
37
37
|
blockEndNode: !!helperText?.length && /*#__PURE__*/(0, _jsxRuntime.jsx)(_index3.FormHelperText, {
|
|
38
38
|
text: helperText,
|
|
39
|
-
style: [
|
|
40
|
-
textTrailing: interactiveState ===
|
|
39
|
+
style: [_index2.FlexStyleSheet.flex_initial, styleSheet.helperText],
|
|
40
|
+
textTrailing: interactiveState === "invalid" ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_warningFilled.default, {
|
|
41
41
|
width: 16,
|
|
42
42
|
height: 16,
|
|
43
43
|
fill: mapIconInvalidColor[themeContext.colorScheme]
|
|
44
|
-
}) : interactiveState ===
|
|
44
|
+
}) : interactiveState === "warning" ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_warningAltFilled.default, {
|
|
45
45
|
width: 16,
|
|
46
46
|
height: 16,
|
|
47
47
|
fill: mapIconWarningColor[themeContext.colorScheme]
|
|
@@ -67,7 +67,7 @@ const styleSheet = _reactNative.StyleSheet.create({
|
|
|
67
67
|
paddingRight: 0
|
|
68
68
|
},
|
|
69
69
|
helperText: {
|
|
70
|
-
justifyContent:
|
|
70
|
+
justifyContent: "space-between",
|
|
71
71
|
paddingTop: _carbonReactNativeElements.Spacing.spacing_03,
|
|
72
72
|
paddingBottom: _carbonReactNativeElements.Spacing.spacing_03,
|
|
73
73
|
paddingLeft: _carbonReactNativeElements.Spacing.spacing_05,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","_warningAltFilled","_interopRequireDefault","_warningFilled","_index","_index2","_index3","_index4","_index5","_jsxRuntime","e","__esModule","default","TextAreaFluid","exports","forwardRef","label","helperText","interactiveState","style","textInputStyle","textInputFieldProps","ref","themeContext","useContext","ThemeContext","jsx","TextAreaField","hideInteractiveStateIcon","blockStartNode","FormLabel","styleSheet","blockEndNode","length","FormHelperText","text","FlexStyleSheet","flex_initial","textTrailing","width","height","fill","mapIconInvalidColor","colorScheme","mapIconWarningColor","undefined","textAreaFluid","rnTextInputNoBorderBottom","StyleSheet","create","paddingTop","minHeight","paddingLeft","Spacing","spacing_05","paddingRight","marginLeft","marginRight","justifyContent","spacing_03","paddingBottom","gray_10","Color","Token","support_error","gray_100","support_warning"],"sourceRoot":"../../../../src","sources":["components/text-area-fluid/TextAreaFluid.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAKA,IAAAC,YAAA,GAAAD,OAAA;AAIA,IAAAE,0BAAA,GAAAF,OAAA;AAKA,IAAAG,iBAAA,GAAAC,sBAAA,CAAAJ,OAAA;AACA,IAAAK,cAAA,GAAAD,sBAAA,CAAAJ,OAAA;AAEA,IAAAM,MAAA,GAAAN,OAAA;AAIA,IAAAO,OAAA,GAAAP,OAAA;AAQA,IAAAQ,OAAA,GAAAR,OAAA;AAIA,IAAAS,OAAA,GAAAT,OAAA;AAIA,IAAAU,OAAA,GAAAV,OAAA;AAE2B,IAAAW,WAAA,GAAAX,OAAA;AAAA,SAAAI,uBAAAQ,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAUpB,MAAMG,aAAa,GAAAC,OAAA,CAAAD,aAAA,gBAAG,IAAAE,iBAAU,EACtC,SAASF,aAAaA,CACrB;EACCG,KAAK;EACLC,UAAU;EACVC,gBAAgB;EAChBC,KAAK;EACLC,cAAc;EACd,GAAGC;AACJ,CAAC,EACDC,GAAG,EACF;EAED,MACCC,YAAY,GACX,IAAAC,iBAAU,EAACC,
|
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","_warningAltFilled","_interopRequireDefault","_warningFilled","_index","_index2","_index3","_index4","_index5","_jsxRuntime","e","__esModule","default","TextAreaFluid","exports","forwardRef","label","helperText","interactiveState","style","textInputStyle","textInputFieldProps","ref","themeContext","useContext","ThemeContext","jsx","TextAreaField","hideInteractiveStateIcon","blockStartNode","FormLabel","styleSheet","blockEndNode","length","FormHelperText","text","FlexStyleSheet","flex_initial","textTrailing","width","height","fill","mapIconInvalidColor","colorScheme","mapIconWarningColor","undefined","textAreaFluid","rnTextInputNoBorderBottom","StyleSheet","create","paddingTop","minHeight","paddingLeft","Spacing","spacing_05","paddingRight","marginLeft","marginRight","justifyContent","spacing_03","paddingBottom","gray_10","Color","Token","support_error","gray_100","support_warning"],"sourceRoot":"../../../../src","sources":["components/text-area-fluid/TextAreaFluid.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_TextAreaFluid","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../src","sources":["components/text-area-fluid/index.
|
|
1
|
+
{"version":3,"names":["_TextAreaFluid","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../src","sources":["components/text-area-fluid/index.ts"],"mappings":";;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,cAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,cAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,cAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -15,8 +15,10 @@ const TextInput = exports.TextInput = /*#__PURE__*/(0, _react.forwardRef)(functi
|
|
|
15
15
|
label,
|
|
16
16
|
helperText,
|
|
17
17
|
// hoist the `TextInputFieldProps`
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
blockStartNode,
|
|
19
|
+
blockEndNode,
|
|
20
|
+
size = "medium",
|
|
21
|
+
interactiveState = "normal",
|
|
20
22
|
textInputStyle,
|
|
21
23
|
// -----
|
|
22
24
|
|
|
@@ -120,9 +122,11 @@ const TextInput = exports.TextInput = /*#__PURE__*/(0, _react.forwardRef)(functi
|
|
|
120
122
|
style: styleSheet.label
|
|
121
123
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index3.TextInputField, {
|
|
122
124
|
ref: textInputFieldRef,
|
|
125
|
+
blockStartNode: blockStartNode,
|
|
126
|
+
blockEndNode: blockEndNode,
|
|
123
127
|
size: size,
|
|
124
128
|
interactiveState: interactiveState,
|
|
125
|
-
|
|
129
|
+
textInputStyle: textInputStyle,
|
|
126
130
|
allowFontScaling: allowFontScaling,
|
|
127
131
|
autoCapitalize: autoCapitalize,
|
|
128
132
|
autoComplete: autoComplete,
|
|
@@ -195,7 +199,7 @@ const TextInput = exports.TextInput = /*#__PURE__*/(0, _react.forwardRef)(functi
|
|
|
195
199
|
smartInsertDelete: smartInsertDelete
|
|
196
200
|
}), !!helperText?.length && /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.FormHelperText, {
|
|
197
201
|
text: helperText,
|
|
198
|
-
error: interactiveState ===
|
|
202
|
+
error: interactiveState === "invalid",
|
|
199
203
|
style: styleSheet.helperText
|
|
200
204
|
})]
|
|
201
205
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","_index","_index2","_index3","_jsxRuntime","TextInput","exports","forwardRef","label","helperText","size","interactiveState","textInputStyle","allowFontScaling","autoCapitalize","autoComplete","autoCorrect","autoFocus","blurOnSubmit","submitBehavior","caretHidden","contextMenuHidden","defaultValue","value","editable","keyboardType","inputMode","maxLength","multiline","onBlur","onChange","onChangeText","onContentSizeChange","onEndEditing","onPress","onPressIn","onPressOut","onFocus","onSelectionChange","onSubmitEditing","onScroll","onKeyPress","placeholder","placeholderTextColor","readOnly","returnKeyType","enterKeyHint","secureTextEntry","selectTextOnFocus","selection","selectionColor","textAlign","inputAccessoryViewID","inputAccessoryViewButtonLabel","maxFontSizeMultiplier","cursorColor","selectionHandleColor","importantForAutofill","disableFullscreenUI","inlineImageLeft","inlineImagePadding","numberOfLines","returnKeyLabel","textBreakStrategy","underlineColorAndroid","textAlignVertical","showSoftInputOnFocus","verticalAlign","disableKeyboardShortcuts","clearButtonMode","clearTextOnFocus","dataDetectorTypes","enablesReturnKeyAutomatically","keyboardAppearance","passwordRules","rejectResponderTermination","selectionState","spellCheck","textContentType","scrollEnabled","lineBreakStrategyIOS","lineBreakModeIOS","smartInsertDelete","style","viewStyleProp","viewProps","ref","viewRef","useRef","textInputFieldRef","useImperativeHandle","Object","assign","current","textInputField","undefined","jsxs","View","children","jsx","FormLabel","styleSheet","TextInputField","length","FormHelperText","text","error","StyleSheet","create","marginBottom","Spacing","spacing_03","marginTop","spacing_02"],"sourceRoot":"../../../../src","sources":["components/text-input/TextInput.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAMA,IAAAC,YAAA,GAAAD,OAAA;AAKA,IAAAE,0BAAA,GAAAF,OAAA;AAIA,IAAAG,MAAA,GAAAH,OAAA;AAIA,IAAAI,OAAA,GAAAJ,OAAA;AAIA,IAAAK,OAAA,GAAAL,OAAA;AAG4B,IAAAM,WAAA,GAAAN,OAAA;AAcrB,MAAMO,SAAS,GAAAC,OAAA,CAAAD,SAAA,gBAAG,IAAAE,iBAAU,EAClC,SAASF,SAASA,CACjB;EACCG,KAAK;EACLC,UAAU;EAEV;EACAC,IAAI,GAAG,QAAQ;EACfC,gBAAgB,GAAG,QAAQ;EAC3BC,cAAc;EACd;;EAEA;EACAC,gBAAgB;EAChBC,cAAc;EACdC,YAAY;EACZC,WAAW;EACXC,SAAS;EACTC,YAAY;EACZC,cAAc;EACdC,WAAW;EACXC,iBAAiB;EACjBC,YAAY;EACZC,KAAK;EACLC,QAAQ;EACRC,YAAY;EACZC,SAAS;EACTC,SAAS;EACTC,SAAS;EACTC,MAAM;EACNC,QAAQ;EACRC,YAAY;EACZC,mBAAmB;EACnBC,YAAY;EACZC,OAAO;EACPC,SAAS;EACTC,UAAU;EACVC,OAAO;EACPC,iBAAiB;EACjBC,eAAe;EACfC,QAAQ;EACRC,UAAU;EACVC,WAAW;EACXC,oBAAoB;EACpBC,QAAQ;EACRC,aAAa;EACbC,YAAY;EACZC,eAAe;EACfC,iBAAiB;EACjBC,SAAS;EACTC,cAAc;EACdC,SAAS;EACTC,oBAAoB;EACpBC,6BAA6B;EAC7BC,qBAAqB;EACrB;;EAEA;EACAC,WAAW;EACXC,oBAAoB;EACpBC,oBAAoB;EACpBC,mBAAmB;EACnBC,eAAe;EACfC,kBAAkB;EAClBC,aAAa;EACbC,cAAc;EACdC,iBAAiB;EACjBC,qBAAqB;EACrBC,iBAAiB;EACjBC,oBAAoB;EACpBC,aAAa;EACb;;EAEA;EACAC,wBAAwB;EACxBC,eAAe;EACfC,gBAAgB;EAChBC,iBAAiB;EACjBC,6BAA6B;EAC7BC,kBAAkB;EAClBC,aAAa;EACbC,0BAA0B;EAC1BC,cAAc;EACdC,UAAU;EACVC,eAAe;EACfC,aAAa;EACbC,oBAAoB;EACpBC,gBAAgB;EAChBC,iBAAiB;EACjB;;EAEAC,KAAK,EAAEC,aAAa;EACpB,GAAGC;AACJ,CAAC,EACDC,GAAG,EACF;EAED,MACCC,OAAO,GACN,IAAAC,aAAM,EAAO,IAAI,CAAC;IAEnBC,iBAAiB,GAChB,IAAAD,aAAM,EAAoB,IAAI,CAAC;EAEjC,IAAAE,0BAAmB,EAACJ,GAAG,EAAE,MAAM;IAC9B,OAAOK,MAAM,CAACC,MAAM,CACnBL,OAAO,CAACM,OAAO,IAAI,CACnB,CAAS,EACT;MACC,IAAIC,cAAcA,CAAA,EAAG;QACpB,OAAOL,iBAAiB,CAACI,OAAO,IAAIE,SAAS;MAC9C;IACD,CACD,CAAC;EACF,CAAC,EAAE,EAAE,CAAC;EAEN,oBACC,
|
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","_index","_index2","_index3","_jsxRuntime","TextInput","exports","forwardRef","label","helperText","blockStartNode","blockEndNode","size","interactiveState","textInputStyle","allowFontScaling","autoCapitalize","autoComplete","autoCorrect","autoFocus","blurOnSubmit","submitBehavior","caretHidden","contextMenuHidden","defaultValue","value","editable","keyboardType","inputMode","maxLength","multiline","onBlur","onChange","onChangeText","onContentSizeChange","onEndEditing","onPress","onPressIn","onPressOut","onFocus","onSelectionChange","onSubmitEditing","onScroll","onKeyPress","placeholder","placeholderTextColor","readOnly","returnKeyType","enterKeyHint","secureTextEntry","selectTextOnFocus","selection","selectionColor","textAlign","inputAccessoryViewID","inputAccessoryViewButtonLabel","maxFontSizeMultiplier","cursorColor","selectionHandleColor","importantForAutofill","disableFullscreenUI","inlineImageLeft","inlineImagePadding","numberOfLines","returnKeyLabel","textBreakStrategy","underlineColorAndroid","textAlignVertical","showSoftInputOnFocus","verticalAlign","disableKeyboardShortcuts","clearButtonMode","clearTextOnFocus","dataDetectorTypes","enablesReturnKeyAutomatically","keyboardAppearance","passwordRules","rejectResponderTermination","selectionState","spellCheck","textContentType","scrollEnabled","lineBreakStrategyIOS","lineBreakModeIOS","smartInsertDelete","style","viewStyleProp","viewProps","ref","viewRef","useRef","textInputFieldRef","useImperativeHandle","Object","assign","current","textInputField","undefined","jsxs","View","children","jsx","FormLabel","styleSheet","TextInputField","length","FormHelperText","text","error","StyleSheet","create","marginBottom","Spacing","spacing_03","marginTop","spacing_02"],"sourceRoot":"../../../../src","sources":["components/text-input/TextInput.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -9,15 +9,18 @@ var _reactNative = require("react-native");
|
|
|
9
9
|
var _carbonReactNativeElements = require("@audira/carbon-react-native-elements");
|
|
10
10
|
var _warningAltFilled = _interopRequireDefault(require("@carbon/icons/svg/32/warning--alt--filled.svg"));
|
|
11
11
|
var _warningFilled = _interopRequireDefault(require("@carbon/icons/svg/32/warning--filled.svg"));
|
|
12
|
-
var _index = require("../../
|
|
13
|
-
var _index2 = require("../../
|
|
14
|
-
var _index3 = require("
|
|
15
|
-
var _index4 = require("
|
|
12
|
+
var _index = require("../../_internal/contexts/index.js");
|
|
13
|
+
var _index2 = require("../../carbon-style-sheet/index.js");
|
|
14
|
+
var _index3 = require("../../contexts/index.js");
|
|
15
|
+
var _index4 = require("../../style-sheets/index.js");
|
|
16
|
+
var _index5 = require("../box/index.js");
|
|
17
|
+
var _index6 = require("../layer/index.js");
|
|
18
|
+
var _index7 = require("./_rn-text-input/index.js");
|
|
16
19
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
20
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
18
21
|
const TextInputField = exports.TextInputField = /*#__PURE__*/(0, _react.forwardRef)(function TextInputField({
|
|
19
|
-
size =
|
|
20
|
-
interactiveState =
|
|
22
|
+
size = "medium",
|
|
23
|
+
interactiveState = "normal",
|
|
21
24
|
hideInteractiveStateIcon,
|
|
22
25
|
blockStartNode,
|
|
23
26
|
blockEndNode,
|
|
@@ -104,8 +107,9 @@ const TextInputField = exports.TextInputField = /*#__PURE__*/(0, _react.forwardR
|
|
|
104
107
|
|
|
105
108
|
...viewProps
|
|
106
109
|
}, ref) {
|
|
107
|
-
const
|
|
108
|
-
|
|
110
|
+
const globalConfigContext = (0, _react.useContext)(_index.GlobalConfigContext),
|
|
111
|
+
themeContext = (0, _react.useContext)(_index3.ThemeContext),
|
|
112
|
+
layerContextLevel = (0, _react.useContext)(_index6.LayerContext),
|
|
109
113
|
viewRef = (0, _react.useRef)(null),
|
|
110
114
|
textInputRef = (0, _react.useRef)(null),
|
|
111
115
|
/**
|
|
@@ -134,16 +138,16 @@ const TextInputField = exports.TextInputField = /*#__PURE__*/(0, _react.forwardR
|
|
|
134
138
|
}
|
|
135
139
|
});
|
|
136
140
|
}, []);
|
|
137
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(
|
|
141
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(AnimatedBox, {
|
|
138
142
|
ref: ref,
|
|
139
143
|
...viewProps,
|
|
140
|
-
style: [styleSheet.textInputField, carbonStyleSheet.textInputField, textInputFieldSizeStyleSheet[size], textInputFieldByLayerStyleSheet[layerContextLevel], interactiveState ===
|
|
144
|
+
style: [styleSheet.textInputField, carbonStyleSheet.textInputField, textInputFieldSizeStyleSheet[size], textInputFieldByLayerStyleSheet[layerContextLevel], interactiveState === "invalid" ? carbonStyleSheet.invalidOutlineColor : {
|
|
141
145
|
outlineColor: focusAnimatedValue.current.interpolate({
|
|
142
146
|
inputRange: [0, 1],
|
|
143
|
-
outputRange: [
|
|
147
|
+
outputRange: ["transparent", mapOutlineColorFocus[themeContext.colorScheme]]
|
|
144
148
|
})
|
|
145
149
|
}, style],
|
|
146
|
-
children: [blockStartNode, /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
150
|
+
children: [blockStartNode, /*#__PURE__*/(0, _jsxRuntime.jsx)(_index7.RNTextInput, {
|
|
147
151
|
ref: textInputRef,
|
|
148
152
|
interactiveState: interactiveState,
|
|
149
153
|
style: textInputStyle,
|
|
@@ -158,7 +162,7 @@ const TextInputField = exports.TextInputField = /*#__PURE__*/(0, _react.forwardR
|
|
|
158
162
|
contextMenuHidden: contextMenuHidden,
|
|
159
163
|
defaultValue: defaultValue,
|
|
160
164
|
value: value,
|
|
161
|
-
editable: interactiveState ===
|
|
165
|
+
editable: interactiveState === "disabled" || interactiveState === "read_only" ? false : editable,
|
|
162
166
|
keyboardType: keyboardType,
|
|
163
167
|
inputMode: inputMode,
|
|
164
168
|
maxLength: maxLength,
|
|
@@ -217,31 +221,40 @@ const TextInputField = exports.TextInputField = /*#__PURE__*/(0, _react.forwardR
|
|
|
217
221
|
lineBreakStrategyIOS: lineBreakStrategyIOS,
|
|
218
222
|
lineBreakModeIOS: lineBreakModeIOS,
|
|
219
223
|
smartInsertDelete: smartInsertDelete
|
|
220
|
-
}), !hideInteractiveStateIcon && interactiveState ===
|
|
224
|
+
}), !hideInteractiveStateIcon && interactiveState === "invalid" ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_warningFilled.default, {
|
|
221
225
|
width: 16,
|
|
222
226
|
height: 16,
|
|
223
227
|
fill: mapIconInvalidColor[themeContext.colorScheme],
|
|
224
|
-
style: [styleSheet.icon, iconBySizeStyleSheet[size]]
|
|
225
|
-
}) : !hideInteractiveStateIcon && interactiveState ===
|
|
228
|
+
style: [_index4.PositionStyleSheet.absolute, styleSheet.icon, mapStyleSheetIconInteractiveStatePosition[`${globalConfigContext.rtl}`], iconBySizeStyleSheet[size]]
|
|
229
|
+
}) : !hideInteractiveStateIcon && interactiveState === "warning" ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_warningAltFilled.default, {
|
|
226
230
|
width: 16,
|
|
227
231
|
height: 16,
|
|
228
232
|
fill: mapIconWarningColor[themeContext.colorScheme],
|
|
229
|
-
style: [styleSheet.icon, iconBySizeStyleSheet[size]]
|
|
233
|
+
style: [_index4.PositionStyleSheet.absolute, styleSheet.icon, mapStyleSheetIconInteractiveStatePosition[`${globalConfigContext.rtl}`], iconBySizeStyleSheet[size]]
|
|
230
234
|
}) : undefined, blockEndNode]
|
|
231
235
|
});
|
|
232
236
|
});
|
|
233
|
-
const
|
|
237
|
+
const AnimatedBox = _reactNative.Animated.createAnimatedComponent(_index5.Box),
|
|
238
|
+
styleSheet = _reactNative.StyleSheet.create({
|
|
234
239
|
textInputField: {
|
|
235
240
|
outlineWidth: 2,
|
|
236
241
|
outlineOffset: -2,
|
|
237
|
-
outlineStyle:
|
|
242
|
+
outlineStyle: "solid"
|
|
238
243
|
},
|
|
239
244
|
icon: {
|
|
240
|
-
pointerEvents:
|
|
241
|
-
|
|
245
|
+
pointerEvents: "none"
|
|
246
|
+
},
|
|
247
|
+
iconLtr: {
|
|
242
248
|
right: _carbonReactNativeElements.Spacing.spacing_05
|
|
249
|
+
},
|
|
250
|
+
iconRtl: {
|
|
251
|
+
left: _carbonReactNativeElements.Spacing.spacing_05
|
|
243
252
|
}
|
|
244
253
|
}),
|
|
254
|
+
mapStyleSheetIconInteractiveStatePosition = {
|
|
255
|
+
false: styleSheet.iconLtr,
|
|
256
|
+
true: styleSheet.iconRtl
|
|
257
|
+
},
|
|
245
258
|
textInputFieldSizeStyleSheet = _reactNative.StyleSheet.create({
|
|
246
259
|
small: {
|
|
247
260
|
height: 32
|
|
@@ -264,23 +277,23 @@ const styleSheet = _reactNative.StyleSheet.create({
|
|
|
264
277
|
top: 48 / 2 - 8
|
|
265
278
|
}
|
|
266
279
|
}),
|
|
267
|
-
carbonStyleSheet =
|
|
280
|
+
carbonStyleSheet = _index2.CarbonStyleSheet.create({
|
|
268
281
|
textInputField: {
|
|
269
|
-
backgroundColor:
|
|
282
|
+
backgroundColor: _index2.CarbonStyleSheet.color.field_02
|
|
270
283
|
},
|
|
271
284
|
invalidOutlineColor: {
|
|
272
|
-
outlineColor:
|
|
285
|
+
outlineColor: _index2.CarbonStyleSheet.color.support_error
|
|
273
286
|
}
|
|
274
287
|
}),
|
|
275
|
-
textInputFieldByLayerStyleSheet =
|
|
288
|
+
textInputFieldByLayerStyleSheet = _index2.CarbonStyleSheet.create({
|
|
276
289
|
1: {
|
|
277
|
-
backgroundColor:
|
|
290
|
+
backgroundColor: _index2.CarbonStyleSheet.color.field_01
|
|
278
291
|
},
|
|
279
292
|
2: {
|
|
280
|
-
backgroundColor:
|
|
293
|
+
backgroundColor: _index2.CarbonStyleSheet.color.field_02
|
|
281
294
|
},
|
|
282
295
|
3: {
|
|
283
|
-
backgroundColor:
|
|
296
|
+
backgroundColor: _index2.CarbonStyleSheet.color.field_03
|
|
284
297
|
}
|
|
285
298
|
}),
|
|
286
299
|
mapIconInvalidColor = {
|