@laerdal/life-react-components 3.5.1-dev.11 → 3.5.1-dev.13
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/Accordion/AccordionMenu.d.ts +15 -0
- package/dist/Accordion/ContentAccordion.d.ts +14 -0
- package/dist/AuthPage/AuthPage.d.ts +2 -2
- package/dist/Banners/Banner.d.ts +24 -3
- package/dist/Banners/OverviewBanner.d.ts +1 -1
- package/dist/Breadcrumb/Breadcrumb.d.ts +8 -1
- package/dist/Breadcrumb/BreadcrumbItem.d.ts +2 -0
- package/dist/Button/BackButton.d.ts +7 -0
- package/dist/Button/Button.d.ts +29 -10
- package/dist/Button/DualFunctionButton.d.ts +10 -0
- package/dist/Button/Iconbutton.d.ts +17 -11
- package/dist/Card/HorizontalCard/types.d.ts +13 -3
- package/dist/Card/VerticalCard/Card.d.ts +8 -1
- package/dist/Card/VerticalCard/CardBottomSection.d.ts +11 -0
- package/dist/Card/VerticalCard/CardMiddleSection.d.ts +8 -0
- package/dist/Card/VerticalCard/CardTopSection.d.ts +11 -0
- package/dist/Chips/ChipTypes.d.ts +35 -1
- package/dist/ChipsInput/ChipDropdownInput.d.ts +9 -1
- package/dist/ChipsInput/index.d.ts +1 -0
- package/dist/Dropdown/BasicDropdown.d.ts +76 -0
- package/dist/Dropdown/CommonStyling.d.ts +0 -1
- package/dist/Dropdown/DropdownButtonTypes.d.ts +28 -1
- package/dist/Dropdown/DropdownContent.d.ts +10 -1
- package/dist/Dropdown/DropdownFilter.d.ts +18 -1
- package/dist/Footer/Components/FooterBottomLinks.d.ts +2 -2
- package/dist/Footer/Components/FooterDropdownLinks.d.ts +2 -2
- package/dist/Footer/Components/FooterNavSection.d.ts +2 -2
- package/dist/Footer/Components/FooterNewsletterAndSocialSection.d.ts +2 -2
- package/dist/Footer/Components/FooterTop.d.ts +2 -2
- package/dist/Footer/Footer.d.ts +2 -2
- package/dist/Footer/SiteFooter.d.ts +1 -1
- package/dist/GlobalNavigationBar/__tests__/GlobalNavigationBar.tests.js +299 -0
- package/dist/GlobalNavigationBar/__tests__/Logo.tests.js +26 -0
- package/dist/GlobalNavigationBar/desktop/ExtendedMainMenu.d.ts +2 -2
- package/dist/GlobalNavigationBar/desktop/UserMenu.d.ts +2 -2
- package/dist/GlobalNavigationBar/mobile/MobileMenu.d.ts +2 -2
- package/dist/GlobalNavigationBar/types.d.ts +5 -1
- package/dist/HyperLink/HyperLink.d.ts +7 -0
- package/dist/Image/ImageWithFallbacks.d.ts +1 -1
- package/dist/InputFields/DatepickerField.d.ts +39 -1
- package/dist/InputFields/DatepickerFieldHeader.d.ts +5 -2
- package/dist/InputFields/NumberField.d.ts +46 -17
- package/dist/InputFields/PasswordField.d.ts +73 -1
- package/dist/InputFields/QuickSearch.d.ts +12 -0
- package/dist/InputFields/RadioButton.d.ts +26 -2
- package/dist/InputFields/RichTextField.d.ts +57 -0
- package/dist/InputFields/SearchBar.d.ts +64 -0
- package/dist/InputFields/TextField.d.ts +113 -1
- package/dist/InputFields/types.d.ts +39 -1
- package/dist/LinearProgress/LinearProgress.d.ts +6 -0
- package/dist/List/ListRow.d.ts +17 -4
- package/dist/List/__tests__/ListRow.tests.js +51 -0
- package/dist/LoadingIndicator/LoadingIndicator.d.ts +6 -3
- package/dist/LoadingPage/GlobalLoadingPage.d.ts +1 -1
- package/dist/MenuItem/MenuItem.d.ts +7 -1
- package/dist/MiniProductCard/MiniProductCard.d.ts +2 -2
- package/dist/Modals/Modal.d.ts +4 -4
- package/dist/Modals/ModalContainer.d.ts +1 -1
- package/dist/Modals/ModalContent.d.ts +1 -1
- package/dist/Modals/ModalDialog.d.ts +14 -4
- package/dist/NavItem/NavItem.d.ts +1 -1
- package/dist/NavItem/NestedNavItem.d.ts +20 -2
- package/dist/NotificationDot/NotificationDot.d.ts +10 -0
- package/dist/Paginator/Paginator.d.ts +18 -4
- package/dist/Panel/Panel.d.ts +24 -6
- package/dist/Popover/Popover.d.ts +80 -12
- package/dist/ProfileButton/ProfileButton.d.ts +31 -3
- package/dist/QuizButton/QuizButton.d.ts +25 -1
- package/dist/SegmentControl/SegmentControl.d.ts +25 -2
- package/dist/SegmentControl/index.d.ts +2 -2
- package/dist/SideMenu/SideMenuBody.d.ts +2 -2
- package/dist/SideMenu/SideMenuFooter.d.ts +2 -2
- package/dist/SideMenu/SideMenuHeader.d.ts +2 -2
- package/dist/Switcher/MobileSwitcherMenu.d.ts +1 -1
- package/dist/Switcher/SwitcherMenuItem.d.ts +2 -2
- package/dist/Switcher/__tests__/SwitcherMenuItem.js +53 -0
- package/dist/Table/TableTypes.d.ts +130 -0
- package/dist/Tabs/HorizontalTabs.d.ts +14 -3
- package/dist/Tabs/TabLink.d.ts +1 -1
- package/dist/Tabs/VerticalTabs.d.ts +30 -2
- package/dist/Tabs/__tests__/TabLink.tests.js +83 -0
- package/dist/Tabs/__tests__/Tablist.tests.js +78 -0
- package/dist/Tabs/index.d.ts +1 -1
- package/dist/Tag/Tag.d.ts +3 -0
- package/dist/Tile/TileCommonItems.d.ts +2 -2
- package/dist/Toasters/Toast.d.ts +9 -1
- package/dist/Toggles/ToggleButton.d.ts +5 -0
- package/dist/Toggles/TogglerTypes.d.ts +7 -0
- package/dist/Tooltips/TooltipOverflow.d.ts +1 -1
- package/dist/Tooltips/TooltipStyles.d.ts +2 -1
- package/dist/Tooltips/TooltipTypes.d.ts +10 -0
- package/dist/Tooltips/TooltipWrapper.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/src/Accordion/AccordionItem.js +47 -0
- package/dist/src/Accordion/AccordionMenu.js +66 -0
- package/dist/src/Accordion/ContentAccordion.js +107 -0
- package/dist/src/Accordion/index.js +7 -0
- package/dist/src/Accordion/styles.js +12 -0
- package/dist/src/AuthPage/AuthPage.d.ts +1 -1
- package/dist/src/AuthPage/AuthPage.js +29 -0
- package/dist/src/AuthPage/ScreenSetsContainer.js +9 -0
- package/dist/src/AuthPage/index.js +4 -0
- package/dist/src/Banners/Banner.d.ts +2 -2
- package/dist/src/Banners/Banner.js +112 -0
- package/dist/src/Banners/OverviewBanner.d.ts +1 -1
- package/dist/src/Banners/OverviewBanner.js +39 -0
- package/dist/src/Banners/index.js +4 -0
- package/dist/src/Banners/styles.js +55 -0
- package/dist/src/Breadcrumb/Breadcrumb.d.ts +1 -1
- package/dist/src/Breadcrumb/Breadcrumb.js +67 -0
- package/dist/src/Breadcrumb/BreadcrumbItem.js +1 -0
- package/dist/src/Breadcrumb/index.js +4 -0
- package/dist/src/Breadcrumb/styles.js +24 -0
- package/dist/src/Button/BackButton.js +45 -0
- package/dist/src/Button/Button.js +87 -0
- package/dist/src/Button/DualFunctionButton.js +71 -0
- package/dist/src/Button/Iconbutton.js +70 -0
- package/dist/src/Button/index.js +8 -0
- package/dist/src/Card/HorizontalCard/HorizontalCard.js +55 -0
- package/dist/src/Card/HorizontalCard/HorizontalCardActions.d.ts +1 -1
- package/dist/src/Card/HorizontalCard/HorizontalCardActions.js +39 -0
- package/dist/src/Card/HorizontalCard/HorizontalCardBody.d.ts +1 -1
- package/dist/src/Card/HorizontalCard/HorizontalCardBody.js +23 -0
- package/dist/src/Card/HorizontalCard/HorizontalCardThumbnail.d.ts +1 -1
- package/dist/src/Card/HorizontalCard/HorizontalCardThumbnail.js +21 -0
- package/dist/src/Card/HorizontalCard/index.js +4 -0
- package/dist/src/Card/HorizontalCard/types.d.ts +5 -5
- package/dist/src/Card/HorizontalCard/types.js +1 -0
- package/dist/src/Card/VerticalCard/Card.js +61 -0
- package/dist/src/Card/VerticalCard/CardBottomSection.js +45 -0
- package/dist/src/Card/VerticalCard/CardMiddleSection.js +32 -0
- package/dist/src/Card/VerticalCard/CardTopSection.js +33 -0
- package/dist/src/Card/VerticalCard/index.js +7 -0
- package/dist/src/Card/index.js +2 -0
- package/dist/src/Chips/ActionChip.js +45 -0
- package/dist/src/Chips/ChipStyles.js +16 -0
- package/dist/src/Chips/ChipTypes.d.ts +1 -1
- package/dist/src/Chips/ChipTypes.js +1 -0
- package/dist/src/Chips/ChoiceChips.js +70 -0
- package/dist/src/Chips/FilterChip.js +49 -0
- package/dist/src/Chips/InputChip.js +71 -0
- package/dist/src/Chips/index.js +6 -0
- package/dist/src/ChipsInput/ChipDropdownInput.js +230 -0
- package/dist/src/ChipsInput/ChipInput.js +99 -0
- package/dist/src/ChipsInput/ChipInputField.js +114 -0
- package/dist/src/ChipsInput/ChipInputTypes.js +1 -0
- package/dist/src/ChipsInput/index.js +2 -0
- package/dist/src/Dropdown/BasicDropdown.d.ts +3 -3
- package/dist/src/Dropdown/BasicDropdown.js +153 -0
- package/dist/src/Dropdown/CommonStyling.js +24 -0
- package/dist/src/Dropdown/DropdownButton.js +107 -0
- package/dist/src/Dropdown/DropdownButtonTypes.d.ts +3 -3
- package/dist/src/Dropdown/DropdownButtonTypes.js +1 -0
- package/dist/src/Dropdown/DropdownContent.js +339 -0
- package/dist/src/Dropdown/DropdownFilter.js +161 -0
- package/dist/src/Dropdown/index.js +8 -0
- package/dist/src/Footer/Components/FooterBottomLinks.js +20 -0
- package/dist/src/Footer/Components/FooterDropdownLinks.js +25 -0
- package/dist/src/Footer/Components/FooterNavSection.js +32 -0
- package/dist/src/Footer/Components/FooterNewsletterAndSocialSection.js +42 -0
- package/dist/src/Footer/Components/FooterTop.js +34 -0
- package/dist/src/Footer/Footer.js +17 -0
- package/dist/src/Footer/SiteFooter.js +57 -0
- package/dist/src/Footer/index.js +2 -0
- package/dist/src/GlobalNavigationBar/GlobalNavigationBar.d.ts +1 -1
- package/dist/src/GlobalNavigationBar/GlobalNavigationBar.js +93 -0
- package/dist/src/GlobalNavigationBar/Logo.d.ts +1 -1
- package/dist/src/GlobalNavigationBar/Logo.js +33 -0
- package/dist/src/GlobalNavigationBar/__tests__/GlobalNavigationBar.tests.js +299 -0
- package/dist/src/GlobalNavigationBar/__tests__/Logo.tests.js +26 -0
- package/dist/src/GlobalNavigationBar/desktop/DesktopActions.js +88 -0
- package/dist/src/GlobalNavigationBar/desktop/ExtendedMainMenu.d.ts +1 -1
- package/dist/src/GlobalNavigationBar/desktop/ExtendedMainMenu.js +42 -0
- package/dist/src/GlobalNavigationBar/desktop/MainMenu.d.ts +1 -1
- package/dist/src/GlobalNavigationBar/desktop/MainMenu.js +175 -0
- package/dist/src/GlobalNavigationBar/desktop/RightSideNav.d.ts +1 -1
- package/dist/src/GlobalNavigationBar/desktop/RightSideNav.js +46 -0
- package/dist/src/GlobalNavigationBar/desktop/SubMenu.d.ts +1 -1
- package/dist/src/GlobalNavigationBar/desktop/SubMenu.js +131 -0
- package/dist/src/GlobalNavigationBar/desktop/UserMenu.js +90 -0
- package/dist/src/GlobalNavigationBar/index.js +3 -0
- package/dist/src/GlobalNavigationBar/mobile/CommonStyles.js +28 -0
- package/dist/src/GlobalNavigationBar/mobile/MobileActionContainer.js +18 -0
- package/dist/src/GlobalNavigationBar/mobile/MobileMenu.d.ts +1 -1
- package/dist/src/GlobalNavigationBar/mobile/MobileMenu.js +94 -0
- package/dist/src/GlobalNavigationBar/mobile/MobileMenuContent.js +89 -0
- package/dist/src/GlobalNavigationBar/mobile/MobileMenuHeader.js +108 -0
- package/dist/src/GlobalNavigationBar/types.d.ts +8 -8
- package/dist/src/GlobalNavigationBar/types.js +1 -0
- package/dist/src/GlobalNavigationBar/utils.js +7 -0
- package/dist/src/HyperLink/HyperLink.js +36 -0
- package/dist/src/HyperLink/index.js +3 -0
- package/dist/src/HyperLink/styling.js +9 -0
- package/dist/src/Image/ImageWithFallbacks.d.ts +1 -1
- package/dist/src/Image/ImageWithFallbacks.js +87 -0
- package/dist/src/Image/index.js +2 -0
- package/dist/src/InputFields/Checkbox.js +65 -0
- package/dist/src/InputFields/DatepickerField.d.ts +1 -1
- package/dist/src/InputFields/DatepickerField.js +237 -0
- package/dist/src/InputFields/DatepickerFieldHeader.js +45 -0
- package/dist/src/InputFields/Label.d.ts +1 -1
- package/dist/src/InputFields/Label.js +83 -0
- package/dist/src/InputFields/NumberField.js +194 -0
- package/dist/src/InputFields/PasswordField.d.ts +1 -1
- package/dist/src/InputFields/PasswordField.js +60 -0
- package/dist/src/InputFields/QuickSearch.d.ts +1 -1
- package/dist/src/InputFields/QuickSearch.js +92 -0
- package/dist/src/InputFields/RadioButton.d.ts +1 -1
- package/dist/src/InputFields/RadioButton.js +54 -0
- package/dist/src/InputFields/ResponsiveComponentWrapper.d.ts +1 -1
- package/dist/src/InputFields/ResponsiveComponentWrapper.js +24 -0
- package/dist/src/InputFields/RichTextField.js +83 -0
- package/dist/src/InputFields/SearchBar.d.ts +1 -1
- package/dist/src/InputFields/SearchBar.js +63 -0
- package/dist/src/InputFields/TextField.d.ts +1 -1
- package/dist/src/InputFields/TextField.js +51 -0
- package/dist/src/InputFields/Textarea.js +65 -0
- package/dist/src/InputFields/components/SearchBarInput.d.ts +1 -1
- package/dist/src/InputFields/components/SearchBarInput.js +26 -0
- package/dist/src/InputFields/components/SearchField.js +44 -0
- package/dist/src/InputFields/index.js +13 -0
- package/dist/src/InputFields/styling.js +33 -0
- package/dist/src/InputFields/types.d.ts +2 -2
- package/dist/src/InputFields/types.js +2 -0
- package/dist/src/Layouts/index.js +25 -0
- package/dist/src/LinearProgress/LinearProgress.js +78 -0
- package/dist/src/LinearProgress/index.js +3 -0
- package/dist/src/List/ListRow.js +83 -0
- package/dist/src/List/__tests__/ListRow.tests.js +51 -0
- package/dist/src/List/index.js +2 -0
- package/dist/src/LoadingIndicator/LoadingIndicator.d.ts +1 -1
- package/dist/src/LoadingIndicator/LoadingIndicator.js +26 -0
- package/dist/src/LoadingIndicator/index.js +1 -0
- package/dist/src/LoadingPage/GlobalLoadingPage.js +26 -0
- package/dist/src/LoadingPage/index.js +1 -0
- package/dist/src/MenuItem/MenuItem.d.ts +1 -1
- package/dist/src/MenuItem/MenuItem.js +60 -0
- package/dist/src/MenuItem/index.js +1 -0
- package/dist/src/MiniProductCard/MiniProductCard.d.ts +1 -1
- package/dist/src/MiniProductCard/MiniProductCard.js +30 -0
- package/dist/src/MiniProductCard/index.js +1 -0
- package/dist/src/Modals/Modal.d.ts +1 -1
- package/dist/src/Modals/Modal.js +38 -0
- package/dist/src/Modals/ModalContainer.d.ts +2 -2
- package/dist/src/Modals/ModalContainer.js +130 -0
- package/dist/src/Modals/ModalContent.js +159 -0
- package/dist/src/Modals/ModalDialog.js +166 -0
- package/dist/src/Modals/ModalNote.js +27 -0
- package/dist/src/Modals/ModalStyles.js +55 -0
- package/dist/src/Modals/ModalTypes.d.ts +2 -2
- package/dist/src/Modals/ModalTypes.js +1 -0
- package/dist/src/Modals/index.js +6 -0
- package/dist/src/NavItem/NavItem.d.ts +1 -1
- package/dist/src/NavItem/NavItem.js +26 -0
- package/dist/src/NavItem/NestedNavItem.js +18 -0
- package/dist/src/NavItem/index.js +1 -0
- package/dist/src/NotificationDot/NotificationDot.js +17 -0
- package/dist/src/NotificationDot/index.js +1 -0
- package/dist/src/Paginator/Paginator.js +77 -0
- package/dist/src/Paginator/index.js +2 -0
- package/dist/src/Panel/Panel.d.ts +1 -1
- package/dist/src/Panel/Panel.js +82 -0
- package/dist/src/Panel/index.js +1 -0
- package/dist/src/Popover/Popover.js +101 -0
- package/dist/src/Popover/index.js +1 -0
- package/dist/src/ProfileButton/ProfileButton.d.ts +2 -2
- package/dist/src/ProfileButton/ProfileButton.js +52 -0
- package/dist/src/ProfileButton/index.js +1 -0
- package/dist/src/QuizButton/QuizButton.d.ts +1 -1
- package/dist/src/QuizButton/QuizButton.js +53 -0
- package/dist/src/QuizButton/index.js +1 -0
- package/dist/src/SegmentControl/SegmentControl.js +57 -0
- package/dist/src/SegmentControl/index.js +2 -0
- package/dist/src/Services/functions.js +11 -0
- package/dist/src/SideMenu/SideMenu.js +43 -0
- package/dist/src/SideMenu/SideMenuBody.js +24 -0
- package/dist/src/SideMenu/SideMenuFooter.js +43 -0
- package/dist/src/SideMenu/SideMenuHeader.js +46 -0
- package/dist/src/SideMenu/index.js +2 -0
- package/dist/src/SideMenu/types.d.ts +3 -3
- package/dist/src/SideMenu/types.js +1 -0
- package/dist/src/SkipToContent/SkipToContent.d.ts +1 -1
- package/dist/src/SkipToContent/SkipToContent.js +17 -0
- package/dist/src/SkipToContent/index.js +1 -0
- package/dist/src/Switcher/MobileCustomMenuContent.js +26 -0
- package/dist/src/Switcher/MobileSwitcherMenu.js +21 -0
- package/dist/src/Switcher/SwitcherMenuItem.js +18 -0
- package/dist/src/Switcher/__tests__/SwitcherMenuItem.js +53 -0
- package/dist/src/Switcher/index.js +3 -0
- package/dist/src/Table/Table.js +292 -0
- package/dist/src/Table/TableBody.js +116 -0
- package/dist/src/Table/TableFooter.js +41 -0
- package/dist/src/Table/TableHeaders.js +26 -0
- package/dist/src/Table/TableStyles.js +46 -0
- package/dist/src/Table/TableTypes.d.ts +4 -4
- package/dist/src/Table/TableTypes.js +2 -0
- package/dist/src/Table/index.js +3 -0
- package/dist/src/Tabs/HorizontalTabs.js +122 -0
- package/dist/src/Tabs/TabLink.js +76 -0
- package/dist/src/Tabs/Tabs.d.ts +1 -1
- package/dist/src/Tabs/Tabs.js +62 -0
- package/dist/src/Tabs/VerticalTabs.js +13 -0
- package/dist/src/Tabs/__tests__/TabLink.tests.js +83 -0
- package/dist/src/Tabs/__tests__/Tablist.tests.js +78 -0
- package/dist/src/Tabs/index.js +3 -0
- package/dist/src/Tag/Tag.d.ts +2 -2
- package/dist/src/Tag/Tag.js +41 -0
- package/dist/src/Tag/index.js +1 -0
- package/dist/src/Tile/Tile.js +43 -0
- package/dist/src/Tile/TileBody.js +15 -0
- package/dist/src/Tile/TileCommonItems.js +75 -0
- package/dist/src/Tile/TileFooter.js +19 -0
- package/dist/src/Tile/TileHeader.js +57 -0
- package/dist/src/Tile/TileTypes.d.ts +8 -8
- package/dist/src/Tile/TileTypes.js +1 -0
- package/dist/src/Tile/index.js +3 -0
- package/dist/src/Toasters/Toast.d.ts +2 -2
- package/dist/src/Toasters/Toast.js +166 -0
- package/dist/src/Toasters/ToastContext.d.ts +2 -2
- package/dist/src/Toasters/ToastContext.js +69 -0
- package/dist/src/Toasters/index.js +4 -0
- package/dist/src/Toggles/ToggleButton.js +48 -0
- package/dist/src/Toggles/ToggleSwitch.js +65 -0
- package/dist/src/Toggles/TogglerStyles.js +17 -0
- package/dist/src/Toggles/TogglerTypes.js +1 -0
- package/dist/src/Toggles/index.js +3 -0
- package/dist/src/Tooltips/TooltipOverflow.js +71 -0
- package/dist/src/Tooltips/TooltipStyles.d.ts +1 -1
- package/dist/src/Tooltips/TooltipStyles.js +41 -0
- package/dist/src/Tooltips/TooltipTypes.js +1 -0
- package/dist/src/Tooltips/TooltipWrapper.js +65 -0
- package/dist/src/Tooltips/index.js +3 -0
- package/dist/src/assets/index.d.ts +1 -1
- package/dist/src/assets/index.js +41 -0
- package/dist/src/common/ActionWithin.js +25 -0
- package/dist/src/common/ClickOutside.js +20 -0
- package/dist/src/common/EventHandlers.js +8 -0
- package/dist/src/common/FocusOutside.js +20 -0
- package/dist/src/common/FocusVisible.d.ts +1 -1
- package/dist/src/common/FocusVisible.js +75 -0
- package/dist/src/common/InputStyling.js +8 -0
- package/dist/src/common/NavigationHelper.js +18 -0
- package/dist/src/common/ScrollableContainer.js +22 -0
- package/dist/src/common/StackState.js +10 -0
- package/dist/src/common/index.js +6 -0
- package/dist/src/icons/contenticons/Adaptive.js +31 -0
- package/dist/src/icons/contenticons/Add.js +31 -0
- package/dist/src/icons/contenticons/Adult.js +31 -0
- package/dist/src/icons/contenticons/AedNoShockAdvised.js +31 -0
- package/dist/src/icons/contenticons/AedPads.js +31 -0
- package/dist/src/icons/contenticons/AedPadsCorrect.js +31 -0
- package/dist/src/icons/contenticons/AedPadsError.js +31 -0
- package/dist/src/icons/contenticons/AedShockAdvised.js +31 -0
- package/dist/src/icons/contenticons/Ambulance.js +31 -0
- package/dist/src/icons/contenticons/Assignments.js +31 -0
- package/dist/src/icons/contenticons/Attention.js +31 -0
- package/dist/src/icons/contenticons/AutomaticMode.js +31 -0
- package/dist/src/icons/contenticons/AwardWinningPerson.js +31 -0
- package/dist/src/icons/contenticons/Biohazard.js +31 -0
- package/dist/src/icons/contenticons/Bleeding.js +31 -0
- package/dist/src/icons/contenticons/Book.js +31 -0
- package/dist/src/icons/contenticons/Buildings.js +31 -0
- package/dist/src/icons/contenticons/CPRCall.js +31 -0
- package/dist/src/icons/contenticons/CPRCycles.js +31 -0
- package/dist/src/icons/contenticons/CPRTraining.js +31 -0
- package/dist/src/icons/contenticons/Calendar.js +31 -0
- package/dist/src/icons/contenticons/Call.js +31 -0
- package/dist/src/icons/contenticons/Certificate.js +31 -0
- package/dist/src/icons/contenticons/ChestCompressionFraction.js +31 -0
- package/dist/src/icons/contenticons/Child.js +31 -0
- package/dist/src/icons/contenticons/Cleaning.js +31 -0
- package/dist/src/icons/contenticons/ClinicalFindings.js +31 -0
- package/dist/src/icons/contenticons/Cloud.js +31 -0
- package/dist/src/icons/contenticons/CloudAttension.js +31 -0
- package/dist/src/icons/contenticons/CloudChecked.js +31 -0
- package/dist/src/icons/contenticons/CloudDownload.js +31 -0
- package/dist/src/icons/contenticons/CloudLocked.js +31 -0
- package/dist/src/icons/contenticons/CloudNoConnection.js +31 -0
- package/dist/src/icons/contenticons/CloudSyncing.js +31 -0
- package/dist/src/icons/contenticons/CloudUpload.js +31 -0
- package/dist/src/icons/contenticons/Code.js +31 -0
- package/dist/src/icons/contenticons/CoffeeBreak.js +31 -0
- package/dist/src/icons/contenticons/Contact.js +31 -0
- package/dist/src/icons/contenticons/ContactInfo.js +31 -0
- package/dist/src/icons/contenticons/Cookie.js +31 -0
- package/dist/src/icons/contenticons/CountAloud.js +31 -0
- package/dist/src/icons/contenticons/Dashboard.js +31 -0
- package/dist/src/icons/contenticons/Data.js +31 -0
- package/dist/src/icons/contenticons/DecisionFlow.js +31 -0
- package/dist/src/icons/contenticons/Defribilator.js +31 -0
- package/dist/src/icons/contenticons/DefribilatorMonitor.js +31 -0
- package/dist/src/icons/contenticons/Depth.js +31 -0
- package/dist/src/icons/contenticons/Desktop.js +31 -0
- package/dist/src/icons/contenticons/DeviceChecked.js +31 -0
- package/dist/src/icons/contenticons/Dispatcher.js +31 -0
- package/dist/src/icons/contenticons/Doctor.js +31 -0
- package/dist/src/icons/contenticons/DocumentChecked.js +31 -0
- package/dist/src/icons/contenticons/Download.js +31 -0
- package/dist/src/icons/contenticons/ELearning.js +31 -0
- package/dist/src/icons/contenticons/EMSRescuer.js +31 -0
- package/dist/src/icons/contenticons/ESimulation.js +31 -0
- package/dist/src/icons/contenticons/Edit.js +31 -0
- package/dist/src/icons/contenticons/Educator.js +31 -0
- package/dist/src/icons/contenticons/Elderly.js +31 -0
- package/dist/src/icons/contenticons/Embryo.js +31 -0
- package/dist/src/icons/contenticons/EventLog.js +31 -0
- package/dist/src/icons/contenticons/Faq.js +31 -0
- package/dist/src/icons/contenticons/Female.js +31 -0
- package/dist/src/icons/contenticons/FirstAid.js +31 -0
- package/dist/src/icons/contenticons/Geriatric.js +31 -0
- package/dist/src/icons/contenticons/GiftCard.js +31 -0
- package/dist/src/icons/contenticons/Goals.js +31 -0
- package/dist/src/icons/contenticons/Grid.js +31 -0
- package/dist/src/icons/contenticons/GuidedTour.js +31 -0
- package/dist/src/icons/contenticons/HandPlacement.js +31 -0
- package/dist/src/icons/contenticons/HandPlacementCorrect.js +31 -0
- package/dist/src/icons/contenticons/HandPlacementIncorrect.js +31 -0
- package/dist/src/icons/contenticons/HeadTilt.js +31 -0
- package/dist/src/icons/contenticons/Heart.js +31 -0
- package/dist/src/icons/contenticons/HeartPulse.js +31 -0
- package/dist/src/icons/contenticons/HeartShock.js +31 -0
- package/dist/src/icons/contenticons/Help.js +31 -0
- package/dist/src/icons/contenticons/Hierarchy.js +31 -0
- package/dist/src/icons/contenticons/Hospital.js +31 -0
- package/dist/src/icons/contenticons/Hospitalized.js +31 -0
- package/dist/src/icons/contenticons/House.js +31 -0
- package/dist/src/icons/contenticons/Infant.js +31 -0
- package/dist/src/icons/contenticons/Information.js +31 -0
- package/dist/src/icons/contenticons/Injustice.js +31 -0
- package/dist/src/icons/contenticons/Institute.js +31 -0
- package/dist/src/icons/contenticons/Justice.js +31 -0
- package/dist/src/icons/contenticons/Laptop.js +31 -0
- package/dist/src/icons/contenticons/Leaflet.js +31 -0
- package/dist/src/icons/contenticons/Learner.js +31 -0
- package/dist/src/icons/contenticons/Levels.js +31 -0
- package/dist/src/icons/contenticons/LevelsDecreasing.js +31 -0
- package/dist/src/icons/contenticons/LevelsIncreasing.js +31 -0
- package/dist/src/icons/contenticons/LevelsStarred.js +31 -0
- package/dist/src/icons/contenticons/Maintenance.js +31 -0
- package/dist/src/icons/contenticons/Male.js +31 -0
- package/dist/src/icons/contenticons/Manikin.js +31 -0
- package/dist/src/icons/contenticons/ManikinCorrect.js +31 -0
- package/dist/src/icons/contenticons/ManikinError.js +31 -0
- package/dist/src/icons/contenticons/ManualMode.js +31 -0
- package/dist/src/icons/contenticons/MapPoint.js +31 -0
- package/dist/src/icons/contenticons/MaskLeak.js +31 -0
- package/dist/src/icons/contenticons/MedicalHistory.js +31 -0
- package/dist/src/icons/contenticons/MedicalRecord.js +31 -0
- package/dist/src/icons/contenticons/Medication.js +31 -0
- package/dist/src/icons/contenticons/Metronome.js +31 -0
- package/dist/src/icons/contenticons/MoodHappy.js +31 -0
- package/dist/src/icons/contenticons/MoodIndifferent.js +31 -0
- package/dist/src/icons/contenticons/MoodSad.js +31 -0
- package/dist/src/icons/contenticons/MoodVeryHappy.js +31 -0
- package/dist/src/icons/contenticons/MoodVerySad.js +31 -0
- package/dist/src/icons/contenticons/Newborn.js +31 -0
- package/dist/src/icons/contenticons/NoInterruption.js +31 -0
- package/dist/src/icons/contenticons/Note.js +31 -0
- package/dist/src/icons/contenticons/Pain.js +31 -0
- package/dist/src/icons/contenticons/Patient.js +31 -0
- package/dist/src/icons/contenticons/PatientAssignment.js +31 -0
- package/dist/src/icons/contenticons/PatientMonitor.js +31 -0
- package/dist/src/icons/contenticons/PatientStretcher.js +31 -0
- package/dist/src/icons/contenticons/PatientTransfer.js +31 -0
- package/dist/src/icons/contenticons/PatientTreatment.js +31 -0
- package/dist/src/icons/contenticons/Person.js +31 -0
- package/dist/src/icons/contenticons/PhysiologicalModel.js +31 -0
- package/dist/src/icons/contenticons/PieChart.js +31 -0
- package/dist/src/icons/contenticons/Pill.js +31 -0
- package/dist/src/icons/contenticons/Pregnant.js +31 -0
- package/dist/src/icons/contenticons/Print.js +31 -0
- package/dist/src/icons/contenticons/ProvidersOrders.js +31 -0
- package/dist/src/icons/contenticons/Pulse.js +31 -0
- package/dist/src/icons/contenticons/RQICart.js +31 -0
- package/dist/src/icons/contenticons/Rate.js +31 -0
- package/dist/src/icons/contenticons/RateTooFast.js +31 -0
- package/dist/src/icons/contenticons/RateTooSlow.js +31 -0
- package/dist/src/icons/contenticons/Recoil.js +31 -0
- package/dist/src/icons/contenticons/Ruler.js +31 -0
- package/dist/src/icons/contenticons/Screens.js +31 -0
- package/dist/src/icons/contenticons/Search.js +31 -0
- package/dist/src/icons/contenticons/Sepsis.js +31 -0
- package/dist/src/icons/contenticons/Settings.js +31 -0
- package/dist/src/icons/contenticons/Shock.js +31 -0
- package/dist/src/icons/contenticons/ShockAdvised.js +31 -0
- package/dist/src/icons/contenticons/ShockAutomated.js +31 -0
- package/dist/src/icons/contenticons/ShockNotAdvised.js +31 -0
- package/dist/src/icons/contenticons/Sleep.js +31 -0
- package/dist/src/icons/contenticons/Smartphone.js +31 -0
- package/dist/src/icons/contenticons/Speech.js +31 -0
- package/dist/src/icons/contenticons/SpeechBubble.js +31 -0
- package/dist/src/icons/contenticons/SpeechBubbles.js +31 -0
- package/dist/src/icons/contenticons/Star.js +31 -0
- package/dist/src/icons/contenticons/Stethoscope.js +31 -0
- package/dist/src/icons/contenticons/Stock.js +31 -0
- package/dist/src/icons/contenticons/Stopwatch.js +31 -0
- package/dist/src/icons/contenticons/Suitcase.js +31 -0
- package/dist/src/icons/contenticons/SwitchCamera.js +31 -0
- package/dist/src/icons/contenticons/SwitchRoles.js +31 -0
- package/dist/src/icons/contenticons/Tablet.js +31 -0
- package/dist/src/icons/contenticons/Talking.js +31 -0
- package/dist/src/icons/contenticons/TargetGroup.js +31 -0
- package/dist/src/icons/contenticons/TaskTrainer.js +31 -0
- package/dist/src/icons/contenticons/TeamLead.js +31 -0
- package/dist/src/icons/contenticons/TeamWork.js +31 -0
- package/dist/src/icons/contenticons/Terms.js +31 -0
- package/dist/src/icons/contenticons/TimelineReview.js +31 -0
- package/dist/src/icons/contenticons/Translation.js +31 -0
- package/dist/src/icons/contenticons/Trophy.js +31 -0
- package/dist/src/icons/contenticons/Trophy1st.js +31 -0
- package/dist/src/icons/contenticons/Trophy2nd.js +31 -0
- package/dist/src/icons/contenticons/Trophy3rd.js +31 -0
- package/dist/src/icons/contenticons/TrophyStar.js +31 -0
- package/dist/src/icons/contenticons/Truck.js +31 -0
- package/dist/src/icons/contenticons/TwoRescuerCPR.js +31 -0
- package/dist/src/icons/contenticons/USB.js +31 -0
- package/dist/src/icons/contenticons/Ultrasound.js +31 -0
- package/dist/src/icons/contenticons/VentilationLungs.js +31 -0
- package/dist/src/icons/contenticons/VentilationPressure.js +31 -0
- package/dist/src/icons/contenticons/VentilationVolume.js +31 -0
- package/dist/src/icons/contenticons/Video.js +31 -0
- package/dist/src/icons/contenticons/VideoRecording.js +31 -0
- package/dist/src/icons/contenticons/Visibility.js +31 -0
- package/dist/src/icons/contenticons/VitalSigns.js +31 -0
- package/dist/src/icons/contenticons/index.js +179 -0
- package/dist/src/icons/index.d.ts +1 -1
- package/dist/src/icons/index.js +45 -0
- package/dist/src/icons/systemicons/Accessibility.js +31 -0
- package/dist/src/icons/systemicons/Add.js +31 -0
- package/dist/src/icons/systemicons/AddUser.js +31 -0
- package/dist/src/icons/systemicons/Adult.js +31 -0
- package/dist/src/icons/systemicons/AedPads.js +31 -0
- package/dist/src/icons/systemicons/AedPadsCorrect.js +31 -0
- package/dist/src/icons/systemicons/AedPadsError.js +31 -0
- package/dist/src/icons/systemicons/Archive.js +31 -0
- package/dist/src/icons/systemicons/ArrowCollapse.js +31 -0
- package/dist/src/icons/systemicons/ArrowDropDown.js +31 -0
- package/dist/src/icons/systemicons/ArrowDropLeft.js +31 -0
- package/dist/src/icons/systemicons/ArrowDropRight.js +31 -0
- package/dist/src/icons/systemicons/ArrowDropUp.js +31 -0
- package/dist/src/icons/systemicons/ArrowExpand.js +31 -0
- package/dist/src/icons/systemicons/ArrowLineDown.js +31 -0
- package/dist/src/icons/systemicons/ArrowLineLeft.js +31 -0
- package/dist/src/icons/systemicons/ArrowLineRight.js +31 -0
- package/dist/src/icons/systemicons/ArrowLineUp.js +31 -0
- package/dist/src/icons/systemicons/ArrowStopLeft.js +31 -0
- package/dist/src/icons/systemicons/ArrowStopRight.js +31 -0
- package/dist/src/icons/systemicons/Assignments.js +31 -0
- package/dist/src/icons/systemicons/Asterisk.js +31 -0
- package/dist/src/icons/systemicons/Attachment.js +31 -0
- package/dist/src/icons/systemicons/Attention.js +31 -0
- package/dist/src/icons/systemicons/AudioDescriptionOn.js +31 -0
- package/dist/src/icons/systemicons/BackwardsFiveSec.js +31 -0
- package/dist/src/icons/systemicons/Battery0.js +31 -0
- package/dist/src/icons/systemicons/Battery1.js +31 -0
- package/dist/src/icons/systemicons/Battery2.js +31 -0
- package/dist/src/icons/systemicons/Battery3.js +31 -0
- package/dist/src/icons/systemicons/Battery4.js +31 -0
- package/dist/src/icons/systemicons/Battery5.js +31 -0
- package/dist/src/icons/systemicons/Battery6.js +31 -0
- package/dist/src/icons/systemicons/BatteryFull.js +31 -0
- package/dist/src/icons/systemicons/Bluetooth.js +31 -0
- package/dist/src/icons/systemicons/Book.js +31 -0
- package/dist/src/icons/systemicons/BookmarkAdd.js +31 -0
- package/dist/src/icons/systemicons/BookmarkCollection.js +31 -0
- package/dist/src/icons/systemicons/BookmarkOff.js +31 -0
- package/dist/src/icons/systemicons/BookmarkOn.js +31 -0
- package/dist/src/icons/systemicons/Bullet.js +31 -0
- package/dist/src/icons/systemicons/Calendar.js +31 -0
- package/dist/src/icons/systemicons/CheckMark.js +31 -0
- package/dist/src/icons/systemicons/CheckboxOff.js +31 -0
- package/dist/src/icons/systemicons/CheckboxOn.js +31 -0
- package/dist/src/icons/systemicons/CheckboxSemi.js +31 -0
- package/dist/src/icons/systemicons/ChevronDown.js +31 -0
- package/dist/src/icons/systemicons/ChevronLeft.js +31 -0
- package/dist/src/icons/systemicons/ChevronRight.js +31 -0
- package/dist/src/icons/systemicons/ChevronUp.js +31 -0
- package/dist/src/icons/systemicons/Child.js +31 -0
- package/dist/src/icons/systemicons/Clear.js +31 -0
- package/dist/src/icons/systemicons/Close.js +31 -0
- package/dist/src/icons/systemicons/ClosedCaptionOn.js +31 -0
- package/dist/src/icons/systemicons/Cloud.js +31 -0
- package/dist/src/icons/systemicons/CloudAttention.js +31 -0
- package/dist/src/icons/systemicons/CloudCheck.js +31 -0
- package/dist/src/icons/systemicons/CloudDownload.js +31 -0
- package/dist/src/icons/systemicons/CloudLocked.js +31 -0
- package/dist/src/icons/systemicons/CloudNoConnection.js +31 -0
- package/dist/src/icons/systemicons/CloudSyncing.js +31 -0
- package/dist/src/icons/systemicons/CloudUpload.js +31 -0
- package/dist/src/icons/systemicons/CoffeeBreak.js +31 -0
- package/dist/src/icons/systemicons/Copy.js +31 -0
- package/dist/src/icons/systemicons/Dashboard.js +31 -0
- package/dist/src/icons/systemicons/DecisionFlow.js +31 -0
- package/dist/src/icons/systemicons/Delete.js +31 -0
- package/dist/src/icons/systemicons/Document.js +31 -0
- package/dist/src/icons/systemicons/Download.js +31 -0
- package/dist/src/icons/systemicons/DragHandle.js +31 -0
- package/dist/src/icons/systemicons/DragIndicator.js +31 -0
- package/dist/src/icons/systemicons/Edit.js +31 -0
- package/dist/src/icons/systemicons/Educator.js +31 -0
- package/dist/src/icons/systemicons/Equals.js +31 -0
- package/dist/src/icons/systemicons/EventLog.js +31 -0
- package/dist/src/icons/systemicons/Export.js +31 -0
- package/dist/src/icons/systemicons/ExportCVS.js +31 -0
- package/dist/src/icons/systemicons/ExportDoc.js +31 -0
- package/dist/src/icons/systemicons/ExportEXL.js +31 -0
- package/dist/src/icons/systemicons/ExportJpg.js +31 -0
- package/dist/src/icons/systemicons/ExportPDF.js +31 -0
- package/dist/src/icons/systemicons/ExportPNG.js +31 -0
- package/dist/src/icons/systemicons/ExtendTextArea.js +31 -0
- package/dist/src/icons/systemicons/Facebook.js +31 -0
- package/dist/src/icons/systemicons/Filter.js +31 -0
- package/dist/src/icons/systemicons/Flickr.js +31 -0
- package/dist/src/icons/systemicons/Forward.js +31 -0
- package/dist/src/icons/systemicons/ForwardFiveSec.js +31 -0
- package/dist/src/icons/systemicons/ForwardSlash.js +31 -0
- package/dist/src/icons/systemicons/Fullscreen.js +31 -0
- package/dist/src/icons/systemicons/FullscreenExit.js +31 -0
- package/dist/src/icons/systemicons/GearSettings.js +31 -0
- package/dist/src/icons/systemicons/GridView.js +31 -0
- package/dist/src/icons/systemicons/Group.js +31 -0
- package/dist/src/icons/systemicons/GuidedTour.js +31 -0
- package/dist/src/icons/systemicons/HeartShock.js +31 -0
- package/dist/src/icons/systemicons/Help.js +31 -0
- package/dist/src/icons/systemicons/Hierarchy.js +31 -0
- package/dist/src/icons/systemicons/History.js +31 -0
- package/dist/src/icons/systemicons/Home.js +31 -0
- package/dist/src/icons/systemicons/Image.js +31 -0
- package/dist/src/icons/systemicons/Infant.js +31 -0
- package/dist/src/icons/systemicons/Information.js +31 -0
- package/dist/src/icons/systemicons/Institute.js +31 -0
- package/dist/src/icons/systemicons/Keyboard.js +31 -0
- package/dist/src/icons/systemicons/Language.js +31 -0
- package/dist/src/icons/systemicons/Learner.js +31 -0
- package/dist/src/icons/systemicons/Legend.js +31 -0
- package/dist/src/icons/systemicons/Legend1Circle.js +31 -0
- package/dist/src/icons/systemicons/Legend2Triangle.js +31 -0
- package/dist/src/icons/systemicons/Legend3Star.js +31 -0
- package/dist/src/icons/systemicons/Legend4Square.js +31 -0
- package/dist/src/icons/systemicons/Legend5Diamond.js +31 -0
- package/dist/src/icons/systemicons/Legend6Nabla.js +31 -0
- package/dist/src/icons/systemicons/Legend7Pentagon.js +31 -0
- package/dist/src/icons/systemicons/Legend8Rectangle.js +31 -0
- package/dist/src/icons/systemicons/LegendStrokeDashed.js +31 -0
- package/dist/src/icons/systemicons/LegendStrokeSolid.js +31 -0
- package/dist/src/icons/systemicons/LikeOff.js +31 -0
- package/dist/src/icons/systemicons/LikeOn.js +31 -0
- package/dist/src/icons/systemicons/Link.js +31 -0
- package/dist/src/icons/systemicons/LinkedIn.js +31 -0
- package/dist/src/icons/systemicons/ListView.js +31 -0
- package/dist/src/icons/systemicons/LoadingMedium.js +8 -0
- package/dist/src/icons/systemicons/LoadingSmall.js +8 -0
- package/dist/src/icons/systemicons/LockedOff.js +31 -0
- package/dist/src/icons/systemicons/LockedOn.js +31 -0
- package/dist/src/icons/systemicons/Login.js +31 -0
- package/dist/src/icons/systemicons/Logout.js +31 -0
- package/dist/src/icons/systemicons/Loop.js +31 -0
- package/dist/src/icons/systemicons/Mail.js +31 -0
- package/dist/src/icons/systemicons/Manikin.js +31 -0
- package/dist/src/icons/systemicons/MapPoint.js +31 -0
- package/dist/src/icons/systemicons/Menu.js +31 -0
- package/dist/src/icons/systemicons/Metronome.js +31 -0
- package/dist/src/icons/systemicons/Microphone.js +31 -0
- package/dist/src/icons/systemicons/Minus.js +31 -0
- package/dist/src/icons/systemicons/MoreHorizontal.js +31 -0
- package/dist/src/icons/systemicons/MoreVertical.js +31 -0
- package/dist/src/icons/systemicons/Notification.js +31 -0
- package/dist/src/icons/systemicons/NotificationNew.js +31 -0
- package/dist/src/icons/systemicons/OpenFolder.js +31 -0
- package/dist/src/icons/systemicons/OpenNewWindow.js +31 -0
- package/dist/src/icons/systemicons/OverView.js +31 -0
- package/dist/src/icons/systemicons/Pause.js +31 -0
- package/dist/src/icons/systemicons/PieChart.js +31 -0
- package/dist/src/icons/systemicons/Pin.js +31 -0
- package/dist/src/icons/systemicons/Play.js +31 -0
- package/dist/src/icons/systemicons/PlayList.js +31 -0
- package/dist/src/icons/systemicons/PlayOutline.js +31 -0
- package/dist/src/icons/systemicons/PlaybackSpeed.js +31 -0
- package/dist/src/icons/systemicons/Plus.js +31 -0
- package/dist/src/icons/systemicons/PointDown.js +31 -0
- package/dist/src/icons/systemicons/PointLeft.js +31 -0
- package/dist/src/icons/systemicons/PointRight.js +31 -0
- package/dist/src/icons/systemicons/PointUp.js +31 -0
- package/dist/src/icons/systemicons/Print.js +31 -0
- package/dist/src/icons/systemicons/RadioButtonOff.js +31 -0
- package/dist/src/icons/systemicons/RadioButtonOn.js +31 -0
- package/dist/src/icons/systemicons/Record.js +31 -0
- package/dist/src/icons/systemicons/Refresh.js +31 -0
- package/dist/src/icons/systemicons/Replay.js +31 -0
- package/dist/src/icons/systemicons/Rewind.js +31 -0
- package/dist/src/icons/systemicons/SUN.js +31 -0
- package/dist/src/icons/systemicons/Save.js +31 -0
- package/dist/src/icons/systemicons/Search.js +31 -0
- package/dist/src/icons/systemicons/SendTo.js +31 -0
- package/dist/src/icons/systemicons/Share.js +31 -0
- package/dist/src/icons/systemicons/Shock.js +31 -0
- package/dist/src/icons/systemicons/ShockAdvised.js +31 -0
- package/dist/src/icons/systemicons/ShockAutomated.js +31 -0
- package/dist/src/icons/systemicons/ShockNotAdvised.js +31 -0
- package/dist/src/icons/systemicons/ShoppingCart.js +31 -0
- package/dist/src/icons/systemicons/SkipForward.js +31 -0
- package/dist/src/icons/systemicons/Sort.js +31 -0
- package/dist/src/icons/systemicons/SpeechBuble.js +31 -0
- package/dist/src/icons/systemicons/StarFilled.js +31 -0
- package/dist/src/icons/systemicons/StarOutlined.js +31 -0
- package/dist/src/icons/systemicons/Stop.js +31 -0
- package/dist/src/icons/systemicons/Support.js +31 -0
- package/dist/src/icons/systemicons/SwitchApp.js +31 -0
- package/dist/src/icons/systemicons/Team.js +31 -0
- package/dist/src/icons/systemicons/TechnicalWarning.js +31 -0
- package/dist/src/icons/systemicons/ThumbsDown.js +31 -0
- package/dist/src/icons/systemicons/ThumbsUp.js +31 -0
- package/dist/src/icons/systemicons/Time.js +31 -0
- package/dist/src/icons/systemicons/TimeLimited.js +31 -0
- package/dist/src/icons/systemicons/Timeline.js +31 -0
- package/dist/src/icons/systemicons/Tip.js +31 -0
- package/dist/src/icons/systemicons/Transcript.js +31 -0
- package/dist/src/icons/systemicons/Translation.js +31 -0
- package/dist/src/icons/systemicons/Twitter.js +31 -0
- package/dist/src/icons/systemicons/Upload.js +31 -0
- package/dist/src/icons/systemicons/Usb.js +31 -0
- package/dist/src/icons/systemicons/User.js +31 -0
- package/dist/src/icons/systemicons/Video.js +31 -0
- package/dist/src/icons/systemicons/VisibleOff.js +31 -0
- package/dist/src/icons/systemicons/VisibleOn.js +31 -0
- package/dist/src/icons/systemicons/VolumeDown.js +31 -0
- package/dist/src/icons/systemicons/VolumeOff.js +31 -0
- package/dist/src/icons/systemicons/VolumeUp.js +31 -0
- package/dist/src/icons/systemicons/Youtube.js +31 -0
- package/dist/src/icons/systemicons/Zoom.js +31 -0
- package/dist/src/icons/systemicons/ZoomOut.js +31 -0
- package/dist/src/icons/systemicons/index.js +204 -0
- package/dist/src/index.js +45 -0
- package/dist/src/styles/breakpoints.js +6 -0
- package/dist/src/styles/colors.d.ts +0 -1
- package/dist/src/styles/colors.js +89 -0
- package/dist/src/styles/focus-styles.js +9 -0
- package/dist/src/styles/global.js +13 -0
- package/dist/src/styles/index.d.ts +2 -1
- package/dist/src/styles/index.js +20 -0
- package/dist/src/styles/overwritecolors.d.ts +2 -0
- package/dist/src/styles/overwritecolors.js +12 -0
- package/dist/src/styles/shadowstyles.js +7 -0
- package/dist/src/styles/typography.d.ts +1 -1
- package/dist/src/styles/typography.js +130 -0
- package/dist/src/styles/z-indexes.js +16 -0
- package/dist/src/types.js +51 -0
- package/dist/src/utils/utils.js +3 -0
- package/dist/stories/Accordion/AccordionMenu.stories.d.ts +1 -1
- package/dist/stories/Accordion/AccordionMenu.stories.js +153 -0
- package/dist/stories/Accordion/ContentAccordion.stories.d.ts +1 -1
- package/dist/stories/Accordion/ContentAccordion.stories.js +234 -0
- package/dist/stories/AuthPage.stories.js +88 -0
- package/dist/stories/Banner.stories.d.ts +1 -1
- package/dist/stories/Banner.stories.js +107 -0
- package/dist/stories/Breadcrumb.stories.d.ts +1 -1
- package/dist/stories/Breadcrumb.stories.js +151 -0
- package/dist/stories/Button/BackButton.stories.d.ts +1 -1
- package/dist/stories/Button/BackButton.stories.js +32 -0
- package/dist/stories/Button/Button.stories.d.ts +1 -1
- package/dist/stories/Button/Button.stories.js +499 -0
- package/dist/stories/Button/DualFunctionButton.stories.d.ts +1 -1
- package/dist/stories/Button/DualFunctionButton.stories.js +374 -0
- package/dist/stories/Button/IconButton.stories.d.ts +1 -1
- package/dist/stories/Button/IconButton.stories.js +81 -0
- package/dist/stories/Card/Card.stories.d.ts +1 -1
- package/dist/stories/Card/Card.stories.js +710 -0
- package/dist/stories/Card/HorizontalCard.stories.d.ts +1 -1
- package/dist/stories/Card/HorizontalCard.stories.js +116 -0
- package/dist/stories/Chip/ActionChip.stories.d.ts +1 -1
- package/dist/stories/Chip/ActionChip.stories.js +69 -0
- package/dist/stories/Chip/ChoiceChip.stories.d.ts +1 -1
- package/dist/stories/Chip/ChoiceChip.stories.js +43 -0
- package/dist/stories/Chip/FilterChip.stories.d.ts +1 -1
- package/dist/stories/Chip/FilterChip.stories.js +68 -0
- package/dist/stories/Chip/InputChip.stories.d.ts +1 -1
- package/dist/stories/Chip/InputChip.stories.js +94 -0
- package/dist/stories/Dropdown/BasicDropdown.stories.d.ts +1 -1
- package/dist/stories/Dropdown/BasicDropdown.stories.js +122 -0
- package/dist/stories/Dropdown/ButtonDropdown.stories.d.ts +1 -1
- package/dist/stories/Dropdown/ButtonDropdown.stories.js +165 -0
- package/dist/stories/Dropdown/DropdownFilter.stories.d.ts +1 -1
- package/dist/stories/Dropdown/DropdownFilter.stories.js +81 -0
- package/dist/stories/Footer.stories.js +95 -0
- package/dist/stories/GlobalLoadingPage.stories.js +10 -0
- package/dist/stories/GlobalNavigationBar.stories.js +477 -0
- package/dist/stories/HorizontalTabs.stories.d.ts +1 -1
- package/dist/stories/HorizontalTabs.stories.js +161 -0
- package/dist/stories/Icon.stories.js +86 -0
- package/dist/stories/InputFields/CheckboxDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/CheckboxDemo.stories.js +63 -0
- package/dist/stories/InputFields/ChipInputField.stories.d.ts +1 -1
- package/dist/stories/InputFields/ChipInputField.stories.js +195 -0
- package/dist/stories/InputFields/DatepickerDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/DatepickerDemo.stories.js +54 -0
- package/dist/stories/InputFields/FormDemo.stories.js +47 -0
- package/dist/stories/InputFields/NumberFieldDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/NumberFieldDemo.stories.js +147 -0
- package/dist/stories/InputFields/PasswordDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/PasswordDemo.stories.js +52 -0
- package/dist/stories/InputFields/QuickSearchDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/QuickSearchDemo.stories.js +78 -0
- package/dist/stories/InputFields/RadioButtonDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/RadioButtonDemo.stories.js +52 -0
- package/dist/stories/InputFields/RichTextFieldDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/RichTextFieldDemo.stories.js +74 -0
- package/dist/stories/InputFields/SearchBarDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/SearchBarDemo.stories.js +108 -0
- package/dist/stories/InputFields/TextFieldDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/TextFieldDemo.stories.js +113 -0
- package/dist/stories/InputFields/TextareaDemo.stories.d.ts +1 -1
- package/dist/stories/InputFields/TextareaDemo.stories.js +80 -0
- package/dist/stories/Layout.stories.js +15 -0
- package/dist/stories/LinearProgress.stories.d.ts +1 -1
- package/dist/stories/LinearProgress.stories.js +69 -0
- package/dist/stories/List.stories.d.ts +1 -1
- package/dist/stories/List.stories.js +290 -0
- package/dist/stories/LoadingIndicator.stories.d.ts +1 -1
- package/dist/stories/LoadingIndicator.stories.js +24 -0
- package/dist/stories/MenuItem.stories.d.ts +1 -1
- package/dist/stories/MenuItem.stories.js +101 -0
- package/dist/stories/ModalContent.stories.js +468 -0
- package/dist/stories/ModalDialog.stories.js +862 -0
- package/dist/stories/NavItem.stories.d.ts +1 -1
- package/dist/stories/NavItem.stories.js +18 -0
- package/dist/stories/Notification.stories.d.ts +1 -1
- package/dist/stories/Notification.stories.js +30 -0
- package/dist/stories/Paginator.stories.d.ts +1 -1
- package/dist/stories/Paginator.stories.js +27 -0
- package/dist/stories/Popover.stories.js +836 -0
- package/dist/stories/ProfileButton.stories.d.ts +1 -1
- package/dist/stories/ProfileButton.stories.js +56 -0
- package/dist/stories/QuizButton.stories.d.ts +1 -1
- package/dist/stories/QuizButton.stories.js +128 -0
- package/dist/stories/Scrollbar.stories.js +70 -0
- package/dist/stories/SegmentControl.stories.d.ts +1 -1
- package/dist/stories/SegmentControl.stories.js +89 -0
- package/dist/stories/ShadowStyles.stories.js +24 -0
- package/dist/stories/SideMenu.stories.js +149 -0
- package/dist/stories/Switcher.stories.js +17 -0
- package/dist/stories/Tables.stories.js +436 -0
- package/dist/stories/Tabs.stories.js +92 -0
- package/dist/stories/Tag.stories.d.ts +1 -1
- package/dist/stories/Tag.stories.js +52 -0
- package/dist/stories/Tile.stories.d.ts +1 -1
- package/dist/stories/Tile.stories.js +1618 -0
- package/dist/stories/Toast.stories.d.ts +1 -1
- package/dist/stories/Toast.stories.js +294 -0
- package/dist/stories/ToggleButton.stories.d.ts +1 -1
- package/dist/stories/ToggleButton.stories.js +74 -0
- package/dist/stories/ToggleSwitch.stories.d.ts +1 -1
- package/dist/stories/ToggleSwitch.stories.js +94 -0
- package/dist/stories/Tooltip.stories.d.ts +1 -1
- package/dist/stories/Tooltip.stories.js +88 -0
- package/dist/stories/Typography.stories.js +130 -0
- package/dist/stories/color.stories.js +272 -0
- package/dist/styles/colors.cjs +1 -11
- package/dist/styles/colors.cjs.map +1 -1
- package/dist/styles/colors.js +0 -9
- package/dist/styles/colors.js.map +1 -1
- package/dist/styles/global.d.ts +1 -1
- package/dist/styles/index.cjs +3 -5
- package/dist/styles/index.cjs.map +1 -1
- package/dist/styles/index.d.ts +2 -1
- package/dist/styles/index.js +2 -1
- package/dist/styles/index.js.map +1 -1
- package/dist/styles/overwritecolors.cjs +20 -0
- package/dist/styles/overwritecolors.cjs.map +1 -0
- package/dist/styles/overwritecolors.d.ts +3 -0
- package/dist/styles/overwritecolors.js +12 -0
- package/dist/styles/overwritecolors.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
6
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
7
|
+
if (ar || !(i in from)) {
|
|
8
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
9
|
+
ar[i] = from[i];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
13
|
+
};
|
|
14
|
+
import React from 'react';
|
|
15
|
+
import styled from 'styled-components';
|
|
16
|
+
import Button from '../Button/Button';
|
|
17
|
+
import { Size } from '../types';
|
|
18
|
+
import { DropdownContentButtonStyling } from './CommonStyling';
|
|
19
|
+
import { ComponentLStyling, ComponentXLStyling, ComponentMStyling, ComponentSStyling, ComponentTextStyle } from '../styles/typography';
|
|
20
|
+
import { COLORS, scrollBarStyling } from '../styles';
|
|
21
|
+
import { Checkbox, RadioButton } from '../InputFields';
|
|
22
|
+
import { Z_INDEXES } from '../styles/z-indexes';
|
|
23
|
+
import MenuItem from '../MenuItem/MenuItem';
|
|
24
|
+
var MAX_MENU_HEIGHT = 240;
|
|
25
|
+
var AVG_OPTION_HEIGHT = 48;
|
|
26
|
+
var OFFSET_BEFORE_SHOW = 1000000;
|
|
27
|
+
export var DropdownContentContainer = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: none;\n pointer-events: auto;\n position: absolute;\n background-color: ", ";\n\n z-index: ", ";\n margin: ", ";\n\n &.show {\n display: flex;\n flex-direction: column;\n justify-content: center;\n &.down,\n &.up {\n ", "\n }\n }\n\n transform: translate(-", "px, -", "px);\n\n &.outline:focus:after {\n content: '';\n pointer-events: none;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n outline: 4px solid black;\n outline-offset: 2px;\n border-radius: 2px;\n }\n\n &:focus {\n outline: none;\n }\n\n ", ";\n\n border: 1px solid ", ";\n box-sizing: border-box;\n box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);\n padding: 4px 0px;\n\n min-width: ", ";\n border-radius: ", ";\n\n max-height: ", ";\n"], ["\n display: none;\n pointer-events: auto;\n position: absolute;\n background-color: ", ";\n\n z-index: ", ";\n margin: ", ";\n\n &.show {\n display: flex;\n flex-direction: column;\n justify-content: center;\n &.down,\n &.up {\n ", "\n }\n }\n\n transform: translate(-", "px, -", "px);\n\n &.outline:focus:after {\n content: '';\n pointer-events: none;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n outline: 4px solid black;\n outline-offset: 2px;\n border-radius: 2px;\n }\n\n &:focus {\n outline: none;\n }\n\n ", ";\n\n border: 1px solid ", ";\n box-sizing: border-box;\n box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);\n padding: 4px 0px;\n\n min-width: ", ";\n border-radius: ", ";\n\n max-height: ", ";\n"])), COLORS.white, Z_INDEXES.dropdown, function (props) { return (props.isButton ? '-4px' : '4px 0px'); }, function (props) { return "transform: translate(".concat(props.offsetLeft, ", ").concat(props.offsetTop, ");"); }, OFFSET_BEFORE_SHOW, OFFSET_BEFORE_SHOW, function (props) { return (props.isButton ? DropdownContentButtonStyling : ''); }, COLORS.neutral_100, function (props) { return (props.size == Size.Large ? '320px' : props.size == Size.Medium ? '280px' : '240px'); }, function (props) { return (props.size == Size.Large ? '10px' : props.size == Size.Medium ? '8px' : '6px'); }, function (props) { return (!props.scrollable ? 'auto' : props.maxHeight ? props.maxHeight : props.size == Size.Large ? '320px' : props.size == Size.Medium ? '280px' : '240px'); });
|
|
28
|
+
export var DropdownContentItemsContainer = styled.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n > *:hover {\n z-index: ", ";\n }\n\n > *:active,\n > *.active {\n z-index: ", ";\n }\n\n > *:focus {\n z-index: ", ";\n }\n"], ["\n > *:hover {\n z-index: ", ";\n }\n\n > *:active,\n > *.active {\n z-index: ", ";\n }\n\n > *:focus {\n z-index: ", ";\n }\n"])), Z_INDEXES.hover, Z_INDEXES.active, Z_INDEXES.focus);
|
|
29
|
+
export var DropdownContentListContainer = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n ", "\n ", "\n ", "\n ", "\n div.divider {\n display: block;\n width: calc(100% - 40px);\n margin-left: 16px;\n border-top: 1px solid #e5e5e5;\n position: absolute;\n top: 0px;\n }\n\n ", " {\n padding-top: ", ";\n padding-bottom: ", ";\n\n word-break: break-word;\n }\n\n *:focus {\n outline: none !important;\n }\n\n ", "\n"], ["\n ", "\n ", "\n ", "\n ", "\n div.divider {\n display: block;\n width: calc(100% - 40px);\n margin-left: 16px;\n border-top: 1px solid #e5e5e5;\n position: absolute;\n top: 0px;\n }\n\n ", " {\n padding-top: ", ";\n padding-bottom: ", ";\n\n word-break: break-word;\n }\n\n *:focus {\n outline: none !important;\n }\n\n ", "\n"])), function (props) { return (props.scrollable ? 'overflow-y: scroll;' : ''); }, function (props) { return (props.scrollable ? 'margin-right: 6px;' : ''); }, function (props) { return (props.scrollable ? 'padding-right: 6px;' : ''); }, function (props) { return (props.itemsType != 'normal' ? 'margin-left: 4px;' : ''); }, DropdownContentItemsContainer, function (props) { return (props.size == Size.Large ? '8px' : props.size == Size.Medium ? '4px' : '0px'); }, function (props) { return (props.size == Size.Large ? '8px' : props.size == Size.Medium ? '4px' : '0px'); }, scrollBarStyling(Size.Small));
|
|
30
|
+
var DropdownContentMenuContentContainer = styled.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n h1,\n h2,\n h3 {\n margin-block-start: 0px;\n margin-block-end: 0px;\n ", "\n ", "\n ", "\n padding: ", ";\n }\n\n p {\n margin-block-start: 0px;\n margin-block-end: 0px;\n ", "\n ", "\n ", "\n padding: ", ";\n }\n"], ["\n h1,\n h2,\n h3 {\n margin-block-start: 0px;\n margin-block-end: 0px;\n ", "\n ", "\n ", "\n padding: ", ";\n }\n\n p {\n margin-block-start: 0px;\n margin-block-end: 0px;\n ", "\n ", "\n ", "\n padding: ", ";\n }\n"])), function (props) { return props.size == Size.Large && ComponentXLStyling(ComponentTextStyle.Bold, COLORS.neutral_500); }, function (props) { return props.size == Size.Medium && ComponentLStyling(ComponentTextStyle.Bold, COLORS.neutral_500); }, function (props) { return (props.size == Size.Small || !props.size) && ComponentMStyling(ComponentTextStyle.Bold, COLORS.neutral_500); }, function (props) { return (props.size == Size.Small || !props.size ? '10px 16px 6px' : props.size == Size.Medium ? '16px 24px 8px' : '16px 32px 8px'); }, function (props) { return props.size == Size.Large && ComponentLStyling(ComponentTextStyle.Regular, COLORS.neutral_500); }, function (props) { return props.size == Size.Medium && ComponentMStyling(ComponentTextStyle.Regular, COLORS.neutral_500); }, function (props) { return (props.size == Size.Small || !props.size) && ComponentSStyling(ComponentTextStyle.Regular, COLORS.neutral_500); }, function (props) { return (props.size == Size.Small || !props.size ? '8px 16px' : props.size == Size.Medium ? '12px 24px' : '16px 32px'); });
|
|
31
|
+
var DividerContainer = styled.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n position: relative;\n\n margin-top: ", ";\n\n div.divider {\n width: 100%;\n margin: 0px;\n }\n"], ["\n position: relative;\n\n margin-top: ", ";\n\n div.divider {\n width: 100%;\n margin: 0px;\n }\n"])), function (props) { return (props.size == Size.Large ? '16px' : props.size == Size.Medium ? '12px' : props.size == Size.Small || !props.size ? '8px' : '6px'); });
|
|
32
|
+
var DropdownContentTopItemContainer = styled.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n border-bottom-style: solid;\n border-bottom-color: ", ";\n border-bottom-width: 1px;\n margin-right: 22px;\n"], ["\n border-bottom-style: solid;\n border-bottom-color: ", ";\n border-bottom-width: 1px;\n margin-right: 22px;\n"])), COLORS.neutral_200);
|
|
33
|
+
var DropdownContentActionButtonContainer = styled.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n ", "\n ", "\n\n padding: ", ";\n\n button {\n width: 100%;\n }\n"], ["\n ", "\n ", "\n\n padding: ", ";\n\n button {\n width: 100%;\n }\n"])), function (props) { return (props.scrollable ? "border-top: 1px solid ".concat(COLORS.neutral_200, ";") : ''); }, function (props) { return (props.scrollable ? 'margin-top: 4px;' : ''); }, function (props) { return (props.size === Size.Small || !props.size ? '4px 16px 0px' : props.size === Size.Medium ? '12px 16px 8px' : '16px 16px 12px'); });
|
|
34
|
+
var Overlay = styled.div(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: ", ";\n"], ["\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: ", ";\n"])), Z_INDEXES.modal);
|
|
35
|
+
var DropdownContent = React.forwardRef(function (_a, ref) {
|
|
36
|
+
var _b, _c;
|
|
37
|
+
var id = _a.id, customizationProps = _a.customizationProps, alignLeft = _a.alignLeft, isButton = _a.isButton, size = _a.size, isOpen = _a.isOpen, width = _a.width, setIsOpen = _a.setIsOpen, filter = _a.filter, focused = _a.focused, setFocused = _a.setFocused, selectedValues = _a.selectedValues, setSelectedValues = _a.setSelectedValues, messageOnNoResults = _a.messageOnNoResults, outline = _a.outline, containerRef = _a.containerRef, onActiveDescendantChanged = _a.onActiveDescendantChanged, _d = _a.ariaRolesType, ariaRolesType = _d === void 0 ? 'menu' : _d;
|
|
38
|
+
var _e = React.useState(false), isUp = _e[0], setIsUp = _e[1];
|
|
39
|
+
var _f = React.useState(false), locationDefined = _f[0], setLocationDefined = _f[1];
|
|
40
|
+
var _g = React.useState({ top: '0', left: '0' }), offset = _g[0], setOffset = _g[1];
|
|
41
|
+
var dropdownContentRef = (_b = ref) !== null && _b !== void 0 ? _b : React.useRef(null);
|
|
42
|
+
if (!customizationProps.itemsType)
|
|
43
|
+
customizationProps.itemsType = 'normal';
|
|
44
|
+
if (!size)
|
|
45
|
+
size = Size.Small;
|
|
46
|
+
var itemsListRef = React.useRef(null);
|
|
47
|
+
var actionButtonRef = React.useRef(null);
|
|
48
|
+
var determineDropUp = function () {
|
|
49
|
+
var options = customizationProps.items;
|
|
50
|
+
var rect = containerRef.current.getBoundingClientRect();
|
|
51
|
+
var windowHeight = window.innerHeight;
|
|
52
|
+
var menuHeight = Math.min(MAX_MENU_HEIGHT, options.length * AVG_OPTION_HEIGHT);
|
|
53
|
+
var instOffsetWithMenu = rect.top + rect.height + menuHeight;
|
|
54
|
+
var up = instOffsetWithMenu >= windowHeight;
|
|
55
|
+
setOffset({
|
|
56
|
+
top: up ? "calc(-100% - ".concat(rect.height, "px ").concat(isButton ? '' : '- 8px', ")") : '0',
|
|
57
|
+
left: alignLeft ? "calc(-".concat(rect.width, "px)") : "calc(-100%)",
|
|
58
|
+
});
|
|
59
|
+
setIsUp(up);
|
|
60
|
+
setLocationDefined(true);
|
|
61
|
+
};
|
|
62
|
+
var setNewFocusedElement = function (index) {
|
|
63
|
+
var _a, _b, _c, _d;
|
|
64
|
+
if (outline)
|
|
65
|
+
(_a = dropdownContentRef.current) === null || _a === void 0 ? void 0 : _a.focus();
|
|
66
|
+
var newFocusedElement = elRefs[index];
|
|
67
|
+
if (onActiveDescendantChanged)
|
|
68
|
+
onActiveDescendantChanged(index == 0 ? "".concat(id, "_topitem") : "".concat(id, "_").concat(index));
|
|
69
|
+
var oldFocusedElement = focused || focused === 0 ? elRefs[focused] : null;
|
|
70
|
+
if (newFocusedElement && newFocusedElement !== oldFocusedElement) {
|
|
71
|
+
setFocused(index);
|
|
72
|
+
(_b = oldFocusedElement === null || oldFocusedElement === void 0 ? void 0 : oldFocusedElement.current) === null || _b === void 0 ? void 0 : _b.classList.remove('dropdown-hover');
|
|
73
|
+
(_c = newFocusedElement.current) === null || _c === void 0 ? void 0 : _c.classList.add('dropdown-hover');
|
|
74
|
+
(_d = newFocusedElement.current) === null || _d === void 0 ? void 0 : _d.scrollIntoView({
|
|
75
|
+
block: 'nearest',
|
|
76
|
+
inline: 'nearest',
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
var getFilteredItems = function () {
|
|
81
|
+
var filtrationString = (filter !== null && filter !== void 0 ? filter : '').toUpperCase();
|
|
82
|
+
return customizationProps.items.filter(function (x) { var _a, _b; return ((_a = x === null || x === void 0 ? void 0 : x.value) === null || _a === void 0 ? void 0 : _a.toUpperCase().includes(filtrationString)) || ((_b = x === null || x === void 0 ? void 0 : x.displayLabel) === null || _b === void 0 ? void 0 : _b.toUpperCase().includes(filtrationString)); });
|
|
83
|
+
};
|
|
84
|
+
var findNextActiveIndex = function (index, direction, items) {
|
|
85
|
+
var _a;
|
|
86
|
+
for (var i = index + direction; i > 0 && i <= items.length; i += direction) {
|
|
87
|
+
if (!((_a = items[i - 1]) === null || _a === void 0 ? void 0 : _a.disabled)) {
|
|
88
|
+
return i;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
return index;
|
|
92
|
+
};
|
|
93
|
+
var handleKeyDown = function (e) {
|
|
94
|
+
var _a;
|
|
95
|
+
if (isOpen) {
|
|
96
|
+
if (e.key === 'ArrowUp' || e.key === 'Up') {
|
|
97
|
+
e.preventDefault();
|
|
98
|
+
var focusedNow = focused || focused === 0 ? focused : arrLength + 1;
|
|
99
|
+
if (!!focusedNow) {
|
|
100
|
+
focusedNow = focusedNow === 1 && haveTopItem() ? 0 : findNextActiveIndex(focusedNow, -1, getFilteredItems());
|
|
101
|
+
setNewFocusedElement(focusedNow);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
else if (e.key === 'ArrowDown' || e.key === 'Down') {
|
|
105
|
+
e.preventDefault();
|
|
106
|
+
var focusedNow = focused;
|
|
107
|
+
focusedNow = !!focusedNow || focusedNow === 0 ? findNextActiveIndex(focusedNow, 1, getFilteredItems()) : haveTopItem() ? 0 : 1;
|
|
108
|
+
setNewFocusedElement(focusedNow);
|
|
109
|
+
}
|
|
110
|
+
else if (e.key === 'Escape' || e.key === 'Esc') {
|
|
111
|
+
setIsOpen(false);
|
|
112
|
+
setFocused(null);
|
|
113
|
+
if (onActiveDescendantChanged)
|
|
114
|
+
onActiveDescendantChanged(undefined);
|
|
115
|
+
}
|
|
116
|
+
else if ((e.key === 'Enter' || e.key === ' ') && focused !== null && e.target !== (actionButtonRef === null || actionButtonRef === void 0 ? void 0 : actionButtonRef.current)) {
|
|
117
|
+
e.preventDefault();
|
|
118
|
+
var focusedElement = elRefs[focused];
|
|
119
|
+
if (focusedElement) {
|
|
120
|
+
(_a = focusedElement.current) === null || _a === void 0 ? void 0 : _a.click();
|
|
121
|
+
}
|
|
122
|
+
if (onActiveDescendantChanged)
|
|
123
|
+
onActiveDescendantChanged(undefined);
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
};
|
|
127
|
+
React.useEffect(function () {
|
|
128
|
+
document.addEventListener('keydown', handleKeyDown);
|
|
129
|
+
return function () {
|
|
130
|
+
document.removeEventListener('keydown', handleKeyDown);
|
|
131
|
+
};
|
|
132
|
+
}, []);
|
|
133
|
+
var scrollPosition = React.useRef(0);
|
|
134
|
+
var handleScroll = function () {
|
|
135
|
+
var _a;
|
|
136
|
+
scrollPosition.current = (_a = itemsListRef.current) === null || _a === void 0 ? void 0 : _a.scrollTop;
|
|
137
|
+
};
|
|
138
|
+
React.useLayoutEffect(function () {
|
|
139
|
+
var _a;
|
|
140
|
+
if (itemsListRef.current)
|
|
141
|
+
itemsListRef.current.scrollTop = (_a = scrollPosition.current) !== null && _a !== void 0 ? _a : 0;
|
|
142
|
+
}, [selectedValues]);
|
|
143
|
+
var getCorrectRef = function (ref) {
|
|
144
|
+
switch (customizationProps.itemsType) {
|
|
145
|
+
case 'normal':
|
|
146
|
+
return ref || React.createRef();
|
|
147
|
+
default:
|
|
148
|
+
return ref || React.createRef();
|
|
149
|
+
}
|
|
150
|
+
};
|
|
151
|
+
var arrLength = getFilteredItems().length;
|
|
152
|
+
var _h = React.useState([]), elRefs = _h[0], setElRefs = _h[1];
|
|
153
|
+
React.useEffect(function () {
|
|
154
|
+
if ((elRefs === null || elRefs === void 0 ? void 0 : elRefs.length) !== arrLength) {
|
|
155
|
+
setFocused(null);
|
|
156
|
+
}
|
|
157
|
+
setElRefs(function (elRefs) {
|
|
158
|
+
return Array(arrLength + 1)
|
|
159
|
+
.fill(null)
|
|
160
|
+
.map(function (_, i) { return getCorrectRef(elRefs[i]); });
|
|
161
|
+
});
|
|
162
|
+
}, [isOpen, arrLength]);
|
|
163
|
+
React.useLayoutEffect(function () {
|
|
164
|
+
isOpen && !locationDefined && determineDropUp();
|
|
165
|
+
}, [isOpen, locationDefined]);
|
|
166
|
+
var haveTopItem = function () {
|
|
167
|
+
var _a;
|
|
168
|
+
if (!customizationProps.pinTopItem)
|
|
169
|
+
return false;
|
|
170
|
+
if (customizationProps.itemsType === 'radio' && selectedValues && (selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.length) > 0)
|
|
171
|
+
return true;
|
|
172
|
+
else if (customizationProps.itemsType === 'checkbox' && (customizationProps.multiSelect || (selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.length) > 0))
|
|
173
|
+
return true;
|
|
174
|
+
else if (customizationProps.itemsType === 'normal' && ((_a = getSuggestions()) === null || _a === void 0 ? void 0 : _a.length) > 0)
|
|
175
|
+
return true;
|
|
176
|
+
return false;
|
|
177
|
+
};
|
|
178
|
+
var getSuggestions = function () {
|
|
179
|
+
return getFilteredItems().filter(function (x) { return x.suggestion; });
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* when dropdown opens set correct position of focused item
|
|
183
|
+
* */
|
|
184
|
+
React.useLayoutEffect(function () {
|
|
185
|
+
if (isOpen && (focused || focused === 0)) {
|
|
186
|
+
setNewFocusedElement(focused === 0 && !haveTopItem() ? 1 : focused);
|
|
187
|
+
}
|
|
188
|
+
}, [isOpen, focused]);
|
|
189
|
+
/**
|
|
190
|
+
* Reset dropdown content state on close
|
|
191
|
+
* */
|
|
192
|
+
React.useEffect(function () {
|
|
193
|
+
var _a, _b, _c, _d, _e;
|
|
194
|
+
if (!isOpen) {
|
|
195
|
+
setLocationDefined(false);
|
|
196
|
+
for (var _i = 0, elRefs_1 = elRefs; _i < elRefs_1.length; _i++) {
|
|
197
|
+
var elRef = elRefs_1[_i];
|
|
198
|
+
(_a = elRef.current) === null || _a === void 0 ? void 0 : _a.classList.remove('dropdown-hover');
|
|
199
|
+
}
|
|
200
|
+
setFocused(null);
|
|
201
|
+
if (onActiveDescendantChanged)
|
|
202
|
+
onActiveDescendantChanged(undefined);
|
|
203
|
+
(_b = dropdownContentRef.current) === null || _b === void 0 ? void 0 : _b.classList.remove('outline');
|
|
204
|
+
(_c = dropdownContentRef.current) === null || _c === void 0 ? void 0 : _c.blur();
|
|
205
|
+
}
|
|
206
|
+
else {
|
|
207
|
+
if (outline) {
|
|
208
|
+
(_d = dropdownContentRef.current) === null || _d === void 0 ? void 0 : _d.classList.add('outline');
|
|
209
|
+
(_e = dropdownContentRef.current) === null || _e === void 0 ? void 0 : _e.focus();
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}, [isOpen, dropdownContentRef, focused, outline]);
|
|
213
|
+
/**
|
|
214
|
+
* Scroll item container to top when dropdown opens
|
|
215
|
+
* */
|
|
216
|
+
React.useEffect(function () {
|
|
217
|
+
if (isOpen && itemsListRef.current) {
|
|
218
|
+
itemsListRef.current.scrollTop = 0;
|
|
219
|
+
}
|
|
220
|
+
}, [isOpen]);
|
|
221
|
+
React.useEffect(function () {
|
|
222
|
+
if (isOpen) {
|
|
223
|
+
var observer_1 = new IntersectionObserver(function (entries) {
|
|
224
|
+
var _a;
|
|
225
|
+
if (!entries[0].isIntersecting) {
|
|
226
|
+
setIsOpen(false);
|
|
227
|
+
//@ts-ignore
|
|
228
|
+
(_a = document === null || document === void 0 ? void 0 : document.activeElement) === null || _a === void 0 ? void 0 : _a.blur();
|
|
229
|
+
}
|
|
230
|
+
}, { threshold: [0], rootMargin: '8px' });
|
|
231
|
+
observer_1.observe(containerRef.current);
|
|
232
|
+
calculateOffset();
|
|
233
|
+
window.addEventListener('scroll', calculateOffset, true);
|
|
234
|
+
window.addEventListener('resize', calculateOffset);
|
|
235
|
+
return function () {
|
|
236
|
+
observer_1.disconnect();
|
|
237
|
+
window.removeEventListener('scroll', calculateOffset, true);
|
|
238
|
+
window.removeEventListener('resize', calculateOffset);
|
|
239
|
+
};
|
|
240
|
+
}
|
|
241
|
+
return function () { };
|
|
242
|
+
}, [isOpen]);
|
|
243
|
+
var handleItemClick = function (selected, item) {
|
|
244
|
+
var newValue = [];
|
|
245
|
+
if (customizationProps.multiSelect) {
|
|
246
|
+
if (selected)
|
|
247
|
+
newValue = __spreadArray(__spreadArray([], selectedValues, true), [item.value], false);
|
|
248
|
+
else
|
|
249
|
+
newValue = selectedValues.filter(function (x) { return x != item.value; });
|
|
250
|
+
}
|
|
251
|
+
else
|
|
252
|
+
newValue = selected ? [item.value] : [];
|
|
253
|
+
setSelectedValues(newValue);
|
|
254
|
+
if (customizationProps.onValueUpdate && customizationProps.onValueUpdate(newValue)) {
|
|
255
|
+
setIsOpen(false);
|
|
256
|
+
}
|
|
257
|
+
};
|
|
258
|
+
var getTopItem = function () {
|
|
259
|
+
var _a, _b, _c, _d;
|
|
260
|
+
if (!customizationProps.pinTopItem)
|
|
261
|
+
return;
|
|
262
|
+
var visibleItems = getFilteredItems();
|
|
263
|
+
var allSelected = (selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.filter(function (x) { return visibleItems.some(function (y) { return y.value == x; }); }).length) == visibleItems.length;
|
|
264
|
+
var showTopItem = false;
|
|
265
|
+
var suggestions = getSuggestions();
|
|
266
|
+
var displayLabel = selectedValues[0] ? (_b = (_a = customizationProps.items) === null || _a === void 0 ? void 0 : _a.find(function (c) { return c.value === selectedValues[0]; })) === null || _b === void 0 ? void 0 : _b.displayLabel : undefined;
|
|
267
|
+
if (customizationProps.itemsType == 'radio' && selectedValues && (selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.length) > 0)
|
|
268
|
+
showTopItem = true;
|
|
269
|
+
else if (customizationProps.itemsType == 'checkbox' && (customizationProps.multiSelect || (selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.length) > 0))
|
|
270
|
+
showTopItem = true;
|
|
271
|
+
else if (customizationProps.itemsType == 'normal' && suggestions.length > 0)
|
|
272
|
+
showTopItem = true;
|
|
273
|
+
if (!showTopItem)
|
|
274
|
+
return;
|
|
275
|
+
var selectedFirst = selectedValues.length > 0 ? visibleItems.find(function (x) { return x.value == selectedValues[0]; }) : null;
|
|
276
|
+
return (React.createElement(DropdownContentTopItemContainer, { size: size },
|
|
277
|
+
customizationProps.itemsType === 'radio' && (React.createElement(RadioButton, { ref: elRefs[0], role: 'menuitemradio', iconPointerEventsTransparent: true, onFocus: function (e) { return onActiveDescendantChanged && onActiveDescendantChanged("".concat(id, "_topitem")); }, tabIndexVal: -1, className: "".concat(focused === 0 ? 'dropdown-hover' : ''), select: function () { }, label: (_c = selectedFirst === null || selectedFirst === void 0 ? void 0 : selectedFirst.displayLabel) !== null && _c !== void 0 ? _c : selectedFirst === null || selectedFirst === void 0 ? void 0 : selectedFirst.value, size: size, id: "".concat(id, "_topitem"), selected: true })),
|
|
278
|
+
customizationProps.itemsType === 'checkbox' && (React.createElement(Checkbox, { ref: elRefs[0], role: 'menuitemcheckbox', tabIndexVal: -1, className: "".concat(focused === 0 ? 'dropdown-hover' : ''), select: function (selected) {
|
|
279
|
+
if (!customizationProps.multiSelect)
|
|
280
|
+
return;
|
|
281
|
+
var newValues = selected ? visibleItems.map(function (x) { return x.value; }) : [];
|
|
282
|
+
setSelectedValues(newValues);
|
|
283
|
+
if (customizationProps.onValueUpdate && customizationProps.onValueUpdate(newValues))
|
|
284
|
+
setIsOpen(false);
|
|
285
|
+
}, onFocus: function (e) { return onActiveDescendantChanged && onActiveDescendantChanged("".concat(id, "_topitem")); }, iconPointerEventsTransparent: true, semiSelected: customizationProps.multiSelect && !allSelected && (selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.length) > 0, size: size, id: "".concat(id, "_checkbox_selectall"), label: customizationProps.multiSelect ? 'Select all' : (_d = selectedFirst === null || selectedFirst === void 0 ? void 0 : selectedFirst.displayLabel) !== null && _d !== void 0 ? _d : selectedFirst === null || selectedFirst === void 0 ? void 0 : selectedFirst.value, selected: !customizationProps.multiSelect || allSelected })),
|
|
286
|
+
customizationProps.itemsType === 'normal' && (React.createElement(React.Fragment, null, suggestions.map(function (x) { return (React.createElement(MenuItem, { role: ariaRolesType == 'input' ? 'option' : 'menu', key: "".concat(id, "_topitem_").concat(x.value), item: x, size: size, active: false, tabIndex: -1, onFocus: function (e) { return onActiveDescendantChanged && onActiveDescendantChanged("".concat(id, "_topitem")); }, className: "".concat(focused === 0 ? 'dropdown-hover' : ''), ref: elRefs[0], id: "".concat(id, "_topitem"), onClickHandler: function (e) {
|
|
287
|
+
e.stopPropagation();
|
|
288
|
+
customizationProps.onValueUpdate([x.value]);
|
|
289
|
+
setSelectedValues([x.value]);
|
|
290
|
+
setIsOpen(false);
|
|
291
|
+
setFocused(null);
|
|
292
|
+
} })); })))));
|
|
293
|
+
};
|
|
294
|
+
var getElements = function (messageOnNoResults, size) {
|
|
295
|
+
if (getFilteredItems().length === 0) {
|
|
296
|
+
return React.createElement(MenuItem, { item: { value: messageOnNoResults, disabled: true }, size: size, id: "noResultsFound", active: false, onClickHandler: function (e) { } });
|
|
297
|
+
}
|
|
298
|
+
return (React.createElement(DropdownContentItemsContainer, { size: size }, getFilteredItems()
|
|
299
|
+
.filter(function (x) { return x && (customizationProps.itemsType != 'normal' || !x.suggestion); })
|
|
300
|
+
.map(function (item, index) {
|
|
301
|
+
var _a, _b;
|
|
302
|
+
return (React.createElement(React.Fragment, { key: "key_".concat(id, "_").concat(item.value) },
|
|
303
|
+
item.customContent,
|
|
304
|
+
!item.customContent && customizationProps.itemsType == 'radio' && (React.createElement(RadioButton, { role: 'menuitemradio', select: function (selected) { return handleItemClick(selected, item); }, ref: elRefs[index + 1], size: size, tabIndexVal: -1, className: "".concat(index + 1 === focused ? 'dropdown-hover' : ''), iconPointerEventsTransparent: true, disabled: item === null || item === void 0 ? void 0 : item.disabled, key: "key_".concat(id, "_").concat(index + 1), onFocus: function (e) { return onActiveDescendantChanged && onActiveDescendantChanged("".concat(id, "_").concat(index + 1)); }, id: "".concat(id, "_").concat(index + 1), label: (_a = item.displayLabel) !== null && _a !== void 0 ? _a : item.value, selected: selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.includes(item.value) })),
|
|
305
|
+
!item.customContent && customizationProps.itemsType == 'checkbox' && (React.createElement(Checkbox, { role: 'menuitemcheckbox', select: function (selected) { return handleItemClick(selected, item); }, iconPointerEventsTransparent: true, disabled: item === null || item === void 0 ? void 0 : item.disabled, className: "".concat(index + 1 === focused ? 'dropdown-hover' : ''), ref: elRefs[index + 1], size: size, tabIndexVal: -1, key: "key_".concat(id, "_").concat(index + 1), onFocus: function (e) { return onActiveDescendantChanged && onActiveDescendantChanged("".concat(id, "_").concat(index + 1)); }, id: "".concat(id, "_").concat(index + 1), label: (_b = item.displayLabel) !== null && _b !== void 0 ? _b : item.value, selected: selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.includes(item.value) })),
|
|
306
|
+
!item.customContent && (customizationProps.itemsType == 'normal' || !customizationProps.itemsType) && (React.createElement(MenuItem, { role: ariaRolesType == 'input' ? 'option' : 'menu', key: "key_".concat(id, "_").concat(index + 1), id: "".concat(id, "_").concat(index + 1), item: item, tabIndex: -1, className: "".concat(index + 1 === focused ? 'dropdown-hover' : ''), size: size, onFocus: function (e) { return onActiveDescendantChanged && onActiveDescendantChanged("".concat(id, "_").concat(index + 1)); }, active: selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.includes(item.value), ref: elRefs[index + 1], onClickHandler: function (e) {
|
|
307
|
+
e.stopPropagation();
|
|
308
|
+
customizationProps.onValueUpdate([item.value]);
|
|
309
|
+
setSelectedValues([item.value]);
|
|
310
|
+
setIsOpen(false);
|
|
311
|
+
setFocused(null);
|
|
312
|
+
} }))));
|
|
313
|
+
})));
|
|
314
|
+
};
|
|
315
|
+
var calculateOffset = function () {
|
|
316
|
+
var _a;
|
|
317
|
+
var rect = (_a = containerRef === null || containerRef === void 0 ? void 0 : containerRef.current) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect();
|
|
318
|
+
if (rect) {
|
|
319
|
+
dropdownContentRef.current.style.left = "".concat(rect.x + rect.width, "px");
|
|
320
|
+
dropdownContentRef.current.style.top = "".concat(rect.y + rect.height, "px");
|
|
321
|
+
dropdownContentRef.current.style.width = width !== null && width !== void 0 ? width : "".concat(rect.width, "px");
|
|
322
|
+
}
|
|
323
|
+
determineDropUp();
|
|
324
|
+
};
|
|
325
|
+
var cls = "".concat(isOpen ? 'show' : '', " ").concat(isOpen && outline ? 'outline' : '', " ").concat(locationDefined ? (isUp ? 'up' : 'down') : '');
|
|
326
|
+
return (React.createElement(Overlay, null,
|
|
327
|
+
React.createElement(DropdownContentContainer, { role: ariaRolesType == "menu" ? "menu" : "optionlist", ref: dropdownContentRef, size: size, offsetTop: offset.top, id: id, offsetLeft: offset.left, tabIndex: -1, isButton: isButton, alignLeft: alignLeft, scrollable: customizationProps.scrollable, maxHeight: customizationProps.maxHeight, className: cls },
|
|
328
|
+
React.createElement(DropdownContentListContainer, { role: "group", size: size, itemsType: customizationProps.itemsType, onScroll: handleScroll, ref: itemsListRef, outline: outline, scrollable: customizationProps.scrollable },
|
|
329
|
+
customizationProps.menuContent && (React.createElement(DropdownContentMenuContentContainer, { size: size },
|
|
330
|
+
customizationProps.menuContent,
|
|
331
|
+
React.createElement(DividerContainer, { size: size },
|
|
332
|
+
React.createElement("div", { className: "divider" })))),
|
|
333
|
+
customizationProps.pinTopItem && getTopItem(),
|
|
334
|
+
getElements(messageOnNoResults, size)),
|
|
335
|
+
customizationProps.action && customizationProps.actionLabel && (React.createElement(DropdownContentActionButtonContainer, { size: size, scrollable: customizationProps.scrollable },
|
|
336
|
+
React.createElement(Button, { width: "100%", role: "menuitem", icon: customizationProps.actionIcon, ref: actionButtonRef, loading: customizationProps.actionLoading, disabled: customizationProps.actionDisabled, variant: (_c = customizationProps.actionVariant) !== null && _c !== void 0 ? _c : 'primary', size: size, onClick: function () { return customizationProps.action() && setIsOpen(false); } }, customizationProps.actionLabel))))));
|
|
337
|
+
});
|
|
338
|
+
export default DropdownContent;
|
|
339
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8;
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
13
|
+
var t = {};
|
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
15
|
+
t[p] = s[p];
|
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
19
|
+
t[p[i]] = s[p[i]];
|
|
20
|
+
}
|
|
21
|
+
return t;
|
|
22
|
+
};
|
|
23
|
+
import * as React from 'react';
|
|
24
|
+
import { COLORS } from '../styles';
|
|
25
|
+
import { SystemIcons } from '../icons';
|
|
26
|
+
import { LoadingIndicator } from '../LoadingIndicator';
|
|
27
|
+
import { DropdownInputFieldStyles, DropdownContainer, DropdownInputField } from './CommonStyling';
|
|
28
|
+
import DropdownContent from './DropdownContent';
|
|
29
|
+
import { Size } from '../types';
|
|
30
|
+
import { AutofilledMessage, ErrorMessage } from '../InputFields';
|
|
31
|
+
import TooltipOverflow from '../Tooltips/TooltipOverflow';
|
|
32
|
+
import { defaultOnMouseDownHandler, useActionWithin, useClickOutsideRef, useFocusOutsideRef, useFocusVisibleRef } from '../common';
|
|
33
|
+
import { IconButton } from '../Button';
|
|
34
|
+
var DropdownFilter = React.forwardRef(function (_a, ref) {
|
|
35
|
+
var id = _a.id, list = _a.list, placeholder = _a.placeholder, onSelect = _a.onSelect, onInputChange = _a.onInputChange, value = _a.value, required = _a.required, messageOnNoResults = _a.messageOnNoResults, disabled = _a.disabled, readOnly = _a.readOnly, scrollable = _a.scrollable, activeValidationMessage = _a.activeValidationMessage, autofilledMessage = _a.autofilledMessage, size = _a.size, disableFiltering = _a.disableFiltering, margin = _a.margin, loading = _a.loading, onFocus = _a.onFocus, overflowTooltipPosition = _a.overflowTooltipPosition, onBlur = _a.onBlur, dataTestId = _a.dataTestId, rest = __rest(_a, ["id", "list", "placeholder", "onSelect", "onInputChange", "value", "required", "messageOnNoResults", "disabled", "readOnly", "scrollable", "activeValidationMessage", "autofilledMessage", "size", "disableFiltering", "margin", "loading", "onFocus", "overflowTooltipPosition", "onBlur", "dataTestId"]);
|
|
36
|
+
var _b = React.useState(false), isOpen = _b[0], setIsOpen = _b[1];
|
|
37
|
+
var _c = React.useState(), input = _c[0], setInput = _c[1];
|
|
38
|
+
var _d = React.useState(), activeDescendant = _d[0], setActiveDescendant = _d[1];
|
|
39
|
+
var _e = React.useState(false), restartFilter = _e[0], setRestartFilter = _e[1];
|
|
40
|
+
var _f = React.useState(), selectedItem = _f[0], setSelectedItem = _f[1];
|
|
41
|
+
var _g = React.useState([]), selectedValues = _g[0], setSelectedValues = _g[1];
|
|
42
|
+
var _h = React.useState(null), focused = _h[0], setFocused = _h[1];
|
|
43
|
+
var _j = React.useState(false), inputFocused = _j[0], setInputFocused = _j[1];
|
|
44
|
+
var _k = React.useState(true), init = _k[0], setInit = _k[1];
|
|
45
|
+
var styledFieldRef = useFocusVisibleRef();
|
|
46
|
+
var inputRef = useFocusVisibleRef([styledFieldRef]);
|
|
47
|
+
var clearButtonRef = React.useRef(null);
|
|
48
|
+
useActionWithin(styledFieldRef, input && !readOnly && !disabled ? [clearButtonRef] : []);
|
|
49
|
+
React.useImperativeHandle(ref, function () { return inputRef.current; }, [inputRef]);
|
|
50
|
+
var containerRef = useClickOutsideRef(function () { return setIsOpen(false); }, [], useFocusOutsideRef(function () { return setIsOpen(false); }));
|
|
51
|
+
var handleInputKeyDown = function (e) {
|
|
52
|
+
if (e.key === 'Esc' || e.key === 'Escape') {
|
|
53
|
+
e.preventDefault();
|
|
54
|
+
}
|
|
55
|
+
if (e.key === 'ArrowDown' || e.key === 'Down' || e.key === 'ArrowUp' || e.key === 'Up') {
|
|
56
|
+
e.preventDefault();
|
|
57
|
+
if (!isOpen) {
|
|
58
|
+
setIsOpen(true);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
React.useEffect(function () {
|
|
63
|
+
setInit(true);
|
|
64
|
+
setSelectedValues(!!value ? [value] : []);
|
|
65
|
+
}, [value]);
|
|
66
|
+
React.useEffect(function () {
|
|
67
|
+
var _a, _b;
|
|
68
|
+
if (selectedValues === null || selectedValues === void 0 ? void 0 : selectedValues.length) {
|
|
69
|
+
var val_1 = selectedValues[0];
|
|
70
|
+
var item = list.find(function (a) { return a.value === val_1; });
|
|
71
|
+
setSelectedItem(item);
|
|
72
|
+
setInput((_b = (_a = item === null || item === void 0 ? void 0 : item.displayLabel) !== null && _a !== void 0 ? _a : item === null || item === void 0 ? void 0 : item.value) !== null && _b !== void 0 ? _b : '');
|
|
73
|
+
onSelect && !init && onSelect(val_1);
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
setSelectedItem(undefined);
|
|
77
|
+
onSelect && !init && onSelect('');
|
|
78
|
+
setInput('');
|
|
79
|
+
}
|
|
80
|
+
}, [selectedValues]);
|
|
81
|
+
React.useEffect(function () {
|
|
82
|
+
var _a, _b;
|
|
83
|
+
if (!isOpen) {
|
|
84
|
+
if (!!selectedItem) {
|
|
85
|
+
setInput((_b = (_a = selectedItem === null || selectedItem === void 0 ? void 0 : selectedItem.displayLabel) !== null && _a !== void 0 ? _a : selectedItem === null || selectedItem === void 0 ? void 0 : selectedItem.value) !== null && _b !== void 0 ? _b : '');
|
|
86
|
+
}
|
|
87
|
+
else {
|
|
88
|
+
setInput('');
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
setRestartFilter(true);
|
|
92
|
+
}, [isOpen, selectedItem]);
|
|
93
|
+
var handleInputClear = function (e) {
|
|
94
|
+
var _a;
|
|
95
|
+
setInput('');
|
|
96
|
+
setSelectedValues([]);
|
|
97
|
+
onSelect && onSelect('');
|
|
98
|
+
(_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.focus({ focusVisible: (e === null || e === void 0 ? void 0 : e.detail) !== 1 });
|
|
99
|
+
};
|
|
100
|
+
var renderInput = function () {
|
|
101
|
+
return (React.createElement(DropdownInputFieldStyles, { ref: styledFieldRef, className: size ? size : '', onClick: function (e) {
|
|
102
|
+
var _a, _b;
|
|
103
|
+
if (!readOnly && !disabled) {
|
|
104
|
+
e.stopPropagation();
|
|
105
|
+
setIsOpen(!isOpen);
|
|
106
|
+
if (isOpen) {
|
|
107
|
+
(_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.blur();
|
|
108
|
+
}
|
|
109
|
+
else {
|
|
110
|
+
(_b = inputRef.current) === null || _b === void 0 ? void 0 : _b.focus();
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}, disabled: disabled || false, readOnly: readOnly || false, isPlaceholder: !input, showValidationMessage: !!activeValidationMessage, onMouseDown: defaultOnMouseDownHandler, "data-testid": "otherdiv_".concat(id) },
|
|
114
|
+
React.createElement(DropdownInputField, __assign({ id: id, ref: inputRef, autoComplete: 'off-' + Math.floor(Math.random() * 999999999999), type: "search", placeholder: inputFocused ? '' : placeholder, onKeyDown: handleInputKeyDown, ellipsis: true, value: input || '', onChange: function (e) {
|
|
115
|
+
if (!e.target.value) {
|
|
116
|
+
setSelectedValues([]);
|
|
117
|
+
}
|
|
118
|
+
if (!readOnly && !disabled && e.target.value !== input) {
|
|
119
|
+
setRestartFilter(false);
|
|
120
|
+
setIsOpen(true);
|
|
121
|
+
setInput(e.target.value);
|
|
122
|
+
if (onInputChange) {
|
|
123
|
+
onInputChange(e.target.value || '');
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}, onFocus: function (e) {
|
|
127
|
+
setInputFocused(true);
|
|
128
|
+
onFocus && onFocus(e);
|
|
129
|
+
}, onBlur: function (e) {
|
|
130
|
+
setInputFocused(false);
|
|
131
|
+
onBlur && onBlur(e);
|
|
132
|
+
}, required: required, tabIndex: disabled || readOnly ? -1 : 0, disabled: disabled || false, "data-testid": dataTestId }, rest)),
|
|
133
|
+
!isOpen ? React.createElement(TooltipOverflow, { position: overflowTooltipPosition, input: inputRef, withArrow: true, maxWidth: "100%", size: size, align: 'end' }, input) : null,
|
|
134
|
+
input && !readOnly && !disabled && !loading && (React.createElement(IconButton, { action: handleInputClear, ref: clearButtonRef, useTransparentBackground: true, shape: 'circular', style: { marginLeft: '-4px' }, variant: 'secondary' },
|
|
135
|
+
React.createElement(SystemIcons.Clear, null))),
|
|
136
|
+
!disabled && !readOnly && loading && (React.createElement("div", { style: { marginLeft: '-4xp' } },
|
|
137
|
+
React.createElement(LoadingIndicator, { size: Size.Small, color: COLORS.neutral_600 }))),
|
|
138
|
+
React.createElement("div", { className: 'dropdown-arrow' }, isOpen && !readOnly && !disabled ? React.createElement(SystemIcons.ArrowDropUp, { size: "24px", className: size ? size : '' }) : React.createElement(SystemIcons.ArrowDropDown, { size: "24px", className: size ? size : '' }))));
|
|
139
|
+
};
|
|
140
|
+
return (React.createElement(React.Fragment, null,
|
|
141
|
+
React.createElement(DropdownContainer, { ref: containerRef, role: "combobox", "aria-multiselectable": true, "aria-controls": "".concat(id, "_dropdowncontent"), "aria-activedescendant": activeDescendant, "aria-expanded": isOpen, disabled: disabled, isButton: false, readOnly: readOnly, className: size ? size : '', margin: margin },
|
|
142
|
+
renderInput(),
|
|
143
|
+
!readOnly && !disabled && (React.createElement(DropdownContent, { containerRef: containerRef, isOpen: isOpen && !loading, messageOnNoResults: messageOnNoResults !== null && messageOnNoResults !== void 0 ? messageOnNoResults : '', selectedValues: selectedValues, setSelectedValues: setSelectedValues, size: size !== null && size !== void 0 ? size : Size.Small, onActiveDescendantChanged: function (e) { return setActiveDescendant(e); }, focused: focused, ariaRolesType: "input", setFocused: setFocused, outline: false, customizationProps: {
|
|
144
|
+
itemsType: 'normal',
|
|
145
|
+
scrollable: scrollable,
|
|
146
|
+
multiSelect: false,
|
|
147
|
+
action: function () { },
|
|
148
|
+
onValueUpdate: function (values) {
|
|
149
|
+
setRestartFilter(true);
|
|
150
|
+
setInit(false);
|
|
151
|
+
},
|
|
152
|
+
items: list,
|
|
153
|
+
}, filter: !disableFiltering && !restartFilter ? input || '' : '', setIsOpen: setIsOpen, isButton: false, id: "".concat(id, "_dropdowncontent") }))),
|
|
154
|
+
activeValidationMessage && (React.createElement(ErrorMessage, { className: size || '' },
|
|
155
|
+
React.createElement(SystemIcons.TechnicalWarning, { color: COLORS.critical_400 }),
|
|
156
|
+
React.createElement("span", null, activeValidationMessage))),
|
|
157
|
+
autofilledMessage && (React.createElement(AutofilledMessage, { className: size || '' },
|
|
158
|
+
React.createElement(SystemIcons.Information, { color: COLORS.neutral_600 }),
|
|
159
|
+
React.createElement("span", null, autofilledMessage)))));
|
|
160
|
+
});
|
|
161
|
+
export default DropdownFilter;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { default as DropdownContent } from './DropdownContent';
|
|
2
|
+
export * from './DropdownContent';
|
|
3
|
+
export { default as DropdownButton } from './DropdownButton';
|
|
4
|
+
export * from './DropdownButton';
|
|
5
|
+
export { default as DropdownFilter } from './DropdownFilter';
|
|
6
|
+
export * from './DropdownFilter';
|
|
7
|
+
export { default as BasicDropdown } from './BasicDropdown';
|
|
8
|
+
export * from './BasicDropdown';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import styled from 'styled-components';
|
|
7
|
+
import { HyperLink } from '../../HyperLink';
|
|
8
|
+
import { BREAKPOINTS, COLORS } from '../../styles';
|
|
9
|
+
import { ComponentTextStyle, ComponentXSStyling } from '../../styles/typography';
|
|
10
|
+
var FooterLinkSection = styled.section(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n min-height: 64px;\n color: white;\n display: flex;\n flex-direction: column;\n\n ", " {\n flex-direction: row;\n }\n"], ["\n min-height: 64px;\n color: white;\n display: flex;\n flex-direction: column;\n\n ", " {\n flex-direction: row;\n }\n"])), BREAKPOINTS.MEDIUM);
|
|
11
|
+
var FooterLinks = styled.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n margin: 0 auto;\n\n ", " {\n flex-direction: row;\n margin: auto auto auto 0;\n }\n\n a {\n ", "\n &:not(:first-child) {\n margin: 16px 0 0 0;\n ", " {\n margin: 0 0 0 16px;\n }\n }\n }\n"], ["\n display: flex;\n flex-direction: column;\n margin: 0 auto;\n\n ", " {\n flex-direction: row;\n margin: auto auto auto 0;\n }\n\n a {\n ", "\n &:not(:first-child) {\n margin: 16px 0 0 0;\n ", " {\n margin: 0 0 0 16px;\n }\n }\n }\n"])), BREAKPOINTS.MEDIUM, ComponentXSStyling(ComponentTextStyle.Bold, null), BREAKPOINTS.MEDIUM);
|
|
12
|
+
var Copyright = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n ", "\n margin: 16px auto 0 auto;\n\n ", " {\n margin: auto 0 auto auto;\n }\n"], ["\n ", "\n margin: 16px auto 0 auto;\n\n ", " {\n margin: auto 0 auto auto;\n }\n"])), ComponentXSStyling(ComponentTextStyle.Regular, COLORS.white), BREAKPOINTS.MEDIUM);
|
|
13
|
+
var FooterBottomLinks = function (_a) {
|
|
14
|
+
var bottomLinks = _a.bottomLinks, copyrightText = _a.copyrightText;
|
|
15
|
+
return (React.createElement(FooterLinkSection, null,
|
|
16
|
+
React.createElement(FooterLinks, null, bottomLinks === null || bottomLinks === void 0 ? void 0 : bottomLinks.map(function (bl, i) { return (React.createElement(HyperLink, { id: "FooterLink_".concat(Math.floor(Math.random() * 999999999999)), key: i, href: bl.to, variant: "inverted" }, bl.label)); })),
|
|
17
|
+
React.createElement(Copyright, null, copyrightText)));
|
|
18
|
+
};
|
|
19
|
+
export default FooterBottomLinks;
|
|
20
|
+
var templateObject_1, templateObject_2, templateObject_3;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import styled from 'styled-components';
|
|
7
|
+
import { COLORS, ComponentTextStyle, invertedFocusStyles } from '../../styles';
|
|
8
|
+
import { SystemIcons } from '../../icons';
|
|
9
|
+
import { ComponentMStyling, ComponentSStyling } from '../../styles';
|
|
10
|
+
import { HyperLink } from '../../HyperLink';
|
|
11
|
+
import { defaultOnMouseDownHandler } from '../../common';
|
|
12
|
+
var Wrapper = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n border-top: 1px solid ", ";\n\n &:last-child {\n border-bottom: 1px solid ", ";\n }\n"], ["\n width: 100%;\n border-top: 1px solid ", ";\n\n &:last-child {\n border-bottom: 1px solid ", ";\n }\n"])), COLORS.neutral_100, COLORS.neutral_100);
|
|
13
|
+
var DropdownLinkBlock = styled.button(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n ", "\n\n display: ", ";\n justify-content: space-between;\n width: 100%;\n height: 48px;\n background-color: transparent;\n border: none;\n padding: 0 16px;\n\n &:hover,\n .open {\n background-color: ", ";\n color: ", ";\n }\n\n &:hover {\n cursor: pointer;\n }\n\n &:active {\n background-color: ", ";\n color: ", ";\n }\n\n &:focus {\n ", "\n }\n\n h3 {\n margin: auto 0;\n ", "\n }\n\n .open {\n h3 {\n background-color: ", ";\n color: ", ";\n }\n }\n\n svg {\n margin: auto 0;\n }\n"], ["\n ", "\n\n display: ", ";\n justify-content: space-between;\n width: 100%;\n height: 48px;\n background-color: transparent;\n border: none;\n padding: 0 16px;\n\n &:hover,\n .open {\n background-color: ", ";\n color: ", ";\n }\n\n &:hover {\n cursor: pointer;\n }\n\n &:active {\n background-color: ", ";\n color: ", ";\n }\n\n &:focus {\n ", "\n }\n\n h3 {\n margin: auto 0;\n ", "\n }\n\n .open {\n h3 {\n background-color: ", ";\n color: ", ";\n }\n }\n\n svg {\n margin: auto 0;\n }\n"])), ComponentSStyling(ComponentTextStyle.Bold, COLORS.white), function (props) { return (props.width > 768 ? 'none' : 'flex'); }, COLORS.neutral_20, COLORS.primary_700, COLORS.primary_100, COLORS.primary_800, invertedFocusStyles, ComponentMStyling(ComponentTextStyle.Regular, 'inherit'), COLORS.neutral_20, COLORS.neutral_800);
|
|
14
|
+
var LinkBlock = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: none;\n flex-direction: column;\n font-weight: normal;\n width: 100%;\n\n &.show {\n display: flex;\n }\n\n a {\n text-decoration: none;\n\n ", "\n \n display: flex;\n align-items: center;\n \n padding: 0 16px;\n height: 48px;\n\n &:hover {\n background-color: ", ";\n color: ", ";\n cursor: pointer;\n }\n\n &:focus {\n ", "\n }\n\n &:active {\n background-color: ", ";\n color: ", ";\n }\n }\n"], ["\n display: none;\n flex-direction: column;\n font-weight: normal;\n width: 100%;\n\n &.show {\n display: flex;\n }\n\n a {\n text-decoration: none;\n\n ", "\n \n display: flex;\n align-items: center;\n \n padding: 0 16px;\n height: 48px;\n\n &:hover {\n background-color: ", ";\n color: ", ";\n cursor: pointer;\n }\n\n &:focus {\n ", "\n }\n\n &:active {\n background-color: ", ";\n color: ", ";\n }\n }\n"])), ComponentSStyling(ComponentTextStyle.Bold, COLORS.white), COLORS.neutral_20, COLORS.primary_700, invertedFocusStyles, COLORS.primary_100, COLORS.primary_800);
|
|
15
|
+
var FooterDropdownLinks = function (_a) {
|
|
16
|
+
var navSection = _a.navSection, width = _a.width;
|
|
17
|
+
var _b = React.useState(false), dropdownActive = _b[0], setDropdownActive = _b[1];
|
|
18
|
+
return (React.createElement(Wrapper, null,
|
|
19
|
+
React.createElement(DropdownLinkBlock, { width: width, className: dropdownActive ? 'open' : '', onMouseDown: defaultOnMouseDownHandler, onClick: function () { return setDropdownActive(!dropdownActive); } },
|
|
20
|
+
React.createElement("h3", null, navSection.header),
|
|
21
|
+
dropdownActive ? React.createElement(SystemIcons.ChevronUp, { size: "24px" }) : React.createElement(SystemIcons.ChevronDown, { size: "24px" })),
|
|
22
|
+
React.createElement(LinkBlock, { width: width, className: dropdownActive ? 'show' : '' }, navSection.links.map(function (item, index) { return (React.createElement(HyperLink, { key: index, id: "dropdownlink_".concat(Math.floor(Math.random() * 999999999999)), variant: 'inverted', href: item.to, target: item.target || '_blank', rel: "noreferrer noopener" }, item.label)); }))));
|
|
23
|
+
};
|
|
24
|
+
export default FooterDropdownLinks;
|
|
25
|
+
var templateObject_1, templateObject_2, templateObject_3;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import styled from 'styled-components';
|
|
7
|
+
import { BREAKPOINTS, COLORS, ComponentTextStyle } from '../../styles';
|
|
8
|
+
import FooterDropdownLinks from './FooterDropdownLinks';
|
|
9
|
+
import { ComponentLStyling, ComponentSStyling } from '../../styles/typography';
|
|
10
|
+
import { HyperLink } from '../../HyperLink';
|
|
11
|
+
import { hasWindow } from '../../utils/utils';
|
|
12
|
+
var NavSection = styled.section(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n flex-flow: flex-start;\n color: white;\n margin-bottom: 12px;\n"], ["\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n flex-flow: flex-start;\n color: white;\n margin-bottom: 12px;\n"])));
|
|
13
|
+
var LinkBlock = styled.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n display: ", ";\n flex-direction: column;\n font-weight: normal;\n width: 100%;\n\n ", " {\n padding: 0 24px 24px 0;\n width: calc(50% - 24px);\n }\n\n ", " {\n width: calc(33% - 24px);\n }\n ", " {\n padding: 0 32px 32px 0;\n width: calc(33% - 32px);\n }\n\n h3 {\n ", "\n }\n\n a {\n padding: 8px 0px;\n ", "\n }\n"], ["\n display: ", ";\n flex-direction: column;\n font-weight: normal;\n width: 100%;\n\n ", " {\n padding: 0 24px 24px 0;\n width: calc(50% - 24px);\n }\n\n ", " {\n width: calc(33% - 24px);\n }\n ", " {\n padding: 0 32px 32px 0;\n width: calc(33% - 32px);\n }\n\n h3 {\n ", "\n }\n\n a {\n padding: 8px 0px;\n ", "\n }\n"])), function (props) { return (props.width <= 768 ? 'none' : 'flex'); }, BREAKPOINTS.MEDIUM, BREAKPOINTS.LARGE, BREAKPOINTS.LARGE, ComponentLStyling(ComponentTextStyle.Regular, 'inherit'), ComponentSStyling(ComponentTextStyle.Bold, COLORS.white));
|
|
14
|
+
var FooterNavSection = function (_a) {
|
|
15
|
+
var _b;
|
|
16
|
+
var navOptions = _a.navOptions;
|
|
17
|
+
var _c = React.useState(hasWindow() ? window.innerWidth : -1), width = _c[0], setWidth = _c[1];
|
|
18
|
+
React.useEffect(function () {
|
|
19
|
+
function handleResize() {
|
|
20
|
+
setWidth(window.innerWidth);
|
|
21
|
+
}
|
|
22
|
+
window.addEventListener('resize', handleResize);
|
|
23
|
+
return function () { return window.removeEventListener('resize', handleResize); };
|
|
24
|
+
}, []);
|
|
25
|
+
return (React.createElement(NavSection, null, (_b = navOptions.sections) === null || _b === void 0 ? void 0 : _b.map(function (no, index) {
|
|
26
|
+
return width > 768 ? (React.createElement(LinkBlock, { key: "LinkBlock_".concat(index), width: width },
|
|
27
|
+
React.createElement("h3", null, no.header),
|
|
28
|
+
no.links.map(function (link, index) { return (React.createElement(HyperLink, { key: index, id: "dropdownlink_".concat(Math.floor(Math.random() * 999999999999)), variant: 'inverted', href: link.to, target: link.target || '_blank', rel: "noreferrer noopener" }, link.label)); }))) : (React.createElement(FooterDropdownLinks, { "data-testid": 'footerDropLinks', key: "LinkBlockDropdown_".concat(index), navSection: no, width: width }));
|
|
29
|
+
})));
|
|
30
|
+
};
|
|
31
|
+
export default FooterNavSection;
|
|
32
|
+
var templateObject_1, templateObject_2;
|