@vitality-ds/components 5.2.1 → 5.4.0
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/dist/components/src/AuditTrail/components/IconAvatar/styled.d.ts +19 -0
- package/dist/components/src/AuditTrail/components/IconAvatar/styles/IconAvatarContainer.styles.d.ts +19 -0
- package/dist/components/src/Avatar/styled.d.ts +99 -4
- package/dist/components/src/Avatar/styles/BaseAvatarContainer.styles.d.ts +27 -8
- package/dist/components/src/Badge/styled.d.ts +42 -4
- package/dist/components/src/Badge/styles/BaseBadge.styles.d.ts +23 -4
- package/dist/components/src/Box/styled.d.ts +38 -0
- package/dist/components/src/Box/styles/BaseBox.styles.d.ts +19 -0
- package/dist/components/src/Breadcrumbs/components/Breadcrumb/styled.d.ts +76 -0
- package/dist/components/src/Breadcrumbs/components/Breadcrumb/styles/BaseBreadcrumbLink.styles.d.ts +19 -0
- package/dist/components/src/Breadcrumbs/components/Breadcrumb/styles/BaseBreadcrumbListItem.styles.d.ts +19 -0
- package/dist/components/src/Breadcrumbs/components/Breadcrumb/styles/BaseBreadcrumbText.styles.d.ts +19 -0
- package/dist/components/src/Breadcrumbs/components/Breadcrumb/types.d.ts +1 -1
- package/dist/components/src/Breadcrumbs/styled.d.ts +19 -0
- package/dist/components/src/Button/components/ButtonIcon/styled.d.ts +38 -0
- package/dist/components/src/Button/components/ButtonIcon/styles/BaseButtonIcon.styles.d.ts +19 -0
- package/dist/components/src/Button/primitives/styled.d.ts +95 -0
- package/dist/components/src/Button/primitives/styles/BaseButton.styles.d.ts +19 -0
- package/dist/components/src/Button/primitives/styles/BaseContentContainer.styles.d.ts +19 -0
- package/dist/components/src/Button/primitives/styles/BaseLoadingContainer.styles.d.ts +19 -0
- package/dist/components/src/Callout/components/CalloutDescription/styled.d.ts +38 -0
- package/dist/components/src/Callout/components/CalloutDescription/styles/BaseCalloutDescription.styles.d.ts +19 -0
- package/dist/components/src/Callout/styled.d.ts +95 -0
- package/dist/components/src/Callout/styles/BaseCallout.styles.d.ts +19 -0
- package/dist/components/src/Callout/styles/BaseCalloutActions.styles.d.ts +19 -0
- package/dist/components/src/Callout/styles/BaseCalloutTitleContainer.styles.d.ts +19 -0
- package/dist/components/src/Callout/types.d.ts +1 -1
- package/dist/components/src/Chip/components/Checkbox/styled.d.ts +109 -14
- package/dist/components/src/Chip/components/Checkbox/styles/BaseChipCheckbox.styles.d.ts +33 -14
- package/dist/components/src/Chip/components/Checkbox/styles/BaseChipCheckboxBox.styles.d.ts +19 -0
- package/dist/components/src/Chip/components/Checkbox/styles/BaseChipCheckboxIcon.styles.d.ts +19 -0
- package/dist/components/src/Chip/components/MetaLabel/styled.d.ts +19 -0
- package/dist/components/src/Chip/components/MetaLabel/styles/BaseMetaLabel.styles.d.ts +19 -0
- package/dist/components/src/Chip/components/RemoveButton/styled.d.ts +38 -0
- package/dist/components/src/Chip/components/RemoveButton/styles/BaseRemoveButtonButton.styles.d.ts +19 -0
- package/dist/components/src/Chip/components/RemoveButton/styles/BaseRemoveButtonContainer.styles.d.ts +19 -0
- package/dist/components/src/Chip/styled.d.ts +88 -12
- package/dist/components/src/Chip/styles/BaseChip.styles.d.ts +30 -11
- package/dist/components/src/Chip/styles/BaseChipLabelContainer.styles.d.ts +20 -1
- package/dist/components/src/ComboButton/styled.d.ts +38 -0
- package/dist/components/src/ComboButton/styles/BaseComboButton.styles.d.ts +19 -0
- package/dist/components/src/Dialog/components/DialogActions/styled.d.ts +19 -0
- package/dist/components/src/Dialog/components/DialogActions/styles/BaseDialogActions.styles.d.ts +19 -0
- package/dist/components/src/Dialog/components/DialogContent/styled.d.ts +19 -0
- package/dist/components/src/Dialog/components/DialogContent/styles/BaseDialogContent.styles.d.ts +19 -0
- package/dist/components/src/Dialog/components/DialogHeader/styled.d.ts +90 -14
- package/dist/components/src/Dialog/components/DialogHeader/styles/BaseDialogHeader.styles.d.ts +33 -14
- package/dist/components/src/Dialog/components/DialogHeader/styles/TitleContainer.styles.d.ts +19 -0
- package/dist/components/src/Dialog/components/DialogHeader/styles/UtilityIconContainer.styles.d.ts +19 -0
- package/dist/components/src/Dialog/styled.d.ts +39 -1
- package/dist/components/src/Dialog/styles/BaseDialogContainer.styles.d.ts +20 -1
- package/dist/components/src/Dialog/types.d.ts +1 -1
- package/dist/components/src/Divider/styled.d.ts +41 -3
- package/dist/components/src/Divider/styles/BaseDivider.styles.d.ts +22 -3
- package/dist/components/src/DropdownMenu/components/CheckableDropdownMenuItem/styled.d.ts +68 -11
- package/dist/components/src/DropdownMenu/components/CheckableDropdownMenuItem/styles/BaseCheckableItem.styles.d.ts +19 -0
- package/dist/components/src/DropdownMenu/components/DropdownMenuItem/styled.d.ts +49 -11
- package/dist/components/src/DropdownMenu/components/DropdownMenuItem/styles/BaseItem.styles.d.ts +30 -11
- package/dist/components/src/DropdownMenu/components/GroupLabel/styled.d.ts +19 -0
- package/dist/components/src/DropdownMenu/components/GroupLabel/styles/BaseGroupLabel.styles.d.ts +19 -0
- package/dist/components/src/DropdownMenu/components/IconContainer/styled.d.ts +19 -0
- package/dist/components/src/DropdownMenu/components/IconContainer/styles/BaseItemIcon.styles.d.ts +19 -0
- package/dist/components/src/DropdownMenu/components/Submenu/styled.d.ts +87 -11
- package/dist/components/src/DropdownMenu/components/Submenu/styles/BaseSubmenuTrigger.styles.d.ts +19 -0
- package/dist/components/src/DropdownMenu/styled.d.ts +57 -0
- package/dist/components/src/DropdownMenu/styles/Content.styles.d.ts +19 -0
- package/dist/components/src/DropdownMenu/styles/Trigger.styles.d.ts +19 -0
- package/dist/components/src/EmptyState/components/EmptyStateImage/styled.d.ts +19 -0
- package/dist/components/src/EmptyState/components/EmptyStateImage/styles/BaseEmptyStateImage.styles.d.ts +19 -0
- package/dist/components/src/EmptyState/styled.d.ts +19 -0
- package/dist/components/src/EmptyState/styles/BaseEmptyStateContainer.d.ts +19 -0
- package/dist/components/src/Flex/styled.d.ts +38 -0
- package/dist/components/src/Flex/styles/BaseFlex.styles.d.ts +19 -0
- package/dist/components/src/Form/CheckboxList/styled.d.ts +38 -0
- package/dist/components/src/Form/CheckboxList/styles/BaseCheckboxListContainer.styles.d.ts +19 -0
- package/dist/components/src/Form/FormField/components/Fieldset/styled.d.ts +19 -0
- package/dist/components/src/Form/FormField/components/Fieldset/styles/BaseFieldset.styles.d.ts +19 -0
- package/dist/components/src/Form/FormField/styled.d.ts +19 -0
- package/dist/components/src/Form/FormField/styles/IconWrapper.styles.d.ts +19 -0
- package/dist/components/src/Form/HelperMessage/styled.d.ts +40 -2
- package/dist/components/src/Form/HelperMessage/styles/BaseHelperMessage.styles.d.ts +21 -2
- package/dist/components/src/Form/Label/styled.d.ts +58 -1
- package/dist/components/src/Form/Label/styles/BaseComponent.styles.d.ts +19 -0
- package/dist/components/src/Form/Label/styles/BaseLabel.styles.d.ts +19 -0
- package/dist/components/src/Form/Label/styles/BaseLabelRequired.styles.d.ts +20 -1
- package/dist/components/src/Form/Legend/styled.d.ts +19 -0
- package/dist/components/src/Form/Legend/styles/BaseComponent.styles.d.ts +19 -0
- package/dist/components/src/IconButton/styled.d.ts +96 -20
- package/dist/components/src/IconButton/styles/BaseIconButton.styles.d.ts +29 -10
- package/dist/components/src/Input/Checkbox/components/BaseCheckbox/styled.d.ts +38 -0
- package/dist/components/src/Input/Checkbox/components/BaseCheckbox/styles/BaseCheckboxIndicator.styles.d.ts +19 -0
- package/dist/components/src/Input/Checkbox/components/BaseCheckbox/styles/BaseCheckboxRoot.styles.d.ts +19 -0
- package/dist/components/src/Input/Checkbox/styled.d.ts +59 -2
- package/dist/components/src/Input/Checkbox/styles/BaseCheckboxContainer.styles.d.ts +19 -0
- package/dist/components/src/Input/Checkbox/styles/BaseCheckboxText.styles.d.ts +21 -2
- package/dist/components/src/Input/DatePicker/components/Calendar/styled.d.ts +38 -0
- package/dist/components/src/Input/DatePicker/components/Calendar/styles/BaseCalendar.styles.d.ts +19 -0
- package/dist/components/src/Input/DatePicker/components/Calendar/styles/TopBarContainer.styles.d.ts +19 -0
- package/dist/components/src/Input/DatePicker/styled.d.ts +19 -0
- package/dist/components/src/Input/DatePicker/styles/BaseDatePicker.styles.d.ts +19 -0
- package/dist/components/src/Input/DateRangePicker/styled.d.ts +114 -0
- package/dist/components/src/Input/DateRangePicker/styles/BaseDateRangePicker.styles.d.ts +19 -0
- package/dist/components/src/Input/DateRangePicker/styles/BaseDateRangePickerLabel.styles.d.ts +19 -0
- package/dist/components/src/Input/DateRangePicker/styles/DateContainer.styles.d.ts +19 -0
- package/dist/components/src/Input/DateRangePicker/styles/DatePickerContainer.styles.d.ts +19 -0
- package/dist/components/src/Input/DateRangePicker/styles/ExtrasContainers.d.ts +19 -0
- package/dist/components/src/Input/RadioButtons/components/RadioButton/styled.d.ts +120 -6
- package/dist/components/src/Input/RadioButtons/components/RadioButton/styles/BaseRadioButton.styles.d.ts +19 -0
- package/dist/components/src/Input/RadioButtons/components/RadioButton/styles/BaseRadioButtonContainer.styles.d.ts +19 -0
- package/dist/components/src/Input/RadioButtons/components/RadioButton/styles/BaseRadioIndicator.styles.d.ts +23 -4
- package/dist/components/src/Input/RadioButtons/components/RadioButton/styles/BaseRadioLabel.styles.d.ts +21 -2
- package/dist/components/src/Input/RadioButtons/styled.d.ts +19 -0
- package/dist/components/src/Input/RadioButtons/styles/BaseRadioButtonsContainer.styles.d.ts +19 -0
- package/dist/components/src/Input/Select/components/ClearButton/styled.d.ts +42 -4
- package/dist/components/src/Input/Select/components/ClearButton/styles/BaseClearButton.styles.d.ts +23 -4
- package/dist/components/src/Input/Select/components/Control/styled.d.ts +19 -0
- package/dist/components/src/Input/Select/components/Control/styles/BaseIsMultiWrapper.styles.d.ts +19 -0
- package/dist/components/src/Input/Select/components/DropdownIndicator/styled.d.ts +40 -2
- package/dist/components/src/Input/Select/components/DropdownIndicator/styles/BaseDropdownIndicator.styles.d.ts +21 -2
- package/dist/components/src/Input/Select/components/Input/styled.d.ts +39 -1
- package/dist/components/src/Input/Select/components/Input/styles/CustomSelectInput.styles.d.ts +20 -1
- package/dist/components/src/Input/Select/components/Option/styled.d.ts +19 -0
- package/dist/components/src/Input/Select/components/Option/styles/baseOption.styles.d.ts +19 -0
- package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styled.d.ts +19 -0
- package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styles/BaseValueText.styles.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/AdornmentWrapper/styled.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/AdornmentWrapper/styles/BaseAdornmentWrapper.styles.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/ButtonAdornment/styled.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/ButtonAdornment/styles/BaseButtonWrapper.styles.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/IconAdornment/styled.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/IconAdornment/styles/BaseIconWrapper.styles.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/IconButtonAdornment/styled.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/IconButtonAdornment/styles/BaseIconButtonWrapper.styles.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/Mask/styled.d.ts +41 -3
- package/dist/components/src/Input/TextInput/components/SpinnerAdornment/styled.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/SpinnerAdornment/styles/BaseSpinnerWrapper.styles.d.ts +19 -0
- package/dist/components/src/Input/TextInput/components/TextAdornment/styled.d.ts +39 -1
- package/dist/components/src/Input/TextInput/components/TextAdornment/styles/BaseAdornmentText.styles.d.ts +20 -1
- package/dist/components/src/Input/TextInput/styled.d.ts +94 -18
- package/dist/components/src/Input/TextInput/styles/BaseInputWrapper.styles.d.ts +34 -15
- package/dist/components/src/Input/TextInput/styles/BaseTextInput.styles.d.ts +22 -3
- package/dist/components/src/Input/Textarea/styled.d.ts +49 -11
- package/dist/components/src/Input/Textarea/styles/BaseTextarea.styles.d.ts +30 -11
- package/dist/components/src/LegacyPaper/styled.d.ts +39 -1
- package/dist/components/src/LegacyPaper/styles/BaseLegacyPaper.styles.d.ts +20 -1
- package/dist/components/src/LinearProgress/styled.d.ts +58 -1
- package/dist/components/src/LinearProgress/styles/BaseLinearProgress.styles.d.ts +19 -0
- package/dist/components/src/LinearProgress/styles/BaseLinearProgressIndicator.styles.d.ts +20 -1
- package/dist/components/src/Link/styled.d.ts +116 -21
- package/dist/components/src/Link/styles/BaseLink.styles.d.ts +20 -1
- package/dist/components/src/Modal/styled.d.ts +77 -1
- package/dist/components/src/Modal/styles/BaseModalBlanket.styles.d.ts +20 -1
- package/dist/components/src/Modal/styles/BaseModalContent.styles.d.ts +19 -0
- package/dist/components/src/Popover/styled.d.ts +57 -0
- package/dist/components/src/Popover/styles/PopoverContentStyles.styles.d.ts +19 -0
- package/dist/components/src/Popover/styles/PopoverRootStyles.styles.d.ts +19 -0
- package/dist/components/src/Popover/styles/PopoverTriggerStyles.styles.d.ts +19 -0
- package/dist/components/src/Shortcuts/styled.d.ts +59 -2
- package/dist/components/src/Shortcuts/styles/BaseShortcut.styles.d.ts +21 -2
- package/dist/components/src/Shortcuts/styles/BaseShortcutGroup.styles.d.ts +19 -0
- package/dist/components/src/Sidebar/components/SidebarBar/styled.d.ts +59 -2
- package/dist/components/src/Sidebar/components/SidebarBar/styles/BaseSidebarBar.styles.d.ts +21 -2
- package/dist/components/src/Sidebar/components/SidebarBar/styles/BaseSidebarContent.styles.d.ts +19 -0
- package/dist/components/src/Sidebar/components/SidebarCloseButton/styled.d.ts +19 -0
- package/dist/components/src/Sidebar/components/SidebarCloseButton/styles/BaseSidebarCloseButton.styles.d.ts +19 -0
- package/dist/components/src/Sidebar/components/SidebarWrapper/styled.d.ts +38 -0
- package/dist/components/src/Sidebar/components/SidebarWrapper/styles/BaseSidebarWrapper.styles.d.ts +19 -0
- package/dist/components/src/SkeletonBox/primitives/styled.d.ts +19 -0
- package/dist/components/src/SkeletonBox/primitives/styles/BasePrimitiveSkeletonBox.d.ts +19 -0
- package/dist/components/src/Spinner/styled.d.ts +83 -7
- package/dist/components/src/Spinner/styles/BaseSpinner.styles.d.ts +19 -0
- package/dist/components/src/Spinner/styles/BaseSpinnerCircle.styles.d.ts +26 -7
- package/dist/components/src/Spinner/styles/BaseSpinnerSvg.styles.d.ts +19 -0
- package/dist/components/src/Stack/styled.d.ts +38 -0
- package/dist/components/src/Stack/styles/BaseStack.styles.d.ts +19 -0
- package/dist/components/src/StatusBadge/components/StatusBadgeIcon/styled.d.ts +19 -0
- package/dist/components/src/StatusBadge/components/StatusBadgeIcon/styles/BaseStatusBadge.styles.d.ts +19 -0
- package/dist/components/src/StatusBadge/styled.d.ts +114 -0
- package/dist/components/src/StatusBadge/styles/BaseStatusBadge.styles.d.ts +19 -0
- package/dist/components/src/Switch/styled.d.ts +127 -13
- package/dist/components/src/Switch/styles/BaseSwitch.styles.d.ts +28 -9
- package/dist/components/src/Switch/styles/BaseSwitchLabel.styles.d.ts +20 -1
- package/dist/components/src/Switch/styles/BaseSwitchThumb.styles.d.ts +22 -3
- package/dist/components/src/Table/components/BatchActions/styled.d.ts +77 -1
- package/dist/components/src/Table/components/BatchActions/styles/ActionsContainer.styles.d.ts +19 -0
- package/dist/components/src/Table/components/BatchActions/styles/BaseBatchActions.styles.d.ts +20 -1
- package/dist/components/src/Table/components/BatchActions/styles/LeftContentContainer.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/Header/styled.d.ts +38 -0
- package/dist/components/src/Table/components/Cells/Header/styles/BaseHeaderCell.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/Number/styled.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/Number/styles/BaseNumberTextCell.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/RowActions/styled.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/RowActions/styles/BaseIconButtonCell.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/SortableHeader/components/SortableHeaderCell/styled.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/SortableHeader/components/SortableHeaderCell/styles/BaseSortableHeaderCell.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/SortableHeader/components/SortableIcon/styled.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/SortableHeader/components/SortableIcon/styles/BaseSortableIconContainer.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/SortableHeader/components/SortedIcon/styled.d.ts +39 -1
- package/dist/components/src/Table/components/Cells/SortableHeader/components/SortedIcon/styles/BaseSortedIconContainer.d.ts +20 -1
- package/dist/components/src/Table/components/Cells/Text/styled.d.ts +19 -0
- package/dist/components/src/Table/components/Cells/Text/styles/BaseTextCell.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Pagination/styled.d.ts +38 -0
- package/dist/components/src/Table/components/Pagination/styles/BasePagination.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Pagination/styles/PaginationWrapper.styles.d.ts +19 -0
- package/dist/components/src/Table/components/States/TableStatus/styled.d.ts +19 -0
- package/dist/components/src/Table/components/Toolbar/styled.d.ts +114 -0
- package/dist/components/src/Table/components/Toolbar/styles/BaseToolbarContainer.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Toolbar/styles/LeftActionsContainer.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Toolbar/styles/LeftSideContainer.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Toolbar/styles/RightActionsContainer.styles.d.ts +19 -0
- package/dist/components/src/Table/components/Toolbar/styles/TitleContainer.styles.d.ts +19 -0
- package/dist/components/src/Table/styled.d.ts +19 -0
- package/dist/components/src/Table/styles/BaseTableWrapper.styles.d.ts +19 -0
- package/dist/components/src/Tabs/components/Root/styled.d.ts +19 -0
- package/dist/components/src/Tabs/components/Root/styles/BaseRoot.styles.d.ts +19 -0
- package/dist/components/src/Tabs/components/Tab/styled.d.ts +19 -0
- package/dist/components/src/Tabs/components/Tab/styles/BaseTab.styles.d.ts +19 -0
- package/dist/components/src/Tabs/components/TabContent/styled.d.ts +19 -0
- package/dist/components/src/Tabs/components/TabContent/styles/BaseTabContent.styles.d.ts +19 -0
- package/dist/components/src/Tabs/components/TabsList/styled.d.ts +57 -0
- package/dist/components/src/Tabs/components/TabsList/styles/BaseTabsList.styles.d.ts +19 -0
- package/dist/components/src/Tabs/components/TabsList/styles/BaseTabsListContainer.styles.d.ts +19 -0
- package/dist/components/src/TestingButton/styled.d.ts +19 -0
- package/dist/components/src/TestingButton/styles/BaseTestingButton.styles.d.ts +19 -0
- package/dist/components/src/Toaster/components/CloseIconButton/styled.d.ts +48 -10
- package/dist/components/src/Toaster/components/CloseIconButton/styles/BaseCloseIconButton.styles.d.ts +29 -10
- package/dist/components/src/Toaster/components/Toast/helpers/getVariantHoverStatesByColorScale.d.ts +2 -2
- package/dist/components/src/Toaster/components/Toast/helpers/getVariantsByColorScale.d.ts +3 -3
- package/dist/components/src/Toaster/components/Toast/styled.d.ts +72 -15
- package/dist/components/src/Toaster/components/Toast/styles/BaseContent.styles.d.ts +19 -0
- package/dist/components/src/Toaster/components/Toast/styles/BaseToast.styles.d.ts +34 -15
- package/dist/components/src/Toaster/styled.d.ts +19 -0
- package/dist/components/src/Toaster/styles/BaseToaster.styles.d.ts +19 -0
- package/dist/components/src/Tooltip/styled.d.ts +38 -0
- package/dist/components/src/Tooltip/styles/BaseTooltipArrow.styles.d.ts +19 -0
- package/dist/components/src/Tooltip/styles/BaseTooltipContent.styles.d.ts +19 -0
- package/dist/components/src/TruncateContent/styled.d.ts +99 -4
- package/dist/components/src/TruncateContent/styles/BaseButton.styles.d.ts +23 -4
- package/dist/components/src/TruncateContent/styles/BaseContainer.styles.d.ts +19 -0
- package/dist/components/src/TruncateContent/styles/BaseInner.styles.d.ts +19 -0
- package/dist/components/src/Typography/hooks/useTypographyColors.d.ts +1 -1
- package/dist/components/src/Typography/logic.d.ts +1 -1
- package/dist/components/src/Typography/styled.d.ts +58 -20
- package/dist/components/src/Typography/styles/BaseTypography.styles.d.ts +39 -20
- package/dist/icons/src/Icon/styled.d.ts +49 -11
- package/dist/icons/src/Icon/styles/BaseIcon.styles.d.ts +30 -11
- package/dist/system/src/stitches.config.d.ts +228 -0
- package/dist/tokens/src/Color/helpers/constants.d.ts +3 -0
- package/dist/tokens/src/Color/types.d.ts +1 -1
- package/dist/tokens/src/Theme/getters/getColors.d.ts +38 -0
- package/dist/tokens/src/Theme/getters/getTheme.d.ts +38 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -109,6 +109,16 @@ export declare const BaseButton: import("@stitches/react/types/styled-component"
|
|
|
109
109
|
red12: string;
|
|
110
110
|
violet12: string;
|
|
111
111
|
yellow12: string;
|
|
112
|
+
blue14: string;
|
|
113
|
+
cyan14: string;
|
|
114
|
+
green14: string;
|
|
115
|
+
grey14: string;
|
|
116
|
+
greyA14: string;
|
|
117
|
+
orange14: string;
|
|
118
|
+
pink14: string;
|
|
119
|
+
red14: string;
|
|
120
|
+
violet14: string;
|
|
121
|
+
yellow14: string;
|
|
112
122
|
blue3: string;
|
|
113
123
|
cyan3: string;
|
|
114
124
|
green3: string;
|
|
@@ -235,6 +245,15 @@ export declare const BaseButton: import("@stitches/react/types/styled-component"
|
|
|
235
245
|
warning12: string;
|
|
236
246
|
critical12: string;
|
|
237
247
|
brand12: string;
|
|
248
|
+
neutral14: string;
|
|
249
|
+
neutralA14: string;
|
|
250
|
+
primary14: string;
|
|
251
|
+
accent14: string;
|
|
252
|
+
success14: string;
|
|
253
|
+
info14: string;
|
|
254
|
+
warning14: string;
|
|
255
|
+
critical14: string;
|
|
256
|
+
brand14: string;
|
|
238
257
|
neutral3: string;
|
|
239
258
|
neutralA3: string;
|
|
240
259
|
primary3: string;
|
|
@@ -484,6 +503,16 @@ export declare const BaseButton: import("@stitches/react/types/styled-component"
|
|
|
484
503
|
red12: string;
|
|
485
504
|
violet12: string;
|
|
486
505
|
yellow12: string;
|
|
506
|
+
blue14: string;
|
|
507
|
+
cyan14: string;
|
|
508
|
+
green14: string;
|
|
509
|
+
grey14: string;
|
|
510
|
+
greyA14: string;
|
|
511
|
+
orange14: string;
|
|
512
|
+
pink14: string;
|
|
513
|
+
red14: string;
|
|
514
|
+
violet14: string;
|
|
515
|
+
yellow14: string;
|
|
487
516
|
blue3: string;
|
|
488
517
|
cyan3: string;
|
|
489
518
|
green3: string;
|
|
@@ -610,6 +639,15 @@ export declare const BaseButton: import("@stitches/react/types/styled-component"
|
|
|
610
639
|
warning12: string;
|
|
611
640
|
critical12: string;
|
|
612
641
|
brand12: string;
|
|
642
|
+
neutral14: string;
|
|
643
|
+
neutralA14: string;
|
|
644
|
+
primary14: string;
|
|
645
|
+
accent14: string;
|
|
646
|
+
success14: string;
|
|
647
|
+
info14: string;
|
|
648
|
+
warning14: string;
|
|
649
|
+
critical14: string;
|
|
650
|
+
brand14: string;
|
|
613
651
|
neutral3: string;
|
|
614
652
|
neutralA3: string;
|
|
615
653
|
primary3: string;
|
|
@@ -870,6 +908,16 @@ export declare const BaseContentContainer: import("@stitches/react/types/styled-
|
|
|
870
908
|
red12: string;
|
|
871
909
|
violet12: string;
|
|
872
910
|
yellow12: string;
|
|
911
|
+
blue14: string;
|
|
912
|
+
cyan14: string;
|
|
913
|
+
green14: string;
|
|
914
|
+
grey14: string;
|
|
915
|
+
greyA14: string;
|
|
916
|
+
orange14: string;
|
|
917
|
+
pink14: string;
|
|
918
|
+
red14: string;
|
|
919
|
+
violet14: string;
|
|
920
|
+
yellow14: string;
|
|
873
921
|
blue3: string;
|
|
874
922
|
cyan3: string;
|
|
875
923
|
green3: string;
|
|
@@ -996,6 +1044,15 @@ export declare const BaseContentContainer: import("@stitches/react/types/styled-
|
|
|
996
1044
|
warning12: string;
|
|
997
1045
|
critical12: string;
|
|
998
1046
|
brand12: string;
|
|
1047
|
+
neutral14: string;
|
|
1048
|
+
neutralA14: string;
|
|
1049
|
+
primary14: string;
|
|
1050
|
+
accent14: string;
|
|
1051
|
+
success14: string;
|
|
1052
|
+
info14: string;
|
|
1053
|
+
warning14: string;
|
|
1054
|
+
critical14: string;
|
|
1055
|
+
brand14: string;
|
|
999
1056
|
neutral3: string;
|
|
1000
1057
|
neutralA3: string;
|
|
1001
1058
|
primary3: string;
|
|
@@ -1245,6 +1302,16 @@ export declare const BaseContentContainer: import("@stitches/react/types/styled-
|
|
|
1245
1302
|
red12: string;
|
|
1246
1303
|
violet12: string;
|
|
1247
1304
|
yellow12: string;
|
|
1305
|
+
blue14: string;
|
|
1306
|
+
cyan14: string;
|
|
1307
|
+
green14: string;
|
|
1308
|
+
grey14: string;
|
|
1309
|
+
greyA14: string;
|
|
1310
|
+
orange14: string;
|
|
1311
|
+
pink14: string;
|
|
1312
|
+
red14: string;
|
|
1313
|
+
violet14: string;
|
|
1314
|
+
yellow14: string;
|
|
1248
1315
|
blue3: string;
|
|
1249
1316
|
cyan3: string;
|
|
1250
1317
|
green3: string;
|
|
@@ -1371,6 +1438,15 @@ export declare const BaseContentContainer: import("@stitches/react/types/styled-
|
|
|
1371
1438
|
warning12: string;
|
|
1372
1439
|
critical12: string;
|
|
1373
1440
|
brand12: string;
|
|
1441
|
+
neutral14: string;
|
|
1442
|
+
neutralA14: string;
|
|
1443
|
+
primary14: string;
|
|
1444
|
+
accent14: string;
|
|
1445
|
+
success14: string;
|
|
1446
|
+
info14: string;
|
|
1447
|
+
warning14: string;
|
|
1448
|
+
critical14: string;
|
|
1449
|
+
brand14: string;
|
|
1374
1450
|
neutral3: string;
|
|
1375
1451
|
neutralA3: string;
|
|
1376
1452
|
primary3: string;
|
|
@@ -1621,6 +1697,16 @@ export declare const BaseLoadingContainer: import("@stitches/react/types/styled-
|
|
|
1621
1697
|
red12: string;
|
|
1622
1698
|
violet12: string;
|
|
1623
1699
|
yellow12: string;
|
|
1700
|
+
blue14: string;
|
|
1701
|
+
cyan14: string;
|
|
1702
|
+
green14: string;
|
|
1703
|
+
grey14: string;
|
|
1704
|
+
greyA14: string;
|
|
1705
|
+
orange14: string;
|
|
1706
|
+
pink14: string;
|
|
1707
|
+
red14: string;
|
|
1708
|
+
violet14: string;
|
|
1709
|
+
yellow14: string;
|
|
1624
1710
|
blue3: string;
|
|
1625
1711
|
cyan3: string;
|
|
1626
1712
|
green3: string;
|
|
@@ -1747,6 +1833,15 @@ export declare const BaseLoadingContainer: import("@stitches/react/types/styled-
|
|
|
1747
1833
|
warning12: string;
|
|
1748
1834
|
critical12: string;
|
|
1749
1835
|
brand12: string;
|
|
1836
|
+
neutral14: string;
|
|
1837
|
+
neutralA14: string;
|
|
1838
|
+
primary14: string;
|
|
1839
|
+
accent14: string;
|
|
1840
|
+
success14: string;
|
|
1841
|
+
info14: string;
|
|
1842
|
+
warning14: string;
|
|
1843
|
+
critical14: string;
|
|
1844
|
+
brand14: string;
|
|
1750
1845
|
neutral3: string;
|
|
1751
1846
|
neutralA3: string;
|
|
1752
1847
|
primary3: string;
|
|
@@ -122,6 +122,16 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
122
122
|
red12: string;
|
|
123
123
|
violet12: string;
|
|
124
124
|
yellow12: string;
|
|
125
|
+
blue14: string;
|
|
126
|
+
cyan14: string;
|
|
127
|
+
green14: string;
|
|
128
|
+
grey14: string;
|
|
129
|
+
greyA14: string;
|
|
130
|
+
orange14: string;
|
|
131
|
+
pink14: string;
|
|
132
|
+
red14: string;
|
|
133
|
+
violet14: string;
|
|
134
|
+
yellow14: string;
|
|
125
135
|
blue3: string;
|
|
126
136
|
cyan3: string;
|
|
127
137
|
green3: string;
|
|
@@ -248,6 +258,15 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
248
258
|
warning12: string;
|
|
249
259
|
critical12: string;
|
|
250
260
|
brand12: string;
|
|
261
|
+
neutral14: string;
|
|
262
|
+
neutralA14: string;
|
|
263
|
+
primary14: string;
|
|
264
|
+
accent14: string;
|
|
265
|
+
success14: string;
|
|
266
|
+
info14: string;
|
|
267
|
+
warning14: string;
|
|
268
|
+
critical14: string;
|
|
269
|
+
brand14: string;
|
|
251
270
|
neutral3: string;
|
|
252
271
|
neutralA3: string;
|
|
253
272
|
primary3: string;
|
|
@@ -58,6 +58,16 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
58
58
|
red12: string;
|
|
59
59
|
violet12: string;
|
|
60
60
|
yellow12: string;
|
|
61
|
+
blue14: string;
|
|
62
|
+
cyan14: string;
|
|
63
|
+
green14: string;
|
|
64
|
+
grey14: string;
|
|
65
|
+
greyA14: string;
|
|
66
|
+
orange14: string;
|
|
67
|
+
pink14: string;
|
|
68
|
+
red14: string;
|
|
69
|
+
violet14: string;
|
|
70
|
+
yellow14: string;
|
|
61
71
|
blue3: string;
|
|
62
72
|
cyan3: string;
|
|
63
73
|
green3: string;
|
|
@@ -184,6 +194,15 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
184
194
|
warning12: string;
|
|
185
195
|
critical12: string;
|
|
186
196
|
brand12: string;
|
|
197
|
+
neutral14: string;
|
|
198
|
+
neutralA14: string;
|
|
199
|
+
primary14: string;
|
|
200
|
+
accent14: string;
|
|
201
|
+
success14: string;
|
|
202
|
+
info14: string;
|
|
203
|
+
warning14: string;
|
|
204
|
+
critical14: string;
|
|
205
|
+
brand14: string;
|
|
187
206
|
neutral3: string;
|
|
188
207
|
neutralA3: string;
|
|
189
208
|
primary3: string;
|
|
@@ -48,6 +48,16 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
48
48
|
red12: string;
|
|
49
49
|
violet12: string;
|
|
50
50
|
yellow12: string;
|
|
51
|
+
blue14: string;
|
|
52
|
+
cyan14: string;
|
|
53
|
+
green14: string;
|
|
54
|
+
grey14: string;
|
|
55
|
+
greyA14: string;
|
|
56
|
+
orange14: string;
|
|
57
|
+
pink14: string;
|
|
58
|
+
red14: string;
|
|
59
|
+
violet14: string;
|
|
60
|
+
yellow14: string;
|
|
51
61
|
blue3: string;
|
|
52
62
|
cyan3: string;
|
|
53
63
|
green3: string;
|
|
@@ -174,6 +184,15 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
174
184
|
warning12: string;
|
|
175
185
|
critical12: string;
|
|
176
186
|
brand12: string;
|
|
187
|
+
neutral14: string;
|
|
188
|
+
neutralA14: string;
|
|
189
|
+
primary14: string;
|
|
190
|
+
accent14: string;
|
|
191
|
+
success14: string;
|
|
192
|
+
info14: string;
|
|
193
|
+
warning14: string;
|
|
194
|
+
critical14: string;
|
|
195
|
+
brand14: string;
|
|
177
196
|
neutral3: string;
|
|
178
197
|
neutralA3: string;
|
|
179
198
|
primary3: string;
|
|
@@ -87,6 +87,16 @@ export declare const BaseCalloutDescription: import("@stitches/react/types/style
|
|
|
87
87
|
red12: string;
|
|
88
88
|
violet12: string;
|
|
89
89
|
yellow12: string;
|
|
90
|
+
blue14: string;
|
|
91
|
+
cyan14: string;
|
|
92
|
+
green14: string;
|
|
93
|
+
grey14: string;
|
|
94
|
+
greyA14: string;
|
|
95
|
+
orange14: string;
|
|
96
|
+
pink14: string;
|
|
97
|
+
red14: string;
|
|
98
|
+
violet14: string;
|
|
99
|
+
yellow14: string;
|
|
90
100
|
blue3: string;
|
|
91
101
|
cyan3: string;
|
|
92
102
|
green3: string;
|
|
@@ -213,6 +223,15 @@ export declare const BaseCalloutDescription: import("@stitches/react/types/style
|
|
|
213
223
|
warning12: string;
|
|
214
224
|
critical12: string;
|
|
215
225
|
brand12: string;
|
|
226
|
+
neutral14: string;
|
|
227
|
+
neutralA14: string;
|
|
228
|
+
primary14: string;
|
|
229
|
+
accent14: string;
|
|
230
|
+
success14: string;
|
|
231
|
+
info14: string;
|
|
232
|
+
warning14: string;
|
|
233
|
+
critical14: string;
|
|
234
|
+
brand14: string;
|
|
216
235
|
neutral3: string;
|
|
217
236
|
neutralA3: string;
|
|
218
237
|
primary3: string;
|
|
@@ -462,6 +481,16 @@ export declare const BaseCalloutDescription: import("@stitches/react/types/style
|
|
|
462
481
|
red12: string;
|
|
463
482
|
violet12: string;
|
|
464
483
|
yellow12: string;
|
|
484
|
+
blue14: string;
|
|
485
|
+
cyan14: string;
|
|
486
|
+
green14: string;
|
|
487
|
+
grey14: string;
|
|
488
|
+
greyA14: string;
|
|
489
|
+
orange14: string;
|
|
490
|
+
pink14: string;
|
|
491
|
+
red14: string;
|
|
492
|
+
violet14: string;
|
|
493
|
+
yellow14: string;
|
|
465
494
|
blue3: string;
|
|
466
495
|
cyan3: string;
|
|
467
496
|
green3: string;
|
|
@@ -588,6 +617,15 @@ export declare const BaseCalloutDescription: import("@stitches/react/types/style
|
|
|
588
617
|
warning12: string;
|
|
589
618
|
critical12: string;
|
|
590
619
|
brand12: string;
|
|
620
|
+
neutral14: string;
|
|
621
|
+
neutralA14: string;
|
|
622
|
+
primary14: string;
|
|
623
|
+
accent14: string;
|
|
624
|
+
success14: string;
|
|
625
|
+
info14: string;
|
|
626
|
+
warning14: string;
|
|
627
|
+
critical14: string;
|
|
628
|
+
brand14: string;
|
|
591
629
|
neutral3: string;
|
|
592
630
|
neutralA3: string;
|
|
593
631
|
primary3: string;
|
|
@@ -87,6 +87,16 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
87
87
|
red12: string;
|
|
88
88
|
violet12: string;
|
|
89
89
|
yellow12: string;
|
|
90
|
+
blue14: string;
|
|
91
|
+
cyan14: string;
|
|
92
|
+
green14: string;
|
|
93
|
+
grey14: string;
|
|
94
|
+
greyA14: string;
|
|
95
|
+
orange14: string;
|
|
96
|
+
pink14: string;
|
|
97
|
+
red14: string;
|
|
98
|
+
violet14: string;
|
|
99
|
+
yellow14: string;
|
|
90
100
|
blue3: string;
|
|
91
101
|
cyan3: string;
|
|
92
102
|
green3: string;
|
|
@@ -213,6 +223,15 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
213
223
|
warning12: string;
|
|
214
224
|
critical12: string;
|
|
215
225
|
brand12: string;
|
|
226
|
+
neutral14: string;
|
|
227
|
+
neutralA14: string;
|
|
228
|
+
primary14: string;
|
|
229
|
+
accent14: string;
|
|
230
|
+
success14: string;
|
|
231
|
+
info14: string;
|
|
232
|
+
warning14: string;
|
|
233
|
+
critical14: string;
|
|
234
|
+
brand14: string;
|
|
216
235
|
neutral3: string;
|
|
217
236
|
neutralA3: string;
|
|
218
237
|
primary3: string;
|
|
@@ -77,6 +77,16 @@ export declare const BaseCallout: import("@stitches/react/types/styled-component
|
|
|
77
77
|
red12: string;
|
|
78
78
|
violet12: string;
|
|
79
79
|
yellow12: string;
|
|
80
|
+
blue14: string;
|
|
81
|
+
cyan14: string;
|
|
82
|
+
green14: string;
|
|
83
|
+
grey14: string;
|
|
84
|
+
greyA14: string;
|
|
85
|
+
orange14: string;
|
|
86
|
+
pink14: string;
|
|
87
|
+
red14: string;
|
|
88
|
+
violet14: string;
|
|
89
|
+
yellow14: string;
|
|
80
90
|
blue3: string;
|
|
81
91
|
cyan3: string;
|
|
82
92
|
green3: string;
|
|
@@ -203,6 +213,15 @@ export declare const BaseCallout: import("@stitches/react/types/styled-component
|
|
|
203
213
|
warning12: string;
|
|
204
214
|
critical12: string;
|
|
205
215
|
brand12: string;
|
|
216
|
+
neutral14: string;
|
|
217
|
+
neutralA14: string;
|
|
218
|
+
primary14: string;
|
|
219
|
+
accent14: string;
|
|
220
|
+
success14: string;
|
|
221
|
+
info14: string;
|
|
222
|
+
warning14: string;
|
|
223
|
+
critical14: string;
|
|
224
|
+
brand14: string;
|
|
206
225
|
neutral3: string;
|
|
207
226
|
neutralA3: string;
|
|
208
227
|
primary3: string;
|
|
@@ -452,6 +471,16 @@ export declare const BaseCallout: import("@stitches/react/types/styled-component
|
|
|
452
471
|
red12: string;
|
|
453
472
|
violet12: string;
|
|
454
473
|
yellow12: string;
|
|
474
|
+
blue14: string;
|
|
475
|
+
cyan14: string;
|
|
476
|
+
green14: string;
|
|
477
|
+
grey14: string;
|
|
478
|
+
greyA14: string;
|
|
479
|
+
orange14: string;
|
|
480
|
+
pink14: string;
|
|
481
|
+
red14: string;
|
|
482
|
+
violet14: string;
|
|
483
|
+
yellow14: string;
|
|
455
484
|
blue3: string;
|
|
456
485
|
cyan3: string;
|
|
457
486
|
green3: string;
|
|
@@ -578,6 +607,15 @@ export declare const BaseCallout: import("@stitches/react/types/styled-component
|
|
|
578
607
|
warning12: string;
|
|
579
608
|
critical12: string;
|
|
580
609
|
brand12: string;
|
|
610
|
+
neutral14: string;
|
|
611
|
+
neutralA14: string;
|
|
612
|
+
primary14: string;
|
|
613
|
+
accent14: string;
|
|
614
|
+
success14: string;
|
|
615
|
+
info14: string;
|
|
616
|
+
warning14: string;
|
|
617
|
+
critical14: string;
|
|
618
|
+
brand14: string;
|
|
581
619
|
neutral3: string;
|
|
582
620
|
neutralA3: string;
|
|
583
621
|
primary3: string;
|
|
@@ -828,6 +866,16 @@ export declare const BaseCalloutActions: import("@stitches/react/types/styled-co
|
|
|
828
866
|
red12: string;
|
|
829
867
|
violet12: string;
|
|
830
868
|
yellow12: string;
|
|
869
|
+
blue14: string;
|
|
870
|
+
cyan14: string;
|
|
871
|
+
green14: string;
|
|
872
|
+
grey14: string;
|
|
873
|
+
greyA14: string;
|
|
874
|
+
orange14: string;
|
|
875
|
+
pink14: string;
|
|
876
|
+
red14: string;
|
|
877
|
+
violet14: string;
|
|
878
|
+
yellow14: string;
|
|
831
879
|
blue3: string;
|
|
832
880
|
cyan3: string;
|
|
833
881
|
green3: string;
|
|
@@ -954,6 +1002,15 @@ export declare const BaseCalloutActions: import("@stitches/react/types/styled-co
|
|
|
954
1002
|
warning12: string;
|
|
955
1003
|
critical12: string;
|
|
956
1004
|
brand12: string;
|
|
1005
|
+
neutral14: string;
|
|
1006
|
+
neutralA14: string;
|
|
1007
|
+
primary14: string;
|
|
1008
|
+
accent14: string;
|
|
1009
|
+
success14: string;
|
|
1010
|
+
info14: string;
|
|
1011
|
+
warning14: string;
|
|
1012
|
+
critical14: string;
|
|
1013
|
+
brand14: string;
|
|
957
1014
|
neutral3: string;
|
|
958
1015
|
neutralA3: string;
|
|
959
1016
|
primary3: string;
|
|
@@ -1220,6 +1277,16 @@ export declare const BaseCalloutTitleContainer: import("@stitches/react/types/st
|
|
|
1220
1277
|
red12: string;
|
|
1221
1278
|
violet12: string;
|
|
1222
1279
|
yellow12: string;
|
|
1280
|
+
blue14: string;
|
|
1281
|
+
cyan14: string;
|
|
1282
|
+
green14: string;
|
|
1283
|
+
grey14: string;
|
|
1284
|
+
greyA14: string;
|
|
1285
|
+
orange14: string;
|
|
1286
|
+
pink14: string;
|
|
1287
|
+
red14: string;
|
|
1288
|
+
violet14: string;
|
|
1289
|
+
yellow14: string;
|
|
1223
1290
|
blue3: string;
|
|
1224
1291
|
cyan3: string;
|
|
1225
1292
|
green3: string;
|
|
@@ -1346,6 +1413,15 @@ export declare const BaseCalloutTitleContainer: import("@stitches/react/types/st
|
|
|
1346
1413
|
warning12: string;
|
|
1347
1414
|
critical12: string;
|
|
1348
1415
|
brand12: string;
|
|
1416
|
+
neutral14: string;
|
|
1417
|
+
neutralA14: string;
|
|
1418
|
+
primary14: string;
|
|
1419
|
+
accent14: string;
|
|
1420
|
+
success14: string;
|
|
1421
|
+
info14: string;
|
|
1422
|
+
warning14: string;
|
|
1423
|
+
critical14: string;
|
|
1424
|
+
brand14: string;
|
|
1349
1425
|
neutral3: string;
|
|
1350
1426
|
neutralA3: string;
|
|
1351
1427
|
primary3: string;
|
|
@@ -1595,6 +1671,16 @@ export declare const BaseCalloutTitleContainer: import("@stitches/react/types/st
|
|
|
1595
1671
|
red12: string;
|
|
1596
1672
|
violet12: string;
|
|
1597
1673
|
yellow12: string;
|
|
1674
|
+
blue14: string;
|
|
1675
|
+
cyan14: string;
|
|
1676
|
+
green14: string;
|
|
1677
|
+
grey14: string;
|
|
1678
|
+
greyA14: string;
|
|
1679
|
+
orange14: string;
|
|
1680
|
+
pink14: string;
|
|
1681
|
+
red14: string;
|
|
1682
|
+
violet14: string;
|
|
1683
|
+
yellow14: string;
|
|
1598
1684
|
blue3: string;
|
|
1599
1685
|
cyan3: string;
|
|
1600
1686
|
green3: string;
|
|
@@ -1721,6 +1807,15 @@ export declare const BaseCalloutTitleContainer: import("@stitches/react/types/st
|
|
|
1721
1807
|
warning12: string;
|
|
1722
1808
|
critical12: string;
|
|
1723
1809
|
brand12: string;
|
|
1810
|
+
neutral14: string;
|
|
1811
|
+
neutralA14: string;
|
|
1812
|
+
primary14: string;
|
|
1813
|
+
accent14: string;
|
|
1814
|
+
success14: string;
|
|
1815
|
+
info14: string;
|
|
1816
|
+
warning14: string;
|
|
1817
|
+
critical14: string;
|
|
1818
|
+
brand14: string;
|
|
1724
1819
|
neutral3: string;
|
|
1725
1820
|
neutralA3: string;
|
|
1726
1821
|
primary3: string;
|
|
@@ -77,6 +77,16 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
77
77
|
red12: string;
|
|
78
78
|
violet12: string;
|
|
79
79
|
yellow12: string;
|
|
80
|
+
blue14: string;
|
|
81
|
+
cyan14: string;
|
|
82
|
+
green14: string;
|
|
83
|
+
grey14: string;
|
|
84
|
+
greyA14: string;
|
|
85
|
+
orange14: string;
|
|
86
|
+
pink14: string;
|
|
87
|
+
red14: string;
|
|
88
|
+
violet14: string;
|
|
89
|
+
yellow14: string;
|
|
80
90
|
blue3: string;
|
|
81
91
|
cyan3: string;
|
|
82
92
|
green3: string;
|
|
@@ -203,6 +213,15 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
203
213
|
warning12: string;
|
|
204
214
|
critical12: string;
|
|
205
215
|
brand12: string;
|
|
216
|
+
neutral14: string;
|
|
217
|
+
neutralA14: string;
|
|
218
|
+
primary14: string;
|
|
219
|
+
accent14: string;
|
|
220
|
+
success14: string;
|
|
221
|
+
info14: string;
|
|
222
|
+
warning14: string;
|
|
223
|
+
critical14: string;
|
|
224
|
+
brand14: string;
|
|
206
225
|
neutral3: string;
|
|
207
226
|
neutralA3: string;
|
|
208
227
|
primary3: string;
|
|
@@ -48,6 +48,16 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
48
48
|
red12: string;
|
|
49
49
|
violet12: string;
|
|
50
50
|
yellow12: string;
|
|
51
|
+
blue14: string;
|
|
52
|
+
cyan14: string;
|
|
53
|
+
green14: string;
|
|
54
|
+
grey14: string;
|
|
55
|
+
greyA14: string;
|
|
56
|
+
orange14: string;
|
|
57
|
+
pink14: string;
|
|
58
|
+
red14: string;
|
|
59
|
+
violet14: string;
|
|
60
|
+
yellow14: string;
|
|
51
61
|
blue3: string;
|
|
52
62
|
cyan3: string;
|
|
53
63
|
green3: string;
|
|
@@ -174,6 +184,15 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
174
184
|
warning12: string;
|
|
175
185
|
critical12: string;
|
|
176
186
|
brand12: string;
|
|
187
|
+
neutral14: string;
|
|
188
|
+
neutralA14: string;
|
|
189
|
+
primary14: string;
|
|
190
|
+
accent14: string;
|
|
191
|
+
success14: string;
|
|
192
|
+
info14: string;
|
|
193
|
+
warning14: string;
|
|
194
|
+
critical14: string;
|
|
195
|
+
brand14: string;
|
|
177
196
|
neutral3: string;
|
|
178
197
|
neutralA3: string;
|
|
179
198
|
primary3: string;
|
|
@@ -64,6 +64,16 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
64
64
|
red12: string;
|
|
65
65
|
violet12: string;
|
|
66
66
|
yellow12: string;
|
|
67
|
+
blue14: string;
|
|
68
|
+
cyan14: string;
|
|
69
|
+
green14: string;
|
|
70
|
+
grey14: string;
|
|
71
|
+
greyA14: string;
|
|
72
|
+
orange14: string;
|
|
73
|
+
pink14: string;
|
|
74
|
+
red14: string;
|
|
75
|
+
violet14: string;
|
|
76
|
+
yellow14: string;
|
|
67
77
|
blue3: string;
|
|
68
78
|
cyan3: string;
|
|
69
79
|
green3: string;
|
|
@@ -190,6 +200,15 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
190
200
|
warning12: string;
|
|
191
201
|
critical12: string;
|
|
192
202
|
brand12: string;
|
|
203
|
+
neutral14: string;
|
|
204
|
+
neutralA14: string;
|
|
205
|
+
primary14: string;
|
|
206
|
+
accent14: string;
|
|
207
|
+
success14: string;
|
|
208
|
+
info14: string;
|
|
209
|
+
warning14: string;
|
|
210
|
+
critical14: string;
|
|
211
|
+
brand14: string;
|
|
193
212
|
neutral3: string;
|
|
194
213
|
neutralA3: string;
|
|
195
214
|
primary3: string;
|
|
@@ -49,7 +49,7 @@ export declare type CalloutProps = ExcludedProps & VariantProps<typeof BaseCallo
|
|
|
49
49
|
* Descriptive title to display in the callout
|
|
50
50
|
* @default "Information" "Success" "Warning" "Critical"
|
|
51
51
|
*/
|
|
52
|
-
title
|
|
52
|
+
title?: string;
|
|
53
53
|
/**
|
|
54
54
|
* The severity used to communicate more meaning to the user
|
|
55
55
|
* @default "info"
|