@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
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { type
|
|
1
|
+
import { type DayPickerRangeProps } from 'react-day-picker';
|
|
2
2
|
import { type OverrideClassName } from "../../types/OverrideClassName";
|
|
3
3
|
export type CalendarRangeElement = HTMLDivElement;
|
|
4
4
|
export type CalendarRangeProps = {
|
|
5
5
|
id?: string;
|
|
6
6
|
onMount?: (calendarElement: CalendarRangeElement) => void;
|
|
7
7
|
hasDivider?: boolean;
|
|
8
|
-
} & OverrideClassName<Omit<
|
|
8
|
+
} & OverrideClassName<Omit<DayPickerRangeProps, 'mode'>>;
|
|
9
9
|
export declare const CalendarRange: {
|
|
10
10
|
({ id, onMount, hasDivider, classNameOverride, selected, defaultMonth, numberOfMonths, locale, ...restProps }: CalendarRangeProps): JSX.Element;
|
|
11
11
|
displayName: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { type
|
|
1
|
+
import { type DayPickerSingleProps } from 'react-day-picker';
|
|
2
2
|
import { type OverrideClassName } from "../../types/OverrideClassName";
|
|
3
3
|
export type CalendarSingleElement = HTMLDivElement;
|
|
4
4
|
export type CalendarSingleProps = {
|
|
5
5
|
id?: string;
|
|
6
6
|
onMount?: (calendarElement: CalendarSingleElement) => void;
|
|
7
|
-
} & OverrideClassName<Omit<
|
|
7
|
+
} & OverrideClassName<Omit<DayPickerSingleProps, 'mode'>>;
|
|
8
8
|
export declare const CalendarSingle: {
|
|
9
9
|
({ id, onMount, classNameOverride, selected, defaultMonth, weekStartsOn, locale, ...restProps }: CalendarSingleProps): JSX.Element;
|
|
10
10
|
displayName: string;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import type { Locale } from 'date-fns';
|
|
3
|
-
import { type DateRange, type
|
|
2
|
+
import { type DateRange, type DayClickEventHandler, type Matcher } from 'react-day-picker';
|
|
4
3
|
import { DayOfWeek } from '../enums';
|
|
5
4
|
export type LegacyCalendarRangeElement = HTMLDivElement;
|
|
6
5
|
export type LegacyCalendarRangeProps = {
|
|
@@ -10,7 +9,7 @@ export type LegacyCalendarRangeProps = {
|
|
|
10
9
|
disabledDays?: Matcher[];
|
|
11
10
|
selectedRange?: DateRange;
|
|
12
11
|
locale: Locale;
|
|
13
|
-
onDayChange:
|
|
12
|
+
onDayChange: DayClickEventHandler;
|
|
14
13
|
};
|
|
15
14
|
export declare const LegacyCalendarRange: {
|
|
16
15
|
({ classNameOverride, defaultMonth, weekStartsOn, disabledDays, selectedRange, locale, onDayChange, }: LegacyCalendarRangeProps): JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
export declare const baseCalendarClassNames:
|
|
1
|
+
import { type ClassNames } from 'react-day-picker';
|
|
2
|
+
export declare const baseCalendarClassNames: ClassNames;
|
|
@@ -19,7 +19,7 @@ export type FilterMultiSelectProps = {
|
|
|
19
19
|
className?: string;
|
|
20
20
|
} & Omit<MenuPopupProps, 'children'> & Omit<MenuTriggerProviderProps, 'children'> & SelectionProps;
|
|
21
21
|
export declare const FilterMultiSelect: {
|
|
22
|
-
({ trigger, children, isOpen, defaultOpen, onOpenChange, isLoading, loadingSkeleton, label, items, selectedKeys, defaultSelectedKeys, onSelectionChange, selectionMode, onSearchInputChange, triggerRef, className, }: FilterMultiSelectProps): JSX.Element;
|
|
22
|
+
({ trigger, children, isOpen, defaultOpen, onOpenChange, isLoading, loadingSkeleton, label, items, selectedKeys, defaultSelectedKeys, onSelectionChange, selectionMode, onSearchInputChange, triggerRef, className, floatingOptions, }: FilterMultiSelectProps): JSX.Element;
|
|
23
23
|
displayName: string;
|
|
24
24
|
TriggerButton: {
|
|
25
25
|
({ selectedOptionLabels, label, classNameOverride, labelCharacterLimitBeforeTruncate, }: import("./subcomponents/Trigger").FilterTriggerButtonProps): JSX.Element;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { type HTMLAttributes } from 'react';
|
|
2
|
+
import { type UseFloatingOptions } from '@floating-ui/react-dom';
|
|
3
|
+
import { type OverrideClassName } from "../../../../types/OverrideClassName";
|
|
2
4
|
export type MenuPopupProps = {
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
floatingOptions?: Partial<UseFloatingOptions>;
|
|
3
7
|
isLoading?: boolean;
|
|
4
8
|
loadingSkeleton?: React.ReactNode;
|
|
5
|
-
|
|
6
|
-
};
|
|
9
|
+
} & OverrideClassName<HTMLAttributes<HTMLDivElement>>;
|
|
7
10
|
export declare const MenuPopup: {
|
|
8
|
-
({ isLoading, loadingSkeleton,
|
|
11
|
+
({ children, floatingOptions, classNameOverride, isLoading, loadingSkeleton, ...restProps }: MenuPopupProps): JSX.Element;
|
|
9
12
|
displayName: string;
|
|
10
13
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { MarkSpec } from 'prosemirror-model';
|
|
2
|
-
export declare const getMarks: () =>
|
|
2
|
+
export declare const getMarks: () => MarkSpec;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaizen/components",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-fix-fms-popover-20250603003244",
|
|
4
4
|
"description": "Kaizen component library",
|
|
5
5
|
"author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
|
|
6
6
|
"homepage": "https://cultureamp.design",
|
|
@@ -103,44 +103,44 @@
|
|
|
103
103
|
},
|
|
104
104
|
"dependencies": {
|
|
105
105
|
"@floating-ui/react-dom": "^2.1.2",
|
|
106
|
-
"@headlessui/react": "^2.2.
|
|
107
|
-
"@internationalized/date": "^3.
|
|
106
|
+
"@headlessui/react": "^2.2.0",
|
|
107
|
+
"@internationalized/date": "^3.7.0",
|
|
108
108
|
"@popperjs/core": "^2.11.8",
|
|
109
109
|
"@reach/tabs": "^0.18.0",
|
|
110
|
-
"@react-aria/button": "^3.
|
|
111
|
-
"@react-aria/datepicker": "^3.14.
|
|
112
|
-
"@react-aria/focus": "^3.20.
|
|
113
|
-
"@react-aria/i18n": "^3.12.
|
|
114
|
-
"@react-aria/listbox": "^3.14.
|
|
115
|
-
"@react-aria/menu": "^3.18.
|
|
116
|
-
"@react-aria/overlays": "^3.
|
|
117
|
-
"@react-aria/select": "^3.15.
|
|
118
|
-
"@react-aria/utils": "^3.
|
|
119
|
-
"@react-stately/collections": "^3.12.
|
|
120
|
-
"@react-stately/datepicker": "^3.
|
|
121
|
-
"@react-stately/list": "^3.12.
|
|
122
|
-
"@react-stately/menu": "^3.9.
|
|
123
|
-
"@react-stately/select": "^3.6.
|
|
124
|
-
"@react-types/shared": "^3.
|
|
110
|
+
"@react-aria/button": "^3.12.1",
|
|
111
|
+
"@react-aria/datepicker": "^3.14.1",
|
|
112
|
+
"@react-aria/focus": "^3.20.1",
|
|
113
|
+
"@react-aria/i18n": "^3.12.7",
|
|
114
|
+
"@react-aria/listbox": "^3.14.2",
|
|
115
|
+
"@react-aria/menu": "^3.18.1",
|
|
116
|
+
"@react-aria/overlays": "^3.26.1",
|
|
117
|
+
"@react-aria/select": "^3.15.3",
|
|
118
|
+
"@react-aria/utils": "^3.28.1",
|
|
119
|
+
"@react-stately/collections": "^3.12.2",
|
|
120
|
+
"@react-stately/datepicker": "^3.13.0",
|
|
121
|
+
"@react-stately/list": "^3.12.0",
|
|
122
|
+
"@react-stately/menu": "^3.9.2",
|
|
123
|
+
"@react-stately/select": "^3.6.11",
|
|
124
|
+
"@react-types/shared": "^3.28.0",
|
|
125
125
|
"classnames": "^2.5.1",
|
|
126
126
|
"date-fns": "^4.1.0",
|
|
127
127
|
"lodash.debounce": "^4.0.8",
|
|
128
128
|
"nanobus": "^4.5.0",
|
|
129
|
-
"prosemirror-commands": "^1.
|
|
129
|
+
"prosemirror-commands": "^1.6.2",
|
|
130
130
|
"prosemirror-history": "^1.4.1",
|
|
131
|
-
"prosemirror-inputrules": "^1.
|
|
132
|
-
"prosemirror-keymap": "^1.2.
|
|
133
|
-
"prosemirror-model": "^1.
|
|
134
|
-
"prosemirror-schema-basic": "^1.2.
|
|
135
|
-
"prosemirror-schema-list": "^1.5.
|
|
131
|
+
"prosemirror-inputrules": "^1.4.0",
|
|
132
|
+
"prosemirror-keymap": "^1.2.2",
|
|
133
|
+
"prosemirror-model": "^1.24.1",
|
|
134
|
+
"prosemirror-schema-basic": "^1.2.3",
|
|
135
|
+
"prosemirror-schema-list": "^1.5.0",
|
|
136
136
|
"prosemirror-state": "^1.4.3",
|
|
137
|
-
"prosemirror-transform": "^1.10.
|
|
137
|
+
"prosemirror-transform": "^1.10.2",
|
|
138
138
|
"prosemirror-utils": "^1.2.2",
|
|
139
|
-
"prosemirror-view": "^1.
|
|
139
|
+
"prosemirror-view": "^1.37.1",
|
|
140
140
|
"react-animate-height": "^3.2.3",
|
|
141
|
-
"react-aria": "^3.
|
|
142
|
-
"react-aria-components": "^1.
|
|
143
|
-
"react-day-picker": "
|
|
141
|
+
"react-aria": "^3.38.1",
|
|
142
|
+
"react-aria-components": "^1.7.1",
|
|
143
|
+
"react-day-picker": "8.10.1",
|
|
144
144
|
"react-focus-lock": "^2.13.6",
|
|
145
145
|
"react-focus-on": "^3.9.4",
|
|
146
146
|
"react-popper": "^2.3.0",
|
|
@@ -154,9 +154,9 @@
|
|
|
154
154
|
"react-day-picker": "Version locked until a11y gets fixed (https://github.com/gpbl/react-day-picker/pull/1708)"
|
|
155
155
|
},
|
|
156
156
|
"devDependencies": {
|
|
157
|
-
"@cultureamp/frontend-apis": "13.
|
|
158
|
-
"@cultureamp/i18n-react-intl": "^2.
|
|
159
|
-
"@cultureamp/package-bundler": "^2.3.
|
|
157
|
+
"@cultureamp/frontend-apis": "^13.2.5",
|
|
158
|
+
"@cultureamp/i18n-react-intl": "^2.7.3",
|
|
159
|
+
"@cultureamp/package-bundler": "^2.3.0",
|
|
160
160
|
"@testing-library/dom": "^10.4.0",
|
|
161
161
|
"@types/jest-axe": "^3.5.9",
|
|
162
162
|
"@types/lodash.debounce": "^4.0.9",
|
|
@@ -172,31 +172,30 @@
|
|
|
172
172
|
"postcss": "^8.5.3",
|
|
173
173
|
"postcss-cli": "^11.0.1",
|
|
174
174
|
"postcss-import": "^16.1.0",
|
|
175
|
-
"postcss-preset-env": "^10.1.
|
|
175
|
+
"postcss-preset-env": "^10.1.5",
|
|
176
176
|
"postcss-scss": "^4.0.9",
|
|
177
|
-
"query-string": "^9.
|
|
178
|
-
"react": "^
|
|
179
|
-
"react-dom": "^
|
|
177
|
+
"query-string": "^9.1.1",
|
|
178
|
+
"react": "^18.3.1",
|
|
179
|
+
"react-dom": "^18.3.1",
|
|
180
180
|
"react-highlight": "^0.15.0",
|
|
181
|
-
"react-intl": "^7.1.
|
|
182
|
-
"rollup": "^4.
|
|
181
|
+
"react-intl": "^7.1.10",
|
|
182
|
+
"rollup": "^4.39.0",
|
|
183
183
|
"sass": "1.79.6",
|
|
184
184
|
"serialize-query-params": "^2.0.2",
|
|
185
185
|
"svgo": "^3.3.2",
|
|
186
186
|
"tslib": "^2.8.1",
|
|
187
187
|
"ts-patch": "^3.3.0",
|
|
188
|
-
"tsx": "^4.19.
|
|
189
|
-
"@kaizen/design-tokens": "10.
|
|
188
|
+
"tsx": "^4.19.3",
|
|
189
|
+
"@kaizen/design-tokens": "10.9.1"
|
|
190
190
|
},
|
|
191
191
|
"devDependenciesComments": {
|
|
192
192
|
"sass": "Prevent deprecation warnings introduced in 1.80 as we plan to move away from sass",
|
|
193
|
-
"typescript": "Installed in root"
|
|
194
|
-
"frontend-apis": "There's an unresolved dep with 13.4.0 and onwards with node/msw, so we are locking to 13.3.0 for this update."
|
|
193
|
+
"typescript": "Installed in root"
|
|
195
194
|
},
|
|
196
195
|
"peerDependencies": {
|
|
197
196
|
"@cultureamp/i18n-react-intl": "^2.5.9",
|
|
198
|
-
"react": "^18.3.1
|
|
199
|
-
"react-dom": "^18.3.1
|
|
197
|
+
"react": "^18.3.1",
|
|
198
|
+
"react-dom": "^18.3.1",
|
|
200
199
|
"react-intl": "^6.6.8 || ^7.0.0",
|
|
201
200
|
"typescript": "5.x"
|
|
202
201
|
},
|
|
@@ -1,140 +1,138 @@
|
|
|
1
|
-
|
|
2
|
-
.
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
.
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
.
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
.
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
/* to override materialize.css global styling in performance-ui,
|
|
1
|
+
.wrapper {
|
|
2
|
+
--avatar-x-y: 1.5rem;
|
|
3
|
+
|
|
4
|
+
background: var(--color-gray-300);
|
|
5
|
+
border-radius: 100%;
|
|
6
|
+
box-sizing: border-box;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
align-items: center;
|
|
9
|
+
display: flex;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
width: var(--avatar-x-y);
|
|
12
|
+
height: var(--avatar-x-y);
|
|
13
|
+
box-shadow: var(--shadow-small-box-shadow);
|
|
14
|
+
border: 3px solid var(--color-white);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.small {
|
|
18
|
+
box-shadow: none;
|
|
19
|
+
border: none;
|
|
20
|
+
|
|
21
|
+
--avatar-x-y: 1.25rem;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.medium {
|
|
25
|
+
--avatar-x-y: 3rem;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.large {
|
|
29
|
+
--avatar-x-y: 4.5rem;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.xlarge {
|
|
33
|
+
--avatar-x-y: 6rem;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.xxlarge {
|
|
37
|
+
--avatar-x-y: 7.75rem;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/* Themes */
|
|
41
|
+
.personal {
|
|
42
|
+
background: var(--color-orange-100);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.otherUser {
|
|
46
|
+
background: var(--color-gray-300);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.company {
|
|
50
|
+
border: 0;
|
|
51
|
+
background: var(--color-white);
|
|
52
|
+
padding: var(--spacing-6);
|
|
53
|
+
border-radius: var(--border-solid-border-radius);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.small.company {
|
|
57
|
+
padding: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.avatarImage {
|
|
61
|
+
width: 100%;
|
|
62
|
+
height: 100%;
|
|
63
|
+
object-fit: cover;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.avatarImage.loading {
|
|
67
|
+
display: none;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.companyAvatarImage {
|
|
71
|
+
object-fit: contain;
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
border-radius: var(--spacing-4);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.fallbackIcon {
|
|
77
|
+
color: rgba(var(--color-purple-800-rgb), 0.7);
|
|
78
|
+
font-size: calc(var(--avatar-x-y) * 0.7);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.xlarge .fallbackIcon,
|
|
82
|
+
.xxlarge .fallbackIcon {
|
|
83
|
+
font-size: calc(var(--avatar-x-y) * 0.8);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.initials {
|
|
87
|
+
box-sizing: border-box;
|
|
88
|
+
color: var(--color-purple-800);
|
|
89
|
+
padding-left: 5px;
|
|
90
|
+
padding-right: 5px;
|
|
91
|
+
text-align: center;
|
|
92
|
+
width: 100%;
|
|
93
|
+
font-size: var(--typography-heading-3-font-size);
|
|
94
|
+
font-family: var(--typography-heading-1-font-family);
|
|
95
|
+
font-weight: var(--typography-heading-1-font-weight);
|
|
96
|
+
letter-spacing: var(--typography-heading-3-letter-spacing);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.initials.longName::before {
|
|
100
|
+
content: none;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.initials::before {
|
|
104
|
+
content: '';
|
|
105
|
+
display: block;
|
|
106
|
+
margin-top: -0.001em;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.wrapper .initials {
|
|
110
|
+
text-decoration: none;
|
|
111
|
+
speak-as: spell-out;
|
|
112
|
+
|
|
113
|
+
/* to override materialize.css global styling in performance-ui,
|
|
115
114
|
* which sets a border-bottom on abbr tags
|
|
116
115
|
*/
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}
|
|
116
|
+
border-bottom: none;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.xlarge .initials,
|
|
120
|
+
.xxlarge .initials {
|
|
121
|
+
font-size: var(--typography-heading-1-font-size);
|
|
122
|
+
letter-spacing: var(--typography-heading-1-letter-spacing);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.medium .initials {
|
|
126
|
+
font-size: var(--typography-heading-5-font-size);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.small .initials {
|
|
130
|
+
font-size: 0.5rem;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.small .initials,
|
|
134
|
+
.medium .initials {
|
|
135
|
+
margin-bottom: -1px;
|
|
136
|
+
font-weight: var(--typography-heading-5-font-weight);
|
|
137
|
+
letter-spacing: var(--typography-heading-5-letter-spacing);
|
|
140
138
|
}
|
|
@@ -1,59 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
.
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
letter-spacing: var(--typography-heading-3-letter-spacing);
|
|
58
|
-
}
|
|
1
|
+
.AvatarGroup {
|
|
2
|
+
display: inline-flex;
|
|
3
|
+
list-style: none;
|
|
4
|
+
margin: 0;
|
|
5
|
+
padding: 0;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.AvatarCounter {
|
|
9
|
+
direction: ltr;
|
|
10
|
+
align-items: center;
|
|
11
|
+
background: var(--color-gray-300);
|
|
12
|
+
border: 3px solid var(--color-white);
|
|
13
|
+
border-radius: 100%;
|
|
14
|
+
box-sizing: border-box;
|
|
15
|
+
box-shadow: var(--shadow-small-box-shadow);
|
|
16
|
+
display: flex;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
width: var(--avatar-x-y, 1.25rem);
|
|
20
|
+
height: var(--avatar-x-y, 1.25rem);
|
|
21
|
+
font-family: var(--typography-heading-5-font-family);
|
|
22
|
+
font-weight: var(--typography-heading-5-font-weight);
|
|
23
|
+
letter-spacing: var(--typography-heading-5-letter-spacing);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.AvatarGroupItem + .AvatarGroupItem {
|
|
27
|
+
margin-inline-start: calc((var(--avatar-x-y)) / -2);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.small {
|
|
31
|
+
--avatar-x-y: 1.25rem;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.small .AvatarCounter {
|
|
35
|
+
box-shadow: none;
|
|
36
|
+
border: none;
|
|
37
|
+
font-size: 0.5rem;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.medium {
|
|
41
|
+
--avatar-x-y: 3rem;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.medium .AvatarCounter {
|
|
45
|
+
font-size: var(--typography-heading-5-font-size);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.large {
|
|
49
|
+
--avatar-x-y: 4.5rem;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.large .AvatarCounter {
|
|
53
|
+
font-family: var(--typography-heading-3-font-family);
|
|
54
|
+
font-size: var(--typography-heading-3-font-size);
|
|
55
|
+
font-weight: var(--typography-heading-3-font-weight);
|
|
56
|
+
letter-spacing: var(--typography-heading-3-letter-spacing);
|
|
59
57
|
}
|