@kaizen/components 0.0.0-canary-kz-components-css-layer-pre-release-20250527021003 → 0.0.0-canary-fix-fms-popover-20250603003244
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/cjs/src/Calendar/CalendarRange/CalendarRange.cjs +13 -12
- package/dist/cjs/src/Calendar/CalendarRange/CalendarRange.module.scss.cjs +3 -2
- package/dist/cjs/src/Calendar/CalendarSingle/CalendarSingle.cjs +8 -8
- package/dist/cjs/src/Calendar/LegacyCalendarRange/LegacyCalendarRange.cjs +12 -11
- package/dist/cjs/src/Calendar/LegacyCalendarRange/LegacyCalendarRange.module.scss.cjs +1 -0
- package/dist/cjs/src/Calendar/baseCalendarClassNames.cjs +13 -11
- package/dist/cjs/src/Calendar/baseCalendarClassNames.module.scss.cjs +2 -1
- package/dist/cjs/src/Calendar/utils/setFocusInCalendar.cjs +6 -7
- package/dist/cjs/src/Filter/FilterBar/subcomponents/FilterBarSelect/FilterBarSelect.cjs +1 -1
- package/dist/cjs/src/Filter/FilterMultiSelect/FilterMultiSelect.cjs +7 -3
- package/dist/cjs/src/Filter/FilterMultiSelect/subcomponents/MenuPopup/MenuPopup.cjs +67 -37
- package/dist/cjs/src/RichTextEditor/utils/schema/marks.cjs +5 -6
- package/dist/esm/src/Calendar/CalendarRange/CalendarRange.mjs +13 -12
- package/dist/esm/src/Calendar/CalendarRange/CalendarRange.module.scss.mjs +3 -2
- package/dist/esm/src/Calendar/CalendarSingle/CalendarSingle.mjs +8 -8
- package/dist/esm/src/Calendar/LegacyCalendarRange/LegacyCalendarRange.mjs +12 -11
- package/dist/esm/src/Calendar/LegacyCalendarRange/LegacyCalendarRange.module.scss.mjs +1 -0
- package/dist/esm/src/Calendar/baseCalendarClassNames.mjs +13 -11
- package/dist/esm/src/Calendar/baseCalendarClassNames.module.scss.mjs +2 -1
- package/dist/esm/src/Calendar/utils/setFocusInCalendar.mjs +6 -7
- package/dist/esm/src/Filter/FilterBar/subcomponents/FilterBarSelect/FilterBarSelect.mjs +1 -1
- package/dist/esm/src/Filter/FilterMultiSelect/FilterMultiSelect.mjs +7 -3
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/MenuPopup/MenuPopup.mjs +68 -40
- package/dist/esm/src/RichTextEditor/utils/schema/marks.mjs +5 -6
- package/dist/styles.css +10102 -9903
- package/dist/types/Calendar/CalendarRange/CalendarRange.d.ts +2 -2
- package/dist/types/Calendar/CalendarSingle/CalendarSingle.d.ts +2 -2
- package/dist/types/Calendar/LegacyCalendarRange/LegacyCalendarRange.d.ts +2 -3
- package/dist/types/Calendar/baseCalendarClassNames.d.ts +2 -2
- package/dist/types/Filter/FilterMultiSelect/FilterMultiSelect.d.ts +1 -1
- package/dist/types/Filter/FilterMultiSelect/subcomponents/MenuPopup/MenuPopup.d.ts +7 -4
- package/dist/types/RichTextEditor/utils/schema/marks.d.ts +1 -1
- package/package.json +43 -44
- package/src/Avatar/Avatar.module.css +135 -137
- package/src/AvatarGroup/AvatarGroup.module.css +56 -58
- package/src/Badge/Badge.module.css +96 -98
- package/src/Brand/Brand.module.css +3 -5
- package/src/BrandMoment/BrandMoment.module.css +145 -147
- package/src/BrandMoment/_docs/ExampleHeaders.module.scss +66 -68
- package/src/Button/Button/Button.module.scss +133 -135
- package/src/Button/GenericButton/GenericButton.module.scss +79 -81
- package/src/Button/IconButton/IconButton.module.scss +18 -20
- package/src/ButtonGroup/ButtonGroup.module.css +36 -38
- package/src/ButtonGroup/ButtonGroup.module.scss +39 -41
- package/src/Calendar/CalendarPopover/CalendarPopover.module.scss +17 -19
- package/src/Calendar/CalendarRange/CalendarRange.module.scss +45 -47
- package/src/Calendar/CalendarRange/CalendarRange.tsx +11 -15
- package/src/Calendar/CalendarRange/_docs/CalendarRange.stickersheet.stories.tsx +1 -2
- package/src/Calendar/CalendarSingle/CalendarSingle.module.scss +9 -12
- package/src/Calendar/CalendarSingle/CalendarSingle.tsx +6 -11
- package/src/Calendar/CalendarSingle/_docs/CalendarSingle.stickersheet.stories.tsx +3 -8
- package/src/Calendar/LegacyCalendarRange/LegacyCalendarRange.module.scss +18 -21
- package/src/Calendar/LegacyCalendarRange/LegacyCalendarRange.tsx +11 -15
- package/src/Calendar/baseCalendarClassNames.module.scss +156 -151
- package/src/Calendar/baseCalendarClassNames.ts +15 -13
- package/src/Calendar/utils/isSelectingDayInCalendar.spec.tsx +1 -2
- package/src/Calendar/utils/setFocusInCalendar.spec.tsx +4 -8
- package/src/Calendar/utils/setFocusInCalendar.ts +10 -10
- package/src/Card/Card.module.css +89 -91
- package/src/Checkbox/Checkbox/Checkbox.module.scss +87 -89
- package/src/Checkbox/CheckboxField/CheckboxField.module.scss +30 -32
- package/src/Checkbox/CheckboxGroup/CheckboxGroup.module.scss +9 -11
- package/src/ClearButton/ClearButton.module.scss +30 -32
- package/src/Collapsible/Collapsible/Collapsible.module.scss +85 -87
- package/src/Collapsible/CollapsibleGroup/CollapsibleGroup.module.scss +7 -9
- package/src/Collapsible/ExpertAdviceCollapsible/ExpertAdviceCollapsible.module.scss +33 -35
- package/src/Container/Container.module.scss +9 -11
- package/src/Content/Content.module.scss +8 -10
- package/src/DateInput/DateInput/DateInput.module.scss +5 -7
- package/src/DateInput/DateInputDescription/DateInputDescription.module.scss +13 -15
- package/src/DateInput/DateInputWithIconButton/DateInputWithIconButton.module.scss +30 -32
- package/src/DatePicker/DatePicker.module.scss +5 -7
- package/src/DatePicker/DatePicker.spec.tsx +9 -10
- package/src/DatePicker/DatePicker.tsx +2 -2
- package/src/DatePicker/subcomponents/DateInputField/DateInputField.module.scss +3 -5
- package/src/DateRangePicker/DateRangePicker.module.scss +73 -75
- package/src/Divider/Divider.module.scss +33 -35
- package/src/EmptyState/EmptyState.module.css +93 -95
- package/src/ErrorPage/ErrorPage.module.scss +2 -4
- package/src/FieldGroup/FieldGroup.module.scss +6 -8
- package/src/FieldMessage/FieldMessage.module.scss +51 -53
- package/src/Filter/Filter/Filter.module.css +3 -5
- package/src/Filter/Filter/subcomponents/FilterContents/FilterContents.module.css +2 -4
- package/src/Filter/Filter/subcomponents/FilterPopover/FilterPopover.module.css +6 -8
- package/src/Filter/FilterBar/FilterBar.module.css +15 -17
- package/src/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.module.css +5 -7
- package/src/Filter/FilterBar/subcomponents/FilterBarButton/FilterBarButton.module.css +2 -4
- package/src/Filter/FilterBar/subcomponents/FilterBarDatePicker/FilterBarDatePicker.spec.tsx +2 -4
- package/src/Filter/FilterBar/subcomponents/FilterBarDateRangePicker/FilterBarDateRangePicker.spec.tsx +2 -6
- package/src/Filter/FilterBar/subcomponents/FilterBarMultiSelect/FilterBarMultiSelect.module.css +3 -5
- package/src/Filter/FilterBar/subcomponents/FilterBarMultiSelect/FilterBarMultiSelect.spec.tsx +1 -0
- package/src/Filter/FilterBar/subcomponents/FilterBarSelect/FilterBarSelect.tsx +1 -1
- package/src/Filter/FilterButton/FilterButton/FilterButton.module.css +17 -19
- package/src/Filter/FilterButton/FilterButtonRemovable/FilterButtonRemovable.module.css +2 -4
- package/src/Filter/FilterButton/subcomponents/FilterButtonBase/FilterButtonBase.module.scss +40 -42
- package/src/Filter/FilterDatePicker/FilterDatePicker.spec.tsx +2 -3
- package/src/Filter/FilterDatePicker/subcomponents/DateInputField/DateInputField.module.scss +2 -4
- package/src/Filter/FilterDatePicker/subcomponents/FilterDatePickerField/FilterDatePickerField.module.scss +4 -6
- package/src/Filter/FilterDatePicker/subcomponents/FilterDatePickerField/FilterDatePickerField.spec.tsx +4 -8
- package/src/Filter/FilterDateRangePicker/FilterDateRangePicker.module.css +5 -7
- package/src/Filter/FilterDateRangePicker/_docs/FilterDateRangePicker.stories.tsx +2 -2
- package/src/Filter/FilterDateRangePicker/subcomponents/DateRangeDisplayLabel/DateRangeDisplayLabel.module.scss +3 -5
- package/src/Filter/FilterDateRangePicker/subcomponents/DateRangeInputField/DateRangeInputField.module.scss +34 -36
- package/src/Filter/FilterDateRangePicker/subcomponents/DateRangeValidationMessage/DateRangeValidationMessage.module.scss +3 -5
- package/src/Filter/FilterDateRangePicker/subcomponents/FilterDateRangePickerField/FilterDateRangePickerField.module.scss +5 -7
- package/src/Filter/FilterDateRangePicker/subcomponents/FilterDateRangePickerField/FilterDateRangePickerField.spec.tsx +8 -14
- package/src/Filter/FilterMultiSelect/FilterMultiSelect.tsx +3 -2
- package/src/Filter/FilterMultiSelect/_docs/FilterMultiSelect.mdx +8 -0
- package/src/Filter/FilterMultiSelect/_docs/FilterMultiSelect.stories.tsx +88 -0
- package/src/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.spec.tsx +2 -18
- package/src/Filter/FilterMultiSelect/subcomponents/ListBox/ListBox.module.scss +17 -19
- package/src/Filter/FilterMultiSelect/subcomponents/ListBoxSection/ListBoxSection.module.scss +12 -14
- package/src/Filter/FilterMultiSelect/subcomponents/LoadMoreButton/LoadMoreButton.module.scss +2 -4
- package/src/Filter/FilterMultiSelect/subcomponents/MenuLayout/MenuFooter/MenuFooter.module.scss +5 -7
- package/src/Filter/FilterMultiSelect/subcomponents/MenuLayout/MenuLoadingSkeleton/MenuLoadingSkeleton.module.scss +6 -8
- package/src/Filter/FilterMultiSelect/subcomponents/MenuPopup/MenuPopup.module.scss +21 -17
- package/src/Filter/FilterMultiSelect/subcomponents/MenuPopup/MenuPopup.tsx +81 -41
- package/src/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.module.scss +88 -90
- package/src/Filter/FilterMultiSelect/subcomponents/NoResults/NoResults.module.scss +2 -4
- package/src/Filter/FilterMultiSelect/subcomponents/SearchInput/SearchInput.module.scss +3 -5
- package/src/Filter/FilterMultiSelect/subcomponents/SectionDivider/SectionDivider.module.scss +2 -4
- package/src/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/SelectionControlButton.module.scss +50 -52
- package/src/Filter/FilterMultiSelect/subcomponents/Trigger/RemovableFilterTrigger/RemovableFilterTrigger.module.css +2 -4
- package/src/Filter/FilterSelect/FilterSelect.module.css +7 -9
- package/src/Focusable/Focusable.module.scss +2 -4
- package/src/GuidanceBlock/GuidanceBlock.module.css +210 -212
- package/src/Heading/Heading.module.scss +85 -87
- package/src/Icon/_docs/icon.module.scss +33 -35
- package/src/Icon/subcomponents/SVG/SVG.module.scss +24 -26
- package/src/Illustration/subcomponents/Base/Base.module.scss +98 -100
- package/src/Input/Input/Input.module.scss +215 -217
- package/src/Input/InputRange/InputRange.module.scss +136 -138
- package/src/Input/InputSearch/InputSearch.module.scss +152 -155
- package/src/Label/Label.module.scss +80 -82
- package/src/LabelledMessage/LabelledMessage.module.scss +6 -8
- package/src/LikertScaleLegacy/LikertScaleLegacy.module.scss +264 -266
- package/src/Link/Link.module.css +113 -115
- package/src/LinkButton/LinkButton.module.css +3 -5
- package/src/Loading/LoadingGraphic/LoadingGraphic.module.scss +10 -12
- package/src/Loading/LoadingHeading/LoadingHeading.module.scss +42 -44
- package/src/Loading/LoadingInput/LoadingInput.module.scss +9 -11
- package/src/Loading/LoadingParagraph/LoadingParagraph.module.scss +45 -47
- package/src/Loading/LoadingSpinner/LoadingSpinner.module.css +20 -22
- package/src/Loading/_mixins.scss +9 -11
- package/src/Menu/subcomponents/MenuDropdown/MenuDropdown.module.scss +16 -18
- package/src/Menu/subcomponents/MenuHeading/MenuHeading.module.scss +6 -8
- package/src/Menu/subcomponents/MenuItem/MenuItem.module.scss +72 -74
- package/src/Menu/subcomponents/MenuList/MenuList.module.scss +12 -14
- package/src/Menu/subcomponents/StatelessMenu/StatelessMenu.module.scss +2 -4
- package/src/Modal/ConfirmationModal/ConfirmationModal.module.scss +124 -126
- package/src/Modal/ContextModal/ContextModal.module.scss +70 -72
- package/src/Modal/GenericModal/GenericModal.module.scss +90 -92
- package/src/Modal/GenericModal/subcomponents/ModalAccessibleDescription/ModalAccessibleDescription.module.scss +2 -4
- package/src/Modal/GenericModal/subcomponents/ModalAccessibleLabel/ModalAccessibleLabel.module.scss +23 -25
- package/src/Modal/GenericModal/subcomponents/ModalBody/ModalBody.module.scss +3 -5
- package/src/Modal/GenericModal/subcomponents/ModalFooter/ModalFooter.module.scss +53 -55
- package/src/Modal/GenericModal/subcomponents/ModalHeader/ModalHeader.module.scss +15 -17
- package/src/Modal/InputEditModal/InputEditModal.module.scss +30 -32
- package/src/MultiSelect/MultiSelect.module.scss +5 -7
- package/src/MultiSelect/subcomponents/Checkbox/Checkbox.module.scss +57 -59
- package/src/MultiSelect/subcomponents/MultiSelectOptionField/MultiSelectOptionField.module.scss +53 -55
- package/src/MultiSelect/subcomponents/MultiSelectOptions/MultiSelectOptions.module.scss +6 -8
- package/src/MultiSelect/subcomponents/MultiSelectToggle/MultiSelectToggle.module.scss +64 -66
- package/src/MultiSelect/subcomponents/Popover/Popover.module.scss +13 -15
- package/src/Notification/ToastNotification/ToastNotificationsList/ToastNotificationsList.module.scss +19 -21
- package/src/Notification/subcomponents/GenericNotification/GenericNotification.module.scss +110 -112
- package/src/Notification/subcomponents/GenericNotification/_mixins.scss +276 -278
- package/src/Notification/subcomponents/NotificationIcon/NotificationIcon.module.css +2 -4
- package/src/Pagination/Pagination.module.scss +37 -39
- package/src/Pagination/subcomponents/DirectionalLink/DirectionalLink.module.scss +9 -11
- package/src/Pagination/subcomponents/PaginationLink/PaginationLink.module.scss +51 -53
- package/src/Pagination/subcomponents/TruncateIndicator/TruncateIndicator.module.css +8 -10
- package/src/Popover/Popover.module.scss +185 -187
- package/src/ProgressBar/ProgressBar.module.scss +73 -75
- package/src/ProgressBar/subcomponents/Label/Label.module.scss +4 -6
- package/src/Radio/Radio/Radio.module.scss +58 -60
- package/src/Radio/RadioField/RadioField.module.scss +32 -33
- package/src/Radio/RadioGroup/RadioGroup.module.scss +16 -18
- package/src/RichTextEditor/EditableRichTextContent/EditableRichTextContent.module.scss +30 -32
- package/src/RichTextEditor/RichTextContent/RichTextContent.module.scss +2 -4
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss +74 -76
- package/src/RichTextEditor/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.module.scss +90 -92
- package/src/RichTextEditor/RichTextEditor/subcomponents/Toolbar/Toolbar.module.scss +3 -5
- package/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.module.scss +10 -12
- package/src/RichTextEditor/_mixins.scss +1 -2
- package/src/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.module.scss +3 -5
- package/src/RichTextEditor/utils/plugins/LinkManager/components/LinkPopover/LinkPopover.module.scss +20 -22
- package/src/RichTextEditor/utils/schema/marks.ts +8 -9
- package/src/SearchField/SearchField.module.scss +3 -5
- package/src/Select/Select.module.scss +0 -17
- package/src/Skirt/Skirt.module.scss +22 -24
- package/src/Skirt/subcomponents/SkirtCard/SkirtCard.module.scss +11 -13
- package/src/Slider/Slider.module.scss +32 -34
- package/src/SplitButton/SplitButton.module.scss +3 -5
- package/src/SplitButton/subcomponents/ActionButton/ActionButton.module.scss +5 -7
- package/src/SplitButton/subcomponents/BaseButton/BaseButton.module.scss +63 -65
- package/src/SplitButton/subcomponents/DropdownButton/DropdownButton.module.scss +17 -19
- package/src/Table/Table.module.scss +249 -251
- package/src/Tabs/subcomponents/Tab.module.scss +79 -81
- package/src/Tabs/subcomponents/TabList.module.scss +6 -8
- package/src/Tabs/subcomponents/TabPanel.module.scss +8 -10
- package/src/Tag/Tag.module.scss +164 -166
- package/src/Tag/subcomponents/LiveIcon/LiveIcon.module.css +40 -42
- package/src/Text/Text.module.scss +55 -57
- package/src/TextArea/TextArea.module.css +100 -103
- package/src/TextAreaField/TextAreaField.module.scss +12 -14
- package/src/TextField/TextField.module.scss +14 -16
- package/src/Tile/MultiActionTile/MultiActionTile.module.scss +5 -7
- package/src/Tile/TileGrid/TileGrid.module.scss +16 -18
- package/src/Tile/subcomponents/GenericTile/GenericTile.module.scss +121 -123
- package/src/TimeField/TimeField.module.scss +55 -57
- package/src/TimeField/subcomponents/TimeSegment/TimeSegment.module.scss +35 -37
- package/src/TitleBlockZen/TitleBlockZen.module.scss +505 -507
- package/src/TitleBlockZen/subcomponents/MainActions.module.scss +9 -11
- package/src/TitleBlockZen/subcomponents/MobileActions.module.scss +144 -146
- package/src/TitleBlockZen/subcomponents/NavigationTabs.module.scss +103 -105
- package/src/TitleBlockZen/subcomponents/TitleBlockMenuItem.module.scss +72 -74
- package/src/TitleBlockZen/subcomponents/Toolbar.module.scss +26 -28
- package/src/ToggleSwitch/ToggleSwitch/ToggleSwitch.module.scss +103 -105
- package/src/ToggleSwitch/ToggleSwitchField/ToggleSwitchField.module.scss +9 -11
- package/src/Tooltip/Tooltip.module.scss +137 -139
- package/src/VisuallyHidden/VisuallyHidden.module.scss +8 -10
- package/src/Well/Well.module.css +102 -104
- package/src/Workflow/subcomponents/Footer/components/FooterActions/FooterActions.module.css +12 -14
- package/src/Workflow/subcomponents/Footer/components/ProgressStepper/ProgressStepper.module.css +99 -101
- package/src/Workflow/subcomponents/Footer/components/Root/FooterRoot.module.css +17 -19
- package/src/Workflow/subcomponents/Header/components/Actions/Actions.module.css +12 -14
- package/src/Workflow/subcomponents/Header/components/Branding/Branding.module.css +10 -12
- package/src/Workflow/subcomponents/Header/components/Root/Root.module.css +17 -19
- package/src/Workflow/subcomponents/Header/components/Titles/Titles.module.css +17 -19
- package/src/Workflow/subcomponents/Main/Main.module.css +3 -5
- package/src/Workflow/subcomponents/Wrapper/Wrapper.module.css +6 -8
- package/src/__next__/Button/Button.module.css +218 -220
- package/src/__next__/Button/subcomponents/ButtonContent/ButtonContent.module.css +15 -17
- package/src/__next__/Button/subcomponents/PendingContent/PendingContent.module.css +13 -15
- package/src/__next__/Icon/Icon.module.css +38 -40
- package/src/__next__/Icon/_docs/Icon.docs.module.css +11 -13
- package/src/__next__/Menu/Menu.module.css +28 -30
- package/src/__next__/Menu/MenuItem.module.css +39 -41
- package/src/__next__/Select/Select.module.scss +6 -8
- package/src/__next__/Select/subcomponents/ListBox/ListBox.module.scss +10 -12
- package/src/__next__/Select/subcomponents/ListBoxSection/ListBoxSection.module.scss +13 -15
- package/src/__next__/Select/subcomponents/Option/Option.module.scss +51 -53
- package/src/__next__/Select/subcomponents/SectionDivider/SectionDivider.module.scss +6 -8
- package/src/__next__/Select/subcomponents/SelectPopoverContents/SelectPopoverContents.module.scss +2 -4
- package/src/__next__/Select/subcomponents/SelectToggle/SelectToggle.module.scss +103 -105
- package/src/__next__/Tabs/subcomponents/Tab/Tab.module.css +79 -81
- package/src/__next__/Tabs/subcomponents/TabList/TabList.module.css +54 -56
- package/src/__next__/Tabs/subcomponents/TabPanel/TabPanel.module.css +8 -10
- package/src/__next__/Tag/RemovableTag/RemovableTag.module.scss +4 -6
- package/src/__next__/Tag/RemovableTag/subcomponents/RemoveButton.module.scss +24 -26
- package/src/__next__/Tag/Tag/Tag.module.scss +54 -56
- package/src/__next__/Tooltip/OverlayArrow.module.scss +38 -40
- package/src/__next__/Tooltip/Tooltip.module.scss +37 -39
- package/src/__next__/Tooltip/_docs/ApiSpecification.mdx +2 -2
- package/src/__next__/Tooltip/_docs/Tooltip.docs.stories.tsx +30 -15
- package/src/__next__/Tooltip/_docs/Tooltip.mdx +1 -1
- package/src/__next__/Tooltip/_docs/Tooltip.spec.stories.tsx +58 -21
- package/src/__next__/Tooltip/_docs/Tooltip.stories.tsx +2 -2
- package/src/utils/AppearanceAnim.module.scss +12 -14
|
@@ -4,68 +4,66 @@
|
|
|
4
4
|
@import '~@kaizen/design-tokens/sass/spacing';
|
|
5
5
|
@import '../../../../../styles/utils/button-reset';
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
$focus-ring-offset: 1px;
|
|
7
|
+
$focus-ring-offset: 1px;
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
.button {
|
|
10
|
+
@include button-reset;
|
|
12
11
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
position: relative;
|
|
15
|
+
display: inline-flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
gap: $spacing-xs;
|
|
18
|
+
border: $border-solid-border-width $border-solid-border-style;
|
|
19
|
+
border-color: $border-borderless-border-color;
|
|
20
|
+
border-radius: $border-solid-border-radius;
|
|
21
|
+
padding: $spacing-4 $spacing-8;
|
|
22
|
+
font-weight: $typography-button-secondary-font-weight;
|
|
23
|
+
font-family: $typography-button-secondary-font-family;
|
|
24
|
+
font-size: $typography-button-secondary-font-size;
|
|
25
|
+
line-height: $typography-button-secondary-line-height;
|
|
26
|
+
letter-spacing: $typography-button-secondary-letter-spacing;
|
|
27
|
+
color: $color-blue-500;
|
|
29
28
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
&:focus {
|
|
30
|
+
outline: none;
|
|
31
|
+
}
|
|
33
32
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
33
|
+
&:hover,
|
|
34
|
+
&:active,
|
|
35
|
+
&:focus {
|
|
36
|
+
&:not(.isDisabled) {
|
|
37
|
+
background-color: $color-blue-100;
|
|
40
38
|
}
|
|
39
|
+
}
|
|
41
40
|
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
&:focus-visible::after {
|
|
42
|
+
$focus-ring-offset: calc((#{$border-focus-ring-border-width} * 2) + 1px);
|
|
44
43
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
44
|
+
content: '';
|
|
45
|
+
position: absolute;
|
|
46
|
+
background: transparent;
|
|
47
|
+
border-radius: $border-focus-ring-border-radius;
|
|
48
|
+
border-width: $border-focus-ring-border-width;
|
|
49
|
+
border-style: $border-focus-ring-border-style;
|
|
50
|
+
border-color: $color-blue-500;
|
|
51
|
+
inset: calc(-1 * #{$focus-ring-offset});
|
|
52
|
+
}
|
|
54
53
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
54
|
+
// TODO: copied from Calendar button since the design is not settled
|
|
55
|
+
&.isDisabled {
|
|
56
|
+
pointer-events: none;
|
|
57
|
+
color: rgba($color-purple-800-rgb, 0.3);
|
|
58
|
+
opacity: 100%;
|
|
60
59
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
60
|
+
&:focus {
|
|
61
|
+
outline: none;
|
|
62
|
+
border: 2px solid transparent;
|
|
63
|
+
}
|
|
65
64
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
65
|
+
&:focus-visible::after {
|
|
66
|
+
border-color: $color-gray-400;
|
|
69
67
|
}
|
|
70
68
|
}
|
|
71
69
|
}
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
padding: unset; /* Padding is added by <SelectPopoverContents> */
|
|
9
|
-
}
|
|
1
|
+
/* This a temporary fix to increase specificity, until we figure out why this CSS is being compiled later than the padding in the FilterContents sub-component */
|
|
2
|
+
.filterContents.filterContents {
|
|
3
|
+
box-sizing: border-box;
|
|
4
|
+
min-width: 12.25rem; /* 196px */
|
|
5
|
+
max-width: 25rem; /* 400px */
|
|
6
|
+
overflow: auto;
|
|
7
|
+
padding: unset; /* Padding is added by <SelectPopoverContents> */
|
|
10
8
|
}
|
|
@@ -1,277 +1,275 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
.banner.noMaxWidth {
|
|
2
|
+
max-width: inherit;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.banner {
|
|
6
|
+
--border-width: var(--border-width-1);
|
|
7
|
+
--banner-padding: var(--spacing-lg);
|
|
8
|
+
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
gap: var(--spacing-12);
|
|
12
|
+
min-width: 320px;
|
|
13
|
+
max-width: var(--layout-breakpoints-large);
|
|
14
|
+
border: var(--border-width) var(--border-solid-border-style);
|
|
15
|
+
border-radius: var(--border-solid-border-radius);
|
|
16
|
+
padding: calc(var(--banner-padding) - var(--border-width));
|
|
17
|
+
box-shadow: var(--shadow-small-box-shadow);
|
|
18
|
+
position: relative;
|
|
19
|
+
top: -1px;
|
|
20
|
+
transition:
|
|
21
|
+
opacity var(--animation-duration-slow) ease,
|
|
22
|
+
margin-top var(--animation-duration-fast) var(--animation-duration-slow) ease;
|
|
23
|
+
color: var(--color-purple-800);
|
|
24
|
+
|
|
25
|
+
@media (width >= 1024px) {
|
|
26
|
+
min-height: calc(12rem - calc(var(--banner-padding) * 2));
|
|
27
|
+
flex-direction: row;
|
|
28
|
+
gap: var(--spacing-24);
|
|
29
|
+
width: auto;
|
|
30
|
+
align-items: center;
|
|
4
31
|
}
|
|
5
32
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
33
|
+
@media (width <= 767px) {
|
|
34
|
+
min-width: unset;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
9
37
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
gap: var(--spacing-12);
|
|
13
|
-
min-width: 320px;
|
|
14
|
-
max-width: var(--layout-breakpoints-large);
|
|
15
|
-
border: var(--border-width) var(--border-solid-border-style);
|
|
16
|
-
border-radius: var(--border-solid-border-radius);
|
|
17
|
-
padding: calc(var(--banner-padding) - var(--border-width));
|
|
18
|
-
box-shadow: var(--shadow-small-box-shadow);
|
|
19
|
-
position: relative;
|
|
20
|
-
top: -1px;
|
|
21
|
-
transition:
|
|
22
|
-
opacity var(--animation-duration-slow) ease,
|
|
23
|
-
margin-top var(--animation-duration-fast) var(--animation-duration-slow) ease;
|
|
24
|
-
color: var(--color-purple-800);
|
|
38
|
+
.illustrationWrapper {
|
|
39
|
+
display: flex;
|
|
25
40
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}
|
|
41
|
+
@media (768px <= width <= 1023px) {
|
|
42
|
+
text-align: center;
|
|
43
|
+
justify-content: center;
|
|
44
|
+
align-self: center;
|
|
45
|
+
padding: var(--spacing-12);
|
|
46
|
+
}
|
|
33
47
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
48
|
+
@media (width <= 767px) {
|
|
49
|
+
display: none;
|
|
37
50
|
}
|
|
51
|
+
}
|
|
38
52
|
|
|
39
|
-
|
|
53
|
+
.illustration {
|
|
54
|
+
--illustration-size: 155px;
|
|
55
|
+
--scene-illustration-size: 300px;
|
|
56
|
+
|
|
57
|
+
width: var(--illustration-size);
|
|
58
|
+
height: var(--illustration-size);
|
|
59
|
+
|
|
60
|
+
/* This has been created to handle scene illustrations consistently until the tile component is created */
|
|
61
|
+
.hasSceneIllustration & {
|
|
40
62
|
display: flex;
|
|
63
|
+
justify-content: center;
|
|
64
|
+
max-width: var(--scene-illustration-size);
|
|
65
|
+
max-height: var(--scene-illustration-size);
|
|
66
|
+
width: var(--scene-illustration-size);
|
|
67
|
+
height: auto;
|
|
41
68
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
padding: var(--spacing-12);
|
|
69
|
+
figure {
|
|
70
|
+
max-height: 100%;
|
|
71
|
+
max-width: 100%;
|
|
72
|
+
aspect-ratio: 4/3;
|
|
47
73
|
}
|
|
48
74
|
|
|
49
|
-
|
|
50
|
-
|
|
75
|
+
img {
|
|
76
|
+
height: 100%;
|
|
77
|
+
object-fit: contain;
|
|
78
|
+
object-position: center;
|
|
51
79
|
}
|
|
52
80
|
}
|
|
81
|
+
}
|
|
53
82
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
height: var(--illustration-size);
|
|
83
|
+
.descriptionContainer {
|
|
84
|
+
flex: 1;
|
|
85
|
+
text-align: center;
|
|
86
|
+
align-self: center;
|
|
87
|
+
max-width: 780px;
|
|
60
88
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
justify-content: center;
|
|
65
|
-
max-width: var(--scene-illustration-size);
|
|
66
|
-
max-height: var(--scene-illustration-size);
|
|
67
|
-
width: var(--scene-illustration-size);
|
|
68
|
-
height: auto;
|
|
69
|
-
|
|
70
|
-
figure {
|
|
71
|
-
max-height: 100%;
|
|
72
|
-
max-width: 100%;
|
|
73
|
-
aspect-ratio: 4/3;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
img {
|
|
77
|
-
height: 100%;
|
|
78
|
-
object-fit: contain;
|
|
79
|
-
object-position: center;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
89
|
+
@media (width >= 1024px) {
|
|
90
|
+
padding: 0 var(--spacing-12);
|
|
91
|
+
text-align: start;
|
|
82
92
|
}
|
|
83
93
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
94
|
+
@media (width <= 767px) {
|
|
95
|
+
margin: var(--spacing-12);
|
|
96
|
+
max-width: 100%;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
89
99
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
100
|
+
.descriptionAndActions {
|
|
101
|
+
display: flex;
|
|
102
|
+
flex: 1;
|
|
103
|
+
align-items: center;
|
|
104
|
+
justify-content: space-between;
|
|
105
|
+
gap: var(--spacing-24);
|
|
94
106
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
107
|
+
@media (width <= 1023px) {
|
|
108
|
+
flex-direction: column;
|
|
109
|
+
width: 100%;
|
|
110
|
+
align-items: unset;
|
|
99
111
|
}
|
|
112
|
+
}
|
|
100
113
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
114
|
+
.buttonContainer {
|
|
115
|
+
display: flex;
|
|
116
|
+
justify-content: center;
|
|
117
|
+
flex-direction: row-reverse;
|
|
118
|
+
gap: var(--spacing-12);
|
|
119
|
+
min-width: max-content;
|
|
107
120
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
width: 100%;
|
|
111
|
-
align-items: unset;
|
|
112
|
-
}
|
|
121
|
+
@media (width >= 768px) {
|
|
122
|
+
text-align: center;
|
|
113
123
|
}
|
|
114
124
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
125
|
+
@media (width <= 767px) {
|
|
126
|
+
flex-direction: column;
|
|
127
|
+
width: 100%;
|
|
128
|
+
margin-top: var(--spacing-6);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
121
131
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
132
|
+
.hidden {
|
|
133
|
+
opacity: 0;
|
|
134
|
+
margin-bottom: 0;
|
|
135
|
+
}
|
|
125
136
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
margin-top: var(--spacing-6);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
137
|
+
.headingWrapper {
|
|
138
|
+
margin-bottom: var(--spacing-24);
|
|
139
|
+
}
|
|
132
140
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
141
|
+
.default {
|
|
142
|
+
border-color: var(--color-gray-500);
|
|
143
|
+
background: var(--color-white);
|
|
144
|
+
}
|
|
137
145
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
146
|
+
.positive {
|
|
147
|
+
border-color: var(--color-green-500);
|
|
148
|
+
background: var(--color-green-100);
|
|
149
|
+
}
|
|
141
150
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
151
|
+
.negative,
|
|
152
|
+
.assertive {
|
|
153
|
+
border-color: var(--color-red-500);
|
|
154
|
+
background: var(--color-red-100);
|
|
155
|
+
}
|
|
146
156
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
157
|
+
.informative {
|
|
158
|
+
border-color: var(--color-blue-400);
|
|
159
|
+
background: var(--color-blue-100);
|
|
160
|
+
}
|
|
151
161
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
}
|
|
162
|
+
.cautionary {
|
|
163
|
+
border-color: var(--color-yellow-700);
|
|
164
|
+
background: var(--color-yellow-100);
|
|
165
|
+
}
|
|
157
166
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
167
|
+
.prominent {
|
|
168
|
+
border-color: var(--color-purple-400);
|
|
169
|
+
background: var(--color-purple-100);
|
|
170
|
+
}
|
|
162
171
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
172
|
+
.inline,
|
|
173
|
+
.stacked {
|
|
174
|
+
flex-flow: row wrap;
|
|
175
|
+
align-items: unset;
|
|
176
|
+
gap: var(--spacing-24);
|
|
177
|
+
min-width: unset;
|
|
167
178
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
background: var(--color-purple-100);
|
|
179
|
+
@media (width <= 1023px) {
|
|
180
|
+
flex-direction: unset;
|
|
171
181
|
}
|
|
172
182
|
|
|
173
|
-
.
|
|
174
|
-
|
|
175
|
-
flex-flow: row wrap;
|
|
176
|
-
align-items: unset;
|
|
177
|
-
gap: var(--spacing-24);
|
|
178
|
-
min-width: unset;
|
|
183
|
+
.illustrationWrapper {
|
|
184
|
+
margin-inline-end: var(--spacing-12);
|
|
179
185
|
|
|
180
|
-
@media (width <= 1023px) {
|
|
181
|
-
|
|
186
|
+
@media (768px <= width <= 1023px) {
|
|
187
|
+
padding: 0;
|
|
182
188
|
}
|
|
183
189
|
|
|
184
|
-
|
|
185
|
-
|
|
190
|
+
@media (width <= 767px) {
|
|
191
|
+
display: flex;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
186
194
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
195
|
+
.descriptionAndActions {
|
|
196
|
+
margin: auto 0;
|
|
197
|
+
}
|
|
190
198
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
199
|
+
.descriptionContainer {
|
|
200
|
+
text-align: start;
|
|
201
|
+
max-width: unset;
|
|
202
|
+
min-width: 320px;
|
|
195
203
|
|
|
196
|
-
|
|
197
|
-
|
|
204
|
+
@media (width >= 1024px) {
|
|
205
|
+
padding: 0;
|
|
198
206
|
}
|
|
199
207
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
208
|
+
@media (width <= 767px) {
|
|
209
|
+
margin: 0;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
204
212
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
213
|
+
.buttonContainer {
|
|
214
|
+
padding-inline-start: var(--spacing-12);
|
|
215
|
+
justify-content: flex-start;
|
|
216
|
+
width: unset;
|
|
217
|
+
min-width: unset;
|
|
208
218
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
}
|
|
219
|
+
@media (width <= 767px) {
|
|
220
|
+
flex-direction: row-reverse;
|
|
212
221
|
}
|
|
213
222
|
|
|
214
|
-
|
|
215
|
-
padding-inline-start: var(--spacing-12);
|
|
216
|
-
justify-content: flex-start;
|
|
223
|
+
> * {
|
|
217
224
|
width: unset;
|
|
218
|
-
|
|
225
|
+
}
|
|
226
|
+
}
|
|
219
227
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
228
|
+
&.hasSceneIllustration {
|
|
229
|
+
justify-content: center;
|
|
230
|
+
}
|
|
223
231
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
}
|
|
227
|
-
}
|
|
232
|
+
&.centerContent {
|
|
233
|
+
flex-direction: column;
|
|
228
234
|
|
|
229
|
-
&.hasSceneIllustration {
|
|
230
|
-
|
|
235
|
+
&.hasSceneIllustration .illustration {
|
|
236
|
+
width: 100%;
|
|
231
237
|
}
|
|
232
238
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
&.hasSceneIllustration .illustration {
|
|
237
|
-
width: 100%;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.illustrationWrapper {
|
|
241
|
-
margin: 0 auto;
|
|
242
|
-
align-self: center;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.descriptionContainer {
|
|
246
|
-
text-align: center;
|
|
247
|
-
min-width: unset;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
.buttonContainer {
|
|
251
|
-
padding: 0;
|
|
252
|
-
flex-direction: column;
|
|
253
|
-
min-width: unset;
|
|
254
|
-
justify-content: center;
|
|
255
|
-
}
|
|
239
|
+
.illustrationWrapper {
|
|
240
|
+
margin: 0 auto;
|
|
241
|
+
align-self: center;
|
|
256
242
|
}
|
|
257
243
|
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
}
|
|
244
|
+
.descriptionContainer {
|
|
245
|
+
text-align: center;
|
|
246
|
+
min-width: unset;
|
|
262
247
|
}
|
|
263
|
-
}
|
|
264
248
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
.descriptionAndActions {
|
|
249
|
+
.buttonContainer {
|
|
250
|
+
padding: 0;
|
|
268
251
|
flex-direction: column;
|
|
269
|
-
|
|
252
|
+
min-width: unset;
|
|
253
|
+
justify-content: center;
|
|
270
254
|
}
|
|
255
|
+
}
|
|
271
256
|
|
|
257
|
+
&.centerContent.smallScreenTextAlignment {
|
|
272
258
|
.descriptionContainer {
|
|
273
|
-
align
|
|
259
|
+
text-align: start;
|
|
274
260
|
}
|
|
275
261
|
}
|
|
276
|
-
/* stylelint-enable no-descending-specificity */
|
|
277
262
|
}
|
|
263
|
+
|
|
264
|
+
/* stylelint-disable no-descending-specificity */
|
|
265
|
+
.stacked {
|
|
266
|
+
.descriptionAndActions {
|
|
267
|
+
flex-direction: column;
|
|
268
|
+
align-items: unset;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.descriptionContainer {
|
|
272
|
+
align-self: flex-start;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
/* stylelint-enable no-descending-specificity */
|