@veracity/vui 0.6.2 → 0.7.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/avatar/avatar.js +58 -0
- package/cjs/avatar/helpers.js +9 -0
- package/cjs/avatar/index.js +24 -0
- package/cjs/avatar/theme.js +88 -0
- package/cjs/box/box.js +45 -0
- package/cjs/box/index.js +24 -0
- package/cjs/box/theme.js +12 -0
- package/cjs/button/button.js +139 -0
- package/cjs/button/buttonIcon.js +17 -0
- package/cjs/button/buttonText.js +17 -0
- package/cjs/button/buttons.js +17 -0
- package/cjs/button/context.d.ts +4 -0
- package/cjs/button/context.js +7 -0
- package/cjs/button/index.js +28 -0
- package/cjs/button/theme.js +138 -0
- package/cjs/buttonGroup/buttonGroup.js +84 -0
- package/cjs/buttonGroup/context.d.ts +4 -0
- package/cjs/buttonGroup/context.js +7 -0
- package/cjs/buttonGroup/helpers.js +12 -0
- package/cjs/buttonGroup/index.js +25 -0
- package/cjs/card/card.js +44 -0
- package/cjs/card/index.js +24 -0
- package/cjs/card/theme.js +12 -0
- package/cjs/checkbox/checkbox.js +118 -0
- package/cjs/checkbox/checkboxGroup.js +60 -0
- package/cjs/checkbox/context.d.ts +4 -0
- package/cjs/checkbox/context.js +7 -0
- package/cjs/checkbox/index.js +27 -0
- package/cjs/checkbox/theme.js +61 -0
- package/cjs/core/index.js +23 -0
- package/cjs/core/links.js +115 -0
- package/cjs/core/media.js +63 -0
- package/cjs/core/styled.js +94 -0
- package/cjs/core/theme.js +82 -0
- package/cjs/core/vui.js +20 -0
- package/cjs/core/vuiProvider/animations.js +85 -0
- package/cjs/core/vuiProvider/fontFaces.js +28 -0
- package/cjs/core/vuiProvider/globalStyle.js +98 -0
- package/cjs/core/vuiProvider/index.js +30 -0
- package/cjs/core/vuiProvider/resetCSS.js +176 -0
- package/cjs/core/vuiProvider/vuiProvider.js +20 -0
- package/cjs/dialog/context.js +7 -0
- package/cjs/dialog/dialog.js +98 -0
- package/cjs/dialog/dialogBody.js +62 -0
- package/cjs/dialog/dialogCancelButton.js +19 -0
- package/cjs/dialog/dialogCloseButton.js +19 -0
- package/cjs/dialog/dialogFooter.js +34 -0
- package/cjs/dialog/dialogHeader.js +42 -0
- package/cjs/dialog/dialogIcon.js +21 -0
- package/cjs/dialog/dialogSubmitButton.js +17 -0
- package/cjs/dialog/dialogTitle.js +19 -0
- package/cjs/dialog/index.js +34 -0
- package/cjs/dialog/theme.js +28 -0
- package/cjs/divider/divider.js +37 -0
- package/cjs/divider/index.js +24 -0
- package/cjs/divider/theme.js +12 -0
- package/cjs/footer/context.js +7 -0
- package/cjs/footer/footer.js +53 -0
- package/cjs/footer/footerColumn.js +28 -0
- package/cjs/footer/footerContent.js +17 -0
- package/cjs/footer/footerHeading.js +17 -0
- package/cjs/footer/footerLink.js +17 -0
- package/cjs/footer/footerRow.js +15 -0
- package/cjs/footer/footerSection.js +34 -0
- package/cjs/footer/footerTrademark.js +38 -0
- package/cjs/footer/helpers.js +45 -0
- package/cjs/footer/index.js +31 -0
- package/cjs/footer/theme.js +14 -0
- package/cjs/grid/grid.js +31 -0
- package/cjs/grid/index.js +24 -0
- package/cjs/grid/theme.js +12 -0
- package/cjs/header/context.js +7 -0
- package/cjs/header/header.js +109 -0
- package/cjs/header/headerAccount.js +78 -0
- package/cjs/header/headerAccount.types.d.ts +35 -0
- package/cjs/header/headerAccountUserInfo.js +35 -0
- package/cjs/header/headerContent.js +17 -0
- package/cjs/header/headerCreateAccount.js +36 -0
- package/cjs/header/headerDivider.js +17 -0
- package/cjs/header/headerLinkItem.js +42 -0
- package/cjs/header/headerLogo.js +35 -0
- package/cjs/header/headerMainLinks.js +33 -0
- package/cjs/header/headerMobileContent.js +20 -0
- package/cjs/header/headerMobileToggle.js +22 -0
- package/cjs/header/headerNotifications.js +48 -0
- package/cjs/header/headerServices.js +45 -0
- package/cjs/header/headerServicesMessage.js +38 -0
- package/cjs/header/headerSignIn.js +31 -0
- package/cjs/header/helpers.js +49 -0
- package/cjs/header/index.js +43 -0
- package/cjs/header/loggedInHeader.js +46 -0
- package/cjs/header/loggedOutHeader.js +46 -0
- package/cjs/header/theme.js +93 -0
- package/cjs/heading/heading.js +39 -0
- package/cjs/heading/headings.js +15 -0
- package/cjs/heading/index.js +25 -0
- package/cjs/heading/theme.js +45 -0
- package/cjs/icon/helpers.js +34 -0
- package/cjs/icon/icon.js +37 -0
- package/cjs/icon/index.js +24 -0
- package/cjs/icon/theme.js +31 -0
- package/cjs/icons/cache.js +37 -0
- package/cjs/icons/consts.js +46 -0
- package/cjs/icons/index.js +24 -0
- package/cjs/image/image.js +33 -0
- package/cjs/image/index.js +24 -0
- package/cjs/image/theme.js +12 -0
- package/cjs/index.js +54 -0
- package/cjs/input/context.d.ts +4 -0
- package/cjs/input/context.js +7 -0
- package/cjs/input/helpers.js +10 -0
- package/cjs/input/index.js +26 -0
- package/cjs/input/input.js +128 -0
- package/cjs/input/inputIcon.js +20 -0
- package/cjs/input/inputInput.js +43 -0
- package/cjs/input/theme.js +76 -0
- package/cjs/link/context.d.ts +4 -0
- package/cjs/link/context.js +7 -0
- package/cjs/link/index.js +26 -0
- package/cjs/link/link.js +80 -0
- package/cjs/link/linkIcon.js +17 -0
- package/cjs/link/linkText.js +17 -0
- package/cjs/link/theme.js +72 -0
- package/cjs/list/context.d.ts +4 -0
- package/cjs/list/context.js +7 -0
- package/cjs/list/index.js +30 -0
- package/cjs/list/list.js +71 -0
- package/cjs/list/listDivider.js +17 -0
- package/cjs/list/listHeading.js +17 -0
- package/cjs/list/listIcon.js +17 -0
- package/cjs/list/listItem.js +104 -0
- package/cjs/list/listText.js +17 -0
- package/cjs/list/theme.js +89 -0
- package/cjs/menu/context.js +7 -0
- package/cjs/menu/index.js +31 -0
- package/cjs/menu/menu.js +57 -0
- package/cjs/menu/menuButton.js +18 -0
- package/cjs/menu/menuItem.js +38 -0
- package/cjs/menu/menuList.js +36 -0
- package/cjs/menu/theme.js +27 -0
- package/cjs/modal/context.js +7 -0
- package/cjs/modal/focusLock.js +51 -0
- package/cjs/modal/index.js +30 -0
- package/cjs/modal/modal.js +106 -0
- package/cjs/modal/modalBackdrop.js +25 -0
- package/cjs/modal/modalContent.js +25 -0
- package/cjs/modal/modalManager.js +31 -0
- package/cjs/modal/theme.js +14 -0
- package/cjs/notification/context.d.ts +4 -0
- package/cjs/notification/context.js +7 -0
- package/cjs/notification/index.js +29 -0
- package/cjs/notification/notification.js +54 -0
- package/cjs/notification/notificationButton.js +18 -0
- package/cjs/notification/notificationIcon.js +22 -0
- package/cjs/notification/notificationText.js +17 -0
- package/cjs/notification/notificationTitle.js +17 -0
- package/cjs/notification/theme.js +42 -0
- package/cjs/p/index.js +24 -0
- package/cjs/p/p.js +37 -0
- package/cjs/p/theme.js +35 -0
- package/cjs/pagination/context.js +7 -0
- package/cjs/pagination/helpers.js +20 -0
- package/cjs/pagination/index.js +35 -0
- package/cjs/pagination/pagination.js +59 -0
- package/cjs/pagination/paginationButton.js +39 -0
- package/cjs/pagination/paginationEllipsis.js +29 -0
- package/cjs/pagination/paginationGoToPage.js +29 -0
- package/cjs/pagination/paginationNavigation.js +61 -0
- package/cjs/pagination/paginationPrevNext.js +37 -0
- package/cjs/pagination/paginationResults.js +30 -0
- package/cjs/pagination/theme.js +14 -0
- package/cjs/pagination/usePagination.js +42 -0
- package/cjs/panel/index.js +24 -0
- package/cjs/panel/panel.js +32 -0
- package/cjs/panel/theme.js +22 -0
- package/cjs/popover/consts.js +37 -0
- package/cjs/popover/context.js +7 -0
- package/cjs/popover/index.js +35 -0
- package/cjs/popover/popover.js +36 -0
- package/cjs/popover/popoverContent.js +37 -0
- package/cjs/popover/popoverStyle.js +22 -0
- package/cjs/popover/popoverTrigger.js +42 -0
- package/cjs/popover/theme.js +14 -0
- package/cjs/popover/usePopover.js +85 -0
- package/cjs/portal/index.js +24 -0
- package/cjs/portal/portal.js +44 -0
- package/cjs/radio/context.d.ts +4 -0
- package/cjs/radio/context.js +7 -0
- package/cjs/radio/index.js +27 -0
- package/cjs/radio/radio.js +123 -0
- package/cjs/radio/radioGroup.js +78 -0
- package/cjs/radio/theme.js +61 -0
- package/cjs/skeleton/index.js +24 -0
- package/cjs/skeleton/skeleton.js +35 -0
- package/cjs/skeleton/theme.js +49 -0
- package/cjs/spinner/consts.d.ts +36 -0
- package/cjs/spinner/consts.js +26 -0
- package/cjs/spinner/index.js +24 -0
- package/cjs/spinner/spinner.js +51 -0
- package/cjs/spinner/theme.js +75 -0
- package/cjs/svg/cache.js +30 -0
- package/cjs/svg/helpers.js +32 -0
- package/cjs/svg/index.js +24 -0
- package/cjs/svg/svg.js +119 -0
- package/cjs/switch/context.d.ts +4 -0
- package/cjs/switch/context.js +7 -0
- package/cjs/switch/index.js +27 -0
- package/cjs/switch/switch.js +92 -0
- package/cjs/switch/switchButton.js +145 -0
- package/cjs/switch/switchLabel.js +17 -0
- package/cjs/switch/theme.js +88 -0
- package/cjs/system/custom.js +32 -0
- package/cjs/system/index.js +31 -0
- package/cjs/system/system.js +7 -0
- package/cjs/t/index.js +24 -0
- package/cjs/t/t.js +39 -0
- package/cjs/t/theme.js +27 -0
- package/cjs/tag/context.d.ts +4 -0
- package/cjs/tag/context.js +7 -0
- package/cjs/tag/index.js +28 -0
- package/cjs/tag/tag.js +113 -0
- package/cjs/tag/tagButton.js +18 -0
- package/cjs/tag/tagIcon.js +17 -0
- package/cjs/tag/tagText.js +17 -0
- package/cjs/tag/theme.js +119 -0
- package/cjs/textarea/helpers.js +10 -0
- package/cjs/textarea/index.js +24 -0
- package/cjs/textarea/textarea.js +122 -0
- package/cjs/textarea/theme.js +33 -0
- package/cjs/theme/components.js +67 -0
- package/cjs/theme/defaultTheme.js +9 -0
- package/cjs/theme/foundations/fonts.js +5 -0
- package/cjs/theme/foundations/index.js +47 -0
- package/cjs/theme/foundations/shadows.js +25 -0
- package/cjs/theme/foundations/transformers.js +17 -0
- package/cjs/theme/index.js +60 -0
- package/cjs/utils/assertion.js +42 -0
- package/cjs/utils/function.js +20 -0
- package/cjs/utils/index.js +23 -0
- package/cjs/utils/number.js +8 -0
- package/cjs/utils/object.js +49 -0
- package/cjs/utils/react.d.ts +39 -0
- package/cjs/utils/react.js +146 -0
- package/cjs/utils/styles.js +31 -0
- package/esm/avatar/avatar.d.ts +5 -0
- package/esm/avatar/avatar.js +41 -0
- package/esm/avatar/avatar.types.d.ts +19 -0
- package/esm/avatar/avatar.types.js +1 -0
- package/esm/avatar/helpers.d.ts +2 -0
- package/esm/avatar/helpers.js +5 -0
- package/esm/avatar/index.d.ts +3 -0
- package/esm/avatar/index.js +3 -0
- package/esm/avatar/theme.d.ts +53 -0
- package/esm/avatar/theme.js +86 -0
- package/esm/box/box.d.ts +5 -0
- package/esm/box/box.js +28 -0
- package/esm/box/box.types.d.ts +26 -0
- package/esm/box/box.types.js +1 -0
- package/esm/box/index.d.ts +3 -0
- package/esm/box/index.js +3 -0
- package/esm/box/theme.d.ts +7 -0
- package/esm/box/theme.js +10 -0
- package/esm/button/button.d.ts +29 -0
- package/esm/button/button.js +99 -0
- package/esm/button/button.types.d.ts +38 -0
- package/esm/button/button.types.js +1 -0
- package/esm/button/buttonIcon.d.ts +4 -0
- package/esm/button/buttonIcon.js +11 -0
- package/esm/button/buttonText.d.ts +4 -0
- package/esm/button/buttonText.js +11 -0
- package/esm/button/buttons.d.ts +9 -0
- package/esm/button/buttons.js +11 -0
- package/esm/button/consts.d.ts +2 -0
- package/esm/button/consts.js +24 -0
- package/esm/button/context.d.ts +4 -0
- package/esm/button/context.js +3 -0
- package/esm/button/index.d.ts +7 -0
- package/esm/button/index.js +7 -0
- package/esm/button/theme.d.ts +113 -0
- package/esm/button/theme.js +140 -0
- package/esm/buttonGroup/buttonGroup.d.ts +10 -0
- package/esm/buttonGroup/buttonGroup.js +47 -0
- package/esm/buttonGroup/buttonGroup.types.d.ts +8 -0
- package/esm/buttonGroup/buttonGroup.types.js +1 -0
- package/esm/buttonGroup/context.d.ts +4 -0
- package/esm/buttonGroup/context.js +3 -0
- package/esm/buttonGroup/helpers.d.ts +3 -0
- package/esm/buttonGroup/helpers.js +8 -0
- package/esm/buttonGroup/index.d.ts +4 -0
- package/esm/buttonGroup/index.js +4 -0
- package/esm/card/card.d.ts +7 -0
- package/esm/card/card.js +27 -0
- package/esm/card/card.types.d.ts +6 -0
- package/esm/card/card.types.js +1 -0
- package/esm/card/index.d.ts +3 -0
- package/esm/card/index.js +3 -0
- package/esm/card/theme.d.ts +7 -0
- package/esm/card/theme.js +10 -0
- package/esm/checkbox/checkbox.d.ts +8 -0
- package/esm/checkbox/checkbox.js +79 -0
- package/esm/checkbox/checkbox.types.d.ts +43 -0
- package/esm/checkbox/checkbox.types.js +1 -0
- package/esm/checkbox/checkboxGroup.d.ts +8 -0
- package/esm/checkbox/checkboxGroup.js +23 -0
- package/esm/checkbox/checkboxGroup.types.d.ts +19 -0
- package/esm/checkbox/checkboxGroup.types.js +1 -0
- package/esm/checkbox/context.d.ts +4 -0
- package/esm/checkbox/context.js +3 -0
- package/esm/checkbox/index.d.ts +6 -0
- package/esm/checkbox/index.js +6 -0
- package/esm/checkbox/theme.d.ts +49 -0
- package/esm/checkbox/theme.js +59 -0
- package/esm/core/consts.d.ts +8 -0
- package/esm/core/consts.js +8 -0
- package/esm/core/index.d.ts +7 -0
- package/esm/core/index.js +7 -0
- package/esm/core/links.d.ts +21 -0
- package/esm/core/links.js +74 -0
- package/esm/core/media.d.ts +38 -0
- package/esm/core/media.js +47 -0
- package/esm/core/styled.d.ts +195 -0
- package/esm/core/styled.js +68 -0
- package/esm/core/theme.d.ts +41 -0
- package/esm/core/theme.js +57 -0
- package/esm/core/vui.d.ts +31 -0
- package/esm/core/vui.js +13 -0
- package/esm/core/vuiProvider/animations.d.ts +9 -0
- package/esm/core/vuiProvider/animations.js +82 -0
- package/esm/core/vuiProvider/fontFaces.d.ts +2 -0
- package/esm/core/vuiProvider/fontFaces.js +26 -0
- package/esm/core/vuiProvider/globalStyle.d.ts +12 -0
- package/esm/core/vuiProvider/globalStyle.js +82 -0
- package/esm/core/vuiProvider/index.d.ts +5 -0
- package/esm/core/vuiProvider/index.js +5 -0
- package/esm/core/vuiProvider/resetCSS.d.ts +3 -0
- package/esm/core/vuiProvider/resetCSS.js +174 -0
- package/esm/core/vuiProvider/vuiProvider.d.ts +13 -0
- package/esm/core/vuiProvider/vuiProvider.js +15 -0
- package/esm/dialog/consts.d.ts +3 -0
- package/esm/dialog/consts.js +27 -0
- package/esm/dialog/context.d.ts +4 -0
- package/esm/dialog/context.js +3 -0
- package/esm/dialog/dialog.d.ts +26 -0
- package/esm/dialog/dialog.js +61 -0
- package/esm/dialog/dialog.types.d.ts +47 -0
- package/esm/dialog/dialog.types.js +1 -0
- package/esm/dialog/dialogBody.d.ts +9 -0
- package/esm/dialog/dialogBody.js +34 -0
- package/esm/dialog/dialogCancelButton.d.ts +4 -0
- package/esm/dialog/dialogCancelButton.js +12 -0
- package/esm/dialog/dialogCloseButton.d.ts +4 -0
- package/esm/dialog/dialogCloseButton.js +12 -0
- package/esm/dialog/dialogFooter.d.ts +4 -0
- package/esm/dialog/dialogFooter.js +17 -0
- package/esm/dialog/dialogHeader.d.ts +4 -0
- package/esm/dialog/dialogHeader.js +24 -0
- package/esm/dialog/dialogIcon.d.ts +4 -0
- package/esm/dialog/dialogIcon.js +14 -0
- package/esm/dialog/dialogSubmitButton.d.ts +4 -0
- package/esm/dialog/dialogSubmitButton.js +11 -0
- package/esm/dialog/dialogTitle.d.ts +4 -0
- package/esm/dialog/dialogTitle.js +12 -0
- package/esm/dialog/index.d.ts +13 -0
- package/esm/dialog/index.js +13 -0
- package/esm/dialog/theme.d.ts +22 -0
- package/esm/dialog/theme.js +26 -0
- package/esm/divider/divider.d.ts +5 -0
- package/esm/divider/divider.js +20 -0
- package/esm/divider/divider.types.d.ts +10 -0
- package/esm/divider/divider.types.js +1 -0
- package/esm/divider/index.d.ts +3 -0
- package/esm/divider/index.js +3 -0
- package/esm/divider/theme.d.ts +7 -0
- package/esm/divider/theme.js +10 -0
- package/esm/footer/context.d.ts +4 -0
- package/esm/footer/context.js +3 -0
- package/esm/footer/footer.d.ts +19 -0
- package/esm/footer/footer.js +38 -0
- package/esm/footer/footer.types.d.ts +38 -0
- package/esm/footer/footer.types.js +1 -0
- package/esm/footer/footerColumn.d.ts +4 -0
- package/esm/footer/footerColumn.js +12 -0
- package/esm/footer/footerContent.d.ts +3 -0
- package/esm/footer/footerContent.js +11 -0
- package/esm/footer/footerHeading.d.ts +4 -0
- package/esm/footer/footerHeading.js +11 -0
- package/esm/footer/footerLink.d.ts +4 -0
- package/esm/footer/footerLink.js +11 -0
- package/esm/footer/footerRow.d.ts +4 -0
- package/esm/footer/footerRow.js +10 -0
- package/esm/footer/footerSection.d.ts +4 -0
- package/esm/footer/footerSection.js +19 -0
- package/esm/footer/footerTrademark.d.ts +4 -0
- package/esm/footer/footerTrademark.js +21 -0
- package/esm/footer/helpers.d.ts +7 -0
- package/esm/footer/helpers.js +29 -0
- package/esm/footer/index.d.ts +10 -0
- package/esm/footer/index.js +10 -0
- package/esm/footer/theme.d.ts +8 -0
- package/esm/footer/theme.js +12 -0
- package/esm/grid/grid.d.ts +5 -0
- package/esm/grid/grid.js +14 -0
- package/esm/grid/grid.types.d.ts +3 -0
- package/esm/grid/grid.types.js +1 -0
- package/esm/grid/index.d.ts +3 -0
- package/esm/grid/index.js +3 -0
- package/esm/grid/theme.d.ts +7 -0
- package/esm/grid/theme.js +10 -0
- package/esm/header/context.d.ts +4 -0
- package/esm/header/context.js +3 -0
- package/esm/header/header.d.ts +35 -0
- package/esm/header/header.js +69 -0
- package/esm/header/header.types.d.ts +99 -0
- package/esm/header/header.types.js +1 -0
- package/esm/header/headerAccount.d.ts +8 -0
- package/esm/header/headerAccount.js +34 -0
- package/esm/header/headerAccount.types.d.ts +35 -0
- package/esm/header/headerAccount.types.js +1 -0
- package/esm/header/headerAccountUserInfo.d.ts +4 -0
- package/esm/header/headerAccountUserInfo.js +18 -0
- package/esm/header/headerContent.d.ts +3 -0
- package/esm/header/headerContent.js +11 -0
- package/esm/header/headerCreateAccount.d.ts +4 -0
- package/esm/header/headerCreateAccount.js +18 -0
- package/esm/header/headerDivider.d.ts +4 -0
- package/esm/header/headerDivider.js +11 -0
- package/esm/header/headerLinkItem.d.ts +4 -0
- package/esm/header/headerLinkItem.js +33 -0
- package/esm/header/headerLogo.d.ts +4 -0
- package/esm/header/headerLogo.js +17 -0
- package/esm/header/headerMainLinks.d.ts +4 -0
- package/esm/header/headerMainLinks.js +15 -0
- package/esm/header/headerMobileContent.d.ts +4 -0
- package/esm/header/headerMobileContent.js +13 -0
- package/esm/header/headerMobileToggle.d.ts +4 -0
- package/esm/header/headerMobileToggle.js +15 -0
- package/esm/header/headerNotifications.d.ts +4 -0
- package/esm/header/headerNotifications.js +30 -0
- package/esm/header/headerServices.d.ts +8 -0
- package/esm/header/headerServices.js +27 -0
- package/esm/header/headerServicesMessage.d.ts +4 -0
- package/esm/header/headerServicesMessage.js +20 -0
- package/esm/header/headerSignIn.d.ts +4 -0
- package/esm/header/headerSignIn.js +13 -0
- package/esm/header/helpers.d.ts +8 -0
- package/esm/header/helpers.js +32 -0
- package/esm/header/index.d.ts +22 -0
- package/esm/header/index.js +22 -0
- package/esm/header/loggedInHeader.d.ts +4 -0
- package/esm/header/loggedInHeader.js +29 -0
- package/esm/header/loggedOutHeader.d.ts +4 -0
- package/esm/header/loggedOutHeader.js +29 -0
- package/esm/header/theme.d.ts +87 -0
- package/esm/header/theme.js +91 -0
- package/esm/heading/heading.d.ts +5 -0
- package/esm/heading/heading.js +22 -0
- package/esm/heading/heading.types.d.ts +15 -0
- package/esm/heading/heading.types.js +1 -0
- package/esm/heading/headings.d.ts +7 -0
- package/esm/heading/headings.js +9 -0
- package/esm/heading/index.d.ts +4 -0
- package/esm/heading/index.js +4 -0
- package/esm/heading/theme.d.ts +40 -0
- package/esm/heading/theme.js +43 -0
- package/esm/icon/helpers.d.ts +7 -0
- package/esm/icon/helpers.js +30 -0
- package/esm/icon/icon.d.ts +4 -0
- package/esm/icon/icon.js +20 -0
- package/esm/icon/icon.types.d.ts +24 -0
- package/esm/icon/icon.types.js +1 -0
- package/esm/icon/index.d.ts +3 -0
- package/esm/icon/index.js +3 -0
- package/esm/icon/theme.d.ts +26 -0
- package/esm/icon/theme.js +29 -0
- package/esm/icons/baseIcons/cub/cubPowerBi.d.ts +3 -0
- package/esm/icons/baseIcons/cub/cubPowerBi.js +5 -0
- package/esm/icons/baseIcons/cub/cubVeracity.d.ts +3 -0
- package/esm/icons/baseIcons/cub/cubVeracity.js +5 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxIndeterminate.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxIndeterminate.js +5 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxSelected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxSelected.js +5 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxUnselected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxUnselected.js +6 -0
- package/esm/icons/baseIcons/cui/cuiRadioSelected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiRadioSelected.js +6 -0
- package/esm/icons/baseIcons/cui/cuiRadioUnselected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiRadioUnselected.js +6 -0
- package/esm/icons/baseIcons/cul/culApiProduct.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culApiProduct.js +5 -0
- package/esm/icons/baseIcons/cul/culApiService.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culApiService.js +5 -0
- package/esm/icons/baseIcons/cul/culCircleChart.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culCircleChart.js +5 -0
- package/esm/icons/baseIcons/cul/culCircleChartAlt.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culCircleChartAlt.js +5 -0
- package/esm/icons/baseIcons/cul/culCovid.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culCovid.js +5 -0
- package/esm/icons/baseIcons/cul/culDeepSearch.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culDeepSearch.js +5 -0
- package/esm/icons/baseIcons/cul/culDotsMenu.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culDotsMenu.js +5 -0
- package/esm/icons/baseIcons/cul/culGlobePlus.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culGlobePlus.js +5 -0
- package/esm/icons/baseIcons/cul/culListDense.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culListDense.js +5 -0
- package/esm/icons/baseIcons/cul/culMapMarkerStar.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culMapMarkerStar.js +5 -0
- package/esm/icons/baseIcons/cul/culNumber1.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culNumber1.js +5 -0
- package/esm/icons/baseIcons/cul/culPlusThin.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culPlusThin.js +5 -0
- package/esm/icons/baseIcons/cul/culScreenshot.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culScreenshot.js +5 -0
- package/esm/icons/baseIcons/cul/culScreenshotAlt.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culScreenshotAlt.js +5 -0
- package/esm/icons/baseIcons/cul/culShortcut.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culShortcut.js +5 -0
- package/esm/icons/baseIcons/cul/culTarget.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culTarget.js +5 -0
- package/esm/icons/baseIcons/cul/culTimesThin.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culTimesThin.js +5 -0
- package/esm/icons/baseIcons/cul/culTransformer.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culTransformer.js +5 -0
- package/esm/icons/baseIcons/cul/culUserTransfer.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culUserTransfer.js +5 -0
- package/esm/icons/baseIcons/cul/culVeracityService.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culVeracityService.js +5 -0
- package/esm/icons/baseIcons/cul/culVessel.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culVessel.js +5 -0
- package/esm/icons/baseIcons/cul/culVesselGroup.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culVesselGroup.js +5 -0
- package/esm/icons/baseIcons/cus/cusDotFull.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusDotFull.js +5 -0
- package/esm/icons/baseIcons/cus/cusDotFullAlt.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusDotFullAlt.js +5 -0
- package/esm/icons/baseIcons/cus/cusDotsMenu.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusDotsMenu.js +5 -0
- package/esm/icons/baseIcons/cus/cusTransformer.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusTransformer.js +5 -0
- package/esm/icons/baseIcons/cus/cusVessel.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusVessel.js +5 -0
- package/esm/icons/baseIcons/fab/fabApplePay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabApplePay.js +5 -0
- package/esm/icons/baseIcons/fab/fabBluetooth.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabBluetooth.js +5 -0
- package/esm/icons/baseIcons/fab/fabBtc.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabBtc.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcAmazonPay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcAmazonPay.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcAmex.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcAmex.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcApplePay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcApplePay.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcDinersClub.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcDinersClub.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcMastercard.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcMastercard.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcPaypal.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcPaypal.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcVisa.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcVisa.js +5 -0
- package/esm/icons/baseIcons/fab/fabDhl.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabDhl.js +5 -0
- package/esm/icons/baseIcons/fab/fabEbay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabEbay.js +5 -0
- package/esm/icons/baseIcons/fab/fabFacebook.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabFacebook.js +5 -0
- package/esm/icons/baseIcons/fab/fabFedex.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabFedex.js +5 -0
- package/esm/icons/baseIcons/fab/fabFirefox.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabFirefox.js +5 -0
- package/esm/icons/baseIcons/fab/fabGoogle.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabGoogle.js +5 -0
- package/esm/icons/baseIcons/fab/fabGoogleDrive.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabGoogleDrive.js +5 -0
- package/esm/icons/baseIcons/fab/fabLinkedinIn.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabLinkedinIn.js +5 -0
- package/esm/icons/baseIcons/fab/fabMedium.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabMedium.js +5 -0
- package/esm/icons/baseIcons/fab/fabOsi.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabOsi.js +5 -0
- package/esm/icons/baseIcons/fab/fabSlack.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabSlack.js +5 -0
- package/esm/icons/baseIcons/fab/fabTwitter.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabTwitter.js +5 -0
- package/esm/icons/baseIcons/fab/fabUps.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabUps.js +5 -0
- package/esm/icons/baseIcons/fab/fabYoutube.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabYoutube.js +5 -0
- package/esm/icons/baseIcons/fad/fadSpinnerThird.d.ts +3 -0
- package/esm/icons/baseIcons/fad/fadSpinnerThird.js +5 -0
- package/esm/icons/baseIcons/fal/falAddressBook.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAddressBook.js +5 -0
- package/esm/icons/baseIcons/fal/falAddressCard.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAddressCard.js +5 -0
- package/esm/icons/baseIcons/fal/falAnalytics.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAnalytics.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltDown.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowDown.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromBottom.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromBottom.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromTop.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromTop.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToBottom.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToBottom.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToTop.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToTop.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrows.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrows.js +5 -0
- package/esm/icons/baseIcons/fal/falAward.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAward.js +5 -0
- package/esm/icons/baseIcons/fal/falBan.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBan.js +5 -0
- package/esm/icons/baseIcons/fal/falBars.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBars.js +5 -0
- package/esm/icons/baseIcons/fal/falBell.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBell.js +5 -0
- package/esm/icons/baseIcons/fal/falBookOpen.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBookOpen.js +5 -0
- package/esm/icons/baseIcons/fal/falBroadcastTower.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBroadcastTower.js +5 -0
- package/esm/icons/baseIcons/fal/falBroom.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBroom.js +5 -0
- package/esm/icons/baseIcons/fal/falBuilding.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBuilding.js +5 -0
- package/esm/icons/baseIcons/fal/falBullseye.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBullseye.js +5 -0
- package/esm/icons/baseIcons/fal/falCalendar.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCalendar.js +5 -0
- package/esm/icons/baseIcons/fal/falCalendarAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCalendarAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falCamera.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCamera.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretDown.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretRight.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretUp.js +5 -0
- package/esm/icons/baseIcons/fal/falCauldron.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCauldron.js +5 -0
- package/esm/icons/baseIcons/fal/falChartArea.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartArea.js +5 -0
- package/esm/icons/baseIcons/fal/falChartBar.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartBar.js +5 -0
- package/esm/icons/baseIcons/fal/falChartLine.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartLine.js +5 -0
- package/esm/icons/baseIcons/fal/falChartLineDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartLineDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChartNetwork.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartNetwork.js +5 -0
- package/esm/icons/baseIcons/fal/falChartPie.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartPie.js +5 -0
- package/esm/icons/baseIcons/fal/falChartPieAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartPieAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falChartScatter.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartScatter.js +5 -0
- package/esm/icons/baseIcons/fal/falCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falCheckCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCheckCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falCheckSquare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCheckSquare.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronRight.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronUp.js +5 -0
- package/esm/icons/baseIcons/fal/falCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falCloud.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloud.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudShowersHeavy.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudShowersHeavy.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudSnow.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudSnow.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudSun.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudSun.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudSunRain.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudSunRain.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudUpload.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudUpload.js +5 -0
- package/esm/icons/baseIcons/fal/falCode.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCode.js +5 -0
- package/esm/icons/baseIcons/fal/falCog.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCog.js +5 -0
- package/esm/icons/baseIcons/fal/falCogs.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCogs.js +5 -0
- package/esm/icons/baseIcons/fal/falComment.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falComment.js +5 -0
- package/esm/icons/baseIcons/fal/falCommentAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCommentAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falCompressAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCompressAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falCopy.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCopy.js +5 -0
- package/esm/icons/baseIcons/fal/falCreditCard.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCreditCard.js +5 -0
- package/esm/icons/baseIcons/fal/falDatabase.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falDatabase.js +5 -0
- package/esm/icons/baseIcons/fal/falDotCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falDotCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falDownload.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falDownload.js +5 -0
- package/esm/icons/baseIcons/fal/falEdit.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEdit.js +5 -0
- package/esm/icons/baseIcons/fal/falEllipsisH.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEllipsisH.js +5 -0
- package/esm/icons/baseIcons/fal/falEllipsisV.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEllipsisV.js +5 -0
- package/esm/icons/baseIcons/fal/falEnvelope.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEnvelope.js +5 -0
- package/esm/icons/baseIcons/fal/falExchange.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExchange.js +5 -0
- package/esm/icons/baseIcons/fal/falExclamationCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExclamationCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falExclamationTriangle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExclamationTriangle.js +5 -0
- package/esm/icons/baseIcons/fal/falExpandAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExpandAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falExternalLink.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExternalLink.js +5 -0
- package/esm/icons/baseIcons/fal/falEye.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEye.js +5 -0
- package/esm/icons/baseIcons/fal/falEyeSlash.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEyeSlash.js +5 -0
- package/esm/icons/baseIcons/fal/falFile.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFile.js +5 -0
- package/esm/icons/baseIcons/fal/falFileAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falFileArchive.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileArchive.js +5 -0
- package/esm/icons/baseIcons/fal/falFileAudio.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileAudio.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCertificate.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCertificate.js +5 -0
- package/esm/icons/baseIcons/fal/falFileChartLine.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileChartLine.js +5 -0
- package/esm/icons/baseIcons/fal/falFileChartPie.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileChartPie.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCode.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCode.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCsv.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCsv.js +5 -0
- package/esm/icons/baseIcons/fal/falFileEdit.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileEdit.js +5 -0
- package/esm/icons/baseIcons/fal/falFileExcel.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileExcel.js +5 -0
- package/esm/icons/baseIcons/fal/falFileImage.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileImage.js +5 -0
- package/esm/icons/baseIcons/fal/falFileInvoiceDollar.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileInvoiceDollar.js +5 -0
- package/esm/icons/baseIcons/fal/falFilePdf.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilePdf.js +5 -0
- package/esm/icons/baseIcons/fal/falFilePlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilePlus.js +5 -0
- package/esm/icons/baseIcons/fal/falFilePowerpoint.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilePowerpoint.js +5 -0
- package/esm/icons/baseIcons/fal/falFileSpreadsheet.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileSpreadsheet.js +5 -0
- package/esm/icons/baseIcons/fal/falFileVideo.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileVideo.js +5 -0
- package/esm/icons/baseIcons/fal/falFileWord.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileWord.js +5 -0
- package/esm/icons/baseIcons/fal/falFilter.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilter.js +5 -0
- package/esm/icons/baseIcons/fal/falFlag.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFlag.js +5 -0
- package/esm/icons/baseIcons/fal/falFolder.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolder.js +5 -0
- package/esm/icons/baseIcons/fal/falFolderOpen.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolderOpen.js +5 -0
- package/esm/icons/baseIcons/fal/falFolderPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolderPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falFolders.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolders.js +5 -0
- package/esm/icons/baseIcons/fal/falGlassesAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falGlassesAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falGlobe.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falGlobe.js +5 -0
- package/esm/icons/baseIcons/fal/falHome.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falHome.js +5 -0
- package/esm/icons/baseIcons/fal/falHourglass.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falHourglass.js +5 -0
- package/esm/icons/baseIcons/fal/falImage.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falImage.js +5 -0
- package/esm/icons/baseIcons/fal/falInfoCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falInfoCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falKey.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falKey.js +5 -0
- package/esm/icons/baseIcons/fal/falLayerGroup.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLayerGroup.js +5 -0
- package/esm/icons/baseIcons/fal/falLayerPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLayerPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falLink.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLink.js +5 -0
- package/esm/icons/baseIcons/fal/falList.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falList.js +5 -0
- package/esm/icons/baseIcons/fal/falLockAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLockAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowDown.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowRight.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowUp.js +5 -0
- package/esm/icons/baseIcons/fal/falMap.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMap.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarked.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarked.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkedAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkedAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarker.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarker.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAltSlash.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAltSlash.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerExclamation.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerExclamation.js +5 -0
- package/esm/icons/baseIcons/fal/falMinus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMinus.js +5 -0
- package/esm/icons/baseIcons/fal/falPause.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPause.js +5 -0
- package/esm/icons/baseIcons/fal/falPauseCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPauseCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falPen.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPen.js +5 -0
- package/esm/icons/baseIcons/fal/falPlay.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlay.js +5 -0
- package/esm/icons/baseIcons/fal/falPlayCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlayCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falPlug.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlug.js +5 -0
- package/esm/icons/baseIcons/fal/falPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falPlusCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlusCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falPlusSquare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlusSquare.js +5 -0
- package/esm/icons/baseIcons/fal/falPrint.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPrint.js +5 -0
- package/esm/icons/baseIcons/fal/falPuzzlePiece.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPuzzlePiece.js +5 -0
- package/esm/icons/baseIcons/fal/falQuestionCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falQuestionCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falReceipt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falReceipt.js +5 -0
- package/esm/icons/baseIcons/fal/falRedo.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falRedo.js +5 -0
- package/esm/icons/baseIcons/fal/falSave.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSave.js +5 -0
- package/esm/icons/baseIcons/fal/falSearch.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSearch.js +5 -0
- package/esm/icons/baseIcons/fal/falSearchMinus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSearchMinus.js +5 -0
- package/esm/icons/baseIcons/fal/falSearchPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSearchPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falServer.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falServer.js +5 -0
- package/esm/icons/baseIcons/fal/falShare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShare.js +5 -0
- package/esm/icons/baseIcons/fal/falShareAll.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShareAll.js +5 -0
- package/esm/icons/baseIcons/fal/falShareAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShareAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falShieldAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShieldAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falShieldCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShieldCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falShip.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShip.js +5 -0
- package/esm/icons/baseIcons/fal/falShoppingBasket.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShoppingBasket.js +5 -0
- package/esm/icons/baseIcons/fal/falSignIn.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignIn.js +5 -0
- package/esm/icons/baseIcons/fal/falSignInAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignInAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falSignOut.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignOut.js +5 -0
- package/esm/icons/baseIcons/fal/falSignOutAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignOutAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falSlidersV.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSlidersV.js +5 -0
- package/esm/icons/baseIcons/fal/falSnowBlowing.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSnowBlowing.js +5 -0
- package/esm/icons/baseIcons/fal/falSnowflake.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSnowflake.js +5 -0
- package/esm/icons/baseIcons/fal/falSolarPanel.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSolarPanel.js +5 -0
- package/esm/icons/baseIcons/fal/falSort.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSort.js +5 -0
- package/esm/icons/baseIcons/fal/falSpinner.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSpinner.js +5 -0
- package/esm/icons/baseIcons/fal/falSquare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSquare.js +5 -0
- package/esm/icons/baseIcons/fal/falStepForward.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStepForward.js +5 -0
- package/esm/icons/baseIcons/fal/falStop.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStop.js +5 -0
- package/esm/icons/baseIcons/fal/falStopCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStopCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falStopwatch.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStopwatch.js +5 -0
- package/esm/icons/baseIcons/fal/falSuitcase.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSuitcase.js +5 -0
- package/esm/icons/baseIcons/fal/falSun.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSun.js +5 -0
- package/esm/icons/baseIcons/fal/falSync.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSync.js +5 -0
- package/esm/icons/baseIcons/fal/falTachometer.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTachometer.js +5 -0
- package/esm/icons/baseIcons/fal/falTemperatureHigh.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTemperatureHigh.js +5 -0
- package/esm/icons/baseIcons/fal/falTh.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTh.js +5 -0
- package/esm/icons/baseIcons/fal/falThLarge.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falThLarge.js +5 -0
- package/esm/icons/baseIcons/fal/falThList.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falThList.js +5 -0
- package/esm/icons/baseIcons/fal/falTimes.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTimes.js +5 -0
- package/esm/icons/baseIcons/fal/falTimesCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTimesCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falToggleOff.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falToggleOff.js +5 -0
- package/esm/icons/baseIcons/fal/falToggleOn.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falToggleOn.js +5 -0
- package/esm/icons/baseIcons/fal/falTrashAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTrashAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falUnlockAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUnlockAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falUser.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUser.js +5 -0
- package/esm/icons/baseIcons/fal/falUserChart.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserChart.js +5 -0
- package/esm/icons/baseIcons/fal/falUserCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falUserCog.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserCog.js +5 -0
- package/esm/icons/baseIcons/fal/falUserEdit.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserEdit.js +5 -0
- package/esm/icons/baseIcons/fal/falUserFriends.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserFriends.js +5 -0
- package/esm/icons/baseIcons/fal/falUserPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falUserShield.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserShield.js +5 -0
- package/esm/icons/baseIcons/fal/falUserTimes.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserTimes.js +5 -0
- package/esm/icons/baseIcons/fal/falUsers.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUsers.js +5 -0
- package/esm/icons/baseIcons/fal/falUsersClass.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUsersClass.js +5 -0
- package/esm/icons/baseIcons/fal/falWater.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWater.js +5 -0
- package/esm/icons/baseIcons/fal/falWind.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWind.js +5 -0
- package/esm/icons/baseIcons/fal/falWindTurbine.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWindTurbine.js +5 -0
- package/esm/icons/baseIcons/fal/falWrench.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWrench.js +5 -0
- package/esm/icons/baseIcons/fas/fasCalendarAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCalendarAlt.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretDown.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretDown.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretLeft.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretRight.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretRight.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretUp.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretUp.js +5 -0
- package/esm/icons/baseIcons/fas/fasCheckCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCheckCircle.js +5 -0
- package/esm/icons/baseIcons/fas/fasDiamond.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasDiamond.js +5 -0
- package/esm/icons/baseIcons/fas/fasFolder.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasFolder.js +5 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerAlt.js +5 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerExclamation.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerExclamation.js +5 -0
- package/esm/icons/baseIcons/fas/fasQuoteLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasQuoteLeft.js +5 -0
- package/esm/icons/baseIcons/fas/fasQuoteRight.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasQuoteRight.js +5 -0
- package/esm/icons/baseIcons/fas/fasSolarPanel.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasSolarPanel.js +5 -0
- package/esm/icons/baseIcons/fas/fasSort.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasSort.js +5 -0
- package/esm/icons/baseIcons/fas/fasStar.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasStar.js +5 -0
- package/esm/icons/baseIcons/fas/fasWindTurbine.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasWindTurbine.js +5 -0
- package/esm/icons/baseIcons/icons.d.ts +297 -0
- package/esm/icons/baseIcons/icons.js +297 -0
- package/esm/icons/baseIcons/types.d.ts +1 -0
- package/esm/icons/baseIcons/types.js +1 -0
- package/esm/icons/cache.d.ts +15 -0
- package/esm/icons/cache.js +35 -0
- package/esm/icons/consts.d.ts +6 -0
- package/esm/icons/consts.js +40 -0
- package/esm/icons/index.d.ts +3 -0
- package/esm/icons/index.js +3 -0
- package/esm/icons/types.d.ts +28 -0
- package/esm/icons/types.js +1 -0
- package/esm/image/image.d.ts +5 -0
- package/esm/image/image.js +16 -0
- package/esm/image/image.types.d.ts +6 -0
- package/esm/image/image.types.js +1 -0
- package/esm/image/index.d.ts +3 -0
- package/esm/image/index.js +3 -0
- package/esm/image/theme.d.ts +7 -0
- package/esm/image/theme.js +10 -0
- package/esm/index.d.ts +38 -0
- package/esm/index.js +38 -0
- package/esm/input/consts.d.ts +2 -0
- package/esm/input/consts.js +24 -0
- package/esm/input/context.d.ts +4 -0
- package/esm/input/context.js +3 -0
- package/esm/input/helpers.d.ts +3 -0
- package/esm/input/helpers.js +5 -0
- package/esm/input/index.d.ts +5 -0
- package/esm/input/index.js +5 -0
- package/esm/input/input.d.ts +15 -0
- package/esm/input/input.js +88 -0
- package/esm/input/input.types.d.ts +74 -0
- package/esm/input/input.types.js +1 -0
- package/esm/input/inputIcon.d.ts +4 -0
- package/esm/input/inputIcon.js +14 -0
- package/esm/input/inputInput.d.ts +5 -0
- package/esm/input/inputInput.js +37 -0
- package/esm/input/theme.d.ts +65 -0
- package/esm/input/theme.js +74 -0
- package/esm/link/context.d.ts +4 -0
- package/esm/link/context.js +3 -0
- package/esm/link/index.d.ts +5 -0
- package/esm/link/index.js +5 -0
- package/esm/link/link.d.ts +14 -0
- package/esm/link/link.js +41 -0
- package/esm/link/link.types.d.ts +24 -0
- package/esm/link/link.types.js +1 -0
- package/esm/link/linkIcon.d.ts +4 -0
- package/esm/link/linkIcon.js +11 -0
- package/esm/link/linkText.d.ts +4 -0
- package/esm/link/linkText.js +11 -0
- package/esm/link/theme.d.ts +58 -0
- package/esm/link/theme.js +70 -0
- package/esm/list/context.d.ts +4 -0
- package/esm/list/context.js +3 -0
- package/esm/list/index.d.ts +9 -0
- package/esm/list/index.js +9 -0
- package/esm/list/list.d.ts +17 -0
- package/esm/list/list.js +30 -0
- package/esm/list/list.types.d.ts +47 -0
- package/esm/list/list.types.js +1 -0
- package/esm/list/listDivider.d.ts +4 -0
- package/esm/list/listDivider.js +11 -0
- package/esm/list/listHeading.d.ts +4 -0
- package/esm/list/listHeading.js +11 -0
- package/esm/list/listIcon.d.ts +4 -0
- package/esm/list/listIcon.js +11 -0
- package/esm/list/listItem.d.ts +8 -0
- package/esm/list/listItem.js +65 -0
- package/esm/list/listText.d.ts +4 -0
- package/esm/list/listText.js +11 -0
- package/esm/list/theme.d.ts +77 -0
- package/esm/list/theme.js +87 -0
- package/esm/menu/context.d.ts +4 -0
- package/esm/menu/context.js +3 -0
- package/esm/menu/index.d.ts +6 -0
- package/esm/menu/index.js +6 -0
- package/esm/menu/menu.d.ts +16 -0
- package/esm/menu/menu.js +17 -0
- package/esm/menu/menu.types.d.ts +14 -0
- package/esm/menu/menu.types.js +1 -0
- package/esm/menu/menuButton.d.ts +4 -0
- package/esm/menu/menuButton.js +12 -0
- package/esm/menu/menuItem.d.ts +4 -0
- package/esm/menu/menuItem.js +20 -0
- package/esm/menu/menuList.d.ts +12 -0
- package/esm/menu/menuList.js +19 -0
- package/esm/menu/theme.d.ts +21 -0
- package/esm/menu/theme.js +25 -0
- package/esm/modal/context.d.ts +4 -0
- package/esm/modal/context.js +3 -0
- package/esm/modal/focusLock.d.ts +9 -0
- package/esm/modal/focusLock.js +19 -0
- package/esm/modal/focusLock.types.d.ts +28 -0
- package/esm/modal/focusLock.types.js +1 -0
- package/esm/modal/index.d.ts +9 -0
- package/esm/modal/index.js +9 -0
- package/esm/modal/modal.d.ts +15 -0
- package/esm/modal/modal.js +64 -0
- package/esm/modal/modal.types.d.ts +46 -0
- package/esm/modal/modal.types.js +1 -0
- package/esm/modal/modalBackdrop.d.ts +4 -0
- package/esm/modal/modalBackdrop.js +19 -0
- package/esm/modal/modalContent.d.ts +4 -0
- package/esm/modal/modalContent.js +18 -0
- package/esm/modal/modalManager.d.ts +12 -0
- package/esm/modal/modalManager.js +27 -0
- package/esm/modal/theme.d.ts +8 -0
- package/esm/modal/theme.js +12 -0
- package/esm/notification/consts.d.ts +2 -0
- package/esm/notification/consts.js +34 -0
- package/esm/notification/context.d.ts +4 -0
- package/esm/notification/context.js +3 -0
- package/esm/notification/index.d.ts +8 -0
- package/esm/notification/index.js +8 -0
- package/esm/notification/notification.d.ts +17 -0
- package/esm/notification/notification.js +37 -0
- package/esm/notification/notification.types.d.ts +27 -0
- package/esm/notification/notification.types.js +1 -0
- package/esm/notification/notificationButton.d.ts +4 -0
- package/esm/notification/notificationButton.js +12 -0
- package/esm/notification/notificationIcon.d.ts +4 -0
- package/esm/notification/notificationIcon.js +15 -0
- package/esm/notification/notificationText.d.ts +4 -0
- package/esm/notification/notificationText.js +11 -0
- package/esm/notification/notificationTitle.d.ts +4 -0
- package/esm/notification/notificationTitle.js +11 -0
- package/esm/notification/theme.d.ts +27 -0
- package/esm/notification/theme.js +40 -0
- package/esm/p/index.d.ts +3 -0
- package/esm/p/index.js +3 -0
- package/esm/p/p.d.ts +5 -0
- package/esm/p/p.js +20 -0
- package/esm/p/p.types.d.ts +14 -0
- package/esm/p/p.types.js +1 -0
- package/esm/p/theme.d.ts +30 -0
- package/esm/p/theme.js +33 -0
- package/esm/pagination/context.d.ts +4 -0
- package/esm/pagination/context.js +3 -0
- package/esm/pagination/helpers.d.ts +3 -0
- package/esm/pagination/helpers.js +16 -0
- package/esm/pagination/index.d.ts +13 -0
- package/esm/pagination/index.js +13 -0
- package/esm/pagination/pagination.d.ts +21 -0
- package/esm/pagination/pagination.js +41 -0
- package/esm/pagination/pagination.types.d.ts +31 -0
- package/esm/pagination/pagination.types.js +1 -0
- package/esm/pagination/paginationButton.d.ts +4 -0
- package/esm/pagination/paginationButton.js +22 -0
- package/esm/pagination/paginationEllipsis.d.ts +4 -0
- package/esm/pagination/paginationEllipsis.js +12 -0
- package/esm/pagination/paginationGoToPage.d.ts +4 -0
- package/esm/pagination/paginationGoToPage.js +23 -0
- package/esm/pagination/paginationNavigation.d.ts +4 -0
- package/esm/pagination/paginationNavigation.js +22 -0
- package/esm/pagination/paginationPrevNext.d.ts +4 -0
- package/esm/pagination/paginationPrevNext.js +20 -0
- package/esm/pagination/paginationResults.d.ts +4 -0
- package/esm/pagination/paginationResults.js +13 -0
- package/esm/pagination/theme.d.ts +8 -0
- package/esm/pagination/theme.js +12 -0
- package/esm/pagination/usePagination.d.ts +14 -0
- package/esm/pagination/usePagination.js +39 -0
- package/esm/pagination/usePagination.types.d.ts +12 -0
- package/esm/pagination/usePagination.types.js +1 -0
- package/esm/panel/index.d.ts +3 -0
- package/esm/panel/index.js +3 -0
- package/esm/panel/panel.d.ts +7 -0
- package/esm/panel/panel.js +15 -0
- package/esm/panel/panel.types.d.ts +3 -0
- package/esm/panel/panel.types.js +1 -0
- package/esm/panel/theme.d.ts +17 -0
- package/esm/panel/theme.js +20 -0
- package/esm/popover/consts.d.ts +6 -0
- package/esm/popover/consts.js +34 -0
- package/esm/popover/context.d.ts +4 -0
- package/esm/popover/context.js +3 -0
- package/esm/popover/index.d.ts +9 -0
- package/esm/popover/index.js +9 -0
- package/esm/popover/popover.d.ts +12 -0
- package/esm/popover/popover.js +19 -0
- package/esm/popover/popover.types.d.ts +18 -0
- package/esm/popover/popover.types.js +1 -0
- package/esm/popover/popoverContent.d.ts +3 -0
- package/esm/popover/popoverContent.js +19 -0
- package/esm/popover/popoverStyle.d.ts +2 -0
- package/esm/popover/popoverStyle.js +20 -0
- package/esm/popover/popoverTrigger.d.ts +6 -0
- package/esm/popover/popoverTrigger.js +24 -0
- package/esm/popover/theme.d.ts +8 -0
- package/esm/popover/theme.js +12 -0
- package/esm/popover/usePopover.d.ts +19 -0
- package/esm/popover/usePopover.js +89 -0
- package/esm/popover/usePopover.types.d.ts +27 -0
- package/esm/popover/usePopover.types.js +1 -0
- package/esm/portal/index.d.ts +3 -0
- package/esm/portal/index.js +3 -0
- package/esm/portal/portal.d.ts +5 -0
- package/esm/portal/portal.js +16 -0
- package/esm/portal/portal.types.d.ts +7 -0
- package/esm/portal/portal.types.js +1 -0
- package/esm/radio/context.d.ts +4 -0
- package/esm/radio/context.js +3 -0
- package/esm/radio/index.d.ts +6 -0
- package/esm/radio/index.js +6 -0
- package/esm/radio/radio.d.ts +8 -0
- package/esm/radio/radio.js +84 -0
- package/esm/radio/radio.types.d.ts +39 -0
- package/esm/radio/radio.types.js +1 -0
- package/esm/radio/radioGroup.d.ts +8 -0
- package/esm/radio/radioGroup.js +41 -0
- package/esm/radio/radioGroup.types.d.ts +21 -0
- package/esm/radio/radioGroup.types.js +1 -0
- package/esm/radio/theme.d.ts +49 -0
- package/esm/radio/theme.js +59 -0
- package/esm/skeleton/index.d.ts +3 -0
- package/esm/skeleton/index.js +3 -0
- package/esm/skeleton/skeleton.d.ts +5 -0
- package/esm/skeleton/skeleton.js +18 -0
- package/esm/skeleton/skeleton.types.d.ts +10 -0
- package/esm/skeleton/skeleton.types.js +1 -0
- package/esm/skeleton/theme.d.ts +37 -0
- package/esm/skeleton/theme.js +47 -0
- package/esm/spinner/consts.d.ts +36 -0
- package/esm/spinner/consts.js +23 -0
- package/esm/spinner/index.d.ts +3 -0
- package/esm/spinner/index.js +3 -0
- package/esm/spinner/spinner.d.ts +8 -0
- package/esm/spinner/spinner.js +33 -0
- package/esm/spinner/spinner.types.d.ts +20 -0
- package/esm/spinner/spinner.types.js +1 -0
- package/esm/spinner/theme.d.ts +68 -0
- package/esm/spinner/theme.js +73 -0
- package/esm/svg/cache.d.ts +15 -0
- package/esm/svg/cache.js +28 -0
- package/esm/svg/helpers.d.ts +10 -0
- package/esm/svg/helpers.js +25 -0
- package/esm/svg/index.d.ts +3 -0
- package/esm/svg/index.js +3 -0
- package/esm/svg/svg.d.ts +10 -0
- package/esm/svg/svg.js +68 -0
- package/esm/svg/svg.types.d.ts +12 -0
- package/esm/svg/svg.types.js +1 -0
- package/esm/switch/context.d.ts +4 -0
- package/esm/switch/context.js +3 -0
- package/esm/switch/index.d.ts +6 -0
- package/esm/switch/index.js +6 -0
- package/esm/switch/switch.d.ts +14 -0
- package/esm/switch/switch.js +55 -0
- package/esm/switch/switch.types.d.ts +69 -0
- package/esm/switch/switch.types.js +1 -0
- package/esm/switch/switchButton.d.ts +8 -0
- package/esm/switch/switchButton.js +108 -0
- package/esm/switch/switchLabel.d.ts +4 -0
- package/esm/switch/switchLabel.js +11 -0
- package/esm/switch/theme.d.ts +78 -0
- package/esm/switch/theme.js +86 -0
- package/esm/system/animations.d.ts +10 -0
- package/esm/system/animations.js +1 -0
- package/esm/system/backgrounds.d.ts +12 -0
- package/esm/system/backgrounds.js +1 -0
- package/esm/system/borders.d.ts +143 -0
- package/esm/system/borders.js +1 -0
- package/esm/system/colors.d.ts +3 -0
- package/esm/system/colors.js +1 -0
- package/esm/system/custom.d.ts +14 -0
- package/esm/system/custom.js +29 -0
- package/esm/system/effects.d.ts +21 -0
- package/esm/system/effects.js +1 -0
- package/esm/system/flexboxGrids.d.ts +12 -0
- package/esm/system/flexboxGrids.js +1 -0
- package/esm/system/flexboxes.d.ts +60 -0
- package/esm/system/flexboxes.js +1 -0
- package/esm/system/grids.d.ts +56 -0
- package/esm/system/grids.js +1 -0
- package/esm/system/index.d.ts +15 -0
- package/esm/system/index.js +15 -0
- package/esm/system/interactivity.d.ts +25 -0
- package/esm/system/interactivity.js +1 -0
- package/esm/system/layout.d.ts +72 -0
- package/esm/system/layout.js +1 -0
- package/esm/system/sizing.d.ts +35 -0
- package/esm/system/sizing.js +1 -0
- package/esm/system/space.d.ts +91 -0
- package/esm/system/space.js +1 -0
- package/esm/system/system.d.ts +19 -0
- package/esm/system/system.js +4 -0
- package/esm/system/tables.d.ts +13 -0
- package/esm/system/tables.js +1 -0
- package/esm/system/transforms.d.ts +56 -0
- package/esm/system/transforms.js +1 -0
- package/esm/system/transitions.d.ts +28 -0
- package/esm/system/transitions.js +1 -0
- package/esm/system/typography.d.ts +75 -0
- package/esm/system/typography.js +1 -0
- package/esm/t/index.d.ts +3 -0
- package/esm/t/index.js +3 -0
- package/esm/t/t.d.ts +5 -0
- package/esm/t/t.js +22 -0
- package/esm/t/t.types.d.ts +17 -0
- package/esm/t/t.types.js +1 -0
- package/esm/t/theme.d.ts +22 -0
- package/esm/t/theme.js +25 -0
- package/esm/tag/context.d.ts +4 -0
- package/esm/tag/context.js +3 -0
- package/esm/tag/index.d.ts +7 -0
- package/esm/tag/index.js +7 -0
- package/esm/tag/tag.d.ts +16 -0
- package/esm/tag/tag.js +74 -0
- package/esm/tag/tag.types.d.ts +34 -0
- package/esm/tag/tag.types.js +1 -0
- package/esm/tag/tagButton.d.ts +4 -0
- package/esm/tag/tagButton.js +12 -0
- package/esm/tag/tagIcon.d.ts +4 -0
- package/esm/tag/tagIcon.js +11 -0
- package/esm/tag/tagText.d.ts +4 -0
- package/esm/tag/tagText.js +11 -0
- package/esm/tag/theme.d.ts +84 -0
- package/esm/tag/theme.js +117 -0
- package/esm/textarea/helpers.d.ts +3 -0
- package/esm/textarea/helpers.js +5 -0
- package/esm/textarea/index.d.ts +3 -0
- package/esm/textarea/index.js +3 -0
- package/esm/textarea/textarea.d.ts +8 -0
- package/esm/textarea/textarea.js +82 -0
- package/esm/textarea/textarea.types.d.ts +46 -0
- package/esm/textarea/textarea.types.js +1 -0
- package/esm/textarea/theme.d.ts +22 -0
- package/esm/textarea/theme.js +31 -0
- package/esm/theme/components.d.ts +1049 -0
- package/esm/theme/components.js +62 -0
- package/esm/theme/defaultTheme.d.ts +1246 -0
- package/esm/theme/defaultTheme.js +7 -0
- package/esm/theme/foundations/animations.d.ts +12 -0
- package/esm/theme/foundations/animations.js +11 -0
- package/esm/theme/foundations/borders.d.ts +2 -0
- package/esm/theme/foundations/borders.js +1 -0
- package/esm/theme/foundations/colors.d.ts +181 -0
- package/esm/theme/foundations/colors.js +99 -0
- package/esm/theme/foundations/durations.d.ts +7 -0
- package/esm/theme/foundations/durations.js +6 -0
- package/esm/theme/foundations/fontSizes.d.ts +7 -0
- package/esm/theme/foundations/fontSizes.js +6 -0
- package/esm/theme/foundations/fontWeights.d.ts +7 -0
- package/esm/theme/foundations/fontWeights.js +6 -0
- package/esm/theme/foundations/fonts.d.ts +4 -0
- package/esm/theme/foundations/fonts.js +3 -0
- package/esm/theme/foundations/gridTemplateColumns.d.ts +15 -0
- package/esm/theme/foundations/gridTemplateColumns.js +14 -0
- package/esm/theme/foundations/gridTemplateRows.d.ts +9 -0
- package/esm/theme/foundations/gridTemplateRows.js +8 -0
- package/esm/theme/foundations/index.d.ts +198 -0
- package/esm/theme/foundations/index.js +42 -0
- package/esm/theme/foundations/radii.d.ts +8 -0
- package/esm/theme/foundations/radii.js +7 -0
- package/esm/theme/foundations/ringWidths.d.ts +2 -0
- package/esm/theme/foundations/ringWidths.js +1 -0
- package/esm/theme/foundations/screens.d.ts +8 -0
- package/esm/theme/foundations/screens.js +7 -0
- package/esm/theme/foundations/shadows.d.ts +20 -0
- package/esm/theme/foundations/shadows.js +23 -0
- package/esm/theme/foundations/sizes.d.ts +2 -0
- package/esm/theme/foundations/sizes.js +1 -0
- package/esm/theme/foundations/spaces.d.ts +2 -0
- package/esm/theme/foundations/spaces.js +1 -0
- package/esm/theme/foundations/timingFunctions.d.ts +2 -0
- package/esm/theme/foundations/timingFunctions.js +1 -0
- package/esm/theme/foundations/transformers.d.ts +5 -0
- package/esm/theme/foundations/transformers.js +14 -0
- package/esm/theme/foundations/transforms.d.ts +2 -0
- package/esm/theme/foundations/transforms.js +1 -0
- package/esm/theme/foundations/transitions.d.ts +2 -0
- package/esm/theme/foundations/transitions.js +1 -0
- package/esm/theme/foundations/zIndices.d.ts +7 -0
- package/esm/theme/foundations/zIndices.js +6 -0
- package/esm/theme/index.d.ts +20 -0
- package/esm/theme/index.js +20 -0
- package/esm/theme/types.d.ts +30 -0
- package/esm/theme/types.js +1 -0
- package/esm/utils/assertion.d.ts +16 -0
- package/esm/utils/assertion.js +29 -0
- package/esm/utils/function.d.ts +9 -0
- package/esm/utils/function.js +14 -0
- package/esm/utils/index.d.ts +7 -0
- package/esm/utils/index.js +7 -0
- package/esm/utils/number.d.ts +2 -0
- package/esm/utils/number.js +4 -0
- package/esm/utils/object.d.ts +17 -0
- package/esm/utils/object.js +43 -0
- package/esm/utils/react.d.ts +39 -0
- package/esm/utils/react.js +112 -0
- package/esm/utils/styles.d.ts +4 -0
- package/esm/utils/styles.js +26 -0
- package/esm/utils/types.d.ts +45 -0
- package/esm/utils/types.js +1 -0
- package/package.json +7 -4
- package/avatar/avatar.js +0 -62
- package/avatar/helpers.js +0 -26
- package/avatar/index.js +0 -20
- package/avatar/theme.js +0 -88
- package/box/box.js +0 -59
- package/box/index.js +0 -20
- package/box/theme.js +0 -12
- package/button/button.js +0 -120
- package/button/buttonIcon.js +0 -41
- package/button/buttonText.js +0 -41
- package/button/buttons.js +0 -28
- package/button/context.d.ts +0 -4
- package/button/context.js +0 -23
- package/button/index.js +0 -24
- package/button/theme.js +0 -149
- package/buttonGroup/buttonGroup.js +0 -73
- package/buttonGroup/context.d.ts +0 -4
- package/buttonGroup/context.js +0 -23
- package/buttonGroup/helpers.js +0 -12
- package/buttonGroup/index.js +0 -21
- package/card/card.js +0 -55
- package/card/index.js +0 -20
- package/card/theme.js +0 -12
- package/checkbox/checkbox.js +0 -116
- package/checkbox/checkboxGroup.js +0 -74
- package/checkbox/context.d.ts +0 -4
- package/checkbox/context.js +0 -23
- package/checkbox/index.js +0 -23
- package/checkbox/theme.js +0 -61
- package/core/index.js +0 -19
- package/core/links.js +0 -179
- package/core/media.js +0 -79
- package/core/styled.js +0 -140
- package/core/theme.js +0 -94
- package/core/vui.js +0 -20
- package/core/vuiProvider/animations.js +0 -12
- package/core/vuiProvider/fontFaces.js +0 -4
- package/core/vuiProvider/globalStyle.js +0 -67
- package/core/vuiProvider/index.js +0 -26
- package/core/vuiProvider/resetCSS.js +0 -10
- package/core/vuiProvider/vuiProvider.js +0 -21
- package/dialog/context.js +0 -23
- package/dialog/dialog.js +0 -122
- package/dialog/dialogBody.js +0 -97
- package/dialog/dialogCancelButton.js +0 -43
- package/dialog/dialogCloseButton.js +0 -43
- package/dialog/dialogFooter.js +0 -45
- package/dialog/dialogHeader.js +0 -53
- package/dialog/dialogIcon.js +0 -45
- package/dialog/dialogSubmitButton.js +0 -41
- package/dialog/dialogTitle.js +0 -43
- package/dialog/index.js +0 -30
- package/dialog/theme.js +0 -28
- package/divider/divider.js +0 -54
- package/divider/index.js +0 -20
- package/divider/theme.js +0 -12
- package/footer/context.js +0 -23
- package/footer/footer.js +0 -67
- package/footer/footerColumn.js +0 -40
- package/footer/footerContent.js +0 -41
- package/footer/footerHeading.js +0 -41
- package/footer/footerLink.js +0 -41
- package/footer/footerRow.js +0 -39
- package/footer/footerSection.js +0 -48
- package/footer/footerTrademark.js +0 -50
- package/footer/helpers.js +0 -113
- package/footer/index.js +0 -27
- package/footer/theme.js +0 -14
- package/grid/grid.js +0 -47
- package/grid/index.js +0 -20
- package/grid/theme.js +0 -12
- package/header/context.js +0 -23
- package/header/header.js +0 -133
- package/header/headerAccount.js +0 -88
- package/header/headerAccount.types.d.ts +0 -35
- package/header/headerAccountUserInfo.js +0 -47
- package/header/headerContent.js +0 -41
- package/header/headerCreateAccount.js +0 -48
- package/header/headerDivider.js +0 -41
- package/header/headerLinkItem.js +0 -53
- package/header/headerLogo.js +0 -47
- package/header/headerMainLinks.js +0 -45
- package/header/headerMobileContent.js +0 -43
- package/header/headerMobileToggle.js +0 -45
- package/header/headerNotifications.js +0 -53
- package/header/headerServices.js +0 -60
- package/header/headerServicesMessage.js +0 -50
- package/header/headerSignIn.js +0 -43
- package/header/helpers.js +0 -115
- package/header/index.js +0 -39
- package/header/loggedInHeader.js +0 -57
- package/header/loggedOutHeader.js +0 -57
- package/header/theme.js +0 -93
- package/heading/heading.js +0 -54
- package/heading/headings.js +0 -26
- package/heading/index.js +0 -21
- package/heading/theme.js +0 -45
- package/icon/helpers.js +0 -61
- package/icon/icon.js +0 -48
- package/icon/index.js +0 -20
- package/icon/theme.js +0 -31
- package/icons/cache.js +0 -68
- package/icons/consts.js +0 -46
- package/icons/index.js +0 -20
- package/image/image.js +0 -47
- package/image/index.js +0 -20
- package/image/theme.js +0 -12
- package/index.js +0 -50
- package/input/context.d.ts +0 -4
- package/input/context.js +0 -23
- package/input/helpers.js +0 -10
- package/input/index.js +0 -22
- package/input/input.js +0 -145
- package/input/inputIcon.js +0 -44
- package/input/inputInput.js +0 -53
- package/input/theme.js +0 -76
- package/link/context.d.ts +0 -4
- package/link/context.js +0 -23
- package/link/index.js +0 -22
- package/link/link.js +0 -87
- package/link/linkIcon.js +0 -41
- package/link/linkText.js +0 -41
- package/link/theme.js +0 -72
- package/list/context.d.ts +0 -4
- package/list/context.js +0 -23
- package/list/index.js +0 -26
- package/list/list.js +0 -85
- package/list/listDivider.js +0 -41
- package/list/listHeading.js +0 -41
- package/list/listIcon.js +0 -41
- package/list/listItem.js +0 -109
- package/list/listText.js +0 -41
- package/list/theme.js +0 -89
- package/menu/context.js +0 -23
- package/menu/index.js +0 -27
- package/menu/menu.js +0 -64
- package/menu/menuButton.js +0 -42
- package/menu/menuItem.js +0 -49
- package/menu/menuList.js +0 -48
- package/menu/theme.js +0 -27
- package/modal/context.js +0 -23
- package/modal/focusLock.js +0 -47
- package/modal/index.js +0 -26
- package/modal/modal.js +0 -113
- package/modal/modalBackdrop.js +0 -49
- package/modal/modalContent.js +0 -50
- package/modal/modalManager.js +0 -33
- package/modal/theme.js +0 -14
- package/notification/context.d.ts +0 -4
- package/notification/context.js +0 -23
- package/notification/index.js +0 -25
- package/notification/notification.js +0 -65
- package/notification/notificationButton.js +0 -42
- package/notification/notificationIcon.js +0 -46
- package/notification/notificationText.js +0 -41
- package/notification/notificationTitle.js +0 -41
- package/notification/theme.js +0 -42
- package/p/index.js +0 -20
- package/p/p.js +0 -53
- package/p/theme.js +0 -35
- package/pagination/context.js +0 -23
- package/pagination/helpers.js +0 -56
- package/pagination/index.js +0 -31
- package/pagination/pagination.js +0 -70
- package/pagination/paginationButton.js +0 -51
- package/pagination/paginationEllipsis.js +0 -41
- package/pagination/paginationGoToPage.js +0 -53
- package/pagination/paginationNavigation.js +0 -68
- package/pagination/paginationPrevNext.js +0 -49
- package/pagination/paginationResults.js +0 -42
- package/pagination/theme.js +0 -14
- package/pagination/usePagination.js +0 -58
- package/panel/index.js +0 -20
- package/panel/panel.js +0 -43
- package/panel/theme.js +0 -22
- package/popover/consts.js +0 -42
- package/popover/context.js +0 -23
- package/popover/index.js +0 -31
- package/popover/popover.js +0 -47
- package/popover/popoverContent.js +0 -48
- package/popover/popoverStyle.js +0 -9
- package/popover/popoverTrigger.js +0 -53
- package/popover/theme.js +0 -14
- package/popover/usePopover.js +0 -122
- package/portal/index.js +0 -20
- package/portal/portal.js +0 -56
- package/radio/context.d.ts +0 -4
- package/radio/context.js +0 -23
- package/radio/index.js +0 -23
- package/radio/radio.js +0 -121
- package/radio/radioGroup.js +0 -109
- package/radio/theme.js +0 -61
- package/skeleton/index.js +0 -20
- package/skeleton/skeleton.js +0 -51
- package/skeleton/theme.js +0 -49
- package/spinner/consts.d.ts +0 -24
- package/spinner/consts.js +0 -22
- package/spinner/index.js +0 -20
- package/spinner/spinner.js +0 -68
- package/spinner/theme.js +0 -75
- package/svg/cache.js +0 -32
- package/svg/helpers.js +0 -33
- package/svg/index.js +0 -20
- package/svg/svg.js +0 -175
- package/switch/context.d.ts +0 -4
- package/switch/context.js +0 -23
- package/switch/index.js +0 -23
- package/switch/switch.js +0 -97
- package/switch/switchButton.js +0 -138
- package/switch/switchLabel.js +0 -41
- package/switch/theme.js +0 -88
- package/system/custom.js +0 -32
- package/system/index.js +0 -27
- package/system/system.js +0 -7
- package/t/index.js +0 -20
- package/t/t.js +0 -55
- package/t/theme.js +0 -27
- package/tag/context.d.ts +0 -4
- package/tag/context.js +0 -23
- package/tag/index.js +0 -24
- package/tag/tag.js +0 -108
- package/tag/tagButton.js +0 -42
- package/tag/tagIcon.js +0 -41
- package/tag/tagText.js +0 -41
- package/tag/theme.js +0 -119
- package/textarea/helpers.js +0 -10
- package/textarea/index.js +0 -20
- package/textarea/textarea.js +0 -130
- package/textarea/theme.js +0 -33
- package/theme/components.js +0 -67
- package/theme/defaultTheme.js +0 -20
- package/theme/foundations/fonts.js +0 -5
- package/theme/foundations/index.js +0 -47
- package/theme/foundations/shadows.js +0 -25
- package/theme/foundations/transformers.js +0 -34
- package/theme/index.js +0 -56
- package/utils/assertion.js +0 -42
- package/utils/function.js +0 -59
- package/utils/index.js +0 -19
- package/utils/number.js +0 -10
- package/utils/object.js +0 -53
- package/utils/react.d.ts +0 -39
- package/utils/react.js +0 -181
- package/utils/styles.js +0 -35
- /package/{avatar → cjs/avatar}/avatar.d.ts +0 -0
- /package/{avatar → cjs/avatar}/avatar.types.d.ts +0 -0
- /package/{avatar → cjs/avatar}/avatar.types.js +0 -0
- /package/{avatar → cjs/avatar}/helpers.d.ts +0 -0
- /package/{avatar → cjs/avatar}/index.d.ts +0 -0
- /package/{avatar → cjs/avatar}/theme.d.ts +0 -0
- /package/{box → cjs/box}/box.d.ts +0 -0
- /package/{box → cjs/box}/box.types.d.ts +0 -0
- /package/{box → cjs/box}/box.types.js +0 -0
- /package/{box → cjs/box}/index.d.ts +0 -0
- /package/{box → cjs/box}/theme.d.ts +0 -0
- /package/{button → cjs/button}/button.d.ts +0 -0
- /package/{button → cjs/button}/button.types.d.ts +0 -0
- /package/{button → cjs/button}/button.types.js +0 -0
- /package/{button → cjs/button}/buttonIcon.d.ts +0 -0
- /package/{button → cjs/button}/buttonText.d.ts +0 -0
- /package/{button → cjs/button}/buttons.d.ts +0 -0
- /package/{button → cjs/button}/consts.d.ts +0 -0
- /package/{button → cjs/button}/consts.js +0 -0
- /package/{button → cjs/button}/index.d.ts +0 -0
- /package/{button → cjs/button}/theme.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/buttonGroup.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/buttonGroup.types.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/buttonGroup.types.js +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/helpers.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/index.d.ts +0 -0
- /package/{card → cjs/card}/card.d.ts +0 -0
- /package/{card → cjs/card}/card.types.d.ts +0 -0
- /package/{card → cjs/card}/card.types.js +0 -0
- /package/{card → cjs/card}/index.d.ts +0 -0
- /package/{card → cjs/card}/theme.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkbox.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkbox.types.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkbox.types.js +0 -0
- /package/{checkbox → cjs/checkbox}/checkboxGroup.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkboxGroup.types.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkboxGroup.types.js +0 -0
- /package/{checkbox → cjs/checkbox}/index.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/theme.d.ts +0 -0
- /package/{core → cjs/core}/consts.d.ts +0 -0
- /package/{core → cjs/core}/consts.js +0 -0
- /package/{core → cjs/core}/index.d.ts +0 -0
- /package/{core → cjs/core}/links.d.ts +0 -0
- /package/{core → cjs/core}/media.d.ts +0 -0
- /package/{core → cjs/core}/styled.d.ts +0 -0
- /package/{core → cjs/core}/theme.d.ts +0 -0
- /package/{core → cjs/core}/vui.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/animations.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/fontFaces.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/globalStyle.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/index.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/resetCSS.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/vuiProvider.d.ts +0 -0
- /package/{dialog → cjs/dialog}/consts.d.ts +0 -0
- /package/{dialog → cjs/dialog}/consts.js +0 -0
- /package/{dialog → cjs/dialog}/context.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialog.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialog.types.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialog.types.js +0 -0
- /package/{dialog → cjs/dialog}/dialogBody.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogCancelButton.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogCloseButton.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogFooter.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogHeader.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogIcon.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogSubmitButton.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogTitle.d.ts +0 -0
- /package/{dialog → cjs/dialog}/index.d.ts +0 -0
- /package/{dialog → cjs/dialog}/theme.d.ts +0 -0
- /package/{divider → cjs/divider}/divider.d.ts +0 -0
- /package/{divider → cjs/divider}/divider.types.d.ts +0 -0
- /package/{divider → cjs/divider}/divider.types.js +0 -0
- /package/{divider → cjs/divider}/index.d.ts +0 -0
- /package/{divider → cjs/divider}/theme.d.ts +0 -0
- /package/{footer → cjs/footer}/context.d.ts +0 -0
- /package/{footer → cjs/footer}/footer.d.ts +0 -0
- /package/{footer → cjs/footer}/footer.types.d.ts +0 -0
- /package/{footer → cjs/footer}/footer.types.js +0 -0
- /package/{footer → cjs/footer}/footerColumn.d.ts +0 -0
- /package/{footer → cjs/footer}/footerContent.d.ts +0 -0
- /package/{footer → cjs/footer}/footerHeading.d.ts +0 -0
- /package/{footer → cjs/footer}/footerLink.d.ts +0 -0
- /package/{footer → cjs/footer}/footerRow.d.ts +0 -0
- /package/{footer → cjs/footer}/footerSection.d.ts +0 -0
- /package/{footer → cjs/footer}/footerTrademark.d.ts +0 -0
- /package/{footer → cjs/footer}/helpers.d.ts +0 -0
- /package/{footer → cjs/footer}/index.d.ts +0 -0
- /package/{footer → cjs/footer}/theme.d.ts +0 -0
- /package/{grid → cjs/grid}/grid.d.ts +0 -0
- /package/{grid → cjs/grid}/grid.types.d.ts +0 -0
- /package/{grid → cjs/grid}/grid.types.js +0 -0
- /package/{grid → cjs/grid}/index.d.ts +0 -0
- /package/{grid → cjs/grid}/theme.d.ts +0 -0
- /package/{header → cjs/header}/context.d.ts +0 -0
- /package/{header → cjs/header}/header.d.ts +0 -0
- /package/{header → cjs/header}/header.types.d.ts +0 -0
- /package/{header → cjs/header}/header.types.js +0 -0
- /package/{header → cjs/header}/headerAccount.d.ts +0 -0
- /package/{header → cjs/header}/headerAccount.types.js +0 -0
- /package/{header → cjs/header}/headerAccountUserInfo.d.ts +0 -0
- /package/{header → cjs/header}/headerContent.d.ts +0 -0
- /package/{header → cjs/header}/headerCreateAccount.d.ts +0 -0
- /package/{header → cjs/header}/headerDivider.d.ts +0 -0
- /package/{header → cjs/header}/headerLinkItem.d.ts +0 -0
- /package/{header → cjs/header}/headerLogo.d.ts +0 -0
- /package/{header → cjs/header}/headerMainLinks.d.ts +0 -0
- /package/{header → cjs/header}/headerMobileContent.d.ts +0 -0
- /package/{header → cjs/header}/headerMobileToggle.d.ts +0 -0
- /package/{header → cjs/header}/headerNotifications.d.ts +0 -0
- /package/{header → cjs/header}/headerServices.d.ts +0 -0
- /package/{header → cjs/header}/headerServicesMessage.d.ts +0 -0
- /package/{header → cjs/header}/headerSignIn.d.ts +0 -0
- /package/{header → cjs/header}/helpers.d.ts +0 -0
- /package/{header → cjs/header}/index.d.ts +0 -0
- /package/{header → cjs/header}/loggedInHeader.d.ts +0 -0
- /package/{header → cjs/header}/loggedOutHeader.d.ts +0 -0
- /package/{header → cjs/header}/theme.d.ts +0 -0
- /package/{heading → cjs/heading}/heading.d.ts +0 -0
- /package/{heading → cjs/heading}/heading.types.d.ts +0 -0
- /package/{heading → cjs/heading}/heading.types.js +0 -0
- /package/{heading → cjs/heading}/headings.d.ts +0 -0
- /package/{heading → cjs/heading}/index.d.ts +0 -0
- /package/{heading → cjs/heading}/theme.d.ts +0 -0
- /package/{icon → cjs/icon}/helpers.d.ts +0 -0
- /package/{icon → cjs/icon}/icon.d.ts +0 -0
- /package/{icon → cjs/icon}/icon.types.d.ts +0 -0
- /package/{icon → cjs/icon}/icon.types.js +0 -0
- /package/{icon → cjs/icon}/index.d.ts +0 -0
- /package/{icon → cjs/icon}/theme.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubPowerBi.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubPowerBi.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubVeracity.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubVeracity.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxIndeterminate.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxIndeterminate.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxSelected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxSelected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxUnselected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxUnselected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioSelected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioSelected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioUnselected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioUnselected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiProduct.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiProduct.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiService.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiService.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChart.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChart.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChartAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChartAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCovid.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCovid.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDeepSearch.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDeepSearch.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDotsMenu.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDotsMenu.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culGlobePlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culGlobePlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culListDense.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culListDense.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culMapMarkerStar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culMapMarkerStar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culNumber1.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culNumber1.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culPlusThin.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culPlusThin.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshot.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshot.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshotAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshotAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culShortcut.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culShortcut.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTarget.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTarget.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTimesThin.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTimesThin.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTransformer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTransformer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culUserTransfer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culUserTransfer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVeracityService.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVeracityService.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVessel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVessel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVesselGroup.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVesselGroup.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFull.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFull.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFullAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFullAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotsMenu.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotsMenu.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusTransformer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusTransformer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusVessel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusVessel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabApplePay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabApplePay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBluetooth.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBluetooth.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBtc.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBtc.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmazonPay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmazonPay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmex.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmex.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcApplePay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcApplePay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcDinersClub.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcDinersClub.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcMastercard.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcMastercard.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcPaypal.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcPaypal.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcVisa.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcVisa.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabDhl.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabDhl.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabEbay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabEbay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFacebook.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFacebook.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFedex.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFedex.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFirefox.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFirefox.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogleDrive.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogleDrive.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabLinkedinIn.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabLinkedinIn.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabMedium.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabMedium.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabOsi.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabOsi.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabSlack.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabSlack.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabTwitter.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabTwitter.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabUps.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabUps.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabYoutube.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabYoutube.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fad/fadSpinnerThird.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fad/fadSpinnerThird.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressBook.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressBook.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressCard.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressCard.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAnalytics.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAnalytics.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromBottom.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromBottom.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromTop.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromTop.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToBottom.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToBottom.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToTop.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToTop.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrows.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrows.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAward.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAward.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBan.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBan.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBars.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBars.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBell.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBell.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBookOpen.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBookOpen.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroadcastTower.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroadcastTower.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroom.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroom.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBuilding.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBuilding.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBullseye.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBullseye.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendarAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendarAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCamera.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCamera.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCauldron.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCauldron.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartArea.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartArea.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartBar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartBar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLineDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLineDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartNetwork.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartNetwork.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPie.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPie.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPieAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPieAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartScatter.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartScatter.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckSquare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckSquare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloud.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloud.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudShowersHeavy.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudShowersHeavy.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSnow.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSnow.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSun.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSun.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSunRain.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSunRain.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudUpload.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudUpload.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCode.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCode.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCog.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCog.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCogs.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCogs.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falComment.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falComment.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCommentAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCommentAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCompressAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCompressAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCopy.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCopy.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCreditCard.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCreditCard.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDatabase.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDatabase.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDotCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDotCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDownload.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDownload.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEdit.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEdit.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisH.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisH.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisV.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisV.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEnvelope.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEnvelope.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExchange.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExchange.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationTriangle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationTriangle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExpandAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExpandAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExternalLink.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExternalLink.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEye.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEye.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEyeSlash.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEyeSlash.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFile.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFile.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileArchive.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileArchive.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAudio.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAudio.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCertificate.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCertificate.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartLine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartLine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartPie.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartPie.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCode.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCode.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCsv.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCsv.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileEdit.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileEdit.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileExcel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileExcel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileImage.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileImage.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileInvoiceDollar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileInvoiceDollar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePdf.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePdf.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePowerpoint.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePowerpoint.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileSpreadsheet.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileSpreadsheet.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileVideo.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileVideo.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileWord.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileWord.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilter.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilter.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFlag.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFlag.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolder.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolder.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderOpen.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderOpen.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolders.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolders.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlassesAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlassesAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlobe.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlobe.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHome.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHome.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHourglass.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHourglass.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falImage.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falImage.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falInfoCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falInfoCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falKey.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falKey.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerGroup.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerGroup.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLink.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLink.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falList.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falList.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLockAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLockAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMap.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMap.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarked.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarked.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkedAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkedAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarker.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarker.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAltSlash.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAltSlash.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerExclamation.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerExclamation.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMinus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMinus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPause.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPause.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPauseCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPauseCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPen.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPen.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlayCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlayCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlug.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlug.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusSquare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusSquare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPrint.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPrint.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPuzzlePiece.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPuzzlePiece.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falQuestionCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falQuestionCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falReceipt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falReceipt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falRedo.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falRedo.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSave.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSave.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearch.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearch.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchMinus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchMinus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falServer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falServer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAll.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAll.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShip.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShip.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShoppingBasket.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShoppingBasket.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignIn.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignIn.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignInAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignInAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOut.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOut.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOutAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOutAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSlidersV.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSlidersV.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowBlowing.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowBlowing.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowflake.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowflake.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSolarPanel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSolarPanel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSort.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSort.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSpinner.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSpinner.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSquare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSquare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStepForward.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStepForward.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStop.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStop.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopwatch.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopwatch.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSuitcase.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSuitcase.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSun.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSun.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSync.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSync.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTachometer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTachometer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTemperatureHigh.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTemperatureHigh.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTh.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTh.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThLarge.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThLarge.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThList.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThList.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimes.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimes.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimesCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimesCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOff.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOff.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOn.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOn.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTrashAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTrashAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUnlockAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUnlockAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUser.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUser.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserChart.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserChart.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCog.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCog.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserEdit.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserEdit.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserFriends.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserFriends.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserShield.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserShield.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserTimes.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserTimes.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsers.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsers.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsersClass.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsersClass.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWater.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWater.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWind.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWind.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWindTurbine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWindTurbine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWrench.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWrench.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCalendarAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCalendarAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCheckCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCheckCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasDiamond.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasDiamond.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasFolder.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasFolder.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerExclamation.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerExclamation.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSolarPanel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSolarPanel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSort.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSort.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasStar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasStar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasWindTurbine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasWindTurbine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/icons.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/icons.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/types.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/types.js +0 -0
- /package/{icons → cjs/icons}/cache.d.ts +0 -0
- /package/{icons → cjs/icons}/consts.d.ts +0 -0
- /package/{icons → cjs/icons}/index.d.ts +0 -0
- /package/{icons → cjs/icons}/types.d.ts +0 -0
- /package/{icons → cjs/icons}/types.js +0 -0
- /package/{image → cjs/image}/image.d.ts +0 -0
- /package/{image → cjs/image}/image.types.d.ts +0 -0
- /package/{image → cjs/image}/image.types.js +0 -0
- /package/{image → cjs/image}/index.d.ts +0 -0
- /package/{image → cjs/image}/theme.d.ts +0 -0
- /package/{index.d.ts → cjs/index.d.ts} +0 -0
- /package/{input → cjs/input}/consts.d.ts +0 -0
- /package/{input → cjs/input}/consts.js +0 -0
- /package/{input → cjs/input}/helpers.d.ts +0 -0
- /package/{input → cjs/input}/index.d.ts +0 -0
- /package/{input → cjs/input}/input.d.ts +0 -0
- /package/{input → cjs/input}/input.types.d.ts +0 -0
- /package/{input → cjs/input}/input.types.js +0 -0
- /package/{input → cjs/input}/inputIcon.d.ts +0 -0
- /package/{input → cjs/input}/inputInput.d.ts +0 -0
- /package/{input → cjs/input}/theme.d.ts +0 -0
- /package/{link → cjs/link}/index.d.ts +0 -0
- /package/{link → cjs/link}/link.d.ts +0 -0
- /package/{link → cjs/link}/link.types.d.ts +0 -0
- /package/{link → cjs/link}/link.types.js +0 -0
- /package/{link → cjs/link}/linkIcon.d.ts +0 -0
- /package/{link → cjs/link}/linkText.d.ts +0 -0
- /package/{link → cjs/link}/theme.d.ts +0 -0
- /package/{list → cjs/list}/index.d.ts +0 -0
- /package/{list → cjs/list}/list.d.ts +0 -0
- /package/{list → cjs/list}/list.types.d.ts +0 -0
- /package/{list → cjs/list}/list.types.js +0 -0
- /package/{list → cjs/list}/listDivider.d.ts +0 -0
- /package/{list → cjs/list}/listHeading.d.ts +0 -0
- /package/{list → cjs/list}/listIcon.d.ts +0 -0
- /package/{list → cjs/list}/listItem.d.ts +0 -0
- /package/{list → cjs/list}/listText.d.ts +0 -0
- /package/{list → cjs/list}/theme.d.ts +0 -0
- /package/{menu → cjs/menu}/context.d.ts +0 -0
- /package/{menu → cjs/menu}/index.d.ts +0 -0
- /package/{menu → cjs/menu}/menu.d.ts +0 -0
- /package/{menu → cjs/menu}/menu.types.d.ts +0 -0
- /package/{menu → cjs/menu}/menu.types.js +0 -0
- /package/{menu → cjs/menu}/menuButton.d.ts +0 -0
- /package/{menu → cjs/menu}/menuItem.d.ts +0 -0
- /package/{menu → cjs/menu}/menuList.d.ts +0 -0
- /package/{menu → cjs/menu}/theme.d.ts +0 -0
- /package/{modal → cjs/modal}/context.d.ts +0 -0
- /package/{modal → cjs/modal}/focusLock.d.ts +0 -0
- /package/{modal → cjs/modal}/focusLock.types.d.ts +0 -0
- /package/{modal → cjs/modal}/focusLock.types.js +0 -0
- /package/{modal → cjs/modal}/index.d.ts +0 -0
- /package/{modal → cjs/modal}/modal.d.ts +0 -0
- /package/{modal → cjs/modal}/modal.types.d.ts +0 -0
- /package/{modal → cjs/modal}/modal.types.js +0 -0
- /package/{modal → cjs/modal}/modalBackdrop.d.ts +0 -0
- /package/{modal → cjs/modal}/modalContent.d.ts +0 -0
- /package/{modal → cjs/modal}/modalManager.d.ts +0 -0
- /package/{modal → cjs/modal}/theme.d.ts +0 -0
- /package/{notification → cjs/notification}/consts.d.ts +0 -0
- /package/{notification → cjs/notification}/consts.js +0 -0
- /package/{notification → cjs/notification}/index.d.ts +0 -0
- /package/{notification → cjs/notification}/notification.d.ts +0 -0
- /package/{notification → cjs/notification}/notification.types.d.ts +0 -0
- /package/{notification → cjs/notification}/notification.types.js +0 -0
- /package/{notification → cjs/notification}/notificationButton.d.ts +0 -0
- /package/{notification → cjs/notification}/notificationIcon.d.ts +0 -0
- /package/{notification → cjs/notification}/notificationText.d.ts +0 -0
- /package/{notification → cjs/notification}/notificationTitle.d.ts +0 -0
- /package/{notification → cjs/notification}/theme.d.ts +0 -0
- /package/{p → cjs/p}/index.d.ts +0 -0
- /package/{p → cjs/p}/p.d.ts +0 -0
- /package/{p → cjs/p}/p.types.d.ts +0 -0
- /package/{p → cjs/p}/p.types.js +0 -0
- /package/{p → cjs/p}/theme.d.ts +0 -0
- /package/{pagination → cjs/pagination}/context.d.ts +0 -0
- /package/{pagination → cjs/pagination}/helpers.d.ts +0 -0
- /package/{pagination → cjs/pagination}/index.d.ts +0 -0
- /package/{pagination → cjs/pagination}/pagination.d.ts +0 -0
- /package/{pagination → cjs/pagination}/pagination.types.d.ts +0 -0
- /package/{pagination → cjs/pagination}/pagination.types.js +0 -0
- /package/{pagination → cjs/pagination}/paginationButton.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationEllipsis.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationGoToPage.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationNavigation.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationPrevNext.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationResults.d.ts +0 -0
- /package/{pagination → cjs/pagination}/theme.d.ts +0 -0
- /package/{pagination → cjs/pagination}/usePagination.d.ts +0 -0
- /package/{pagination → cjs/pagination}/usePagination.types.d.ts +0 -0
- /package/{pagination → cjs/pagination}/usePagination.types.js +0 -0
- /package/{panel → cjs/panel}/index.d.ts +0 -0
- /package/{panel → cjs/panel}/panel.d.ts +0 -0
- /package/{panel → cjs/panel}/panel.types.d.ts +0 -0
- /package/{panel → cjs/panel}/panel.types.js +0 -0
- /package/{panel → cjs/panel}/theme.d.ts +0 -0
- /package/{popover → cjs/popover}/consts.d.ts +0 -0
- /package/{popover → cjs/popover}/context.d.ts +0 -0
- /package/{popover → cjs/popover}/index.d.ts +0 -0
- /package/{popover → cjs/popover}/popover.d.ts +0 -0
- /package/{popover → cjs/popover}/popover.types.d.ts +0 -0
- /package/{popover → cjs/popover}/popover.types.js +0 -0
- /package/{popover → cjs/popover}/popoverContent.d.ts +0 -0
- /package/{popover → cjs/popover}/popoverStyle.d.ts +0 -0
- /package/{popover → cjs/popover}/popoverTrigger.d.ts +0 -0
- /package/{popover → cjs/popover}/theme.d.ts +0 -0
- /package/{popover → cjs/popover}/usePopover.d.ts +0 -0
- /package/{popover → cjs/popover}/usePopover.types.d.ts +0 -0
- /package/{popover → cjs/popover}/usePopover.types.js +0 -0
- /package/{portal → cjs/portal}/index.d.ts +0 -0
- /package/{portal → cjs/portal}/portal.d.ts +0 -0
- /package/{portal → cjs/portal}/portal.types.d.ts +0 -0
- /package/{portal → cjs/portal}/portal.types.js +0 -0
- /package/{radio → cjs/radio}/index.d.ts +0 -0
- /package/{radio → cjs/radio}/radio.d.ts +0 -0
- /package/{radio → cjs/radio}/radio.types.d.ts +0 -0
- /package/{radio → cjs/radio}/radio.types.js +0 -0
- /package/{radio → cjs/radio}/radioGroup.d.ts +0 -0
- /package/{radio → cjs/radio}/radioGroup.types.d.ts +0 -0
- /package/{radio → cjs/radio}/radioGroup.types.js +0 -0
- /package/{radio → cjs/radio}/theme.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/index.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/skeleton.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/skeleton.types.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/skeleton.types.js +0 -0
- /package/{skeleton → cjs/skeleton}/theme.d.ts +0 -0
- /package/{spinner → cjs/spinner}/index.d.ts +0 -0
- /package/{spinner → cjs/spinner}/spinner.d.ts +0 -0
- /package/{spinner → cjs/spinner}/spinner.types.d.ts +0 -0
- /package/{spinner → cjs/spinner}/spinner.types.js +0 -0
- /package/{spinner → cjs/spinner}/theme.d.ts +0 -0
- /package/{svg → cjs/svg}/cache.d.ts +0 -0
- /package/{svg → cjs/svg}/helpers.d.ts +0 -0
- /package/{svg → cjs/svg}/index.d.ts +0 -0
- /package/{svg → cjs/svg}/svg.d.ts +0 -0
- /package/{svg → cjs/svg}/svg.types.d.ts +0 -0
- /package/{svg → cjs/svg}/svg.types.js +0 -0
- /package/{switch → cjs/switch}/index.d.ts +0 -0
- /package/{switch → cjs/switch}/switch.d.ts +0 -0
- /package/{switch → cjs/switch}/switch.types.d.ts +0 -0
- /package/{switch → cjs/switch}/switch.types.js +0 -0
- /package/{switch → cjs/switch}/switchButton.d.ts +0 -0
- /package/{switch → cjs/switch}/switchLabel.d.ts +0 -0
- /package/{switch → cjs/switch}/theme.d.ts +0 -0
- /package/{system → cjs/system}/animations.d.ts +0 -0
- /package/{system → cjs/system}/animations.js +0 -0
- /package/{system → cjs/system}/backgrounds.d.ts +0 -0
- /package/{system → cjs/system}/backgrounds.js +0 -0
- /package/{system → cjs/system}/borders.d.ts +0 -0
- /package/{system → cjs/system}/borders.js +0 -0
- /package/{system → cjs/system}/colors.d.ts +0 -0
- /package/{system → cjs/system}/colors.js +0 -0
- /package/{system → cjs/system}/custom.d.ts +0 -0
- /package/{system → cjs/system}/effects.d.ts +0 -0
- /package/{system → cjs/system}/effects.js +0 -0
- /package/{system → cjs/system}/flexboxGrids.d.ts +0 -0
- /package/{system → cjs/system}/flexboxGrids.js +0 -0
- /package/{system → cjs/system}/flexboxes.d.ts +0 -0
- /package/{system → cjs/system}/flexboxes.js +0 -0
- /package/{system → cjs/system}/grids.d.ts +0 -0
- /package/{system → cjs/system}/grids.js +0 -0
- /package/{system → cjs/system}/index.d.ts +0 -0
- /package/{system → cjs/system}/interactivity.d.ts +0 -0
- /package/{system → cjs/system}/interactivity.js +0 -0
- /package/{system → cjs/system}/layout.d.ts +0 -0
- /package/{system → cjs/system}/layout.js +0 -0
- /package/{system → cjs/system}/sizing.d.ts +0 -0
- /package/{system → cjs/system}/sizing.js +0 -0
- /package/{system → cjs/system}/space.d.ts +0 -0
- /package/{system → cjs/system}/space.js +0 -0
- /package/{system → cjs/system}/system.d.ts +0 -0
- /package/{system → cjs/system}/tables.d.ts +0 -0
- /package/{system → cjs/system}/tables.js +0 -0
- /package/{system → cjs/system}/transforms.d.ts +0 -0
- /package/{system → cjs/system}/transforms.js +0 -0
- /package/{system → cjs/system}/transitions.d.ts +0 -0
- /package/{system → cjs/system}/transitions.js +0 -0
- /package/{system → cjs/system}/typography.d.ts +0 -0
- /package/{system → cjs/system}/typography.js +0 -0
- /package/{t → cjs/t}/index.d.ts +0 -0
- /package/{t → cjs/t}/t.d.ts +0 -0
- /package/{t → cjs/t}/t.types.d.ts +0 -0
- /package/{t → cjs/t}/t.types.js +0 -0
- /package/{t → cjs/t}/theme.d.ts +0 -0
- /package/{tag → cjs/tag}/index.d.ts +0 -0
- /package/{tag → cjs/tag}/tag.d.ts +0 -0
- /package/{tag → cjs/tag}/tag.types.d.ts +0 -0
- /package/{tag → cjs/tag}/tag.types.js +0 -0
- /package/{tag → cjs/tag}/tagButton.d.ts +0 -0
- /package/{tag → cjs/tag}/tagIcon.d.ts +0 -0
- /package/{tag → cjs/tag}/tagText.d.ts +0 -0
- /package/{tag → cjs/tag}/theme.d.ts +0 -0
- /package/{textarea → cjs/textarea}/helpers.d.ts +0 -0
- /package/{textarea → cjs/textarea}/index.d.ts +0 -0
- /package/{textarea → cjs/textarea}/textarea.d.ts +0 -0
- /package/{textarea → cjs/textarea}/textarea.types.d.ts +0 -0
- /package/{textarea → cjs/textarea}/textarea.types.js +0 -0
- /package/{textarea → cjs/textarea}/theme.d.ts +0 -0
- /package/{theme → cjs/theme}/components.d.ts +0 -0
- /package/{theme → cjs/theme}/defaultTheme.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/animations.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/animations.js +0 -0
- /package/{theme → cjs/theme}/foundations/borders.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/borders.js +0 -0
- /package/{theme → cjs/theme}/foundations/colors.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/colors.js +0 -0
- /package/{theme → cjs/theme}/foundations/durations.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/durations.js +0 -0
- /package/{theme → cjs/theme}/foundations/fontSizes.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/fontSizes.js +0 -0
- /package/{theme → cjs/theme}/foundations/fontWeights.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/fontWeights.js +0 -0
- /package/{theme → cjs/theme}/foundations/fonts.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateColumns.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateColumns.js +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateRows.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateRows.js +0 -0
- /package/{theme → cjs/theme}/foundations/index.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/radii.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/radii.js +0 -0
- /package/{theme → cjs/theme}/foundations/ringWidths.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/ringWidths.js +0 -0
- /package/{theme → cjs/theme}/foundations/screens.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/screens.js +0 -0
- /package/{theme → cjs/theme}/foundations/shadows.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/sizes.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/sizes.js +0 -0
- /package/{theme → cjs/theme}/foundations/spaces.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/spaces.js +0 -0
- /package/{theme → cjs/theme}/foundations/timingFunctions.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/timingFunctions.js +0 -0
- /package/{theme → cjs/theme}/foundations/transformers.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/transforms.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/transforms.js +0 -0
- /package/{theme → cjs/theme}/foundations/transitions.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/transitions.js +0 -0
- /package/{theme → cjs/theme}/foundations/zIndices.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/zIndices.js +0 -0
- /package/{theme → cjs/theme}/index.d.ts +0 -0
- /package/{theme → cjs/theme}/types.d.ts +0 -0
- /package/{theme → cjs/theme}/types.js +0 -0
- /package/{utils → cjs/utils}/assertion.d.ts +0 -0
- /package/{utils → cjs/utils}/function.d.ts +0 -0
- /package/{utils → cjs/utils}/index.d.ts +0 -0
- /package/{utils → cjs/utils}/number.d.ts +0 -0
- /package/{utils → cjs/utils}/object.d.ts +0 -0
- /package/{utils → cjs/utils}/styles.d.ts +0 -0
- /package/{utils → cjs/utils}/types.d.ts +0 -0
- /package/{utils → cjs/utils}/types.js +0 -0
|
@@ -0,0 +1,123 @@
|
|
|
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
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
37
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
38
|
+
};
|
|
39
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40
|
+
exports.Radio = exports.RadioBase = void 0;
|
|
41
|
+
const react_1 = __importStar(require("react"));
|
|
42
|
+
const core_1 = require("../core");
|
|
43
|
+
const icon_1 = __importDefault(require("../icon"));
|
|
44
|
+
const t_1 = __importDefault(require("../t"));
|
|
45
|
+
const utils_1 = require("../utils");
|
|
46
|
+
const context_1 = require("./context");
|
|
47
|
+
const RadioControl = core_1.styled.spanBox `
|
|
48
|
+
border-radius: 50%;
|
|
49
|
+
display: inline-flex;
|
|
50
|
+
flex-shrink: 0;
|
|
51
|
+
position: relative;
|
|
52
|
+
transition-duration: fast;
|
|
53
|
+
`;
|
|
54
|
+
const RadioInput = core_1.styled.input `
|
|
55
|
+
cursor: inherit;
|
|
56
|
+
height: 100%;
|
|
57
|
+
left: 0;
|
|
58
|
+
margin: 0;
|
|
59
|
+
opacity: 0;
|
|
60
|
+
padding: 0;
|
|
61
|
+
position: absolute;
|
|
62
|
+
top: 0;
|
|
63
|
+
width: 100%;
|
|
64
|
+
z-index: 1;
|
|
65
|
+
`;
|
|
66
|
+
exports.RadioBase = core_1.styled.labelBox `
|
|
67
|
+
align-items: center;
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
display: inline-flex;
|
|
70
|
+
width: fit-content;
|
|
71
|
+
|
|
72
|
+
&:not([aria-disabled='true']):hover .vui-radioControl {
|
|
73
|
+
color: ${p => core_1.th.color(p.controlHoverColor)};
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&[aria-disabled='true'] {
|
|
77
|
+
color: disabled.color;
|
|
78
|
+
cursor: not-allowed;
|
|
79
|
+
|
|
80
|
+
.vui-radioControl {
|
|
81
|
+
color: disabled.color;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
`;
|
|
85
|
+
/**
|
|
86
|
+
* Allows selection of a single choice from a set of items. Handles controlled and uncontrolled modes.
|
|
87
|
+
* Uses icons to display itself in different states.
|
|
88
|
+
*/
|
|
89
|
+
exports.Radio = (0, core_1.vui)((props, ref) => {
|
|
90
|
+
var _a, _b;
|
|
91
|
+
const _c = (_a = (0, context_1.useRadioGroup)()) !== null && _a !== void 0 ? _a : {}, { defaultValue: groupDefaultValue, isChecked: groupIsChecked, onChange: groupOnChange, value: groupValue } = _c, radioGroupProps = __rest(_c, ["defaultValue", "isChecked", "onChange", "value"]);
|
|
92
|
+
const defaultIsChecked = groupIsChecked !== undefined ? groupIsChecked === props.value : undefined;
|
|
93
|
+
const mergedProps = Object.assign(Object.assign({}, radioGroupProps), props);
|
|
94
|
+
const _d = (0, core_1.omitThemingProps)(mergedProps), { checked = groupValue !== undefined ? props.value === groupValue : undefined, children, className, defaultChecked = groupDefaultValue !== undefined ? props.value === groupDefaultValue : undefined, disabled, icon: iconProp = 'cuiRadioUnselected', iconChecked = 'cuiRadioSelected', id, inputProps, inputRef, label, name, onChange, required, value } = _d, rest = __rest(_d, ["checked", "children", "className", "defaultChecked", "disabled", "icon", "iconChecked", "id", "inputProps", "inputRef", "label", "name", "onChange", "required", "value"]);
|
|
95
|
+
const [isChecked, setIsChecked] = (0, react_1.useState)((_b = defaultIsChecked !== null && defaultIsChecked !== void 0 ? defaultIsChecked : checked) !== null && _b !== void 0 ? _b : defaultChecked);
|
|
96
|
+
const styles = (0, core_1.useStyleConfig)('Radio', mergedProps);
|
|
97
|
+
const _e = styles.control, { color: controlColor, hoverColor } = _e, controlStyles = __rest(_e, ["color", "hoverColor"]);
|
|
98
|
+
const icon = isChecked ? iconChecked : iconProp;
|
|
99
|
+
const controlMr = children || label ? 1 : 0;
|
|
100
|
+
const color = isChecked ? controlColor : 'grey.60';
|
|
101
|
+
const controlHoverColor = isChecked ? hoverColor : 'grey.90';
|
|
102
|
+
(0, react_1.useEffect)(() => {
|
|
103
|
+
if (groupIsChecked !== undefined) {
|
|
104
|
+
setIsChecked(groupIsChecked === value);
|
|
105
|
+
}
|
|
106
|
+
else if (checked !== undefined) {
|
|
107
|
+
setIsChecked(checked);
|
|
108
|
+
}
|
|
109
|
+
}, [checked, groupIsChecked]);
|
|
110
|
+
function handleOnChange(e) {
|
|
111
|
+
groupOnChange === null || groupOnChange === void 0 ? void 0 : groupOnChange(e);
|
|
112
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(e);
|
|
113
|
+
}
|
|
114
|
+
const aliasedProps = (0, utils_1.filterUndefined)({
|
|
115
|
+
'aria-disabled': disabled
|
|
116
|
+
});
|
|
117
|
+
return (react_1.default.createElement(exports.RadioBase, Object.assign({ className: (0, utils_1.cs)('vui-radio', className), controlHoverColor: controlHoverColor, ref: ref }, styles.container, aliasedProps, rest),
|
|
118
|
+
react_1.default.createElement(RadioControl, Object.assign({ className: "vui-radioControl", color: color, focusWithinRing: 3, mr: controlMr }, controlStyles),
|
|
119
|
+
react_1.default.createElement(RadioInput, Object.assign({ className: "vui-radioInput", onChange: handleOnChange, ref: inputRef, type: "radio" }, { checked, defaultChecked, disabled, id, name, required, value }, inputProps)),
|
|
120
|
+
react_1.default.createElement(icon_1.default, { className: "vui-radioIcon", h: "100%", name: icon, w: "100%" })), children !== null && children !== void 0 ? children : (label && (react_1.default.createElement(t_1.default, Object.assign({ className: "vui-radioLabel", lineHeight: "normal" }, styles.label), label)))));
|
|
121
|
+
});
|
|
122
|
+
exports.Radio.displayName = 'Radio';
|
|
123
|
+
exports.default = exports.Radio;
|
|
@@ -0,0 +1,78 @@
|
|
|
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.RadioGroup = exports.RadioGroupBase = 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
|
+
exports.RadioGroupBase = core_1.styled.divBox `
|
|
43
|
+
display: flex;
|
|
44
|
+
flex-direction: column;
|
|
45
|
+
gap: 1;
|
|
46
|
+
`;
|
|
47
|
+
/**
|
|
48
|
+
* Organizes layout and display of multiple radio buttons as a row or column.
|
|
49
|
+
* Exposes some props to the children via context.
|
|
50
|
+
*/
|
|
51
|
+
exports.RadioGroup = (0, core_1.vui)((props, ref) => {
|
|
52
|
+
const { className, colorScheme, defaultValue, disabled, isRow, name, onBlur, onChange, onFocus, size, value, variant } = props, rest = __rest(props, ["className", "colorScheme", "defaultValue", "disabled", "isRow", "name", "onBlur", "onChange", "onFocus", "size", "value", "variant"]);
|
|
53
|
+
const [isChecked, setIsChecked] = (0, react_1.useState)(value !== null && value !== void 0 ? value : defaultValue);
|
|
54
|
+
const handleOnChange = (0, react_1.useCallback)((e) => {
|
|
55
|
+
setIsChecked(e.target.value);
|
|
56
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(e);
|
|
57
|
+
}, [onChange]);
|
|
58
|
+
const context = (0, react_1.useMemo)(() => (0, utils_1.filterUndefined)({
|
|
59
|
+
colorScheme,
|
|
60
|
+
defaultValue,
|
|
61
|
+
disabled,
|
|
62
|
+
isChecked,
|
|
63
|
+
name,
|
|
64
|
+
onBlur,
|
|
65
|
+
onChange: handleOnChange,
|
|
66
|
+
onFocus,
|
|
67
|
+
size,
|
|
68
|
+
value,
|
|
69
|
+
variant
|
|
70
|
+
}), [colorScheme, defaultValue, disabled, handleOnChange, isChecked, name, onBlur, onFocus, size, value, variant]);
|
|
71
|
+
const aliasedProps = (0, utils_1.filterUndefined)({
|
|
72
|
+
flexDirection: isRow ? 'row' : undefined
|
|
73
|
+
});
|
|
74
|
+
return (react_1.default.createElement(context_1.RadioGroupProvider, { value: context },
|
|
75
|
+
react_1.default.createElement(exports.RadioGroupBase, Object.assign({ className: (0, utils_1.cs)('vui-radioGroup', className), ref: ref }, aliasedProps, rest))));
|
|
76
|
+
});
|
|
77
|
+
exports.RadioGroup.displayName = 'RadioGroup';
|
|
78
|
+
exports.default = exports.RadioGroup;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
function variantDefault(props) {
|
|
4
|
+
const { colorScheme: c } = props;
|
|
5
|
+
const control = {
|
|
6
|
+
color: `${c}.80`,
|
|
7
|
+
hoverColor: `${c}.90`
|
|
8
|
+
};
|
|
9
|
+
if (c === 'prussian') {
|
|
10
|
+
control.hoverColor = 'prussian.70';
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
control
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
const baseStyle = {};
|
|
17
|
+
const defaultProps = {
|
|
18
|
+
colorScheme: 'blue',
|
|
19
|
+
size: 'md',
|
|
20
|
+
variant: 'default'
|
|
21
|
+
};
|
|
22
|
+
const parts = ['container', 'control', 'label'];
|
|
23
|
+
const sizes = {
|
|
24
|
+
sm: {
|
|
25
|
+
control: {
|
|
26
|
+
h: 16,
|
|
27
|
+
w: 16
|
|
28
|
+
},
|
|
29
|
+
label: {
|
|
30
|
+
size: 'sm'
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
md: {
|
|
34
|
+
control: {
|
|
35
|
+
h: 20,
|
|
36
|
+
w: 20
|
|
37
|
+
},
|
|
38
|
+
label: {
|
|
39
|
+
size: 'md'
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
lg: {
|
|
43
|
+
control: {
|
|
44
|
+
h: 24,
|
|
45
|
+
w: 24
|
|
46
|
+
},
|
|
47
|
+
label: {
|
|
48
|
+
size: 'lg'
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
const variants = {
|
|
53
|
+
default: variantDefault
|
|
54
|
+
};
|
|
55
|
+
exports.default = {
|
|
56
|
+
baseStyle,
|
|
57
|
+
defaultProps,
|
|
58
|
+
parts,
|
|
59
|
+
sizes,
|
|
60
|
+
variants
|
|
61
|
+
};
|
|
@@ -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("./skeleton"), exports);
|
|
22
|
+
var skeleton_1 = require("./skeleton");
|
|
23
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(skeleton_1).default; } });
|
|
24
|
+
__exportStar(require("./skeleton.types"), exports);
|
|
@@ -0,0 +1,35 @@
|
|
|
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.Skeleton = exports.SkeletonBase = void 0;
|
|
18
|
+
const react_1 = __importDefault(require("react"));
|
|
19
|
+
const core_1 = require("../core");
|
|
20
|
+
const utils_1 = require("../utils");
|
|
21
|
+
exports.SkeletonBase = core_1.styled.divBox `
|
|
22
|
+
animation: vui-pulse 1.5s ease-in-out 0.5s infinite;
|
|
23
|
+
`;
|
|
24
|
+
/** Displays one or more animated skeleton elements to signify loading content. */
|
|
25
|
+
exports.Skeleton = (0, core_1.vui)((props, ref) => {
|
|
26
|
+
const _a = (0, core_1.omitThemingProps)(props), { className, repeat = 1 } = _a, rest = __rest(_a, ["className", "repeat"]);
|
|
27
|
+
const styles = (0, core_1.useStyleConfig)('Skeleton', props);
|
|
28
|
+
const arr = Array(repeat).fill(0);
|
|
29
|
+
const aliasedProps = (0, utils_1.filterUndefined)({
|
|
30
|
+
w: props.variant === 'circle' ? styles.h : undefined
|
|
31
|
+
});
|
|
32
|
+
return (react_1.default.createElement(react_1.default.Fragment, null, arr.map((_, i) => (react_1.default.createElement(exports.SkeletonBase, Object.assign({ className: (0, utils_1.cs)('vui-skeleton', className), key: i, ref: ref }, styles, aliasedProps, rest))))));
|
|
33
|
+
});
|
|
34
|
+
exports.Skeleton.displayName = 'Skeleton';
|
|
35
|
+
exports.default = exports.Skeleton;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
function variantCircle(props) {
|
|
4
|
+
const { colorScheme: c } = props;
|
|
5
|
+
const styles = {
|
|
6
|
+
borderRadius: '50%',
|
|
7
|
+
bg: `${c}.20`
|
|
8
|
+
};
|
|
9
|
+
return styles;
|
|
10
|
+
}
|
|
11
|
+
function variantRectangle(props) {
|
|
12
|
+
const { colorScheme: c } = props;
|
|
13
|
+
const styles = {
|
|
14
|
+
borderRadius: 'md',
|
|
15
|
+
bg: `${c}.20`,
|
|
16
|
+
w: '100%'
|
|
17
|
+
};
|
|
18
|
+
return styles;
|
|
19
|
+
}
|
|
20
|
+
const baseStyle = {};
|
|
21
|
+
const defaultProps = {
|
|
22
|
+
colorScheme: 'blue',
|
|
23
|
+
size: 'md',
|
|
24
|
+
variant: 'rect'
|
|
25
|
+
};
|
|
26
|
+
const sizes = {
|
|
27
|
+
xs: {
|
|
28
|
+
h: 24
|
|
29
|
+
},
|
|
30
|
+
sm: {
|
|
31
|
+
h: 32
|
|
32
|
+
},
|
|
33
|
+
md: {
|
|
34
|
+
h: 40
|
|
35
|
+
},
|
|
36
|
+
lg: {
|
|
37
|
+
h: 48
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
const variants = {
|
|
41
|
+
circle: variantCircle,
|
|
42
|
+
rect: variantRectangle
|
|
43
|
+
};
|
|
44
|
+
exports.default = {
|
|
45
|
+
baseStyle,
|
|
46
|
+
defaultProps,
|
|
47
|
+
sizes,
|
|
48
|
+
variants
|
|
49
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Dict } from '../utils';
|
|
2
|
+
export declare const spinnerPositionMapping: {
|
|
3
|
+
bottom: {
|
|
4
|
+
container: {
|
|
5
|
+
flexDirection: string;
|
|
6
|
+
};
|
|
7
|
+
circle: {
|
|
8
|
+
mb: number;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
left: {
|
|
12
|
+
container: {
|
|
13
|
+
flexDirection: string;
|
|
14
|
+
};
|
|
15
|
+
circle: {
|
|
16
|
+
ml: number;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
right: {
|
|
20
|
+
container: {
|
|
21
|
+
flexDirection: string;
|
|
22
|
+
};
|
|
23
|
+
circle: {
|
|
24
|
+
mr: number;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
top: {
|
|
28
|
+
container: {
|
|
29
|
+
flexDirection: string;
|
|
30
|
+
};
|
|
31
|
+
circle: {
|
|
32
|
+
mt: number;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export declare const spinnerSpeedMapping: Dict<string>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.spinnerSpeedMapping = exports.spinnerPositionMapping = void 0;
|
|
4
|
+
exports.spinnerPositionMapping = {
|
|
5
|
+
bottom: {
|
|
6
|
+
container: { flexDirection: 'column' },
|
|
7
|
+
circle: { mb: 1 }
|
|
8
|
+
},
|
|
9
|
+
left: {
|
|
10
|
+
container: { flexDirection: 'row-reverse' },
|
|
11
|
+
circle: { ml: 1 }
|
|
12
|
+
},
|
|
13
|
+
right: {
|
|
14
|
+
container: { flexDirection: 'row' },
|
|
15
|
+
circle: { mr: 1 }
|
|
16
|
+
},
|
|
17
|
+
top: {
|
|
18
|
+
container: { flexDirection: 'column-reverse' },
|
|
19
|
+
circle: { mt: 1 }
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
exports.spinnerSpeedMapping = {
|
|
23
|
+
slow: '1s',
|
|
24
|
+
normal: '0.9s',
|
|
25
|
+
fast: '0.8s'
|
|
26
|
+
};
|
|
@@ -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("./spinner"), exports);
|
|
22
|
+
var spinner_1 = require("./spinner");
|
|
23
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(spinner_1).default; } });
|
|
24
|
+
__exportStar(require("./spinner.types"), exports);
|
|
@@ -0,0 +1,51 @@
|
|
|
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.Spinner = exports.SpinnerCircle = void 0;
|
|
18
|
+
const react_1 = __importDefault(require("react"));
|
|
19
|
+
const box_1 = __importDefault(require("../box"));
|
|
20
|
+
const core_1 = require("../core");
|
|
21
|
+
const t_1 = __importDefault(require("../t"));
|
|
22
|
+
const utils_1 = require("../utils");
|
|
23
|
+
const consts_1 = require("./consts");
|
|
24
|
+
exports.SpinnerCircle = core_1.styled.divBox `
|
|
25
|
+
border-radius: round;
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-shrink: 0;
|
|
28
|
+
`;
|
|
29
|
+
/**
|
|
30
|
+
* Displays a spinning circular element with optional text to signify loading content.
|
|
31
|
+
* Handles different positioning scenarios, speeds and coloring of the circle.
|
|
32
|
+
*/
|
|
33
|
+
exports.Spinner = (0, core_1.vui)((props, ref) => {
|
|
34
|
+
var _a;
|
|
35
|
+
const { className, emptyColor, size, speed: speedProp = 'normal', text, textPosition = 'bottom', thickness } = props, rest = __rest(props, ["className", "emptyColor", "size", "speed", "text", "textPosition", "thickness"]);
|
|
36
|
+
const styles = (0, core_1.useStyleConfig)('Spinner', props);
|
|
37
|
+
const isCustomSize = typeof size === 'number';
|
|
38
|
+
const positionProps = consts_1.spinnerPositionMapping[textPosition];
|
|
39
|
+
const speed = (_a = consts_1.spinnerSpeedMapping[speedProp]) !== null && _a !== void 0 ? _a : speedProp;
|
|
40
|
+
const circleProps = (0, utils_1.filterUndefined)({
|
|
41
|
+
borderColor: emptyColor,
|
|
42
|
+
borderWidth: isCustomSize ? thickness !== null && thickness !== void 0 ? thickness : 4 : thickness,
|
|
43
|
+
h: isCustomSize ? size : undefined,
|
|
44
|
+
w: isCustomSize ? size : undefined
|
|
45
|
+
});
|
|
46
|
+
return (react_1.default.createElement(box_1.default, Object.assign({ center: true, className: (0, utils_1.cs)('vui-spinner', className), ref: ref, transitionDuration: "fast" }, styles.container, positionProps.container, rest),
|
|
47
|
+
react_1.default.createElement(exports.SpinnerCircle, Object.assign({ animation: `vui-spin ${speed} linear infinite`, className: "vui-spinnerCircle" }, styles.circle, positionProps.circle, circleProps)),
|
|
48
|
+
text && (react_1.default.createElement(t_1.default, Object.assign({ className: "vui-spinnerText" }, styles.text), text))));
|
|
49
|
+
});
|
|
50
|
+
exports.Spinner.displayName = 'Spinner';
|
|
51
|
+
exports.default = exports.Spinner;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
function variantDefault(props) {
|
|
4
|
+
const { colorScheme: c } = props;
|
|
5
|
+
const container = {
|
|
6
|
+
color: `${c}.50`
|
|
7
|
+
};
|
|
8
|
+
const circle = {
|
|
9
|
+
borderColor: `${c}.20`,
|
|
10
|
+
borderTopColor: `${c}.50`
|
|
11
|
+
};
|
|
12
|
+
const text = {};
|
|
13
|
+
return { container, circle, text };
|
|
14
|
+
}
|
|
15
|
+
const baseStyle = {};
|
|
16
|
+
const defaultProps = {
|
|
17
|
+
colorScheme: 'blue',
|
|
18
|
+
size: 'page',
|
|
19
|
+
variant: 'default'
|
|
20
|
+
};
|
|
21
|
+
const parts = ['container', 'circle', 'text'];
|
|
22
|
+
const sizes = {
|
|
23
|
+
xs: {
|
|
24
|
+
circle: {
|
|
25
|
+
borderWidth: 1,
|
|
26
|
+
h: 16,
|
|
27
|
+
w: 16
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
sm: {
|
|
31
|
+
circle: {
|
|
32
|
+
borderWidth: 2,
|
|
33
|
+
h: 24,
|
|
34
|
+
w: 24
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
md: {
|
|
38
|
+
circle: {
|
|
39
|
+
borderWidth: 3,
|
|
40
|
+
h: 32,
|
|
41
|
+
w: 32
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
lg: {
|
|
45
|
+
circle: {
|
|
46
|
+
borderWidth: 3,
|
|
47
|
+
h: 40,
|
|
48
|
+
w: 40
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
card: {
|
|
52
|
+
circle: {
|
|
53
|
+
borderWidth: 4,
|
|
54
|
+
h: 60,
|
|
55
|
+
w: 60
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
page: {
|
|
59
|
+
circle: {
|
|
60
|
+
borderWidth: 5,
|
|
61
|
+
h: 80,
|
|
62
|
+
w: 80
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
const variants = {
|
|
67
|
+
default: variantDefault
|
|
68
|
+
};
|
|
69
|
+
exports.default = {
|
|
70
|
+
baseStyle,
|
|
71
|
+
defaultProps,
|
|
72
|
+
parts,
|
|
73
|
+
sizes,
|
|
74
|
+
variants
|
|
75
|
+
};
|
package/cjs/svg/cache.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
/**
|
|
4
|
+
* Provides svg caching functionality to avoid redundant XHR requests.
|
|
5
|
+
* When the retrieved item doesn't exist in cache yet, a request is sent
|
|
6
|
+
* to its 'src' url. The request's promise is cached for that 'src' key
|
|
7
|
+
* and can be used for the whole session without repeating requests.
|
|
8
|
+
*/
|
|
9
|
+
class Cache {
|
|
10
|
+
constructor() {
|
|
11
|
+
this.cache = new Map();
|
|
12
|
+
this.add = (src, svg) => {
|
|
13
|
+
this.cache.set(src, svg);
|
|
14
|
+
};
|
|
15
|
+
this.get = (src) => {
|
|
16
|
+
const item = this.cache.get(src);
|
|
17
|
+
if (!item) {
|
|
18
|
+
const promise = fetch(src).then(res => res.text());
|
|
19
|
+
this.add(src, promise);
|
|
20
|
+
return promise;
|
|
21
|
+
}
|
|
22
|
+
return item;
|
|
23
|
+
};
|
|
24
|
+
this.reset = () => {
|
|
25
|
+
this.cache.clear();
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
const cache = new Cache();
|
|
30
|
+
exports.default = cache;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.stringToHTML = exports.initState = exports.getSvgContent = exports.getAttributes = void 0;
|
|
4
|
+
/** Returns an object with given element's HTML attributes. */
|
|
5
|
+
function getAttributes(element) {
|
|
6
|
+
if (!element)
|
|
7
|
+
return {};
|
|
8
|
+
const attrs = Array.from(element.attributes);
|
|
9
|
+
return attrs.reduce((props, attr) => {
|
|
10
|
+
const { name, value } = attr;
|
|
11
|
+
props[name] = value;
|
|
12
|
+
return props;
|
|
13
|
+
}, {});
|
|
14
|
+
}
|
|
15
|
+
exports.getAttributes = getAttributes;
|
|
16
|
+
/** Returns content of the SVG HTML string by stripping the svg tag. */
|
|
17
|
+
function getSvgContent(html = '') {
|
|
18
|
+
return html.replace(/(<\/?svg(?:.|\n)*?>)|(\r\n|\n|\r)/gm, '');
|
|
19
|
+
}
|
|
20
|
+
exports.getSvgContent = getSvgContent;
|
|
21
|
+
/** Returns object with initial state values. */
|
|
22
|
+
function initState() {
|
|
23
|
+
return { content: '', svgAttributes: {} };
|
|
24
|
+
}
|
|
25
|
+
exports.initState = initState;
|
|
26
|
+
/** Returns given HTML string as an HTML element. */
|
|
27
|
+
function stringToHTML(html) {
|
|
28
|
+
const container = document.createElement('div');
|
|
29
|
+
container.innerHTML = html;
|
|
30
|
+
return container.firstElementChild;
|
|
31
|
+
}
|
|
32
|
+
exports.stringToHTML = stringToHTML;
|
package/cjs/svg/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("./svg"), exports);
|
|
22
|
+
var svg_1 = require("./svg");
|
|
23
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(svg_1).default; } });
|
|
24
|
+
__exportStar(require("./svg.types"), exports);
|