@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,836 @@
|
|
|
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 React from 'react';
|
|
6
|
+
import styled from 'styled-components';
|
|
7
|
+
import { SystemIcons, Popover, COLORS, Size, Position } from '../src/index';
|
|
8
|
+
export default {
|
|
9
|
+
title: 'Components/Popover',
|
|
10
|
+
component: Popover,
|
|
11
|
+
decorators: [],
|
|
12
|
+
parameter: {},
|
|
13
|
+
};
|
|
14
|
+
var DemoContainer = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: fit-content;\n height: fit-content;\n margin: 20px 0px;\n"], ["\n width: fit-content;\n height: fit-content;\n margin: 20px 0px;\n"])));
|
|
15
|
+
var LargeDemoContainer = styled.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n width: fit-content;\n height: fit-content;\n margin: 30px 0px;\n"], ["\n width: fit-content;\n height: fit-content;\n margin: 30px 0px;\n"])));
|
|
16
|
+
var PopoverContent = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n background: ", ";\n height: 100%;\n width: 100%;\n display: block;\n align-items: center;\n"], ["\n background: ", ";\n height: 100%;\n width: 100%;\n display: block;\n align-items: center;\n"])), COLORS.neutral_200);
|
|
17
|
+
var PopoverScrollableContent = styled.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background: ", ";\n height: 500px;\n width: 100%;\n display: block;\n align-items: center;\n"], ["\n background: ", ";\n height: 500px;\n width: 100%;\n display: block;\n align-items: center;\n"])), COLORS.neutral_200);
|
|
18
|
+
var Content = styled.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n height: 100px;\n width: 100px;\n background: ", ";\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 20px;\n"], ["\n height: 100px;\n width: 100px;\n background: ", ";\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 20px;\n"])), COLORS.white);
|
|
19
|
+
var FlexContainer = styled.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n display: flex;\n height: 1000px;\n width: 2000px;\n flexDirection: column;\n align-items: center;\n background: ", ";\n"], ["\n display: flex;\n height: 1000px;\n width: 2000px;\n flexDirection: column;\n align-items: center;\n background: ", ";\n"])), COLORS.neutral_100);
|
|
20
|
+
var SmallFlexContainer = styled(FlexContainer)(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n height: 1000px;\n width: 800px;\n"], ["\n height: 1000px;\n width: 800px;\n"])));
|
|
21
|
+
var MediumFlexContainer = styled(FlexContainer)(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n width: 1070px;\n height: 1030px;\n"], ["\n width: 1070px;\n height: 1030px;\n"])));
|
|
22
|
+
var LargeFlexContainer = styled(FlexContainer)(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n height: 1200px;\n width: 1400px;\n"], ["\n height: 1200px;\n width: 1400px;\n"])));
|
|
23
|
+
var DemoContent = function () {
|
|
24
|
+
return (React.createElement(React.Fragment, null,
|
|
25
|
+
React.createElement(PopoverContent, null, "Middle container / frame")));
|
|
26
|
+
};
|
|
27
|
+
var ScrollableContent = function () {
|
|
28
|
+
return (React.createElement(React.Fragment, null,
|
|
29
|
+
React.createElement(PopoverScrollableContent, null, "Middle container / frame")));
|
|
30
|
+
};
|
|
31
|
+
export var SmallPopoverDemo = function () { return (React.createElement(SmallFlexContainer, { style: { width: '800px' } },
|
|
32
|
+
React.createElement(DemoContainer, null,
|
|
33
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
34
|
+
text: 'Sample text',
|
|
35
|
+
note: 'Test note'
|
|
36
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
37
|
+
textButton: {
|
|
38
|
+
label: 'View more',
|
|
39
|
+
action: function () { console.log('123 loges'); },
|
|
40
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
41
|
+
},
|
|
42
|
+
iconButtons: [
|
|
43
|
+
{
|
|
44
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
45
|
+
action: function () { console.log('star outlined clicked'); }
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
49
|
+
action: function () { console.log('share icon clicked'); }
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}, position: Position.Bottom },
|
|
53
|
+
React.createElement(Content, null, "pops bottom"))),
|
|
54
|
+
React.createElement(DemoContainer, null,
|
|
55
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
56
|
+
text: 'Sample text',
|
|
57
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
58
|
+
iconButtons: [
|
|
59
|
+
{
|
|
60
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
61
|
+
action: function () { console.log('star outlined clicked'); }
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
65
|
+
action: function () { console.log('share icon clicked'); }
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
}, position: Position.Left },
|
|
69
|
+
React.createElement(Content, null, "pops left"))),
|
|
70
|
+
React.createElement(DemoContainer, null,
|
|
71
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
72
|
+
text: 'Sample text'
|
|
73
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
74
|
+
textButton: {
|
|
75
|
+
label: 'View more',
|
|
76
|
+
action: function () { console.log('123 loges'); },
|
|
77
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
78
|
+
}
|
|
79
|
+
}, position: Position.Right },
|
|
80
|
+
React.createElement(Content, null, "pops right"))),
|
|
81
|
+
React.createElement(DemoContainer, null,
|
|
82
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
83
|
+
text: 'Sample text',
|
|
84
|
+
note: 'Test note',
|
|
85
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
86
|
+
textButton: {
|
|
87
|
+
label: 'View more',
|
|
88
|
+
action: function () { console.log('123 loges'); },
|
|
89
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
90
|
+
},
|
|
91
|
+
iconButtons: [
|
|
92
|
+
{
|
|
93
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
94
|
+
action: function () { console.log('star outlined clicked'); }
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
98
|
+
action: function () { console.log('share icon clicked'); }
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
}, position: Position.Top },
|
|
102
|
+
React.createElement(Content, null, "pops top"))),
|
|
103
|
+
React.createElement(DemoContainer, null,
|
|
104
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, mainContent: DemoContent(), bottomSectionProps: {
|
|
105
|
+
textButton: {
|
|
106
|
+
label: 'View more',
|
|
107
|
+
action: function () { console.log('123 loges'); },
|
|
108
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
109
|
+
},
|
|
110
|
+
iconButtons: [
|
|
111
|
+
{
|
|
112
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
113
|
+
action: function () { console.log('star outlined clicked'); }
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
117
|
+
action: function () { console.log('share icon clicked'); }
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
}, position: Position.Right },
|
|
121
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
122
|
+
React.createElement("div", null, "pops right"),
|
|
123
|
+
" ",
|
|
124
|
+
React.createElement("div", null, " with no"),
|
|
125
|
+
" ",
|
|
126
|
+
React.createElement("div", null, "top")))),
|
|
127
|
+
React.createElement(DemoContainer, null,
|
|
128
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
129
|
+
text: 'Sample text',
|
|
130
|
+
note: 'Test note'
|
|
131
|
+
}, mainContent: DemoContent(), position: Position.Top },
|
|
132
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
133
|
+
React.createElement("div", null, "pops top"),
|
|
134
|
+
" ",
|
|
135
|
+
React.createElement("div", null, "with no"),
|
|
136
|
+
" ",
|
|
137
|
+
React.createElement("div", null, "bottom")))),
|
|
138
|
+
React.createElement(DemoContainer, null,
|
|
139
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, mainContent: DemoContent(), position: Position.Left },
|
|
140
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
141
|
+
React.createElement("div", null, "pops left"),
|
|
142
|
+
" ",
|
|
143
|
+
React.createElement("div", null, "with only"),
|
|
144
|
+
" ",
|
|
145
|
+
React.createElement("div", null, "middle")))))); };
|
|
146
|
+
export var SmallPopoverScrollableDemo = function () { return (React.createElement(SmallFlexContainer, null,
|
|
147
|
+
React.createElement(DemoContainer, null,
|
|
148
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
149
|
+
text: 'Sample text',
|
|
150
|
+
note: 'Test note'
|
|
151
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
152
|
+
textButton: {
|
|
153
|
+
label: 'View more',
|
|
154
|
+
action: function () { console.log('123 loges'); },
|
|
155
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
156
|
+
},
|
|
157
|
+
iconButtons: [
|
|
158
|
+
{
|
|
159
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
160
|
+
action: function () { console.log('star outlined clicked'); }
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
164
|
+
action: function () { console.log('share icon clicked'); }
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
}, position: Position.Bottom },
|
|
168
|
+
React.createElement(Content, null, "pops bottom"))),
|
|
169
|
+
React.createElement(DemoContainer, null,
|
|
170
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
171
|
+
text: 'Sample text',
|
|
172
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
173
|
+
iconButtons: [
|
|
174
|
+
{
|
|
175
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
176
|
+
action: function () { console.log('star outlined clicked'); }
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
180
|
+
action: function () { console.log('share icon clicked'); }
|
|
181
|
+
}
|
|
182
|
+
]
|
|
183
|
+
}, position: Position.Left },
|
|
184
|
+
React.createElement(Content, null, "pops left"))),
|
|
185
|
+
React.createElement(DemoContainer, null,
|
|
186
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
187
|
+
text: 'Sample text',
|
|
188
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
189
|
+
textButton: {
|
|
190
|
+
label: 'View more',
|
|
191
|
+
action: function () { console.log('123 loges'); },
|
|
192
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
193
|
+
}
|
|
194
|
+
}, position: Position.Right },
|
|
195
|
+
React.createElement(Content, null, "pops right"))),
|
|
196
|
+
React.createElement(DemoContainer, null,
|
|
197
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
198
|
+
text: 'Sample text',
|
|
199
|
+
note: 'Test note',
|
|
200
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
201
|
+
textButton: {
|
|
202
|
+
label: 'View more',
|
|
203
|
+
action: function () { console.log('123 loges'); },
|
|
204
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
205
|
+
},
|
|
206
|
+
iconButtons: [
|
|
207
|
+
{
|
|
208
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
209
|
+
action: function () { console.log('star outlined clicked'); }
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
213
|
+
action: function () { console.log('share icon clicked'); }
|
|
214
|
+
}
|
|
215
|
+
]
|
|
216
|
+
}, position: Position.Top },
|
|
217
|
+
React.createElement(Content, null, "pops top"))),
|
|
218
|
+
React.createElement(DemoContainer, null,
|
|
219
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
220
|
+
textButton: {
|
|
221
|
+
label: 'View more',
|
|
222
|
+
action: function () { console.log('123 loges'); },
|
|
223
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
224
|
+
},
|
|
225
|
+
iconButtons: [
|
|
226
|
+
{
|
|
227
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
228
|
+
action: function () { console.log('star outlined clicked'); }
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
232
|
+
action: function () { console.log('share icon clicked'); }
|
|
233
|
+
}
|
|
234
|
+
]
|
|
235
|
+
}, position: Position.Right },
|
|
236
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
237
|
+
React.createElement("div", null, "pops right"),
|
|
238
|
+
" ",
|
|
239
|
+
React.createElement("div", null, " with no"),
|
|
240
|
+
" ",
|
|
241
|
+
React.createElement("div", null, "top")))),
|
|
242
|
+
React.createElement(DemoContainer, null,
|
|
243
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, topSectionProps: {
|
|
244
|
+
text: 'Sample text',
|
|
245
|
+
note: 'Test note'
|
|
246
|
+
}, mainContent: ScrollableContent(), position: Position.Top },
|
|
247
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
248
|
+
React.createElement("div", null, "pops top"),
|
|
249
|
+
" ",
|
|
250
|
+
React.createElement("div", null, "with no"),
|
|
251
|
+
" ",
|
|
252
|
+
React.createElement("div", null, "bottom")))),
|
|
253
|
+
React.createElement(DemoContainer, null,
|
|
254
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Small, mainContent: ScrollableContent(), position: Position.Left },
|
|
255
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
256
|
+
React.createElement("div", null, "pops left"),
|
|
257
|
+
" ",
|
|
258
|
+
React.createElement("div", null, "with only"),
|
|
259
|
+
" ",
|
|
260
|
+
React.createElement("div", null, "middle")))))); };
|
|
261
|
+
export var MediumPopoverDemo = function () { return (React.createElement(MediumFlexContainer, null,
|
|
262
|
+
React.createElement(DemoContainer, null,
|
|
263
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
264
|
+
text: 'Sample text',
|
|
265
|
+
note: 'Test note'
|
|
266
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
267
|
+
textButton: {
|
|
268
|
+
label: 'View more',
|
|
269
|
+
action: function () { console.log('123 loges'); },
|
|
270
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
271
|
+
},
|
|
272
|
+
iconButtons: [
|
|
273
|
+
{
|
|
274
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
275
|
+
action: function () { console.log('star outlined clicked'); }
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
279
|
+
action: function () { console.log('share icon clicked'); }
|
|
280
|
+
}
|
|
281
|
+
]
|
|
282
|
+
}, position: Position.Bottom },
|
|
283
|
+
React.createElement(Content, null, "pops bottom"))),
|
|
284
|
+
React.createElement(DemoContainer, null,
|
|
285
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
286
|
+
text: 'Sample text',
|
|
287
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
288
|
+
iconButtons: [
|
|
289
|
+
{
|
|
290
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
291
|
+
action: function () { console.log('star outlined clicked'); }
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
295
|
+
action: function () { console.log('share icon clicked'); }
|
|
296
|
+
}
|
|
297
|
+
]
|
|
298
|
+
}, position: Position.Left },
|
|
299
|
+
React.createElement(Content, null, "pops left"))),
|
|
300
|
+
React.createElement(DemoContainer, null,
|
|
301
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
302
|
+
text: 'Sample text',
|
|
303
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
304
|
+
textButton: {
|
|
305
|
+
label: 'View more',
|
|
306
|
+
action: function () { console.log('123 loges'); },
|
|
307
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
308
|
+
}
|
|
309
|
+
}, position: Position.Right },
|
|
310
|
+
React.createElement(Content, null, "pops right"))),
|
|
311
|
+
React.createElement(DemoContainer, null,
|
|
312
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
313
|
+
text: 'Sample text',
|
|
314
|
+
note: 'Test note',
|
|
315
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
316
|
+
textButton: {
|
|
317
|
+
label: 'View more',
|
|
318
|
+
action: function () { console.log('123 loges'); },
|
|
319
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
320
|
+
},
|
|
321
|
+
iconButtons: [
|
|
322
|
+
{
|
|
323
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
324
|
+
action: function () { console.log('star outlined clicked'); }
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
328
|
+
action: function () { console.log('share icon clicked'); }
|
|
329
|
+
}
|
|
330
|
+
]
|
|
331
|
+
}, position: Position.Top },
|
|
332
|
+
React.createElement(Content, null, "pops top"))),
|
|
333
|
+
React.createElement(DemoContainer, null,
|
|
334
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, mainContent: DemoContent(), bottomSectionProps: {
|
|
335
|
+
textButton: {
|
|
336
|
+
label: 'View more',
|
|
337
|
+
action: function () { console.log('123 loges'); },
|
|
338
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
339
|
+
},
|
|
340
|
+
iconButtons: [
|
|
341
|
+
{
|
|
342
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
343
|
+
action: function () { console.log('star outlined clicked'); }
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
347
|
+
action: function () { console.log('share icon clicked'); }
|
|
348
|
+
}
|
|
349
|
+
]
|
|
350
|
+
}, position: Position.Right },
|
|
351
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
352
|
+
React.createElement("div", null, "pops right"),
|
|
353
|
+
" ",
|
|
354
|
+
React.createElement("div", null, "with no"),
|
|
355
|
+
" ",
|
|
356
|
+
React.createElement("div", null, "top")))),
|
|
357
|
+
React.createElement(DemoContainer, null,
|
|
358
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
359
|
+
text: 'Sample text',
|
|
360
|
+
note: 'Test note'
|
|
361
|
+
}, mainContent: DemoContent(), position: Position.Top },
|
|
362
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
363
|
+
React.createElement("div", null, "pops top"),
|
|
364
|
+
" ",
|
|
365
|
+
React.createElement("div", null, "with no"),
|
|
366
|
+
" ",
|
|
367
|
+
React.createElement("div", null, "bottom")))),
|
|
368
|
+
React.createElement(DemoContainer, null,
|
|
369
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, mainContent: DemoContent(), position: Position.Left },
|
|
370
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
371
|
+
React.createElement("div", null, "pops left"),
|
|
372
|
+
" ",
|
|
373
|
+
React.createElement("div", null, "with only"),
|
|
374
|
+
" ",
|
|
375
|
+
React.createElement("div", null, "middle")))))); };
|
|
376
|
+
export var MediumPopoverScrollableDemo = function () { return (React.createElement(MediumFlexContainer, null,
|
|
377
|
+
React.createElement(DemoContainer, null,
|
|
378
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
379
|
+
text: 'Sample text',
|
|
380
|
+
note: 'Test note'
|
|
381
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
382
|
+
textButton: {
|
|
383
|
+
label: 'View more',
|
|
384
|
+
action: function () { console.log('123 loges'); },
|
|
385
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
386
|
+
},
|
|
387
|
+
iconButtons: [
|
|
388
|
+
{
|
|
389
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
390
|
+
action: function () { console.log('star outlined clicked'); }
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
394
|
+
action: function () { console.log('share icon clicked'); }
|
|
395
|
+
}
|
|
396
|
+
]
|
|
397
|
+
}, position: Position.Bottom },
|
|
398
|
+
React.createElement(Content, null, "pops bottom"))),
|
|
399
|
+
React.createElement(DemoContainer, null,
|
|
400
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
401
|
+
text: 'Sample text',
|
|
402
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
403
|
+
iconButtons: [
|
|
404
|
+
{
|
|
405
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
406
|
+
action: function () { console.log('star outlined clicked'); }
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
410
|
+
action: function () { console.log('share icon clicked'); }
|
|
411
|
+
}
|
|
412
|
+
]
|
|
413
|
+
}, position: Position.Left },
|
|
414
|
+
React.createElement(Content, null, "pops left"))),
|
|
415
|
+
React.createElement(DemoContainer, null,
|
|
416
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
417
|
+
text: 'Sample text',
|
|
418
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
419
|
+
textButton: {
|
|
420
|
+
label: 'View more',
|
|
421
|
+
action: function () { console.log('123 loges'); },
|
|
422
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
423
|
+
}
|
|
424
|
+
}, position: Position.Right },
|
|
425
|
+
React.createElement(Content, null, "pops right"))),
|
|
426
|
+
React.createElement(DemoContainer, null,
|
|
427
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
428
|
+
text: 'Sample text',
|
|
429
|
+
note: 'Test note',
|
|
430
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
431
|
+
textButton: {
|
|
432
|
+
label: 'View more',
|
|
433
|
+
action: function () { console.log('123 loges'); },
|
|
434
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
435
|
+
},
|
|
436
|
+
iconButtons: [
|
|
437
|
+
{
|
|
438
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
439
|
+
action: function () { console.log('star outlined clicked'); }
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
443
|
+
action: function () { console.log('share icon clicked'); }
|
|
444
|
+
}
|
|
445
|
+
]
|
|
446
|
+
}, position: Position.Top },
|
|
447
|
+
React.createElement(Content, null, "pops top"))),
|
|
448
|
+
React.createElement(DemoContainer, null,
|
|
449
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
450
|
+
textButton: {
|
|
451
|
+
label: 'View more',
|
|
452
|
+
action: function () { console.log('123 loges'); },
|
|
453
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
454
|
+
},
|
|
455
|
+
iconButtons: [
|
|
456
|
+
{
|
|
457
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
458
|
+
action: function () { console.log('star outlined clicked'); }
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
462
|
+
action: function () { console.log('share icon clicked'); }
|
|
463
|
+
}
|
|
464
|
+
]
|
|
465
|
+
}, position: Position.Right },
|
|
466
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
467
|
+
React.createElement("div", null, "pops right"),
|
|
468
|
+
" ",
|
|
469
|
+
React.createElement("div", null, "with no"),
|
|
470
|
+
" ",
|
|
471
|
+
React.createElement("div", null, "top")))),
|
|
472
|
+
React.createElement(DemoContainer, null,
|
|
473
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, topSectionProps: {
|
|
474
|
+
text: 'Sample text',
|
|
475
|
+
note: 'Test note'
|
|
476
|
+
}, mainContent: ScrollableContent(), position: Position.Top },
|
|
477
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
478
|
+
React.createElement("div", null, "pops top"),
|
|
479
|
+
" ",
|
|
480
|
+
React.createElement("div", null, "with no"),
|
|
481
|
+
" ",
|
|
482
|
+
React.createElement("div", null, "bottom")))),
|
|
483
|
+
React.createElement(DemoContainer, null,
|
|
484
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Medium, mainContent: ScrollableContent(), position: Position.Left },
|
|
485
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
486
|
+
React.createElement("div", null, "pops left"),
|
|
487
|
+
" ",
|
|
488
|
+
React.createElement("div", null, "with only"),
|
|
489
|
+
" ",
|
|
490
|
+
React.createElement("div", null, "middle")))))); };
|
|
491
|
+
export var LargePopoverDemo = function () { return (React.createElement(LargeFlexContainer, null,
|
|
492
|
+
React.createElement(LargeDemoContainer, null,
|
|
493
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
494
|
+
text: 'Sample text',
|
|
495
|
+
note: 'Test note'
|
|
496
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
497
|
+
textButton: {
|
|
498
|
+
label: 'View more',
|
|
499
|
+
action: function () { console.log('123 loges'); },
|
|
500
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
501
|
+
},
|
|
502
|
+
iconButtons: [
|
|
503
|
+
{
|
|
504
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
505
|
+
action: function () { console.log('star outlined clicked'); }
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
509
|
+
action: function () { console.log('share icon clicked'); }
|
|
510
|
+
}
|
|
511
|
+
]
|
|
512
|
+
}, position: Position.Bottom },
|
|
513
|
+
React.createElement(Content, null, "pops bottom"))),
|
|
514
|
+
React.createElement(LargeDemoContainer, null,
|
|
515
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
516
|
+
text: 'Sample text',
|
|
517
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
518
|
+
iconButtons: [
|
|
519
|
+
{
|
|
520
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
521
|
+
action: function () { console.log('star outlined clicked'); }
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
525
|
+
action: function () { console.log('share icon clicked'); }
|
|
526
|
+
}
|
|
527
|
+
]
|
|
528
|
+
}, position: Position.Left },
|
|
529
|
+
React.createElement(Content, null, "pops left"))),
|
|
530
|
+
React.createElement(LargeDemoContainer, null,
|
|
531
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
532
|
+
text: 'Sample text',
|
|
533
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
534
|
+
textButton: {
|
|
535
|
+
label: 'View more',
|
|
536
|
+
action: function () { console.log('123 loges'); },
|
|
537
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
538
|
+
}
|
|
539
|
+
}, position: Position.Right },
|
|
540
|
+
React.createElement(Content, null, "pops right"))),
|
|
541
|
+
React.createElement(LargeDemoContainer, null,
|
|
542
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
543
|
+
text: 'Sample text',
|
|
544
|
+
note: 'Test note',
|
|
545
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
546
|
+
textButton: {
|
|
547
|
+
label: 'View more',
|
|
548
|
+
action: function () { console.log('123 loges'); },
|
|
549
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
550
|
+
},
|
|
551
|
+
iconButtons: [
|
|
552
|
+
{
|
|
553
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
554
|
+
action: function () { console.log('star outlined clicked'); }
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
558
|
+
action: function () { console.log('share icon clicked'); }
|
|
559
|
+
}
|
|
560
|
+
]
|
|
561
|
+
}, position: Position.Top },
|
|
562
|
+
React.createElement(Content, null, "pops top"))),
|
|
563
|
+
React.createElement(LargeDemoContainer, null,
|
|
564
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, mainContent: DemoContent(), bottomSectionProps: {
|
|
565
|
+
textButton: {
|
|
566
|
+
label: 'View more',
|
|
567
|
+
action: function () { console.log('123 loges'); },
|
|
568
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
569
|
+
},
|
|
570
|
+
iconButtons: [
|
|
571
|
+
{
|
|
572
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
573
|
+
action: function () { console.log('star outlined clicked'); }
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
577
|
+
action: function () { console.log('share icon clicked'); }
|
|
578
|
+
}
|
|
579
|
+
]
|
|
580
|
+
}, position: Position.Right },
|
|
581
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
582
|
+
React.createElement("div", null, "pops right"),
|
|
583
|
+
" ",
|
|
584
|
+
React.createElement("div", null, "with no"),
|
|
585
|
+
" ",
|
|
586
|
+
React.createElement("div", null, "top")))),
|
|
587
|
+
React.createElement(LargeDemoContainer, null,
|
|
588
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
589
|
+
text: 'Sample text',
|
|
590
|
+
note: 'Test note'
|
|
591
|
+
}, mainContent: DemoContent(), position: Position.Top },
|
|
592
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
593
|
+
React.createElement("div", null, "pops top"),
|
|
594
|
+
" ",
|
|
595
|
+
React.createElement("div", null, "with no"),
|
|
596
|
+
" ",
|
|
597
|
+
React.createElement("div", null, "bottom")))),
|
|
598
|
+
React.createElement(LargeDemoContainer, null,
|
|
599
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, mainContent: DemoContent(), position: Position.Left },
|
|
600
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
601
|
+
React.createElement("div", null, "pops left"),
|
|
602
|
+
" ",
|
|
603
|
+
React.createElement("div", null, "with only"),
|
|
604
|
+
" ",
|
|
605
|
+
React.createElement("div", null, "middle")))))); };
|
|
606
|
+
export var LargePopoverScrollableDemo = function () { return (React.createElement(LargeFlexContainer, null,
|
|
607
|
+
React.createElement(LargeDemoContainer, null,
|
|
608
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
609
|
+
text: 'Sample text',
|
|
610
|
+
note: 'Test note'
|
|
611
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
612
|
+
textButton: {
|
|
613
|
+
label: 'View more',
|
|
614
|
+
action: function () { console.log('123 loges'); },
|
|
615
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
616
|
+
},
|
|
617
|
+
iconButtons: [
|
|
618
|
+
{
|
|
619
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
620
|
+
action: function () { console.log('star outlined clicked'); }
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
624
|
+
action: function () { console.log('share icon clicked'); }
|
|
625
|
+
}
|
|
626
|
+
]
|
|
627
|
+
}, position: Position.Bottom },
|
|
628
|
+
React.createElement(Content, null, "pops bottom"))),
|
|
629
|
+
React.createElement(LargeDemoContainer, null,
|
|
630
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
631
|
+
text: 'Sample text',
|
|
632
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
633
|
+
iconButtons: [
|
|
634
|
+
{
|
|
635
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
636
|
+
action: function () { console.log('star outlined clicked'); }
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
640
|
+
action: function () { console.log('share icon clicked'); }
|
|
641
|
+
}
|
|
642
|
+
]
|
|
643
|
+
}, position: Position.Left },
|
|
644
|
+
React.createElement(Content, null, "pops left"))),
|
|
645
|
+
React.createElement(LargeDemoContainer, null,
|
|
646
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
647
|
+
text: 'Sample text',
|
|
648
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
649
|
+
textButton: {
|
|
650
|
+
label: 'View more',
|
|
651
|
+
action: function () { console.log('123 loges'); },
|
|
652
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
653
|
+
}
|
|
654
|
+
}, position: Position.Right },
|
|
655
|
+
React.createElement(Content, null, "pops right"))),
|
|
656
|
+
React.createElement(LargeDemoContainer, null,
|
|
657
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
658
|
+
text: 'Sample text',
|
|
659
|
+
note: 'Test note',
|
|
660
|
+
}, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
661
|
+
textButton: {
|
|
662
|
+
label: 'View more',
|
|
663
|
+
action: function () { console.log('123 loges'); },
|
|
664
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
665
|
+
},
|
|
666
|
+
iconButtons: [
|
|
667
|
+
{
|
|
668
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
669
|
+
action: function () { console.log('star outlined clicked'); }
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
673
|
+
action: function () { console.log('share icon clicked'); }
|
|
674
|
+
}
|
|
675
|
+
]
|
|
676
|
+
}, position: Position.Top },
|
|
677
|
+
React.createElement(Content, null, "pops top"))),
|
|
678
|
+
React.createElement(LargeDemoContainer, null,
|
|
679
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, mainContent: ScrollableContent(), bottomSectionProps: {
|
|
680
|
+
textButton: {
|
|
681
|
+
label: 'View more',
|
|
682
|
+
action: function () { console.log('123 loges'); },
|
|
683
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
684
|
+
},
|
|
685
|
+
iconButtons: [
|
|
686
|
+
{
|
|
687
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
688
|
+
action: function () { console.log('star outlined clicked'); }
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
692
|
+
action: function () { console.log('share icon clicked'); }
|
|
693
|
+
}
|
|
694
|
+
]
|
|
695
|
+
}, position: Position.Right },
|
|
696
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
697
|
+
React.createElement("div", null, "pops right"),
|
|
698
|
+
" ",
|
|
699
|
+
React.createElement("div", null, "with no"),
|
|
700
|
+
" ",
|
|
701
|
+
React.createElement("div", null, "top")))),
|
|
702
|
+
React.createElement(LargeDemoContainer, null,
|
|
703
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, topSectionProps: {
|
|
704
|
+
text: 'Sample text',
|
|
705
|
+
note: 'Test note'
|
|
706
|
+
}, mainContent: ScrollableContent(), position: Position.Top },
|
|
707
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
708
|
+
React.createElement("div", null, "pops top"),
|
|
709
|
+
" ",
|
|
710
|
+
React.createElement("div", null, "with no"),
|
|
711
|
+
" ",
|
|
712
|
+
React.createElement("div", null, "bottom")))),
|
|
713
|
+
React.createElement(LargeDemoContainer, null,
|
|
714
|
+
React.createElement(Popover, { showOnClick: false, showArrowPointer: true, size: Size.Large, mainContent: ScrollableContent(), position: Position.Left },
|
|
715
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
716
|
+
React.createElement("div", null, "pops left"),
|
|
717
|
+
" ",
|
|
718
|
+
React.createElement("div", null, "with only"),
|
|
719
|
+
" ",
|
|
720
|
+
React.createElement("div", null, "middle")))))); };
|
|
721
|
+
export var SmallPopoverWithNoArrowPointerDemo = function () { return (React.createElement(SmallFlexContainer, { style: { width: '800px' } },
|
|
722
|
+
React.createElement(DemoContainer, null,
|
|
723
|
+
React.createElement(Popover, { showOnClick: false, size: Size.Small, topSectionProps: {
|
|
724
|
+
text: 'Sample text',
|
|
725
|
+
note: 'Test note'
|
|
726
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
727
|
+
textButton: {
|
|
728
|
+
label: 'View more',
|
|
729
|
+
action: function () { console.log('123 loges'); },
|
|
730
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
731
|
+
},
|
|
732
|
+
iconButtons: [
|
|
733
|
+
{
|
|
734
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
735
|
+
action: function () { console.log('star outlined clicked'); }
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
739
|
+
action: function () { console.log('share icon clicked'); }
|
|
740
|
+
}
|
|
741
|
+
]
|
|
742
|
+
}, position: Position.Bottom },
|
|
743
|
+
React.createElement(Content, null, "pops bottom"))),
|
|
744
|
+
React.createElement(DemoContainer, null,
|
|
745
|
+
React.createElement(Popover, { showOnClick: false, size: Size.Small, topSectionProps: {
|
|
746
|
+
text: 'Sample text',
|
|
747
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
748
|
+
iconButtons: [
|
|
749
|
+
{
|
|
750
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
751
|
+
action: function () { console.log('star outlined clicked'); }
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
755
|
+
action: function () { console.log('share icon clicked'); }
|
|
756
|
+
}
|
|
757
|
+
]
|
|
758
|
+
}, position: Position.Left },
|
|
759
|
+
React.createElement(Content, null, "pops left"))),
|
|
760
|
+
React.createElement(DemoContainer, null,
|
|
761
|
+
React.createElement(Popover, { showOnClick: false, size: Size.Small, topSectionProps: {
|
|
762
|
+
text: 'Sample text',
|
|
763
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
764
|
+
textButton: {
|
|
765
|
+
label: 'View more',
|
|
766
|
+
action: function () { console.log('123 loges'); },
|
|
767
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
768
|
+
}
|
|
769
|
+
}, position: Position.Right },
|
|
770
|
+
React.createElement(Content, null, "pops right"))),
|
|
771
|
+
React.createElement(DemoContainer, null,
|
|
772
|
+
React.createElement(Popover, { showOnClick: false, size: Size.Small, topSectionProps: {
|
|
773
|
+
text: 'Sample text',
|
|
774
|
+
note: 'Test note',
|
|
775
|
+
}, mainContent: DemoContent(), bottomSectionProps: {
|
|
776
|
+
textButton: {
|
|
777
|
+
label: 'View more',
|
|
778
|
+
action: function () { console.log('123 loges'); },
|
|
779
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
780
|
+
},
|
|
781
|
+
iconButtons: [
|
|
782
|
+
{
|
|
783
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
784
|
+
action: function () { console.log('star outlined clicked'); }
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
788
|
+
action: function () { console.log('share icon clicked'); }
|
|
789
|
+
}
|
|
790
|
+
]
|
|
791
|
+
}, position: Position.Top },
|
|
792
|
+
React.createElement(Content, null, "pops top"))),
|
|
793
|
+
React.createElement(DemoContainer, null,
|
|
794
|
+
React.createElement(Popover, { showOnClick: false, size: Size.Small, mainContent: DemoContent(), bottomSectionProps: {
|
|
795
|
+
textButton: {
|
|
796
|
+
label: 'View more',
|
|
797
|
+
action: function () { console.log('123 loges'); },
|
|
798
|
+
icon: React.createElement(SystemIcons.OpenNewWindow, null)
|
|
799
|
+
},
|
|
800
|
+
iconButtons: [
|
|
801
|
+
{
|
|
802
|
+
icon: React.createElement(SystemIcons.StarOutlined, null),
|
|
803
|
+
action: function () { console.log('star outlined clicked'); }
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
icon: React.createElement(SystemIcons.Share, null),
|
|
807
|
+
action: function () { console.log('share icon clicked'); }
|
|
808
|
+
}
|
|
809
|
+
]
|
|
810
|
+
}, position: Position.Right },
|
|
811
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
812
|
+
React.createElement("div", null, "pops right"),
|
|
813
|
+
" ",
|
|
814
|
+
React.createElement("div", null, " with no"),
|
|
815
|
+
" ",
|
|
816
|
+
React.createElement("div", null, "top")))),
|
|
817
|
+
React.createElement(DemoContainer, null,
|
|
818
|
+
React.createElement(Popover, { showOnClick: false, size: Size.Small, topSectionProps: {
|
|
819
|
+
text: 'Sample text',
|
|
820
|
+
note: 'Test note'
|
|
821
|
+
}, mainContent: DemoContent(), position: Position.Top },
|
|
822
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
823
|
+
React.createElement("div", null, "pops top"),
|
|
824
|
+
" ",
|
|
825
|
+
React.createElement("div", null, "with no"),
|
|
826
|
+
" ",
|
|
827
|
+
React.createElement("div", null, "bottom")))),
|
|
828
|
+
React.createElement(DemoContainer, null,
|
|
829
|
+
React.createElement(Popover, { showOnClick: false, size: Size.Small, mainContent: DemoContent(), position: Position.Left },
|
|
830
|
+
React.createElement(Content, { style: { 'flexDirection': 'column' } },
|
|
831
|
+
React.createElement("div", null, "pops left"),
|
|
832
|
+
" ",
|
|
833
|
+
React.createElement("div", null, "with only"),
|
|
834
|
+
" ",
|
|
835
|
+
React.createElement("div", null, "middle")))))); };
|
|
836
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9;
|