@veracity/vui 0.6.1 → 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/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/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.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,58 @@
|
|
|
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.Avatar = exports.AvatarBase = void 0;
|
|
18
|
+
const react_1 = __importDefault(require("react"));
|
|
19
|
+
const core_1 = require("../core");
|
|
20
|
+
const icon_1 = __importDefault(require("../icon"));
|
|
21
|
+
const image_1 = __importDefault(require("../image"));
|
|
22
|
+
const utils_1 = require("../utils");
|
|
23
|
+
const helpers_1 = require("./helpers");
|
|
24
|
+
exports.AvatarBase = core_1.styled.spanBox `
|
|
25
|
+
align-items: center;
|
|
26
|
+
display: inline-flex;
|
|
27
|
+
flex-shrink: 0;
|
|
28
|
+
font-weight: medium;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
line-height: normal;
|
|
31
|
+
outline: none;
|
|
32
|
+
overflow: hidden;
|
|
33
|
+
transition-duration: fast;
|
|
34
|
+
|
|
35
|
+
&:focus {
|
|
36
|
+
border-color: transparent;
|
|
37
|
+
}
|
|
38
|
+
`;
|
|
39
|
+
/** Displays user data, such as name initials or profile image. */
|
|
40
|
+
exports.Avatar = (0, core_1.vui)((props, ref) => {
|
|
41
|
+
const _a = (0, core_1.omitThemingProps)(props), { children, className, getInitials = helpers_1.defaultGetInitials, icon, isInteractive = props.onClick !== undefined, isSquare, name = '', src } = _a, rest = __rest(_a, ["children", "className", "getInitials", "icon", "isInteractive", "isSquare", "name", "src"]);
|
|
42
|
+
const _b = (0, core_1.useStyleConfig)('Avatar', props), { activeBg, h, hoverBg, iconSize } = _b, styles = __rest(_b, ["activeBg", "h", "hoverBg", "iconSize"]);
|
|
43
|
+
const borderRadius = isSquare ? 'lg' : '50%';
|
|
44
|
+
const initials = getInitials(name);
|
|
45
|
+
const interactiveProps = isInteractive
|
|
46
|
+
? {
|
|
47
|
+
cursor: 'pointer',
|
|
48
|
+
hoverBg,
|
|
49
|
+
activeBg,
|
|
50
|
+
focusRing: 3,
|
|
51
|
+
tabIndex: 0,
|
|
52
|
+
userSelect: 'none'
|
|
53
|
+
}
|
|
54
|
+
: {};
|
|
55
|
+
return (react_1.default.createElement(exports.AvatarBase, Object.assign({ borderRadius: borderRadius, className: (0, utils_1.cs)('vui-avatar', className), h: h, ref: ref, w: h }, styles, interactiveProps, rest), children ? (children) : src ? (react_1.default.createElement(image_1.default, Object.assign({}, { borderRadius, src }))) : icon ? (react_1.default.createElement(icon_1.default, { name: icon, size: iconSize })) : initials ? (initials) : null));
|
|
56
|
+
});
|
|
57
|
+
exports.Avatar.displayName = 'Avatar';
|
|
58
|
+
exports.default = exports.Avatar;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultGetInitials = void 0;
|
|
4
|
+
/** Gets initials from the name for the Avatar. */
|
|
5
|
+
function defaultGetInitials(name = '') {
|
|
6
|
+
const [first = '', last = ''] = name.split(' ');
|
|
7
|
+
return `${first.charAt(0)}${last.charAt(0)}`.toUpperCase();
|
|
8
|
+
}
|
|
9
|
+
exports.defaultGetInitials = defaultGetInitials;
|
|
@@ -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("./avatar"), exports);
|
|
22
|
+
var avatar_1 = require("./avatar");
|
|
23
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(avatar_1).default; } });
|
|
24
|
+
__exportStar(require("./avatar.types"), exports);
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
function variantSolid(props) {
|
|
4
|
+
const { colorScheme: c } = props;
|
|
5
|
+
const styles = {
|
|
6
|
+
hoverBg: `${c}.90`,
|
|
7
|
+
activeBg: `${c}.100`,
|
|
8
|
+
bg: `${c}.80`,
|
|
9
|
+
color: 'white'
|
|
10
|
+
};
|
|
11
|
+
// Special cases
|
|
12
|
+
if (c === 'prussian') {
|
|
13
|
+
styles.activeBg = 'prussian.50';
|
|
14
|
+
styles.hoverBg = 'prussian.60';
|
|
15
|
+
}
|
|
16
|
+
if (c === 'yellow') {
|
|
17
|
+
styles.hoverBg = `${c}.80`;
|
|
18
|
+
styles.activeBg = `${c}.90`;
|
|
19
|
+
styles.bg = `${c}.70`;
|
|
20
|
+
}
|
|
21
|
+
return styles;
|
|
22
|
+
}
|
|
23
|
+
function variantSubtle(props) {
|
|
24
|
+
const { colorScheme: c } = props;
|
|
25
|
+
const colors = {
|
|
26
|
+
hoverBg: `${c}.30`,
|
|
27
|
+
activeBg: `${c}.40`,
|
|
28
|
+
bg: `${c}.20`,
|
|
29
|
+
color: `${c}.80`
|
|
30
|
+
};
|
|
31
|
+
// Special cases
|
|
32
|
+
if (c === 'green') {
|
|
33
|
+
colors.color = `${c}.90`;
|
|
34
|
+
}
|
|
35
|
+
if (c === 'grey') {
|
|
36
|
+
colors.color = `prussian.80`;
|
|
37
|
+
}
|
|
38
|
+
if (c === 'red') {
|
|
39
|
+
colors.color = `${c}.90`;
|
|
40
|
+
}
|
|
41
|
+
if (c === 'yellow') {
|
|
42
|
+
colors.color = `${c}.100`;
|
|
43
|
+
}
|
|
44
|
+
return colors;
|
|
45
|
+
}
|
|
46
|
+
const baseStyle = {};
|
|
47
|
+
const defaultProps = {
|
|
48
|
+
colorScheme: 'blue',
|
|
49
|
+
size: 'md',
|
|
50
|
+
variant: 'subtle'
|
|
51
|
+
};
|
|
52
|
+
const sizes = {
|
|
53
|
+
xs: {
|
|
54
|
+
fontSize: 'xs',
|
|
55
|
+
h: 24,
|
|
56
|
+
iconSize: 'xs'
|
|
57
|
+
},
|
|
58
|
+
sm: {
|
|
59
|
+
fontSize: 'sm',
|
|
60
|
+
h: 32,
|
|
61
|
+
iconSize: 'sm'
|
|
62
|
+
},
|
|
63
|
+
md: {
|
|
64
|
+
fontSize: 'md',
|
|
65
|
+
h: 40,
|
|
66
|
+
iconSize: 'md'
|
|
67
|
+
},
|
|
68
|
+
lg: {
|
|
69
|
+
fontSize: 'lg',
|
|
70
|
+
h: 48,
|
|
71
|
+
iconSize: 'lg'
|
|
72
|
+
},
|
|
73
|
+
xl: {
|
|
74
|
+
fontSize: 'lg',
|
|
75
|
+
h: 64,
|
|
76
|
+
iconSize: 'lg'
|
|
77
|
+
}
|
|
78
|
+
};
|
|
79
|
+
const variants = {
|
|
80
|
+
solid: variantSolid,
|
|
81
|
+
subtle: variantSubtle
|
|
82
|
+
};
|
|
83
|
+
exports.default = {
|
|
84
|
+
baseStyle,
|
|
85
|
+
defaultProps,
|
|
86
|
+
sizes,
|
|
87
|
+
variants
|
|
88
|
+
};
|
package/cjs/box/box.js
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
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.Box = exports.BoxBase = void 0;
|
|
18
|
+
const react_1 = __importDefault(require("react"));
|
|
19
|
+
const core_1 = require("../core");
|
|
20
|
+
const utils_1 = require("../utils");
|
|
21
|
+
exports.BoxBase = core_1.styled.divBox `
|
|
22
|
+
display: flex;
|
|
23
|
+
min-width: 0;
|
|
24
|
+
transition-duration: normal;
|
|
25
|
+
`;
|
|
26
|
+
/** Organizes content layout into columns or rows with easy centering. */
|
|
27
|
+
exports.Box = (0, core_1.vui)((props, ref) => {
|
|
28
|
+
const _a = (0, core_1.omitThemingProps)(props), { align, center, centerH, centerV, className, column, direction, hoverShadow, justify, radius, shadow, wrap } = _a, rest = __rest(_a, ["align", "center", "centerH", "centerV", "className", "column", "direction", "hoverShadow", "justify", "radius", "shadow", "wrap"]);
|
|
29
|
+
const styles = (0, core_1.useStyleConfig)('Box', props);
|
|
30
|
+
const alignItems = center || (column ? centerH : centerV) ? 'center' : undefined;
|
|
31
|
+
const flexDirection = column ? 'column' : undefined;
|
|
32
|
+
const justifyContent = center || (column ? centerV : centerH) ? 'center' : undefined;
|
|
33
|
+
const aliasedProps = (0, utils_1.filterUndefined)({
|
|
34
|
+
alignItems: align !== null && align !== void 0 ? align : alignItems,
|
|
35
|
+
borderRadius: radius,
|
|
36
|
+
boxShadow: shadow,
|
|
37
|
+
flexDirection: direction !== null && direction !== void 0 ? direction : flexDirection,
|
|
38
|
+
flexWrap: wrap ? 'wrap' : undefined,
|
|
39
|
+
hoverBoxShadow: hoverShadow,
|
|
40
|
+
justifyContent: justify !== null && justify !== void 0 ? justify : justifyContent
|
|
41
|
+
});
|
|
42
|
+
return react_1.default.createElement(exports.BoxBase, Object.assign({ className: (0, utils_1.cs)('vui-box', className), ref: ref }, styles, aliasedProps, rest));
|
|
43
|
+
});
|
|
44
|
+
exports.Box.displayName = 'Box';
|
|
45
|
+
exports.default = exports.Box;
|
package/cjs/box/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("./box"), exports);
|
|
22
|
+
var box_1 = require("./box");
|
|
23
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(box_1).default; } });
|
|
24
|
+
__exportStar(require("./box.types"), exports);
|
package/cjs/box/theme.js
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
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.Button = exports.ButtonBase = void 0;
|
|
41
|
+
const react_1 = __importStar(require("react"));
|
|
42
|
+
const context_1 = require("../buttonGroup/context");
|
|
43
|
+
const core_1 = require("../core");
|
|
44
|
+
const utils_1 = require("../utils");
|
|
45
|
+
const buttonIcon_1 = __importDefault(require("./buttonIcon"));
|
|
46
|
+
const buttonText_1 = __importDefault(require("./buttonText"));
|
|
47
|
+
const consts_1 = require("./consts");
|
|
48
|
+
const context_2 = require("./context");
|
|
49
|
+
const ContentWrapper = core_1.styled.span `
|
|
50
|
+
visibility: hidden;
|
|
51
|
+
`;
|
|
52
|
+
const StateWrapper = core_1.styled.span `
|
|
53
|
+
bottom: 0;
|
|
54
|
+
display: flex;
|
|
55
|
+
left: 0;
|
|
56
|
+
position: absolute;
|
|
57
|
+
right: 0;
|
|
58
|
+
top: 0;
|
|
59
|
+
`;
|
|
60
|
+
exports.ButtonBase = core_1.styled.buttonBox `
|
|
61
|
+
align-items: center;
|
|
62
|
+
border-radius: md;
|
|
63
|
+
display: inline-flex;
|
|
64
|
+
flex-shrink: 0;
|
|
65
|
+
font-weight: medium;
|
|
66
|
+
justify-content: center;
|
|
67
|
+
line-height: normal;
|
|
68
|
+
overflow: hidden;
|
|
69
|
+
position: relative;
|
|
70
|
+
transition-duration: fast;
|
|
71
|
+
user-select: none;
|
|
72
|
+
width: fit-content;
|
|
73
|
+
|
|
74
|
+
&:focus,
|
|
75
|
+
&:focus:hover {
|
|
76
|
+
border-color: transparent;
|
|
77
|
+
outline: none;
|
|
78
|
+
z-index: 1;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&[aria-disabled='true'],
|
|
82
|
+
&[aria-disabled='true']:hover {
|
|
83
|
+
background-color: disabled.bg;
|
|
84
|
+
border-color: ${p => (p.variant === 'outlined' ? core_1.th.color('disabled.border') : core_1.th.color('disabled.bg'))};
|
|
85
|
+
color: disabled.color;
|
|
86
|
+
cursor: not-allowed;
|
|
87
|
+
}
|
|
88
|
+
`;
|
|
89
|
+
/**
|
|
90
|
+
* Triggers given actions on click. Supports multiple states, sizes and variant.
|
|
91
|
+
* Comes with additional props for extra behavior, like loading, disabled or elevated.
|
|
92
|
+
* Exposes some props to the children via context.
|
|
93
|
+
*/
|
|
94
|
+
exports.Button = (0, core_1.vui)((props, ref) => {
|
|
95
|
+
var _a, _b, _c, _d;
|
|
96
|
+
const buttonGroupProps = (0, context_1.useButtonGroup)();
|
|
97
|
+
const mergedProps = Object.assign(Object.assign({}, buttonGroupProps), props);
|
|
98
|
+
const { borderWidth: borderWidthProp, children, className, colorScheme: colorSchemeProp, disabled, icon, iconLeft, iconRight, isElevated, isFullWidth, isLoading, // eslint-disable-line
|
|
99
|
+
isRound, isSplit, isTruncated, size, state = props.isLoading ? 'loading' : '', stateMapping, text, variant } = mergedProps, rest = __rest(mergedProps, ["borderWidth", "children", "className", "colorScheme", "disabled", "icon", "iconLeft", "iconRight", "isElevated", "isFullWidth", "isLoading", "isRound", "isSplit", "isTruncated", "size", "state", "stateMapping", "text", "variant"]);
|
|
100
|
+
const hasState = Boolean(state) && state !== 'idle';
|
|
101
|
+
const states = Object.assign(Object.assign({}, consts_1.buttonStateMapping), stateMapping);
|
|
102
|
+
const _e = (_a = states[state]) !== null && _a !== void 0 ? _a : {}, { iconProps: stateIconProps } = _e, stateProps = __rest(_e, ["iconProps"]);
|
|
103
|
+
const colorScheme = (0, utils_1.filterUndefined)({
|
|
104
|
+
colorScheme: (_c = (_b = states[state]) === null || _b === void 0 ? void 0 : _b.colorScheme) !== null && _c !== void 0 ? _c : colorSchemeProp
|
|
105
|
+
});
|
|
106
|
+
const styles = (0, core_1.useStyleConfig)('Button', Object.assign(Object.assign({}, mergedProps), colorScheme));
|
|
107
|
+
const _f = styles.container, { borderWidth, h, spaceX = 0 } = _f, buttonStyles = __rest(_f, ["borderWidth", "h", "spaceX"]);
|
|
108
|
+
const context = (0, react_1.useMemo)(() => (0, utils_1.filterUndefined)({ colorScheme, disabled, size, variant }), [colorScheme, disabled, size, variant]);
|
|
109
|
+
const Content = hasState ? ContentWrapper : react_1.default.Fragment;
|
|
110
|
+
// Apply more space for text and less space for icons
|
|
111
|
+
const border = (_d = borderWidthProp !== null && borderWidthProp !== void 0 ? borderWidthProp : borderWidth) !== null && _d !== void 0 ? _d : 0;
|
|
112
|
+
const spaceXItem = spaceX - border;
|
|
113
|
+
const spaceXText = spaceX * 2 - border;
|
|
114
|
+
const iconLeftMr = spaceXItem + 1 + 'px';
|
|
115
|
+
const iconRightMl = isSplit ? 'auto' : spaceXItem + 1 + 'px';
|
|
116
|
+
const pl = (icon || iconLeft ? spaceXItem : spaceXText) + 'px';
|
|
117
|
+
const pr = (icon || iconRight ? spaceXItem : spaceXText) + 'px';
|
|
118
|
+
const aliasedProps = (0, utils_1.filterUndefined)({
|
|
119
|
+
'aria-disabled': disabled,
|
|
120
|
+
borderRadius: isRound ? h / 2 : undefined,
|
|
121
|
+
boxShadow: isElevated ? '2' : undefined,
|
|
122
|
+
minW: icon ? 0 : undefined,
|
|
123
|
+
pointerEvents: hasState ? 'none' : undefined,
|
|
124
|
+
w: isFullWidth ? '100%' : undefined
|
|
125
|
+
});
|
|
126
|
+
return (react_1.default.createElement(context_2.ButtonProvider, { value: context },
|
|
127
|
+
react_1.default.createElement(exports.ButtonBase, Object.assign({ borderWidth: border, className: (0, utils_1.cs)('vui-button', className), disabled: disabled, focusRing: 3, h: h, pl: pl, pr: pr, ref: ref, type: "button", variant: variant }, buttonStyles, aliasedProps, rest),
|
|
128
|
+
hasState && (react_1.default.createElement(StateWrapper, Object.assign({ onClick: e => e.stopPropagation() }, stateProps),
|
|
129
|
+
react_1.default.createElement(buttonIcon_1.default, Object.assign({ m: "auto" }, stateIconProps)))),
|
|
130
|
+
react_1.default.createElement(Content, null,
|
|
131
|
+
(0, utils_1.isString)(icon) ? react_1.default.createElement(buttonIcon_1.default, { name: icon }) : icon,
|
|
132
|
+
!icon && (react_1.default.createElement(react_1.default.Fragment, null,
|
|
133
|
+
(0, utils_1.isString)(iconLeft) ? react_1.default.createElement(buttonIcon_1.default, { mr: iconLeftMr, name: iconLeft }) : iconLeft, children !== null && children !== void 0 ? children : ((0, utils_1.isReactText)(text) ? react_1.default.createElement(buttonText_1.default, Object.assign({}, { isTruncated, text })) : text),
|
|
134
|
+
(0, utils_1.isString)(iconRight) ? react_1.default.createElement(buttonIcon_1.default, { ml: iconRightMl, name: iconRight }) : iconRight))))));
|
|
135
|
+
});
|
|
136
|
+
exports.Button.displayName = 'Button';
|
|
137
|
+
exports.Button.Icon = buttonIcon_1.default;
|
|
138
|
+
exports.Button.Text = buttonText_1.default;
|
|
139
|
+
exports.default = exports.Button;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ButtonIcon = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const core_1 = require("../core");
|
|
9
|
+
const icon_1 = __importDefault(require("../icon"));
|
|
10
|
+
const context_1 = require("./context");
|
|
11
|
+
/** Displays an icon within the Button. */
|
|
12
|
+
exports.ButtonIcon = (0, core_1.vui)((props, ref) => {
|
|
13
|
+
const styles = (0, core_1.useStyleConfig)('Button', Object.assign(Object.assign({}, (0, context_1.useButton)()), props));
|
|
14
|
+
return react_1.default.createElement(icon_1.default, Object.assign({ className: "vui-buttonIcon", ref: ref }, styles.icon, props));
|
|
15
|
+
});
|
|
16
|
+
exports.ButtonIcon.displayName = 'ButtonIcon';
|
|
17
|
+
exports.default = exports.ButtonIcon;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ButtonText = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const core_1 = require("../core");
|
|
9
|
+
const t_1 = __importDefault(require("../t"));
|
|
10
|
+
const context_1 = require("./context");
|
|
11
|
+
/** Displays the text label of the button. */
|
|
12
|
+
exports.ButtonText = (0, core_1.vui)((props, ref) => {
|
|
13
|
+
const styles = (0, core_1.useStyleConfig)('Button', Object.assign(Object.assign({}, (0, context_1.useButton)()), props));
|
|
14
|
+
return react_1.default.createElement(t_1.default, Object.assign({ className: "vui-buttonText", fontSize: "inherit", ref: ref }, styles.text, props));
|
|
15
|
+
});
|
|
16
|
+
exports.ButtonText.displayName = 'ButtonText';
|
|
17
|
+
exports.default = exports.ButtonText;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.TextButton = exports.LineButton = exports.IconButton = exports.DangerButton = exports.CTAButton = exports.CloseButton = exports.BackButton = exports.AppButton = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const core_1 = require("../core");
|
|
9
|
+
const button_1 = __importDefault(require("./button"));
|
|
10
|
+
exports.AppButton = (0, core_1.vui)((props, ref) => (react_1.default.createElement(button_1.default, Object.assign({ colorScheme: "blue", ref: ref, variant: "solid" }, props))));
|
|
11
|
+
exports.BackButton = (0, core_1.vui)((props, ref) => (react_1.default.createElement(exports.IconButton, Object.assign({ colorScheme: "blue", icon: "falArrowLeft", ref: ref, variant: "text" }, props))));
|
|
12
|
+
exports.CloseButton = (0, core_1.vui)((props, ref) => (react_1.default.createElement(exports.IconButton, Object.assign({ colorScheme: "blue", icon: "falTimes", ref: ref, variant: "text" }, props))));
|
|
13
|
+
exports.CTAButton = (0, core_1.vui)((props, ref) => (react_1.default.createElement(button_1.default, Object.assign({ colorScheme: "green", ref: ref, variant: "solid" }, props))));
|
|
14
|
+
exports.DangerButton = (0, core_1.vui)((props, ref) => (react_1.default.createElement(button_1.default, Object.assign({ colorScheme: "red", ref: ref, variant: "solid" }, props))));
|
|
15
|
+
exports.IconButton = (0, core_1.vui)((props, ref) => (react_1.default.createElement(button_1.default, Object.assign({ colorScheme: "blue", ref: ref, variant: "text" }, props))));
|
|
16
|
+
exports.LineButton = (0, core_1.vui)((props, ref) => (react_1.default.createElement(button_1.default, Object.assign({ colorScheme: "blue", ref: ref, variant: "outlined" }, props))));
|
|
17
|
+
exports.TextButton = (0, core_1.vui)((props, ref) => (react_1.default.createElement(button_1.default, Object.assign({ colorScheme: "blue", ref: ref, variant: "text" }, props))));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useButton = exports.ButtonProvider = void 0;
|
|
4
|
+
const utils_1 = require("../utils");
|
|
5
|
+
const [ButtonProvider, useButton] = (0, utils_1.createContext)({ isOptional: true });
|
|
6
|
+
exports.ButtonProvider = ButtonProvider;
|
|
7
|
+
exports.useButton = useButton;
|
|
@@ -0,0 +1,28 @@
|
|
|
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("./button"), exports);
|
|
22
|
+
var button_1 = require("./button");
|
|
23
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(button_1).default; } });
|
|
24
|
+
__exportStar(require("./button.types"), exports);
|
|
25
|
+
__exportStar(require("./buttonIcon"), exports);
|
|
26
|
+
__exportStar(require("./buttons"), exports);
|
|
27
|
+
__exportStar(require("./buttonText"), exports);
|
|
28
|
+
__exportStar(require("./context"), exports);
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
function variantOutlined(props) {
|
|
4
|
+
var _a;
|
|
5
|
+
const { colorScheme: c } = props;
|
|
6
|
+
const container = Object.assign(Object.assign({}, (_a = variantText(props)) === null || _a === void 0 ? void 0 : _a.container), { borderColor: `${c}.80`, hoverBorderColor: `${c}.80`, focusRing: 3 });
|
|
7
|
+
return { container };
|
|
8
|
+
}
|
|
9
|
+
function variantSolid(props) {
|
|
10
|
+
const { colorScheme: c } = props;
|
|
11
|
+
const container = {
|
|
12
|
+
hoverBg: `${c}.90`,
|
|
13
|
+
hoverBorderColor: `${c}.90`,
|
|
14
|
+
activeBg: `${c}.100`,
|
|
15
|
+
bg: `${c}.80`,
|
|
16
|
+
borderColor: `${c}.80`,
|
|
17
|
+
borderWidth: 1,
|
|
18
|
+
color: 'white'
|
|
19
|
+
};
|
|
20
|
+
// Special cases
|
|
21
|
+
if (c === 'prussian') {
|
|
22
|
+
container.activeBg = 'prussian.50';
|
|
23
|
+
container.hoverBg = 'prussian.60';
|
|
24
|
+
container.hoverBorderColor = 'prussian.60';
|
|
25
|
+
}
|
|
26
|
+
return { container };
|
|
27
|
+
}
|
|
28
|
+
function variantSubtle(props) {
|
|
29
|
+
const { colorScheme: c } = props;
|
|
30
|
+
const container = {
|
|
31
|
+
hoverBg: `${c}.30`,
|
|
32
|
+
hoverBorderColor: `${c}.30`,
|
|
33
|
+
activeBg: `${c}.40`,
|
|
34
|
+
bg: `${c}.20`,
|
|
35
|
+
borderColor: `${c}.20`,
|
|
36
|
+
borderWidth: 1,
|
|
37
|
+
color: `${c}.90`
|
|
38
|
+
};
|
|
39
|
+
// Special cases
|
|
40
|
+
if (c === 'prussian') {
|
|
41
|
+
container.activeBg = 'blue.40';
|
|
42
|
+
container.hoverBg = 'blue.30';
|
|
43
|
+
container.hoverBorderColor = 'blue.30';
|
|
44
|
+
container.bg = 'blue.20';
|
|
45
|
+
container.borderColor = 'blue.20';
|
|
46
|
+
}
|
|
47
|
+
return { container };
|
|
48
|
+
}
|
|
49
|
+
function variantText(props) {
|
|
50
|
+
const { colorScheme: c } = props;
|
|
51
|
+
const container = {
|
|
52
|
+
hoverBg: `${c}.20`,
|
|
53
|
+
hoverBorderColor: `${c}.20`,
|
|
54
|
+
activeBg: `${c}.30`,
|
|
55
|
+
bg: 'transparent',
|
|
56
|
+
borderColor: 'transparent',
|
|
57
|
+
borderWidth: 1,
|
|
58
|
+
color: `${c}.80`,
|
|
59
|
+
focusRing: 2
|
|
60
|
+
};
|
|
61
|
+
// Special cases
|
|
62
|
+
if (c === 'prussian') {
|
|
63
|
+
container.activeBg = 'blue.30';
|
|
64
|
+
container.hoverBg = 'blue.20';
|
|
65
|
+
container.hoverBorderColor = 'blue.20';
|
|
66
|
+
}
|
|
67
|
+
return { container };
|
|
68
|
+
}
|
|
69
|
+
const baseStyle = {};
|
|
70
|
+
const defaultProps = {
|
|
71
|
+
colorScheme: 'prussian',
|
|
72
|
+
size: 'md',
|
|
73
|
+
variant: 'solid'
|
|
74
|
+
};
|
|
75
|
+
const parts = ['container', 'icon', 'text'];
|
|
76
|
+
const sizes = {
|
|
77
|
+
xs: {
|
|
78
|
+
container: {
|
|
79
|
+
fontSize: 'sm',
|
|
80
|
+
h: 24,
|
|
81
|
+
minW: 48,
|
|
82
|
+
spaceX: 4
|
|
83
|
+
},
|
|
84
|
+
icon: {
|
|
85
|
+
size: 'xs'
|
|
86
|
+
},
|
|
87
|
+
text: {}
|
|
88
|
+
},
|
|
89
|
+
sm: {
|
|
90
|
+
container: {
|
|
91
|
+
fontSize: 'sm',
|
|
92
|
+
h: 32,
|
|
93
|
+
minW: 64,
|
|
94
|
+
spaceX: 6
|
|
95
|
+
},
|
|
96
|
+
icon: {
|
|
97
|
+
size: 'sm'
|
|
98
|
+
},
|
|
99
|
+
text: {}
|
|
100
|
+
},
|
|
101
|
+
md: {
|
|
102
|
+
container: {
|
|
103
|
+
fontSize: 'md',
|
|
104
|
+
h: 40,
|
|
105
|
+
minW: 80,
|
|
106
|
+
spaceX: 8
|
|
107
|
+
},
|
|
108
|
+
icon: {
|
|
109
|
+
size: 'md'
|
|
110
|
+
},
|
|
111
|
+
text: {}
|
|
112
|
+
},
|
|
113
|
+
lg: {
|
|
114
|
+
container: {
|
|
115
|
+
fontSize: 'lg',
|
|
116
|
+
h: 48,
|
|
117
|
+
minW: 96,
|
|
118
|
+
spaceX: 10
|
|
119
|
+
},
|
|
120
|
+
icon: {
|
|
121
|
+
size: 'lg'
|
|
122
|
+
},
|
|
123
|
+
text: {}
|
|
124
|
+
}
|
|
125
|
+
};
|
|
126
|
+
const variants = {
|
|
127
|
+
outlined: variantOutlined,
|
|
128
|
+
solid: variantSolid,
|
|
129
|
+
subtle: variantSubtle,
|
|
130
|
+
text: variantText
|
|
131
|
+
};
|
|
132
|
+
exports.default = {
|
|
133
|
+
baseStyle,
|
|
134
|
+
defaultProps,
|
|
135
|
+
parts,
|
|
136
|
+
sizes,
|
|
137
|
+
variants
|
|
138
|
+
};
|