@veracity/vui 0.6.2 → 0.7.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/avatar/avatar.js +58 -0
- package/cjs/avatar/helpers.js +9 -0
- package/cjs/avatar/index.js +24 -0
- package/cjs/avatar/theme.js +88 -0
- package/cjs/box/box.js +45 -0
- package/cjs/box/index.js +24 -0
- package/cjs/box/theme.js +12 -0
- package/cjs/button/button.js +139 -0
- package/cjs/button/buttonIcon.js +17 -0
- package/cjs/button/buttonText.js +17 -0
- package/cjs/button/buttons.js +17 -0
- package/cjs/button/context.d.ts +4 -0
- package/cjs/button/context.js +7 -0
- package/cjs/button/index.js +28 -0
- package/cjs/button/theme.js +138 -0
- package/cjs/buttonGroup/buttonGroup.js +84 -0
- package/cjs/buttonGroup/context.d.ts +4 -0
- package/cjs/buttonGroup/context.js +7 -0
- package/cjs/buttonGroup/helpers.js +12 -0
- package/cjs/buttonGroup/index.js +25 -0
- package/cjs/card/card.js +44 -0
- package/cjs/card/index.js +24 -0
- package/cjs/card/theme.js +12 -0
- package/cjs/checkbox/checkbox.js +118 -0
- package/cjs/checkbox/checkboxGroup.js +60 -0
- package/cjs/checkbox/context.d.ts +4 -0
- package/cjs/checkbox/context.js +7 -0
- package/cjs/checkbox/index.js +27 -0
- package/cjs/checkbox/theme.js +61 -0
- package/cjs/core/index.js +23 -0
- package/cjs/core/links.js +115 -0
- package/cjs/core/media.js +63 -0
- package/cjs/core/styled.js +94 -0
- package/cjs/core/theme.js +82 -0
- package/cjs/core/vui.js +20 -0
- package/cjs/core/vuiProvider/animations.js +85 -0
- package/cjs/core/vuiProvider/fontFaces.js +28 -0
- package/cjs/core/vuiProvider/globalStyle.js +98 -0
- package/cjs/core/vuiProvider/index.js +30 -0
- package/cjs/core/vuiProvider/resetCSS.js +176 -0
- package/cjs/core/vuiProvider/vuiProvider.js +20 -0
- package/cjs/dialog/context.js +7 -0
- package/cjs/dialog/dialog.js +98 -0
- package/cjs/dialog/dialogBody.js +62 -0
- package/cjs/dialog/dialogCancelButton.js +19 -0
- package/cjs/dialog/dialogCloseButton.js +19 -0
- package/cjs/dialog/dialogFooter.js +34 -0
- package/cjs/dialog/dialogHeader.js +42 -0
- package/cjs/dialog/dialogIcon.js +21 -0
- package/cjs/dialog/dialogSubmitButton.js +17 -0
- package/cjs/dialog/dialogTitle.js +19 -0
- package/cjs/dialog/index.js +34 -0
- package/cjs/dialog/theme.js +28 -0
- package/cjs/divider/divider.js +37 -0
- package/cjs/divider/index.js +24 -0
- package/cjs/divider/theme.js +12 -0
- package/cjs/footer/context.js +7 -0
- package/cjs/footer/footer.js +53 -0
- package/cjs/footer/footerColumn.js +28 -0
- package/cjs/footer/footerContent.js +17 -0
- package/cjs/footer/footerHeading.js +17 -0
- package/cjs/footer/footerLink.js +17 -0
- package/cjs/footer/footerRow.js +15 -0
- package/cjs/footer/footerSection.js +34 -0
- package/cjs/footer/footerTrademark.js +38 -0
- package/cjs/footer/helpers.js +45 -0
- package/cjs/footer/index.js +31 -0
- package/cjs/footer/theme.js +14 -0
- package/cjs/grid/grid.js +31 -0
- package/cjs/grid/index.js +24 -0
- package/cjs/grid/theme.js +12 -0
- package/cjs/header/context.js +7 -0
- package/cjs/header/header.js +109 -0
- package/cjs/header/headerAccount.js +78 -0
- package/cjs/header/headerAccount.types.d.ts +35 -0
- package/cjs/header/headerAccountUserInfo.js +35 -0
- package/cjs/header/headerContent.js +17 -0
- package/cjs/header/headerCreateAccount.js +36 -0
- package/cjs/header/headerDivider.js +17 -0
- package/cjs/header/headerLinkItem.js +42 -0
- package/cjs/header/headerLogo.js +35 -0
- package/cjs/header/headerMainLinks.js +33 -0
- package/cjs/header/headerMobileContent.js +20 -0
- package/cjs/header/headerMobileToggle.js +22 -0
- package/cjs/header/headerNotifications.js +48 -0
- package/cjs/header/headerServices.js +45 -0
- package/cjs/header/headerServicesMessage.js +38 -0
- package/cjs/header/headerSignIn.js +31 -0
- package/cjs/header/helpers.js +49 -0
- package/cjs/header/index.js +43 -0
- package/cjs/header/loggedInHeader.js +46 -0
- package/cjs/header/loggedOutHeader.js +46 -0
- package/cjs/header/theme.js +93 -0
- package/cjs/heading/heading.js +39 -0
- package/cjs/heading/headings.js +15 -0
- package/cjs/heading/index.js +25 -0
- package/cjs/heading/theme.js +45 -0
- package/cjs/icon/helpers.js +34 -0
- package/cjs/icon/icon.js +37 -0
- package/cjs/icon/index.js +24 -0
- package/cjs/icon/theme.js +31 -0
- package/cjs/icons/cache.js +37 -0
- package/cjs/icons/consts.js +46 -0
- package/cjs/icons/index.js +24 -0
- package/cjs/image/image.js +33 -0
- package/cjs/image/index.js +24 -0
- package/cjs/image/theme.js +12 -0
- package/cjs/index.js +54 -0
- package/cjs/input/context.d.ts +4 -0
- package/cjs/input/context.js +7 -0
- package/cjs/input/helpers.js +10 -0
- package/cjs/input/index.js +26 -0
- package/cjs/input/input.js +128 -0
- package/cjs/input/inputIcon.js +20 -0
- package/cjs/input/inputInput.js +43 -0
- package/cjs/input/theme.js +76 -0
- package/cjs/link/context.d.ts +4 -0
- package/cjs/link/context.js +7 -0
- package/cjs/link/index.js +26 -0
- package/cjs/link/link.js +80 -0
- package/cjs/link/linkIcon.js +17 -0
- package/cjs/link/linkText.js +17 -0
- package/cjs/link/theme.js +72 -0
- package/cjs/list/context.d.ts +4 -0
- package/cjs/list/context.js +7 -0
- package/cjs/list/index.js +30 -0
- package/cjs/list/list.js +71 -0
- package/cjs/list/listDivider.js +17 -0
- package/cjs/list/listHeading.js +17 -0
- package/cjs/list/listIcon.js +17 -0
- package/cjs/list/listItem.js +104 -0
- package/cjs/list/listText.js +17 -0
- package/cjs/list/theme.js +89 -0
- package/cjs/menu/context.js +7 -0
- package/cjs/menu/index.js +31 -0
- package/cjs/menu/menu.js +57 -0
- package/cjs/menu/menuButton.js +18 -0
- package/cjs/menu/menuItem.js +38 -0
- package/cjs/menu/menuList.js +36 -0
- package/cjs/menu/theme.js +27 -0
- package/cjs/modal/context.js +7 -0
- package/cjs/modal/focusLock.js +51 -0
- package/cjs/modal/index.js +30 -0
- package/cjs/modal/modal.js +106 -0
- package/cjs/modal/modalBackdrop.js +25 -0
- package/cjs/modal/modalContent.js +25 -0
- package/cjs/modal/modalManager.js +31 -0
- package/cjs/modal/theme.js +14 -0
- package/cjs/notification/context.d.ts +4 -0
- package/cjs/notification/context.js +7 -0
- package/cjs/notification/index.js +29 -0
- package/cjs/notification/notification.js +54 -0
- package/cjs/notification/notificationButton.js +18 -0
- package/cjs/notification/notificationIcon.js +22 -0
- package/cjs/notification/notificationText.js +17 -0
- package/cjs/notification/notificationTitle.js +17 -0
- package/cjs/notification/theme.js +42 -0
- package/cjs/p/index.js +24 -0
- package/cjs/p/p.js +37 -0
- package/cjs/p/theme.js +35 -0
- package/cjs/pagination/context.js +7 -0
- package/cjs/pagination/helpers.js +20 -0
- package/cjs/pagination/index.js +35 -0
- package/cjs/pagination/pagination.js +59 -0
- package/cjs/pagination/paginationButton.js +39 -0
- package/cjs/pagination/paginationEllipsis.js +29 -0
- package/cjs/pagination/paginationGoToPage.js +29 -0
- package/cjs/pagination/paginationNavigation.js +61 -0
- package/cjs/pagination/paginationPrevNext.js +37 -0
- package/cjs/pagination/paginationResults.js +30 -0
- package/cjs/pagination/theme.js +14 -0
- package/cjs/pagination/usePagination.js +42 -0
- package/cjs/panel/index.js +24 -0
- package/cjs/panel/panel.js +32 -0
- package/cjs/panel/theme.js +22 -0
- package/cjs/popover/consts.js +37 -0
- package/cjs/popover/context.js +7 -0
- package/cjs/popover/index.js +35 -0
- package/cjs/popover/popover.js +36 -0
- package/cjs/popover/popoverContent.js +37 -0
- package/cjs/popover/popoverStyle.js +22 -0
- package/cjs/popover/popoverTrigger.js +42 -0
- package/cjs/popover/theme.js +14 -0
- package/cjs/popover/usePopover.js +85 -0
- package/cjs/portal/index.js +24 -0
- package/cjs/portal/portal.js +44 -0
- package/cjs/radio/context.d.ts +4 -0
- package/cjs/radio/context.js +7 -0
- package/cjs/radio/index.js +27 -0
- package/cjs/radio/radio.js +123 -0
- package/cjs/radio/radioGroup.js +78 -0
- package/cjs/radio/theme.js +61 -0
- package/cjs/skeleton/index.js +24 -0
- package/cjs/skeleton/skeleton.js +35 -0
- package/cjs/skeleton/theme.js +49 -0
- package/cjs/spinner/consts.d.ts +36 -0
- package/cjs/spinner/consts.js +26 -0
- package/cjs/spinner/index.js +24 -0
- package/cjs/spinner/spinner.js +51 -0
- package/cjs/spinner/theme.js +75 -0
- package/cjs/svg/cache.js +30 -0
- package/cjs/svg/helpers.js +32 -0
- package/cjs/svg/index.js +24 -0
- package/cjs/svg/svg.js +119 -0
- package/cjs/switch/context.d.ts +4 -0
- package/cjs/switch/context.js +7 -0
- package/cjs/switch/index.js +27 -0
- package/cjs/switch/switch.js +92 -0
- package/cjs/switch/switchButton.js +145 -0
- package/cjs/switch/switchLabel.js +17 -0
- package/cjs/switch/theme.js +88 -0
- package/cjs/system/custom.js +32 -0
- package/cjs/system/index.js +31 -0
- package/cjs/system/system.js +7 -0
- package/cjs/t/index.js +24 -0
- package/cjs/t/t.js +39 -0
- package/cjs/t/theme.js +27 -0
- package/cjs/tag/context.d.ts +4 -0
- package/cjs/tag/context.js +7 -0
- package/cjs/tag/index.js +28 -0
- package/cjs/tag/tag.js +113 -0
- package/cjs/tag/tagButton.js +18 -0
- package/cjs/tag/tagIcon.js +17 -0
- package/cjs/tag/tagText.js +17 -0
- package/cjs/tag/theme.js +119 -0
- package/cjs/textarea/helpers.js +10 -0
- package/cjs/textarea/index.js +24 -0
- package/cjs/textarea/textarea.js +122 -0
- package/cjs/textarea/theme.js +33 -0
- package/cjs/theme/components.js +67 -0
- package/cjs/theme/defaultTheme.js +9 -0
- package/cjs/theme/foundations/fonts.js +5 -0
- package/cjs/theme/foundations/index.js +47 -0
- package/cjs/theme/foundations/shadows.js +25 -0
- package/cjs/theme/foundations/transformers.js +17 -0
- package/cjs/theme/index.js +60 -0
- package/cjs/utils/assertion.js +42 -0
- package/cjs/utils/function.js +20 -0
- package/cjs/utils/index.js +23 -0
- package/cjs/utils/number.js +8 -0
- package/cjs/utils/object.js +49 -0
- package/cjs/utils/react.d.ts +39 -0
- package/cjs/utils/react.js +146 -0
- package/cjs/utils/styles.js +31 -0
- package/esm/avatar/avatar.d.ts +5 -0
- package/esm/avatar/avatar.js +41 -0
- package/esm/avatar/avatar.types.d.ts +19 -0
- package/esm/avatar/avatar.types.js +1 -0
- package/esm/avatar/helpers.d.ts +2 -0
- package/esm/avatar/helpers.js +5 -0
- package/esm/avatar/index.d.ts +3 -0
- package/esm/avatar/index.js +3 -0
- package/esm/avatar/theme.d.ts +53 -0
- package/esm/avatar/theme.js +86 -0
- package/esm/box/box.d.ts +5 -0
- package/esm/box/box.js +28 -0
- package/esm/box/box.types.d.ts +26 -0
- package/esm/box/box.types.js +1 -0
- package/esm/box/index.d.ts +3 -0
- package/esm/box/index.js +3 -0
- package/esm/box/theme.d.ts +7 -0
- package/esm/box/theme.js +10 -0
- package/esm/button/button.d.ts +29 -0
- package/esm/button/button.js +99 -0
- package/esm/button/button.types.d.ts +38 -0
- package/esm/button/button.types.js +1 -0
- package/esm/button/buttonIcon.d.ts +4 -0
- package/esm/button/buttonIcon.js +11 -0
- package/esm/button/buttonText.d.ts +4 -0
- package/esm/button/buttonText.js +11 -0
- package/esm/button/buttons.d.ts +9 -0
- package/esm/button/buttons.js +11 -0
- package/esm/button/consts.d.ts +2 -0
- package/esm/button/consts.js +24 -0
- package/esm/button/context.d.ts +4 -0
- package/esm/button/context.js +3 -0
- package/esm/button/index.d.ts +7 -0
- package/esm/button/index.js +7 -0
- package/esm/button/theme.d.ts +113 -0
- package/esm/button/theme.js +140 -0
- package/esm/buttonGroup/buttonGroup.d.ts +10 -0
- package/esm/buttonGroup/buttonGroup.js +47 -0
- package/esm/buttonGroup/buttonGroup.types.d.ts +8 -0
- package/esm/buttonGroup/buttonGroup.types.js +1 -0
- package/esm/buttonGroup/context.d.ts +4 -0
- package/esm/buttonGroup/context.js +3 -0
- package/esm/buttonGroup/helpers.d.ts +3 -0
- package/esm/buttonGroup/helpers.js +8 -0
- package/esm/buttonGroup/index.d.ts +4 -0
- package/esm/buttonGroup/index.js +4 -0
- package/esm/card/card.d.ts +7 -0
- package/esm/card/card.js +27 -0
- package/esm/card/card.types.d.ts +6 -0
- package/esm/card/card.types.js +1 -0
- package/esm/card/index.d.ts +3 -0
- package/esm/card/index.js +3 -0
- package/esm/card/theme.d.ts +7 -0
- package/esm/card/theme.js +10 -0
- package/esm/checkbox/checkbox.d.ts +8 -0
- package/esm/checkbox/checkbox.js +79 -0
- package/esm/checkbox/checkbox.types.d.ts +43 -0
- package/esm/checkbox/checkbox.types.js +1 -0
- package/esm/checkbox/checkboxGroup.d.ts +8 -0
- package/esm/checkbox/checkboxGroup.js +23 -0
- package/esm/checkbox/checkboxGroup.types.d.ts +19 -0
- package/esm/checkbox/checkboxGroup.types.js +1 -0
- package/esm/checkbox/context.d.ts +4 -0
- package/esm/checkbox/context.js +3 -0
- package/esm/checkbox/index.d.ts +6 -0
- package/esm/checkbox/index.js +6 -0
- package/esm/checkbox/theme.d.ts +49 -0
- package/esm/checkbox/theme.js +59 -0
- package/esm/core/consts.d.ts +8 -0
- package/esm/core/consts.js +8 -0
- package/esm/core/index.d.ts +7 -0
- package/esm/core/index.js +7 -0
- package/esm/core/links.d.ts +21 -0
- package/esm/core/links.js +74 -0
- package/esm/core/media.d.ts +38 -0
- package/esm/core/media.js +47 -0
- package/esm/core/styled.d.ts +195 -0
- package/esm/core/styled.js +68 -0
- package/esm/core/theme.d.ts +41 -0
- package/esm/core/theme.js +57 -0
- package/esm/core/vui.d.ts +31 -0
- package/esm/core/vui.js +13 -0
- package/esm/core/vuiProvider/animations.d.ts +9 -0
- package/esm/core/vuiProvider/animations.js +82 -0
- package/esm/core/vuiProvider/fontFaces.d.ts +2 -0
- package/esm/core/vuiProvider/fontFaces.js +26 -0
- package/esm/core/vuiProvider/globalStyle.d.ts +12 -0
- package/esm/core/vuiProvider/globalStyle.js +82 -0
- package/esm/core/vuiProvider/index.d.ts +5 -0
- package/esm/core/vuiProvider/index.js +5 -0
- package/esm/core/vuiProvider/resetCSS.d.ts +3 -0
- package/esm/core/vuiProvider/resetCSS.js +174 -0
- package/esm/core/vuiProvider/vuiProvider.d.ts +13 -0
- package/esm/core/vuiProvider/vuiProvider.js +15 -0
- package/esm/dialog/consts.d.ts +3 -0
- package/esm/dialog/consts.js +27 -0
- package/esm/dialog/context.d.ts +4 -0
- package/esm/dialog/context.js +3 -0
- package/esm/dialog/dialog.d.ts +26 -0
- package/esm/dialog/dialog.js +61 -0
- package/esm/dialog/dialog.types.d.ts +47 -0
- package/esm/dialog/dialog.types.js +1 -0
- package/esm/dialog/dialogBody.d.ts +9 -0
- package/esm/dialog/dialogBody.js +34 -0
- package/esm/dialog/dialogCancelButton.d.ts +4 -0
- package/esm/dialog/dialogCancelButton.js +12 -0
- package/esm/dialog/dialogCloseButton.d.ts +4 -0
- package/esm/dialog/dialogCloseButton.js +12 -0
- package/esm/dialog/dialogFooter.d.ts +4 -0
- package/esm/dialog/dialogFooter.js +17 -0
- package/esm/dialog/dialogHeader.d.ts +4 -0
- package/esm/dialog/dialogHeader.js +24 -0
- package/esm/dialog/dialogIcon.d.ts +4 -0
- package/esm/dialog/dialogIcon.js +14 -0
- package/esm/dialog/dialogSubmitButton.d.ts +4 -0
- package/esm/dialog/dialogSubmitButton.js +11 -0
- package/esm/dialog/dialogTitle.d.ts +4 -0
- package/esm/dialog/dialogTitle.js +12 -0
- package/esm/dialog/index.d.ts +13 -0
- package/esm/dialog/index.js +13 -0
- package/esm/dialog/theme.d.ts +22 -0
- package/esm/dialog/theme.js +26 -0
- package/esm/divider/divider.d.ts +5 -0
- package/esm/divider/divider.js +20 -0
- package/esm/divider/divider.types.d.ts +10 -0
- package/esm/divider/divider.types.js +1 -0
- package/esm/divider/index.d.ts +3 -0
- package/esm/divider/index.js +3 -0
- package/esm/divider/theme.d.ts +7 -0
- package/esm/divider/theme.js +10 -0
- package/esm/footer/context.d.ts +4 -0
- package/esm/footer/context.js +3 -0
- package/esm/footer/footer.d.ts +19 -0
- package/esm/footer/footer.js +38 -0
- package/esm/footer/footer.types.d.ts +38 -0
- package/esm/footer/footer.types.js +1 -0
- package/esm/footer/footerColumn.d.ts +4 -0
- package/esm/footer/footerColumn.js +12 -0
- package/esm/footer/footerContent.d.ts +3 -0
- package/esm/footer/footerContent.js +11 -0
- package/esm/footer/footerHeading.d.ts +4 -0
- package/esm/footer/footerHeading.js +11 -0
- package/esm/footer/footerLink.d.ts +4 -0
- package/esm/footer/footerLink.js +11 -0
- package/esm/footer/footerRow.d.ts +4 -0
- package/esm/footer/footerRow.js +10 -0
- package/esm/footer/footerSection.d.ts +4 -0
- package/esm/footer/footerSection.js +19 -0
- package/esm/footer/footerTrademark.d.ts +4 -0
- package/esm/footer/footerTrademark.js +21 -0
- package/esm/footer/helpers.d.ts +7 -0
- package/esm/footer/helpers.js +29 -0
- package/esm/footer/index.d.ts +10 -0
- package/esm/footer/index.js +10 -0
- package/esm/footer/theme.d.ts +8 -0
- package/esm/footer/theme.js +12 -0
- package/esm/grid/grid.d.ts +5 -0
- package/esm/grid/grid.js +14 -0
- package/esm/grid/grid.types.d.ts +3 -0
- package/esm/grid/grid.types.js +1 -0
- package/esm/grid/index.d.ts +3 -0
- package/esm/grid/index.js +3 -0
- package/esm/grid/theme.d.ts +7 -0
- package/esm/grid/theme.js +10 -0
- package/esm/header/context.d.ts +4 -0
- package/esm/header/context.js +3 -0
- package/esm/header/header.d.ts +35 -0
- package/esm/header/header.js +69 -0
- package/esm/header/header.types.d.ts +99 -0
- package/esm/header/header.types.js +1 -0
- package/esm/header/headerAccount.d.ts +8 -0
- package/esm/header/headerAccount.js +34 -0
- package/esm/header/headerAccount.types.d.ts +35 -0
- package/esm/header/headerAccount.types.js +1 -0
- package/esm/header/headerAccountUserInfo.d.ts +4 -0
- package/esm/header/headerAccountUserInfo.js +18 -0
- package/esm/header/headerContent.d.ts +3 -0
- package/esm/header/headerContent.js +11 -0
- package/esm/header/headerCreateAccount.d.ts +4 -0
- package/esm/header/headerCreateAccount.js +18 -0
- package/esm/header/headerDivider.d.ts +4 -0
- package/esm/header/headerDivider.js +11 -0
- package/esm/header/headerLinkItem.d.ts +4 -0
- package/esm/header/headerLinkItem.js +33 -0
- package/esm/header/headerLogo.d.ts +4 -0
- package/esm/header/headerLogo.js +17 -0
- package/esm/header/headerMainLinks.d.ts +4 -0
- package/esm/header/headerMainLinks.js +15 -0
- package/esm/header/headerMobileContent.d.ts +4 -0
- package/esm/header/headerMobileContent.js +13 -0
- package/esm/header/headerMobileToggle.d.ts +4 -0
- package/esm/header/headerMobileToggle.js +15 -0
- package/esm/header/headerNotifications.d.ts +4 -0
- package/esm/header/headerNotifications.js +30 -0
- package/esm/header/headerServices.d.ts +8 -0
- package/esm/header/headerServices.js +27 -0
- package/esm/header/headerServicesMessage.d.ts +4 -0
- package/esm/header/headerServicesMessage.js +20 -0
- package/esm/header/headerSignIn.d.ts +4 -0
- package/esm/header/headerSignIn.js +13 -0
- package/esm/header/helpers.d.ts +8 -0
- package/esm/header/helpers.js +32 -0
- package/esm/header/index.d.ts +22 -0
- package/esm/header/index.js +22 -0
- package/esm/header/loggedInHeader.d.ts +4 -0
- package/esm/header/loggedInHeader.js +29 -0
- package/esm/header/loggedOutHeader.d.ts +4 -0
- package/esm/header/loggedOutHeader.js +29 -0
- package/esm/header/theme.d.ts +87 -0
- package/esm/header/theme.js +91 -0
- package/esm/heading/heading.d.ts +5 -0
- package/esm/heading/heading.js +22 -0
- package/esm/heading/heading.types.d.ts +15 -0
- package/esm/heading/heading.types.js +1 -0
- package/esm/heading/headings.d.ts +7 -0
- package/esm/heading/headings.js +9 -0
- package/esm/heading/index.d.ts +4 -0
- package/esm/heading/index.js +4 -0
- package/esm/heading/theme.d.ts +40 -0
- package/esm/heading/theme.js +43 -0
- package/esm/icon/helpers.d.ts +7 -0
- package/esm/icon/helpers.js +30 -0
- package/esm/icon/icon.d.ts +4 -0
- package/esm/icon/icon.js +20 -0
- package/esm/icon/icon.types.d.ts +24 -0
- package/esm/icon/icon.types.js +1 -0
- package/esm/icon/index.d.ts +3 -0
- package/esm/icon/index.js +3 -0
- package/esm/icon/theme.d.ts +26 -0
- package/esm/icon/theme.js +29 -0
- package/esm/icons/baseIcons/cub/cubPowerBi.d.ts +3 -0
- package/esm/icons/baseIcons/cub/cubPowerBi.js +5 -0
- package/esm/icons/baseIcons/cub/cubVeracity.d.ts +3 -0
- package/esm/icons/baseIcons/cub/cubVeracity.js +5 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxIndeterminate.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxIndeterminate.js +5 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxSelected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxSelected.js +5 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxUnselected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiCheckboxUnselected.js +6 -0
- package/esm/icons/baseIcons/cui/cuiRadioSelected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiRadioSelected.js +6 -0
- package/esm/icons/baseIcons/cui/cuiRadioUnselected.d.ts +3 -0
- package/esm/icons/baseIcons/cui/cuiRadioUnselected.js +6 -0
- package/esm/icons/baseIcons/cul/culApiProduct.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culApiProduct.js +5 -0
- package/esm/icons/baseIcons/cul/culApiService.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culApiService.js +5 -0
- package/esm/icons/baseIcons/cul/culCircleChart.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culCircleChart.js +5 -0
- package/esm/icons/baseIcons/cul/culCircleChartAlt.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culCircleChartAlt.js +5 -0
- package/esm/icons/baseIcons/cul/culCovid.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culCovid.js +5 -0
- package/esm/icons/baseIcons/cul/culDeepSearch.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culDeepSearch.js +5 -0
- package/esm/icons/baseIcons/cul/culDotsMenu.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culDotsMenu.js +5 -0
- package/esm/icons/baseIcons/cul/culGlobePlus.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culGlobePlus.js +5 -0
- package/esm/icons/baseIcons/cul/culListDense.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culListDense.js +5 -0
- package/esm/icons/baseIcons/cul/culMapMarkerStar.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culMapMarkerStar.js +5 -0
- package/esm/icons/baseIcons/cul/culNumber1.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culNumber1.js +5 -0
- package/esm/icons/baseIcons/cul/culPlusThin.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culPlusThin.js +5 -0
- package/esm/icons/baseIcons/cul/culScreenshot.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culScreenshot.js +5 -0
- package/esm/icons/baseIcons/cul/culScreenshotAlt.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culScreenshotAlt.js +5 -0
- package/esm/icons/baseIcons/cul/culShortcut.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culShortcut.js +5 -0
- package/esm/icons/baseIcons/cul/culTarget.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culTarget.js +5 -0
- package/esm/icons/baseIcons/cul/culTimesThin.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culTimesThin.js +5 -0
- package/esm/icons/baseIcons/cul/culTransformer.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culTransformer.js +5 -0
- package/esm/icons/baseIcons/cul/culUserTransfer.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culUserTransfer.js +5 -0
- package/esm/icons/baseIcons/cul/culVeracityService.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culVeracityService.js +5 -0
- package/esm/icons/baseIcons/cul/culVessel.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culVessel.js +5 -0
- package/esm/icons/baseIcons/cul/culVesselGroup.d.ts +3 -0
- package/esm/icons/baseIcons/cul/culVesselGroup.js +5 -0
- package/esm/icons/baseIcons/cus/cusDotFull.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusDotFull.js +5 -0
- package/esm/icons/baseIcons/cus/cusDotFullAlt.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusDotFullAlt.js +5 -0
- package/esm/icons/baseIcons/cus/cusDotsMenu.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusDotsMenu.js +5 -0
- package/esm/icons/baseIcons/cus/cusTransformer.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusTransformer.js +5 -0
- package/esm/icons/baseIcons/cus/cusVessel.d.ts +3 -0
- package/esm/icons/baseIcons/cus/cusVessel.js +5 -0
- package/esm/icons/baseIcons/fab/fabApplePay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabApplePay.js +5 -0
- package/esm/icons/baseIcons/fab/fabBluetooth.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabBluetooth.js +5 -0
- package/esm/icons/baseIcons/fab/fabBtc.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabBtc.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcAmazonPay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcAmazonPay.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcAmex.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcAmex.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcApplePay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcApplePay.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcDinersClub.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcDinersClub.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcMastercard.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcMastercard.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcPaypal.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcPaypal.js +5 -0
- package/esm/icons/baseIcons/fab/fabCcVisa.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabCcVisa.js +5 -0
- package/esm/icons/baseIcons/fab/fabDhl.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabDhl.js +5 -0
- package/esm/icons/baseIcons/fab/fabEbay.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabEbay.js +5 -0
- package/esm/icons/baseIcons/fab/fabFacebook.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabFacebook.js +5 -0
- package/esm/icons/baseIcons/fab/fabFedex.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabFedex.js +5 -0
- package/esm/icons/baseIcons/fab/fabFirefox.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabFirefox.js +5 -0
- package/esm/icons/baseIcons/fab/fabGoogle.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabGoogle.js +5 -0
- package/esm/icons/baseIcons/fab/fabGoogleDrive.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabGoogleDrive.js +5 -0
- package/esm/icons/baseIcons/fab/fabLinkedinIn.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabLinkedinIn.js +5 -0
- package/esm/icons/baseIcons/fab/fabMedium.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabMedium.js +5 -0
- package/esm/icons/baseIcons/fab/fabOsi.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabOsi.js +5 -0
- package/esm/icons/baseIcons/fab/fabSlack.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabSlack.js +5 -0
- package/esm/icons/baseIcons/fab/fabTwitter.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabTwitter.js +5 -0
- package/esm/icons/baseIcons/fab/fabUps.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabUps.js +5 -0
- package/esm/icons/baseIcons/fab/fabYoutube.d.ts +3 -0
- package/esm/icons/baseIcons/fab/fabYoutube.js +5 -0
- package/esm/icons/baseIcons/fad/fadSpinnerThird.d.ts +3 -0
- package/esm/icons/baseIcons/fad/fadSpinnerThird.js +5 -0
- package/esm/icons/baseIcons/fal/falAddressBook.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAddressBook.js +5 -0
- package/esm/icons/baseIcons/fal/falAddressCard.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAddressCard.js +5 -0
- package/esm/icons/baseIcons/fal/falAnalytics.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAnalytics.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDoubleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falAngleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAngleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltDown.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowAltUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowAltUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowCircleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowCircleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowDown.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromBottom.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromBottom.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowFromTop.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowFromTop.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToBottom.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToBottom.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToRight.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowToTop.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowToTop.js +5 -0
- package/esm/icons/baseIcons/fal/falArrowUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrowUp.js +5 -0
- package/esm/icons/baseIcons/fal/falArrows.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falArrows.js +5 -0
- package/esm/icons/baseIcons/fal/falAward.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falAward.js +5 -0
- package/esm/icons/baseIcons/fal/falBan.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBan.js +5 -0
- package/esm/icons/baseIcons/fal/falBars.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBars.js +5 -0
- package/esm/icons/baseIcons/fal/falBell.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBell.js +5 -0
- package/esm/icons/baseIcons/fal/falBookOpen.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBookOpen.js +5 -0
- package/esm/icons/baseIcons/fal/falBroadcastTower.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBroadcastTower.js +5 -0
- package/esm/icons/baseIcons/fal/falBroom.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBroom.js +5 -0
- package/esm/icons/baseIcons/fal/falBuilding.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBuilding.js +5 -0
- package/esm/icons/baseIcons/fal/falBullseye.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falBullseye.js +5 -0
- package/esm/icons/baseIcons/fal/falCalendar.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCalendar.js +5 -0
- package/esm/icons/baseIcons/fal/falCalendarAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCalendarAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falCamera.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCamera.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretDown.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretRight.js +5 -0
- package/esm/icons/baseIcons/fal/falCaretUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCaretUp.js +5 -0
- package/esm/icons/baseIcons/fal/falCauldron.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCauldron.js +5 -0
- package/esm/icons/baseIcons/fal/falChartArea.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartArea.js +5 -0
- package/esm/icons/baseIcons/fal/falChartBar.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartBar.js +5 -0
- package/esm/icons/baseIcons/fal/falChartLine.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartLine.js +5 -0
- package/esm/icons/baseIcons/fal/falChartLineDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartLineDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChartNetwork.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartNetwork.js +5 -0
- package/esm/icons/baseIcons/fal/falChartPie.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartPie.js +5 -0
- package/esm/icons/baseIcons/fal/falChartPieAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartPieAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falChartScatter.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChartScatter.js +5 -0
- package/esm/icons/baseIcons/fal/falCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falCheckCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCheckCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falCheckSquare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCheckSquare.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronCircleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronCircleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleRight.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDoubleUp.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronDown.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronRight.js +5 -0
- package/esm/icons/baseIcons/fal/falChevronUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falChevronUp.js +5 -0
- package/esm/icons/baseIcons/fal/falCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falCloud.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloud.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudShowersHeavy.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudShowersHeavy.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudSnow.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudSnow.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudSun.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudSun.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudSunRain.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudSunRain.js +5 -0
- package/esm/icons/baseIcons/fal/falCloudUpload.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCloudUpload.js +5 -0
- package/esm/icons/baseIcons/fal/falCode.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCode.js +5 -0
- package/esm/icons/baseIcons/fal/falCog.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCog.js +5 -0
- package/esm/icons/baseIcons/fal/falCogs.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCogs.js +5 -0
- package/esm/icons/baseIcons/fal/falComment.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falComment.js +5 -0
- package/esm/icons/baseIcons/fal/falCommentAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCommentAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falCompressAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCompressAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falCopy.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCopy.js +5 -0
- package/esm/icons/baseIcons/fal/falCreditCard.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falCreditCard.js +5 -0
- package/esm/icons/baseIcons/fal/falDatabase.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falDatabase.js +5 -0
- package/esm/icons/baseIcons/fal/falDotCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falDotCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falDownload.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falDownload.js +5 -0
- package/esm/icons/baseIcons/fal/falEdit.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEdit.js +5 -0
- package/esm/icons/baseIcons/fal/falEllipsisH.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEllipsisH.js +5 -0
- package/esm/icons/baseIcons/fal/falEllipsisV.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEllipsisV.js +5 -0
- package/esm/icons/baseIcons/fal/falEnvelope.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEnvelope.js +5 -0
- package/esm/icons/baseIcons/fal/falExchange.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExchange.js +5 -0
- package/esm/icons/baseIcons/fal/falExclamationCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExclamationCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falExclamationTriangle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExclamationTriangle.js +5 -0
- package/esm/icons/baseIcons/fal/falExpandAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExpandAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falExternalLink.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falExternalLink.js +5 -0
- package/esm/icons/baseIcons/fal/falEye.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEye.js +5 -0
- package/esm/icons/baseIcons/fal/falEyeSlash.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falEyeSlash.js +5 -0
- package/esm/icons/baseIcons/fal/falFile.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFile.js +5 -0
- package/esm/icons/baseIcons/fal/falFileAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falFileArchive.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileArchive.js +5 -0
- package/esm/icons/baseIcons/fal/falFileAudio.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileAudio.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCertificate.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCertificate.js +5 -0
- package/esm/icons/baseIcons/fal/falFileChartLine.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileChartLine.js +5 -0
- package/esm/icons/baseIcons/fal/falFileChartPie.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileChartPie.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCode.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCode.js +5 -0
- package/esm/icons/baseIcons/fal/falFileCsv.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileCsv.js +5 -0
- package/esm/icons/baseIcons/fal/falFileEdit.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileEdit.js +5 -0
- package/esm/icons/baseIcons/fal/falFileExcel.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileExcel.js +5 -0
- package/esm/icons/baseIcons/fal/falFileImage.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileImage.js +5 -0
- package/esm/icons/baseIcons/fal/falFileInvoiceDollar.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileInvoiceDollar.js +5 -0
- package/esm/icons/baseIcons/fal/falFilePdf.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilePdf.js +5 -0
- package/esm/icons/baseIcons/fal/falFilePlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilePlus.js +5 -0
- package/esm/icons/baseIcons/fal/falFilePowerpoint.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilePowerpoint.js +5 -0
- package/esm/icons/baseIcons/fal/falFileSpreadsheet.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileSpreadsheet.js +5 -0
- package/esm/icons/baseIcons/fal/falFileVideo.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileVideo.js +5 -0
- package/esm/icons/baseIcons/fal/falFileWord.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFileWord.js +5 -0
- package/esm/icons/baseIcons/fal/falFilter.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFilter.js +5 -0
- package/esm/icons/baseIcons/fal/falFlag.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFlag.js +5 -0
- package/esm/icons/baseIcons/fal/falFolder.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolder.js +5 -0
- package/esm/icons/baseIcons/fal/falFolderOpen.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolderOpen.js +5 -0
- package/esm/icons/baseIcons/fal/falFolderPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolderPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falFolders.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falFolders.js +5 -0
- package/esm/icons/baseIcons/fal/falGlassesAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falGlassesAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falGlobe.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falGlobe.js +5 -0
- package/esm/icons/baseIcons/fal/falHome.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falHome.js +5 -0
- package/esm/icons/baseIcons/fal/falHourglass.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falHourglass.js +5 -0
- package/esm/icons/baseIcons/fal/falImage.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falImage.js +5 -0
- package/esm/icons/baseIcons/fal/falInfoCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falInfoCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falKey.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falKey.js +5 -0
- package/esm/icons/baseIcons/fal/falLayerGroup.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLayerGroup.js +5 -0
- package/esm/icons/baseIcons/fal/falLayerPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLayerPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falLink.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLink.js +5 -0
- package/esm/icons/baseIcons/fal/falList.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falList.js +5 -0
- package/esm/icons/baseIcons/fal/falLockAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLockAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowDown.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowDown.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowLeft.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowRight.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowRight.js +5 -0
- package/esm/icons/baseIcons/fal/falLongArrowUp.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falLongArrowUp.js +5 -0
- package/esm/icons/baseIcons/fal/falMap.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMap.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarked.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarked.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkedAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkedAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarker.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarker.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAltSlash.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerAltSlash.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falMapMarkerExclamation.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMapMarkerExclamation.js +5 -0
- package/esm/icons/baseIcons/fal/falMinus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falMinus.js +5 -0
- package/esm/icons/baseIcons/fal/falPause.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPause.js +5 -0
- package/esm/icons/baseIcons/fal/falPauseCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPauseCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falPen.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPen.js +5 -0
- package/esm/icons/baseIcons/fal/falPlay.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlay.js +5 -0
- package/esm/icons/baseIcons/fal/falPlayCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlayCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falPlug.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlug.js +5 -0
- package/esm/icons/baseIcons/fal/falPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falPlusCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlusCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falPlusSquare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPlusSquare.js +5 -0
- package/esm/icons/baseIcons/fal/falPrint.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPrint.js +5 -0
- package/esm/icons/baseIcons/fal/falPuzzlePiece.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falPuzzlePiece.js +5 -0
- package/esm/icons/baseIcons/fal/falQuestionCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falQuestionCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falReceipt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falReceipt.js +5 -0
- package/esm/icons/baseIcons/fal/falRedo.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falRedo.js +5 -0
- package/esm/icons/baseIcons/fal/falSave.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSave.js +5 -0
- package/esm/icons/baseIcons/fal/falSearch.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSearch.js +5 -0
- package/esm/icons/baseIcons/fal/falSearchMinus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSearchMinus.js +5 -0
- package/esm/icons/baseIcons/fal/falSearchPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSearchPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falServer.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falServer.js +5 -0
- package/esm/icons/baseIcons/fal/falShare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShare.js +5 -0
- package/esm/icons/baseIcons/fal/falShareAll.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShareAll.js +5 -0
- package/esm/icons/baseIcons/fal/falShareAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShareAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falShieldAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShieldAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falShieldCheck.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShieldCheck.js +5 -0
- package/esm/icons/baseIcons/fal/falShip.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShip.js +5 -0
- package/esm/icons/baseIcons/fal/falShoppingBasket.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falShoppingBasket.js +5 -0
- package/esm/icons/baseIcons/fal/falSignIn.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignIn.js +5 -0
- package/esm/icons/baseIcons/fal/falSignInAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignInAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falSignOut.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignOut.js +5 -0
- package/esm/icons/baseIcons/fal/falSignOutAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSignOutAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falSlidersV.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSlidersV.js +5 -0
- package/esm/icons/baseIcons/fal/falSnowBlowing.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSnowBlowing.js +5 -0
- package/esm/icons/baseIcons/fal/falSnowflake.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSnowflake.js +5 -0
- package/esm/icons/baseIcons/fal/falSolarPanel.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSolarPanel.js +5 -0
- package/esm/icons/baseIcons/fal/falSort.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSort.js +5 -0
- package/esm/icons/baseIcons/fal/falSpinner.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSpinner.js +5 -0
- package/esm/icons/baseIcons/fal/falSquare.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSquare.js +5 -0
- package/esm/icons/baseIcons/fal/falStepForward.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStepForward.js +5 -0
- package/esm/icons/baseIcons/fal/falStop.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStop.js +5 -0
- package/esm/icons/baseIcons/fal/falStopCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStopCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falStopwatch.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falStopwatch.js +5 -0
- package/esm/icons/baseIcons/fal/falSuitcase.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSuitcase.js +5 -0
- package/esm/icons/baseIcons/fal/falSun.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSun.js +5 -0
- package/esm/icons/baseIcons/fal/falSync.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falSync.js +5 -0
- package/esm/icons/baseIcons/fal/falTachometer.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTachometer.js +5 -0
- package/esm/icons/baseIcons/fal/falTemperatureHigh.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTemperatureHigh.js +5 -0
- package/esm/icons/baseIcons/fal/falTh.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTh.js +5 -0
- package/esm/icons/baseIcons/fal/falThLarge.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falThLarge.js +5 -0
- package/esm/icons/baseIcons/fal/falThList.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falThList.js +5 -0
- package/esm/icons/baseIcons/fal/falTimes.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTimes.js +5 -0
- package/esm/icons/baseIcons/fal/falTimesCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTimesCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falToggleOff.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falToggleOff.js +5 -0
- package/esm/icons/baseIcons/fal/falToggleOn.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falToggleOn.js +5 -0
- package/esm/icons/baseIcons/fal/falTrashAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falTrashAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falUnlockAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUnlockAlt.js +5 -0
- package/esm/icons/baseIcons/fal/falUser.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUser.js +5 -0
- package/esm/icons/baseIcons/fal/falUserChart.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserChart.js +5 -0
- package/esm/icons/baseIcons/fal/falUserCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserCircle.js +5 -0
- package/esm/icons/baseIcons/fal/falUserCog.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserCog.js +5 -0
- package/esm/icons/baseIcons/fal/falUserEdit.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserEdit.js +5 -0
- package/esm/icons/baseIcons/fal/falUserFriends.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserFriends.js +5 -0
- package/esm/icons/baseIcons/fal/falUserPlus.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserPlus.js +5 -0
- package/esm/icons/baseIcons/fal/falUserShield.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserShield.js +5 -0
- package/esm/icons/baseIcons/fal/falUserTimes.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUserTimes.js +5 -0
- package/esm/icons/baseIcons/fal/falUsers.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUsers.js +5 -0
- package/esm/icons/baseIcons/fal/falUsersClass.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falUsersClass.js +5 -0
- package/esm/icons/baseIcons/fal/falWater.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWater.js +5 -0
- package/esm/icons/baseIcons/fal/falWind.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWind.js +5 -0
- package/esm/icons/baseIcons/fal/falWindTurbine.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWindTurbine.js +5 -0
- package/esm/icons/baseIcons/fal/falWrench.d.ts +3 -0
- package/esm/icons/baseIcons/fal/falWrench.js +5 -0
- package/esm/icons/baseIcons/fas/fasCalendarAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCalendarAlt.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretDown.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretDown.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretLeft.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretRight.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretRight.js +5 -0
- package/esm/icons/baseIcons/fas/fasCaretUp.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCaretUp.js +5 -0
- package/esm/icons/baseIcons/fas/fasCheckCircle.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasCheckCircle.js +5 -0
- package/esm/icons/baseIcons/fas/fasDiamond.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasDiamond.js +5 -0
- package/esm/icons/baseIcons/fas/fasFolder.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasFolder.js +5 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerAlt.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerAlt.js +5 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerExclamation.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasMapMarkerExclamation.js +5 -0
- package/esm/icons/baseIcons/fas/fasQuoteLeft.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasQuoteLeft.js +5 -0
- package/esm/icons/baseIcons/fas/fasQuoteRight.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasQuoteRight.js +5 -0
- package/esm/icons/baseIcons/fas/fasSolarPanel.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasSolarPanel.js +5 -0
- package/esm/icons/baseIcons/fas/fasSort.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasSort.js +5 -0
- package/esm/icons/baseIcons/fas/fasStar.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasStar.js +5 -0
- package/esm/icons/baseIcons/fas/fasWindTurbine.d.ts +3 -0
- package/esm/icons/baseIcons/fas/fasWindTurbine.js +5 -0
- package/esm/icons/baseIcons/icons.d.ts +297 -0
- package/esm/icons/baseIcons/icons.js +297 -0
- package/esm/icons/baseIcons/types.d.ts +1 -0
- package/esm/icons/baseIcons/types.js +1 -0
- package/esm/icons/cache.d.ts +15 -0
- package/esm/icons/cache.js +35 -0
- package/esm/icons/consts.d.ts +6 -0
- package/esm/icons/consts.js +40 -0
- package/esm/icons/index.d.ts +3 -0
- package/esm/icons/index.js +3 -0
- package/esm/icons/types.d.ts +28 -0
- package/esm/icons/types.js +1 -0
- package/esm/image/image.d.ts +5 -0
- package/esm/image/image.js +16 -0
- package/esm/image/image.types.d.ts +6 -0
- package/esm/image/image.types.js +1 -0
- package/esm/image/index.d.ts +3 -0
- package/esm/image/index.js +3 -0
- package/esm/image/theme.d.ts +7 -0
- package/esm/image/theme.js +10 -0
- package/esm/index.d.ts +38 -0
- package/esm/index.js +38 -0
- package/esm/input/consts.d.ts +2 -0
- package/esm/input/consts.js +24 -0
- package/esm/input/context.d.ts +4 -0
- package/esm/input/context.js +3 -0
- package/esm/input/helpers.d.ts +3 -0
- package/esm/input/helpers.js +5 -0
- package/esm/input/index.d.ts +5 -0
- package/esm/input/index.js +5 -0
- package/esm/input/input.d.ts +15 -0
- package/esm/input/input.js +88 -0
- package/esm/input/input.types.d.ts +74 -0
- package/esm/input/input.types.js +1 -0
- package/esm/input/inputIcon.d.ts +4 -0
- package/esm/input/inputIcon.js +14 -0
- package/esm/input/inputInput.d.ts +5 -0
- package/esm/input/inputInput.js +37 -0
- package/esm/input/theme.d.ts +65 -0
- package/esm/input/theme.js +74 -0
- package/esm/link/context.d.ts +4 -0
- package/esm/link/context.js +3 -0
- package/esm/link/index.d.ts +5 -0
- package/esm/link/index.js +5 -0
- package/esm/link/link.d.ts +14 -0
- package/esm/link/link.js +41 -0
- package/esm/link/link.types.d.ts +24 -0
- package/esm/link/link.types.js +1 -0
- package/esm/link/linkIcon.d.ts +4 -0
- package/esm/link/linkIcon.js +11 -0
- package/esm/link/linkText.d.ts +4 -0
- package/esm/link/linkText.js +11 -0
- package/esm/link/theme.d.ts +58 -0
- package/esm/link/theme.js +70 -0
- package/esm/list/context.d.ts +4 -0
- package/esm/list/context.js +3 -0
- package/esm/list/index.d.ts +9 -0
- package/esm/list/index.js +9 -0
- package/esm/list/list.d.ts +17 -0
- package/esm/list/list.js +30 -0
- package/esm/list/list.types.d.ts +47 -0
- package/esm/list/list.types.js +1 -0
- package/esm/list/listDivider.d.ts +4 -0
- package/esm/list/listDivider.js +11 -0
- package/esm/list/listHeading.d.ts +4 -0
- package/esm/list/listHeading.js +11 -0
- package/esm/list/listIcon.d.ts +4 -0
- package/esm/list/listIcon.js +11 -0
- package/esm/list/listItem.d.ts +8 -0
- package/esm/list/listItem.js +65 -0
- package/esm/list/listText.d.ts +4 -0
- package/esm/list/listText.js +11 -0
- package/esm/list/theme.d.ts +77 -0
- package/esm/list/theme.js +87 -0
- package/esm/menu/context.d.ts +4 -0
- package/esm/menu/context.js +3 -0
- package/esm/menu/index.d.ts +6 -0
- package/esm/menu/index.js +6 -0
- package/esm/menu/menu.d.ts +16 -0
- package/esm/menu/menu.js +17 -0
- package/esm/menu/menu.types.d.ts +14 -0
- package/esm/menu/menu.types.js +1 -0
- package/esm/menu/menuButton.d.ts +4 -0
- package/esm/menu/menuButton.js +12 -0
- package/esm/menu/menuItem.d.ts +4 -0
- package/esm/menu/menuItem.js +20 -0
- package/esm/menu/menuList.d.ts +12 -0
- package/esm/menu/menuList.js +19 -0
- package/esm/menu/theme.d.ts +21 -0
- package/esm/menu/theme.js +25 -0
- package/esm/modal/context.d.ts +4 -0
- package/esm/modal/context.js +3 -0
- package/esm/modal/focusLock.d.ts +9 -0
- package/esm/modal/focusLock.js +19 -0
- package/esm/modal/focusLock.types.d.ts +28 -0
- package/esm/modal/focusLock.types.js +1 -0
- package/esm/modal/index.d.ts +9 -0
- package/esm/modal/index.js +9 -0
- package/esm/modal/modal.d.ts +15 -0
- package/esm/modal/modal.js +64 -0
- package/esm/modal/modal.types.d.ts +46 -0
- package/esm/modal/modal.types.js +1 -0
- package/esm/modal/modalBackdrop.d.ts +4 -0
- package/esm/modal/modalBackdrop.js +19 -0
- package/esm/modal/modalContent.d.ts +4 -0
- package/esm/modal/modalContent.js +18 -0
- package/esm/modal/modalManager.d.ts +12 -0
- package/esm/modal/modalManager.js +27 -0
- package/esm/modal/theme.d.ts +8 -0
- package/esm/modal/theme.js +12 -0
- package/esm/notification/consts.d.ts +2 -0
- package/esm/notification/consts.js +34 -0
- package/esm/notification/context.d.ts +4 -0
- package/esm/notification/context.js +3 -0
- package/esm/notification/index.d.ts +8 -0
- package/esm/notification/index.js +8 -0
- package/esm/notification/notification.d.ts +17 -0
- package/esm/notification/notification.js +37 -0
- package/esm/notification/notification.types.d.ts +27 -0
- package/esm/notification/notification.types.js +1 -0
- package/esm/notification/notificationButton.d.ts +4 -0
- package/esm/notification/notificationButton.js +12 -0
- package/esm/notification/notificationIcon.d.ts +4 -0
- package/esm/notification/notificationIcon.js +15 -0
- package/esm/notification/notificationText.d.ts +4 -0
- package/esm/notification/notificationText.js +11 -0
- package/esm/notification/notificationTitle.d.ts +4 -0
- package/esm/notification/notificationTitle.js +11 -0
- package/esm/notification/theme.d.ts +27 -0
- package/esm/notification/theme.js +40 -0
- package/esm/p/index.d.ts +3 -0
- package/esm/p/index.js +3 -0
- package/esm/p/p.d.ts +5 -0
- package/esm/p/p.js +20 -0
- package/esm/p/p.types.d.ts +14 -0
- package/esm/p/p.types.js +1 -0
- package/esm/p/theme.d.ts +30 -0
- package/esm/p/theme.js +33 -0
- package/esm/pagination/context.d.ts +4 -0
- package/esm/pagination/context.js +3 -0
- package/esm/pagination/helpers.d.ts +3 -0
- package/esm/pagination/helpers.js +16 -0
- package/esm/pagination/index.d.ts +13 -0
- package/esm/pagination/index.js +13 -0
- package/esm/pagination/pagination.d.ts +21 -0
- package/esm/pagination/pagination.js +41 -0
- package/esm/pagination/pagination.types.d.ts +31 -0
- package/esm/pagination/pagination.types.js +1 -0
- package/esm/pagination/paginationButton.d.ts +4 -0
- package/esm/pagination/paginationButton.js +22 -0
- package/esm/pagination/paginationEllipsis.d.ts +4 -0
- package/esm/pagination/paginationEllipsis.js +12 -0
- package/esm/pagination/paginationGoToPage.d.ts +4 -0
- package/esm/pagination/paginationGoToPage.js +23 -0
- package/esm/pagination/paginationNavigation.d.ts +4 -0
- package/esm/pagination/paginationNavigation.js +22 -0
- package/esm/pagination/paginationPrevNext.d.ts +4 -0
- package/esm/pagination/paginationPrevNext.js +20 -0
- package/esm/pagination/paginationResults.d.ts +4 -0
- package/esm/pagination/paginationResults.js +13 -0
- package/esm/pagination/theme.d.ts +8 -0
- package/esm/pagination/theme.js +12 -0
- package/esm/pagination/usePagination.d.ts +14 -0
- package/esm/pagination/usePagination.js +39 -0
- package/esm/pagination/usePagination.types.d.ts +12 -0
- package/esm/pagination/usePagination.types.js +1 -0
- package/esm/panel/index.d.ts +3 -0
- package/esm/panel/index.js +3 -0
- package/esm/panel/panel.d.ts +7 -0
- package/esm/panel/panel.js +15 -0
- package/esm/panel/panel.types.d.ts +3 -0
- package/esm/panel/panel.types.js +1 -0
- package/esm/panel/theme.d.ts +17 -0
- package/esm/panel/theme.js +20 -0
- package/esm/popover/consts.d.ts +6 -0
- package/esm/popover/consts.js +34 -0
- package/esm/popover/context.d.ts +4 -0
- package/esm/popover/context.js +3 -0
- package/esm/popover/index.d.ts +9 -0
- package/esm/popover/index.js +9 -0
- package/esm/popover/popover.d.ts +12 -0
- package/esm/popover/popover.js +19 -0
- package/esm/popover/popover.types.d.ts +18 -0
- package/esm/popover/popover.types.js +1 -0
- package/esm/popover/popoverContent.d.ts +3 -0
- package/esm/popover/popoverContent.js +19 -0
- package/esm/popover/popoverStyle.d.ts +2 -0
- package/esm/popover/popoverStyle.js +20 -0
- package/esm/popover/popoverTrigger.d.ts +6 -0
- package/esm/popover/popoverTrigger.js +24 -0
- package/esm/popover/theme.d.ts +8 -0
- package/esm/popover/theme.js +12 -0
- package/esm/popover/usePopover.d.ts +19 -0
- package/esm/popover/usePopover.js +89 -0
- package/esm/popover/usePopover.types.d.ts +27 -0
- package/esm/popover/usePopover.types.js +1 -0
- package/esm/portal/index.d.ts +3 -0
- package/esm/portal/index.js +3 -0
- package/esm/portal/portal.d.ts +5 -0
- package/esm/portal/portal.js +16 -0
- package/esm/portal/portal.types.d.ts +7 -0
- package/esm/portal/portal.types.js +1 -0
- package/esm/radio/context.d.ts +4 -0
- package/esm/radio/context.js +3 -0
- package/esm/radio/index.d.ts +6 -0
- package/esm/radio/index.js +6 -0
- package/esm/radio/radio.d.ts +8 -0
- package/esm/radio/radio.js +84 -0
- package/esm/radio/radio.types.d.ts +39 -0
- package/esm/radio/radio.types.js +1 -0
- package/esm/radio/radioGroup.d.ts +8 -0
- package/esm/radio/radioGroup.js +41 -0
- package/esm/radio/radioGroup.types.d.ts +21 -0
- package/esm/radio/radioGroup.types.js +1 -0
- package/esm/radio/theme.d.ts +49 -0
- package/esm/radio/theme.js +59 -0
- package/esm/skeleton/index.d.ts +3 -0
- package/esm/skeleton/index.js +3 -0
- package/esm/skeleton/skeleton.d.ts +5 -0
- package/esm/skeleton/skeleton.js +18 -0
- package/esm/skeleton/skeleton.types.d.ts +10 -0
- package/esm/skeleton/skeleton.types.js +1 -0
- package/esm/skeleton/theme.d.ts +37 -0
- package/esm/skeleton/theme.js +47 -0
- package/esm/spinner/consts.d.ts +36 -0
- package/esm/spinner/consts.js +23 -0
- package/esm/spinner/index.d.ts +3 -0
- package/esm/spinner/index.js +3 -0
- package/esm/spinner/spinner.d.ts +8 -0
- package/esm/spinner/spinner.js +33 -0
- package/esm/spinner/spinner.types.d.ts +20 -0
- package/esm/spinner/spinner.types.js +1 -0
- package/esm/spinner/theme.d.ts +68 -0
- package/esm/spinner/theme.js +73 -0
- package/esm/svg/cache.d.ts +15 -0
- package/esm/svg/cache.js +28 -0
- package/esm/svg/helpers.d.ts +10 -0
- package/esm/svg/helpers.js +25 -0
- package/esm/svg/index.d.ts +3 -0
- package/esm/svg/index.js +3 -0
- package/esm/svg/svg.d.ts +10 -0
- package/esm/svg/svg.js +68 -0
- package/esm/svg/svg.types.d.ts +12 -0
- package/esm/svg/svg.types.js +1 -0
- package/esm/switch/context.d.ts +4 -0
- package/esm/switch/context.js +3 -0
- package/esm/switch/index.d.ts +6 -0
- package/esm/switch/index.js +6 -0
- package/esm/switch/switch.d.ts +14 -0
- package/esm/switch/switch.js +55 -0
- package/esm/switch/switch.types.d.ts +69 -0
- package/esm/switch/switch.types.js +1 -0
- package/esm/switch/switchButton.d.ts +8 -0
- package/esm/switch/switchButton.js +108 -0
- package/esm/switch/switchLabel.d.ts +4 -0
- package/esm/switch/switchLabel.js +11 -0
- package/esm/switch/theme.d.ts +78 -0
- package/esm/switch/theme.js +86 -0
- package/esm/system/animations.d.ts +10 -0
- package/esm/system/animations.js +1 -0
- package/esm/system/backgrounds.d.ts +12 -0
- package/esm/system/backgrounds.js +1 -0
- package/esm/system/borders.d.ts +143 -0
- package/esm/system/borders.js +1 -0
- package/esm/system/colors.d.ts +3 -0
- package/esm/system/colors.js +1 -0
- package/esm/system/custom.d.ts +14 -0
- package/esm/system/custom.js +29 -0
- package/esm/system/effects.d.ts +21 -0
- package/esm/system/effects.js +1 -0
- package/esm/system/flexboxGrids.d.ts +12 -0
- package/esm/system/flexboxGrids.js +1 -0
- package/esm/system/flexboxes.d.ts +60 -0
- package/esm/system/flexboxes.js +1 -0
- package/esm/system/grids.d.ts +56 -0
- package/esm/system/grids.js +1 -0
- package/esm/system/index.d.ts +15 -0
- package/esm/system/index.js +15 -0
- package/esm/system/interactivity.d.ts +25 -0
- package/esm/system/interactivity.js +1 -0
- package/esm/system/layout.d.ts +72 -0
- package/esm/system/layout.js +1 -0
- package/esm/system/sizing.d.ts +35 -0
- package/esm/system/sizing.js +1 -0
- package/esm/system/space.d.ts +91 -0
- package/esm/system/space.js +1 -0
- package/esm/system/system.d.ts +19 -0
- package/esm/system/system.js +4 -0
- package/esm/system/tables.d.ts +13 -0
- package/esm/system/tables.js +1 -0
- package/esm/system/transforms.d.ts +56 -0
- package/esm/system/transforms.js +1 -0
- package/esm/system/transitions.d.ts +28 -0
- package/esm/system/transitions.js +1 -0
- package/esm/system/typography.d.ts +75 -0
- package/esm/system/typography.js +1 -0
- package/esm/t/index.d.ts +3 -0
- package/esm/t/index.js +3 -0
- package/esm/t/t.d.ts +5 -0
- package/esm/t/t.js +22 -0
- package/esm/t/t.types.d.ts +17 -0
- package/esm/t/t.types.js +1 -0
- package/esm/t/theme.d.ts +22 -0
- package/esm/t/theme.js +25 -0
- package/esm/tag/context.d.ts +4 -0
- package/esm/tag/context.js +3 -0
- package/esm/tag/index.d.ts +7 -0
- package/esm/tag/index.js +7 -0
- package/esm/tag/tag.d.ts +16 -0
- package/esm/tag/tag.js +74 -0
- package/esm/tag/tag.types.d.ts +34 -0
- package/esm/tag/tag.types.js +1 -0
- package/esm/tag/tagButton.d.ts +4 -0
- package/esm/tag/tagButton.js +12 -0
- package/esm/tag/tagIcon.d.ts +4 -0
- package/esm/tag/tagIcon.js +11 -0
- package/esm/tag/tagText.d.ts +4 -0
- package/esm/tag/tagText.js +11 -0
- package/esm/tag/theme.d.ts +84 -0
- package/esm/tag/theme.js +117 -0
- package/esm/textarea/helpers.d.ts +3 -0
- package/esm/textarea/helpers.js +5 -0
- package/esm/textarea/index.d.ts +3 -0
- package/esm/textarea/index.js +3 -0
- package/esm/textarea/textarea.d.ts +8 -0
- package/esm/textarea/textarea.js +82 -0
- package/esm/textarea/textarea.types.d.ts +46 -0
- package/esm/textarea/textarea.types.js +1 -0
- package/esm/textarea/theme.d.ts +22 -0
- package/esm/textarea/theme.js +31 -0
- package/esm/theme/components.d.ts +1049 -0
- package/esm/theme/components.js +62 -0
- package/esm/theme/defaultTheme.d.ts +1246 -0
- package/esm/theme/defaultTheme.js +7 -0
- package/esm/theme/foundations/animations.d.ts +12 -0
- package/esm/theme/foundations/animations.js +11 -0
- package/esm/theme/foundations/borders.d.ts +2 -0
- package/esm/theme/foundations/borders.js +1 -0
- package/esm/theme/foundations/colors.d.ts +181 -0
- package/esm/theme/foundations/colors.js +99 -0
- package/esm/theme/foundations/durations.d.ts +7 -0
- package/esm/theme/foundations/durations.js +6 -0
- package/esm/theme/foundations/fontSizes.d.ts +7 -0
- package/esm/theme/foundations/fontSizes.js +6 -0
- package/esm/theme/foundations/fontWeights.d.ts +7 -0
- package/esm/theme/foundations/fontWeights.js +6 -0
- package/esm/theme/foundations/fonts.d.ts +4 -0
- package/esm/theme/foundations/fonts.js +3 -0
- package/esm/theme/foundations/gridTemplateColumns.d.ts +15 -0
- package/esm/theme/foundations/gridTemplateColumns.js +14 -0
- package/esm/theme/foundations/gridTemplateRows.d.ts +9 -0
- package/esm/theme/foundations/gridTemplateRows.js +8 -0
- package/esm/theme/foundations/index.d.ts +198 -0
- package/esm/theme/foundations/index.js +42 -0
- package/esm/theme/foundations/radii.d.ts +8 -0
- package/esm/theme/foundations/radii.js +7 -0
- package/esm/theme/foundations/ringWidths.d.ts +2 -0
- package/esm/theme/foundations/ringWidths.js +1 -0
- package/esm/theme/foundations/screens.d.ts +8 -0
- package/esm/theme/foundations/screens.js +7 -0
- package/esm/theme/foundations/shadows.d.ts +20 -0
- package/esm/theme/foundations/shadows.js +23 -0
- package/esm/theme/foundations/sizes.d.ts +2 -0
- package/esm/theme/foundations/sizes.js +1 -0
- package/esm/theme/foundations/spaces.d.ts +2 -0
- package/esm/theme/foundations/spaces.js +1 -0
- package/esm/theme/foundations/timingFunctions.d.ts +2 -0
- package/esm/theme/foundations/timingFunctions.js +1 -0
- package/esm/theme/foundations/transformers.d.ts +5 -0
- package/esm/theme/foundations/transformers.js +14 -0
- package/esm/theme/foundations/transforms.d.ts +2 -0
- package/esm/theme/foundations/transforms.js +1 -0
- package/esm/theme/foundations/transitions.d.ts +2 -0
- package/esm/theme/foundations/transitions.js +1 -0
- package/esm/theme/foundations/zIndices.d.ts +7 -0
- package/esm/theme/foundations/zIndices.js +6 -0
- package/esm/theme/index.d.ts +20 -0
- package/esm/theme/index.js +20 -0
- package/esm/theme/types.d.ts +30 -0
- package/esm/theme/types.js +1 -0
- package/esm/utils/assertion.d.ts +16 -0
- package/esm/utils/assertion.js +29 -0
- package/esm/utils/function.d.ts +9 -0
- package/esm/utils/function.js +14 -0
- package/esm/utils/index.d.ts +7 -0
- package/esm/utils/index.js +7 -0
- package/esm/utils/number.d.ts +2 -0
- package/esm/utils/number.js +4 -0
- package/esm/utils/object.d.ts +17 -0
- package/esm/utils/object.js +43 -0
- package/esm/utils/react.d.ts +39 -0
- package/esm/utils/react.js +112 -0
- package/esm/utils/styles.d.ts +4 -0
- package/esm/utils/styles.js +26 -0
- package/esm/utils/types.d.ts +45 -0
- package/esm/utils/types.js +1 -0
- package/package.json +7 -4
- package/avatar/avatar.js +0 -62
- package/avatar/helpers.js +0 -26
- package/avatar/index.js +0 -20
- package/avatar/theme.js +0 -88
- package/box/box.js +0 -59
- package/box/index.js +0 -20
- package/box/theme.js +0 -12
- package/button/button.js +0 -120
- package/button/buttonIcon.js +0 -41
- package/button/buttonText.js +0 -41
- package/button/buttons.js +0 -28
- package/button/context.d.ts +0 -4
- package/button/context.js +0 -23
- package/button/index.js +0 -24
- package/button/theme.js +0 -149
- package/buttonGroup/buttonGroup.js +0 -73
- package/buttonGroup/context.d.ts +0 -4
- package/buttonGroup/context.js +0 -23
- package/buttonGroup/helpers.js +0 -12
- package/buttonGroup/index.js +0 -21
- package/card/card.js +0 -55
- package/card/index.js +0 -20
- package/card/theme.js +0 -12
- package/checkbox/checkbox.js +0 -116
- package/checkbox/checkboxGroup.js +0 -74
- package/checkbox/context.d.ts +0 -4
- package/checkbox/context.js +0 -23
- package/checkbox/index.js +0 -23
- package/checkbox/theme.js +0 -61
- package/core/index.js +0 -19
- package/core/links.js +0 -179
- package/core/media.js +0 -79
- package/core/styled.js +0 -140
- package/core/theme.js +0 -94
- package/core/vui.js +0 -20
- package/core/vuiProvider/animations.js +0 -12
- package/core/vuiProvider/fontFaces.js +0 -4
- package/core/vuiProvider/globalStyle.js +0 -67
- package/core/vuiProvider/index.js +0 -26
- package/core/vuiProvider/resetCSS.js +0 -10
- package/core/vuiProvider/vuiProvider.js +0 -21
- package/dialog/context.js +0 -23
- package/dialog/dialog.js +0 -122
- package/dialog/dialogBody.js +0 -97
- package/dialog/dialogCancelButton.js +0 -43
- package/dialog/dialogCloseButton.js +0 -43
- package/dialog/dialogFooter.js +0 -45
- package/dialog/dialogHeader.js +0 -53
- package/dialog/dialogIcon.js +0 -45
- package/dialog/dialogSubmitButton.js +0 -41
- package/dialog/dialogTitle.js +0 -43
- package/dialog/index.js +0 -30
- package/dialog/theme.js +0 -28
- package/divider/divider.js +0 -54
- package/divider/index.js +0 -20
- package/divider/theme.js +0 -12
- package/footer/context.js +0 -23
- package/footer/footer.js +0 -67
- package/footer/footerColumn.js +0 -40
- package/footer/footerContent.js +0 -41
- package/footer/footerHeading.js +0 -41
- package/footer/footerLink.js +0 -41
- package/footer/footerRow.js +0 -39
- package/footer/footerSection.js +0 -48
- package/footer/footerTrademark.js +0 -50
- package/footer/helpers.js +0 -113
- package/footer/index.js +0 -27
- package/footer/theme.js +0 -14
- package/grid/grid.js +0 -47
- package/grid/index.js +0 -20
- package/grid/theme.js +0 -12
- package/header/context.js +0 -23
- package/header/header.js +0 -133
- package/header/headerAccount.js +0 -88
- package/header/headerAccount.types.d.ts +0 -35
- package/header/headerAccountUserInfo.js +0 -47
- package/header/headerContent.js +0 -41
- package/header/headerCreateAccount.js +0 -48
- package/header/headerDivider.js +0 -41
- package/header/headerLinkItem.js +0 -53
- package/header/headerLogo.js +0 -47
- package/header/headerMainLinks.js +0 -45
- package/header/headerMobileContent.js +0 -43
- package/header/headerMobileToggle.js +0 -45
- package/header/headerNotifications.js +0 -53
- package/header/headerServices.js +0 -60
- package/header/headerServicesMessage.js +0 -50
- package/header/headerSignIn.js +0 -43
- package/header/helpers.js +0 -115
- package/header/index.js +0 -39
- package/header/loggedInHeader.js +0 -57
- package/header/loggedOutHeader.js +0 -57
- package/header/theme.js +0 -93
- package/heading/heading.js +0 -54
- package/heading/headings.js +0 -26
- package/heading/index.js +0 -21
- package/heading/theme.js +0 -45
- package/icon/helpers.js +0 -61
- package/icon/icon.js +0 -48
- package/icon/index.js +0 -20
- package/icon/theme.js +0 -31
- package/icons/cache.js +0 -68
- package/icons/consts.js +0 -46
- package/icons/index.js +0 -20
- package/image/image.js +0 -47
- package/image/index.js +0 -20
- package/image/theme.js +0 -12
- package/index.js +0 -50
- package/input/context.d.ts +0 -4
- package/input/context.js +0 -23
- package/input/helpers.js +0 -10
- package/input/index.js +0 -22
- package/input/input.js +0 -145
- package/input/inputIcon.js +0 -44
- package/input/inputInput.js +0 -53
- package/input/theme.js +0 -76
- package/link/context.d.ts +0 -4
- package/link/context.js +0 -23
- package/link/index.js +0 -22
- package/link/link.js +0 -87
- package/link/linkIcon.js +0 -41
- package/link/linkText.js +0 -41
- package/link/theme.js +0 -72
- package/list/context.d.ts +0 -4
- package/list/context.js +0 -23
- package/list/index.js +0 -26
- package/list/list.js +0 -85
- package/list/listDivider.js +0 -41
- package/list/listHeading.js +0 -41
- package/list/listIcon.js +0 -41
- package/list/listItem.js +0 -109
- package/list/listText.js +0 -41
- package/list/theme.js +0 -89
- package/menu/context.js +0 -23
- package/menu/index.js +0 -27
- package/menu/menu.js +0 -64
- package/menu/menuButton.js +0 -42
- package/menu/menuItem.js +0 -49
- package/menu/menuList.js +0 -48
- package/menu/theme.js +0 -27
- package/modal/context.js +0 -23
- package/modal/focusLock.js +0 -47
- package/modal/index.js +0 -26
- package/modal/modal.js +0 -113
- package/modal/modalBackdrop.js +0 -49
- package/modal/modalContent.js +0 -50
- package/modal/modalManager.js +0 -33
- package/modal/theme.js +0 -14
- package/notification/context.d.ts +0 -4
- package/notification/context.js +0 -23
- package/notification/index.js +0 -25
- package/notification/notification.js +0 -65
- package/notification/notificationButton.js +0 -42
- package/notification/notificationIcon.js +0 -46
- package/notification/notificationText.js +0 -41
- package/notification/notificationTitle.js +0 -41
- package/notification/theme.js +0 -42
- package/p/index.js +0 -20
- package/p/p.js +0 -53
- package/p/theme.js +0 -35
- package/pagination/context.js +0 -23
- package/pagination/helpers.js +0 -56
- package/pagination/index.js +0 -31
- package/pagination/pagination.js +0 -70
- package/pagination/paginationButton.js +0 -51
- package/pagination/paginationEllipsis.js +0 -41
- package/pagination/paginationGoToPage.js +0 -53
- package/pagination/paginationNavigation.js +0 -68
- package/pagination/paginationPrevNext.js +0 -49
- package/pagination/paginationResults.js +0 -42
- package/pagination/theme.js +0 -14
- package/pagination/usePagination.js +0 -58
- package/panel/index.js +0 -20
- package/panel/panel.js +0 -43
- package/panel/theme.js +0 -22
- package/popover/consts.js +0 -42
- package/popover/context.js +0 -23
- package/popover/index.js +0 -31
- package/popover/popover.js +0 -47
- package/popover/popoverContent.js +0 -48
- package/popover/popoverStyle.js +0 -9
- package/popover/popoverTrigger.js +0 -53
- package/popover/theme.js +0 -14
- package/popover/usePopover.js +0 -122
- package/portal/index.js +0 -20
- package/portal/portal.js +0 -56
- package/radio/context.d.ts +0 -4
- package/radio/context.js +0 -23
- package/radio/index.js +0 -23
- package/radio/radio.js +0 -121
- package/radio/radioGroup.js +0 -109
- package/radio/theme.js +0 -61
- package/skeleton/index.js +0 -20
- package/skeleton/skeleton.js +0 -51
- package/skeleton/theme.js +0 -49
- package/spinner/consts.d.ts +0 -24
- package/spinner/consts.js +0 -22
- package/spinner/index.js +0 -20
- package/spinner/spinner.js +0 -68
- package/spinner/theme.js +0 -75
- package/svg/cache.js +0 -32
- package/svg/helpers.js +0 -33
- package/svg/index.js +0 -20
- package/svg/svg.js +0 -175
- package/switch/context.d.ts +0 -4
- package/switch/context.js +0 -23
- package/switch/index.js +0 -23
- package/switch/switch.js +0 -97
- package/switch/switchButton.js +0 -138
- package/switch/switchLabel.js +0 -41
- package/switch/theme.js +0 -88
- package/system/custom.js +0 -32
- package/system/index.js +0 -27
- package/system/system.js +0 -7
- package/t/index.js +0 -20
- package/t/t.js +0 -55
- package/t/theme.js +0 -27
- package/tag/context.d.ts +0 -4
- package/tag/context.js +0 -23
- package/tag/index.js +0 -24
- package/tag/tag.js +0 -108
- package/tag/tagButton.js +0 -42
- package/tag/tagIcon.js +0 -41
- package/tag/tagText.js +0 -41
- package/tag/theme.js +0 -119
- package/textarea/helpers.js +0 -10
- package/textarea/index.js +0 -20
- package/textarea/textarea.js +0 -130
- package/textarea/theme.js +0 -33
- package/theme/components.js +0 -67
- package/theme/defaultTheme.js +0 -20
- package/theme/foundations/fonts.js +0 -5
- package/theme/foundations/index.js +0 -47
- package/theme/foundations/shadows.js +0 -25
- package/theme/foundations/transformers.js +0 -34
- package/theme/index.js +0 -56
- package/utils/assertion.js +0 -42
- package/utils/function.js +0 -59
- package/utils/index.js +0 -19
- package/utils/number.js +0 -10
- package/utils/object.js +0 -53
- package/utils/react.d.ts +0 -39
- package/utils/react.js +0 -181
- package/utils/styles.js +0 -35
- /package/{avatar → cjs/avatar}/avatar.d.ts +0 -0
- /package/{avatar → cjs/avatar}/avatar.types.d.ts +0 -0
- /package/{avatar → cjs/avatar}/avatar.types.js +0 -0
- /package/{avatar → cjs/avatar}/helpers.d.ts +0 -0
- /package/{avatar → cjs/avatar}/index.d.ts +0 -0
- /package/{avatar → cjs/avatar}/theme.d.ts +0 -0
- /package/{box → cjs/box}/box.d.ts +0 -0
- /package/{box → cjs/box}/box.types.d.ts +0 -0
- /package/{box → cjs/box}/box.types.js +0 -0
- /package/{box → cjs/box}/index.d.ts +0 -0
- /package/{box → cjs/box}/theme.d.ts +0 -0
- /package/{button → cjs/button}/button.d.ts +0 -0
- /package/{button → cjs/button}/button.types.d.ts +0 -0
- /package/{button → cjs/button}/button.types.js +0 -0
- /package/{button → cjs/button}/buttonIcon.d.ts +0 -0
- /package/{button → cjs/button}/buttonText.d.ts +0 -0
- /package/{button → cjs/button}/buttons.d.ts +0 -0
- /package/{button → cjs/button}/consts.d.ts +0 -0
- /package/{button → cjs/button}/consts.js +0 -0
- /package/{button → cjs/button}/index.d.ts +0 -0
- /package/{button → cjs/button}/theme.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/buttonGroup.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/buttonGroup.types.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/buttonGroup.types.js +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/helpers.d.ts +0 -0
- /package/{buttonGroup → cjs/buttonGroup}/index.d.ts +0 -0
- /package/{card → cjs/card}/card.d.ts +0 -0
- /package/{card → cjs/card}/card.types.d.ts +0 -0
- /package/{card → cjs/card}/card.types.js +0 -0
- /package/{card → cjs/card}/index.d.ts +0 -0
- /package/{card → cjs/card}/theme.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkbox.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkbox.types.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkbox.types.js +0 -0
- /package/{checkbox → cjs/checkbox}/checkboxGroup.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkboxGroup.types.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/checkboxGroup.types.js +0 -0
- /package/{checkbox → cjs/checkbox}/index.d.ts +0 -0
- /package/{checkbox → cjs/checkbox}/theme.d.ts +0 -0
- /package/{core → cjs/core}/consts.d.ts +0 -0
- /package/{core → cjs/core}/consts.js +0 -0
- /package/{core → cjs/core}/index.d.ts +0 -0
- /package/{core → cjs/core}/links.d.ts +0 -0
- /package/{core → cjs/core}/media.d.ts +0 -0
- /package/{core → cjs/core}/styled.d.ts +0 -0
- /package/{core → cjs/core}/theme.d.ts +0 -0
- /package/{core → cjs/core}/vui.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/animations.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/fontFaces.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/globalStyle.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/index.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/resetCSS.d.ts +0 -0
- /package/{core → cjs/core}/vuiProvider/vuiProvider.d.ts +0 -0
- /package/{dialog → cjs/dialog}/consts.d.ts +0 -0
- /package/{dialog → cjs/dialog}/consts.js +0 -0
- /package/{dialog → cjs/dialog}/context.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialog.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialog.types.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialog.types.js +0 -0
- /package/{dialog → cjs/dialog}/dialogBody.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogCancelButton.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogCloseButton.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogFooter.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogHeader.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogIcon.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogSubmitButton.d.ts +0 -0
- /package/{dialog → cjs/dialog}/dialogTitle.d.ts +0 -0
- /package/{dialog → cjs/dialog}/index.d.ts +0 -0
- /package/{dialog → cjs/dialog}/theme.d.ts +0 -0
- /package/{divider → cjs/divider}/divider.d.ts +0 -0
- /package/{divider → cjs/divider}/divider.types.d.ts +0 -0
- /package/{divider → cjs/divider}/divider.types.js +0 -0
- /package/{divider → cjs/divider}/index.d.ts +0 -0
- /package/{divider → cjs/divider}/theme.d.ts +0 -0
- /package/{footer → cjs/footer}/context.d.ts +0 -0
- /package/{footer → cjs/footer}/footer.d.ts +0 -0
- /package/{footer → cjs/footer}/footer.types.d.ts +0 -0
- /package/{footer → cjs/footer}/footer.types.js +0 -0
- /package/{footer → cjs/footer}/footerColumn.d.ts +0 -0
- /package/{footer → cjs/footer}/footerContent.d.ts +0 -0
- /package/{footer → cjs/footer}/footerHeading.d.ts +0 -0
- /package/{footer → cjs/footer}/footerLink.d.ts +0 -0
- /package/{footer → cjs/footer}/footerRow.d.ts +0 -0
- /package/{footer → cjs/footer}/footerSection.d.ts +0 -0
- /package/{footer → cjs/footer}/footerTrademark.d.ts +0 -0
- /package/{footer → cjs/footer}/helpers.d.ts +0 -0
- /package/{footer → cjs/footer}/index.d.ts +0 -0
- /package/{footer → cjs/footer}/theme.d.ts +0 -0
- /package/{grid → cjs/grid}/grid.d.ts +0 -0
- /package/{grid → cjs/grid}/grid.types.d.ts +0 -0
- /package/{grid → cjs/grid}/grid.types.js +0 -0
- /package/{grid → cjs/grid}/index.d.ts +0 -0
- /package/{grid → cjs/grid}/theme.d.ts +0 -0
- /package/{header → cjs/header}/context.d.ts +0 -0
- /package/{header → cjs/header}/header.d.ts +0 -0
- /package/{header → cjs/header}/header.types.d.ts +0 -0
- /package/{header → cjs/header}/header.types.js +0 -0
- /package/{header → cjs/header}/headerAccount.d.ts +0 -0
- /package/{header → cjs/header}/headerAccount.types.js +0 -0
- /package/{header → cjs/header}/headerAccountUserInfo.d.ts +0 -0
- /package/{header → cjs/header}/headerContent.d.ts +0 -0
- /package/{header → cjs/header}/headerCreateAccount.d.ts +0 -0
- /package/{header → cjs/header}/headerDivider.d.ts +0 -0
- /package/{header → cjs/header}/headerLinkItem.d.ts +0 -0
- /package/{header → cjs/header}/headerLogo.d.ts +0 -0
- /package/{header → cjs/header}/headerMainLinks.d.ts +0 -0
- /package/{header → cjs/header}/headerMobileContent.d.ts +0 -0
- /package/{header → cjs/header}/headerMobileToggle.d.ts +0 -0
- /package/{header → cjs/header}/headerNotifications.d.ts +0 -0
- /package/{header → cjs/header}/headerServices.d.ts +0 -0
- /package/{header → cjs/header}/headerServicesMessage.d.ts +0 -0
- /package/{header → cjs/header}/headerSignIn.d.ts +0 -0
- /package/{header → cjs/header}/helpers.d.ts +0 -0
- /package/{header → cjs/header}/index.d.ts +0 -0
- /package/{header → cjs/header}/loggedInHeader.d.ts +0 -0
- /package/{header → cjs/header}/loggedOutHeader.d.ts +0 -0
- /package/{header → cjs/header}/theme.d.ts +0 -0
- /package/{heading → cjs/heading}/heading.d.ts +0 -0
- /package/{heading → cjs/heading}/heading.types.d.ts +0 -0
- /package/{heading → cjs/heading}/heading.types.js +0 -0
- /package/{heading → cjs/heading}/headings.d.ts +0 -0
- /package/{heading → cjs/heading}/index.d.ts +0 -0
- /package/{heading → cjs/heading}/theme.d.ts +0 -0
- /package/{icon → cjs/icon}/helpers.d.ts +0 -0
- /package/{icon → cjs/icon}/icon.d.ts +0 -0
- /package/{icon → cjs/icon}/icon.types.d.ts +0 -0
- /package/{icon → cjs/icon}/icon.types.js +0 -0
- /package/{icon → cjs/icon}/index.d.ts +0 -0
- /package/{icon → cjs/icon}/theme.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubPowerBi.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubPowerBi.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubVeracity.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cub/cubVeracity.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxIndeterminate.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxIndeterminate.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxSelected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxSelected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxUnselected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiCheckboxUnselected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioSelected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioSelected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioUnselected.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cui/cuiRadioUnselected.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiProduct.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiProduct.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiService.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culApiService.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChart.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChart.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChartAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCircleChartAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCovid.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culCovid.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDeepSearch.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDeepSearch.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDotsMenu.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culDotsMenu.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culGlobePlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culGlobePlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culListDense.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culListDense.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culMapMarkerStar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culMapMarkerStar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culNumber1.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culNumber1.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culPlusThin.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culPlusThin.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshot.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshot.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshotAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culScreenshotAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culShortcut.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culShortcut.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTarget.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTarget.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTimesThin.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTimesThin.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTransformer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culTransformer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culUserTransfer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culUserTransfer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVeracityService.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVeracityService.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVessel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVessel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVesselGroup.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cul/culVesselGroup.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFull.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFull.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFullAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotFullAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotsMenu.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusDotsMenu.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusTransformer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusTransformer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusVessel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/cus/cusVessel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabApplePay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabApplePay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBluetooth.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBluetooth.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBtc.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabBtc.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmazonPay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmazonPay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmex.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcAmex.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcApplePay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcApplePay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcDinersClub.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcDinersClub.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcMastercard.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcMastercard.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcPaypal.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcPaypal.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcVisa.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabCcVisa.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabDhl.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabDhl.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabEbay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabEbay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFacebook.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFacebook.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFedex.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFedex.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFirefox.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabFirefox.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogleDrive.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabGoogleDrive.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabLinkedinIn.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabLinkedinIn.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabMedium.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabMedium.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabOsi.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabOsi.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabSlack.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabSlack.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabTwitter.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabTwitter.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabUps.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabUps.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabYoutube.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fab/fabYoutube.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fad/fadSpinnerThird.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fad/fadSpinnerThird.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressBook.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressBook.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressCard.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAddressCard.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAnalytics.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAnalytics.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDoubleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAngleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowAltUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowCircleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromBottom.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromBottom.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromTop.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowFromTop.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToBottom.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToBottom.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToTop.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowToTop.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrowUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrows.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falArrows.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAward.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falAward.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBan.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBan.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBars.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBars.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBell.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBell.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBookOpen.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBookOpen.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroadcastTower.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroadcastTower.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroom.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBroom.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBuilding.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBuilding.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBullseye.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falBullseye.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendarAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCalendarAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCamera.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCamera.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCaretUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCauldron.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCauldron.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartArea.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartArea.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartBar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartBar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLineDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartLineDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartNetwork.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartNetwork.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPie.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPie.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPieAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartPieAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartScatter.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChartScatter.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckSquare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCheckSquare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronCircleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDoubleUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falChevronUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloud.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloud.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudShowersHeavy.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudShowersHeavy.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSnow.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSnow.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSun.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSun.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSunRain.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudSunRain.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudUpload.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCloudUpload.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCode.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCode.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCog.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCog.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCogs.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCogs.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falComment.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falComment.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCommentAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCommentAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCompressAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCompressAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCopy.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCopy.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCreditCard.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falCreditCard.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDatabase.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDatabase.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDotCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDotCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDownload.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falDownload.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEdit.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEdit.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisH.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisH.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisV.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEllipsisV.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEnvelope.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEnvelope.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExchange.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExchange.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationTriangle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExclamationTriangle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExpandAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExpandAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExternalLink.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falExternalLink.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEye.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEye.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEyeSlash.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falEyeSlash.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFile.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFile.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileArchive.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileArchive.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAudio.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileAudio.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCertificate.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCertificate.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartLine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartLine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartPie.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileChartPie.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCode.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCode.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCsv.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileCsv.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileEdit.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileEdit.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileExcel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileExcel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileImage.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileImage.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileInvoiceDollar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileInvoiceDollar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePdf.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePdf.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePowerpoint.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilePowerpoint.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileSpreadsheet.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileSpreadsheet.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileVideo.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileVideo.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileWord.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFileWord.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilter.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFilter.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFlag.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFlag.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolder.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolder.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderOpen.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderOpen.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolderPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolders.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falFolders.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlassesAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlassesAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlobe.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falGlobe.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHome.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHome.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHourglass.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falHourglass.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falImage.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falImage.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falInfoCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falInfoCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falKey.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falKey.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerGroup.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerGroup.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLayerPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLink.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLink.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falList.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falList.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLockAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLockAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falLongArrowUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMap.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMap.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarked.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarked.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkedAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkedAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarker.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarker.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAltSlash.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerAltSlash.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerExclamation.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMapMarkerExclamation.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMinus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falMinus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPause.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPause.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPauseCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPauseCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPen.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPen.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlay.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlay.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlayCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlayCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlug.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlug.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusSquare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPlusSquare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPrint.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPrint.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPuzzlePiece.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falPuzzlePiece.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falQuestionCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falQuestionCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falReceipt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falReceipt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falRedo.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falRedo.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSave.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSave.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearch.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearch.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchMinus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchMinus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSearchPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falServer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falServer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAll.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAll.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShareAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldCheck.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShieldCheck.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShip.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShip.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShoppingBasket.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falShoppingBasket.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignIn.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignIn.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignInAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignInAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOut.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOut.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOutAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSignOutAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSlidersV.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSlidersV.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowBlowing.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowBlowing.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowflake.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSnowflake.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSolarPanel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSolarPanel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSort.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSort.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSpinner.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSpinner.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSquare.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSquare.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStepForward.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStepForward.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStop.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStop.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopwatch.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falStopwatch.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSuitcase.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSuitcase.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSun.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSun.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSync.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falSync.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTachometer.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTachometer.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTemperatureHigh.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTemperatureHigh.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTh.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTh.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThLarge.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThLarge.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThList.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falThList.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimes.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimes.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimesCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTimesCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOff.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOff.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOn.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falToggleOn.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTrashAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falTrashAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUnlockAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUnlockAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUser.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUser.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserChart.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserChart.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCog.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserCog.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserEdit.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserEdit.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserFriends.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserFriends.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserPlus.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserPlus.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserShield.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserShield.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserTimes.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUserTimes.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsers.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsers.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsersClass.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falUsersClass.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWater.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWater.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWind.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWind.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWindTurbine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWindTurbine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWrench.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fal/falWrench.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCalendarAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCalendarAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretDown.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretDown.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretUp.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCaretUp.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCheckCircle.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasCheckCircle.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasDiamond.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasDiamond.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasFolder.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasFolder.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerAlt.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerAlt.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerExclamation.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasMapMarkerExclamation.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteLeft.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteLeft.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteRight.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasQuoteRight.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSolarPanel.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSolarPanel.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSort.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasSort.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasStar.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasStar.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasWindTurbine.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/fas/fasWindTurbine.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/icons.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/icons.js +0 -0
- /package/{icons → cjs/icons}/baseIcons/types.d.ts +0 -0
- /package/{icons → cjs/icons}/baseIcons/types.js +0 -0
- /package/{icons → cjs/icons}/cache.d.ts +0 -0
- /package/{icons → cjs/icons}/consts.d.ts +0 -0
- /package/{icons → cjs/icons}/index.d.ts +0 -0
- /package/{icons → cjs/icons}/types.d.ts +0 -0
- /package/{icons → cjs/icons}/types.js +0 -0
- /package/{image → cjs/image}/image.d.ts +0 -0
- /package/{image → cjs/image}/image.types.d.ts +0 -0
- /package/{image → cjs/image}/image.types.js +0 -0
- /package/{image → cjs/image}/index.d.ts +0 -0
- /package/{image → cjs/image}/theme.d.ts +0 -0
- /package/{index.d.ts → cjs/index.d.ts} +0 -0
- /package/{input → cjs/input}/consts.d.ts +0 -0
- /package/{input → cjs/input}/consts.js +0 -0
- /package/{input → cjs/input}/helpers.d.ts +0 -0
- /package/{input → cjs/input}/index.d.ts +0 -0
- /package/{input → cjs/input}/input.d.ts +0 -0
- /package/{input → cjs/input}/input.types.d.ts +0 -0
- /package/{input → cjs/input}/input.types.js +0 -0
- /package/{input → cjs/input}/inputIcon.d.ts +0 -0
- /package/{input → cjs/input}/inputInput.d.ts +0 -0
- /package/{input → cjs/input}/theme.d.ts +0 -0
- /package/{link → cjs/link}/index.d.ts +0 -0
- /package/{link → cjs/link}/link.d.ts +0 -0
- /package/{link → cjs/link}/link.types.d.ts +0 -0
- /package/{link → cjs/link}/link.types.js +0 -0
- /package/{link → cjs/link}/linkIcon.d.ts +0 -0
- /package/{link → cjs/link}/linkText.d.ts +0 -0
- /package/{link → cjs/link}/theme.d.ts +0 -0
- /package/{list → cjs/list}/index.d.ts +0 -0
- /package/{list → cjs/list}/list.d.ts +0 -0
- /package/{list → cjs/list}/list.types.d.ts +0 -0
- /package/{list → cjs/list}/list.types.js +0 -0
- /package/{list → cjs/list}/listDivider.d.ts +0 -0
- /package/{list → cjs/list}/listHeading.d.ts +0 -0
- /package/{list → cjs/list}/listIcon.d.ts +0 -0
- /package/{list → cjs/list}/listItem.d.ts +0 -0
- /package/{list → cjs/list}/listText.d.ts +0 -0
- /package/{list → cjs/list}/theme.d.ts +0 -0
- /package/{menu → cjs/menu}/context.d.ts +0 -0
- /package/{menu → cjs/menu}/index.d.ts +0 -0
- /package/{menu → cjs/menu}/menu.d.ts +0 -0
- /package/{menu → cjs/menu}/menu.types.d.ts +0 -0
- /package/{menu → cjs/menu}/menu.types.js +0 -0
- /package/{menu → cjs/menu}/menuButton.d.ts +0 -0
- /package/{menu → cjs/menu}/menuItem.d.ts +0 -0
- /package/{menu → cjs/menu}/menuList.d.ts +0 -0
- /package/{menu → cjs/menu}/theme.d.ts +0 -0
- /package/{modal → cjs/modal}/context.d.ts +0 -0
- /package/{modal → cjs/modal}/focusLock.d.ts +0 -0
- /package/{modal → cjs/modal}/focusLock.types.d.ts +0 -0
- /package/{modal → cjs/modal}/focusLock.types.js +0 -0
- /package/{modal → cjs/modal}/index.d.ts +0 -0
- /package/{modal → cjs/modal}/modal.d.ts +0 -0
- /package/{modal → cjs/modal}/modal.types.d.ts +0 -0
- /package/{modal → cjs/modal}/modal.types.js +0 -0
- /package/{modal → cjs/modal}/modalBackdrop.d.ts +0 -0
- /package/{modal → cjs/modal}/modalContent.d.ts +0 -0
- /package/{modal → cjs/modal}/modalManager.d.ts +0 -0
- /package/{modal → cjs/modal}/theme.d.ts +0 -0
- /package/{notification → cjs/notification}/consts.d.ts +0 -0
- /package/{notification → cjs/notification}/consts.js +0 -0
- /package/{notification → cjs/notification}/index.d.ts +0 -0
- /package/{notification → cjs/notification}/notification.d.ts +0 -0
- /package/{notification → cjs/notification}/notification.types.d.ts +0 -0
- /package/{notification → cjs/notification}/notification.types.js +0 -0
- /package/{notification → cjs/notification}/notificationButton.d.ts +0 -0
- /package/{notification → cjs/notification}/notificationIcon.d.ts +0 -0
- /package/{notification → cjs/notification}/notificationText.d.ts +0 -0
- /package/{notification → cjs/notification}/notificationTitle.d.ts +0 -0
- /package/{notification → cjs/notification}/theme.d.ts +0 -0
- /package/{p → cjs/p}/index.d.ts +0 -0
- /package/{p → cjs/p}/p.d.ts +0 -0
- /package/{p → cjs/p}/p.types.d.ts +0 -0
- /package/{p → cjs/p}/p.types.js +0 -0
- /package/{p → cjs/p}/theme.d.ts +0 -0
- /package/{pagination → cjs/pagination}/context.d.ts +0 -0
- /package/{pagination → cjs/pagination}/helpers.d.ts +0 -0
- /package/{pagination → cjs/pagination}/index.d.ts +0 -0
- /package/{pagination → cjs/pagination}/pagination.d.ts +0 -0
- /package/{pagination → cjs/pagination}/pagination.types.d.ts +0 -0
- /package/{pagination → cjs/pagination}/pagination.types.js +0 -0
- /package/{pagination → cjs/pagination}/paginationButton.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationEllipsis.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationGoToPage.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationNavigation.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationPrevNext.d.ts +0 -0
- /package/{pagination → cjs/pagination}/paginationResults.d.ts +0 -0
- /package/{pagination → cjs/pagination}/theme.d.ts +0 -0
- /package/{pagination → cjs/pagination}/usePagination.d.ts +0 -0
- /package/{pagination → cjs/pagination}/usePagination.types.d.ts +0 -0
- /package/{pagination → cjs/pagination}/usePagination.types.js +0 -0
- /package/{panel → cjs/panel}/index.d.ts +0 -0
- /package/{panel → cjs/panel}/panel.d.ts +0 -0
- /package/{panel → cjs/panel}/panel.types.d.ts +0 -0
- /package/{panel → cjs/panel}/panel.types.js +0 -0
- /package/{panel → cjs/panel}/theme.d.ts +0 -0
- /package/{popover → cjs/popover}/consts.d.ts +0 -0
- /package/{popover → cjs/popover}/context.d.ts +0 -0
- /package/{popover → cjs/popover}/index.d.ts +0 -0
- /package/{popover → cjs/popover}/popover.d.ts +0 -0
- /package/{popover → cjs/popover}/popover.types.d.ts +0 -0
- /package/{popover → cjs/popover}/popover.types.js +0 -0
- /package/{popover → cjs/popover}/popoverContent.d.ts +0 -0
- /package/{popover → cjs/popover}/popoverStyle.d.ts +0 -0
- /package/{popover → cjs/popover}/popoverTrigger.d.ts +0 -0
- /package/{popover → cjs/popover}/theme.d.ts +0 -0
- /package/{popover → cjs/popover}/usePopover.d.ts +0 -0
- /package/{popover → cjs/popover}/usePopover.types.d.ts +0 -0
- /package/{popover → cjs/popover}/usePopover.types.js +0 -0
- /package/{portal → cjs/portal}/index.d.ts +0 -0
- /package/{portal → cjs/portal}/portal.d.ts +0 -0
- /package/{portal → cjs/portal}/portal.types.d.ts +0 -0
- /package/{portal → cjs/portal}/portal.types.js +0 -0
- /package/{radio → cjs/radio}/index.d.ts +0 -0
- /package/{radio → cjs/radio}/radio.d.ts +0 -0
- /package/{radio → cjs/radio}/radio.types.d.ts +0 -0
- /package/{radio → cjs/radio}/radio.types.js +0 -0
- /package/{radio → cjs/radio}/radioGroup.d.ts +0 -0
- /package/{radio → cjs/radio}/radioGroup.types.d.ts +0 -0
- /package/{radio → cjs/radio}/radioGroup.types.js +0 -0
- /package/{radio → cjs/radio}/theme.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/index.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/skeleton.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/skeleton.types.d.ts +0 -0
- /package/{skeleton → cjs/skeleton}/skeleton.types.js +0 -0
- /package/{skeleton → cjs/skeleton}/theme.d.ts +0 -0
- /package/{spinner → cjs/spinner}/index.d.ts +0 -0
- /package/{spinner → cjs/spinner}/spinner.d.ts +0 -0
- /package/{spinner → cjs/spinner}/spinner.types.d.ts +0 -0
- /package/{spinner → cjs/spinner}/spinner.types.js +0 -0
- /package/{spinner → cjs/spinner}/theme.d.ts +0 -0
- /package/{svg → cjs/svg}/cache.d.ts +0 -0
- /package/{svg → cjs/svg}/helpers.d.ts +0 -0
- /package/{svg → cjs/svg}/index.d.ts +0 -0
- /package/{svg → cjs/svg}/svg.d.ts +0 -0
- /package/{svg → cjs/svg}/svg.types.d.ts +0 -0
- /package/{svg → cjs/svg}/svg.types.js +0 -0
- /package/{switch → cjs/switch}/index.d.ts +0 -0
- /package/{switch → cjs/switch}/switch.d.ts +0 -0
- /package/{switch → cjs/switch}/switch.types.d.ts +0 -0
- /package/{switch → cjs/switch}/switch.types.js +0 -0
- /package/{switch → cjs/switch}/switchButton.d.ts +0 -0
- /package/{switch → cjs/switch}/switchLabel.d.ts +0 -0
- /package/{switch → cjs/switch}/theme.d.ts +0 -0
- /package/{system → cjs/system}/animations.d.ts +0 -0
- /package/{system → cjs/system}/animations.js +0 -0
- /package/{system → cjs/system}/backgrounds.d.ts +0 -0
- /package/{system → cjs/system}/backgrounds.js +0 -0
- /package/{system → cjs/system}/borders.d.ts +0 -0
- /package/{system → cjs/system}/borders.js +0 -0
- /package/{system → cjs/system}/colors.d.ts +0 -0
- /package/{system → cjs/system}/colors.js +0 -0
- /package/{system → cjs/system}/custom.d.ts +0 -0
- /package/{system → cjs/system}/effects.d.ts +0 -0
- /package/{system → cjs/system}/effects.js +0 -0
- /package/{system → cjs/system}/flexboxGrids.d.ts +0 -0
- /package/{system → cjs/system}/flexboxGrids.js +0 -0
- /package/{system → cjs/system}/flexboxes.d.ts +0 -0
- /package/{system → cjs/system}/flexboxes.js +0 -0
- /package/{system → cjs/system}/grids.d.ts +0 -0
- /package/{system → cjs/system}/grids.js +0 -0
- /package/{system → cjs/system}/index.d.ts +0 -0
- /package/{system → cjs/system}/interactivity.d.ts +0 -0
- /package/{system → cjs/system}/interactivity.js +0 -0
- /package/{system → cjs/system}/layout.d.ts +0 -0
- /package/{system → cjs/system}/layout.js +0 -0
- /package/{system → cjs/system}/sizing.d.ts +0 -0
- /package/{system → cjs/system}/sizing.js +0 -0
- /package/{system → cjs/system}/space.d.ts +0 -0
- /package/{system → cjs/system}/space.js +0 -0
- /package/{system → cjs/system}/system.d.ts +0 -0
- /package/{system → cjs/system}/tables.d.ts +0 -0
- /package/{system → cjs/system}/tables.js +0 -0
- /package/{system → cjs/system}/transforms.d.ts +0 -0
- /package/{system → cjs/system}/transforms.js +0 -0
- /package/{system → cjs/system}/transitions.d.ts +0 -0
- /package/{system → cjs/system}/transitions.js +0 -0
- /package/{system → cjs/system}/typography.d.ts +0 -0
- /package/{system → cjs/system}/typography.js +0 -0
- /package/{t → cjs/t}/index.d.ts +0 -0
- /package/{t → cjs/t}/t.d.ts +0 -0
- /package/{t → cjs/t}/t.types.d.ts +0 -0
- /package/{t → cjs/t}/t.types.js +0 -0
- /package/{t → cjs/t}/theme.d.ts +0 -0
- /package/{tag → cjs/tag}/index.d.ts +0 -0
- /package/{tag → cjs/tag}/tag.d.ts +0 -0
- /package/{tag → cjs/tag}/tag.types.d.ts +0 -0
- /package/{tag → cjs/tag}/tag.types.js +0 -0
- /package/{tag → cjs/tag}/tagButton.d.ts +0 -0
- /package/{tag → cjs/tag}/tagIcon.d.ts +0 -0
- /package/{tag → cjs/tag}/tagText.d.ts +0 -0
- /package/{tag → cjs/tag}/theme.d.ts +0 -0
- /package/{textarea → cjs/textarea}/helpers.d.ts +0 -0
- /package/{textarea → cjs/textarea}/index.d.ts +0 -0
- /package/{textarea → cjs/textarea}/textarea.d.ts +0 -0
- /package/{textarea → cjs/textarea}/textarea.types.d.ts +0 -0
- /package/{textarea → cjs/textarea}/textarea.types.js +0 -0
- /package/{textarea → cjs/textarea}/theme.d.ts +0 -0
- /package/{theme → cjs/theme}/components.d.ts +0 -0
- /package/{theme → cjs/theme}/defaultTheme.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/animations.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/animations.js +0 -0
- /package/{theme → cjs/theme}/foundations/borders.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/borders.js +0 -0
- /package/{theme → cjs/theme}/foundations/colors.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/colors.js +0 -0
- /package/{theme → cjs/theme}/foundations/durations.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/durations.js +0 -0
- /package/{theme → cjs/theme}/foundations/fontSizes.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/fontSizes.js +0 -0
- /package/{theme → cjs/theme}/foundations/fontWeights.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/fontWeights.js +0 -0
- /package/{theme → cjs/theme}/foundations/fonts.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateColumns.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateColumns.js +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateRows.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/gridTemplateRows.js +0 -0
- /package/{theme → cjs/theme}/foundations/index.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/radii.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/radii.js +0 -0
- /package/{theme → cjs/theme}/foundations/ringWidths.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/ringWidths.js +0 -0
- /package/{theme → cjs/theme}/foundations/screens.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/screens.js +0 -0
- /package/{theme → cjs/theme}/foundations/shadows.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/sizes.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/sizes.js +0 -0
- /package/{theme → cjs/theme}/foundations/spaces.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/spaces.js +0 -0
- /package/{theme → cjs/theme}/foundations/timingFunctions.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/timingFunctions.js +0 -0
- /package/{theme → cjs/theme}/foundations/transformers.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/transforms.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/transforms.js +0 -0
- /package/{theme → cjs/theme}/foundations/transitions.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/transitions.js +0 -0
- /package/{theme → cjs/theme}/foundations/zIndices.d.ts +0 -0
- /package/{theme → cjs/theme}/foundations/zIndices.js +0 -0
- /package/{theme → cjs/theme}/index.d.ts +0 -0
- /package/{theme → cjs/theme}/types.d.ts +0 -0
- /package/{theme → cjs/theme}/types.js +0 -0
- /package/{utils → cjs/utils}/assertion.d.ts +0 -0
- /package/{utils → cjs/utils}/function.d.ts +0 -0
- /package/{utils → cjs/utils}/index.d.ts +0 -0
- /package/{utils → cjs/utils}/number.d.ts +0 -0
- /package/{utils → cjs/utils}/object.d.ts +0 -0
- /package/{utils → cjs/utils}/styles.d.ts +0 -0
- /package/{utils → cjs/utils}/types.d.ts +0 -0
- /package/{utils → cjs/utils}/types.js +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'0': string;
|
|
3
|
+
'1': string;
|
|
4
|
+
'2': string;
|
|
5
|
+
'3': string;
|
|
6
|
+
'4': string;
|
|
7
|
+
t1: string;
|
|
8
|
+
t2: string;
|
|
9
|
+
t3: string;
|
|
10
|
+
t4: string;
|
|
11
|
+
r1: string;
|
|
12
|
+
r2: string;
|
|
13
|
+
r3: string;
|
|
14
|
+
r4: string;
|
|
15
|
+
l1: string;
|
|
16
|
+
l2: string;
|
|
17
|
+
l3: string;
|
|
18
|
+
l4: string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { hexToRGBA } from '../../utils';
|
|
2
|
+
import { grey } from './colors';
|
|
3
|
+
const greyLight = hexToRGBA(grey[80], 0.4);
|
|
4
|
+
const greyDark = hexToRGBA(grey[80], 0.6);
|
|
5
|
+
export default {
|
|
6
|
+
'0': `0 0 0 0 #fff`,
|
|
7
|
+
'1': `0 2px 5px 0 ${greyLight}`,
|
|
8
|
+
'2': `0 4px 12px 0 ${greyLight}`,
|
|
9
|
+
'3': `0 7px 20px 0 ${greyDark}`,
|
|
10
|
+
'4': `0 12px 30px 0 ${greyDark}`,
|
|
11
|
+
t1: `0 -2px 5px 0 ${greyLight}`,
|
|
12
|
+
t2: `0 -4px 12px 0 ${greyLight}`,
|
|
13
|
+
t3: `0 -7px 20px 0 ${greyDark}`,
|
|
14
|
+
t4: `0 -12px 30px 0 ${greyDark}`,
|
|
15
|
+
r1: `2px 0 5px 0 ${greyLight}`,
|
|
16
|
+
r2: `4px 0 12px 0 ${greyLight}`,
|
|
17
|
+
r3: `7px 0 20px 0 ${greyDark}`,
|
|
18
|
+
r4: `12px 0 30px 0 ${greyDark}`,
|
|
19
|
+
l1: `-2px 0 5px 0 ${greyLight}`,
|
|
20
|
+
l2: `-4px 0 12px 0 ${greyLight}`,
|
|
21
|
+
l3: `-7px 0 20px 0 ${greyDark}`,
|
|
22
|
+
l4: `-12px 0 30px 0 ${greyDark}`
|
|
23
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { getColor } from '@xstyled/system';
|
|
2
|
+
export default {
|
|
3
|
+
border: (value, { props }) => {
|
|
4
|
+
if (typeof value === 'number')
|
|
5
|
+
return `${value}px solid`;
|
|
6
|
+
const values = value.split(' ');
|
|
7
|
+
const [width, style = '', color] = values;
|
|
8
|
+
const colorValue = getColor(color)(props) ?? '';
|
|
9
|
+
return `${width} ${style} ${colorValue}`;
|
|
10
|
+
},
|
|
11
|
+
space: (value) => {
|
|
12
|
+
return typeof value === 'string' ? value : `${value * 8}px`;
|
|
13
|
+
}
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { default as components } from './components';
|
|
2
|
+
export { default, default as defaultTheme } from './defaultTheme';
|
|
3
|
+
export { default as foundations } from './foundations';
|
|
4
|
+
export { default as animations } from './foundations/animations';
|
|
5
|
+
export { default as borders } from './foundations/borders';
|
|
6
|
+
export { default as colors } from './foundations/colors';
|
|
7
|
+
export { default as durations } from './foundations/durations';
|
|
8
|
+
export { default as fonts } from './foundations/fonts';
|
|
9
|
+
export { default as fontSizes } from './foundations/fontSizes';
|
|
10
|
+
export { default as fontWeights } from './foundations/fontWeights';
|
|
11
|
+
export { default as radii } from './foundations/radii';
|
|
12
|
+
export { default as ringWidths } from './foundations/ringWidths';
|
|
13
|
+
export { default as screens } from './foundations/screens';
|
|
14
|
+
export { default as shadows } from './foundations/shadows';
|
|
15
|
+
export { default as sizes } from './foundations/sizes';
|
|
16
|
+
export { default as spaces } from './foundations/spaces';
|
|
17
|
+
export { default as transforms } from './foundations/transforms';
|
|
18
|
+
export { default as transitions } from './foundations/transitions';
|
|
19
|
+
export { default as zIndices } from './foundations/zIndices';
|
|
20
|
+
export * from './types';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { default as components } from './components';
|
|
2
|
+
export { default, default as defaultTheme } from './defaultTheme';
|
|
3
|
+
export { default as foundations } from './foundations';
|
|
4
|
+
export { default as animations } from './foundations/animations';
|
|
5
|
+
export { default as borders } from './foundations/borders';
|
|
6
|
+
export { default as colors } from './foundations/colors';
|
|
7
|
+
export { default as durations } from './foundations/durations';
|
|
8
|
+
export { default as fonts } from './foundations/fonts';
|
|
9
|
+
export { default as fontSizes } from './foundations/fontSizes';
|
|
10
|
+
export { default as fontWeights } from './foundations/fontWeights';
|
|
11
|
+
export { default as radii } from './foundations/radii';
|
|
12
|
+
export { default as ringWidths } from './foundations/ringWidths';
|
|
13
|
+
export { default as screens } from './foundations/screens';
|
|
14
|
+
export { default as shadows } from './foundations/shadows';
|
|
15
|
+
export { default as sizes } from './foundations/sizes';
|
|
16
|
+
export { default as spaces } from './foundations/spaces';
|
|
17
|
+
export { default as transforms } from './foundations/transforms';
|
|
18
|
+
export { default as transitions } from './foundations/transitions';
|
|
19
|
+
export { default as zIndices } from './foundations/zIndices';
|
|
20
|
+
export * from './types';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import defaultTheme from './defaultTheme';
|
|
2
|
+
export declare type Animation = keyof VuiTheme['animations'];
|
|
3
|
+
export declare type Border = keyof VuiTheme['borders'];
|
|
4
|
+
export declare type Color = keyof VuiTheme['colors'];
|
|
5
|
+
export declare type Component = keyof VuiTheme['components'];
|
|
6
|
+
export declare type Font = keyof VuiTheme['fonts'];
|
|
7
|
+
export declare type FontSize = keyof VuiTheme['fontSizes'];
|
|
8
|
+
export declare type FontWeight = keyof VuiTheme['fontWeights'];
|
|
9
|
+
export declare type GridTemplateColumn = keyof VuiTheme['gridTemplateColumns'];
|
|
10
|
+
export declare type GridTemplateRow = keyof VuiTheme['gridTemplateRows'];
|
|
11
|
+
export declare type Radius = keyof VuiTheme['radii'];
|
|
12
|
+
export declare type RingWidth = keyof VuiTheme['ringWidths'];
|
|
13
|
+
export declare type Screen = keyof VuiTheme['screens'];
|
|
14
|
+
export declare type Shadow = keyof VuiTheme['shadows'];
|
|
15
|
+
export declare type Size = keyof VuiTheme['sizes'];
|
|
16
|
+
export declare type Space = keyof VuiTheme['spaces'];
|
|
17
|
+
export declare type Transform = keyof VuiTheme['transforms'];
|
|
18
|
+
export declare type TransitionDuration = keyof VuiTheme['durations'];
|
|
19
|
+
export declare type ZIndex = keyof VuiTheme['zIndices'];
|
|
20
|
+
export declare type VuiThemeDefaults = typeof defaultTheme;
|
|
21
|
+
/** Can be extended to add new properties to the theme or override default ones */
|
|
22
|
+
export interface VuiThemeExtensions {
|
|
23
|
+
}
|
|
24
|
+
/** Defines variant and size types of each component connected to the theme. */
|
|
25
|
+
export declare type ThemingProps<ThemeComponent extends string = string> = {
|
|
26
|
+
variant?: ThemeComponent extends Component ? keyof VuiTheme['components'][ThemeComponent]['variants'] : string;
|
|
27
|
+
size?: ThemeComponent extends keyof VuiTheme['components'] ? keyof VuiTheme['components'][ThemeComponent]['sizes'] : string;
|
|
28
|
+
};
|
|
29
|
+
/** VUI theme definition object, containing default values and extensions */
|
|
30
|
+
export declare type VuiTheme = VuiThemeDefaults & VuiThemeExtensions;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Dict } from './types';
|
|
3
|
+
/** Is value an array. */
|
|
4
|
+
export declare function isArray<T>(value: any): value is T[];
|
|
5
|
+
/** Is value a function. */
|
|
6
|
+
export declare function isFunction<T extends Function = Function>(value: any): value is T;
|
|
7
|
+
/** Is value JSX / React Element */
|
|
8
|
+
export declare function isJsx<T = JSX.Element>(value: any): value is T;
|
|
9
|
+
/** Is value a number. */
|
|
10
|
+
export declare function isNumber(value: any): value is number;
|
|
11
|
+
/** Is value a regular object (functions, arrays and React elements excluded). */
|
|
12
|
+
export declare function isObject<T = Dict>(value: any): value is T;
|
|
13
|
+
/** Is value a valid ReactText - string or number. */
|
|
14
|
+
export declare function isReactText(value: any): value is React.ReactText;
|
|
15
|
+
/** Is value a string. */
|
|
16
|
+
export declare function isString(value: any): value is string;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
/** Is value an array. */
|
|
3
|
+
export function isArray(value) {
|
|
4
|
+
return Array.isArray(value);
|
|
5
|
+
}
|
|
6
|
+
/** Is value a function. */
|
|
7
|
+
export function isFunction(value) {
|
|
8
|
+
return typeof value === 'function';
|
|
9
|
+
}
|
|
10
|
+
/** Is value JSX / React Element */
|
|
11
|
+
export function isJsx(value) {
|
|
12
|
+
return React.isValidElement(value);
|
|
13
|
+
}
|
|
14
|
+
/** Is value a number. */
|
|
15
|
+
export function isNumber(value) {
|
|
16
|
+
return typeof value === 'number';
|
|
17
|
+
}
|
|
18
|
+
/** Is value a regular object (functions, arrays and React elements excluded). */
|
|
19
|
+
export function isObject(value) {
|
|
20
|
+
return !!value && typeof value === 'object' && !isFunction(value) && !isArray(value) && !React.isValidElement(value);
|
|
21
|
+
}
|
|
22
|
+
/** Is value a valid ReactText - string or number. */
|
|
23
|
+
export function isReactText(value) {
|
|
24
|
+
return isNumber(value) || isString(value);
|
|
25
|
+
}
|
|
26
|
+
/** Is value a string. */
|
|
27
|
+
export function isString(value) {
|
|
28
|
+
return Object.prototype.toString.call(value) === '[object String]';
|
|
29
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AnyFunction } from './types';
|
|
2
|
+
/** Calls each provided function with the same set of arguments. Useful for merging multiple callbacks. */
|
|
3
|
+
export declare function callAll(...fns: (AnyFunction | undefined)[]): (...args: any[]) => void;
|
|
4
|
+
export declare function noop(): void;
|
|
5
|
+
/**
|
|
6
|
+
* If given value is a function, it's called with any additional arguments provided.
|
|
7
|
+
* Otherwise, the provided value is returned directly.
|
|
8
|
+
*/
|
|
9
|
+
export declare function runIfFn<T, U>(valueOrFn: T | ((...fnArgs: U[]) => T), ...args: U[]): T;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { isFunction } from './assertion';
|
|
2
|
+
/** Calls each provided function with the same set of arguments. Useful for merging multiple callbacks. */
|
|
3
|
+
export function callAll(...fns) {
|
|
4
|
+
return (...args) => fns.forEach(fn => typeof fn === 'function' && fn(...args));
|
|
5
|
+
}
|
|
6
|
+
// Used as a safe default to be called when no function is provided.
|
|
7
|
+
export function noop() { }
|
|
8
|
+
/**
|
|
9
|
+
* If given value is a function, it's called with any additional arguments provided.
|
|
10
|
+
* Otherwise, the provided value is returned directly.
|
|
11
|
+
*/
|
|
12
|
+
export function runIfFn(valueOrFn, ...args) {
|
|
13
|
+
return isFunction(valueOrFn) ? valueOrFn(...args) : valueOrFn;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Dict } from './types';
|
|
2
|
+
/** Removes keys from an object if their value is undefined. */
|
|
3
|
+
export declare function filterUndefined<T = Dict>(object: T): Partial<T>;
|
|
4
|
+
/**
|
|
5
|
+
* Recursively deep merges two objects in an immutable fashion, following these rules:
|
|
6
|
+
* - Key exists in target and both keys are objects => merge
|
|
7
|
+
* - Key exists in target and both keys are arrays => concat (not unique)
|
|
8
|
+
* - Key isn't an object, an array or doesn't exist in target => override
|
|
9
|
+
*/
|
|
10
|
+
export declare function merge<S1 extends Dict>(s1: S1): S1;
|
|
11
|
+
export declare function merge<S1 extends Dict, S2 extends Dict>(s1: S1, s2: S2): S1 & S2;
|
|
12
|
+
export declare function merge<S1 extends Dict, S2 extends Dict, S3 extends Dict>(s1: S1, s2: S2, s3: S3): S1 & S2 & S3;
|
|
13
|
+
export declare function merge<S1 extends Dict, S2 extends Dict, S3 extends Dict, S4 extends Dict>(s1: S1, s2: S2, s3: S3, s4: S4): S1 & S2 & S3 & S4;
|
|
14
|
+
/**
|
|
15
|
+
* Returns the items of an object that meet the condition specified in a callback function.
|
|
16
|
+
*/
|
|
17
|
+
export declare function objectFilter<T extends Dict, K extends keyof T>(object: T, fn: (value: any, key: string, object: T) => boolean): Partial<T>;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { isArray, isObject } from './assertion';
|
|
2
|
+
/** Removes keys from an object if their value is undefined. */
|
|
3
|
+
export function filterUndefined(object) {
|
|
4
|
+
return objectFilter(object, val => val !== null && val !== undefined);
|
|
5
|
+
}
|
|
6
|
+
export function merge(...sources) {
|
|
7
|
+
const target = {};
|
|
8
|
+
sources.forEach(source => {
|
|
9
|
+
if (!isObject(source))
|
|
10
|
+
return;
|
|
11
|
+
Object.keys(source).forEach(key => {
|
|
12
|
+
if (key === '__proto__')
|
|
13
|
+
return;
|
|
14
|
+
if (isObject(target[key]) && isObject(source[key])) {
|
|
15
|
+
// Merge objects
|
|
16
|
+
target[key] = merge(target[key], source[key]);
|
|
17
|
+
}
|
|
18
|
+
else if (isArray(target[key]) && isArray(source[key])) {
|
|
19
|
+
// Concat arrays
|
|
20
|
+
target[key] = target[key].concat(source[key]);
|
|
21
|
+
}
|
|
22
|
+
else if (source[key] !== undefined) {
|
|
23
|
+
// Pick source if it exists
|
|
24
|
+
target[key] = source[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
return target;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns the items of an object that meet the condition specified in a callback function.
|
|
32
|
+
*/
|
|
33
|
+
export function objectFilter(object, fn) {
|
|
34
|
+
const result = {};
|
|
35
|
+
Object.keys(object).forEach(key => {
|
|
36
|
+
const value = object[key];
|
|
37
|
+
const shouldPass = fn(value, key, object);
|
|
38
|
+
if (shouldPass) {
|
|
39
|
+
result[key] = value;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
return result;
|
|
43
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import React, { RefObject } from 'react';
|
|
2
|
+
import { AnyFunction, CreateContextOptions, CreateContextReturn } from './types';
|
|
3
|
+
declare type ReactRef<T> = React.Ref<T> | React.RefObject<T> | React.MutableRefObject<T>;
|
|
4
|
+
/**
|
|
5
|
+
* Assigns given value to the provided ref.
|
|
6
|
+
* Supports ref as function (e.g. useState) and classic ref (e.g. useRef).
|
|
7
|
+
*/
|
|
8
|
+
export declare function assignRef<T = any>(ref: ReactRef<T> | undefined, value: T): void;
|
|
9
|
+
/** Generic function to create new Context and context access hook. */
|
|
10
|
+
export declare function createContext<ContextType>(options?: CreateContextOptions): CreateContextReturn<ContextType>;
|
|
11
|
+
/** Assigns a node to all provided refs. */
|
|
12
|
+
export declare function mergeRefs<T>(...refs: (ReactRef<T> | undefined)[]): (node: T | null) => void;
|
|
13
|
+
/** Returns given callback with a stable reference, but keeps it updated internally. */
|
|
14
|
+
export declare function useCallbackRef<T extends AnyFunction>(callback?: T): T;
|
|
15
|
+
/**
|
|
16
|
+
* Triggers given callback when an event happens outside of a given element.
|
|
17
|
+
* Event listeners are attached to the window object.
|
|
18
|
+
* @param ref - element to check click position for
|
|
19
|
+
* @param callback - function triggered on outside click
|
|
20
|
+
* @param events - array of events listened for (default: ['mousedown', 'touchstart'])
|
|
21
|
+
*/
|
|
22
|
+
export declare function useClickOutside(ref: RefObject<HTMLElement | null> | RefObject<HTMLElement | null>[], callback?: (event: Event) => void, events?: string[]): void;
|
|
23
|
+
export declare type UseControlledProps<T> = {
|
|
24
|
+
value?: T;
|
|
25
|
+
defaultValue?: T;
|
|
26
|
+
onChange?: (value: T) => void;
|
|
27
|
+
};
|
|
28
|
+
/** Supports state management in components that can be controlled or uncontrolled. */
|
|
29
|
+
export declare function useControlled<T>(props: UseControlledProps<T>): [T, React.Dispatch<React.SetStateAction<T>>, {
|
|
30
|
+
isControlled: boolean;
|
|
31
|
+
reset: () => void;
|
|
32
|
+
}];
|
|
33
|
+
/** Returns an array with each prefix added to the id. Useful for aria attributes in compound components. */
|
|
34
|
+
export declare function useIds(id: string, prefixes: string[]): string[];
|
|
35
|
+
/**
|
|
36
|
+
* Provides a function, which can be called to check if component using the hook is mounted or unmounted.
|
|
37
|
+
*/
|
|
38
|
+
export declare function useIsMounted(): () => boolean;
|
|
39
|
+
export {};
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
2
|
+
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
|
3
|
+
import { isArray, isFunction } from './assertion';
|
|
4
|
+
import { runIfFn } from './function';
|
|
5
|
+
/**
|
|
6
|
+
* Assigns given value to the provided ref.
|
|
7
|
+
* Supports ref as function (e.g. useState) and classic ref (e.g. useRef).
|
|
8
|
+
*/
|
|
9
|
+
export function assignRef(ref, value) {
|
|
10
|
+
if (ref === null || ref === undefined)
|
|
11
|
+
return;
|
|
12
|
+
if (isFunction(ref)) {
|
|
13
|
+
ref(value);
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
try {
|
|
17
|
+
// @ts-ignore - TS complains about 'current' being read-only
|
|
18
|
+
ref.current = value;
|
|
19
|
+
}
|
|
20
|
+
catch (error) {
|
|
21
|
+
throw new Error(`Cannot assign value '${value}' to ref '${ref}'`);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
/** Generic function to create new Context and context access hook. */
|
|
25
|
+
export function createContext(options = {}) {
|
|
26
|
+
const { errorMessage = 'Context can only be accessed by components wrapped with the Provider.', isOptional, name } = options;
|
|
27
|
+
const Context = React.createContext(undefined);
|
|
28
|
+
Context.displayName = name;
|
|
29
|
+
function useContext() {
|
|
30
|
+
const context = React.useContext(Context);
|
|
31
|
+
if (!isOptional && context === undefined)
|
|
32
|
+
throw new Error(errorMessage);
|
|
33
|
+
return context;
|
|
34
|
+
}
|
|
35
|
+
return [Context.Provider, useContext];
|
|
36
|
+
}
|
|
37
|
+
/** Assigns a node to all provided refs. */
|
|
38
|
+
export function mergeRefs(...refs) {
|
|
39
|
+
return (node) => {
|
|
40
|
+
refs.forEach(ref => assignRef(ref, node));
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
// TODO: Bring it from UI-Utils
|
|
44
|
+
/** Returns given callback with a stable reference, but keeps it updated internally. */
|
|
45
|
+
export function useCallbackRef(callback) {
|
|
46
|
+
const ref = useRef(callback);
|
|
47
|
+
ref.current = callback;
|
|
48
|
+
return useCallback(((...args) => ref.current?.(...args)), []);
|
|
49
|
+
}
|
|
50
|
+
const defaultEvents = ['mousedown', 'touchstart'];
|
|
51
|
+
// TODO: Bring it from UI-Utils
|
|
52
|
+
/**
|
|
53
|
+
* Triggers given callback when an event happens outside of a given element.
|
|
54
|
+
* Event listeners are attached to the window object.
|
|
55
|
+
* @param ref - element to check click position for
|
|
56
|
+
* @param callback - function triggered on outside click
|
|
57
|
+
* @param events - array of events listened for (default: ['mousedown', 'touchstart'])
|
|
58
|
+
*/
|
|
59
|
+
export function useClickOutside(ref, callback, events = defaultEvents) {
|
|
60
|
+
const eventsString = JSON.stringify(events);
|
|
61
|
+
const listener = useCallbackRef((ev) => {
|
|
62
|
+
const refs = isArray(ref) ? ref : [ref];
|
|
63
|
+
const target = ev.target;
|
|
64
|
+
const isClickOutside = refs.every(ref => ref.current && !ref.current.contains(target));
|
|
65
|
+
isClickOutside && callback?.(ev);
|
|
66
|
+
});
|
|
67
|
+
useEffect(() => {
|
|
68
|
+
const events = JSON.parse(eventsString);
|
|
69
|
+
events.forEach(event => window.addEventListener(event, listener));
|
|
70
|
+
return () => {
|
|
71
|
+
events.forEach(event => window.removeEventListener(event, listener));
|
|
72
|
+
};
|
|
73
|
+
}, [eventsString, ref]);
|
|
74
|
+
}
|
|
75
|
+
// TODO: Move to ui-utils
|
|
76
|
+
/** Supports state management in components that can be controlled or uncontrolled. */
|
|
77
|
+
export function useControlled(props) {
|
|
78
|
+
const { defaultValue, onChange: onChangeProp, value: valueProp } = props;
|
|
79
|
+
const [valueState, setValue] = useState(defaultValue);
|
|
80
|
+
const isControlled = valueProp !== undefined;
|
|
81
|
+
const value = isControlled ? valueProp : valueState;
|
|
82
|
+
/** Triggers the external callback with the new value. In uncontrolled mode, updates state. */
|
|
83
|
+
const onChange = useCallbackRef((next) => {
|
|
84
|
+
const newValue = runIfFn(next);
|
|
85
|
+
if (!isControlled)
|
|
86
|
+
setValue(newValue);
|
|
87
|
+
onChangeProp?.(newValue);
|
|
88
|
+
});
|
|
89
|
+
/** In uncontrolled mode, sets the state to the default value. */
|
|
90
|
+
const reset = useCallbackRef(() => {
|
|
91
|
+
!isControlled && defaultValue && onChange(defaultValue);
|
|
92
|
+
});
|
|
93
|
+
return [value, onChange, { isControlled, reset }];
|
|
94
|
+
}
|
|
95
|
+
/** Returns an array with each prefix added to the id. Useful for aria attributes in compound components. */
|
|
96
|
+
export function useIds(id, prefixes) {
|
|
97
|
+
return prefixes.map(prefix => `${prefix}-${id}`);
|
|
98
|
+
}
|
|
99
|
+
// TODO: Bring it from ui-utils
|
|
100
|
+
/**
|
|
101
|
+
* Provides a function, which can be called to check if component using the hook is mounted or unmounted.
|
|
102
|
+
*/
|
|
103
|
+
export function useIsMounted() {
|
|
104
|
+
const isMounted = useRef(false);
|
|
105
|
+
useEffect(() => {
|
|
106
|
+
isMounted.current = true;
|
|
107
|
+
return () => {
|
|
108
|
+
isMounted.current = false;
|
|
109
|
+
};
|
|
110
|
+
}, []);
|
|
111
|
+
return useCallback(() => isMounted.current, []);
|
|
112
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/** Concatenates individual className arguments and returns a single string. */
|
|
2
|
+
export declare function cs(...classNames: any[]): string;
|
|
3
|
+
/** Converts hex color value to rgb with optional alpha property. */
|
|
4
|
+
export declare function hexToRGBA(hex: string, alpha?: number): string;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/** Concatenates individual className arguments and returns a single string. */
|
|
2
|
+
export function cs(...classNames) {
|
|
3
|
+
return classNames.filter(Boolean).join(' ');
|
|
4
|
+
}
|
|
5
|
+
/** Converts hex color value to rgb with optional alpha property. */
|
|
6
|
+
export function hexToRGBA(hex, alpha) {
|
|
7
|
+
let hexStr = hex;
|
|
8
|
+
if (hexStr.charAt(0) === '#') {
|
|
9
|
+
hexStr = hexStr.slice(1);
|
|
10
|
+
}
|
|
11
|
+
if (hexStr.length < 4) {
|
|
12
|
+
hexStr = hexStr
|
|
13
|
+
.split('')
|
|
14
|
+
.map(char => char + char)
|
|
15
|
+
.join('');
|
|
16
|
+
}
|
|
17
|
+
const r = parseInt(hexStr.slice(0, 2), 16);
|
|
18
|
+
const g = parseInt(hexStr.slice(2, 4), 16);
|
|
19
|
+
const b = parseInt(hexStr.slice(4, 6), 16);
|
|
20
|
+
if (alpha !== undefined) {
|
|
21
|
+
return `rgba(${r}, ${g}, ${b}, ${alpha})`;
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
return `rgb(${r}, ${g}, ${b})`;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React, { ComponentPropsWithoutRef, ComponentPropsWithRef, ElementType } from 'react';
|
|
2
|
+
/** Type for a a no-op function stub. */
|
|
3
|
+
export declare type AnyFunction = (...args: any[]) => any;
|
|
4
|
+
/** Type for any number without breaking autocompletion. */
|
|
5
|
+
export declare type AnyNumber = number & {};
|
|
6
|
+
/** Type for any string without breaking autocompletion. */
|
|
7
|
+
export declare type AnyString = string & {};
|
|
8
|
+
/** Type of change event defaulted to input element */
|
|
9
|
+
export declare type ChangeEvent<T = HTMLInputElement> = React.ChangeEvent<T>;
|
|
10
|
+
/** Type of change event handler defaulted to input element */
|
|
11
|
+
export declare type ChangeEventHandler<T = HTMLInputElement> = React.ChangeEventHandler<T>;
|
|
12
|
+
export declare type CreateContextOptions = {
|
|
13
|
+
/** Message displayed when context is used outside of the provider */
|
|
14
|
+
errorMessage?: string;
|
|
15
|
+
/** Accessing context outside of provider won't throw error */
|
|
16
|
+
isOptional?: boolean;
|
|
17
|
+
/** Name of the context */
|
|
18
|
+
name?: string;
|
|
19
|
+
};
|
|
20
|
+
/** Return value of the createContext function. */
|
|
21
|
+
export declare type CreateContextReturn<T> = [React.Provider<T>, () => T];
|
|
22
|
+
/** Basic dictionary typing. */
|
|
23
|
+
export declare type Dict<T = any> = Record<string, T>;
|
|
24
|
+
/** Classic application's environment names. */
|
|
25
|
+
export declare type Environment = 'Prod' | 'Stag' | 'Test';
|
|
26
|
+
/** Type of blur/focus event defaulted to any html element */
|
|
27
|
+
export declare type FocusEvent<T = HTMLElement> = React.FocusEvent<T>;
|
|
28
|
+
/** Type of blur/focus event handler defaulted to any html element */
|
|
29
|
+
export declare type FocusEventHandler<T = HTMLElement> = React.FocusEventHandler<T>;
|
|
30
|
+
/** Type of keyboard event defaulted to any html element */
|
|
31
|
+
export declare type KeyboardEvent<T = HTMLElement> = React.KeyboardEvent<T>;
|
|
32
|
+
/** Type of keyboard event handler defaulted to any html element */
|
|
33
|
+
export declare type KeyboardEventHandler<T = HTMLElement> = React.KeyboardEventHandler<T>;
|
|
34
|
+
/** Type of mouse event defaulted to any html element */
|
|
35
|
+
export declare type MouseEvent<T = HTMLElement> = React.MouseEvent<T>;
|
|
36
|
+
/** Type of mouse event handler defaulted to any html element */
|
|
37
|
+
export declare type MouseEventHandler<T = HTMLElement> = React.MouseEventHandler<T>;
|
|
38
|
+
/** Merges component/element base props and custom props */
|
|
39
|
+
export declare type PropsOf<C extends ElementType, Props = {}> = RightJoinProps<ComponentPropsWithoutRef<C>, Props>;
|
|
40
|
+
/** Merges component/element base props and custom props including ref */
|
|
41
|
+
export declare type RefPropsOf<C extends ElementType, Props = {}> = RightJoinProps<ComponentPropsWithRef<C>, Props>;
|
|
42
|
+
/** Render props of component's children. */
|
|
43
|
+
export declare type RenderProps<P> = React.ReactNode | ((props: P) => React.ReactNode);
|
|
44
|
+
/** Merges props definitions, overriding source keys */
|
|
45
|
+
export declare type RightJoinProps<SourceProps, OverrideProps> = Omit<SourceProps, keyof OverrideProps> & OverrideProps;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veracity/vui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0-beta.0",
|
|
4
4
|
"description": "Veracity UI React components library based on Styled Components and @xstyled",
|
|
5
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "./esm/index.js",
|
|
7
|
+
"main": "./cjs/index.js",
|
|
8
|
+
"sideEffects": false,
|
|
6
9
|
"author": "Veracity",
|
|
7
10
|
"license": "UNLICENSED",
|
|
8
11
|
"keywords": [
|
|
@@ -24,7 +27,7 @@
|
|
|
24
27
|
"tippy.js": "^6.3.7"
|
|
25
28
|
},
|
|
26
29
|
"peerDependencies": {
|
|
27
|
-
"react": "^17.0.
|
|
28
|
-
"react-dom": "^17.0.
|
|
30
|
+
"react": "^17.0.2",
|
|
31
|
+
"react-dom": "^17.0.2"
|
|
29
32
|
}
|
|
30
33
|
}
|