@kaizen/components 3.3.2 → 3.3.3
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/assets/svgs/custom-icons/user-settings.svg.cjs +80 -0
- package/dist/cjs/index.cjs +2 -0
- package/dist/cjs/src/Icon/CustomIcons.cjs +8 -0
- package/dist/esm/assets/svgs/custom-icons/user-settings.svg.mjs +58 -0
- package/dist/esm/index.mjs +1 -0
- package/dist/esm/src/Avatar/Avatar.mjs +9 -9
- package/dist/esm/src/AvatarGroup/AvatarGroup.mjs +9 -9
- package/dist/esm/src/Badge/Badge.mjs +18 -21
- package/dist/esm/src/Brand/Brand.mjs +44 -47
- package/dist/esm/src/Brand/BrandCollectiveIntelligence/BrandCollectiveIntelligence.mjs +48 -51
- package/dist/esm/src/BrandMoment/BrandMoment.mjs +79 -82
- package/dist/esm/src/Button/Button.mjs +47 -50
- package/dist/esm/src/Button/subcomponents/ButtonContent/ButtonContent.mjs +5 -5
- package/dist/esm/src/Button/subcomponents/PendingContent/PendingContent.mjs +3 -3
- package/dist/esm/src/ButtonGroup/ButtonGroup.mjs +30 -33
- package/dist/esm/src/ButtonV1/Button/Button.mjs +8 -11
- package/dist/esm/src/ButtonV1/GenericButton/GenericButton.mjs +61 -64
- package/dist/esm/src/ButtonV1/IconButton/IconButton.mjs +9 -12
- package/dist/esm/src/Calendar/CalendarPopover/CalendarPopover.mjs +55 -58
- package/dist/esm/src/Calendar/CalendarRange/CalendarRange.mjs +58 -61
- package/dist/esm/src/Calendar/CalendarSingle/CalendarSingle.mjs +52 -55
- package/dist/esm/src/Calendar/LegacyCalendarRange/LegacyCalendarRange.mjs +48 -51
- package/dist/esm/src/Card/Card.mjs +22 -25
- package/dist/esm/src/Checkbox/Checkbox/Checkbox.mjs +31 -34
- package/dist/esm/src/Checkbox/CheckboxField/CheckboxField.mjs +37 -40
- package/dist/esm/src/Checkbox/CheckboxGroup/CheckboxGroup.mjs +27 -30
- package/dist/esm/src/ClearButton/ClearButton.mjs +17 -20
- package/dist/esm/src/Collapsible/Collapsible/Collapsible.mjs +83 -86
- package/dist/esm/src/Collapsible/CollapsibleGroup/CollapsibleGroup.mjs +4 -4
- package/dist/esm/src/Collapsible/ExpertAdviceCollapsible/ExpertAdviceCollapsible.mjs +24 -27
- package/dist/esm/src/Container/Container.mjs +13 -16
- package/dist/esm/src/Content/Content.mjs +13 -16
- package/dist/esm/src/DateInput/DateInput/DateInput.mjs +28 -31
- package/dist/esm/src/DateInput/DateInputDescription/DateInputDescription.mjs +25 -28
- package/dist/esm/src/DateInput/DateInputWithIconButton/DateInputWithIconButton.mjs +30 -33
- package/dist/esm/src/DatePicker/DatePicker.mjs +213 -216
- package/dist/esm/src/DatePicker/subcomponents/DateInputField/DateInputField.mjs +42 -45
- package/dist/esm/src/DatePicker/utils/validateDate.mjs +4 -4
- package/dist/esm/src/DateRangePicker/DateRangePicker.mjs +123 -126
- package/dist/esm/src/Divider/Divider.mjs +13 -16
- package/dist/esm/src/EmptyState/EmptyState.mjs +38 -41
- package/dist/esm/src/ErrorPage/ErrorPage.mjs +73 -76
- package/dist/esm/src/FieldGroup/FieldGroup.mjs +12 -15
- package/dist/esm/src/FieldMessage/FieldMessage.mjs +29 -32
- package/dist/esm/src/Filter/Filter/Filter.mjs +52 -55
- package/dist/esm/src/Filter/Filter/subcomponents/FilterContents/FilterContents.mjs +10 -13
- package/dist/esm/src/Filter/Filter/subcomponents/FilterPopover/FilterPopover.mjs +31 -34
- package/dist/esm/src/Filter/FilterBar/FilterBar.mjs +32 -35
- package/dist/esm/src/Filter/FilterBar/context/FilterBarContext.mjs +3 -3
- package/dist/esm/src/Filter/FilterBar/subcomponents/AddFiltersMenu/AddFiltersMenu.mjs +45 -48
- package/dist/esm/src/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.mjs +26 -29
- package/dist/esm/src/Filter/FilterBar/subcomponents/FilterBarButton/FilterBarButton.mjs +32 -35
- package/dist/esm/src/Filter/FilterBar/subcomponents/FilterBarDatePicker/FilterBarDatePicker.mjs +35 -38
- package/dist/esm/src/Filter/FilterBar/subcomponents/FilterBarDateRangePicker/FilterBarDateRangePicker.mjs +35 -38
- package/dist/esm/src/Filter/FilterBar/subcomponents/FilterBarMultiSelect/FilterBarMultiSelect.mjs +83 -86
- package/dist/esm/src/Filter/FilterBar/subcomponents/FilterBarSelect/FilterBarSelect.mjs +55 -58
- package/dist/esm/src/Filter/FilterButton/FilterButton/FilterButton.mjs +28 -31
- package/dist/esm/src/Filter/FilterButton/FilterButtonRemovable/FilterButtonRemovable.mjs +32 -35
- package/dist/esm/src/Filter/FilterButton/subcomponents/FilterButtonBase/FilterButtonBase.mjs +12 -15
- package/dist/esm/src/Filter/FilterDatePicker/FilterDatePicker.mjs +29 -32
- package/dist/esm/src/Filter/FilterDatePicker/subcomponents/DateInputField/DateInputField.mjs +48 -51
- package/dist/esm/src/Filter/FilterDatePicker/subcomponents/FilterDatePickerField/FilterDatePickerField.mjs +4 -4
- package/dist/esm/src/Filter/FilterDatePicker/utils/getDateValidationHandler.mjs +2 -2
- package/dist/esm/src/Filter/FilterDateRangePicker/FilterDateRangePicker.mjs +34 -37
- package/dist/esm/src/Filter/FilterDateRangePicker/subcomponents/DateRangeDisplayLabel/DateRangeDisplayLabel.mjs +11 -14
- package/dist/esm/src/Filter/FilterDateRangePicker/subcomponents/DateRangeInputField/DateRangeInputField.mjs +69 -72
- package/dist/esm/src/Filter/FilterDateRangePicker/subcomponents/DateRangeValidationMessage/DateRangeValidationMessage.mjs +51 -54
- package/dist/esm/src/Filter/FilterDateRangePicker/subcomponents/FilterDateRangePickerField/FilterDateRangePickerField.mjs +202 -205
- package/dist/esm/src/Filter/FilterDateRangePicker/subcomponents/FilterDateRangePickerField/utils/validateEndDateBeforeStartDate.mjs +2 -2
- package/dist/esm/src/Filter/FilterMultiSelect/FilterMultiSelect.mjs +67 -71
- package/dist/esm/src/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.mjs +4 -4
- package/dist/esm/src/Filter/FilterMultiSelect/context/SelectionProvider/SelectionProvider.mjs +8 -8
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/ListBox/ListBox.mjs +61 -64
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/ListBoxSection/ListBoxSection.mjs +24 -27
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/LoadMoreButton/LoadMoreButton.mjs +9 -12
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/MenuLayout/MenuFooter/MenuFooter.mjs +8 -11
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/MenuLayout/MenuLoadingSkeleton/MenuLoadingSkeleton.mjs +30 -33
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/MenuPopup/MenuPopup.mjs +41 -44
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/MenuPopup/ResponsiveMenuPopup.mjs +70 -73
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.mjs +51 -54
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/NoResults/NoResults.mjs +12 -15
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/SearchInput/SearchInput.mjs +40 -43
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/SectionDivider/SectionDivider.mjs +3 -3
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/ClearButton/ClearButton.mjs +29 -32
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/SelectAllButton/SelectAllButton.mjs +23 -26
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/Trigger/FilterTriggerButton/FilterTriggerButton.mjs +24 -27
- package/dist/esm/src/Filter/FilterMultiSelect/subcomponents/Trigger/RemovableFilterTrigger/RemovableFilterTrigger.mjs +29 -32
- package/dist/esm/src/Filter/FilterSelect/FilterSelect.mjs +70 -73
- package/dist/esm/src/Focusable/Focusable.mjs +2 -2
- package/dist/esm/src/GuidanceBlock/GuidanceBlock.mjs +42 -45
- package/dist/esm/src/Icon/CustomIcons.mjs +6 -0
- package/dist/esm/src/Icon/Icon.mjs +6 -6
- package/dist/esm/src/IconV1/subcomponents/SVG/SVG.mjs +24 -27
- package/dist/esm/src/Illustration/Scene/BrandMomentCaptureIntro/BrandMomentCaptureIntro.mjs +35 -38
- package/dist/esm/src/Illustration/Scene/Scene.mjs +535 -670
- package/dist/esm/src/Illustration/Spot/Spot.mjs +2 -2
- package/dist/esm/src/Illustration/subcomponents/Base/Base.mjs +22 -25
- package/dist/esm/src/Illustration/subcomponents/VideoPlayer/VideoPlayer.mjs +9 -9
- package/dist/esm/src/Illustration/utils/usePausePlay.mjs +2 -2
- package/dist/esm/src/Input/Input/Input.mjs +32 -35
- package/dist/esm/src/Input/InputRange/InputRange.mjs +69 -72
- package/dist/esm/src/Input/InputSearch/InputSearch.mjs +53 -56
- package/dist/esm/src/KaizenProvider/KaizenProvider.mjs +20 -23
- package/dist/esm/src/KaizenProvider/subcomponents/FontDefinitions/FontDefinitions.mjs +6 -6
- package/dist/esm/src/KaizenProvider/subcomponents/OptionalIntlProvider/OptionalIntlProvider.mjs +19 -22
- package/dist/esm/src/Label/Label.mjs +23 -26
- package/dist/esm/src/LabelledMessage/LabelledMessage.mjs +13 -16
- package/dist/esm/src/LikertScale/LikertScale.mjs +10 -10
- package/dist/esm/src/Link/Link.mjs +30 -33
- package/dist/esm/src/Link/subcomponents/LinkContent.mjs +6 -6
- package/dist/esm/src/LinkButton/LinkButton.mjs +32 -35
- package/dist/esm/src/Loading/LoadingGraphic/LoadingGraphic.mjs +17 -20
- package/dist/esm/src/Loading/LoadingHeading/LoadingHeading.mjs +17 -20
- package/dist/esm/src/Loading/LoadingInput/LoadingInput.mjs +18 -21
- package/dist/esm/src/Loading/LoadingParagraph/LoadingParagraph.mjs +20 -23
- package/dist/esm/src/Loading/LoadingSpinner/LoadingSpinner.mjs +16 -19
- package/dist/esm/src/Loading/LoadingSpinner/subcomponents/SpinnerIcon.mjs +13 -13
- package/dist/esm/src/Menu/Menu.mjs +10 -13
- package/dist/esm/src/Menu/MenuHeader.mjs +7 -10
- package/dist/esm/src/Menu/MenuItem.mjs +19 -22
- package/dist/esm/src/Menu/MenuPopover.mjs +10 -13
- package/dist/esm/src/Menu/MenuSection.mjs +7 -10
- package/dist/esm/src/Menu/MenuTrigger.mjs +2 -2
- package/dist/esm/src/MenuV1/Menu.mjs +41 -44
- package/dist/esm/src/MenuV1/subcomponents/MenuDropdown/MenuDropdown.mjs +79 -82
- package/dist/esm/src/MenuV1/subcomponents/MenuItem/MenuItem.mjs +47 -50
- package/dist/esm/src/MenuV1/subcomponents/MenuList/MenuList.mjs +3 -3
- package/dist/esm/src/MenuV1/subcomponents/StatelessMenu/StatelessMenu.mjs +62 -65
- package/dist/esm/src/Modal/ConfirmationModal/ConfirmationModal.mjs +79 -82
- package/dist/esm/src/Modal/ContextModal/ContextModal.mjs +78 -81
- package/dist/esm/src/Modal/GenericModal/GenericModal.mjs +115 -118
- package/dist/esm/src/Modal/GenericModal/subcomponents/ModalAccessibleDescription/ModalAccessibleDescription.mjs +12 -15
- package/dist/esm/src/Modal/GenericModal/subcomponents/ModalAccessibleLabel/ModalAccessibleLabel.mjs +15 -18
- package/dist/esm/src/Modal/GenericModal/subcomponents/ModalBody/ModalBody.mjs +10 -13
- package/dist/esm/src/Modal/GenericModal/subcomponents/ModalFooter/ModalFooter.mjs +25 -28
- package/dist/esm/src/Modal/GenericModal/subcomponents/ModalHeader/ModalHeader.mjs +19 -22
- package/dist/esm/src/Modal/InputEditModal/InputEditModal.mjs +60 -63
- package/dist/esm/src/MultiSelect/MultiSelect.mjs +101 -104
- package/dist/esm/src/MultiSelect/subcomponents/Checkbox/Checkbox.mjs +31 -34
- package/dist/esm/src/MultiSelect/subcomponents/MultiSelectOptionField/MultiSelectOptionField.mjs +22 -25
- package/dist/esm/src/MultiSelect/subcomponents/MultiSelectOptions/MultiSelectOptions.mjs +40 -43
- package/dist/esm/src/MultiSelect/subcomponents/MultiSelectToggle/MultiSelectToggle.mjs +71 -74
- package/dist/esm/src/MultiSelect/subcomponents/Popover/Popover.mjs +39 -42
- package/dist/esm/src/Notification/GlobalNotification/GlobalNotification.mjs +11 -14
- package/dist/esm/src/Notification/InlineNotification/InlineNotification.mjs +17 -20
- package/dist/esm/src/Notification/ToastNotification/ToastNotificationsList/ToastNotificationsList.mjs +27 -30
- package/dist/esm/src/Notification/ToastNotification/ToastNotificationsList/subcomponents/ToastNotificationsMap/ToastNotificationsMap.mjs +29 -32
- package/dist/esm/src/Notification/ToastNotification/context/ToastNotificationContext.mjs +47 -50
- package/dist/esm/src/Notification/subcomponents/CancelButton/CancelButton.mjs +15 -18
- package/dist/esm/src/Notification/subcomponents/GenericNotification/GenericNotification.mjs +68 -71
- package/dist/esm/src/Notification/subcomponents/NotificationHeading/NotificationHeading.mjs +24 -27
- package/dist/esm/src/Notification/subcomponents/NotificationIcon/NotificationIcon.mjs +28 -31
- package/dist/esm/src/Pagination/Pagination.mjs +8 -8
- package/dist/esm/src/Pagination/subcomponents/DirectionalLink/DirectionalLink.mjs +21 -24
- package/dist/esm/src/Pagination/subcomponents/PaginationLink/PaginationLink.mjs +16 -19
- package/dist/esm/src/Pagination/subcomponents/TruncateIndicator/TruncateIndicator.mjs +3 -3
- package/dist/esm/src/Popover/Popover.mjs +112 -115
- package/dist/esm/src/ProgressBar/ProgressBar.mjs +41 -44
- package/dist/esm/src/ProgressBar/subcomponents/Label/Label.mjs +14 -17
- package/dist/esm/src/Radio/Radio/Radio.mjs +29 -32
- package/dist/esm/src/Radio/RadioField/RadioField.mjs +36 -39
- package/dist/esm/src/Radio/RadioGroup/RadioGroup.mjs +30 -33
- package/dist/esm/src/RichTextEditor/EditableRichTextContent/EditableRichTextContent.mjs +29 -32
- package/dist/esm/src/RichTextEditor/RichTextContent/RichTextContent.mjs +32 -35
- package/dist/esm/src/RichTextEditor/RichTextEditor/RichTextEditor.mjs +101 -104
- package/dist/esm/src/RichTextEditor/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.mjs +32 -35
- package/dist/esm/src/RichTextEditor/RichTextEditor/subcomponents/Toolbar/Toolbar.mjs +38 -41
- package/dist/esm/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.mjs +4 -4
- package/dist/esm/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.mjs +7 -10
- package/dist/esm/src/RichTextEditor/RichTextEditor/utils/controlmap.mjs +9 -9
- package/dist/esm/src/RichTextEditor/utils/plugins/LinkManager/components/LinkEditor/LinkEditor.mjs +49 -52
- package/dist/esm/src/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.mjs +55 -58
- package/dist/esm/src/RichTextEditor/utils/plugins/LinkManager/components/LinkPopover/LinkPopover.mjs +42 -45
- package/dist/esm/src/RichTextEditor/utils/plugins/LinkManager/components/LinkPopover/Positioner.mjs +42 -45
- package/dist/esm/src/RichTextEditor/utils/plugins/LinkManager/createReactTooltipWrapper.mjs +3 -3
- package/dist/esm/src/RichTextEditor/utils/plugins/LinkManager/validation.mjs +2 -2
- package/dist/esm/src/SearchField/SearchField.mjs +32 -35
- package/dist/esm/src/Select/Select.mjs +96 -102
- package/dist/esm/src/SingleSelect/SingleSelect.mjs +117 -120
- package/dist/esm/src/SingleSelect/context/SelectContext.mjs +3 -3
- package/dist/esm/src/SingleSelect/subcomponents/ListBox/ListBox.mjs +41 -44
- package/dist/esm/src/SingleSelect/subcomponents/ListBoxSection/ListBoxSection.mjs +27 -30
- package/dist/esm/src/SingleSelect/subcomponents/ListItem/ListItem.mjs +12 -15
- package/dist/esm/src/SingleSelect/subcomponents/ListItems/ListItems.mjs +11 -14
- package/dist/esm/src/SingleSelect/subcomponents/Option/Option.mjs +41 -44
- package/dist/esm/src/SingleSelect/subcomponents/Overlay/Overlay.mjs +31 -34
- package/dist/esm/src/SingleSelect/subcomponents/SectionDivider/SectionDivider.mjs +8 -11
- package/dist/esm/src/SingleSelect/subcomponents/SelectPopoverContents/SelectPopoverContents.mjs +24 -27
- package/dist/esm/src/SingleSelect/subcomponents/SelectToggle/SelectToggle.mjs +32 -35
- package/dist/esm/src/SingleSelect/utils/transformSelectItemToCollectionElement.mjs +4 -4
- package/dist/esm/src/Slider/Slider.mjs +43 -46
- package/dist/esm/src/Table/Table.mjs +26 -26
- package/dist/esm/src/Tabs/Tabs.mjs +2 -2
- package/dist/esm/src/Tabs/subcomponents/Tab/Tab.mjs +4 -4
- package/dist/esm/src/Tabs/subcomponents/TabList/TabList.mjs +7 -7
- package/dist/esm/src/Tabs/subcomponents/TabPanel/TabPanel.mjs +2 -2
- package/dist/esm/src/Tag/Tag.mjs +83 -86
- package/dist/esm/src/Tag/subcomponents/LiveIcon/LiveIcon.mjs +42 -48
- package/dist/esm/src/TextArea/TextArea.mjs +43 -46
- package/dist/esm/src/TextAreaField/TextAreaField.mjs +65 -68
- package/dist/esm/src/TextField/TextField.mjs +65 -68
- package/dist/esm/src/Tile/InformationTile/InformationTile.mjs +5 -8
- package/dist/esm/src/Tile/MultiActionTile/MultiActionTile.mjs +15 -18
- package/dist/esm/src/Tile/TileGrid/TileGrid.mjs +20 -23
- package/dist/esm/src/Tile/subcomponents/GenericTile/GenericTile.mjs +116 -119
- package/dist/esm/src/TimeField/TimeField.mjs +82 -88
- package/dist/esm/src/TimeField/subcomponents/TimeSegment/TimeSegment.mjs +21 -24
- package/dist/esm/src/TitleBlock/TitleBlock.mjs +152 -155
- package/dist/esm/src/TitleBlock/subcomponents/MainActions.mjs +126 -129
- package/dist/esm/src/TitleBlock/subcomponents/NavigationTabs.mjs +21 -24
- package/dist/esm/src/TitleBlock/subcomponents/SecondaryActions.mjs +94 -97
- package/dist/esm/src/TitleBlock/subcomponents/TitleBlockMenuItem.mjs +23 -26
- package/dist/esm/src/TitleBlock/subcomponents/Toolbar.mjs +21 -24
- package/dist/esm/src/ToggleSwitch/ToggleSwitch/ToggleSwitch.mjs +27 -30
- package/dist/esm/src/ToggleSwitch/ToggleSwitchField/ToggleSwitchField.mjs +36 -39
- package/dist/esm/src/Tooltip/OverlayArrow.mjs +4 -4
- package/dist/esm/src/Tooltip/Tooltip.mjs +34 -37
- package/dist/esm/src/Tooltip/TooltipTrigger.mjs +2 -2
- package/dist/esm/src/TooltipV1/Tooltip.mjs +85 -88
- package/dist/esm/src/TooltipV1/subcomponents/AppearanceAnim.mjs +4 -4
- package/dist/esm/src/TooltipV1/utils/isSemanticElement.mjs +2 -2
- package/dist/esm/src/VisuallyHidden/VisuallyHidden.mjs +10 -13
- package/dist/esm/src/Well/Well.mjs +21 -24
- package/dist/esm/src/Workflow/Workflow.mjs +36 -39
- package/dist/esm/src/Workflow/subcomponents/Footer/Footer.mjs +21 -24
- package/dist/esm/src/Workflow/subcomponents/Footer/components/FooterActions/FooterActions.mjs +11 -14
- package/dist/esm/src/Workflow/subcomponents/Footer/components/ProgressStepper/ProgressStepper.mjs +48 -51
- package/dist/esm/src/Workflow/subcomponents/Footer/components/Root/Root.mjs +10 -13
- package/dist/esm/src/Workflow/subcomponents/Header/Header.mjs +18 -21
- package/dist/esm/src/Workflow/subcomponents/Header/components/Actions/Actions.mjs +13 -16
- package/dist/esm/src/Workflow/subcomponents/Header/components/Branding/Branding.mjs +14 -17
- package/dist/esm/src/Workflow/subcomponents/Header/components/Root/Root.mjs +10 -13
- package/dist/esm/src/Workflow/subcomponents/Header/components/Titles/Titles.mjs +26 -29
- package/dist/esm/src/Workflow/subcomponents/Main/Main.mjs +10 -13
- package/dist/esm/src/Workflow/subcomponents/Wrapper/Wrapper.mjs +10 -13
- package/dist/esm/src/__alpha__/SingleSelect/SingleSelect.mjs +21 -27
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/ComboBox/ComboBox.mjs +10 -10
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.mjs +10 -10
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/List/List.mjs +4 -4
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/ListItem/ListItem.mjs +10 -10
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/ListSection/ListSection.mjs +8 -8
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/Popover/Popover.mjs +6 -6
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/Select/Select.mjs +10 -10
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/SelectTrigger/SelectTrigger.mjs +6 -6
- package/dist/esm/src/__next__/Tag/RemovableTag/RemovableTag.mjs +16 -19
- package/dist/esm/src/__next__/Tag/RemovableTag/subcomponents/RemoveButton.mjs +18 -21
- package/dist/esm/src/__next__/Tag/Tag/Tag.mjs +15 -18
- package/dist/esm/src/utils/ReversedColors/ReversedColors.mjs +4 -4
- package/dist/esm/src/utils/getNodeText.mjs +2 -2
- package/dist/esm/src/utils/useExitingAnimation/useExitingAnimation.mjs +2 -2
- package/dist/esm/src/utils/useMediaQueries.mjs +12 -12
- package/dist/styles.css +15 -15
- package/dist/types/Icon/CustomIcons.d.ts +7 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +4 -2
- package/src/Icon/CustomIcons.ts +8 -0
- package/src/Icon/_docs/Icon--api-specification.mdx +20 -0
- package/src/Icon/_docs/Icon--usage-guidelines.mdx +9 -0
- package/src/Icon/_docs/IconsCustom.stories.tsx +24 -0
- package/src/index.ts +1 -0
|
@@ -1,685 +1,550 @@
|
|
|
1
1
|
import { __rest, __assign } from 'tslib';
|
|
2
|
-
import
|
|
2
|
+
import React__default from 'react';
|
|
3
3
|
import { Base } from '../subcomponents/Base/Base.mjs';
|
|
4
4
|
import { VideoPlayer } from '../subcomponents/VideoPlayer/VideoPlayer.mjs';
|
|
5
5
|
|
|
6
6
|
// Brand Moments
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
return /*#__PURE__*/React.createElement(VideoPlayer, __assign({
|
|
15
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
16
|
-
}, otherProps, {
|
|
17
|
-
fallback: "illustrations/heart/scene/brand-moments-positive-outro",
|
|
18
|
-
source: "illustrations/heart/scene/brand-moments-positive-outro"
|
|
19
|
-
}));
|
|
20
|
-
}
|
|
21
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
22
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
23
|
-
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
24
|
-
}, otherProps, {
|
|
25
|
-
name: "illustrations/heart/scene/brand-moments-positive-outro.png"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
BrandMomentPositiveOutro.displayName = 'BrandMomentPositiveOutro';
|
|
29
|
-
return BrandMomentPositiveOutro;
|
|
30
|
-
}();
|
|
31
|
-
const BrandMomentLogin = /*#__PURE__*/function () {
|
|
32
|
-
const BrandMomentLogin = function (_a) {
|
|
33
|
-
var isAnimated = _a.isAnimated,
|
|
34
|
-
enableAspectRatio = _a.enableAspectRatio,
|
|
35
|
-
alt = _a.alt,
|
|
36
|
-
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
37
|
-
if (isAnimated) {
|
|
38
|
-
return /*#__PURE__*/React.createElement(VideoPlayer, __assign({
|
|
39
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
40
|
-
}, otherProps, {
|
|
41
|
-
fallback: "illustrations/heart/scene/brand-moments-login",
|
|
42
|
-
source: "illustrations/heart/scene/brand-moments-login"
|
|
43
|
-
}));
|
|
44
|
-
}
|
|
45
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
46
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
47
|
-
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
48
|
-
}, otherProps, {
|
|
49
|
-
name: "illustrations/heart/scene/brand-moments-login.png"
|
|
50
|
-
}));
|
|
51
|
-
};
|
|
52
|
-
BrandMomentLogin.displayName = 'BrandMomentLogin';
|
|
53
|
-
return BrandMomentLogin;
|
|
54
|
-
}();
|
|
55
|
-
const BrandMomentError = /*#__PURE__*/function () {
|
|
56
|
-
const BrandMomentError = function (_a) {
|
|
57
|
-
var isAnimated = _a.isAnimated,
|
|
58
|
-
enableAspectRatio = _a.enableAspectRatio,
|
|
59
|
-
alt = _a.alt,
|
|
60
|
-
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
61
|
-
if (isAnimated) {
|
|
62
|
-
return /*#__PURE__*/React.createElement(VideoPlayer, __assign({
|
|
63
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
64
|
-
}, otherProps, {
|
|
65
|
-
fallback: "illustrations/heart/scene/brand-moments-error",
|
|
66
|
-
source: "illustrations/heart/scene/brand-moments-error"
|
|
67
|
-
}));
|
|
68
|
-
}
|
|
69
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
70
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
71
|
-
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
72
|
-
}, otherProps, {
|
|
73
|
-
name: "illustrations/heart/scene/brand-moments-error.png"
|
|
74
|
-
}));
|
|
75
|
-
};
|
|
76
|
-
BrandMomentError.displayName = 'BrandMomentError';
|
|
77
|
-
return BrandMomentError;
|
|
78
|
-
}();
|
|
79
|
-
const BrandMomentNewAccountOnboarding = /*#__PURE__*/function () {
|
|
80
|
-
const BrandMomentNewAccountOnboarding = function (_a) {
|
|
81
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
82
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
83
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
84
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
85
|
-
}, props, {
|
|
86
|
-
name: "illustrations/heart/scene/brand-moments-new-account-onboarding.svg"
|
|
87
|
-
}));
|
|
88
|
-
};
|
|
89
|
-
BrandMomentNewAccountOnboarding.displayName = 'BrandMomentNewAccountOnboarding';
|
|
90
|
-
return BrandMomentNewAccountOnboarding;
|
|
91
|
-
}();
|
|
92
|
-
const BrandMomentUploadEmployeeData = /*#__PURE__*/function () {
|
|
93
|
-
const BrandMomentUploadEmployeeData = function (_a) {
|
|
94
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
95
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
96
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
97
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
98
|
-
}, props, {
|
|
99
|
-
name: "illustrations/heart/scene/brand-moments-upload-employee-data.svg"
|
|
100
|
-
}));
|
|
101
|
-
};
|
|
102
|
-
BrandMomentUploadEmployeeData.displayName = 'BrandMomentUploadEmployeeData';
|
|
103
|
-
return BrandMomentUploadEmployeeData;
|
|
104
|
-
}();
|
|
105
|
-
const BrandMomentStarterKit = /*#__PURE__*/function () {
|
|
106
|
-
const BrandMomentStarterKit = function (_a) {
|
|
107
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
108
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
109
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
7
|
+
var BrandMomentPositiveOutro = function (_a) {
|
|
8
|
+
var isAnimated = _a.isAnimated,
|
|
9
|
+
enableAspectRatio = _a.enableAspectRatio,
|
|
10
|
+
alt = _a.alt,
|
|
11
|
+
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
12
|
+
if (isAnimated) {
|
|
13
|
+
return /*#__PURE__*/React__default.createElement(VideoPlayer, __assign({
|
|
110
14
|
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
111
|
-
}, props, {
|
|
112
|
-
name: "illustrations/heart/scene/brand-moments-starter-kit.svg"
|
|
113
|
-
}));
|
|
114
|
-
};
|
|
115
|
-
BrandMomentStarterKit.displayName = 'BrandMomentStarterKit';
|
|
116
|
-
// Empty States
|
|
117
|
-
return BrandMomentStarterKit;
|
|
118
|
-
}();
|
|
119
|
-
const EmptyStatesAction = /*#__PURE__*/function () {
|
|
120
|
-
const EmptyStatesAction = function (_a) {
|
|
121
|
-
var isAnimated = _a.isAnimated,
|
|
122
|
-
enableAspectRatio = _a.enableAspectRatio,
|
|
123
|
-
alt = _a.alt,
|
|
124
|
-
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
125
|
-
if (isAnimated) {
|
|
126
|
-
return /*#__PURE__*/React.createElement(VideoPlayer, __assign({
|
|
127
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
128
|
-
}, otherProps, {
|
|
129
|
-
fallback: "illustrations/heart/scene/empty-states-action",
|
|
130
|
-
source: "illustrations/heart/scene/empty-states-action"
|
|
131
|
-
}));
|
|
132
|
-
}
|
|
133
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
134
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
135
|
-
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
136
|
-
}, otherProps, {
|
|
137
|
-
name: "illustrations/heart/scene/empty-states-action.svg"
|
|
138
|
-
}));
|
|
139
|
-
};
|
|
140
|
-
EmptyStatesAction.displayName = 'EmptyStatesAction';
|
|
141
|
-
return EmptyStatesAction;
|
|
142
|
-
}();
|
|
143
|
-
const EmptyStatesInformative = /*#__PURE__*/function () {
|
|
144
|
-
const EmptyStatesInformative = function (_a) {
|
|
145
|
-
var isAnimated = _a.isAnimated,
|
|
146
|
-
enableAspectRatio = _a.enableAspectRatio,
|
|
147
|
-
alt = _a.alt,
|
|
148
|
-
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
149
|
-
if (isAnimated) {
|
|
150
|
-
return /*#__PURE__*/React.createElement(VideoPlayer, __assign({
|
|
151
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
152
|
-
}, otherProps, {
|
|
153
|
-
fallback: "illustrations/heart/scene/empty-states-informative",
|
|
154
|
-
source: "illustrations/heart/scene/empty-states-informative"
|
|
155
|
-
}));
|
|
156
|
-
}
|
|
157
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
158
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
159
|
-
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
160
|
-
}, otherProps, {
|
|
161
|
-
name: "illustrations/heart/scene/empty-states-informative.svg"
|
|
162
|
-
}));
|
|
163
|
-
};
|
|
164
|
-
EmptyStatesInformative.displayName = 'EmptyStatesInformative';
|
|
165
|
-
return EmptyStatesInformative;
|
|
166
|
-
}();
|
|
167
|
-
const EmptyStatesNegative = /*#__PURE__*/function () {
|
|
168
|
-
const EmptyStatesNegative = function (_a) {
|
|
169
|
-
var isAnimated = _a.isAnimated,
|
|
170
|
-
enableAspectRatio = _a.enableAspectRatio,
|
|
171
|
-
alt = _a.alt,
|
|
172
|
-
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
173
|
-
if (isAnimated) {
|
|
174
|
-
return /*#__PURE__*/React.createElement(VideoPlayer, __assign({
|
|
175
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
176
|
-
}, otherProps, {
|
|
177
|
-
fallback: "illustrations/heart/scene/empty-states-negative",
|
|
178
|
-
source: "illustrations/heart/scene/empty-states-negative"
|
|
179
|
-
}));
|
|
180
|
-
}
|
|
181
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
182
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
183
|
-
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
184
15
|
}, otherProps, {
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
return
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
}
|
|
205
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
206
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
207
|
-
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
208
|
-
}, otherProps, {
|
|
209
|
-
name: "illustrations/heart/scene/empty-states-positive.svg"
|
|
210
|
-
}));
|
|
211
|
-
};
|
|
212
|
-
EmptyStatesPositive.displayName = 'EmptyStatesPositive';
|
|
213
|
-
return EmptyStatesPositive;
|
|
214
|
-
}();
|
|
215
|
-
const EmptyStatesNeutral = /*#__PURE__*/function () {
|
|
216
|
-
const EmptyStatesNeutral = function (_a) {
|
|
217
|
-
var isAnimated = _a.isAnimated,
|
|
218
|
-
enableAspectRatio = _a.enableAspectRatio,
|
|
219
|
-
alt = _a.alt,
|
|
220
|
-
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
221
|
-
if (isAnimated) {
|
|
222
|
-
return /*#__PURE__*/React.createElement(VideoPlayer, __assign({
|
|
223
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
224
|
-
}, otherProps, {
|
|
225
|
-
fallback: "illustrations/heart/scene/empty-states-neutral",
|
|
226
|
-
source: "illustrations/heart/scene/empty-states-neutral"
|
|
227
|
-
}));
|
|
228
|
-
}
|
|
229
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
230
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
231
|
-
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
232
|
-
}, otherProps, {
|
|
233
|
-
name: "illustrations/heart/scene/empty-states-neutral.svg"
|
|
234
|
-
}));
|
|
235
|
-
};
|
|
236
|
-
EmptyStatesNeutral.displayName = 'EmptyStatesNeutral';
|
|
237
|
-
// Information Modals
|
|
238
|
-
return EmptyStatesNeutral;
|
|
239
|
-
}();
|
|
240
|
-
const Information360Upgrade = /*#__PURE__*/function () {
|
|
241
|
-
const Information360Upgrade = function (_a) {
|
|
242
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
243
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
244
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
245
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
246
|
-
}, props, {
|
|
247
|
-
name: "illustrations/heart/scene/information-modals-360-upgrade.svg"
|
|
248
|
-
}));
|
|
249
|
-
};
|
|
250
|
-
Information360Upgrade.displayName = 'Information360Upgrade';
|
|
251
|
-
return Information360Upgrade;
|
|
252
|
-
}();
|
|
253
|
-
const InformationDemographicFocus = /*#__PURE__*/function () {
|
|
254
|
-
const InformationDemographicFocus = function (_a) {
|
|
255
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
256
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
257
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
258
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
259
|
-
}, props, {
|
|
260
|
-
name: "illustrations/heart/scene/information-modals-demographic-focus.svg"
|
|
261
|
-
}));
|
|
262
|
-
};
|
|
263
|
-
InformationDemographicFocus.displayName = 'InformationDemographicFocus';
|
|
264
|
-
return InformationDemographicFocus;
|
|
265
|
-
}();
|
|
266
|
-
const InformationTurnoverCalculator = /*#__PURE__*/function () {
|
|
267
|
-
const InformationTurnoverCalculator = function (_a) {
|
|
268
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
269
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
270
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
271
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
272
|
-
}, props, {
|
|
273
|
-
name: "illustrations/heart/scene/information-modals-turnover-calculator.svg"
|
|
274
|
-
}));
|
|
275
|
-
};
|
|
276
|
-
InformationTurnoverCalculator.displayName = 'InformationTurnoverCalculator';
|
|
277
|
-
return InformationTurnoverCalculator;
|
|
278
|
-
}();
|
|
279
|
-
const InformationTurnoverForecast = /*#__PURE__*/function () {
|
|
280
|
-
const InformationTurnoverForecast = function (_a) {
|
|
281
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
282
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
283
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
284
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
285
|
-
}, props, {
|
|
286
|
-
name: "illustrations/heart/scene/information-modals-turnover-forecast.svg"
|
|
287
|
-
}));
|
|
288
|
-
};
|
|
289
|
-
InformationTurnoverForecast.displayName = 'InformationTurnoverForecast';
|
|
290
|
-
return InformationTurnoverForecast;
|
|
291
|
-
}();
|
|
292
|
-
const InformationEmergingTrends = /*#__PURE__*/function () {
|
|
293
|
-
const InformationEmergingTrends = function (_a) {
|
|
294
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
295
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
296
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
297
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
298
|
-
}, props, {
|
|
299
|
-
name: "illustrations/heart/scene/information-modals-emerging-trends.svg"
|
|
300
|
-
}));
|
|
301
|
-
};
|
|
302
|
-
InformationEmergingTrends.displayName = 'InformationEmergingTrends';
|
|
303
|
-
return InformationEmergingTrends;
|
|
304
|
-
}();
|
|
305
|
-
const InformationEmployeeLifecycle = /*#__PURE__*/function () {
|
|
306
|
-
const InformationEmployeeLifecycle = function (_a) {
|
|
307
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
308
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
309
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
310
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
311
|
-
}, props, {
|
|
312
|
-
name: "illustrations/heart/scene/information-modals-employee-lifecycle.svg"
|
|
313
|
-
}));
|
|
314
|
-
};
|
|
315
|
-
InformationEmployeeLifecycle.displayName = 'InformationEmployeeLifecycle';
|
|
316
|
-
return InformationEmployeeLifecycle;
|
|
317
|
-
}();
|
|
318
|
-
const InformationReportOwner = /*#__PURE__*/function () {
|
|
319
|
-
const InformationReportOwner = function (_a) {
|
|
320
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
321
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
322
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
323
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
324
|
-
}, props, {
|
|
325
|
-
name: "illustrations/heart/scene/information-modals-report-owner.svg"
|
|
326
|
-
}));
|
|
327
|
-
};
|
|
328
|
-
InformationReportOwner.displayName = 'InformationReportOwner';
|
|
329
|
-
return InformationReportOwner;
|
|
330
|
-
}();
|
|
331
|
-
const InformationReportOwnerByRule = /*#__PURE__*/function () {
|
|
332
|
-
const InformationReportOwnerByRule = function (_a) {
|
|
333
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
334
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
335
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
336
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
337
|
-
}, props, {
|
|
338
|
-
name: "illustrations/heart/scene/information-modals-report-owner-by-rule.svg"
|
|
339
|
-
}));
|
|
340
|
-
};
|
|
341
|
-
InformationReportOwnerByRule.displayName = 'InformationReportOwnerByRule';
|
|
342
|
-
// Miscellaneous
|
|
343
|
-
return InformationReportOwnerByRule;
|
|
344
|
-
}();
|
|
345
|
-
const Collaboration = /*#__PURE__*/function () {
|
|
346
|
-
const Collaboration = function (_a) {
|
|
347
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
348
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
349
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
350
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
351
|
-
}, props, {
|
|
352
|
-
name: "illustrations/heart/scene/miscellaneous-collaboration.svg"
|
|
353
|
-
}));
|
|
354
|
-
};
|
|
355
|
-
Collaboration.displayName = 'Collaboration';
|
|
356
|
-
return Collaboration;
|
|
357
|
-
}();
|
|
358
|
-
const Communication = /*#__PURE__*/function () {
|
|
359
|
-
const Communication = function (_a) {
|
|
360
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
361
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
362
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
363
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
364
|
-
}, props, {
|
|
365
|
-
name: "illustrations/heart/scene/miscellaneous-communications.svg"
|
|
366
|
-
}));
|
|
367
|
-
};
|
|
368
|
-
Communication.displayName = 'Communication';
|
|
369
|
-
return Communication;
|
|
370
|
-
}();
|
|
371
|
-
const CompanyValues = /*#__PURE__*/function () {
|
|
372
|
-
const CompanyValues = function (_a) {
|
|
373
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
374
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
375
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
16
|
+
fallback: "illustrations/heart/scene/brand-moments-positive-outro",
|
|
17
|
+
source: "illustrations/heart/scene/brand-moments-positive-outro"
|
|
18
|
+
}));
|
|
19
|
+
}
|
|
20
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
21
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
22
|
+
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
23
|
+
}, otherProps, {
|
|
24
|
+
name: "illustrations/heart/scene/brand-moments-positive-outro.png"
|
|
25
|
+
}));
|
|
26
|
+
};
|
|
27
|
+
BrandMomentPositiveOutro.displayName = 'BrandMomentPositiveOutro';
|
|
28
|
+
var BrandMomentLogin = function (_a) {
|
|
29
|
+
var isAnimated = _a.isAnimated,
|
|
30
|
+
enableAspectRatio = _a.enableAspectRatio,
|
|
31
|
+
alt = _a.alt,
|
|
32
|
+
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
33
|
+
if (isAnimated) {
|
|
34
|
+
return /*#__PURE__*/React__default.createElement(VideoPlayer, __assign({
|
|
376
35
|
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
377
|
-
},
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
return
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
const CultureLab = /*#__PURE__*/function () {
|
|
398
|
-
const CultureLab = function (_a) {
|
|
399
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
400
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
401
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
402
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
403
|
-
}, props, {
|
|
404
|
-
name: "illustrations/heart/scene/miscellaneous-culture-lab.svg"
|
|
405
|
-
}));
|
|
406
|
-
};
|
|
407
|
-
CultureLab.displayName = 'CultureLab';
|
|
408
|
-
return CultureLab;
|
|
409
|
-
}();
|
|
410
|
-
const TermsAgreement = /*#__PURE__*/function () {
|
|
411
|
-
const TermsAgreement = function (_a) {
|
|
412
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
413
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
414
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
415
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
416
|
-
}, props, {
|
|
417
|
-
name: "illustrations/heart/scene/miscellaneous-terms-agreement.svg"
|
|
418
|
-
}));
|
|
419
|
-
};
|
|
420
|
-
TermsAgreement.displayName = 'TermsAgreement';
|
|
421
|
-
// Skills Coach
|
|
422
|
-
return TermsAgreement;
|
|
423
|
-
}();
|
|
424
|
-
const SkillsCoach1On1Meetings = /*#__PURE__*/function () {
|
|
425
|
-
const SkillsCoach1On1Meetings = function (_a) {
|
|
426
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
427
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
428
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
429
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
430
|
-
}, props, {
|
|
431
|
-
name: "illustrations/heart/scene/skills-coach-1-on-1-meetings.svg"
|
|
432
|
-
}));
|
|
433
|
-
};
|
|
434
|
-
SkillsCoach1On1Meetings.displayName = 'SkillsCoach1On1Meetings';
|
|
435
|
-
return SkillsCoach1On1Meetings;
|
|
436
|
-
}();
|
|
437
|
-
const SkillsCoachCoaching = /*#__PURE__*/function () {
|
|
438
|
-
const SkillsCoachCoaching = function (_a) {
|
|
439
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
440
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
441
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
442
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
443
|
-
}, props, {
|
|
444
|
-
name: "illustrations/heart/scene/skills-coach-coaching.svg"
|
|
445
|
-
}));
|
|
446
|
-
};
|
|
447
|
-
SkillsCoachCoaching.displayName = 'SkillsCoachCoaching';
|
|
448
|
-
return SkillsCoachCoaching;
|
|
449
|
-
}();
|
|
450
|
-
const SkillsCoachEmployeeDevelopment = /*#__PURE__*/function () {
|
|
451
|
-
const SkillsCoachEmployeeDevelopment = function (_a) {
|
|
452
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
453
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
454
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
455
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
456
|
-
}, props, {
|
|
457
|
-
name: "illustrations/heart/scene/skills-coach-employee-development.svg"
|
|
458
|
-
}));
|
|
459
|
-
};
|
|
460
|
-
SkillsCoachEmployeeDevelopment.displayName = 'SkillsCoachEmployeeDevelopment';
|
|
461
|
-
return SkillsCoachEmployeeDevelopment;
|
|
462
|
-
}();
|
|
463
|
-
const SkillsCoachEssentialFeedback = /*#__PURE__*/function () {
|
|
464
|
-
const SkillsCoachEssentialFeedback = function (_a) {
|
|
465
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
466
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
467
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
468
|
-
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
469
|
-
}, props, {
|
|
470
|
-
name: "illustrations/heart/scene/skills-coach-essential-feedback.svg"
|
|
471
|
-
}));
|
|
472
|
-
};
|
|
473
|
-
SkillsCoachEssentialFeedback.displayName = 'SkillsCoachEssentialFeedback';
|
|
474
|
-
return SkillsCoachEssentialFeedback;
|
|
475
|
-
}();
|
|
476
|
-
const SkillsCoachEssentialProductivity = /*#__PURE__*/function () {
|
|
477
|
-
const SkillsCoachEssentialProductivity = function (_a) {
|
|
478
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
479
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
480
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
481
|
-
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
482
|
-
}, props, {
|
|
483
|
-
name: "illustrations/heart/scene/skills-coach-essential-productivity.svg"
|
|
484
|
-
}));
|
|
485
|
-
};
|
|
486
|
-
SkillsCoachEssentialProductivity.displayName = 'SkillsCoachEssentialProductivity';
|
|
487
|
-
return SkillsCoachEssentialProductivity;
|
|
488
|
-
}();
|
|
489
|
-
const SkillsCoachEssentialResilience = /*#__PURE__*/function () {
|
|
490
|
-
const SkillsCoachEssentialResilience = function (_a) {
|
|
491
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
492
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
493
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
494
|
-
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
495
|
-
}, props, {
|
|
496
|
-
name: "illustrations/heart/scene/skills-coach-essential-resilience.svg"
|
|
497
|
-
}));
|
|
498
|
-
};
|
|
499
|
-
SkillsCoachEssentialResilience.displayName = 'SkillsCoachEssentialResilience';
|
|
500
|
-
return SkillsCoachEssentialResilience;
|
|
501
|
-
}();
|
|
502
|
-
const SkillsCoachInfluentialCommunication = /*#__PURE__*/function () {
|
|
503
|
-
const SkillsCoachInfluentialCommunication = function (_a) {
|
|
504
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
505
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
506
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
507
|
-
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
508
|
-
}, props, {
|
|
509
|
-
name: "illustrations/heart/scene/skills-coach-influential-communication.svg"
|
|
510
|
-
}));
|
|
511
|
-
};
|
|
512
|
-
SkillsCoachInfluentialCommunication.displayName = 'SkillsCoachInfluentialCommunication';
|
|
513
|
-
return SkillsCoachInfluentialCommunication;
|
|
514
|
-
}();
|
|
515
|
-
const SkillsCoachLeadingChange = /*#__PURE__*/function () {
|
|
516
|
-
const SkillsCoachLeadingChange = function (_a) {
|
|
517
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
518
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
519
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
520
|
-
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
521
|
-
}, props, {
|
|
522
|
-
name: "illustrations/heart/scene/skills-coach-leading-change.svg"
|
|
523
|
-
}));
|
|
524
|
-
};
|
|
525
|
-
SkillsCoachLeadingChange.displayName = 'SkillsCoachLeadingChange';
|
|
526
|
-
return SkillsCoachLeadingChange;
|
|
527
|
-
}();
|
|
528
|
-
const SkillsCoachFeedback = /*#__PURE__*/function () {
|
|
529
|
-
const SkillsCoachFeedback = function (_a) {
|
|
530
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
531
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
532
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
533
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
534
|
-
}, props, {
|
|
535
|
-
name: "illustrations/heart/scene/skills-coach-feedback.svg"
|
|
536
|
-
}));
|
|
537
|
-
};
|
|
538
|
-
SkillsCoachFeedback.displayName = 'SkillsCoachFeedback';
|
|
539
|
-
return SkillsCoachFeedback;
|
|
540
|
-
}();
|
|
541
|
-
const SkillsCoachManagerHub = /*#__PURE__*/function () {
|
|
542
|
-
const SkillsCoachManagerHub = function (_a) {
|
|
543
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
544
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
545
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
546
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
547
|
-
}, props, {
|
|
548
|
-
name: "illustrations/heart/scene/skills-coach-manager-hub.svg"
|
|
549
|
-
}));
|
|
550
|
-
};
|
|
551
|
-
SkillsCoachManagerHub.displayName = 'SkillsCoachManagerHub';
|
|
552
|
-
return SkillsCoachManagerHub;
|
|
553
|
-
}();
|
|
554
|
-
const SkillsCoachProductivity = /*#__PURE__*/function () {
|
|
555
|
-
const SkillsCoachProductivity = function (_a) {
|
|
556
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
557
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
558
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
559
|
-
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
560
|
-
}, props, {
|
|
561
|
-
name: "illustrations/heart/scene/skills-coach-productivity.svg"
|
|
562
|
-
}));
|
|
563
|
-
};
|
|
564
|
-
SkillsCoachProductivity.displayName = 'SkillsCoachProductivity';
|
|
565
|
-
return SkillsCoachProductivity;
|
|
566
|
-
}();
|
|
567
|
-
const SkillsCoachRemoteManager = /*#__PURE__*/function () {
|
|
568
|
-
const SkillsCoachRemoteManager = function (_a) {
|
|
569
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
570
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
571
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
36
|
+
}, otherProps, {
|
|
37
|
+
fallback: "illustrations/heart/scene/brand-moments-login",
|
|
38
|
+
source: "illustrations/heart/scene/brand-moments-login"
|
|
39
|
+
}));
|
|
40
|
+
}
|
|
41
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
42
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
43
|
+
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
44
|
+
}, otherProps, {
|
|
45
|
+
name: "illustrations/heart/scene/brand-moments-login.png"
|
|
46
|
+
}));
|
|
47
|
+
};
|
|
48
|
+
BrandMomentLogin.displayName = 'BrandMomentLogin';
|
|
49
|
+
var BrandMomentError = function (_a) {
|
|
50
|
+
var isAnimated = _a.isAnimated,
|
|
51
|
+
enableAspectRatio = _a.enableAspectRatio,
|
|
52
|
+
alt = _a.alt,
|
|
53
|
+
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
54
|
+
if (isAnimated) {
|
|
55
|
+
return /*#__PURE__*/React__default.createElement(VideoPlayer, __assign({
|
|
572
56
|
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
573
|
-
},
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
return
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
57
|
+
}, otherProps, {
|
|
58
|
+
fallback: "illustrations/heart/scene/brand-moments-error",
|
|
59
|
+
source: "illustrations/heart/scene/brand-moments-error"
|
|
60
|
+
}));
|
|
61
|
+
}
|
|
62
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
63
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
64
|
+
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
65
|
+
}, otherProps, {
|
|
66
|
+
name: "illustrations/heart/scene/brand-moments-error.png"
|
|
67
|
+
}));
|
|
68
|
+
};
|
|
69
|
+
BrandMomentError.displayName = 'BrandMomentError';
|
|
70
|
+
var BrandMomentNewAccountOnboarding = function (_a) {
|
|
71
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
72
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
73
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
74
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
75
|
+
}, props, {
|
|
76
|
+
name: "illustrations/heart/scene/brand-moments-new-account-onboarding.svg"
|
|
77
|
+
}));
|
|
78
|
+
};
|
|
79
|
+
BrandMomentNewAccountOnboarding.displayName = 'BrandMomentNewAccountOnboarding';
|
|
80
|
+
var BrandMomentUploadEmployeeData = function (_a) {
|
|
81
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
82
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
83
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
84
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
85
|
+
}, props, {
|
|
86
|
+
name: "illustrations/heart/scene/brand-moments-upload-employee-data.svg"
|
|
87
|
+
}));
|
|
88
|
+
};
|
|
89
|
+
BrandMomentUploadEmployeeData.displayName = 'BrandMomentUploadEmployeeData';
|
|
90
|
+
var BrandMomentStarterKit = function (_a) {
|
|
91
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
92
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
93
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
94
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
95
|
+
}, props, {
|
|
96
|
+
name: "illustrations/heart/scene/brand-moments-starter-kit.svg"
|
|
97
|
+
}));
|
|
98
|
+
};
|
|
99
|
+
BrandMomentStarterKit.displayName = 'BrandMomentStarterKit';
|
|
100
|
+
// Empty States
|
|
101
|
+
var EmptyStatesAction = function (_a) {
|
|
102
|
+
var isAnimated = _a.isAnimated,
|
|
103
|
+
enableAspectRatio = _a.enableAspectRatio,
|
|
104
|
+
alt = _a.alt,
|
|
105
|
+
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
106
|
+
if (isAnimated) {
|
|
107
|
+
return /*#__PURE__*/React__default.createElement(VideoPlayer, __assign({
|
|
585
108
|
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
586
|
-
},
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
return
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
}();
|
|
607
|
-
const Programs = /*#__PURE__*/function () {
|
|
608
|
-
const Programs = function (_a) {
|
|
609
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
610
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
611
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
109
|
+
}, otherProps, {
|
|
110
|
+
fallback: "illustrations/heart/scene/empty-states-action",
|
|
111
|
+
source: "illustrations/heart/scene/empty-states-action"
|
|
112
|
+
}));
|
|
113
|
+
}
|
|
114
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
115
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
116
|
+
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
117
|
+
}, otherProps, {
|
|
118
|
+
name: "illustrations/heart/scene/empty-states-action.svg"
|
|
119
|
+
}));
|
|
120
|
+
};
|
|
121
|
+
EmptyStatesAction.displayName = 'EmptyStatesAction';
|
|
122
|
+
var EmptyStatesInformative = function (_a) {
|
|
123
|
+
var isAnimated = _a.isAnimated,
|
|
124
|
+
enableAspectRatio = _a.enableAspectRatio,
|
|
125
|
+
alt = _a.alt,
|
|
126
|
+
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
127
|
+
if (isAnimated) {
|
|
128
|
+
return /*#__PURE__*/React__default.createElement(VideoPlayer, __assign({
|
|
612
129
|
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
613
|
-
},
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
return
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
130
|
+
}, otherProps, {
|
|
131
|
+
fallback: "illustrations/heart/scene/empty-states-informative",
|
|
132
|
+
source: "illustrations/heart/scene/empty-states-informative"
|
|
133
|
+
}));
|
|
134
|
+
}
|
|
135
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
136
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
137
|
+
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
138
|
+
}, otherProps, {
|
|
139
|
+
name: "illustrations/heart/scene/empty-states-informative.svg"
|
|
140
|
+
}));
|
|
141
|
+
};
|
|
142
|
+
EmptyStatesInformative.displayName = 'EmptyStatesInformative';
|
|
143
|
+
var EmptyStatesNegative = function (_a) {
|
|
144
|
+
var isAnimated = _a.isAnimated,
|
|
145
|
+
enableAspectRatio = _a.enableAspectRatio,
|
|
146
|
+
alt = _a.alt,
|
|
147
|
+
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
148
|
+
if (isAnimated) {
|
|
149
|
+
return /*#__PURE__*/React__default.createElement(VideoPlayer, __assign({
|
|
625
150
|
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
626
|
-
},
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
return
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
151
|
+
}, otherProps, {
|
|
152
|
+
fallback: "illustrations/heart/scene/empty-states-negative",
|
|
153
|
+
source: "illustrations/heart/scene/empty-states-negative"
|
|
154
|
+
}));
|
|
155
|
+
}
|
|
156
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
157
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
158
|
+
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
159
|
+
}, otherProps, {
|
|
160
|
+
name: "illustrations/heart/scene/empty-states-negative.svg"
|
|
161
|
+
}));
|
|
162
|
+
};
|
|
163
|
+
EmptyStatesNegative.displayName = 'EmptyStatesNegative';
|
|
164
|
+
var EmptyStatesPositive = function (_a) {
|
|
165
|
+
var isAnimated = _a.isAnimated,
|
|
166
|
+
enableAspectRatio = _a.enableAspectRatio,
|
|
167
|
+
alt = _a.alt,
|
|
168
|
+
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
169
|
+
if (isAnimated) {
|
|
170
|
+
return /*#__PURE__*/React__default.createElement(VideoPlayer, __assign({
|
|
638
171
|
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
639
|
-
},
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
return
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
const SurveyGetStarted = /*#__PURE__*/function () {
|
|
660
|
-
const SurveyGetStarted = function (_a) {
|
|
661
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
662
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
663
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
664
|
-
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
665
|
-
}, props, {
|
|
666
|
-
name: "illustrations/heart/scene/getting-started.svg"
|
|
667
|
-
}));
|
|
668
|
-
};
|
|
669
|
-
SurveyGetStarted.displayName = 'SurveyGetStarted';
|
|
670
|
-
return SurveyGetStarted;
|
|
671
|
-
}();
|
|
672
|
-
const PerformanceCompanySettings = /*#__PURE__*/function () {
|
|
673
|
-
const PerformanceCompanySettings = function (_a) {
|
|
674
|
-
var enableAspectRatio = _a.enableAspectRatio,
|
|
675
|
-
props = __rest(_a, ["enableAspectRatio"]);
|
|
676
|
-
return /*#__PURE__*/React.createElement(Base, __assign({
|
|
172
|
+
}, otherProps, {
|
|
173
|
+
fallback: "illustrations/heart/scene/empty-states-positive",
|
|
174
|
+
source: "illustrations/heart/scene/empty-states-positive"
|
|
175
|
+
}));
|
|
176
|
+
}
|
|
177
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
178
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
179
|
+
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
180
|
+
}, otherProps, {
|
|
181
|
+
name: "illustrations/heart/scene/empty-states-positive.svg"
|
|
182
|
+
}));
|
|
183
|
+
};
|
|
184
|
+
EmptyStatesPositive.displayName = 'EmptyStatesPositive';
|
|
185
|
+
var EmptyStatesNeutral = function (_a) {
|
|
186
|
+
var isAnimated = _a.isAnimated,
|
|
187
|
+
enableAspectRatio = _a.enableAspectRatio,
|
|
188
|
+
alt = _a.alt,
|
|
189
|
+
otherProps = __rest(_a, ["isAnimated", "enableAspectRatio", "alt"]);
|
|
190
|
+
if (isAnimated) {
|
|
191
|
+
return /*#__PURE__*/React__default.createElement(VideoPlayer, __assign({
|
|
677
192
|
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
678
|
-
},
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
return
|
|
684
|
-
|
|
193
|
+
}, otherProps, {
|
|
194
|
+
fallback: "illustrations/heart/scene/empty-states-neutral",
|
|
195
|
+
source: "illustrations/heart/scene/empty-states-neutral"
|
|
196
|
+
}));
|
|
197
|
+
}
|
|
198
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
199
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined,
|
|
200
|
+
alt: alt !== null && alt !== void 0 ? alt : ''
|
|
201
|
+
}, otherProps, {
|
|
202
|
+
name: "illustrations/heart/scene/empty-states-neutral.svg"
|
|
203
|
+
}));
|
|
204
|
+
};
|
|
205
|
+
EmptyStatesNeutral.displayName = 'EmptyStatesNeutral';
|
|
206
|
+
// Information Modals
|
|
207
|
+
var Information360Upgrade = function (_a) {
|
|
208
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
209
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
210
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
211
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
212
|
+
}, props, {
|
|
213
|
+
name: "illustrations/heart/scene/information-modals-360-upgrade.svg"
|
|
214
|
+
}));
|
|
215
|
+
};
|
|
216
|
+
Information360Upgrade.displayName = 'Information360Upgrade';
|
|
217
|
+
var InformationDemographicFocus = function (_a) {
|
|
218
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
219
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
220
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
221
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
222
|
+
}, props, {
|
|
223
|
+
name: "illustrations/heart/scene/information-modals-demographic-focus.svg"
|
|
224
|
+
}));
|
|
225
|
+
};
|
|
226
|
+
InformationDemographicFocus.displayName = 'InformationDemographicFocus';
|
|
227
|
+
var InformationTurnoverCalculator = function (_a) {
|
|
228
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
229
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
230
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
231
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
232
|
+
}, props, {
|
|
233
|
+
name: "illustrations/heart/scene/information-modals-turnover-calculator.svg"
|
|
234
|
+
}));
|
|
235
|
+
};
|
|
236
|
+
InformationTurnoverCalculator.displayName = 'InformationTurnoverCalculator';
|
|
237
|
+
var InformationTurnoverForecast = function (_a) {
|
|
238
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
239
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
240
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
241
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
242
|
+
}, props, {
|
|
243
|
+
name: "illustrations/heart/scene/information-modals-turnover-forecast.svg"
|
|
244
|
+
}));
|
|
245
|
+
};
|
|
246
|
+
InformationTurnoverForecast.displayName = 'InformationTurnoverForecast';
|
|
247
|
+
var InformationEmergingTrends = function (_a) {
|
|
248
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
249
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
250
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
251
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
252
|
+
}, props, {
|
|
253
|
+
name: "illustrations/heart/scene/information-modals-emerging-trends.svg"
|
|
254
|
+
}));
|
|
255
|
+
};
|
|
256
|
+
InformationEmergingTrends.displayName = 'InformationEmergingTrends';
|
|
257
|
+
var InformationEmployeeLifecycle = function (_a) {
|
|
258
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
259
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
260
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
261
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
262
|
+
}, props, {
|
|
263
|
+
name: "illustrations/heart/scene/information-modals-employee-lifecycle.svg"
|
|
264
|
+
}));
|
|
265
|
+
};
|
|
266
|
+
InformationEmployeeLifecycle.displayName = 'InformationEmployeeLifecycle';
|
|
267
|
+
var InformationReportOwner = function (_a) {
|
|
268
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
269
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
270
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
271
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
272
|
+
}, props, {
|
|
273
|
+
name: "illustrations/heart/scene/information-modals-report-owner.svg"
|
|
274
|
+
}));
|
|
275
|
+
};
|
|
276
|
+
InformationReportOwner.displayName = 'InformationReportOwner';
|
|
277
|
+
var InformationReportOwnerByRule = function (_a) {
|
|
278
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
279
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
280
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
281
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
282
|
+
}, props, {
|
|
283
|
+
name: "illustrations/heart/scene/information-modals-report-owner-by-rule.svg"
|
|
284
|
+
}));
|
|
285
|
+
};
|
|
286
|
+
InformationReportOwnerByRule.displayName = 'InformationReportOwnerByRule';
|
|
287
|
+
// Miscellaneous
|
|
288
|
+
var Collaboration = function (_a) {
|
|
289
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
290
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
291
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
292
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
293
|
+
}, props, {
|
|
294
|
+
name: "illustrations/heart/scene/miscellaneous-collaboration.svg"
|
|
295
|
+
}));
|
|
296
|
+
};
|
|
297
|
+
Collaboration.displayName = 'Collaboration';
|
|
298
|
+
var Communication = function (_a) {
|
|
299
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
300
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
301
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
302
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
303
|
+
}, props, {
|
|
304
|
+
name: "illustrations/heart/scene/miscellaneous-communications.svg"
|
|
305
|
+
}));
|
|
306
|
+
};
|
|
307
|
+
Communication.displayName = 'Communication';
|
|
308
|
+
var CompanyValues = function (_a) {
|
|
309
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
310
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
311
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
312
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
313
|
+
}, props, {
|
|
314
|
+
name: "illustrations/heart/scene/miscellaneous-company-values.svg"
|
|
315
|
+
}));
|
|
316
|
+
};
|
|
317
|
+
CompanyValues.displayName = 'CompanyValues';
|
|
318
|
+
var ConnectTheDots = function (_a) {
|
|
319
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
320
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
321
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
322
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
323
|
+
}, props, {
|
|
324
|
+
name: "illustrations/heart/scene/miscellaneous-connect-the-dots.svg"
|
|
325
|
+
}));
|
|
326
|
+
};
|
|
327
|
+
ConnectTheDots.displayName = 'ConnectTheDots';
|
|
328
|
+
var CultureLab = function (_a) {
|
|
329
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
330
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
331
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
332
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
333
|
+
}, props, {
|
|
334
|
+
name: "illustrations/heart/scene/miscellaneous-culture-lab.svg"
|
|
335
|
+
}));
|
|
336
|
+
};
|
|
337
|
+
CultureLab.displayName = 'CultureLab';
|
|
338
|
+
var TermsAgreement = function (_a) {
|
|
339
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
340
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
341
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
342
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
343
|
+
}, props, {
|
|
344
|
+
name: "illustrations/heart/scene/miscellaneous-terms-agreement.svg"
|
|
345
|
+
}));
|
|
346
|
+
};
|
|
347
|
+
TermsAgreement.displayName = 'TermsAgreement';
|
|
348
|
+
// Skills Coach
|
|
349
|
+
var SkillsCoach1On1Meetings = function (_a) {
|
|
350
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
351
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
352
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
353
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
354
|
+
}, props, {
|
|
355
|
+
name: "illustrations/heart/scene/skills-coach-1-on-1-meetings.svg"
|
|
356
|
+
}));
|
|
357
|
+
};
|
|
358
|
+
SkillsCoach1On1Meetings.displayName = 'SkillsCoach1On1Meetings';
|
|
359
|
+
var SkillsCoachCoaching = function (_a) {
|
|
360
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
361
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
362
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
363
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
364
|
+
}, props, {
|
|
365
|
+
name: "illustrations/heart/scene/skills-coach-coaching.svg"
|
|
366
|
+
}));
|
|
367
|
+
};
|
|
368
|
+
SkillsCoachCoaching.displayName = 'SkillsCoachCoaching';
|
|
369
|
+
var SkillsCoachEmployeeDevelopment = function (_a) {
|
|
370
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
371
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
372
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
373
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
374
|
+
}, props, {
|
|
375
|
+
name: "illustrations/heart/scene/skills-coach-employee-development.svg"
|
|
376
|
+
}));
|
|
377
|
+
};
|
|
378
|
+
SkillsCoachEmployeeDevelopment.displayName = 'SkillsCoachEmployeeDevelopment';
|
|
379
|
+
var SkillsCoachEssentialFeedback = function (_a) {
|
|
380
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
381
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
382
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
383
|
+
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
384
|
+
}, props, {
|
|
385
|
+
name: "illustrations/heart/scene/skills-coach-essential-feedback.svg"
|
|
386
|
+
}));
|
|
387
|
+
};
|
|
388
|
+
SkillsCoachEssentialFeedback.displayName = 'SkillsCoachEssentialFeedback';
|
|
389
|
+
var SkillsCoachEssentialProductivity = function (_a) {
|
|
390
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
391
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
392
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
393
|
+
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
394
|
+
}, props, {
|
|
395
|
+
name: "illustrations/heart/scene/skills-coach-essential-productivity.svg"
|
|
396
|
+
}));
|
|
397
|
+
};
|
|
398
|
+
SkillsCoachEssentialProductivity.displayName = 'SkillsCoachEssentialProductivity';
|
|
399
|
+
var SkillsCoachEssentialResilience = function (_a) {
|
|
400
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
401
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
402
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
403
|
+
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
404
|
+
}, props, {
|
|
405
|
+
name: "illustrations/heart/scene/skills-coach-essential-resilience.svg"
|
|
406
|
+
}));
|
|
407
|
+
};
|
|
408
|
+
SkillsCoachEssentialResilience.displayName = 'SkillsCoachEssentialResilience';
|
|
409
|
+
var SkillsCoachInfluentialCommunication = function (_a) {
|
|
410
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
411
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
412
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
413
|
+
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
414
|
+
}, props, {
|
|
415
|
+
name: "illustrations/heart/scene/skills-coach-influential-communication.svg"
|
|
416
|
+
}));
|
|
417
|
+
};
|
|
418
|
+
SkillsCoachInfluentialCommunication.displayName = 'SkillsCoachInfluentialCommunication';
|
|
419
|
+
var SkillsCoachLeadingChange = function (_a) {
|
|
420
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
421
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
422
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
423
|
+
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
424
|
+
}, props, {
|
|
425
|
+
name: "illustrations/heart/scene/skills-coach-leading-change.svg"
|
|
426
|
+
}));
|
|
427
|
+
};
|
|
428
|
+
SkillsCoachLeadingChange.displayName = 'SkillsCoachLeadingChange';
|
|
429
|
+
var SkillsCoachFeedback = function (_a) {
|
|
430
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
431
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
432
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
433
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
434
|
+
}, props, {
|
|
435
|
+
name: "illustrations/heart/scene/skills-coach-feedback.svg"
|
|
436
|
+
}));
|
|
437
|
+
};
|
|
438
|
+
SkillsCoachFeedback.displayName = 'SkillsCoachFeedback';
|
|
439
|
+
var SkillsCoachManagerHub = function (_a) {
|
|
440
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
441
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
442
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
443
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
444
|
+
}, props, {
|
|
445
|
+
name: "illustrations/heart/scene/skills-coach-manager-hub.svg"
|
|
446
|
+
}));
|
|
447
|
+
};
|
|
448
|
+
SkillsCoachManagerHub.displayName = 'SkillsCoachManagerHub';
|
|
449
|
+
var SkillsCoachProductivity = function (_a) {
|
|
450
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
451
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
452
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
453
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
454
|
+
}, props, {
|
|
455
|
+
name: "illustrations/heart/scene/skills-coach-productivity.svg"
|
|
456
|
+
}));
|
|
457
|
+
};
|
|
458
|
+
SkillsCoachProductivity.displayName = 'SkillsCoachProductivity';
|
|
459
|
+
var SkillsCoachRemoteManager = function (_a) {
|
|
460
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
461
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
462
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
463
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
464
|
+
}, props, {
|
|
465
|
+
name: "illustrations/heart/scene/skills-coach-remote-manager.svg"
|
|
466
|
+
}));
|
|
467
|
+
};
|
|
468
|
+
SkillsCoachRemoteManager.displayName = 'SkillsCoachRemoteManager';
|
|
469
|
+
var SkillsCoachResilience = function (_a) {
|
|
470
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
471
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
472
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
473
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
474
|
+
}, props, {
|
|
475
|
+
name: "illustrations/heart/scene/skills-coach-resilience.svg"
|
|
476
|
+
}));
|
|
477
|
+
};
|
|
478
|
+
SkillsCoachResilience.displayName = 'SkillsCoachResilience';
|
|
479
|
+
var SkillsCoachStrategy = function (_a) {
|
|
480
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
481
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
482
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
483
|
+
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
484
|
+
}, props, {
|
|
485
|
+
name: "illustrations/heart/scene/skills-coach-strategy.svg"
|
|
486
|
+
}));
|
|
487
|
+
};
|
|
488
|
+
SkillsCoachStrategy.displayName = 'SkillsCoachStrategy';
|
|
489
|
+
// Engagement
|
|
490
|
+
var Programs = function (_a) {
|
|
491
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
492
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
493
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
494
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
495
|
+
}, props, {
|
|
496
|
+
name: "illustrations/heart/scene/engagement-programs.svg"
|
|
497
|
+
}));
|
|
498
|
+
};
|
|
499
|
+
Programs.displayName = 'Programs';
|
|
500
|
+
var EngagementSurveySummaryFemale = function (_a) {
|
|
501
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
502
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
503
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
504
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
505
|
+
}, props, {
|
|
506
|
+
name: "illustrations/heart/scene/engagement-survey-summary-female.svg"
|
|
507
|
+
}));
|
|
508
|
+
};
|
|
509
|
+
EngagementSurveySummaryFemale.displayName = 'EngagementSurveySummaryFemale';
|
|
510
|
+
var EngagementSurveySummaryMale = function (_a) {
|
|
511
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
512
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
513
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
514
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
515
|
+
}, props, {
|
|
516
|
+
name: "illustrations/heart/scene/engagement-survey-summary-male.svg"
|
|
517
|
+
}));
|
|
518
|
+
};
|
|
519
|
+
EngagementSurveySummaryMale.displayName = 'EngagementSurveySummaryMale';
|
|
520
|
+
var SurveyOverviewClosed = function (_a) {
|
|
521
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
522
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
523
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
524
|
+
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
525
|
+
}, props, {
|
|
526
|
+
name: "illustrations/heart/scene/survey-overview-closed.svg"
|
|
527
|
+
}));
|
|
528
|
+
};
|
|
529
|
+
SurveyOverviewClosed.displayName = 'SurveyOverviewClosed';
|
|
530
|
+
var SurveyGetStarted = function (_a) {
|
|
531
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
532
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
533
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
534
|
+
aspectRatio: enableAspectRatio ? 'portrait' : undefined
|
|
535
|
+
}, props, {
|
|
536
|
+
name: "illustrations/heart/scene/getting-started.svg"
|
|
537
|
+
}));
|
|
538
|
+
};
|
|
539
|
+
SurveyGetStarted.displayName = 'SurveyGetStarted';
|
|
540
|
+
var PerformanceCompanySettings = function (_a) {
|
|
541
|
+
var enableAspectRatio = _a.enableAspectRatio,
|
|
542
|
+
props = __rest(_a, ["enableAspectRatio"]);
|
|
543
|
+
return /*#__PURE__*/React__default.createElement(Base, __assign({
|
|
544
|
+
aspectRatio: enableAspectRatio ? 'landscape' : undefined
|
|
545
|
+
}, props, {
|
|
546
|
+
name: "illustrations/heart/scene/performance-company-settings.svg"
|
|
547
|
+
}));
|
|
548
|
+
};
|
|
549
|
+
PerformanceCompanySettings.displayName = 'PerformanceCompanySettings';
|
|
685
550
|
export { BrandMomentError, BrandMomentLogin, BrandMomentNewAccountOnboarding, BrandMomentPositiveOutro, BrandMomentStarterKit, BrandMomentUploadEmployeeData, Collaboration, Communication, CompanyValues, ConnectTheDots, CultureLab, EmptyStatesAction, EmptyStatesInformative, EmptyStatesNegative, EmptyStatesNeutral, EmptyStatesPositive, EngagementSurveySummaryFemale, EngagementSurveySummaryMale, Information360Upgrade, InformationDemographicFocus, InformationEmergingTrends, InformationEmployeeLifecycle, InformationReportOwner, InformationReportOwnerByRule, InformationTurnoverCalculator, InformationTurnoverForecast, PerformanceCompanySettings, Programs, SkillsCoach1On1Meetings, SkillsCoachCoaching, SkillsCoachEmployeeDevelopment, SkillsCoachEssentialFeedback, SkillsCoachEssentialProductivity, SkillsCoachEssentialResilience, SkillsCoachFeedback, SkillsCoachInfluentialCommunication, SkillsCoachLeadingChange, SkillsCoachManagerHub, SkillsCoachProductivity, SkillsCoachRemoteManager, SkillsCoachResilience, SkillsCoachStrategy, SurveyGetStarted, SurveyOverviewClosed, TermsAgreement };
|