@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
package/cjs/svg/svg.js
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
26
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
27
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
28
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
29
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
30
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
31
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
32
|
+
});
|
|
33
|
+
};
|
|
34
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
35
|
+
var t = {};
|
|
36
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
37
|
+
t[p] = s[p];
|
|
38
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
39
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
40
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
41
|
+
t[p[i]] = s[p[i]];
|
|
42
|
+
}
|
|
43
|
+
return t;
|
|
44
|
+
};
|
|
45
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
46
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
47
|
+
};
|
|
48
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49
|
+
exports.Svg = exports.SvgBase = void 0;
|
|
50
|
+
const react_1 = __importStar(require("react"));
|
|
51
|
+
const core_1 = require("../core");
|
|
52
|
+
const utils_1 = require("../utils");
|
|
53
|
+
const cache_1 = __importDefault(require("./cache"));
|
|
54
|
+
const helpers_1 = require("./helpers");
|
|
55
|
+
exports.SvgBase = core_1.styled.svgBox(({ pathFill }) => {
|
|
56
|
+
return (0, core_1.css) `
|
|
57
|
+
${pathFill !== undefined &&
|
|
58
|
+
(Array.isArray(pathFill)
|
|
59
|
+
? pathFill
|
|
60
|
+
.map((fill, index) => `
|
|
61
|
+
& > path:nth-child(${index + 1}) {
|
|
62
|
+
fill: ${fill};
|
|
63
|
+
}
|
|
64
|
+
`)
|
|
65
|
+
.join()
|
|
66
|
+
: `
|
|
67
|
+
& > path {
|
|
68
|
+
fill: ${pathFill};
|
|
69
|
+
}
|
|
70
|
+
`)}
|
|
71
|
+
`;
|
|
72
|
+
});
|
|
73
|
+
/**
|
|
74
|
+
* Displays an svg element based on provided children or 'src' prop.
|
|
75
|
+
* When using src, it loads the content from the given URL and saves in in cache.
|
|
76
|
+
* Then, renders the svg by parsing loaded content (Review potential for XSS due to innerHTML).
|
|
77
|
+
*/
|
|
78
|
+
exports.Svg = (0, core_1.vui)((props, ref) => {
|
|
79
|
+
const { children, className, src } = props, rest = __rest(props, ["children", "className", "src"]);
|
|
80
|
+
const [state, setState] = (0, react_1.useState)((0, helpers_1.initState)());
|
|
81
|
+
const isMountedRef = (0, react_1.useRef)(false);
|
|
82
|
+
const srcRef = (0, react_1.useRef)(src);
|
|
83
|
+
const { content = '', svgAttributes = {} } = state;
|
|
84
|
+
const innerHTML = !children ? { __html: content } : undefined;
|
|
85
|
+
(0, react_1.useEffect)(() => {
|
|
86
|
+
isMountedRef.current = true;
|
|
87
|
+
return () => {
|
|
88
|
+
isMountedRef.current = false;
|
|
89
|
+
};
|
|
90
|
+
}, []);
|
|
91
|
+
(0, react_1.useEffect)(() => {
|
|
92
|
+
srcRef.current = src;
|
|
93
|
+
function loadSvg(src) {
|
|
94
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
95
|
+
try {
|
|
96
|
+
const response = yield cache_1.default.get(src);
|
|
97
|
+
const content = (0, helpers_1.getSvgContent)(response);
|
|
98
|
+
const svgEl = (0, helpers_1.stringToHTML)(response);
|
|
99
|
+
const svgAttributes = (0, helpers_1.getAttributes)(svgEl);
|
|
100
|
+
svgAttributes['data-src'] = src !== null && src !== void 0 ? src : '';
|
|
101
|
+
// Update state only when requested 'src' and current 'src' are the same
|
|
102
|
+
if (srcRef.current === src && isMountedRef.current) {
|
|
103
|
+
setState({ content, svgAttributes });
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
catch (error) {
|
|
107
|
+
console.error(error); // eslint-disable-line no-console
|
|
108
|
+
if (isMountedRef.current) {
|
|
109
|
+
setState((0, helpers_1.initState)());
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
src && loadSvg(src);
|
|
115
|
+
}, [src]);
|
|
116
|
+
return (react_1.default.createElement(exports.SvgBase, Object.assign({ className: (0, utils_1.cs)('vui-svg', className), dangerouslySetInnerHTML: innerHTML, ref: ref, xmlns: "http://www.w3.org/2000/svg" }, svgAttributes, rest), children));
|
|
117
|
+
});
|
|
118
|
+
exports.Svg.displayName = 'Svg';
|
|
119
|
+
exports.default = exports.Svg;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useSwitch = exports.SwitchProvider = void 0;
|
|
4
|
+
const utils_1 = require("../utils");
|
|
5
|
+
const [SwitchProvider, useSwitch] = (0, utils_1.createContext)({ isOptional: true });
|
|
6
|
+
exports.SwitchProvider = SwitchProvider;
|
|
7
|
+
exports.useSwitch = useSwitch;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
+
};
|
|
19
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
+
exports.default = void 0;
|
|
21
|
+
__exportStar(require("./context"), exports);
|
|
22
|
+
var switch_1 = require("./switch");
|
|
23
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(switch_1).default; } });
|
|
24
|
+
__exportStar(require("./switch"), exports);
|
|
25
|
+
__exportStar(require("./switch.types"), exports);
|
|
26
|
+
__exportStar(require("./switchButton"), exports);
|
|
27
|
+
__exportStar(require("./switchLabel"), exports);
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
26
|
+
var t = {};
|
|
27
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
28
|
+
t[p] = s[p];
|
|
29
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
30
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
31
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
32
|
+
t[p[i]] = s[p[i]];
|
|
33
|
+
}
|
|
34
|
+
return t;
|
|
35
|
+
};
|
|
36
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
+
exports.Switch = exports.SwitchBase = void 0;
|
|
38
|
+
const react_1 = __importStar(require("react"));
|
|
39
|
+
const core_1 = require("../core");
|
|
40
|
+
const utils_1 = require("../utils");
|
|
41
|
+
const context_1 = require("./context");
|
|
42
|
+
const switchButton_1 = require("./switchButton");
|
|
43
|
+
const switchLabel_1 = require("./switchLabel");
|
|
44
|
+
exports.SwitchBase = core_1.styled.labelBox `
|
|
45
|
+
align-items: center;
|
|
46
|
+
cursor: pointer;
|
|
47
|
+
display: inline-flex;
|
|
48
|
+
line-height: normal;
|
|
49
|
+
width: fit-content;
|
|
50
|
+
|
|
51
|
+
&[aria-disabled='true'] {
|
|
52
|
+
cursor: not-allowed;
|
|
53
|
+
|
|
54
|
+
.vui-switchLabel {
|
|
55
|
+
color: disabled.color;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
`;
|
|
59
|
+
/**
|
|
60
|
+
* Displays a toggle button with supporting text. Allows passing custom elements as side labels and inner labels.
|
|
61
|
+
* Forwards many relevant props to the innner input element. Exposes some props to the children via context.
|
|
62
|
+
*/
|
|
63
|
+
exports.Switch = (0, core_1.vui)((props, ref) => {
|
|
64
|
+
var _a;
|
|
65
|
+
const { button, checked, children, className, colorScheme, defaultChecked, disabled, id, innerLabelOff, innerLabelOn, inputProps, inputRef, labelLeft, labelRight, name, onBlur, onChange, onFocus, required, size, value, variant } = props, rest = __rest(props, ["button", "checked", "children", "className", "colorScheme", "defaultChecked", "disabled", "id", "innerLabelOff", "innerLabelOn", "inputProps", "inputRef", "labelLeft", "labelRight", "name", "onBlur", "onChange", "onFocus", "required", "size", "value", "variant"]);
|
|
66
|
+
const styles = (0, core_1.useStyleConfig)('Switch', props);
|
|
67
|
+
const context = (0, react_1.useMemo)(() => (0, utils_1.filterUndefined)({
|
|
68
|
+
checked,
|
|
69
|
+
colorScheme,
|
|
70
|
+
defaultChecked,
|
|
71
|
+
disabled,
|
|
72
|
+
name,
|
|
73
|
+
onBlur,
|
|
74
|
+
onChange,
|
|
75
|
+
onFocus,
|
|
76
|
+
required,
|
|
77
|
+
size,
|
|
78
|
+
value,
|
|
79
|
+
variant
|
|
80
|
+
}), [checked, colorScheme, defaultChecked, disabled, name, onBlur, onChange, onFocus, required, size, value, variant]);
|
|
81
|
+
const aliasedProps = (0, utils_1.filterUndefined)({
|
|
82
|
+
'aria-disabled': disabled
|
|
83
|
+
});
|
|
84
|
+
return (react_1.default.createElement(context_1.SwitchProvider, { value: context },
|
|
85
|
+
react_1.default.createElement(exports.SwitchBase, Object.assign({ className: (0, utils_1.cs)('vui-switch', className), ref: ref }, styles.container, aliasedProps, rest),
|
|
86
|
+
(0, utils_1.isReactText)(labelLeft) ? react_1.default.createElement(switchLabel_1.SwitchLabel, { mr: 1, text: labelLeft }) : labelLeft, (_a = children !== null && children !== void 0 ? children : button) !== null && _a !== void 0 ? _a : react_1.default.createElement(switchButton_1.SwitchButton, Object.assign({}, { id, innerLabelOff, innerLabelOn, inputProps, inputRef })),
|
|
87
|
+
(0, utils_1.isReactText)(labelRight) ? react_1.default.createElement(switchLabel_1.SwitchLabel, { ml: 1, text: labelRight }) : labelRight)));
|
|
88
|
+
});
|
|
89
|
+
exports.Switch.displayName = 'Switch';
|
|
90
|
+
exports.Switch.Button = switchButton_1.SwitchButton;
|
|
91
|
+
exports.Switch.Label = switchLabel_1.SwitchLabel;
|
|
92
|
+
exports.default = exports.Switch;
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
26
|
+
var t = {};
|
|
27
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
28
|
+
t[p] = s[p];
|
|
29
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
30
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
31
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
32
|
+
t[p[i]] = s[p[i]];
|
|
33
|
+
}
|
|
34
|
+
return t;
|
|
35
|
+
};
|
|
36
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
+
exports.SwitchButton = exports.SwitchButtonBase = void 0;
|
|
38
|
+
const react_1 = __importStar(require("react"));
|
|
39
|
+
const core_1 = require("../core");
|
|
40
|
+
const utils_1 = require("../utils");
|
|
41
|
+
const context_1 = require("./context");
|
|
42
|
+
const SwitchInput = core_1.styled.inputBox `
|
|
43
|
+
cursor: inherit;
|
|
44
|
+
height: calc(100% + 10px);
|
|
45
|
+
left: -5px;
|
|
46
|
+
margin: 0;
|
|
47
|
+
opacity: 0;
|
|
48
|
+
padding: 0;
|
|
49
|
+
position: absolute;
|
|
50
|
+
top: -5px;
|
|
51
|
+
width: calc(100% + 10px);
|
|
52
|
+
z-index: 1;
|
|
53
|
+
`;
|
|
54
|
+
/** Circular element that moves along the track when toggled. */
|
|
55
|
+
const SwitchThumb = core_1.styled.spanBox `
|
|
56
|
+
border-radius: round;
|
|
57
|
+
display: inline-flex;
|
|
58
|
+
flex-shrink: 0;
|
|
59
|
+
position: absolute;
|
|
60
|
+
transition-duration: fast;
|
|
61
|
+
`;
|
|
62
|
+
/** Track element along which the thumb moves when toggled. */
|
|
63
|
+
const SwitchTrack = core_1.styled.spanBox `
|
|
64
|
+
align-items: center;
|
|
65
|
+
border-radius: round;
|
|
66
|
+
display: inline-flex;
|
|
67
|
+
flex: 1;
|
|
68
|
+
position: relative;
|
|
69
|
+
transition-duration: fast;
|
|
70
|
+
`;
|
|
71
|
+
exports.SwitchButtonBase = core_1.styled.spanBox `
|
|
72
|
+
color: white;
|
|
73
|
+
cursor: pointer;
|
|
74
|
+
display: inline-flex;
|
|
75
|
+
flex-shrink: 0;
|
|
76
|
+
position: relative;
|
|
77
|
+
|
|
78
|
+
&[aria-disabled='true'] {
|
|
79
|
+
cursor: not-allowed;
|
|
80
|
+
|
|
81
|
+
.vui-switchThumb {
|
|
82
|
+
background-color: disabled.color;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.vui-switchTrack {
|
|
86
|
+
// Using ring instead of border when disabled, because it's easier
|
|
87
|
+
--x-ring-color: var(--vui-colors-disabled-border);
|
|
88
|
+
background-color: disabled.bg;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
`;
|
|
92
|
+
/**
|
|
93
|
+
* Controls the logic and visuals of multiple inner parts, such as input, track or thumb elements.
|
|
94
|
+
* Handles controlled and uncontrolled modes.
|
|
95
|
+
*/
|
|
96
|
+
exports.SwitchButton = (0, core_1.vui)((props, ref) => {
|
|
97
|
+
const mergedProps = Object.assign(Object.assign({}, (0, context_1.useSwitch)()), props);
|
|
98
|
+
const _a = (0, core_1.omitThemingProps)(mergedProps), { checked, className, defaultChecked, disabled, id, innerLabelOff, innerLabelOn, inputProps, inputRef, name, onBlur, onChange, onFocus, required, value } = _a, rest = __rest(_a, ["checked", "className", "defaultChecked", "disabled", "id", "innerLabelOff", "innerLabelOn", "inputProps", "inputRef", "name", "onBlur", "onChange", "onFocus", "required", "value"]);
|
|
99
|
+
const { current: isControlled } = (0, react_1.useRef)(checked !== undefined);
|
|
100
|
+
const [isChecked, setIsChecked] = (0, react_1.useState)(checked !== null && checked !== void 0 ? checked : defaultChecked);
|
|
101
|
+
const [isFocused, setIsFocused] = (0, react_1.useState)(false);
|
|
102
|
+
const styles = (0, core_1.useStyleConfig)('Switch', mergedProps);
|
|
103
|
+
const _b = styles.button, { thumb: thumbStyles, track: trackStyles } = _b, buttonStyles = __rest(_b, ["thumb", "track"]);
|
|
104
|
+
(0, react_1.useEffect)(() => {
|
|
105
|
+
isControlled && setIsChecked(checked);
|
|
106
|
+
}, [checked, isControlled]);
|
|
107
|
+
function handleOnBlur(e) {
|
|
108
|
+
setIsFocused(false);
|
|
109
|
+
onBlur === null || onBlur === void 0 ? void 0 : onBlur(e);
|
|
110
|
+
}
|
|
111
|
+
function handleOnChange(e) {
|
|
112
|
+
!isControlled && setIsChecked(e.target.checked);
|
|
113
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(e);
|
|
114
|
+
}
|
|
115
|
+
function handleOnFocus(e) {
|
|
116
|
+
setIsFocused(true);
|
|
117
|
+
onFocus === null || onFocus === void 0 ? void 0 : onFocus(e);
|
|
118
|
+
}
|
|
119
|
+
const hDiff = (thumbStyles.h - trackStyles.h) / 2;
|
|
120
|
+
const thumbOffset = `calc(100% - ${Math.abs(hDiff - thumbStyles.h)}px)`;
|
|
121
|
+
const labelOffset = `${thumbStyles.h - hDiff + 4}px`;
|
|
122
|
+
const aliasedProps = (0, utils_1.filterUndefined)({
|
|
123
|
+
'aria-checked': isChecked ? true : false,
|
|
124
|
+
'aria-disabled': disabled,
|
|
125
|
+
'data-focused': isFocused ? true : false
|
|
126
|
+
});
|
|
127
|
+
const thumbAliasedProps = (0, utils_1.filterUndefined)({
|
|
128
|
+
left: isChecked ? thumbOffset : -hDiff,
|
|
129
|
+
ring: isFocused ? thumbStyles.ring : 0
|
|
130
|
+
});
|
|
131
|
+
const trackAliasedProps = (0, utils_1.filterUndefined)({
|
|
132
|
+
bg: isChecked ? trackStyles.bg : 'grey.50',
|
|
133
|
+
pl: isChecked ? 1 : labelOffset,
|
|
134
|
+
pr: isChecked ? labelOffset : 1,
|
|
135
|
+
ring: !disabled ? (isFocused ? trackStyles.ring : 0) : 1
|
|
136
|
+
});
|
|
137
|
+
return (react_1.default.createElement(exports.SwitchButtonBase, Object.assign({ className: (0, utils_1.cs)('vui-switchButton', className), ref: ref }, buttonStyles, aliasedProps, rest),
|
|
138
|
+
react_1.default.createElement(SwitchInput, Object.assign({ className: "vui-switchInput", onBlur: handleOnBlur, onChange: handleOnChange, onFocus: handleOnFocus, ref: inputRef, type: "checkbox" }, { checked, defaultChecked, disabled, id, name, required, value }, inputProps)),
|
|
139
|
+
react_1.default.createElement(SwitchTrack, Object.assign({ className: "vui-switchTrack" }, trackStyles, trackAliasedProps),
|
|
140
|
+
!isChecked && innerLabelOff,
|
|
141
|
+
react_1.default.createElement(SwitchThumb, Object.assign({ className: "vui-switchThumb" }, thumbStyles, thumbAliasedProps)),
|
|
142
|
+
isChecked && innerLabelOn)));
|
|
143
|
+
});
|
|
144
|
+
exports.SwitchButton.displayName = 'SwitchButton';
|
|
145
|
+
exports.default = exports.SwitchButton;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.SwitchLabel = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const core_1 = require("../core");
|
|
9
|
+
const t_1 = __importDefault(require("../t"));
|
|
10
|
+
const context_1 = require("./context");
|
|
11
|
+
/** Displays label text within the Switch component. */
|
|
12
|
+
exports.SwitchLabel = (0, core_1.vui)((props, ref) => {
|
|
13
|
+
const styles = (0, core_1.useStyleConfig)('Switch', Object.assign(Object.assign({}, (0, context_1.useSwitch)()), props));
|
|
14
|
+
return react_1.default.createElement(t_1.default, Object.assign({ className: "vui-switchLabel", display: "flex", ref: ref }, styles.label, props));
|
|
15
|
+
});
|
|
16
|
+
exports.SwitchLabel.displayName = 'SwitchLabel';
|
|
17
|
+
exports.default = exports.SwitchLabel;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
function sizeLg() {
|
|
4
|
+
const button = {
|
|
5
|
+
fontSize: 'md',
|
|
6
|
+
minW: 50,
|
|
7
|
+
thumb: {
|
|
8
|
+
h: 24,
|
|
9
|
+
w: 24
|
|
10
|
+
},
|
|
11
|
+
track: {
|
|
12
|
+
h: 28
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
const label = {
|
|
16
|
+
size: 'lg'
|
|
17
|
+
};
|
|
18
|
+
return { button, label };
|
|
19
|
+
}
|
|
20
|
+
function sizeMd() {
|
|
21
|
+
const button = {
|
|
22
|
+
fontSize: 'sm',
|
|
23
|
+
minW: 42,
|
|
24
|
+
thumb: {
|
|
25
|
+
h: 20,
|
|
26
|
+
w: 20
|
|
27
|
+
},
|
|
28
|
+
track: {
|
|
29
|
+
h: 24
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
const label = {
|
|
33
|
+
size: 'md'
|
|
34
|
+
};
|
|
35
|
+
return { button, label };
|
|
36
|
+
}
|
|
37
|
+
function sizeSm() {
|
|
38
|
+
const button = {
|
|
39
|
+
fontSize: 'xs',
|
|
40
|
+
minW: 34,
|
|
41
|
+
thumb: {
|
|
42
|
+
h: 16,
|
|
43
|
+
w: 16
|
|
44
|
+
},
|
|
45
|
+
track: {
|
|
46
|
+
h: 20
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
const label = {
|
|
50
|
+
size: 'sm'
|
|
51
|
+
};
|
|
52
|
+
return { button, label };
|
|
53
|
+
}
|
|
54
|
+
function variantContained(props) {
|
|
55
|
+
const { colorScheme: c } = props;
|
|
56
|
+
const button = {
|
|
57
|
+
thumb: {
|
|
58
|
+
bg: 'white'
|
|
59
|
+
},
|
|
60
|
+
track: {
|
|
61
|
+
bg: `${c}.80`,
|
|
62
|
+
ring: 3
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
return { button };
|
|
66
|
+
}
|
|
67
|
+
const baseStyle = {};
|
|
68
|
+
const defaultProps = {
|
|
69
|
+
colorScheme: 'blue',
|
|
70
|
+
size: 'md',
|
|
71
|
+
variant: 'contained'
|
|
72
|
+
};
|
|
73
|
+
const parts = ['container', 'button', 'label'];
|
|
74
|
+
const sizes = {
|
|
75
|
+
sm: sizeSm,
|
|
76
|
+
md: sizeMd,
|
|
77
|
+
lg: sizeLg
|
|
78
|
+
};
|
|
79
|
+
const variants = {
|
|
80
|
+
contained: variantContained
|
|
81
|
+
};
|
|
82
|
+
exports.default = {
|
|
83
|
+
baseStyle,
|
|
84
|
+
defaultProps,
|
|
85
|
+
parts,
|
|
86
|
+
sizes,
|
|
87
|
+
variants
|
|
88
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.wordBreak = exports.maxLines = exports.isTruncated = void 0;
|
|
4
|
+
const styled_components_1 = require("@xstyled/styled-components");
|
|
5
|
+
/** Provides styling to truncate single-line text. */
|
|
6
|
+
exports.isTruncated = (0, styled_components_1.style)({
|
|
7
|
+
prop: 'isTruncated',
|
|
8
|
+
cssProperty: function () {
|
|
9
|
+
return {
|
|
10
|
+
overflow: 'hidden',
|
|
11
|
+
'text-overflow': 'ellipsis',
|
|
12
|
+
'white-space': 'nowrap'
|
|
13
|
+
};
|
|
14
|
+
},
|
|
15
|
+
states: {}
|
|
16
|
+
});
|
|
17
|
+
/** Provides styling to truncate multi-line text. */
|
|
18
|
+
exports.maxLines = (0, styled_components_1.style)({
|
|
19
|
+
prop: 'maxLines',
|
|
20
|
+
cssProperty: function (value) {
|
|
21
|
+
return {
|
|
22
|
+
display: '-webkit-box',
|
|
23
|
+
overflow: 'hidden',
|
|
24
|
+
'-webkit-line-clamp': `${value}`,
|
|
25
|
+
'-webkit-box-orient': 'vertical'
|
|
26
|
+
};
|
|
27
|
+
},
|
|
28
|
+
states: {}
|
|
29
|
+
});
|
|
30
|
+
exports.wordBreak = (0, styled_components_1.style)({
|
|
31
|
+
prop: 'wordBreak'
|
|
32
|
+
});
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./animations"), exports);
|
|
18
|
+
__exportStar(require("./backgrounds"), exports);
|
|
19
|
+
__exportStar(require("./borders"), exports);
|
|
20
|
+
__exportStar(require("./colors"), exports);
|
|
21
|
+
__exportStar(require("./custom"), exports);
|
|
22
|
+
__exportStar(require("./effects"), exports);
|
|
23
|
+
__exportStar(require("./flexboxes"), exports);
|
|
24
|
+
__exportStar(require("./interactivity"), exports);
|
|
25
|
+
__exportStar(require("./layout"), exports);
|
|
26
|
+
__exportStar(require("./sizing"), exports);
|
|
27
|
+
__exportStar(require("./space"), exports);
|
|
28
|
+
__exportStar(require("./system"), exports);
|
|
29
|
+
__exportStar(require("./transforms"), exports);
|
|
30
|
+
__exportStar(require("./transitions"), exports);
|
|
31
|
+
__exportStar(require("./typography"), exports);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.system = void 0;
|
|
4
|
+
const styled_components_1 = require("@xstyled/styled-components");
|
|
5
|
+
const custom_1 = require("./custom");
|
|
6
|
+
exports.system = (0, styled_components_1.compose)(styled_components_1.animation, styled_components_1.backgroundColor, styled_components_1.borders, styled_components_1.color, styled_components_1.effects, styled_components_1.flexboxes, styled_components_1.flexboxGrids, styled_components_1.grids, styled_components_1.interactivity, custom_1.isTruncated, styled_components_1.layout, custom_1.maxLines, styled_components_1.sizing, styled_components_1.space, styled_components_1.tables, styled_components_1.transforms, styled_components_1.transitions, styled_components_1.typography, custom_1.wordBreak);
|
|
7
|
+
exports.default = exports.system;
|
package/cjs/t/index.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
+
};
|
|
19
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
+
exports.default = void 0;
|
|
21
|
+
__exportStar(require("./t"), exports);
|
|
22
|
+
var t_1 = require("./t");
|
|
23
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(t_1).default; } });
|
|
24
|
+
__exportStar(require("./t.types"), exports);
|
package/cjs/t/t.js
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
|
+
var t = {};
|
|
4
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5
|
+
t[p] = s[p];
|
|
6
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9
|
+
t[p[i]] = s[p[i]];
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.T = exports.TBase = void 0;
|
|
18
|
+
const react_1 = __importDefault(require("react"));
|
|
19
|
+
const core_1 = require("../core");
|
|
20
|
+
const utils_1 = require("../utils");
|
|
21
|
+
exports.TBase = core_1.styled.spanBox `
|
|
22
|
+
transition-duration: fast;
|
|
23
|
+
`;
|
|
24
|
+
/** Displays given text and allows easy styling. */
|
|
25
|
+
exports.T = (0, core_1.vui)((props, ref) => {
|
|
26
|
+
const _a = (0, core_1.omitThemingProps)(props), { align, casing, centerV, children, className, decoration, text, weight } = _a, rest = __rest(_a, ["align", "casing", "centerV", "children", "className", "decoration", "text", "weight"]);
|
|
27
|
+
const styles = (0, core_1.useStyleConfig)('T', props);
|
|
28
|
+
const aliasedProps = (0, utils_1.filterUndefined)({
|
|
29
|
+
alignItems: centerV ? 'center' : undefined,
|
|
30
|
+
display: centerV ? 'inline-flex' : undefined,
|
|
31
|
+
fontWeight: weight,
|
|
32
|
+
textAlign: align,
|
|
33
|
+
textDecoration: decoration,
|
|
34
|
+
textTransform: casing
|
|
35
|
+
});
|
|
36
|
+
return (react_1.default.createElement(exports.TBase, Object.assign({ className: (0, utils_1.cs)('vui-t', className), ref: ref }, styles, aliasedProps, rest), children !== null && children !== void 0 ? children : text));
|
|
37
|
+
});
|
|
38
|
+
exports.T.displayName = 'T';
|
|
39
|
+
exports.default = exports.T;
|
package/cjs/t/theme.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const baseStyle = {};
|
|
4
|
+
const defaultProps = {
|
|
5
|
+
size: 'md'
|
|
6
|
+
};
|
|
7
|
+
const sizes = {
|
|
8
|
+
xs: {
|
|
9
|
+
fontSize: 'xs'
|
|
10
|
+
},
|
|
11
|
+
sm: {
|
|
12
|
+
fontSize: 'sm'
|
|
13
|
+
},
|
|
14
|
+
md: {
|
|
15
|
+
fontSize: 'md'
|
|
16
|
+
},
|
|
17
|
+
lg: {
|
|
18
|
+
fontSize: 'lg'
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
const variants = {};
|
|
22
|
+
exports.default = {
|
|
23
|
+
baseStyle,
|
|
24
|
+
defaultProps,
|
|
25
|
+
sizes,
|
|
26
|
+
variants
|
|
27
|
+
};
|