@veracity/vui 0.6.2 → 0.7.0-beta.0
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/cjs/avatar/avatar.js +58 -0
- package/cjs/avatar/helpers.js +9 -0
- package/cjs/avatar/index.js +24 -0
- package/cjs/avatar/theme.js +88 -0
- package/cjs/box/box.js +45 -0
- package/cjs/box/index.js +24 -0
- package/cjs/box/theme.js +12 -0
- package/cjs/button/button.js +139 -0
- package/cjs/button/buttonIcon.js +17 -0
- package/cjs/button/buttonText.js +17 -0
- package/cjs/button/buttons.js +17 -0
- package/cjs/button/context.d.ts +4 -0
- package/cjs/button/context.js +7 -0
- package/cjs/button/index.js +28 -0
- package/cjs/button/theme.js +138 -0
- package/cjs/buttonGroup/buttonGroup.js +84 -0
- package/cjs/buttonGroup/context.d.ts +4 -0
- package/cjs/buttonGroup/context.js +7 -0
- package/cjs/buttonGroup/helpers.js +12 -0
- package/cjs/buttonGroup/index.js +25 -0
- package/cjs/card/card.js +44 -0
- package/cjs/card/index.js +24 -0
- package/cjs/card/theme.js +12 -0
- package/cjs/checkbox/checkbox.js +118 -0
- package/cjs/checkbox/checkboxGroup.js +60 -0
- package/cjs/checkbox/context.d.ts +4 -0
- package/cjs/checkbox/context.js +7 -0
- package/cjs/checkbox/index.js +27 -0
- package/cjs/checkbox/theme.js +61 -0
- package/cjs/core/index.js +23 -0
- package/cjs/core/links.js +115 -0
- package/cjs/core/media.js +63 -0
- package/cjs/core/styled.js +94 -0
- package/cjs/core/theme.js +82 -0
- package/cjs/core/vui.js +20 -0
- package/cjs/core/vuiProvider/animations.js +85 -0
- package/cjs/core/vuiProvider/fontFaces.js +28 -0
- package/cjs/core/vuiProvider/globalStyle.js +98 -0
- package/cjs/core/vuiProvider/index.js +30 -0
- package/cjs/core/vuiProvider/resetCSS.js +176 -0
- package/cjs/core/vuiProvider/vuiProvider.js +20 -0
- package/cjs/dialog/context.js +7 -0
- package/cjs/dialog/dialog.js +98 -0
- package/cjs/dialog/dialogBody.js +62 -0
- package/cjs/dialog/dialogCancelButton.js +19 -0
- package/cjs/dialog/dialogCloseButton.js +19 -0
- package/cjs/dialog/dialogFooter.js +34 -0
- package/cjs/dialog/dialogHeader.js +42 -0
- package/cjs/dialog/dialogIcon.js +21 -0
- package/cjs/dialog/dialogSubmitButton.js +17 -0
- package/cjs/dialog/dialogTitle.js +19 -0
- package/cjs/dialog/index.js +34 -0
- package/cjs/dialog/theme.js +28 -0
- package/cjs/divider/divider.js +37 -0
- package/cjs/divider/index.js +24 -0
- package/cjs/divider/theme.js +12 -0
- package/cjs/footer/context.js +7 -0
- package/cjs/footer/footer.js +53 -0
- package/cjs/footer/footerColumn.js +28 -0
- package/cjs/footer/footerContent.js +17 -0
- package/cjs/footer/footerHeading.js +17 -0
- package/cjs/footer/footerLink.js +17 -0
- package/cjs/footer/footerRow.js +15 -0
- package/cjs/footer/footerSection.js +34 -0
- package/cjs/footer/footerTrademark.js +38 -0
- package/cjs/footer/helpers.js +45 -0
- package/cjs/footer/index.js +31 -0
- package/cjs/footer/theme.js +14 -0
- package/cjs/grid/grid.js +31 -0
- package/cjs/grid/index.js +24 -0
- package/cjs/grid/theme.js +12 -0
- package/cjs/header/context.js +7 -0
- package/cjs/header/header.js +109 -0
- package/cjs/header/headerAccount.js +78 -0
- package/cjs/header/headerAccount.types.d.ts +35 -0
- package/cjs/header/headerAccountUserInfo.js +35 -0
- package/cjs/header/headerContent.js +17 -0
- package/cjs/header/headerCreateAccount.js +36 -0
- package/cjs/header/headerDivider.js +17 -0
- package/cjs/header/headerLinkItem.js +42 -0
- package/cjs/header/headerLogo.js +35 -0
- package/cjs/header/headerMainLinks.js +33 -0
- package/cjs/header/headerMobileContent.js +20 -0
- package/cjs/header/headerMobileToggle.js +22 -0
- package/cjs/header/headerNotifications.js +48 -0
- package/cjs/header/headerServices.js +45 -0
- package/cjs/header/headerServicesMessage.js +38 -0
- package/cjs/header/headerSignIn.js +31 -0
- package/cjs/header/helpers.js +49 -0
- package/cjs/header/index.js +43 -0
- package/cjs/header/loggedInHeader.js +46 -0
- package/cjs/header/loggedOutHeader.js +46 -0
- package/cjs/header/theme.js +93 -0
- package/cjs/heading/heading.js +39 -0
- package/cjs/heading/headings.js +15 -0
- package/cjs/heading/index.js +25 -0
- package/cjs/heading/theme.js +45 -0
- package/cjs/icon/helpers.js +34 -0
- package/cjs/icon/icon.js +37 -0
- package/cjs/icon/index.js +24 -0
- package/cjs/icon/theme.js +31 -0
- package/cjs/icons/cache.js +37 -0
- package/cjs/icons/consts.js +46 -0
- package/cjs/icons/index.js +24 -0
- package/cjs/image/image.js +33 -0
- package/cjs/image/index.js +24 -0
- package/cjs/image/theme.js +12 -0
- package/cjs/index.js +54 -0
- package/cjs/input/context.d.ts +4 -0
- package/cjs/input/context.js +7 -0
- package/cjs/input/helpers.js +10 -0
- package/cjs/input/index.js +26 -0
- package/cjs/input/input.js +128 -0
- package/cjs/input/inputIcon.js +20 -0
- package/cjs/input/inputInput.js +43 -0
- package/cjs/input/theme.js +76 -0
- package/cjs/link/context.d.ts +4 -0
- package/cjs/link/context.js +7 -0
- package/cjs/link/index.js +26 -0
- package/cjs/link/link.js +80 -0
- package/cjs/link/linkIcon.js +17 -0
- package/cjs/link/linkText.js +17 -0
- package/cjs/link/theme.js +72 -0
- package/cjs/list/context.d.ts +4 -0
- package/cjs/list/context.js +7 -0
- package/cjs/list/index.js +30 -0
- package/cjs/list/list.js +71 -0
- package/cjs/list/listDivider.js +17 -0
- package/cjs/list/listHeading.js +17 -0
- package/cjs/list/listIcon.js +17 -0
- package/cjs/list/listItem.js +104 -0
- package/cjs/list/listText.js +17 -0
- package/cjs/list/theme.js +89 -0
- package/cjs/menu/context.js +7 -0
- package/cjs/menu/index.js +31 -0
- package/cjs/menu/menu.js +57 -0
- package/cjs/menu/menuButton.js +18 -0
- package/cjs/menu/menuItem.js +38 -0
- package/cjs/menu/menuList.js +36 -0
- package/cjs/menu/theme.js +27 -0
- package/cjs/modal/context.js +7 -0
- package/cjs/modal/focusLock.js +51 -0
- package/cjs/modal/index.js +30 -0
- package/cjs/modal/modal.js +106 -0
- package/cjs/modal/modalBackdrop.js +25 -0
- package/cjs/modal/modalContent.js +25 -0
- package/cjs/modal/modalManager.js +31 -0
- package/cjs/modal/theme.js +14 -0
- package/cjs/notification/context.d.ts +4 -0
- package/cjs/notification/context.js +7 -0
- package/cjs/notification/index.js +29 -0
- package/cjs/notification/notification.js +54 -0
- package/cjs/notification/notificationButton.js +18 -0
- package/cjs/notification/notificationIcon.js +22 -0
- package/cjs/notification/notificationText.js +17 -0
- package/cjs/notification/notificationTitle.js +17 -0
- package/cjs/notification/theme.js +42 -0
- package/cjs/p/index.js +24 -0
- package/cjs/p/p.js +37 -0
- package/cjs/p/theme.js +35 -0
- package/cjs/pagination/context.js +7 -0
- package/cjs/pagination/helpers.js +20 -0
- package/cjs/pagination/index.js +35 -0
- package/cjs/pagination/pagination.js +59 -0
- package/cjs/pagination/paginationButton.js +39 -0
- package/cjs/pagination/paginationEllipsis.js +29 -0
- package/cjs/pagination/paginationGoToPage.js +29 -0
- package/cjs/pagination/paginationNavigation.js +61 -0
- package/cjs/pagination/paginationPrevNext.js +37 -0
- package/cjs/pagination/paginationResults.js +30 -0
- package/cjs/pagination/theme.js +14 -0
- package/cjs/pagination/usePagination.js +42 -0
- package/cjs/panel/index.js +24 -0
- package/cjs/panel/panel.js +32 -0
- package/cjs/panel/theme.js +22 -0
- package/cjs/popover/consts.js +37 -0
- package/cjs/popover/context.js +7 -0
- package/cjs/popover/index.js +35 -0
- package/cjs/popover/popover.js +36 -0
- package/cjs/popover/popoverContent.js +37 -0
- package/cjs/popover/popoverStyle.js +22 -0
- package/cjs/popover/popoverTrigger.js +42 -0
- package/cjs/popover/theme.js +14 -0
- package/cjs/popover/usePopover.js +85 -0
- package/cjs/portal/index.js +24 -0
- package/cjs/portal/portal.js +44 -0
- package/cjs/radio/context.d.ts +4 -0
- package/cjs/radio/context.js +7 -0
- package/cjs/radio/index.js +27 -0
- package/cjs/radio/radio.js +123 -0
- package/cjs/radio/radioGroup.js +78 -0
- package/cjs/radio/theme.js +61 -0
- package/cjs/skeleton/index.js +24 -0
- package/cjs/skeleton/skeleton.js +35 -0
- package/cjs/skeleton/theme.js +49 -0
- package/cjs/spinner/consts.d.ts +36 -0
- package/cjs/spinner/consts.js +26 -0
- package/cjs/spinner/index.js +24 -0
- package/cjs/spinner/spinner.js +51 -0
- package/cjs/spinner/theme.js +75 -0
- package/cjs/svg/cache.js +30 -0
- package/cjs/svg/helpers.js +32 -0
- package/cjs/svg/index.js +24 -0
- package/cjs/svg/svg.js +119 -0
- package/cjs/switch/context.d.ts +4 -0
- package/cjs/switch/context.js +7 -0
- package/cjs/switch/index.js +27 -0
- package/cjs/switch/switch.js +92 -0
- package/cjs/switch/switchButton.js +145 -0
- package/cjs/switch/switchLabel.js +17 -0
- package/cjs/switch/theme.js +88 -0
- package/cjs/system/custom.js +32 -0
- package/cjs/system/index.js +31 -0
- package/cjs/system/system.js +7 -0
- package/cjs/t/index.js +24 -0
- package/cjs/t/t.js +39 -0
- package/cjs/t/theme.js +27 -0
- package/cjs/tag/context.d.ts +4 -0
- package/cjs/tag/context.js +7 -0
- package/cjs/tag/index.js +28 -0
- package/cjs/tag/tag.js +113 -0
- package/cjs/tag/tagButton.js +18 -0
- package/cjs/tag/tagIcon.js +17 -0
- package/cjs/tag/tagText.js +17 -0
- package/cjs/tag/theme.js +119 -0
- package/cjs/textarea/helpers.js +10 -0
- package/cjs/textarea/index.js +24 -0
- package/cjs/textarea/textarea.js +122 -0
- package/cjs/textarea/theme.js +33 -0
- package/cjs/theme/components.js +67 -0
- package/cjs/theme/defaultTheme.js +9 -0
- package/cjs/theme/foundations/fonts.js +5 -0
- package/cjs/theme/foundations/index.js +47 -0
- package/cjs/theme/foundations/shadows.js +25 -0
- package/cjs/theme/foundations/transformers.js +17 -0
- package/cjs/theme/index.js +60 -0
- package/cjs/utils/assertion.js +42 -0
- package/cjs/utils/function.js +20 -0
- package/cjs/utils/index.js +23 -0
- package/cjs/utils/number.js +8 -0
- package/cjs/utils/object.js +49 -0
- package/cjs/utils/react.d.ts +39 -0
- package/cjs/utils/react.js +146 -0
- package/cjs/utils/styles.js +31 -0
- package/esm/avatar/avatar.d.ts +5 -0
- package/esm/avatar/avatar.js +41 -0
- package/esm/avatar/avatar.types.d.ts +19 -0
- package/esm/avatar/avatar.types.js +1 -0
- package/esm/avatar/helpers.d.ts +2 -0
- package/esm/avatar/helpers.js +5 -0
- package/esm/avatar/index.d.ts +3 -0
- package/esm/avatar/index.js +3 -0
- package/esm/avatar/theme.d.ts +53 -0
- package/esm/avatar/theme.js +86 -0
- package/esm/box/box.d.ts +5 -0
- package/esm/box/box.js +28 -0
- package/esm/box/box.types.d.ts +26 -0
- package/esm/box/box.types.js +1 -0
- package/esm/box/index.d.ts +3 -0
- package/esm/box/index.js +3 -0
- package/esm/box/theme.d.ts +7 -0
- package/esm/box/theme.js +10 -0
- package/esm/button/button.d.ts +29 -0
- package/esm/button/button.js +99 -0
- package/esm/button/button.types.d.ts +38 -0
- package/esm/button/button.types.js +1 -0
- package/esm/button/buttonIcon.d.ts +4 -0
- package/esm/button/buttonIcon.js +11 -0
- package/esm/button/buttonText.d.ts +4 -0
- package/esm/button/buttonText.js +11 -0
- package/esm/button/buttons.d.ts +9 -0
- package/esm/button/buttons.js +11 -0
- package/esm/button/consts.d.ts +2 -0
- package/esm/button/consts.js +24 -0
- package/esm/button/context.d.ts +4 -0
- package/esm/button/context.js +3 -0
- package/esm/button/index.d.ts +7 -0
- package/esm/button/index.js +7 -0
- package/esm/button/theme.d.ts +113 -0
- package/esm/button/theme.js +140 -0
- package/esm/buttonGroup/buttonGroup.d.ts +10 -0
- package/esm/buttonGroup/buttonGroup.js +47 -0
- package/esm/buttonGroup/buttonGroup.types.d.ts +8 -0
- package/esm/buttonGroup/buttonGroup.types.js +1 -0
- package/esm/buttonGroup/context.d.ts +4 -0
- package/esm/buttonGroup/context.js +3 -0
- package/esm/buttonGroup/helpers.d.ts +3 -0
- package/esm/buttonGroup/helpers.js +8 -0
- package/esm/buttonGroup/index.d.ts +4 -0
- package/esm/buttonGroup/index.js +4 -0
- package/esm/card/card.d.ts +7 -0
- package/esm/card/card.js +27 -0
- package/esm/card/card.types.d.ts +6 -0
- package/esm/card/card.types.js +1 -0
- package/esm/card/index.d.ts +3 -0
- package/esm/card/index.js +3 -0
- package/esm/card/theme.d.ts +7 -0
- package/esm/card/theme.js +10 -0
- package/esm/checkbox/checkbox.d.ts +8 -0
- package/esm/checkbox/checkbox.js +79 -0
- package/esm/checkbox/checkbox.types.d.ts +43 -0
- package/esm/checkbox/checkbox.types.js +1 -0
- package/esm/checkbox/checkboxGroup.d.ts +8 -0
- package/esm/checkbox/checkboxGroup.js +23 -0
- package/esm/checkbox/checkboxGroup.types.d.ts +19 -0
- package/esm/checkbox/checkboxGroup.types.js +1 -0
- package/esm/checkbox/context.d.ts +4 -0
- package/esm/checkbox/context.js +3 -0
- package/esm/checkbox/index.d.ts +6 -0
- package/esm/checkbox/index.js +6 -0
- package/esm/checkbox/theme.d.ts +49 -0
- package/esm/checkbox/theme.js +59 -0
- package/esm/core/consts.d.ts +8 -0
- package/esm/core/consts.js +8 -0
- package/esm/core/index.d.ts +7 -0
- package/esm/core/index.js +7 -0
- package/esm/core/links.d.ts +21 -0
- package/esm/core/links.js +74 -0
- package/esm/core/media.d.ts +38 -0
- package/esm/core/media.js +47 -0
- package/esm/core/styled.d.ts +195 -0
- package/esm/core/styled.js +68 -0
- package/esm/core/theme.d.ts +41 -0
- package/esm/core/theme.js +57 -0
- package/esm/core/vui.d.ts +31 -0
- package/esm/core/vui.js +13 -0
- package/esm/core/vuiProvider/animations.d.ts +9 -0
- package/esm/core/vuiProvider/animations.js +82 -0
- package/esm/core/vuiProvider/fontFaces.d.ts +2 -0
- package/esm/core/vuiProvider/fontFaces.js +26 -0
- package/esm/core/vuiProvider/globalStyle.d.ts +12 -0
- package/esm/core/vuiProvider/globalStyle.js +82 -0
- package/esm/core/vuiProvider/index.d.ts +5 -0
- package/esm/core/vuiProvider/index.js +5 -0
- package/esm/core/vuiProvider/resetCSS.d.ts +3 -0
- package/esm/core/vuiProvider/resetCSS.js +174 -0
- package/esm/core/vuiProvider/vuiProvider.d.ts +13 -0
- package/esm/core/vuiProvider/vuiProvider.js +15 -0
- package/esm/dialog/consts.d.ts +3 -0
- package/esm/dialog/consts.js +27 -0
- package/esm/dialog/context.d.ts +4 -0
- package/esm/dialog/context.js +3 -0
- package/esm/dialog/dialog.d.ts +26 -0
- package/esm/dialog/dialog.js +61 -0
- package/esm/dialog/dialog.types.d.ts +47 -0
- package/esm/dialog/dialog.types.js +1 -0
- package/esm/dialog/dialogBody.d.ts +9 -0
- package/esm/dialog/dialogBody.js +34 -0
- package/esm/dialog/dialogCancelButton.d.ts +4 -0
- package/esm/dialog/dialogCancelButton.js +12 -0
- package/esm/dialog/dialogCloseButton.d.ts +4 -0
- package/esm/dialog/dialogCloseButton.js +12 -0
- package/esm/dialog/dialogFooter.d.ts +4 -0
- package/esm/dialog/dialogFooter.js +17 -0
- package/esm/dialog/dialogHeader.d.ts +4 -0
- package/esm/dialog/dialogHeader.js +24 -0
- package/esm/dialog/dialogIcon.d.ts +4 -0
- package/esm/dialog/dialogIcon.js +14 -0
- package/esm/dialog/dialogSubmitButton.d.ts +4 -0
- package/esm/dialog/dialogSubmitButton.js +11 -0
- package/esm/dialog/dialogTitle.d.ts +4 -0
- package/esm/dialog/dialogTitle.js +12 -0
- package/esm/dialog/index.d.ts +13 -0
- package/esm/dialog/index.js +13 -0
- package/esm/dialog/theme.d.ts +22 -0
- package/esm/dialog/theme.js +26 -0
- package/esm/divider/divider.d.ts +5 -0
- package/esm/divider/divider.js +20 -0
- package/esm/divider/divider.types.d.ts +10 -0
- package/esm/divider/divider.types.js +1 -0
- package/esm/divider/index.d.ts +3 -0
- package/esm/divider/index.js +3 -0
- package/esm/divider/theme.d.ts +7 -0
- package/esm/divider/theme.js +10 -0
- package/esm/footer/context.d.ts +4 -0
- package/esm/footer/context.js +3 -0
- package/esm/footer/footer.d.ts +19 -0
- package/esm/footer/footer.js +38 -0
- package/esm/footer/footer.types.d.ts +38 -0
- package/esm/footer/footer.types.js +1 -0
- package/esm/footer/footerColumn.d.ts +4 -0
- package/esm/footer/footerColumn.js +12 -0
- package/esm/footer/footerContent.d.ts +3 -0
- package/esm/footer/footerContent.js +11 -0
- package/esm/footer/footerHeading.d.ts +4 -0
- package/esm/footer/footerHeading.js +11 -0
- package/esm/footer/footerLink.d.ts +4 -0
- package/esm/footer/footerLink.js +11 -0
- package/esm/footer/footerRow.d.ts +4 -0
- package/esm/footer/footerRow.js +10 -0
- package/esm/footer/footerSection.d.ts +4 -0
- package/esm/footer/footerSection.js +19 -0
- package/esm/footer/footerTrademark.d.ts +4 -0
- package/esm/footer/footerTrademark.js +21 -0
- package/esm/footer/helpers.d.ts +7 -0
- package/esm/footer/helpers.js +29 -0
- package/esm/footer/index.d.ts +10 -0
- package/esm/footer/index.js +10 -0
- package/esm/footer/theme.d.ts +8 -0
- package/esm/footer/theme.js +12 -0
- package/esm/grid/grid.d.ts +5 -0
- package/esm/grid/grid.js +14 -0
- package/esm/grid/grid.types.d.ts +3 -0
- package/esm/grid/grid.types.js +1 -0
- package/esm/grid/index.d.ts +3 -0
- package/esm/grid/index.js +3 -0
- package/esm/grid/theme.d.ts +7 -0
- package/esm/grid/theme.js +10 -0
- package/esm/header/context.d.ts +4 -0
- package/esm/header/context.js +3 -0
- package/esm/header/header.d.ts +35 -0
- package/esm/header/header.js +69 -0
- package/esm/header/header.types.d.ts +99 -0
- package/esm/header/header.types.js +1 -0
- package/esm/header/headerAccount.d.ts +8 -0
- package/esm/header/headerAccount.js +34 -0
- package/esm/header/headerAccount.types.d.ts +35 -0
- package/esm/header/headerAccount.types.js +1 -0
- package/esm/header/headerAccountUserInfo.d.ts +4 -0
- package/esm/header/headerAccountUserInfo.js +18 -0
- package/esm/header/headerContent.d.ts +3 -0
- package/esm/header/headerContent.js +11 -0
- package/esm/header/headerCreateAccount.d.ts +4 -0
- package/esm/header/headerCreateAccount.js +18 -0
- package/esm/header/headerDivider.d.ts +4 -0
- package/esm/header/headerDivider.js +11 -0
- package/esm/header/headerLinkItem.d.ts +4 -0
- package/esm/header/headerLinkItem.js +33 -0
- package/esm/header/headerLogo.d.ts +4 -0
- package/esm/header/headerLogo.js +17 -0
- package/esm/header/headerMainLinks.d.ts +4 -0
- package/esm/header/headerMainLinks.js +15 -0
- package/esm/header/headerMobileContent.d.ts +4 -0
- package/esm/header/headerMobileContent.js +13 -0
- package/esm/header/headerMobileToggle.d.ts +4 -0
- package/esm/header/headerMobileToggle.js +15 -0
- package/esm/header/headerNotifications.d.ts +4 -0
- package/esm/header/headerNotifications.js +30 -0
- package/esm/header/headerServices.d.ts +8 -0
- package/esm/header/headerServices.js +27 -0
- package/esm/header/headerServicesMessage.d.ts +4 -0
- package/esm/header/headerServicesMessage.js +20 -0
- package/esm/header/headerSignIn.d.ts +4 -0
- package/esm/header/headerSignIn.js +13 -0
- package/esm/header/helpers.d.ts +8 -0
- package/esm/header/helpers.js +32 -0
- package/esm/header/index.d.ts +22 -0
- package/esm/header/index.js +22 -0
- package/esm/header/loggedInHeader.d.ts +4 -0
- package/esm/header/loggedInHeader.js +29 -0
- package/esm/header/loggedOutHeader.d.ts +4 -0
- package/esm/header/loggedOutHeader.js +29 -0
- package/esm/header/theme.d.ts +87 -0
- package/esm/header/theme.js +91 -0
- package/esm/heading/heading.d.ts +5 -0
- package/esm/heading/heading.js +22 -0
- package/esm/heading/heading.types.d.ts +15 -0
- package/esm/heading/heading.types.js +1 -0
- package/esm/heading/headings.d.ts +7 -0
- package/esm/heading/headings.js +9 -0
- package/esm/heading/index.d.ts +4 -0
- package/esm/heading/index.js +4 -0
- package/esm/heading/theme.d.ts +40 -0
- package/esm/heading/theme.js +43 -0
- package/esm/icon/helpers.d.ts +7 -0
- package/esm/icon/helpers.js +30 -0
- package/esm/icon/icon.d.ts +4 -0
- package/esm/icon/icon.js +20 -0
- package/esm/icon/icon.types.d.ts +24 -0
- package/esm/icon/icon.types.js +1 -0
- package/esm/icon/index.d.ts +3 -0
- package/esm/icon/index.js +3 -0
- package/esm/icon/theme.d.ts +26 -0
- package/esm/icon/theme.js +29 -0
- package/esm/icons/baseIcons/cub/cubPowerBi.d.ts +3 -0
- package/esm/icons/baseIcons/cub/cubPowerBi.js +5 -0
- package/esm/icons/baseIcons/cub/cubVeracity.d.ts +3 -0
- package/esm/icons/baseIcons/cub/cubVeracity.js +5 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxIndeterminate.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxIndeterminate.js +5 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxSelected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxSelected.js +5 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxUnselected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxUnselected.js +6 -0
- package/esm/icons/baseIcons/cui/cuiRadioSelected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiRadioSelected.js +6 -0
- package/esm/icons/baseIcons/cui/cuiRadioUnselected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiRadioUnselected.js +6 -0
- package/esm/icons/baseIcons/cul/culApiProduct.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culApiProduct.js +5 -0
- package/esm/icons/baseIcons/cul/culApiService.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culApiService.js +5 -0
- package/esm/icons/baseIcons/cul/culCircleChart.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culCircleChart.js +5 -0
- package/esm/icons/baseIcons/cul/culCircleChartAlt.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culCircleChartAlt.js +5 -0
- package/esm/icons/baseIcons/cul/culCovid.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culCovid.js +5 -0
- package/esm/icons/baseIcons/cul/culDeepSearch.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culDeepSearch.js +5 -0
- package/esm/icons/baseIcons/cul/culDotsMenu.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culDotsMenu.js +5 -0
- package/esm/icons/baseIcons/cul/culGlobePlus.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culGlobePlus.js +5 -0
- package/esm/icons/baseIcons/cul/culListDense.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culListDense.js +5 -0
- package/esm/icons/baseIcons/cul/culMapMarkerStar.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culMapMarkerStar.js +5 -0
- package/esm/icons/baseIcons/cul/culNumber1.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culNumber1.js +5 -0
- package/esm/icons/baseIcons/cul/culPlusThin.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culPlusThin.js +5 -0
- package/esm/icons/baseIcons/cul/culScreenshot.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culScreenshot.js +5 -0
- package/esm/icons/baseIcons/cul/culScreenshotAlt.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culScreenshotAlt.js +5 -0
- package/esm/icons/baseIcons/cul/culShortcut.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culShortcut.js +5 -0
- package/esm/icons/baseIcons/cul/culTarget.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culTarget.js +5 -0
- package/esm/icons/baseIcons/cul/culTimesThin.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culTimesThin.js +5 -0
- package/esm/icons/baseIcons/cul/culTransformer.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culTransformer.js +5 -0
- package/esm/icons/baseIcons/cul/culUserTransfer.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culUserTransfer.js +5 -0
- package/esm/icons/baseIcons/cul/culVeracityService.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culVeracityService.js +5 -0
- package/esm/icons/baseIcons/cul/culVessel.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culVessel.js +5 -0
- package/esm/icons/baseIcons/cul/culVesselGroup.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culVesselGroup.js +5 -0
- package/esm/icons/baseIcons/cus/cusDotFull.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusDotFull.js +5 -0
- package/esm/icons/baseIcons/cus/cusDotFullAlt.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusDotFullAlt.js +5 -0
- package/esm/icons/baseIcons/cus/cusDotsMenu.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusDotsMenu.js +5 -0
- package/esm/icons/baseIcons/cus/cusTransformer.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusTransformer.js +5 -0
- package/esm/icons/baseIcons/cus/cusVessel.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusVessel.js +5 -0
- package/esm/icons/baseIcons/fab/fabApplePay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabApplePay.js +5 -0
- package/esm/icons/baseIcons/fab/fabBluetooth.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabBluetooth.js +5 -0
- package/esm/icons/baseIcons/fab/fabBtc.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabBtc.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcAmazonPay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcAmazonPay.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcAmex.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcAmex.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcApplePay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcApplePay.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcDinersClub.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcDinersClub.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcMastercard.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcMastercard.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcPaypal.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcPaypal.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcVisa.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcVisa.js +5 -0
- package/esm/icons/baseIcons/fab/fabDhl.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabDhl.js +5 -0
- package/esm/icons/baseIcons/fab/fabEbay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabEbay.js +5 -0
- package/esm/icons/baseIcons/fab/fabFacebook.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabFacebook.js +5 -0
- package/esm/icons/baseIcons/fab/fabFedex.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabFedex.js +5 -0
- package/esm/icons/baseIcons/fab/fabFirefox.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabFirefox.js +5 -0
- package/esm/icons/baseIcons/fab/fabGoogle.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabGoogle.js +5 -0
- package/esm/icons/baseIcons/fab/fabGoogleDrive.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabGoogleDrive.js +5 -0
- package/esm/icons/baseIcons/fab/fabLinkedinIn.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabLinkedinIn.js +5 -0
- package/esm/icons/baseIcons/fab/fabMedium.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabMedium.js +5 -0
- package/esm/icons/baseIcons/fab/fabOsi.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabOsi.js +5 -0
- package/esm/icons/baseIcons/fab/fabSlack.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabSlack.js +5 -0
- package/esm/icons/baseIcons/fab/fabTwitter.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabTwitter.js +5 -0
- package/esm/icons/baseIcons/fab/fabUps.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabUps.js +5 -0
- package/esm/icons/baseIcons/fab/fabYoutube.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabYoutube.js +5 -0
- package/esm/icons/baseIcons/fad/fadSpinnerThird.d.ts +3 -0
- package/esm/icons/baseIcons/fad/fadSpinnerThird.js +5 -0
- package/esm/icons/baseIcons/fal/falAddressBook.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAddressBook.js +5 -0
- package/esm/icons/baseIcons/fal/falAddressCard.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAddressCard.js +5 -0
- package/esm/icons/baseIcons/fal/falAnalytics.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAnalytics.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltDown.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowDown.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromBottom.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromBottom.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromTop.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromTop.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToBottom.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToBottom.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToTop.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToTop.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrows.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrows.js +5 -0
- package/esm/icons/baseIcons/fal/falAward.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAward.js +5 -0
- package/esm/icons/baseIcons/fal/falBan.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBan.js +5 -0
- package/esm/icons/baseIcons/fal/falBars.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBars.js +5 -0
- package/esm/icons/baseIcons/fal/falBell.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBell.js +5 -0
- package/esm/icons/baseIcons/fal/falBookOpen.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBookOpen.js +5 -0
- package/esm/icons/baseIcons/fal/falBroadcastTower.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBroadcastTower.js +5 -0
- package/esm/icons/baseIcons/fal/falBroom.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBroom.js +5 -0
- package/esm/icons/baseIcons/fal/falBuilding.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBuilding.js +5 -0
- package/esm/icons/baseIcons/fal/falBullseye.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBullseye.js +5 -0
- package/esm/icons/baseIcons/fal/falCalendar.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCalendar.js +5 -0
- package/esm/icons/baseIcons/fal/falCalendarAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCalendarAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falCamera.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCamera.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretDown.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretRight.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretUp.js +5 -0
- package/esm/icons/baseIcons/fal/falCauldron.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCauldron.js +5 -0
- package/esm/icons/baseIcons/fal/falChartArea.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartArea.js +5 -0
- package/esm/icons/baseIcons/fal/falChartBar.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartBar.js +5 -0
- package/esm/icons/baseIcons/fal/falChartLine.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartLine.js +5 -0
- package/esm/icons/baseIcons/fal/falChartLineDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartLineDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChartNetwork.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartNetwork.js +5 -0
- package/esm/icons/baseIcons/fal/falChartPie.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartPie.js +5 -0
- package/esm/icons/baseIcons/fal/falChartPieAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartPieAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falChartScatter.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartScatter.js +5 -0
- package/esm/icons/baseIcons/fal/falCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falCheckCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCheckCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falCheckSquare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCheckSquare.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronRight.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronUp.js +5 -0
- package/esm/icons/baseIcons/fal/falCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falCloud.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloud.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudShowersHeavy.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudShowersHeavy.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudSnow.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudSnow.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudSun.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudSun.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudSunRain.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudSunRain.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudUpload.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudUpload.js +5 -0
- package/esm/icons/baseIcons/fal/falCode.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCode.js +5 -0
- package/esm/icons/baseIcons/fal/falCog.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCog.js +5 -0
- package/esm/icons/baseIcons/fal/falCogs.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCogs.js +5 -0
- package/esm/icons/baseIcons/fal/falComment.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falComment.js +5 -0
- package/esm/icons/baseIcons/fal/falCommentAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCommentAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falCompressAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCompressAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falCopy.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCopy.js +5 -0
- package/esm/icons/baseIcons/fal/falCreditCard.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCreditCard.js +5 -0
- package/esm/icons/baseIcons/fal/falDatabase.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falDatabase.js +5 -0
- package/esm/icons/baseIcons/fal/falDotCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falDotCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falDownload.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falDownload.js +5 -0
- package/esm/icons/baseIcons/fal/falEdit.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEdit.js +5 -0
- package/esm/icons/baseIcons/fal/falEllipsisH.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEllipsisH.js +5 -0
- package/esm/icons/baseIcons/fal/falEllipsisV.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEllipsisV.js +5 -0
- package/esm/icons/baseIcons/fal/falEnvelope.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEnvelope.js +5 -0
- package/esm/icons/baseIcons/fal/falExchange.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExchange.js +5 -0
- package/esm/icons/baseIcons/fal/falExclamationCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExclamationCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falExclamationTriangle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExclamationTriangle.js +5 -0
- package/esm/icons/baseIcons/fal/falExpandAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExpandAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falExternalLink.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExternalLink.js +5 -0
- package/esm/icons/baseIcons/fal/falEye.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEye.js +5 -0
- package/esm/icons/baseIcons/fal/falEyeSlash.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEyeSlash.js +5 -0
- package/esm/icons/baseIcons/fal/falFile.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFile.js +5 -0
- package/esm/icons/baseIcons/fal/falFileAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falFileArchive.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileArchive.js +5 -0
- package/esm/icons/baseIcons/fal/falFileAudio.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileAudio.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCertificate.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCertificate.js +5 -0
- package/esm/icons/baseIcons/fal/falFileChartLine.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileChartLine.js +5 -0
- package/esm/icons/baseIcons/fal/falFileChartPie.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileChartPie.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCode.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCode.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCsv.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCsv.js +5 -0
- package/esm/icons/baseIcons/fal/falFileEdit.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileEdit.js +5 -0
- package/esm/icons/baseIcons/fal/falFileExcel.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileExcel.js +5 -0
- package/esm/icons/baseIcons/fal/falFileImage.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileImage.js +5 -0
- package/esm/icons/baseIcons/fal/falFileInvoiceDollar.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileInvoiceDollar.js +5 -0
- package/esm/icons/baseIcons/fal/falFilePdf.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilePdf.js +5 -0
- package/esm/icons/baseIcons/fal/falFilePlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilePlus.js +5 -0
- package/esm/icons/baseIcons/fal/falFilePowerpoint.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilePowerpoint.js +5 -0
- package/esm/icons/baseIcons/fal/falFileSpreadsheet.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileSpreadsheet.js +5 -0
- package/esm/icons/baseIcons/fal/falFileVideo.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileVideo.js +5 -0
- package/esm/icons/baseIcons/fal/falFileWord.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileWord.js +5 -0
- package/esm/icons/baseIcons/fal/falFilter.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilter.js +5 -0
- package/esm/icons/baseIcons/fal/falFlag.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFlag.js +5 -0
- package/esm/icons/baseIcons/fal/falFolder.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolder.js +5 -0
- package/esm/icons/baseIcons/fal/falFolderOpen.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolderOpen.js +5 -0
- package/esm/icons/baseIcons/fal/falFolderPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolderPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falFolders.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolders.js +5 -0
- package/esm/icons/baseIcons/fal/falGlassesAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falGlassesAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falGlobe.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falGlobe.js +5 -0
- package/esm/icons/baseIcons/fal/falHome.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falHome.js +5 -0
- package/esm/icons/baseIcons/fal/falHourglass.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falHourglass.js +5 -0
- package/esm/icons/baseIcons/fal/falImage.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falImage.js +5 -0
- package/esm/icons/baseIcons/fal/falInfoCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falInfoCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falKey.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falKey.js +5 -0
- package/esm/icons/baseIcons/fal/falLayerGroup.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLayerGroup.js +5 -0
- package/esm/icons/baseIcons/fal/falLayerPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLayerPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falLink.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLink.js +5 -0
- package/esm/icons/baseIcons/fal/falList.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falList.js +5 -0
- package/esm/icons/baseIcons/fal/falLockAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLockAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowDown.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowRight.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowUp.js +5 -0
- package/esm/icons/baseIcons/fal/falMap.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMap.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarked.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarked.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkedAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkedAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarker.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarker.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAltSlash.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAltSlash.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerExclamation.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerExclamation.js +5 -0
- package/esm/icons/baseIcons/fal/falMinus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMinus.js +5 -0
- package/esm/icons/baseIcons/fal/falPause.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPause.js +5 -0
- package/esm/icons/baseIcons/fal/falPauseCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPauseCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falPen.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPen.js +5 -0
- package/esm/icons/baseIcons/fal/falPlay.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlay.js +5 -0
- package/esm/icons/baseIcons/fal/falPlayCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlayCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falPlug.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlug.js +5 -0
- package/esm/icons/baseIcons/fal/falPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falPlusCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlusCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falPlusSquare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlusSquare.js +5 -0
- package/esm/icons/baseIcons/fal/falPrint.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPrint.js +5 -0
- package/esm/icons/baseIcons/fal/falPuzzlePiece.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPuzzlePiece.js +5 -0
- package/esm/icons/baseIcons/fal/falQuestionCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falQuestionCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falReceipt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falReceipt.js +5 -0
- package/esm/icons/baseIcons/fal/falRedo.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falRedo.js +5 -0
- package/esm/icons/baseIcons/fal/falSave.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSave.js +5 -0
- package/esm/icons/baseIcons/fal/falSearch.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSearch.js +5 -0
- package/esm/icons/baseIcons/fal/falSearchMinus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSearchMinus.js +5 -0
- package/esm/icons/baseIcons/fal/falSearchPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSearchPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falServer.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falServer.js +5 -0
- package/esm/icons/baseIcons/fal/falShare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShare.js +5 -0
- package/esm/icons/baseIcons/fal/falShareAll.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShareAll.js +5 -0
- package/esm/icons/baseIcons/fal/falShareAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShareAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falShieldAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShieldAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falShieldCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShieldCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falShip.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShip.js +5 -0
- package/esm/icons/baseIcons/fal/falShoppingBasket.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShoppingBasket.js +5 -0
- package/esm/icons/baseIcons/fal/falSignIn.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignIn.js +5 -0
- package/esm/icons/baseIcons/fal/falSignInAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignInAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falSignOut.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignOut.js +5 -0
- package/esm/icons/baseIcons/fal/falSignOutAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignOutAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falSlidersV.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSlidersV.js +5 -0
- package/esm/icons/baseIcons/fal/falSnowBlowing.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSnowBlowing.js +5 -0
- package/esm/icons/baseIcons/fal/falSnowflake.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSnowflake.js +5 -0
- package/esm/icons/baseIcons/fal/falSolarPanel.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSolarPanel.js +5 -0
- package/esm/icons/baseIcons/fal/falSort.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSort.js +5 -0
- package/esm/icons/baseIcons/fal/falSpinner.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSpinner.js +5 -0
- package/esm/icons/baseIcons/fal/falSquare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSquare.js +5 -0
- package/esm/icons/baseIcons/fal/falStepForward.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStepForward.js +5 -0
- package/esm/icons/baseIcons/fal/falStop.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStop.js +5 -0
- package/esm/icons/baseIcons/fal/falStopCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStopCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falStopwatch.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStopwatch.js +5 -0
- package/esm/icons/baseIcons/fal/falSuitcase.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSuitcase.js +5 -0
- package/esm/icons/baseIcons/fal/falSun.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSun.js +5 -0
- package/esm/icons/baseIcons/fal/falSync.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSync.js +5 -0
- package/esm/icons/baseIcons/fal/falTachometer.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTachometer.js +5 -0
- package/esm/icons/baseIcons/fal/falTemperatureHigh.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTemperatureHigh.js +5 -0
- package/esm/icons/baseIcons/fal/falTh.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTh.js +5 -0
- package/esm/icons/baseIcons/fal/falThLarge.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falThLarge.js +5 -0
- package/esm/icons/baseIcons/fal/falThList.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falThList.js +5 -0
- package/esm/icons/baseIcons/fal/falTimes.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTimes.js +5 -0
- package/esm/icons/baseIcons/fal/falTimesCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTimesCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falToggleOff.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falToggleOff.js +5 -0
- package/esm/icons/baseIcons/fal/falToggleOn.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falToggleOn.js +5 -0
- package/esm/icons/baseIcons/fal/falTrashAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTrashAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falUnlockAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUnlockAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falUser.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUser.js +5 -0
- package/esm/icons/baseIcons/fal/falUserChart.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserChart.js +5 -0
- package/esm/icons/baseIcons/fal/falUserCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falUserCog.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserCog.js +5 -0
- package/esm/icons/baseIcons/fal/falUserEdit.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserEdit.js +5 -0
- package/esm/icons/baseIcons/fal/falUserFriends.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserFriends.js +5 -0
- package/esm/icons/baseIcons/fal/falUserPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falUserShield.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserShield.js +5 -0
- package/esm/icons/baseIcons/fal/falUserTimes.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserTimes.js +5 -0
- package/esm/icons/baseIcons/fal/falUsers.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUsers.js +5 -0
- package/esm/icons/baseIcons/fal/falUsersClass.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUsersClass.js +5 -0
- package/esm/icons/baseIcons/fal/falWater.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWater.js +5 -0
- package/esm/icons/baseIcons/fal/falWind.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWind.js +5 -0
- package/esm/icons/baseIcons/fal/falWindTurbine.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWindTurbine.js +5 -0
- package/esm/icons/baseIcons/fal/falWrench.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWrench.js +5 -0
- package/esm/icons/baseIcons/fas/fasCalendarAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCalendarAlt.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretDown.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretDown.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretLeft.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretRight.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretRight.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretUp.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretUp.js +5 -0
- package/esm/icons/baseIcons/fas/fasCheckCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCheckCircle.js +5 -0
- package/esm/icons/baseIcons/fas/fasDiamond.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasDiamond.js +5 -0
- package/esm/icons/baseIcons/fas/fasFolder.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasFolder.js +5 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerAlt.js +5 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerExclamation.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerExclamation.js +5 -0
- package/esm/icons/baseIcons/fas/fasQuoteLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasQuoteLeft.js +5 -0
- package/esm/icons/baseIcons/fas/fasQuoteRight.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasQuoteRight.js +5 -0
- package/esm/icons/baseIcons/fas/fasSolarPanel.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasSolarPanel.js +5 -0
- package/esm/icons/baseIcons/fas/fasSort.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasSort.js +5 -0
- package/esm/icons/baseIcons/fas/fasStar.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasStar.js +5 -0
- package/esm/icons/baseIcons/fas/fasWindTurbine.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasWindTurbine.js +5 -0
- package/esm/icons/baseIcons/icons.d.ts +297 -0
- package/esm/icons/baseIcons/icons.js +297 -0
- package/esm/icons/baseIcons/types.d.ts +1 -0
- package/esm/icons/baseIcons/types.js +1 -0
- package/esm/icons/cache.d.ts +15 -0
- package/esm/icons/cache.js +35 -0
- package/esm/icons/consts.d.ts +6 -0
- package/esm/icons/consts.js +40 -0
- package/esm/icons/index.d.ts +3 -0
- package/esm/icons/index.js +3 -0
- package/esm/icons/types.d.ts +28 -0
- package/esm/icons/types.js +1 -0
- package/esm/image/image.d.ts +5 -0
- package/esm/image/image.js +16 -0
- package/esm/image/image.types.d.ts +6 -0
- package/esm/image/image.types.js +1 -0
- package/esm/image/index.d.ts +3 -0
- package/esm/image/index.js +3 -0
- package/esm/image/theme.d.ts +7 -0
- package/esm/image/theme.js +10 -0
- package/esm/index.d.ts +38 -0
- package/esm/index.js +38 -0
- package/esm/input/consts.d.ts +2 -0
- package/esm/input/consts.js +24 -0
- package/esm/input/context.d.ts +4 -0
- package/esm/input/context.js +3 -0
- package/esm/input/helpers.d.ts +3 -0
- package/esm/input/helpers.js +5 -0
- package/esm/input/index.d.ts +5 -0
- package/esm/input/index.js +5 -0
- package/esm/input/input.d.ts +15 -0
- package/esm/input/input.js +88 -0
- package/esm/input/input.types.d.ts +74 -0
- package/esm/input/input.types.js +1 -0
- package/esm/input/inputIcon.d.ts +4 -0
- package/esm/input/inputIcon.js +14 -0
- package/esm/input/inputInput.d.ts +5 -0
- package/esm/input/inputInput.js +37 -0
- package/esm/input/theme.d.ts +65 -0
- package/esm/input/theme.js +74 -0
- package/esm/link/context.d.ts +4 -0
- package/esm/link/context.js +3 -0
- package/esm/link/index.d.ts +5 -0
- package/esm/link/index.js +5 -0
- package/esm/link/link.d.ts +14 -0
- package/esm/link/link.js +41 -0
- package/esm/link/link.types.d.ts +24 -0
- package/esm/link/link.types.js +1 -0
- package/esm/link/linkIcon.d.ts +4 -0
- package/esm/link/linkIcon.js +11 -0
- package/esm/link/linkText.d.ts +4 -0
- package/esm/link/linkText.js +11 -0
- package/esm/link/theme.d.ts +58 -0
- package/esm/link/theme.js +70 -0
- package/esm/list/context.d.ts +4 -0
- package/esm/list/context.js +3 -0
- package/esm/list/index.d.ts +9 -0
- package/esm/list/index.js +9 -0
- package/esm/list/list.d.ts +17 -0
- package/esm/list/list.js +30 -0
- package/esm/list/list.types.d.ts +47 -0
- package/esm/list/list.types.js +1 -0
- package/esm/list/listDivider.d.ts +4 -0
- package/esm/list/listDivider.js +11 -0
- package/esm/list/listHeading.d.ts +4 -0
- package/esm/list/listHeading.js +11 -0
- package/esm/list/listIcon.d.ts +4 -0
- package/esm/list/listIcon.js +11 -0
- package/esm/list/listItem.d.ts +8 -0
- package/esm/list/listItem.js +65 -0
- package/esm/list/listText.d.ts +4 -0
- package/esm/list/listText.js +11 -0
- package/esm/list/theme.d.ts +77 -0
- package/esm/list/theme.js +87 -0
- package/esm/menu/context.d.ts +4 -0
- package/esm/menu/context.js +3 -0
- package/esm/menu/index.d.ts +6 -0
- package/esm/menu/index.js +6 -0
- package/esm/menu/menu.d.ts +16 -0
- package/esm/menu/menu.js +17 -0
- package/esm/menu/menu.types.d.ts +14 -0
- package/esm/menu/menu.types.js +1 -0
- package/esm/menu/menuButton.d.ts +4 -0
- package/esm/menu/menuButton.js +12 -0
- package/esm/menu/menuItem.d.ts +4 -0
- package/esm/menu/menuItem.js +20 -0
- package/esm/menu/menuList.d.ts +12 -0
- package/esm/menu/menuList.js +19 -0
- package/esm/menu/theme.d.ts +21 -0
- package/esm/menu/theme.js +25 -0
- package/esm/modal/context.d.ts +4 -0
- package/esm/modal/context.js +3 -0
- package/esm/modal/focusLock.d.ts +9 -0
- package/esm/modal/focusLock.js +19 -0
- package/esm/modal/focusLock.types.d.ts +28 -0
- package/esm/modal/focusLock.types.js +1 -0
- package/esm/modal/index.d.ts +9 -0
- package/esm/modal/index.js +9 -0
- package/esm/modal/modal.d.ts +15 -0
- package/esm/modal/modal.js +64 -0
- package/esm/modal/modal.types.d.ts +46 -0
- package/esm/modal/modal.types.js +1 -0
- package/esm/modal/modalBackdrop.d.ts +4 -0
- package/esm/modal/modalBackdrop.js +19 -0
- package/esm/modal/modalContent.d.ts +4 -0
- package/esm/modal/modalContent.js +18 -0
- package/esm/modal/modalManager.d.ts +12 -0
- package/esm/modal/modalManager.js +27 -0
- package/esm/modal/theme.d.ts +8 -0
- package/esm/modal/theme.js +12 -0
- package/esm/notification/consts.d.ts +2 -0
- package/esm/notification/consts.js +34 -0
- package/esm/notification/context.d.ts +4 -0
- package/esm/notification/context.js +3 -0
- package/esm/notification/index.d.ts +8 -0
- package/esm/notification/index.js +8 -0
- package/esm/notification/notification.d.ts +17 -0
- package/esm/notification/notification.js +37 -0
- package/esm/notification/notification.types.d.ts +27 -0
- package/esm/notification/notification.types.js +1 -0
- package/esm/notification/notificationButton.d.ts +4 -0
- package/esm/notification/notificationButton.js +12 -0
- package/esm/notification/notificationIcon.d.ts +4 -0
- package/esm/notification/notificationIcon.js +15 -0
- package/esm/notification/notificationText.d.ts +4 -0
- package/esm/notification/notificationText.js +11 -0
- package/esm/notification/notificationTitle.d.ts +4 -0
- package/esm/notification/notificationTitle.js +11 -0
- package/esm/notification/theme.d.ts +27 -0
- package/esm/notification/theme.js +40 -0
- package/esm/p/index.d.ts +3 -0
- package/esm/p/index.js +3 -0
- package/esm/p/p.d.ts +5 -0
- package/esm/p/p.js +20 -0
- package/esm/p/p.types.d.ts +14 -0
- package/esm/p/p.types.js +1 -0
- package/esm/p/theme.d.ts +30 -0
- package/esm/p/theme.js +33 -0
- package/esm/pagination/context.d.ts +4 -0
- package/esm/pagination/context.js +3 -0
- package/esm/pagination/helpers.d.ts +3 -0
- package/esm/pagination/helpers.js +16 -0
- package/esm/pagination/index.d.ts +13 -0
- package/esm/pagination/index.js +13 -0
- package/esm/pagination/pagination.d.ts +21 -0
- package/esm/pagination/pagination.js +41 -0
- package/esm/pagination/pagination.types.d.ts +31 -0
- package/esm/pagination/pagination.types.js +1 -0
- package/esm/pagination/paginationButton.d.ts +4 -0
- package/esm/pagination/paginationButton.js +22 -0
- package/esm/pagination/paginationEllipsis.d.ts +4 -0
- package/esm/pagination/paginationEllipsis.js +12 -0
- package/esm/pagination/paginationGoToPage.d.ts +4 -0
- package/esm/pagination/paginationGoToPage.js +23 -0
- package/esm/pagination/paginationNavigation.d.ts +4 -0
- package/esm/pagination/paginationNavigation.js +22 -0
- package/esm/pagination/paginationPrevNext.d.ts +4 -0
- package/esm/pagination/paginationPrevNext.js +20 -0
- package/esm/pagination/paginationResults.d.ts +4 -0
- package/esm/pagination/paginationResults.js +13 -0
- package/esm/pagination/theme.d.ts +8 -0
- package/esm/pagination/theme.js +12 -0
- package/esm/pagination/usePagination.d.ts +14 -0
- package/esm/pagination/usePagination.js +39 -0
- package/esm/pagination/usePagination.types.d.ts +12 -0
- package/esm/pagination/usePagination.types.js +1 -0
- package/esm/panel/index.d.ts +3 -0
- package/esm/panel/index.js +3 -0
- package/esm/panel/panel.d.ts +7 -0
- package/esm/panel/panel.js +15 -0
- package/esm/panel/panel.types.d.ts +3 -0
- package/esm/panel/panel.types.js +1 -0
- package/esm/panel/theme.d.ts +17 -0
- package/esm/panel/theme.js +20 -0
- package/esm/popover/consts.d.ts +6 -0
- package/esm/popover/consts.js +34 -0
- package/esm/popover/context.d.ts +4 -0
- package/esm/popover/context.js +3 -0
- package/esm/popover/index.d.ts +9 -0
- package/esm/popover/index.js +9 -0
- package/esm/popover/popover.d.ts +12 -0
- package/esm/popover/popover.js +19 -0
- package/esm/popover/popover.types.d.ts +18 -0
- package/esm/popover/popover.types.js +1 -0
- package/esm/popover/popoverContent.d.ts +3 -0
- package/esm/popover/popoverContent.js +19 -0
- package/esm/popover/popoverStyle.d.ts +2 -0
- package/esm/popover/popoverStyle.js +20 -0
- package/esm/popover/popoverTrigger.d.ts +6 -0
- package/esm/popover/popoverTrigger.js +24 -0
- package/esm/popover/theme.d.ts +8 -0
- package/esm/popover/theme.js +12 -0
- package/esm/popover/usePopover.d.ts +19 -0
- package/esm/popover/usePopover.js +89 -0
- package/esm/popover/usePopover.types.d.ts +27 -0
- package/esm/popover/usePopover.types.js +1 -0
- package/esm/portal/index.d.ts +3 -0
- package/esm/portal/index.js +3 -0
- package/esm/portal/portal.d.ts +5 -0
- package/esm/portal/portal.js +16 -0
- package/esm/portal/portal.types.d.ts +7 -0
- package/esm/portal/portal.types.js +1 -0
- package/esm/radio/context.d.ts +4 -0
- package/esm/radio/context.js +3 -0
- package/esm/radio/index.d.ts +6 -0
- package/esm/radio/index.js +6 -0
- package/esm/radio/radio.d.ts +8 -0
- package/esm/radio/radio.js +84 -0
- package/esm/radio/radio.types.d.ts +39 -0
- package/esm/radio/radio.types.js +1 -0
- package/esm/radio/radioGroup.d.ts +8 -0
- package/esm/radio/radioGroup.js +41 -0
- package/esm/radio/radioGroup.types.d.ts +21 -0
- package/esm/radio/radioGroup.types.js +1 -0
- package/esm/radio/theme.d.ts +49 -0
- package/esm/radio/theme.js +59 -0
- package/esm/skeleton/index.d.ts +3 -0
- package/esm/skeleton/index.js +3 -0
- package/esm/skeleton/skeleton.d.ts +5 -0
- package/esm/skeleton/skeleton.js +18 -0
- package/esm/skeleton/skeleton.types.d.ts +10 -0
- package/esm/skeleton/skeleton.types.js +1 -0
- package/esm/skeleton/theme.d.ts +37 -0
- package/esm/skeleton/theme.js +47 -0
- package/esm/spinner/consts.d.ts +36 -0
- package/esm/spinner/consts.js +23 -0
- package/esm/spinner/index.d.ts +3 -0
- package/esm/spinner/index.js +3 -0
- package/esm/spinner/spinner.d.ts +8 -0
- package/esm/spinner/spinner.js +33 -0
- package/esm/spinner/spinner.types.d.ts +20 -0
- package/esm/spinner/spinner.types.js +1 -0
- package/esm/spinner/theme.d.ts +68 -0
- package/esm/spinner/theme.js +73 -0
- package/esm/svg/cache.d.ts +15 -0
- package/esm/svg/cache.js +28 -0
- package/esm/svg/helpers.d.ts +10 -0
- package/esm/svg/helpers.js +25 -0
- package/esm/svg/index.d.ts +3 -0
- package/esm/svg/index.js +3 -0
- package/esm/svg/svg.d.ts +10 -0
- package/esm/svg/svg.js +68 -0
- package/esm/svg/svg.types.d.ts +12 -0
- package/esm/svg/svg.types.js +1 -0
- package/esm/switch/context.d.ts +4 -0
- package/esm/switch/context.js +3 -0
- package/esm/switch/index.d.ts +6 -0
- package/esm/switch/index.js +6 -0
- package/esm/switch/switch.d.ts +14 -0
- package/esm/switch/switch.js +55 -0
- package/esm/switch/switch.types.d.ts +69 -0
- package/esm/switch/switch.types.js +1 -0
- package/esm/switch/switchButton.d.ts +8 -0
- package/esm/switch/switchButton.js +108 -0
- package/esm/switch/switchLabel.d.ts +4 -0
- package/esm/switch/switchLabel.js +11 -0
- package/esm/switch/theme.d.ts +78 -0
- package/esm/switch/theme.js +86 -0
- package/esm/system/animations.d.ts +10 -0
- package/esm/system/animations.js +1 -0
- package/esm/system/backgrounds.d.ts +12 -0
- package/esm/system/backgrounds.js +1 -0
- package/esm/system/borders.d.ts +143 -0
- package/esm/system/borders.js +1 -0
- package/esm/system/colors.d.ts +3 -0
- package/esm/system/colors.js +1 -0
- package/esm/system/custom.d.ts +14 -0
- package/esm/system/custom.js +29 -0
- package/esm/system/effects.d.ts +21 -0
- package/esm/system/effects.js +1 -0
- package/esm/system/flexboxGrids.d.ts +12 -0
- package/esm/system/flexboxGrids.js +1 -0
- package/esm/system/flexboxes.d.ts +60 -0
- package/esm/system/flexboxes.js +1 -0
- package/esm/system/grids.d.ts +56 -0
- package/esm/system/grids.js +1 -0
- package/esm/system/index.d.ts +15 -0
- package/esm/system/index.js +15 -0
- package/esm/system/interactivity.d.ts +25 -0
- package/esm/system/interactivity.js +1 -0
- package/esm/system/layout.d.ts +72 -0
- package/esm/system/layout.js +1 -0
- package/esm/system/sizing.d.ts +35 -0
- package/esm/system/sizing.js +1 -0
- package/esm/system/space.d.ts +91 -0
- package/esm/system/space.js +1 -0
- package/esm/system/system.d.ts +19 -0
- package/esm/system/system.js +4 -0
- package/esm/system/tables.d.ts +13 -0
- package/esm/system/tables.js +1 -0
- package/esm/system/transforms.d.ts +56 -0
- package/esm/system/transforms.js +1 -0
- package/esm/system/transitions.d.ts +28 -0
- package/esm/system/transitions.js +1 -0
- package/esm/system/typography.d.ts +75 -0
- package/esm/system/typography.js +1 -0
- package/esm/t/index.d.ts +3 -0
- package/esm/t/index.js +3 -0
- package/esm/t/t.d.ts +5 -0
- package/esm/t/t.js +22 -0
- package/esm/t/t.types.d.ts +17 -0
- package/esm/t/t.types.js +1 -0
- package/esm/t/theme.d.ts +22 -0
- package/esm/t/theme.js +25 -0
- package/esm/tag/context.d.ts +4 -0
- package/esm/tag/context.js +3 -0
- package/esm/tag/index.d.ts +7 -0
- package/esm/tag/index.js +7 -0
- package/esm/tag/tag.d.ts +16 -0
- package/esm/tag/tag.js +74 -0
- package/esm/tag/tag.types.d.ts +34 -0
- package/esm/tag/tag.types.js +1 -0
- package/esm/tag/tagButton.d.ts +4 -0
- package/esm/tag/tagButton.js +12 -0
- package/esm/tag/tagIcon.d.ts +4 -0
- package/esm/tag/tagIcon.js +11 -0
- package/esm/tag/tagText.d.ts +4 -0
- package/esm/tag/tagText.js +11 -0
- package/esm/tag/theme.d.ts +84 -0
- package/esm/tag/theme.js +117 -0
- package/esm/textarea/helpers.d.ts +3 -0
- package/esm/textarea/helpers.js +5 -0
- package/esm/textarea/index.d.ts +3 -0
- package/esm/textarea/index.js +3 -0
- package/esm/textarea/textarea.d.ts +8 -0
- package/esm/textarea/textarea.js +82 -0
- package/esm/textarea/textarea.types.d.ts +46 -0
- package/esm/textarea/textarea.types.js +1 -0
- package/esm/textarea/theme.d.ts +22 -0
- package/esm/textarea/theme.js +31 -0
- package/esm/theme/components.d.ts +1049 -0
- package/esm/theme/components.js +62 -0
- package/esm/theme/defaultTheme.d.ts +1246 -0
- package/esm/theme/defaultTheme.js +7 -0
- package/esm/theme/foundations/animations.d.ts +12 -0
- package/esm/theme/foundations/animations.js +11 -0
- package/esm/theme/foundations/borders.d.ts +2 -0
- package/esm/theme/foundations/borders.js +1 -0
- package/esm/theme/foundations/colors.d.ts +181 -0
- package/esm/theme/foundations/colors.js +99 -0
- package/esm/theme/foundations/durations.d.ts +7 -0
- package/esm/theme/foundations/durations.js +6 -0
- package/esm/theme/foundations/fontSizes.d.ts +7 -0
- package/esm/theme/foundations/fontSizes.js +6 -0
- package/esm/theme/foundations/fontWeights.d.ts +7 -0
- package/esm/theme/foundations/fontWeights.js +6 -0
- package/esm/theme/foundations/fonts.d.ts +4 -0
- package/esm/theme/foundations/fonts.js +3 -0
- package/esm/theme/foundations/gridTemplateColumns.d.ts +15 -0
- package/esm/theme/foundations/gridTemplateColumns.js +14 -0
- package/esm/theme/foundations/gridTemplateRows.d.ts +9 -0
- package/esm/theme/foundations/gridTemplateRows.js +8 -0
- package/esm/theme/foundations/index.d.ts +198 -0
- package/esm/theme/foundations/index.js +42 -0
- package/esm/theme/foundations/radii.d.ts +8 -0
- package/esm/theme/foundations/radii.js +7 -0
- package/esm/theme/foundations/ringWidths.d.ts +2 -0
- package/esm/theme/foundations/ringWidths.js +1 -0
- package/esm/theme/foundations/screens.d.ts +8 -0
- package/esm/theme/foundations/screens.js +7 -0
- package/esm/theme/foundations/shadows.d.ts +20 -0
- package/esm/theme/foundations/shadows.js +23 -0
- package/esm/theme/foundations/sizes.d.ts +2 -0
- package/esm/theme/foundations/sizes.js +1 -0
- package/esm/theme/foundations/spaces.d.ts +2 -0
- package/esm/theme/foundations/spaces.js +1 -0
- package/esm/theme/foundations/timingFunctions.d.ts +2 -0
- package/esm/theme/foundations/timingFunctions.js +1 -0
- package/esm/theme/foundations/transformers.d.ts +5 -0
- package/esm/theme/foundations/transformers.js +14 -0
- package/esm/theme/foundations/transforms.d.ts +2 -0
- package/esm/theme/foundations/transforms.js +1 -0
- package/esm/theme/foundations/transitions.d.ts +2 -0
- package/esm/theme/foundations/transitions.js +1 -0
- package/esm/theme/foundations/zIndices.d.ts +7 -0
- package/esm/theme/foundations/zIndices.js +6 -0
- package/esm/theme/index.d.ts +20 -0
- package/esm/theme/index.js +20 -0
- package/esm/theme/types.d.ts +30 -0
- package/esm/theme/types.js +1 -0
- package/esm/utils/assertion.d.ts +16 -0
- package/esm/utils/assertion.js +29 -0
- package/esm/utils/function.d.ts +9 -0
- package/esm/utils/function.js +14 -0
- package/esm/utils/index.d.ts +7 -0
- package/esm/utils/index.js +7 -0
- package/esm/utils/number.d.ts +2 -0
- package/esm/utils/number.js +4 -0
- package/esm/utils/object.d.ts +17 -0
- package/esm/utils/object.js +43 -0
- package/esm/utils/react.d.ts +39 -0
- package/esm/utils/react.js +112 -0
- package/esm/utils/styles.d.ts +4 -0
- package/esm/utils/styles.js +26 -0
- package/esm/utils/types.d.ts +45 -0
- package/esm/utils/types.js +1 -0
- package/package.json +7 -4
- package/avatar/avatar.js +0 -62
- package/avatar/helpers.js +0 -26
- package/avatar/index.js +0 -20
- package/avatar/theme.js +0 -88
- package/box/box.js +0 -59
- package/box/index.js +0 -20
- package/box/theme.js +0 -12
- package/button/button.js +0 -120
- package/button/buttonIcon.js +0 -41
- package/button/buttonText.js +0 -41
- package/button/buttons.js +0 -28
- package/button/context.d.ts +0 -4
- package/button/context.js +0 -23
- package/button/index.js +0 -24
- package/button/theme.js +0 -149
- package/buttonGroup/buttonGroup.js +0 -73
- package/buttonGroup/context.d.ts +0 -4
- package/buttonGroup/context.js +0 -23
- package/buttonGroup/helpers.js +0 -12
- package/buttonGroup/index.js +0 -21
- package/card/card.js +0 -55
- package/card/index.js +0 -20
- package/card/theme.js +0 -12
- package/checkbox/checkbox.js +0 -116
- package/checkbox/checkboxGroup.js +0 -74
- package/checkbox/context.d.ts +0 -4
- package/checkbox/context.js +0 -23
- package/checkbox/index.js +0 -23
- package/checkbox/theme.js +0 -61
- package/core/index.js +0 -19
- package/core/links.js +0 -179
- package/core/media.js +0 -79
- package/core/styled.js +0 -140
- package/core/theme.js +0 -94
- package/core/vui.js +0 -20
- package/core/vuiProvider/animations.js +0 -12
- package/core/vuiProvider/fontFaces.js +0 -4
- package/core/vuiProvider/globalStyle.js +0 -67
- package/core/vuiProvider/index.js +0 -26
- package/core/vuiProvider/resetCSS.js +0 -10
- package/core/vuiProvider/vuiProvider.js +0 -21
- package/dialog/context.js +0 -23
- package/dialog/dialog.js +0 -122
- package/dialog/dialogBody.js +0 -97
- package/dialog/dialogCancelButton.js +0 -43
- package/dialog/dialogCloseButton.js +0 -43
- package/dialog/dialogFooter.js +0 -45
- package/dialog/dialogHeader.js +0 -53
- package/dialog/dialogIcon.js +0 -45
- package/dialog/dialogSubmitButton.js +0 -41
- package/dialog/dialogTitle.js +0 -43
- package/dialog/index.js +0 -30
- package/dialog/theme.js +0 -28
- package/divider/divider.js +0 -54
- package/divider/index.js +0 -20
- package/divider/theme.js +0 -12
- package/footer/context.js +0 -23
- package/footer/footer.js +0 -67
- package/footer/footerColumn.js +0 -40
- package/footer/footerContent.js +0 -41
- package/footer/footerHeading.js +0 -41
- package/footer/footerLink.js +0 -41
- package/footer/footerRow.js +0 -39
- package/footer/footerSection.js +0 -48
- package/footer/footerTrademark.js +0 -50
- package/footer/helpers.js +0 -113
- package/footer/index.js +0 -27
- package/footer/theme.js +0 -14
- package/grid/grid.js +0 -47
- package/grid/index.js +0 -20
- package/grid/theme.js +0 -12
- package/header/context.js +0 -23
- package/header/header.js +0 -133
- package/header/headerAccount.js +0 -88
- package/header/headerAccount.types.d.ts +0 -35
- package/header/headerAccountUserInfo.js +0 -47
- package/header/headerContent.js +0 -41
- package/header/headerCreateAccount.js +0 -48
- package/header/headerDivider.js +0 -41
- package/header/headerLinkItem.js +0 -53
- package/header/headerLogo.js +0 -47
- package/header/headerMainLinks.js +0 -45
- package/header/headerMobileContent.js +0 -43
- package/header/headerMobileToggle.js +0 -45
- package/header/headerNotifications.js +0 -53
- package/header/headerServices.js +0 -60
- package/header/headerServicesMessage.js +0 -50
- package/header/headerSignIn.js +0 -43
- package/header/helpers.js +0 -115
- package/header/index.js +0 -39
- package/header/loggedInHeader.js +0 -57
- package/header/loggedOutHeader.js +0 -57
- package/header/theme.js +0 -93
- package/heading/heading.js +0 -54
- package/heading/headings.js +0 -26
- package/heading/index.js +0 -21
- package/heading/theme.js +0 -45
- package/icon/helpers.js +0 -61
- package/icon/icon.js +0 -48
- package/icon/index.js +0 -20
- package/icon/theme.js +0 -31
- package/icons/cache.js +0 -68
- package/icons/consts.js +0 -46
- package/icons/index.js +0 -20
- package/image/image.js +0 -47
- package/image/index.js +0 -20
- package/image/theme.js +0 -12
- package/index.js +0 -50
- package/input/context.d.ts +0 -4
- package/input/context.js +0 -23
- package/input/helpers.js +0 -10
- package/input/index.js +0 -22
- package/input/input.js +0 -145
- package/input/inputIcon.js +0 -44
- package/input/inputInput.js +0 -53
- package/input/theme.js +0 -76
- package/link/context.d.ts +0 -4
- package/link/context.js +0 -23
- package/link/index.js +0 -22
- package/link/link.js +0 -87
- package/link/linkIcon.js +0 -41
- package/link/linkText.js +0 -41
- package/link/theme.js +0 -72
- package/list/context.d.ts +0 -4
- package/list/context.js +0 -23
- package/list/index.js +0 -26
- package/list/list.js +0 -85
- package/list/listDivider.js +0 -41
- package/list/listHeading.js +0 -41
- package/list/listIcon.js +0 -41
- package/list/listItem.js +0 -109
- package/list/listText.js +0 -41
- package/list/theme.js +0 -89
- package/menu/context.js +0 -23
- package/menu/index.js +0 -27
- package/menu/menu.js +0 -64
- package/menu/menuButton.js +0 -42
- package/menu/menuItem.js +0 -49
- package/menu/menuList.js +0 -48
- package/menu/theme.js +0 -27
- package/modal/context.js +0 -23
- package/modal/focusLock.js +0 -47
- package/modal/index.js +0 -26
- package/modal/modal.js +0 -113
- package/modal/modalBackdrop.js +0 -49
- package/modal/modalContent.js +0 -50
- package/modal/modalManager.js +0 -33
- package/modal/theme.js +0 -14
- package/notification/context.d.ts +0 -4
- package/notification/context.js +0 -23
- package/notification/index.js +0 -25
- package/notification/notification.js +0 -65
- package/notification/notificationButton.js +0 -42
- package/notification/notificationIcon.js +0 -46
- package/notification/notificationText.js +0 -41
- package/notification/notificationTitle.js +0 -41
- package/notification/theme.js +0 -42
- package/p/index.js +0 -20
- package/p/p.js +0 -53
- package/p/theme.js +0 -35
- package/pagination/context.js +0 -23
- package/pagination/helpers.js +0 -56
- package/pagination/index.js +0 -31
- package/pagination/pagination.js +0 -70
- package/pagination/paginationButton.js +0 -51
- package/pagination/paginationEllipsis.js +0 -41
- package/pagination/paginationGoToPage.js +0 -53
- package/pagination/paginationNavigation.js +0 -68
- package/pagination/paginationPrevNext.js +0 -49
- package/pagination/paginationResults.js +0 -42
- package/pagination/theme.js +0 -14
- package/pagination/usePagination.js +0 -58
- package/panel/index.js +0 -20
- package/panel/panel.js +0 -43
- package/panel/theme.js +0 -22
- package/popover/consts.js +0 -42
- package/popover/context.js +0 -23
- package/popover/index.js +0 -31
- package/popover/popover.js +0 -47
- package/popover/popoverContent.js +0 -48
- package/popover/popoverStyle.js +0 -9
- package/popover/popoverTrigger.js +0 -53
- package/popover/theme.js +0 -14
- package/popover/usePopover.js +0 -122
- package/portal/index.js +0 -20
- package/portal/portal.js +0 -56
- package/radio/context.d.ts +0 -4
- package/radio/context.js +0 -23
- package/radio/index.js +0 -23
- package/radio/radio.js +0 -121
- package/radio/radioGroup.js +0 -109
- package/radio/theme.js +0 -61
- package/skeleton/index.js +0 -20
- package/skeleton/skeleton.js +0 -51
- package/skeleton/theme.js +0 -49
- package/spinner/consts.d.ts +0 -24
- package/spinner/consts.js +0 -22
- package/spinner/index.js +0 -20
- package/spinner/spinner.js +0 -68
- package/spinner/theme.js +0 -75
- package/svg/cache.js +0 -32
- package/svg/helpers.js +0 -33
- package/svg/index.js +0 -20
- package/svg/svg.js +0 -175
- package/switch/context.d.ts +0 -4
- package/switch/context.js +0 -23
- package/switch/index.js +0 -23
- package/switch/switch.js +0 -97
- package/switch/switchButton.js +0 -138
- package/switch/switchLabel.js +0 -41
- package/switch/theme.js +0 -88
- package/system/custom.js +0 -32
- package/system/index.js +0 -27
- package/system/system.js +0 -7
- package/t/index.js +0 -20
- package/t/t.js +0 -55
- package/t/theme.js +0 -27
- package/tag/context.d.ts +0 -4
- package/tag/context.js +0 -23
- package/tag/index.js +0 -24
- package/tag/tag.js +0 -108
- package/tag/tagButton.js +0 -42
- package/tag/tagIcon.js +0 -41
- package/tag/tagText.js +0 -41
- package/tag/theme.js +0 -119
- package/textarea/helpers.js +0 -10
- package/textarea/index.js +0 -20
- package/textarea/textarea.js +0 -130
- package/textarea/theme.js +0 -33
- package/theme/components.js +0 -67
- package/theme/defaultTheme.js +0 -20
- package/theme/foundations/fonts.js +0 -5
- package/theme/foundations/index.js +0 -47
- package/theme/foundations/shadows.js +0 -25
- package/theme/foundations/transformers.js +0 -34
- package/theme/index.js +0 -56
- package/utils/assertion.js +0 -42
- package/utils/function.js +0 -59
- package/utils/index.js +0 -19
- package/utils/number.js +0 -10
- package/utils/object.js +0 -53
- package/utils/react.d.ts +0 -39
- package/utils/react.js +0 -181
- package/utils/styles.js +0 -35
- /package/{avatar → cjs/avatar}/avatar.d.ts +0 -0
- /package/{avatar → cjs/avatar}/avatar.types.d.ts +0 -0
- /package/{avatar → cjs/avatar}/avatar.types.js +0 -0
- /package/{avatar → cjs/avatar}/helpers.d.ts +0 -0
- /package/{avatar → cjs/avatar}/index.d.ts +0 -0
- /package/{avatar → cjs/avatar}/theme.d.ts +0 -0
- /package/{box → cjs/box}/box.d.ts +0 -0
- /package/{box → cjs/box}/box.types.d.ts +0 -0
- /package/{box → cjs/box}/box.types.js +0 -0
- /package/{box → cjs/box}/index.d.ts +0 -0
- /package/{box → cjs/box}/theme.d.ts +0 -0
- /package/{button → cjs/button}/button.d.ts +0 -0
- /package/{button → cjs/button}/button.types.d.ts +0 -0
- /package/{button → cjs/button}/button.types.js +0 -0
- /package/{button → cjs/button}/buttonIcon.d.ts +0 -0
- /package/{button → cjs/button}/buttonText.d.ts +0 -0
- /package/{button → cjs/button}/buttons.d.ts +0 -0
- /package/{button → cjs/button}/consts.d.ts +0 -0
- /package/{button → cjs/button}/consts.js +0 -0
- /package/{button → cjs/button}/index.d.ts +0 -0
- /package/{button → cjs/button}/theme.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/buttonGroup.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/buttonGroup.types.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/buttonGroup.types.js +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/helpers.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/index.d.ts +0 -0
- /package/{card → cjs/card}/card.d.ts +0 -0
- /package/{card → cjs/card}/card.types.d.ts +0 -0
- /package/{card → cjs/card}/card.types.js +0 -0
- /package/{card → cjs/card}/index.d.ts +0 -0
- /package/{card → cjs/card}/theme.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkbox.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkbox.types.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkbox.types.js +0 -0
- /package/{checkbox → cjs/checkbox}/checkboxGroup.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkboxGroup.types.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkboxGroup.types.js +0 -0
- /package/{checkbox → cjs/checkbox}/index.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/theme.d.ts +0 -0
- /package/{core → cjs/core}/consts.d.ts +0 -0
- /package/{core → cjs/core}/consts.js +0 -0
- /package/{core → cjs/core}/index.d.ts +0 -0
- /package/{core → cjs/core}/links.d.ts +0 -0
- /package/{core → cjs/core}/media.d.ts +0 -0
- /package/{core → cjs/core}/styled.d.ts +0 -0
- /package/{core → cjs/core}/theme.d.ts +0 -0
- /package/{core → cjs/core}/vui.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/animations.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/fontFaces.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/globalStyle.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/index.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/resetCSS.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/vuiProvider.d.ts +0 -0
- /package/{dialog → cjs/dialog}/consts.d.ts +0 -0
- /package/{dialog → cjs/dialog}/consts.js +0 -0
- /package/{dialog → cjs/dialog}/context.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialog.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialog.types.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialog.types.js +0 -0
- /package/{dialog → cjs/dialog}/dialogBody.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogCancelButton.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogCloseButton.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogFooter.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogHeader.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogIcon.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogSubmitButton.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogTitle.d.ts +0 -0
- /package/{dialog → cjs/dialog}/index.d.ts +0 -0
- /package/{dialog → cjs/dialog}/theme.d.ts +0 -0
- /package/{divider → cjs/divider}/divider.d.ts +0 -0
- /package/{divider → cjs/divider}/divider.types.d.ts +0 -0
- /package/{divider → cjs/divider}/divider.types.js +0 -0
- /package/{divider → cjs/divider}/index.d.ts +0 -0
- /package/{divider → cjs/divider}/theme.d.ts +0 -0
- /package/{footer → cjs/footer}/context.d.ts +0 -0
- /package/{footer → cjs/footer}/footer.d.ts +0 -0
- /package/{footer → cjs/footer}/footer.types.d.ts +0 -0
- /package/{footer → cjs/footer}/footer.types.js +0 -0
- /package/{footer → cjs/footer}/footerColumn.d.ts +0 -0
- /package/{footer → cjs/footer}/footerContent.d.ts +0 -0
- /package/{footer → cjs/footer}/footerHeading.d.ts +0 -0
- /package/{footer → cjs/footer}/footerLink.d.ts +0 -0
- /package/{footer → cjs/footer}/footerRow.d.ts +0 -0
- /package/{footer → cjs/footer}/footerSection.d.ts +0 -0
- /package/{footer → cjs/footer}/footerTrademark.d.ts +0 -0
- /package/{footer → cjs/footer}/helpers.d.ts +0 -0
- /package/{footer → cjs/footer}/index.d.ts +0 -0
- /package/{footer → cjs/footer}/theme.d.ts +0 -0
- /package/{grid → cjs/grid}/grid.d.ts +0 -0
- /package/{grid → cjs/grid}/grid.types.d.ts +0 -0
- /package/{grid → cjs/grid}/grid.types.js +0 -0
- /package/{grid → cjs/grid}/index.d.ts +0 -0
- /package/{grid → cjs/grid}/theme.d.ts +0 -0
- /package/{header → cjs/header}/context.d.ts +0 -0
- /package/{header → cjs/header}/header.d.ts +0 -0
- /package/{header → cjs/header}/header.types.d.ts +0 -0
- /package/{header → cjs/header}/header.types.js +0 -0
- /package/{header → cjs/header}/headerAccount.d.ts +0 -0
- /package/{header → cjs/header}/headerAccount.types.js +0 -0
- /package/{header → cjs/header}/headerAccountUserInfo.d.ts +0 -0
- /package/{header → cjs/header}/headerContent.d.ts +0 -0
- /package/{header → cjs/header}/headerCreateAccount.d.ts +0 -0
- /package/{header → cjs/header}/headerDivider.d.ts +0 -0
- /package/{header → cjs/header}/headerLinkItem.d.ts +0 -0
- /package/{header → cjs/header}/headerLogo.d.ts +0 -0
- /package/{header → cjs/header}/headerMainLinks.d.ts +0 -0
- /package/{header → cjs/header}/headerMobileContent.d.ts +0 -0
- /package/{header → cjs/header}/headerMobileToggle.d.ts +0 -0
- /package/{header → cjs/header}/headerNotifications.d.ts +0 -0
- /package/{header → cjs/header}/headerServices.d.ts +0 -0
- /package/{header → cjs/header}/headerServicesMessage.d.ts +0 -0
- /package/{header → cjs/header}/headerSignIn.d.ts +0 -0
- /package/{header → cjs/header}/helpers.d.ts +0 -0
- /package/{header → cjs/header}/index.d.ts +0 -0
- /package/{header → cjs/header}/loggedInHeader.d.ts +0 -0
- /package/{header → cjs/header}/loggedOutHeader.d.ts +0 -0
- /package/{header → cjs/header}/theme.d.ts +0 -0
- /package/{heading → cjs/heading}/heading.d.ts +0 -0
- /package/{heading → cjs/heading}/heading.types.d.ts +0 -0
- /package/{heading → cjs/heading}/heading.types.js +0 -0
- /package/{heading → cjs/heading}/headings.d.ts +0 -0
- /package/{heading → cjs/heading}/index.d.ts +0 -0
- /package/{heading → cjs/heading}/theme.d.ts +0 -0
- /package/{icon → cjs/icon}/helpers.d.ts +0 -0
- /package/{icon → cjs/icon}/icon.d.ts +0 -0
- /package/{icon → cjs/icon}/icon.types.d.ts +0 -0
- /package/{icon → cjs/icon}/icon.types.js +0 -0
- /package/{icon → cjs/icon}/index.d.ts +0 -0
- /package/{icon → cjs/icon}/theme.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubPowerBi.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubPowerBi.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubVeracity.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubVeracity.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxIndeterminate.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxIndeterminate.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxSelected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxSelected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxUnselected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxUnselected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioSelected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioSelected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioUnselected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioUnselected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiProduct.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiProduct.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiService.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiService.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChart.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChart.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChartAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChartAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCovid.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCovid.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDeepSearch.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDeepSearch.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDotsMenu.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDotsMenu.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culGlobePlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culGlobePlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culListDense.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culListDense.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culMapMarkerStar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culMapMarkerStar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culNumber1.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culNumber1.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culPlusThin.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culPlusThin.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshot.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshot.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshotAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshotAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culShortcut.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culShortcut.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTarget.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTarget.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTimesThin.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTimesThin.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTransformer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTransformer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culUserTransfer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culUserTransfer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVeracityService.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVeracityService.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVessel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVessel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVesselGroup.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVesselGroup.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFull.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFull.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFullAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFullAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotsMenu.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotsMenu.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusTransformer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusTransformer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusVessel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusVessel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabApplePay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabApplePay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBluetooth.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBluetooth.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBtc.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBtc.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmazonPay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmazonPay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmex.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmex.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcApplePay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcApplePay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcDinersClub.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcDinersClub.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcMastercard.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcMastercard.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcPaypal.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcPaypal.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcVisa.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcVisa.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabDhl.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabDhl.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabEbay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabEbay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFacebook.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFacebook.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFedex.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFedex.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFirefox.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFirefox.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogleDrive.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogleDrive.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabLinkedinIn.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabLinkedinIn.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabMedium.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabMedium.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabOsi.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabOsi.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabSlack.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabSlack.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabTwitter.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabTwitter.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabUps.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabUps.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabYoutube.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabYoutube.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fad/fadSpinnerThird.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fad/fadSpinnerThird.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressBook.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressBook.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressCard.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressCard.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAnalytics.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAnalytics.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromBottom.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromBottom.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromTop.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromTop.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToBottom.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToBottom.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToTop.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToTop.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrows.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrows.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAward.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAward.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBan.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBan.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBars.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBars.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBell.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBell.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBookOpen.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBookOpen.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroadcastTower.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroadcastTower.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroom.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroom.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBuilding.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBuilding.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBullseye.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBullseye.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendarAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendarAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCamera.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCamera.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCauldron.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCauldron.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartArea.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartArea.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartBar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartBar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLineDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLineDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartNetwork.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartNetwork.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPie.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPie.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPieAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPieAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartScatter.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartScatter.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckSquare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckSquare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloud.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloud.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudShowersHeavy.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudShowersHeavy.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSnow.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSnow.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSun.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSun.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSunRain.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSunRain.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudUpload.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudUpload.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCode.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCode.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCog.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCog.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCogs.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCogs.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falComment.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falComment.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCommentAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCommentAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCompressAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCompressAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCopy.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCopy.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCreditCard.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCreditCard.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDatabase.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDatabase.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDotCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDotCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDownload.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDownload.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEdit.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEdit.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisH.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisH.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisV.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisV.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEnvelope.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEnvelope.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExchange.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExchange.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationTriangle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationTriangle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExpandAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExpandAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExternalLink.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExternalLink.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEye.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEye.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEyeSlash.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEyeSlash.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFile.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFile.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileArchive.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileArchive.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAudio.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAudio.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCertificate.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCertificate.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartLine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartLine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartPie.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartPie.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCode.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCode.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCsv.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCsv.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileEdit.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileEdit.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileExcel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileExcel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileImage.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileImage.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileInvoiceDollar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileInvoiceDollar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePdf.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePdf.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePowerpoint.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePowerpoint.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileSpreadsheet.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileSpreadsheet.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileVideo.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileVideo.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileWord.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileWord.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilter.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilter.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFlag.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFlag.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolder.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolder.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderOpen.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderOpen.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolders.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolders.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlassesAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlassesAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlobe.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlobe.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHome.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHome.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHourglass.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHourglass.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falImage.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falImage.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falInfoCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falInfoCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falKey.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falKey.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerGroup.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerGroup.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLink.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLink.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falList.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falList.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLockAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLockAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMap.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMap.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarked.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarked.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkedAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkedAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarker.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarker.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAltSlash.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAltSlash.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerExclamation.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerExclamation.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMinus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMinus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPause.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPause.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPauseCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPauseCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPen.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPen.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlayCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlayCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlug.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlug.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusSquare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusSquare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPrint.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPrint.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPuzzlePiece.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPuzzlePiece.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falQuestionCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falQuestionCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falReceipt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falReceipt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falRedo.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falRedo.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSave.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSave.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearch.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearch.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchMinus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchMinus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falServer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falServer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAll.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAll.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShip.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShip.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShoppingBasket.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShoppingBasket.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignIn.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignIn.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignInAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignInAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOut.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOut.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOutAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOutAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSlidersV.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSlidersV.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowBlowing.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowBlowing.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowflake.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowflake.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSolarPanel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSolarPanel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSort.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSort.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSpinner.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSpinner.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSquare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSquare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStepForward.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStepForward.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStop.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStop.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopwatch.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopwatch.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSuitcase.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSuitcase.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSun.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSun.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSync.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSync.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTachometer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTachometer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTemperatureHigh.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTemperatureHigh.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTh.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTh.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThLarge.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThLarge.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThList.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThList.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimes.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimes.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimesCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimesCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOff.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOff.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOn.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOn.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTrashAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTrashAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUnlockAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUnlockAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUser.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUser.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserChart.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserChart.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCog.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCog.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserEdit.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserEdit.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserFriends.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserFriends.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserShield.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserShield.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserTimes.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserTimes.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsers.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsers.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsersClass.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsersClass.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWater.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWater.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWind.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWind.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWindTurbine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWindTurbine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWrench.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWrench.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCalendarAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCalendarAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCheckCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCheckCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasDiamond.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasDiamond.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasFolder.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasFolder.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerExclamation.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerExclamation.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSolarPanel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSolarPanel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSort.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSort.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasStar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasStar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasWindTurbine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasWindTurbine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/icons.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/icons.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/types.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/types.js +0 -0
- /package/{icons → cjs/icons}/cache.d.ts +0 -0
- /package/{icons → cjs/icons}/consts.d.ts +0 -0
- /package/{icons → cjs/icons}/index.d.ts +0 -0
- /package/{icons → cjs/icons}/types.d.ts +0 -0
- /package/{icons → cjs/icons}/types.js +0 -0
- /package/{image → cjs/image}/image.d.ts +0 -0
- /package/{image → cjs/image}/image.types.d.ts +0 -0
- /package/{image → cjs/image}/image.types.js +0 -0
- /package/{image → cjs/image}/index.d.ts +0 -0
- /package/{image → cjs/image}/theme.d.ts +0 -0
- /package/{index.d.ts → cjs/index.d.ts} +0 -0
- /package/{input → cjs/input}/consts.d.ts +0 -0
- /package/{input → cjs/input}/consts.js +0 -0
- /package/{input → cjs/input}/helpers.d.ts +0 -0
- /package/{input → cjs/input}/index.d.ts +0 -0
- /package/{input → cjs/input}/input.d.ts +0 -0
- /package/{input → cjs/input}/input.types.d.ts +0 -0
- /package/{input → cjs/input}/input.types.js +0 -0
- /package/{input → cjs/input}/inputIcon.d.ts +0 -0
- /package/{input → cjs/input}/inputInput.d.ts +0 -0
- /package/{input → cjs/input}/theme.d.ts +0 -0
- /package/{link → cjs/link}/index.d.ts +0 -0
- /package/{link → cjs/link}/link.d.ts +0 -0
- /package/{link → cjs/link}/link.types.d.ts +0 -0
- /package/{link → cjs/link}/link.types.js +0 -0
- /package/{link → cjs/link}/linkIcon.d.ts +0 -0
- /package/{link → cjs/link}/linkText.d.ts +0 -0
- /package/{link → cjs/link}/theme.d.ts +0 -0
- /package/{list → cjs/list}/index.d.ts +0 -0
- /package/{list → cjs/list}/list.d.ts +0 -0
- /package/{list → cjs/list}/list.types.d.ts +0 -0
- /package/{list → cjs/list}/list.types.js +0 -0
- /package/{list → cjs/list}/listDivider.d.ts +0 -0
- /package/{list → cjs/list}/listHeading.d.ts +0 -0
- /package/{list → cjs/list}/listIcon.d.ts +0 -0
- /package/{list → cjs/list}/listItem.d.ts +0 -0
- /package/{list → cjs/list}/listText.d.ts +0 -0
- /package/{list → cjs/list}/theme.d.ts +0 -0
- /package/{menu → cjs/menu}/context.d.ts +0 -0
- /package/{menu → cjs/menu}/index.d.ts +0 -0
- /package/{menu → cjs/menu}/menu.d.ts +0 -0
- /package/{menu → cjs/menu}/menu.types.d.ts +0 -0
- /package/{menu → cjs/menu}/menu.types.js +0 -0
- /package/{menu → cjs/menu}/menuButton.d.ts +0 -0
- /package/{menu → cjs/menu}/menuItem.d.ts +0 -0
- /package/{menu → cjs/menu}/menuList.d.ts +0 -0
- /package/{menu → cjs/menu}/theme.d.ts +0 -0
- /package/{modal → cjs/modal}/context.d.ts +0 -0
- /package/{modal → cjs/modal}/focusLock.d.ts +0 -0
- /package/{modal → cjs/modal}/focusLock.types.d.ts +0 -0
- /package/{modal → cjs/modal}/focusLock.types.js +0 -0
- /package/{modal → cjs/modal}/index.d.ts +0 -0
- /package/{modal → cjs/modal}/modal.d.ts +0 -0
- /package/{modal → cjs/modal}/modal.types.d.ts +0 -0
- /package/{modal → cjs/modal}/modal.types.js +0 -0
- /package/{modal → cjs/modal}/modalBackdrop.d.ts +0 -0
- /package/{modal → cjs/modal}/modalContent.d.ts +0 -0
- /package/{modal → cjs/modal}/modalManager.d.ts +0 -0
- /package/{modal → cjs/modal}/theme.d.ts +0 -0
- /package/{notification → cjs/notification}/consts.d.ts +0 -0
- /package/{notification → cjs/notification}/consts.js +0 -0
- /package/{notification → cjs/notification}/index.d.ts +0 -0
- /package/{notification → cjs/notification}/notification.d.ts +0 -0
- /package/{notification → cjs/notification}/notification.types.d.ts +0 -0
- /package/{notification → cjs/notification}/notification.types.js +0 -0
- /package/{notification → cjs/notification}/notificationButton.d.ts +0 -0
- /package/{notification → cjs/notification}/notificationIcon.d.ts +0 -0
- /package/{notification → cjs/notification}/notificationText.d.ts +0 -0
- /package/{notification → cjs/notification}/notificationTitle.d.ts +0 -0
- /package/{notification → cjs/notification}/theme.d.ts +0 -0
- /package/{p → cjs/p}/index.d.ts +0 -0
- /package/{p → cjs/p}/p.d.ts +0 -0
- /package/{p → cjs/p}/p.types.d.ts +0 -0
- /package/{p → cjs/p}/p.types.js +0 -0
- /package/{p → cjs/p}/theme.d.ts +0 -0
- /package/{pagination → cjs/pagination}/context.d.ts +0 -0
- /package/{pagination → cjs/pagination}/helpers.d.ts +0 -0
- /package/{pagination → cjs/pagination}/index.d.ts +0 -0
- /package/{pagination → cjs/pagination}/pagination.d.ts +0 -0
- /package/{pagination → cjs/pagination}/pagination.types.d.ts +0 -0
- /package/{pagination → cjs/pagination}/pagination.types.js +0 -0
- /package/{pagination → cjs/pagination}/paginationButton.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationEllipsis.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationGoToPage.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationNavigation.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationPrevNext.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationResults.d.ts +0 -0
- /package/{pagination → cjs/pagination}/theme.d.ts +0 -0
- /package/{pagination → cjs/pagination}/usePagination.d.ts +0 -0
- /package/{pagination → cjs/pagination}/usePagination.types.d.ts +0 -0
- /package/{pagination → cjs/pagination}/usePagination.types.js +0 -0
- /package/{panel → cjs/panel}/index.d.ts +0 -0
- /package/{panel → cjs/panel}/panel.d.ts +0 -0
- /package/{panel → cjs/panel}/panel.types.d.ts +0 -0
- /package/{panel → cjs/panel}/panel.types.js +0 -0
- /package/{panel → cjs/panel}/theme.d.ts +0 -0
- /package/{popover → cjs/popover}/consts.d.ts +0 -0
- /package/{popover → cjs/popover}/context.d.ts +0 -0
- /package/{popover → cjs/popover}/index.d.ts +0 -0
- /package/{popover → cjs/popover}/popover.d.ts +0 -0
- /package/{popover → cjs/popover}/popover.types.d.ts +0 -0
- /package/{popover → cjs/popover}/popover.types.js +0 -0
- /package/{popover → cjs/popover}/popoverContent.d.ts +0 -0
- /package/{popover → cjs/popover}/popoverStyle.d.ts +0 -0
- /package/{popover → cjs/popover}/popoverTrigger.d.ts +0 -0
- /package/{popover → cjs/popover}/theme.d.ts +0 -0
- /package/{popover → cjs/popover}/usePopover.d.ts +0 -0
- /package/{popover → cjs/popover}/usePopover.types.d.ts +0 -0
- /package/{popover → cjs/popover}/usePopover.types.js +0 -0
- /package/{portal → cjs/portal}/index.d.ts +0 -0
- /package/{portal → cjs/portal}/portal.d.ts +0 -0
- /package/{portal → cjs/portal}/portal.types.d.ts +0 -0
- /package/{portal → cjs/portal}/portal.types.js +0 -0
- /package/{radio → cjs/radio}/index.d.ts +0 -0
- /package/{radio → cjs/radio}/radio.d.ts +0 -0
- /package/{radio → cjs/radio}/radio.types.d.ts +0 -0
- /package/{radio → cjs/radio}/radio.types.js +0 -0
- /package/{radio → cjs/radio}/radioGroup.d.ts +0 -0
- /package/{radio → cjs/radio}/radioGroup.types.d.ts +0 -0
- /package/{radio → cjs/radio}/radioGroup.types.js +0 -0
- /package/{radio → cjs/radio}/theme.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/index.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/skeleton.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/skeleton.types.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/skeleton.types.js +0 -0
- /package/{skeleton → cjs/skeleton}/theme.d.ts +0 -0
- /package/{spinner → cjs/spinner}/index.d.ts +0 -0
- /package/{spinner → cjs/spinner}/spinner.d.ts +0 -0
- /package/{spinner → cjs/spinner}/spinner.types.d.ts +0 -0
- /package/{spinner → cjs/spinner}/spinner.types.js +0 -0
- /package/{spinner → cjs/spinner}/theme.d.ts +0 -0
- /package/{svg → cjs/svg}/cache.d.ts +0 -0
- /package/{svg → cjs/svg}/helpers.d.ts +0 -0
- /package/{svg → cjs/svg}/index.d.ts +0 -0
- /package/{svg → cjs/svg}/svg.d.ts +0 -0
- /package/{svg → cjs/svg}/svg.types.d.ts +0 -0
- /package/{svg → cjs/svg}/svg.types.js +0 -0
- /package/{switch → cjs/switch}/index.d.ts +0 -0
- /package/{switch → cjs/switch}/switch.d.ts +0 -0
- /package/{switch → cjs/switch}/switch.types.d.ts +0 -0
- /package/{switch → cjs/switch}/switch.types.js +0 -0
- /package/{switch → cjs/switch}/switchButton.d.ts +0 -0
- /package/{switch → cjs/switch}/switchLabel.d.ts +0 -0
- /package/{switch → cjs/switch}/theme.d.ts +0 -0
- /package/{system → cjs/system}/animations.d.ts +0 -0
- /package/{system → cjs/system}/animations.js +0 -0
- /package/{system → cjs/system}/backgrounds.d.ts +0 -0
- /package/{system → cjs/system}/backgrounds.js +0 -0
- /package/{system → cjs/system}/borders.d.ts +0 -0
- /package/{system → cjs/system}/borders.js +0 -0
- /package/{system → cjs/system}/colors.d.ts +0 -0
- /package/{system → cjs/system}/colors.js +0 -0
- /package/{system → cjs/system}/custom.d.ts +0 -0
- /package/{system → cjs/system}/effects.d.ts +0 -0
- /package/{system → cjs/system}/effects.js +0 -0
- /package/{system → cjs/system}/flexboxGrids.d.ts +0 -0
- /package/{system → cjs/system}/flexboxGrids.js +0 -0
- /package/{system → cjs/system}/flexboxes.d.ts +0 -0
- /package/{system → cjs/system}/flexboxes.js +0 -0
- /package/{system → cjs/system}/grids.d.ts +0 -0
- /package/{system → cjs/system}/grids.js +0 -0
- /package/{system → cjs/system}/index.d.ts +0 -0
- /package/{system → cjs/system}/interactivity.d.ts +0 -0
- /package/{system → cjs/system}/interactivity.js +0 -0
- /package/{system → cjs/system}/layout.d.ts +0 -0
- /package/{system → cjs/system}/layout.js +0 -0
- /package/{system → cjs/system}/sizing.d.ts +0 -0
- /package/{system → cjs/system}/sizing.js +0 -0
- /package/{system → cjs/system}/space.d.ts +0 -0
- /package/{system → cjs/system}/space.js +0 -0
- /package/{system → cjs/system}/system.d.ts +0 -0
- /package/{system → cjs/system}/tables.d.ts +0 -0
- /package/{system → cjs/system}/tables.js +0 -0
- /package/{system → cjs/system}/transforms.d.ts +0 -0
- /package/{system → cjs/system}/transforms.js +0 -0
- /package/{system → cjs/system}/transitions.d.ts +0 -0
- /package/{system → cjs/system}/transitions.js +0 -0
- /package/{system → cjs/system}/typography.d.ts +0 -0
- /package/{system → cjs/system}/typography.js +0 -0
- /package/{t → cjs/t}/index.d.ts +0 -0
- /package/{t → cjs/t}/t.d.ts +0 -0
- /package/{t → cjs/t}/t.types.d.ts +0 -0
- /package/{t → cjs/t}/t.types.js +0 -0
- /package/{t → cjs/t}/theme.d.ts +0 -0
- /package/{tag → cjs/tag}/index.d.ts +0 -0
- /package/{tag → cjs/tag}/tag.d.ts +0 -0
- /package/{tag → cjs/tag}/tag.types.d.ts +0 -0
- /package/{tag → cjs/tag}/tag.types.js +0 -0
- /package/{tag → cjs/tag}/tagButton.d.ts +0 -0
- /package/{tag → cjs/tag}/tagIcon.d.ts +0 -0
- /package/{tag → cjs/tag}/tagText.d.ts +0 -0
- /package/{tag → cjs/tag}/theme.d.ts +0 -0
- /package/{textarea → cjs/textarea}/helpers.d.ts +0 -0
- /package/{textarea → cjs/textarea}/index.d.ts +0 -0
- /package/{textarea → cjs/textarea}/textarea.d.ts +0 -0
- /package/{textarea → cjs/textarea}/textarea.types.d.ts +0 -0
- /package/{textarea → cjs/textarea}/textarea.types.js +0 -0
- /package/{textarea → cjs/textarea}/theme.d.ts +0 -0
- /package/{theme → cjs/theme}/components.d.ts +0 -0
- /package/{theme → cjs/theme}/defaultTheme.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/animations.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/animations.js +0 -0
- /package/{theme → cjs/theme}/foundations/borders.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/borders.js +0 -0
- /package/{theme → cjs/theme}/foundations/colors.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/colors.js +0 -0
- /package/{theme → cjs/theme}/foundations/durations.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/durations.js +0 -0
- /package/{theme → cjs/theme}/foundations/fontSizes.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/fontSizes.js +0 -0
- /package/{theme → cjs/theme}/foundations/fontWeights.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/fontWeights.js +0 -0
- /package/{theme → cjs/theme}/foundations/fonts.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateColumns.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateColumns.js +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateRows.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateRows.js +0 -0
- /package/{theme → cjs/theme}/foundations/index.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/radii.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/radii.js +0 -0
- /package/{theme → cjs/theme}/foundations/ringWidths.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/ringWidths.js +0 -0
- /package/{theme → cjs/theme}/foundations/screens.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/screens.js +0 -0
- /package/{theme → cjs/theme}/foundations/shadows.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/sizes.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/sizes.js +0 -0
- /package/{theme → cjs/theme}/foundations/spaces.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/spaces.js +0 -0
- /package/{theme → cjs/theme}/foundations/timingFunctions.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/timingFunctions.js +0 -0
- /package/{theme → cjs/theme}/foundations/transformers.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/transforms.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/transforms.js +0 -0
- /package/{theme → cjs/theme}/foundations/transitions.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/transitions.js +0 -0
- /package/{theme → cjs/theme}/foundations/zIndices.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/zIndices.js +0 -0
- /package/{theme → cjs/theme}/index.d.ts +0 -0
- /package/{theme → cjs/theme}/types.d.ts +0 -0
- /package/{theme → cjs/theme}/types.js +0 -0
- /package/{utils → cjs/utils}/assertion.d.ts +0 -0
- /package/{utils → cjs/utils}/function.d.ts +0 -0
- /package/{utils → cjs/utils}/index.d.ts +0 -0
- /package/{utils → cjs/utils}/number.d.ts +0 -0
- /package/{utils → cjs/utils}/object.d.ts +0 -0
- /package/{utils → cjs/utils}/styles.d.ts +0 -0
- /package/{utils → cjs/utils}/types.d.ts +0 -0
- /package/{utils → cjs/utils}/types.js +0 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
function variantDefault(props) {
|
|
2
|
+
const { colorScheme: c } = props;
|
|
3
|
+
const control = {
|
|
4
|
+
color: `${c}.80`,
|
|
5
|
+
hoverColor: `${c}.90`
|
|
6
|
+
};
|
|
7
|
+
if (c === 'prussian') {
|
|
8
|
+
control.hoverColor = 'prussian.70';
|
|
9
|
+
}
|
|
10
|
+
return {
|
|
11
|
+
control
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
const baseStyle = {};
|
|
15
|
+
const defaultProps = {
|
|
16
|
+
colorScheme: 'blue',
|
|
17
|
+
size: 'md',
|
|
18
|
+
variant: 'default'
|
|
19
|
+
};
|
|
20
|
+
const parts = ['container', 'control', 'label'];
|
|
21
|
+
const sizes = {
|
|
22
|
+
sm: {
|
|
23
|
+
control: {
|
|
24
|
+
h: 16,
|
|
25
|
+
w: 16
|
|
26
|
+
},
|
|
27
|
+
label: {
|
|
28
|
+
size: 'sm'
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
md: {
|
|
32
|
+
control: {
|
|
33
|
+
h: 20,
|
|
34
|
+
w: 20
|
|
35
|
+
},
|
|
36
|
+
label: {
|
|
37
|
+
size: 'md'
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
lg: {
|
|
41
|
+
control: {
|
|
42
|
+
h: 24,
|
|
43
|
+
w: 24
|
|
44
|
+
},
|
|
45
|
+
label: {
|
|
46
|
+
size: 'lg'
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
const variants = {
|
|
51
|
+
default: variantDefault
|
|
52
|
+
};
|
|
53
|
+
export default {
|
|
54
|
+
baseStyle,
|
|
55
|
+
defaultProps,
|
|
56
|
+
parts,
|
|
57
|
+
sizes,
|
|
58
|
+
variants
|
|
59
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const cdnUrl = "https://cdn.veracity.com";
|
|
2
|
+
export declare const cdnStagUrl = "https://cdnstag.veracity.com";
|
|
3
|
+
export declare const cdnTestUrl = "https://cdntest.veracity.com";
|
|
4
|
+
export declare const cdnUrls: {
|
|
5
|
+
readonly Prod: "https://cdn.veracity.com";
|
|
6
|
+
readonly Stag: "https://cdnstag.veracity.com";
|
|
7
|
+
readonly Test: "https://cdntest.veracity.com";
|
|
8
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { Dispatch, SetStateAction } from 'react';
|
|
2
|
+
import { Dict, Environment } from '../utils';
|
|
3
|
+
export declare type LinksDict = Dict<string>;
|
|
4
|
+
declare type LinksContextType = [LinksDict, Dispatch<SetStateAction<LinksDict>>];
|
|
5
|
+
/**
|
|
6
|
+
* Adds loggedIn=1 parameter to the URL if 'isLoggedIn' flag is true, which means the user is logged in.
|
|
7
|
+
* If 'isLoggedIn' is falsy, loggedin param will be removed.
|
|
8
|
+
* This is supposed to aid login flow when navigating between Veracity applications.
|
|
9
|
+
*/
|
|
10
|
+
export declare function getLoggedInLink(link: string, isLoggedIn?: boolean): string;
|
|
11
|
+
export declare function LinksProvider(props: {
|
|
12
|
+
children: React.ReactNode;
|
|
13
|
+
}): JSX.Element;
|
|
14
|
+
/** Returns links and setLinks from LinksContext. */
|
|
15
|
+
export declare function useLinks(): LinksContextType;
|
|
16
|
+
/**
|
|
17
|
+
* Retrieves the links from CDN for the given environment and appends them with loggedin=1 parameter
|
|
18
|
+
* if user is logged in. Links will be reloaded when 'env' changes or updated when 'isLoggedIn' changes.
|
|
19
|
+
*/
|
|
20
|
+
export declare function useLoadLinks(env?: Environment, isLoggedIn?: boolean): void;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import React, { createContext, useContext, useEffect, useState } from 'react';
|
|
2
|
+
import { isObject, noop } from '../utils';
|
|
3
|
+
import { cdnUrls } from './consts';
|
|
4
|
+
const LinksContext = createContext(undefined);
|
|
5
|
+
/**
|
|
6
|
+
* Adds loggedIn=1 parameter to the URL if 'isLoggedIn' flag is true, which means the user is logged in.
|
|
7
|
+
* If 'isLoggedIn' is falsy, loggedin param will be removed.
|
|
8
|
+
* This is supposed to aid login flow when navigating between Veracity applications.
|
|
9
|
+
*/
|
|
10
|
+
export function getLoggedInLink(link, isLoggedIn) {
|
|
11
|
+
try {
|
|
12
|
+
const url = new URL(link);
|
|
13
|
+
if (isLoggedIn) {
|
|
14
|
+
url.searchParams.append('loggedin', '1');
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
url.searchParams.delete('loggedin');
|
|
18
|
+
}
|
|
19
|
+
return url.toString();
|
|
20
|
+
}
|
|
21
|
+
catch {
|
|
22
|
+
return link;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
export function LinksProvider(props) {
|
|
26
|
+
const linksState = useState({});
|
|
27
|
+
return React.createElement(LinksContext.Provider, { value: linksState, ...props });
|
|
28
|
+
}
|
|
29
|
+
/** Returns links and setLinks from LinksContext. */
|
|
30
|
+
export function useLinks() {
|
|
31
|
+
const context = useContext(LinksContext);
|
|
32
|
+
if (context === undefined) {
|
|
33
|
+
console.error('useLinks must be used within a LinksContext.');
|
|
34
|
+
return [{}, noop];
|
|
35
|
+
}
|
|
36
|
+
return context;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Retrieves the links from CDN for the given environment and appends them with loggedin=1 parameter
|
|
40
|
+
* if user is logged in. Links will be reloaded when 'env' changes or updated when 'isLoggedIn' changes.
|
|
41
|
+
*/
|
|
42
|
+
export function useLoadLinks(env, isLoggedIn) {
|
|
43
|
+
const [, setLinks] = useLinks();
|
|
44
|
+
useEffect(() => {
|
|
45
|
+
if (!env)
|
|
46
|
+
return;
|
|
47
|
+
loadLinks(env);
|
|
48
|
+
}, [env]);
|
|
49
|
+
useEffect(() => {
|
|
50
|
+
setLinks(links => updateLoggedInParam(links, isLoggedIn));
|
|
51
|
+
}, [isLoggedIn]);
|
|
52
|
+
// Load links from the CDN for the given environment.
|
|
53
|
+
async function loadLinks(env) {
|
|
54
|
+
try {
|
|
55
|
+
const response = await fetch(`${cdnUrls[env]}/common/data/links/base.json`);
|
|
56
|
+
if (!response.ok)
|
|
57
|
+
return;
|
|
58
|
+
const data = await response.json();
|
|
59
|
+
if (isObject(data)) {
|
|
60
|
+
setLinks(updateLoggedInParam(data, isLoggedIn));
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
catch {
|
|
64
|
+
console.error('Failed to retrieve links');
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
// Adds/removes loggedin=1 URL param for each link based on isLoggedIn arg.
|
|
68
|
+
function updateLoggedInParam(links, isLoggedIn) {
|
|
69
|
+
return Object.keys(links).reduce((loggedInLinks, key) => {
|
|
70
|
+
loggedInLinks[key] = getLoggedInLink(links[key], isLoggedIn);
|
|
71
|
+
return loggedInLinks;
|
|
72
|
+
}, {});
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { StyledProps } from 'styled-components';
|
|
3
|
+
import { Screen } from '../theme';
|
|
4
|
+
import { AnyNumber, AnyString } from '../utils';
|
|
5
|
+
declare type ScreenWidth = Screen | AnyNumber | AnyString;
|
|
6
|
+
export declare type RenderOnScreenProps = {
|
|
7
|
+
/** Changes direction to below the breakpoint. */
|
|
8
|
+
isDown?: boolean;
|
|
9
|
+
/** Breakpoint to compare viewport width against. */
|
|
10
|
+
screen?: Screen;
|
|
11
|
+
};
|
|
12
|
+
/** Returns CSS media string with appropriate min-width and max-width values. */
|
|
13
|
+
export declare const mediaBetween: (minWidth: ScreenWidth, maxWidth: ScreenWidth) => (props: StyledProps<unknown>) => string;
|
|
14
|
+
/** Returns CSS media string with appropriate max-width value */
|
|
15
|
+
export declare const mediaDown: (width: ScreenWidth) => (props: StyledProps<unknown>) => string;
|
|
16
|
+
/** Returns CSS media string with appropriate min-width value. */
|
|
17
|
+
export declare const mediaUp: (width: ScreenWidth) => (props: StyledProps<unknown>) => string;
|
|
18
|
+
/** Renders its content when viewport width is at or above 'md' breakpoint (default: 960px and more). */
|
|
19
|
+
export declare const RenderOnDesktop: FC<RenderOnScreenProps>;
|
|
20
|
+
/** Renders its content when viewport width is below 'md' breakpoint (default: below 960px). */
|
|
21
|
+
export declare const RenderOnMobile: FC<RenderOnScreenProps>;
|
|
22
|
+
/**
|
|
23
|
+
* Renders its content when viewport width is at or above a provided breakpoint.
|
|
24
|
+
* Optionally, direction can be set to down, or below, the breakpoint.
|
|
25
|
+
*/
|
|
26
|
+
export declare const RenderOnScreen: FC<RenderOnScreenProps>;
|
|
27
|
+
/** Returns true if current viewport width is between provided min and max widths. */
|
|
28
|
+
export declare function useBetween(minWidth: ScreenWidth, maxWidth: ScreenWidth): boolean;
|
|
29
|
+
/** Returns true if current viewport width is smaller than provided width. */
|
|
30
|
+
export declare function useDown(width: ScreenWidth): boolean;
|
|
31
|
+
/** Returns viewport width and provided screen width as a number. */
|
|
32
|
+
export declare function useMedia(width: ScreenWidth): {
|
|
33
|
+
value: number;
|
|
34
|
+
viewportWidth: number | null;
|
|
35
|
+
};
|
|
36
|
+
/** Returns true if current viewport width is larger than or equal to provided width. */
|
|
37
|
+
export declare function useUp(width: ScreenWidth): boolean;
|
|
38
|
+
export {};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { useViewportWidth } from '@xstyled/styled-components';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { th, useTheme } from './theme';
|
|
4
|
+
/** Returns CSS media string with appropriate min-width and max-width values. */
|
|
5
|
+
export const mediaBetween = (minWidth, maxWidth) => (props) => `@media (min-width: ${th.screen(minWidth)(props)}) and (max-width: ${th.screen(maxWidth)(props)})`;
|
|
6
|
+
/** Returns CSS media string with appropriate max-width value */
|
|
7
|
+
export const mediaDown = (width) => (props) => {
|
|
8
|
+
return `@media (max-width: ${th.screen(width)(props)})`;
|
|
9
|
+
};
|
|
10
|
+
/** Returns CSS media string with appropriate min-width value. */
|
|
11
|
+
export const mediaUp = (width) => (props) => `@media (min-width: ${th.screen(width)(props)})`;
|
|
12
|
+
/** Renders its content when viewport width is at or above 'md' breakpoint (default: 960px and more). */
|
|
13
|
+
export const RenderOnDesktop = props => React.createElement(RenderOnScreen, { ...props });
|
|
14
|
+
/** Renders its content when viewport width is below 'md' breakpoint (default: below 960px). */
|
|
15
|
+
export const RenderOnMobile = props => React.createElement(RenderOnScreen, { isDown: true, ...props });
|
|
16
|
+
/**
|
|
17
|
+
* Renders its content when viewport width is at or above a provided breakpoint.
|
|
18
|
+
* Optionally, direction can be set to down, or below, the breakpoint.
|
|
19
|
+
*/
|
|
20
|
+
export const RenderOnScreen = ({ children, isDown, screen = 'md' }) => {
|
|
21
|
+
const mediaFn = isDown ? useDown : useUp;
|
|
22
|
+
return mediaFn(screen) ? React.createElement(React.Fragment, null, children) : null;
|
|
23
|
+
};
|
|
24
|
+
/** Returns true if current viewport width is between provided min and max widths. */
|
|
25
|
+
export function useBetween(minWidth, maxWidth) {
|
|
26
|
+
const isDown = useDown(maxWidth);
|
|
27
|
+
const isUp = useUp(minWidth);
|
|
28
|
+
return isDown && isUp;
|
|
29
|
+
}
|
|
30
|
+
/** Returns true if current viewport width is smaller than provided width. */
|
|
31
|
+
export function useDown(width) {
|
|
32
|
+
const { value, viewportWidth } = useMedia(width);
|
|
33
|
+
return viewportWidth !== null && value !== null && viewportWidth < value;
|
|
34
|
+
}
|
|
35
|
+
/** Returns viewport width and provided screen width as a number. */
|
|
36
|
+
export function useMedia(width) {
|
|
37
|
+
const theme = useTheme();
|
|
38
|
+
const viewportWidth = useViewportWidth();
|
|
39
|
+
const valueString = th.screen(width)({ theme });
|
|
40
|
+
const value = Number(valueString.replace('px', ''));
|
|
41
|
+
return { value, viewportWidth };
|
|
42
|
+
}
|
|
43
|
+
/** Returns true if current viewport width is larger than or equal to provided width. */
|
|
44
|
+
export function useUp(width) {
|
|
45
|
+
const { value, viewportWidth } = useMedia(width);
|
|
46
|
+
return viewportWidth !== null && value !== null && viewportWidth >= value;
|
|
47
|
+
}
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { StyleGenerator } from '@xstyled/styled-components';
|
|
3
|
+
import { BoxElements } from '@xstyled/styled-components/dist/BoxElements';
|
|
4
|
+
import { createGlobalStyle as scCreateGlobalStyle, DefaultTheme, ThemedCssFunction, ThemedStyledFunction, ThemedStyledInterface } from 'styled-components';
|
|
5
|
+
import { SystemProps } from '../system';
|
|
6
|
+
/** Custom 'css' function with theme support. */
|
|
7
|
+
export declare type CSSFunction = ThemedCssFunction<DefaultTheme>;
|
|
8
|
+
export declare type CreateGlobalStyle = typeof scCreateGlobalStyle;
|
|
9
|
+
/** Type of the custom 'styled' function. */
|
|
10
|
+
export declare type VStyled = ThemedStyledInterface<DefaultTheme> & {
|
|
11
|
+
[Key in keyof BoxElements]: ThemedStyledFunction<BoxElements[Key], DefaultTheme, SystemProps>;
|
|
12
|
+
};
|
|
13
|
+
export declare const createGlobalStyle: typeof scCreateGlobalStyle;
|
|
14
|
+
export declare const css: CSSFunction;
|
|
15
|
+
export declare const v: {
|
|
16
|
+
extend<TExtendProps extends object>(...generators: StyleGenerator[]): any;
|
|
17
|
+
} & {
|
|
18
|
+
symbol: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGSymbolElement>, "color">) => import("react").ReactElement<any, "symbol">, DefaultTheme, SystemProps, "color">;
|
|
19
|
+
object: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, "color">) => import("react").ReactElement<any, "object">, DefaultTheme, SystemProps, "color">;
|
|
20
|
+
a: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "color">) => import("react").ReactElement<any, "a">, DefaultTheme, SystemProps, "color">;
|
|
21
|
+
abbr: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "abbr">, DefaultTheme, SystemProps, "color">;
|
|
22
|
+
address: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "address">, DefaultTheme, SystemProps, "color">;
|
|
23
|
+
area: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "color">) => import("react").ReactElement<any, "area">, DefaultTheme, SystemProps, "color">;
|
|
24
|
+
article: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "article">, DefaultTheme, SystemProps, "color">;
|
|
25
|
+
aside: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "aside">, DefaultTheme, SystemProps, "color">;
|
|
26
|
+
audio: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "color">) => import("react").ReactElement<any, "audio">, DefaultTheme, SystemProps, "color">;
|
|
27
|
+
b: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "b">, DefaultTheme, SystemProps, "color">;
|
|
28
|
+
base: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, "color">) => import("react").ReactElement<any, "base">, DefaultTheme, SystemProps, "color">;
|
|
29
|
+
bdi: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "bdi">, DefaultTheme, SystemProps, "color">;
|
|
30
|
+
bdo: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "bdo">, DefaultTheme, SystemProps, "color">;
|
|
31
|
+
big: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "big">, DefaultTheme, SystemProps, "color">;
|
|
32
|
+
blockquote: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "blockquote">, DefaultTheme, SystemProps, "color">;
|
|
33
|
+
body: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, "color">) => import("react").ReactElement<any, "body">, DefaultTheme, SystemProps, "color">;
|
|
34
|
+
br: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>, "color">) => import("react").ReactElement<any, "br">, DefaultTheme, SystemProps, "color">;
|
|
35
|
+
button: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "color">) => import("react").ReactElement<any, "button">, DefaultTheme, SystemProps, "color">;
|
|
36
|
+
canvas: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, "color">) => import("react").ReactElement<any, "canvas">, DefaultTheme, SystemProps, "color">;
|
|
37
|
+
caption: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "caption">, DefaultTheme, SystemProps, "color">;
|
|
38
|
+
cite: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "cite">, DefaultTheme, SystemProps, "color">;
|
|
39
|
+
code: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "code">, DefaultTheme, SystemProps, "color">;
|
|
40
|
+
col: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "color">) => import("react").ReactElement<any, "col">, DefaultTheme, SystemProps, "color">;
|
|
41
|
+
colgroup: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "color">) => import("react").ReactElement<any, "colgroup">, DefaultTheme, SystemProps, "color">;
|
|
42
|
+
data: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "color">) => import("react").ReactElement<any, "data">, DefaultTheme, SystemProps, "color">;
|
|
43
|
+
datalist: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "color">) => import("react").ReactElement<any, "datalist">, DefaultTheme, SystemProps, "color">;
|
|
44
|
+
dd: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "dd">, DefaultTheme, SystemProps, "color">;
|
|
45
|
+
del: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "del">, DefaultTheme, SystemProps, "color">;
|
|
46
|
+
details: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "details">, DefaultTheme, SystemProps, "color">;
|
|
47
|
+
dfn: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "dfn">, DefaultTheme, SystemProps, "color">;
|
|
48
|
+
dialog: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, "color">) => import("react").ReactElement<any, "dialog">, DefaultTheme, SystemProps, "color">;
|
|
49
|
+
div: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "color">) => import("react").ReactElement<any, "div">, DefaultTheme, SystemProps, "color">;
|
|
50
|
+
dl: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>, "color">) => import("react").ReactElement<any, "dl">, DefaultTheme, SystemProps, "color">;
|
|
51
|
+
dt: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "dt">, DefaultTheme, SystemProps, "color">;
|
|
52
|
+
em: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "em">, DefaultTheme, SystemProps, "color">;
|
|
53
|
+
embed: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, "color">) => import("react").ReactElement<any, "embed">, DefaultTheme, SystemProps, "color">;
|
|
54
|
+
fieldset: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, "color">) => import("react").ReactElement<any, "fieldset">, DefaultTheme, SystemProps, "color">;
|
|
55
|
+
figcaption: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "figcaption">, DefaultTheme, SystemProps, "color">;
|
|
56
|
+
figure: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "figure">, DefaultTheme, SystemProps, "color">;
|
|
57
|
+
footer: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "footer">, DefaultTheme, SystemProps, "color">;
|
|
58
|
+
form: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "color">) => import("react").ReactElement<any, "form">, DefaultTheme, SystemProps, "color">;
|
|
59
|
+
h1: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "color">) => import("react").ReactElement<any, "h1">, DefaultTheme, SystemProps, "color">;
|
|
60
|
+
h2: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "color">) => import("react").ReactElement<any, "h2">, DefaultTheme, SystemProps, "color">;
|
|
61
|
+
h3: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "color">) => import("react").ReactElement<any, "h3">, DefaultTheme, SystemProps, "color">;
|
|
62
|
+
h4: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "color">) => import("react").ReactElement<any, "h4">, DefaultTheme, SystemProps, "color">;
|
|
63
|
+
h5: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "color">) => import("react").ReactElement<any, "h5">, DefaultTheme, SystemProps, "color">;
|
|
64
|
+
h6: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "color">) => import("react").ReactElement<any, "h6">, DefaultTheme, SystemProps, "color">;
|
|
65
|
+
head: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "color">) => import("react").ReactElement<any, "head">, DefaultTheme, SystemProps, "color">;
|
|
66
|
+
header: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "header">, DefaultTheme, SystemProps, "color">;
|
|
67
|
+
hgroup: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "hgroup">, DefaultTheme, SystemProps, "color">;
|
|
68
|
+
hr: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "color">) => import("react").ReactElement<any, "hr">, DefaultTheme, SystemProps, "color">;
|
|
69
|
+
html: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "color">) => import("react").ReactElement<any, "html">, DefaultTheme, SystemProps, "color">;
|
|
70
|
+
i: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "i">, DefaultTheme, SystemProps, "color">;
|
|
71
|
+
iframe: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, "color">) => import("react").ReactElement<any, "iframe">, DefaultTheme, SystemProps, "color">;
|
|
72
|
+
img: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "color">) => import("react").ReactElement<any, "img">, DefaultTheme, SystemProps, "color">;
|
|
73
|
+
input: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "color">) => import("react").ReactElement<any, "input">, DefaultTheme, SystemProps, "color">;
|
|
74
|
+
ins: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement>, "color">) => import("react").ReactElement<any, "ins">, DefaultTheme, SystemProps, "color">;
|
|
75
|
+
kbd: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "kbd">, DefaultTheme, SystemProps, "color">;
|
|
76
|
+
keygen: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "keygen">, DefaultTheme, SystemProps, "color">;
|
|
77
|
+
label: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "color">) => import("react").ReactElement<any, "label">, DefaultTheme, SystemProps, "color">;
|
|
78
|
+
legend: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, "color">) => import("react").ReactElement<any, "legend">, DefaultTheme, SystemProps, "color">;
|
|
79
|
+
li: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "color">) => import("react").ReactElement<any, "li">, DefaultTheme, SystemProps, "color">;
|
|
80
|
+
link: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "color">) => import("react").ReactElement<any, "link">, DefaultTheme, SystemProps, "color">;
|
|
81
|
+
main: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "main">, DefaultTheme, SystemProps, "color">;
|
|
82
|
+
map: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "color">) => import("react").ReactElement<any, "map">, DefaultTheme, SystemProps, "color">;
|
|
83
|
+
mark: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "mark">, DefaultTheme, SystemProps, "color">;
|
|
84
|
+
menu: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "menu">, DefaultTheme, SystemProps, "color">;
|
|
85
|
+
menuitem: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "menuitem">, DefaultTheme, SystemProps, "color">;
|
|
86
|
+
meta: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "color">) => import("react").ReactElement<any, "meta">, DefaultTheme, SystemProps, "color">;
|
|
87
|
+
meter: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "meter">, DefaultTheme, SystemProps, "color">;
|
|
88
|
+
nav: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "nav">, DefaultTheme, SystemProps, "color">;
|
|
89
|
+
noindex: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "noindex">, DefaultTheme, SystemProps, "color">;
|
|
90
|
+
noscript: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "noscript">, DefaultTheme, SystemProps, "color">;
|
|
91
|
+
ol: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "color">) => import("react").ReactElement<any, "ol">, DefaultTheme, SystemProps, "color">;
|
|
92
|
+
optgroup: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, "color">) => import("react").ReactElement<any, "optgroup">, DefaultTheme, SystemProps, "color">;
|
|
93
|
+
option: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, "color">) => import("react").ReactElement<any, "option">, DefaultTheme, SystemProps, "color">;
|
|
94
|
+
output: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "output">, DefaultTheme, SystemProps, "color">;
|
|
95
|
+
p: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "color">) => import("react").ReactElement<any, "p">, DefaultTheme, SystemProps, "color">;
|
|
96
|
+
param: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, "color">) => import("react").ReactElement<any, "param">, DefaultTheme, SystemProps, "color">;
|
|
97
|
+
picture: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "picture">, DefaultTheme, SystemProps, "color">;
|
|
98
|
+
pre: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>, "color">) => import("react").ReactElement<any, "pre">, DefaultTheme, SystemProps, "color">;
|
|
99
|
+
progress: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, "color">) => import("react").ReactElement<any, "progress">, DefaultTheme, SystemProps, "color">;
|
|
100
|
+
q: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "color">) => import("react").ReactElement<any, "q">, DefaultTheme, SystemProps, "color">;
|
|
101
|
+
rp: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "rp">, DefaultTheme, SystemProps, "color">;
|
|
102
|
+
rt: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "rt">, DefaultTheme, SystemProps, "color">;
|
|
103
|
+
ruby: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "ruby">, DefaultTheme, SystemProps, "color">;
|
|
104
|
+
s: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "s">, DefaultTheme, SystemProps, "color">;
|
|
105
|
+
samp: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "samp">, DefaultTheme, SystemProps, "color">;
|
|
106
|
+
slot: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>, "color">) => import("react").ReactElement<any, "slot">, DefaultTheme, SystemProps, "color">;
|
|
107
|
+
script: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, "color">) => import("react").ReactElement<any, "script">, DefaultTheme, SystemProps, "color">;
|
|
108
|
+
section: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "section">, DefaultTheme, SystemProps, "color">;
|
|
109
|
+
select: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "color">) => import("react").ReactElement<any, "select">, DefaultTheme, SystemProps, "color">;
|
|
110
|
+
small: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "small">, DefaultTheme, SystemProps, "color">;
|
|
111
|
+
source: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "color">) => import("react").ReactElement<any, "source">, DefaultTheme, SystemProps, "color">;
|
|
112
|
+
span: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "color">) => import("react").ReactElement<any, "span">, DefaultTheme, SystemProps, "color">;
|
|
113
|
+
strong: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "strong">, DefaultTheme, SystemProps, "color">;
|
|
114
|
+
style: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "color">) => import("react").ReactElement<any, "style">, DefaultTheme, SystemProps, "color">;
|
|
115
|
+
sub: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "sub">, DefaultTheme, SystemProps, "color">;
|
|
116
|
+
summary: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "summary">, DefaultTheme, SystemProps, "color">;
|
|
117
|
+
sup: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "sup">, DefaultTheme, SystemProps, "color">;
|
|
118
|
+
table: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "color">) => import("react").ReactElement<any, "table">, DefaultTheme, SystemProps, "color">;
|
|
119
|
+
template: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, "color">) => import("react").ReactElement<any, "template">, DefaultTheme, SystemProps, "color">;
|
|
120
|
+
tbody: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "color">) => import("react").ReactElement<any, "tbody">, DefaultTheme, SystemProps, "color">;
|
|
121
|
+
td: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "color">) => import("react").ReactElement<any, "td">, DefaultTheme, SystemProps, "color">;
|
|
122
|
+
textarea: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "color">) => import("react").ReactElement<any, "textarea">, DefaultTheme, SystemProps, "color">;
|
|
123
|
+
tfoot: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "color">) => import("react").ReactElement<any, "tfoot">, DefaultTheme, SystemProps, "color">;
|
|
124
|
+
th: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "color">) => import("react").ReactElement<any, "th">, DefaultTheme, SystemProps, "color">;
|
|
125
|
+
thead: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "color">) => import("react").ReactElement<any, "thead">, DefaultTheme, SystemProps, "color">;
|
|
126
|
+
time: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "time">, DefaultTheme, SystemProps, "color">;
|
|
127
|
+
title: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "color">) => import("react").ReactElement<any, "title">, DefaultTheme, SystemProps, "color">;
|
|
128
|
+
tr: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "color">) => import("react").ReactElement<any, "tr">, DefaultTheme, SystemProps, "color">;
|
|
129
|
+
track: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "color">) => import("react").ReactElement<any, "track">, DefaultTheme, SystemProps, "color">;
|
|
130
|
+
u: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "u">, DefaultTheme, SystemProps, "color">;
|
|
131
|
+
ul: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "color">) => import("react").ReactElement<any, "ul">, DefaultTheme, SystemProps, "color">;
|
|
132
|
+
var: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "var">, DefaultTheme, SystemProps, "color">;
|
|
133
|
+
video: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "color">) => import("react").ReactElement<any, "video">, DefaultTheme, SystemProps, "color">;
|
|
134
|
+
wbr: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "color">) => import("react").ReactElement<any, "wbr">, DefaultTheme, SystemProps, "color">;
|
|
135
|
+
webview: import("styled-components").StyledComponent<(props: Omit<import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>, "color">) => import("react").ReactElement<any, "webview">, DefaultTheme, SystemProps, "color">;
|
|
136
|
+
svg: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGSVGElement>, "color">) => import("react").ReactElement<any, "svg">, DefaultTheme, SystemProps, "color">;
|
|
137
|
+
animate: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGElement>, "color">) => import("react").ReactElement<any, "animate">, DefaultTheme, SystemProps, "color">;
|
|
138
|
+
animateMotion: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGElement>, "color">) => import("react").ReactElement<any, "animateMotion">, DefaultTheme, SystemProps, "color">;
|
|
139
|
+
animateTransform: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGElement>, "color">) => import("react").ReactElement<any, "animateTransform">, DefaultTheme, SystemProps, "color">;
|
|
140
|
+
circle: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGCircleElement>, "color">) => import("react").ReactElement<any, "circle">, DefaultTheme, SystemProps, "color">;
|
|
141
|
+
clipPath: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGClipPathElement>, "color">) => import("react").ReactElement<any, "clipPath">, DefaultTheme, SystemProps, "color">;
|
|
142
|
+
defs: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGDefsElement>, "color">) => import("react").ReactElement<any, "defs">, DefaultTheme, SystemProps, "color">;
|
|
143
|
+
desc: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGDescElement>, "color">) => import("react").ReactElement<any, "desc">, DefaultTheme, SystemProps, "color">;
|
|
144
|
+
ellipse: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGEllipseElement>, "color">) => import("react").ReactElement<any, "ellipse">, DefaultTheme, SystemProps, "color">;
|
|
145
|
+
feBlend: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEBlendElement>, "color">) => import("react").ReactElement<any, "feBlend">, DefaultTheme, SystemProps, "color">;
|
|
146
|
+
feColorMatrix: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEColorMatrixElement>, "color">) => import("react").ReactElement<any, "feColorMatrix">, DefaultTheme, SystemProps, "color">;
|
|
147
|
+
feComponentTransfer: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEComponentTransferElement>, "color">) => import("react").ReactElement<any, "feComponentTransfer">, DefaultTheme, SystemProps, "color">;
|
|
148
|
+
feComposite: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFECompositeElement>, "color">) => import("react").ReactElement<any, "feComposite">, DefaultTheme, SystemProps, "color">;
|
|
149
|
+
feConvolveMatrix: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEConvolveMatrixElement>, "color">) => import("react").ReactElement<any, "feConvolveMatrix">, DefaultTheme, SystemProps, "color">;
|
|
150
|
+
feDiffuseLighting: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEDiffuseLightingElement>, "color">) => import("react").ReactElement<any, "feDiffuseLighting">, DefaultTheme, SystemProps, "color">;
|
|
151
|
+
feDisplacementMap: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEDisplacementMapElement>, "color">) => import("react").ReactElement<any, "feDisplacementMap">, DefaultTheme, SystemProps, "color">;
|
|
152
|
+
feDistantLight: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEDistantLightElement>, "color">) => import("react").ReactElement<any, "feDistantLight">, DefaultTheme, SystemProps, "color">;
|
|
153
|
+
feDropShadow: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEDropShadowElement>, "color">) => import("react").ReactElement<any, "feDropShadow">, DefaultTheme, SystemProps, "color">;
|
|
154
|
+
feFlood: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEFloodElement>, "color">) => import("react").ReactElement<any, "feFlood">, DefaultTheme, SystemProps, "color">;
|
|
155
|
+
feFuncA: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEFuncAElement>, "color">) => import("react").ReactElement<any, "feFuncA">, DefaultTheme, SystemProps, "color">;
|
|
156
|
+
feFuncB: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEFuncBElement>, "color">) => import("react").ReactElement<any, "feFuncB">, DefaultTheme, SystemProps, "color">;
|
|
157
|
+
feFuncG: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEFuncGElement>, "color">) => import("react").ReactElement<any, "feFuncG">, DefaultTheme, SystemProps, "color">;
|
|
158
|
+
feFuncR: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEFuncRElement>, "color">) => import("react").ReactElement<any, "feFuncR">, DefaultTheme, SystemProps, "color">;
|
|
159
|
+
feGaussianBlur: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEGaussianBlurElement>, "color">) => import("react").ReactElement<any, "feGaussianBlur">, DefaultTheme, SystemProps, "color">;
|
|
160
|
+
feImage: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEImageElement>, "color">) => import("react").ReactElement<any, "feImage">, DefaultTheme, SystemProps, "color">;
|
|
161
|
+
feMerge: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEMergeElement>, "color">) => import("react").ReactElement<any, "feMerge">, DefaultTheme, SystemProps, "color">;
|
|
162
|
+
feMergeNode: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEMergeNodeElement>, "color">) => import("react").ReactElement<any, "feMergeNode">, DefaultTheme, SystemProps, "color">;
|
|
163
|
+
feMorphology: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEMorphologyElement>, "color">) => import("react").ReactElement<any, "feMorphology">, DefaultTheme, SystemProps, "color">;
|
|
164
|
+
feOffset: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEOffsetElement>, "color">) => import("react").ReactElement<any, "feOffset">, DefaultTheme, SystemProps, "color">;
|
|
165
|
+
fePointLight: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFEPointLightElement>, "color">) => import("react").ReactElement<any, "fePointLight">, DefaultTheme, SystemProps, "color">;
|
|
166
|
+
feSpecularLighting: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFESpecularLightingElement>, "color">) => import("react").ReactElement<any, "feSpecularLighting">, DefaultTheme, SystemProps, "color">;
|
|
167
|
+
feSpotLight: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFESpotLightElement>, "color">) => import("react").ReactElement<any, "feSpotLight">, DefaultTheme, SystemProps, "color">;
|
|
168
|
+
feTile: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFETileElement>, "color">) => import("react").ReactElement<any, "feTile">, DefaultTheme, SystemProps, "color">;
|
|
169
|
+
feTurbulence: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFETurbulenceElement>, "color">) => import("react").ReactElement<any, "feTurbulence">, DefaultTheme, SystemProps, "color">;
|
|
170
|
+
filter: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGFilterElement>, "color">) => import("react").ReactElement<any, "filter">, DefaultTheme, SystemProps, "color">;
|
|
171
|
+
foreignObject: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGForeignObjectElement>, "color">) => import("react").ReactElement<any, "foreignObject">, DefaultTheme, SystemProps, "color">;
|
|
172
|
+
g: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGGElement>, "color">) => import("react").ReactElement<any, "g">, DefaultTheme, SystemProps, "color">;
|
|
173
|
+
image: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGImageElement>, "color">) => import("react").ReactElement<any, "image">, DefaultTheme, SystemProps, "color">;
|
|
174
|
+
line: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGLineElement>, "color">) => import("react").ReactElement<any, "line">, DefaultTheme, SystemProps, "color">;
|
|
175
|
+
linearGradient: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGLinearGradientElement>, "color">) => import("react").ReactElement<any, "linearGradient">, DefaultTheme, SystemProps, "color">;
|
|
176
|
+
marker: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGMarkerElement>, "color">) => import("react").ReactElement<any, "marker">, DefaultTheme, SystemProps, "color">;
|
|
177
|
+
mask: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGMaskElement>, "color">) => import("react").ReactElement<any, "mask">, DefaultTheme, SystemProps, "color">;
|
|
178
|
+
metadata: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGMetadataElement>, "color">) => import("react").ReactElement<any, "metadata">, DefaultTheme, SystemProps, "color">;
|
|
179
|
+
mpath: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGElement>, "color">) => import("react").ReactElement<any, "mpath">, DefaultTheme, SystemProps, "color">;
|
|
180
|
+
path: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGPathElement>, "color">) => import("react").ReactElement<any, "path">, DefaultTheme, SystemProps, "color">;
|
|
181
|
+
pattern: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGPatternElement>, "color">) => import("react").ReactElement<any, "pattern">, DefaultTheme, SystemProps, "color">;
|
|
182
|
+
polygon: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGPolygonElement>, "color">) => import("react").ReactElement<any, "polygon">, DefaultTheme, SystemProps, "color">;
|
|
183
|
+
polyline: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGPolylineElement>, "color">) => import("react").ReactElement<any, "polyline">, DefaultTheme, SystemProps, "color">;
|
|
184
|
+
radialGradient: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGRadialGradientElement>, "color">) => import("react").ReactElement<any, "radialGradient">, DefaultTheme, SystemProps, "color">;
|
|
185
|
+
rect: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGRectElement>, "color">) => import("react").ReactElement<any, "rect">, DefaultTheme, SystemProps, "color">;
|
|
186
|
+
stop: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGStopElement>, "color">) => import("react").ReactElement<any, "stop">, DefaultTheme, SystemProps, "color">;
|
|
187
|
+
switch: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGSwitchElement>, "color">) => import("react").ReactElement<any, "switch">, DefaultTheme, SystemProps, "color">;
|
|
188
|
+
text: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGTextElement>, "color">) => import("react").ReactElement<any, "text">, DefaultTheme, SystemProps, "color">;
|
|
189
|
+
textPath: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGTextPathElement>, "color">) => import("react").ReactElement<any, "textPath">, DefaultTheme, SystemProps, "color">;
|
|
190
|
+
tspan: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGTSpanElement>, "color">) => import("react").ReactElement<any, "tspan">, DefaultTheme, SystemProps, "color">;
|
|
191
|
+
use: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGUseElement>, "color">) => import("react").ReactElement<any, "use">, DefaultTheme, SystemProps, "color">;
|
|
192
|
+
view: import("styled-components").StyledComponent<(props: Omit<import("react").SVGProps<SVGViewElement>, "color">) => import("react").ReactElement<any, "view">, DefaultTheme, SystemProps, "color">;
|
|
193
|
+
};
|
|
194
|
+
export declare const styled: VStyled;
|
|
195
|
+
export default styled;
|