ab-ui-library 1.0.1
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/README.md +76 -0
- package/assets/images/ArCa.svg +3 -0
- package/assets/images/Avatar.png +0 -0
- package/assets/images/Mastercard.svg +5 -0
- package/assets/images/Visa.svg +3 -0
- package/assets/images/avatar.jpg +0 -0
- package/assets/images/cards-img.png +0 -0
- package/assets/images/illustrations.svg +15 -0
- package/assets/images/image-placeholder.png +0 -0
- package/assets/images/logo-closed.svg +8 -0
- package/assets/images/logo.svg +14 -0
- package/assets/images/no-result.svg +35 -0
- package/assets/styles/helpers/_mixin.scss +718 -0
- package/assets/styles/styles.css +9841 -0
- package/assets/styles/styles.scss +1 -0
- package/components/AdvancedTable/AdvancedPagination.d.ts +7 -0
- package/components/AdvancedTable/AdvancedPagination.js +221 -0
- package/components/AdvancedTable/ColumnHeader.d.ts +7 -0
- package/components/AdvancedTable/ColumnHeader.js +61 -0
- package/components/AdvancedTable/ColumnSettings.d.ts +6 -0
- package/components/AdvancedTable/ColumnSettings.js +93 -0
- package/components/AdvancedTable/IndeterminateCheckbox.d.ts +13 -0
- package/components/AdvancedTable/IndeterminateCheckbox.js +55 -0
- package/components/AdvancedTable/Table.d.ts +2 -0
- package/components/AdvancedTable/Table.js +129 -0
- package/components/AdvancedTable/index.d.ts +3 -0
- package/components/AdvancedTable/index.js +94 -0
- package/components/AdvancedTable/types.d.ts +37 -0
- package/components/AdvancedTable/types.js +1 -0
- package/components/AdvancedTable/useTable.d.ts +18 -0
- package/components/AdvancedTable/useTable.js +211 -0
- package/components/Alert/Alert.d.ts +3 -0
- package/components/Alert/Alert.js +86 -0
- package/components/Alert/consts.d.ts +7 -0
- package/components/Alert/consts.js +18 -0
- package/components/Alert/index.d.ts +1 -0
- package/components/Alert/index.js +33 -0
- package/components/Alert/types.d.ts +19 -0
- package/components/Alert/types.js +1 -0
- package/components/Avatar/Avatar.d.ts +3 -0
- package/components/Avatar/Avatar.js +100 -0
- package/components/Avatar/AvatarGroup.d.ts +3 -0
- package/components/Avatar/AvatarGroup.js +102 -0
- package/components/Avatar/index.d.ts +2 -0
- package/components/Avatar/index.js +46 -0
- package/components/Avatar/types.d.ts +25 -0
- package/components/Avatar/types.js +1 -0
- package/components/Badge/Badge.d.ts +3 -0
- package/components/Badge/Badge.js +25 -0
- package/components/Badge/consts.d.ts +7 -0
- package/components/Badge/consts.js +13 -0
- package/components/Badge/index.d.ts +1 -0
- package/components/Badge/index.js +7 -0
- package/components/Badge/types.d.ts +6 -0
- package/components/Badge/types.js +1 -0
- package/components/Breadcrumb/Breadcrumb.d.ts +3 -0
- package/components/Breadcrumb/Breadcrumb.js +24 -0
- package/components/Breadcrumb/index.d.ts +1 -0
- package/components/Breadcrumb/index.js +2 -0
- package/components/Breadcrumb/types.d.ts +12 -0
- package/components/Breadcrumb/types.js +1 -0
- package/components/Button/Button.d.ts +3 -0
- package/components/Button/Button.js +80 -0
- package/components/Button/consts.d.ts +8 -0
- package/components/Button/consts.js +15 -0
- package/components/Button/index.d.ts +1 -0
- package/components/Button/index.js +30 -0
- package/components/Button/types.d.ts +22 -0
- package/components/Button/types.js +1 -0
- package/components/ButtonIcon/ButtonIcon.d.ts +3 -0
- package/components/ButtonIcon/ButtonIcon.js +66 -0
- package/components/ButtonIcon/consts.d.ts +4 -0
- package/components/ButtonIcon/consts.js +7 -0
- package/components/ButtonIcon/index.d.ts +1 -0
- package/components/ButtonIcon/index.js +30 -0
- package/components/ButtonIcon/types.d.ts +16 -0
- package/components/ButtonIcon/types.js +1 -0
- package/components/CardBody/CardBody.d.ts +3 -0
- package/components/CardBody/CardBody.js +61 -0
- package/components/CardBody/index.d.ts +1 -0
- package/components/CardBody/index.js +32 -0
- package/components/CardBody/types.d.ts +11 -0
- package/components/CardBody/types.js +1 -0
- package/components/CardSelect/CardSelect.d.ts +3 -0
- package/components/CardSelect/CardSelect.js +122 -0
- package/components/CardSelect/CardSelectGroup.d.ts +3 -0
- package/components/CardSelect/CardSelectGroup.js +95 -0
- package/components/CardSelect/components/CardAdditionalInfo.d.ts +8 -0
- package/components/CardSelect/components/CardAdditionalInfo.js +35 -0
- package/components/CardSelect/components/CardChips.d.ts +8 -0
- package/components/CardSelect/components/CardChips.js +28 -0
- package/components/CardSelect/components/CardDescription.d.ts +7 -0
- package/components/CardSelect/components/CardDescription.js +16 -0
- package/components/CardSelect/components/CardInput.d.ts +8 -0
- package/components/CardSelect/components/CardInput.js +51 -0
- package/components/CardSelect/components/index.d.ts +4 -0
- package/components/CardSelect/components/index.js +47 -0
- package/components/CardSelect/index.d.ts +2 -0
- package/components/CardSelect/index.js +52 -0
- package/components/CardSelect/types.d.ts +37 -0
- package/components/CardSelect/types.js +1 -0
- package/components/Cards/CardItem.d.ts +3 -0
- package/components/Cards/CardItem.js +41 -0
- package/components/Cards/index.d.ts +1 -0
- package/components/Cards/index.js +8 -0
- package/components/Cards/types.d.ts +15 -0
- package/components/Cards/types.js +1 -0
- package/components/Checkbox/Checkbox.d.ts +3 -0
- package/components/Checkbox/Checkbox.js +137 -0
- package/components/Checkbox/index.d.ts +1 -0
- package/components/Checkbox/index.js +26 -0
- package/components/Checkbox/types.d.ts +19 -0
- package/components/Checkbox/types.js +1 -0
- package/components/Chips/Chips.d.ts +3 -0
- package/components/Chips/Chips.js +55 -0
- package/components/Chips/consts.d.ts +7 -0
- package/components/Chips/consts.js +14 -0
- package/components/Chips/index.d.ts +1 -0
- package/components/Chips/index.js +12 -0
- package/components/Chips/types.d.ts +20 -0
- package/components/Chips/types.js +7 -0
- package/components/Collapse/CollapseGroup/CollapseGroup.d.ts +3 -0
- package/components/Collapse/CollapseGroup/CollapseGroup.js +77 -0
- package/components/Collapse/CollapseItem/CollapseItem.d.ts +3 -0
- package/components/Collapse/CollapseItem/CollapseItem.js +87 -0
- package/components/Collapse/index.d.ts +2 -0
- package/components/Collapse/index.js +17 -0
- package/components/Collapse/types.d.ts +38 -0
- package/components/Collapse/types.js +1 -0
- package/components/Container/Container.d.ts +3 -0
- package/components/Container/Container.js +10 -0
- package/components/Container/index.d.ts +1 -0
- package/components/Container/index.js +2 -0
- package/components/Container/types.d.ts +4 -0
- package/components/Container/types.js +1 -0
- package/components/Copy/Copy.d.ts +3 -0
- package/components/Copy/Copy.js +72 -0
- package/components/Copy/index.d.ts +1 -0
- package/components/Copy/index.js +32 -0
- package/components/Copy/types.d.ts +6 -0
- package/components/Copy/types.js +1 -0
- package/components/Counter/Counter.d.ts +3 -0
- package/components/Counter/Counter.js +121 -0
- package/components/Counter/index.d.ts +1 -0
- package/components/Counter/index.js +43 -0
- package/components/Counter/types.d.ts +9 -0
- package/components/Counter/types.js +1 -0
- package/components/DatePicker/CustomHeader/CustomHeader.d.ts +11 -0
- package/components/DatePicker/CustomHeader/CustomHeader.js +154 -0
- package/components/DatePicker/RangeDatePicker.d.ts +3 -0
- package/components/DatePicker/RangeDatePicker.js +161 -0
- package/components/DatePicker/SimpleDatePicker.d.ts +3 -0
- package/components/DatePicker/SimpleDatePicker.js +171 -0
- package/components/DatePicker/TimePicker.d.ts +3 -0
- package/components/DatePicker/TimePicker.js +119 -0
- package/components/DatePicker/hooks.d.ts +4 -0
- package/components/DatePicker/hooks.js +1954 -0
- package/components/DatePicker/index.d.ts +3 -0
- package/components/DatePicker/index.js +88 -0
- package/components/DatePicker/types.d.ts +44 -0
- package/components/DatePicker/types.js +7 -0
- package/components/Divider/Divider.d.ts +3 -0
- package/components/Divider/Divider.js +19 -0
- package/components/Divider/index.d.ts +1 -0
- package/components/Divider/index.js +3 -0
- package/components/Divider/types.d.ts +6 -0
- package/components/Divider/types.js +1 -0
- package/components/Empty/Empty.d.ts +3 -0
- package/components/Empty/Empty.js +63 -0
- package/components/Empty/index.d.ts +1 -0
- package/components/Empty/index.js +32 -0
- package/components/Empty/types.d.ts +9 -0
- package/components/Empty/types.js +1 -0
- package/components/FileUpload/FileUpload.d.ts +3 -0
- package/components/FileUpload/FileUpload.js +174 -0
- package/components/FileUpload/UploadItems.d.ts +3 -0
- package/components/FileUpload/UploadItems.js +81 -0
- package/components/FileUpload/index.d.ts +2 -0
- package/components/FileUpload/index.js +42 -0
- package/components/FileUpload/types.d.ts +35 -0
- package/components/FileUpload/types.js +7 -0
- package/components/FormContainer/FormContainer.d.ts +3 -0
- package/components/FormContainer/FormContainer.js +112 -0
- package/components/FormContainer/index.d.ts +1 -0
- package/components/FormContainer/index.js +33 -0
- package/components/FormContainer/types.d.ts +21 -0
- package/components/FormContainer/types.js +1 -0
- package/components/FormField/FormField.d.ts +3 -0
- package/components/FormField/FormField.js +89 -0
- package/components/FormField/index.d.ts +1 -0
- package/components/FormField/index.js +30 -0
- package/components/FormField/types.d.ts +9 -0
- package/components/FormField/types.js +1 -0
- package/components/FramedIcon/FramedIcon.d.ts +3 -0
- package/components/FramedIcon/FramedIcon.js +19 -0
- package/components/FramedIcon/consts.d.ts +7 -0
- package/components/FramedIcon/consts.js +12 -0
- package/components/FramedIcon/index.d.ts +1 -0
- package/components/FramedIcon/index.js +4 -0
- package/components/FramedIcon/types.d.ts +6 -0
- package/components/FramedIcon/types.js +1 -0
- package/components/Heading/Heading.d.ts +3 -0
- package/components/Heading/Heading.js +29 -0
- package/components/Heading/index.d.ts +1 -0
- package/components/Heading/index.js +5 -0
- package/components/Heading/types.d.ts +11 -0
- package/components/Heading/types.js +1 -0
- package/components/Image/Image.d.ts +3 -0
- package/components/Image/Image.js +33 -0
- package/components/Image/index.d.ts +1 -0
- package/components/Image/index.js +2 -0
- package/components/Image/types.d.ts +10 -0
- package/components/Image/types.js +1 -0
- package/components/Input/Input.d.ts +3 -0
- package/components/Input/Input.js +208 -0
- package/components/Input/InputPassword.d.ts +3 -0
- package/components/Input/InputPassword.js +215 -0
- package/components/Input/index.d.ts +2 -0
- package/components/Input/index.js +40 -0
- package/components/Input/types.d.ts +56 -0
- package/components/Input/types.js +1 -0
- package/components/ItemSelect/ItemSelect.d.ts +3 -0
- package/components/ItemSelect/ItemSelect.js +82 -0
- package/components/ItemSelect/ItemSelectGroup.d.ts +3 -0
- package/components/ItemSelect/ItemSelectGroup.js +69 -0
- package/components/ItemSelect/index.d.ts +2 -0
- package/components/ItemSelect/index.js +32 -0
- package/components/ItemSelect/types.d.ts +25 -0
- package/components/ItemSelect/types.js +1 -0
- package/components/Link/Link.d.ts +3 -0
- package/components/Link/Link.js +52 -0
- package/components/Link/index.d.ts +1 -0
- package/components/Link/index.js +5 -0
- package/components/Link/types.d.ts +20 -0
- package/components/Link/types.js +1 -0
- package/components/Menu/Menu.d.ts +3 -0
- package/components/Menu/Menu.js +146 -0
- package/components/Menu/NestedMenu.d.ts +3 -0
- package/components/Menu/NestedMenu.js +162 -0
- package/components/Menu/index.d.ts +2 -0
- package/components/Menu/index.js +56 -0
- package/components/Menu/types.d.ts +33 -0
- package/components/Menu/types.js +1 -0
- package/components/Modal/Modal.d.ts +3 -0
- package/components/Modal/Modal.js +145 -0
- package/components/Modal/ModalConfirmation.d.ts +3 -0
- package/components/Modal/ModalConfirmation.js +126 -0
- package/components/Modal/index.d.ts +2 -0
- package/components/Modal/index.js +41 -0
- package/components/Modal/types.d.ts +38 -0
- package/components/Modal/types.js +1 -0
- package/components/More/More.d.ts +3 -0
- package/components/More/More.js +64 -0
- package/components/More/index.d.ts +1 -0
- package/components/More/index.js +31 -0
- package/components/More/types.d.ts +10 -0
- package/components/More/types.js +1 -0
- package/components/OneTimePassword/OneTimePassword.d.ts +3 -0
- package/components/OneTimePassword/OneTimePassword.js +151 -0
- package/components/OneTimePassword/index.d.ts +1 -0
- package/components/OneTimePassword/index.js +42 -0
- package/components/OneTimePassword/types.d.ts +22 -0
- package/components/OneTimePassword/types.js +1 -0
- package/components/Pagination/Pagination.d.ts +3 -0
- package/components/Pagination/Pagination.js +60 -0
- package/components/Pagination/consts.d.ts +5 -0
- package/components/Pagination/consts.js +8 -0
- package/components/Pagination/index.d.ts +1 -0
- package/components/Pagination/index.js +11 -0
- package/components/Pagination/types.d.ts +15 -0
- package/components/Pagination/types.js +1 -0
- package/components/Popover/Popover.d.ts +3 -0
- package/components/Popover/Popover.js +97 -0
- package/components/Popover/index.d.ts +1 -0
- package/components/Popover/index.js +20 -0
- package/components/Popover/types.d.ts +13 -0
- package/components/Popover/types.js +1 -0
- package/components/Progress/Progress.d.ts +3 -0
- package/components/Progress/Progress.js +71 -0
- package/components/Progress/ProgressBarWrapper.d.ts +3 -0
- package/components/Progress/ProgressBarWrapper.js +16 -0
- package/components/Progress/index.d.ts +2 -0
- package/components/Progress/index.js +6 -0
- package/components/Progress/types.d.ts +14 -0
- package/components/Progress/types.js +1 -0
- package/components/ProgressStep/ProgressStep.d.ts +3 -0
- package/components/ProgressStep/ProgressStep.js +40 -0
- package/components/ProgressStep/Step.d.ts +3 -0
- package/components/ProgressStep/Step.js +102 -0
- package/components/ProgressStep/consts.d.ts +6 -0
- package/components/ProgressStep/consts.js +9 -0
- package/components/ProgressStep/index.d.ts +1 -0
- package/components/ProgressStep/index.js +13 -0
- package/components/ProgressStep/types.d.ts +31 -0
- package/components/ProgressStep/types.js +7 -0
- package/components/Radio/Radio.d.ts +3 -0
- package/components/Radio/Radio.js +59 -0
- package/components/Radio/RadioGroup.d.ts +3 -0
- package/components/Radio/RadioGroup.js +88 -0
- package/components/Radio/index.d.ts +2 -0
- package/components/Radio/index.js +29 -0
- package/components/Radio/types.d.ts +28 -0
- package/components/Radio/types.js +1 -0
- package/components/SVGIcons/IconAdd.d.ts +4 -0
- package/components/SVGIcons/IconAdd.js +30 -0
- package/components/SVGIcons/IconAddCircle.d.ts +4 -0
- package/components/SVGIcons/IconAddCircle.js +33 -0
- package/components/SVGIcons/IconAddCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconAddCircleFilled.js +33 -0
- package/components/SVGIcons/IconAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconAddFilled.js +30 -0
- package/components/SVGIcons/IconAlert.d.ts +4 -0
- package/components/SVGIcons/IconAlert.js +33 -0
- package/components/SVGIcons/IconAlertBadge.d.ts +4 -0
- package/components/SVGIcons/IconAlertBadge.js +33 -0
- package/components/SVGIcons/IconAlertBadgeFilled.d.ts +4 -0
- package/components/SVGIcons/IconAlertBadgeFilled.js +33 -0
- package/components/SVGIcons/IconAlertFilled.d.ts +4 -0
- package/components/SVGIcons/IconAlertFilled.js +33 -0
- package/components/SVGIcons/IconAm.d.ts +4 -0
- package/components/SVGIcons/IconAm.js +59 -0
- package/components/SVGIcons/IconAmd.d.ts +4 -0
- package/components/SVGIcons/IconAmd.js +30 -0
- package/components/SVGIcons/IconAmdFilled.d.ts +4 -0
- package/components/SVGIcons/IconAmdFilled.js +30 -0
- package/components/SVGIcons/IconApple.d.ts +4 -0
- package/components/SVGIcons/IconApple.js +33 -0
- package/components/SVGIcons/IconAppsList.d.ts +4 -0
- package/components/SVGIcons/IconAppsList.js +30 -0
- package/components/SVGIcons/IconAppsListFilled.d.ts +4 -0
- package/components/SVGIcons/IconAppsListFilled.js +30 -0
- package/components/SVGIcons/IconArrowDown.d.ts +4 -0
- package/components/SVGIcons/IconArrowDown.js +33 -0
- package/components/SVGIcons/IconArrowDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownFilled.js +33 -0
- package/components/SVGIcons/IconArrowDownLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownLeft.js +33 -0
- package/components/SVGIcons/IconArrowDownLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowDownload.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownload.js +33 -0
- package/components/SVGIcons/IconArrowDownloadFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownloadFilled.js +33 -0
- package/components/SVGIcons/IconArrowEnter.d.ts +4 -0
- package/components/SVGIcons/IconArrowEnter.js +30 -0
- package/components/SVGIcons/IconArrowEnterFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowEnterFilled.js +30 -0
- package/components/SVGIcons/IconArrowExit.d.ts +4 -0
- package/components/SVGIcons/IconArrowExit.js +30 -0
- package/components/SVGIcons/IconArrowExitFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExitFilled.js +30 -0
- package/components/SVGIcons/IconArrowExportLeftToRight.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportLeftToRight.js +33 -0
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +33 -0
- package/components/SVGIcons/IconArrowExportRightToLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportRightToLeft.js +33 -0
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowExportUp.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportUp.js +33 -0
- package/components/SVGIcons/IconArrowExportUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportUpFilled.js +33 -0
- package/components/SVGIcons/IconArrowImport.d.ts +4 -0
- package/components/SVGIcons/IconArrowImport.js +33 -0
- package/components/SVGIcons/IconArrowImportFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowImportFilled.js +33 -0
- package/components/SVGIcons/IconArrowLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowLeft.js +33 -0
- package/components/SVGIcons/IconArrowLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowRepeatAll.d.ts +4 -0
- package/components/SVGIcons/IconArrowRepeatAll.js +33 -0
- package/components/SVGIcons/IconArrowRepeatAllFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowRepeatAllFilled.js +33 -0
- package/components/SVGIcons/IconArrowReset.d.ts +4 -0
- package/components/SVGIcons/IconArrowReset.js +33 -0
- package/components/SVGIcons/IconArrowResetFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowResetFilled.js +33 -0
- package/components/SVGIcons/IconArrowRight.d.ts +4 -0
- package/components/SVGIcons/IconArrowRight.js +33 -0
- package/components/SVGIcons/IconArrowRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowRightFilled.js +33 -0
- package/components/SVGIcons/IconArrowSort.d.ts +4 -0
- package/components/SVGIcons/IconArrowSort.js +30 -0
- package/components/SVGIcons/IconArrowSortFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowSortFilled.js +30 -0
- package/components/SVGIcons/IconArrowSync.d.ts +4 -0
- package/components/SVGIcons/IconArrowSync.js +30 -0
- package/components/SVGIcons/IconArrowSyncFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowSyncFilled.js +30 -0
- package/components/SVGIcons/IconArrowUp.d.ts +4 -0
- package/components/SVGIcons/IconArrowUp.js +33 -0
- package/components/SVGIcons/IconArrowUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpFilled.js +33 -0
- package/components/SVGIcons/IconArrowUpLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpLeft.js +33 -0
- package/components/SVGIcons/IconArrowUpLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowUpRight.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpRight.js +33 -0
- package/components/SVGIcons/IconArrowUpRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpRightFilled.js +33 -0
- package/components/SVGIcons/IconAttach.d.ts +4 -0
- package/components/SVGIcons/IconAttach.js +33 -0
- package/components/SVGIcons/IconAttachFilled.d.ts +4 -0
- package/components/SVGIcons/IconAttachFilled.js +33 -0
- package/components/SVGIcons/IconBeach.d.ts +4 -0
- package/components/SVGIcons/IconBeach.js +30 -0
- package/components/SVGIcons/IconBeachFilled.d.ts +4 -0
- package/components/SVGIcons/IconBeachFilled.js +30 -0
- package/components/SVGIcons/IconBed.d.ts +4 -0
- package/components/SVGIcons/IconBed.js +30 -0
- package/components/SVGIcons/IconBedFilled.d.ts +4 -0
- package/components/SVGIcons/IconBedFilled.js +30 -0
- package/components/SVGIcons/IconBook.d.ts +4 -0
- package/components/SVGIcons/IconBook.js +33 -0
- package/components/SVGIcons/IconBookFilled.d.ts +4 -0
- package/components/SVGIcons/IconBookFilled.js +33 -0
- package/components/SVGIcons/IconBookmark.d.ts +4 -0
- package/components/SVGIcons/IconBookmark.js +33 -0
- package/components/SVGIcons/IconBookmarkFilled.d.ts +4 -0
- package/components/SVGIcons/IconBookmarkFilled.js +33 -0
- package/components/SVGIcons/IconBriefcase.d.ts +4 -0
- package/components/SVGIcons/IconBriefcase.js +33 -0
- package/components/SVGIcons/IconBriefcaseFilled.d.ts +4 -0
- package/components/SVGIcons/IconBriefcaseFilled.js +33 -0
- package/components/SVGIcons/IconBroom.d.ts +4 -0
- package/components/SVGIcons/IconBroom.js +30 -0
- package/components/SVGIcons/IconBroomFilled.d.ts +4 -0
- package/components/SVGIcons/IconBroomFilled.js +30 -0
- package/components/SVGIcons/IconBuilding.d.ts +4 -0
- package/components/SVGIcons/IconBuilding.js +56 -0
- package/components/SVGIcons/IconBuildingBank.d.ts +4 -0
- package/components/SVGIcons/IconBuildingBank.js +30 -0
- package/components/SVGIcons/IconBuildingBankFilled.d.ts +4 -0
- package/components/SVGIcons/IconBuildingBankFilled.js +30 -0
- package/components/SVGIcons/IconBuildingFilled.d.ts +4 -0
- package/components/SVGIcons/IconBuildingFilled.js +33 -0
- package/components/SVGIcons/IconBulletListAdd.d.ts +4 -0
- package/components/SVGIcons/IconBulletListAdd.js +33 -0
- package/components/SVGIcons/IconBulletListAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconBulletListAddFilled.js +33 -0
- package/components/SVGIcons/IconCalculator.d.ts +4 -0
- package/components/SVGIcons/IconCalculator.js +33 -0
- package/components/SVGIcons/IconCalculatorFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalculatorFilled.js +33 -0
- package/components/SVGIcons/IconCalendarClock.d.ts +4 -0
- package/components/SVGIcons/IconCalendarClock.js +30 -0
- package/components/SVGIcons/IconCalendarClockFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarClockFilled.js +30 -0
- package/components/SVGIcons/IconCalendarDay.d.ts +4 -0
- package/components/SVGIcons/IconCalendarDay.js +33 -0
- package/components/SVGIcons/IconCalendarDayFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarDayFilled.js +33 -0
- package/components/SVGIcons/IconCalendarLeft.d.ts +4 -0
- package/components/SVGIcons/IconCalendarLeft.js +30 -0
- package/components/SVGIcons/IconCalendarLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarLeftFilled.js +30 -0
- package/components/SVGIcons/IconCalendarRight.d.ts +4 -0
- package/components/SVGIcons/IconCalendarRight.js +30 -0
- package/components/SVGIcons/IconCalendarRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarRightFilled.js +30 -0
- package/components/SVGIcons/IconCall.d.ts +4 -0
- package/components/SVGIcons/IconCall.js +33 -0
- package/components/SVGIcons/IconCallFilled.d.ts +4 -0
- package/components/SVGIcons/IconCallFilled.js +33 -0
- package/components/SVGIcons/IconCameraDome.d.ts +4 -0
- package/components/SVGIcons/IconCameraDome.js +30 -0
- package/components/SVGIcons/IconCameraDomeFilled.d.ts +4 -0
- package/components/SVGIcons/IconCameraDomeFilled.js +30 -0
- package/components/SVGIcons/IconCard.d.ts +4 -0
- package/components/SVGIcons/IconCard.js +30 -0
- package/components/SVGIcons/IconCardFilled.d.ts +4 -0
- package/components/SVGIcons/IconCardFilled.js +30 -0
- package/components/SVGIcons/IconCaretDown.d.ts +4 -0
- package/components/SVGIcons/IconCaretDown.js +30 -0
- package/components/SVGIcons/IconCaretDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretDownFilled.js +30 -0
- package/components/SVGIcons/IconCaretDownRight.d.ts +4 -0
- package/components/SVGIcons/IconCaretDownRight.js +30 -0
- package/components/SVGIcons/IconCaretDownRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretDownRightFilled.js +30 -0
- package/components/SVGIcons/IconCaretLeft.d.ts +4 -0
- package/components/SVGIcons/IconCaretLeft.js +30 -0
- package/components/SVGIcons/IconCaretLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretLeftFilled.js +30 -0
- package/components/SVGIcons/IconCaretRight.d.ts +4 -0
- package/components/SVGIcons/IconCaretRight.js +30 -0
- package/components/SVGIcons/IconCaretRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretRightFilled.js +30 -0
- package/components/SVGIcons/IconCaretUp.d.ts +4 -0
- package/components/SVGIcons/IconCaretUp.js +30 -0
- package/components/SVGIcons/IconCaretUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretUpFilled.js +30 -0
- package/components/SVGIcons/IconChat.d.ts +4 -0
- package/components/SVGIcons/IconChat.js +30 -0
- package/components/SVGIcons/IconChatFilled.d.ts +4 -0
- package/components/SVGIcons/IconChatFilled.js +30 -0
- package/components/SVGIcons/IconChatMultiple.d.ts +4 -0
- package/components/SVGIcons/IconChatMultiple.js +30 -0
- package/components/SVGIcons/IconChatMultipleFilled.d.ts +4 -0
- package/components/SVGIcons/IconChatMultipleFilled.js +30 -0
- package/components/SVGIcons/IconCheckboxArrowRight.d.ts +4 -0
- package/components/SVGIcons/IconCheckboxArrowRight.js +33 -0
- package/components/SVGIcons/IconCheckboxArrowRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCheckboxArrowRightFilled.js +33 -0
- package/components/SVGIcons/IconCheckmark.d.ts +4 -0
- package/components/SVGIcons/IconCheckmark.js +30 -0
- package/components/SVGIcons/IconCheckmarkCircle.d.ts +4 -0
- package/components/SVGIcons/IconCheckmarkCircle.js +30 -0
- package/components/SVGIcons/IconCheckmarkCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconCheckmarkCircleFilled.js +30 -0
- package/components/SVGIcons/IconCheckmarkFilled.d.ts +4 -0
- package/components/SVGIcons/IconCheckmarkFilled.js +30 -0
- package/components/SVGIcons/IconChevronDoubleLeft.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleLeft.js +30 -0
- package/components/SVGIcons/IconChevronDoubleLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleLeftFilled.js +30 -0
- package/components/SVGIcons/IconChevronDoubleRight.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleRight.js +30 -0
- package/components/SVGIcons/IconChevronDoubleRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleRightFilled.js +30 -0
- package/components/SVGIcons/IconChevronDown.d.ts +4 -0
- package/components/SVGIcons/IconChevronDown.js +30 -0
- package/components/SVGIcons/IconChevronDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronDownFilled.js +30 -0
- package/components/SVGIcons/IconChevronLeft.d.ts +4 -0
- package/components/SVGIcons/IconChevronLeft.js +30 -0
- package/components/SVGIcons/IconChevronLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronLeftFilled.js +30 -0
- package/components/SVGIcons/IconChevronRight.d.ts +4 -0
- package/components/SVGIcons/IconChevronRight.js +30 -0
- package/components/SVGIcons/IconChevronRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronRightFilled.js +30 -0
- package/components/SVGIcons/IconChevronUp.d.ts +4 -0
- package/components/SVGIcons/IconChevronUp.js +30 -0
- package/components/SVGIcons/IconChevronUpDown.d.ts +4 -0
- package/components/SVGIcons/IconChevronUpDown.js +33 -0
- package/components/SVGIcons/IconChevronUpDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronUpDownFilled.js +33 -0
- package/components/SVGIcons/IconChevronUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronUpFilled.js +30 -0
- package/components/SVGIcons/IconClock.d.ts +4 -0
- package/components/SVGIcons/IconClock.js +33 -0
- package/components/SVGIcons/IconClockDismiss.d.ts +4 -0
- package/components/SVGIcons/IconClockDismiss.js +30 -0
- package/components/SVGIcons/IconClockDismissFilled.d.ts +4 -0
- package/components/SVGIcons/IconClockDismissFilled.js +30 -0
- package/components/SVGIcons/IconClockFilled.d.ts +4 -0
- package/components/SVGIcons/IconClockFilled.js +33 -0
- package/components/SVGIcons/IconComment.d.ts +4 -0
- package/components/SVGIcons/IconComment.js +33 -0
- package/components/SVGIcons/IconCommentFilled.d.ts +4 -0
- package/components/SVGIcons/IconCommentFilled.js +33 -0
- package/components/SVGIcons/IconContractCard.d.ts +4 -0
- package/components/SVGIcons/IconContractCard.js +30 -0
- package/components/SVGIcons/IconContractCardFilled.d.ts +4 -0
- package/components/SVGIcons/IconContractCardFilled.js +30 -0
- package/components/SVGIcons/IconCopy.d.ts +4 -0
- package/components/SVGIcons/IconCopy.js +30 -0
- package/components/SVGIcons/IconCopyFilled.d.ts +4 -0
- package/components/SVGIcons/IconCopyFilled.js +30 -0
- package/components/SVGIcons/IconCubeTree.d.ts +4 -0
- package/components/SVGIcons/IconCubeTree.js +30 -0
- package/components/SVGIcons/IconCubeTreeFilled.d.ts +4 -0
- package/components/SVGIcons/IconCubeTreeFilled.js +33 -0
- package/components/SVGIcons/IconDatabase.d.ts +4 -0
- package/components/SVGIcons/IconDatabase.js +33 -0
- package/components/SVGIcons/IconDatabaseFilled.d.ts +4 -0
- package/components/SVGIcons/IconDatabaseFilled.js +33 -0
- package/components/SVGIcons/IconDelete.d.ts +4 -0
- package/components/SVGIcons/IconDelete.js +30 -0
- package/components/SVGIcons/IconDeleteFilled.d.ts +4 -0
- package/components/SVGIcons/IconDeleteFilled.js +30 -0
- package/components/SVGIcons/IconDesignIdeas.d.ts +4 -0
- package/components/SVGIcons/IconDesignIdeas.js +30 -0
- package/components/SVGIcons/IconDesignIdeasFilled.d.ts +4 -0
- package/components/SVGIcons/IconDesignIdeasFilled.js +30 -0
- package/components/SVGIcons/IconDeviceMeetingRoom.d.ts +4 -0
- package/components/SVGIcons/IconDeviceMeetingRoom.js +30 -0
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.d.ts +4 -0
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +30 -0
- package/components/SVGIcons/IconDismiss.d.ts +4 -0
- package/components/SVGIcons/IconDismiss.js +30 -0
- package/components/SVGIcons/IconDismissCircle.d.ts +4 -0
- package/components/SVGIcons/IconDismissCircle.js +33 -0
- package/components/SVGIcons/IconDismissCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconDismissCircleFilled.js +33 -0
- package/components/SVGIcons/IconDismissFilled.d.ts +4 -0
- package/components/SVGIcons/IconDismissFilled.js +30 -0
- package/components/SVGIcons/IconDocument.d.ts +4 -0
- package/components/SVGIcons/IconDocument.js +30 -0
- package/components/SVGIcons/IconDocumentBulletList.d.ts +4 -0
- package/components/SVGIcons/IconDocumentBulletList.js +33 -0
- package/components/SVGIcons/IconDocumentBulletListFilled.d.ts +4 -0
- package/components/SVGIcons/IconDocumentBulletListFilled.js +33 -0
- package/components/SVGIcons/IconDocumentEdit.d.ts +4 -0
- package/components/SVGIcons/IconDocumentEdit.js +30 -0
- package/components/SVGIcons/IconDocumentEditFilled.d.ts +4 -0
- package/components/SVGIcons/IconDocumentEditFilled.js +30 -0
- package/components/SVGIcons/IconDocumentFilled.d.ts +4 -0
- package/components/SVGIcons/IconDocumentFilled.js +30 -0
- package/components/SVGIcons/IconEdit.d.ts +4 -0
- package/components/SVGIcons/IconEdit.js +30 -0
- package/components/SVGIcons/IconEditFilled.d.ts +4 -0
- package/components/SVGIcons/IconEditFilled.js +30 -0
- package/components/SVGIcons/IconErrorCircle.d.ts +4 -0
- package/components/SVGIcons/IconErrorCircle.js +30 -0
- package/components/SVGIcons/IconErrorCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconErrorCircleFilled.js +30 -0
- package/components/SVGIcons/IconEur.d.ts +4 -0
- package/components/SVGIcons/IconEur.js +30 -0
- package/components/SVGIcons/IconEurFilled.d.ts +4 -0
- package/components/SVGIcons/IconEurFilled.js +30 -0
- package/components/SVGIcons/IconExpandUpLeft.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpLeft.js +33 -0
- package/components/SVGIcons/IconExpandUpLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpLeftFilled.js +33 -0
- package/components/SVGIcons/IconExpandUpRight.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpRight.js +33 -0
- package/components/SVGIcons/IconExpandUpRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpRightFilled.js +33 -0
- package/components/SVGIcons/IconEyeOff.d.ts +4 -0
- package/components/SVGIcons/IconEyeOff.js +35 -0
- package/components/SVGIcons/IconEyeOffFilled.d.ts +4 -0
- package/components/SVGIcons/IconEyeOffFilled.js +33 -0
- package/components/SVGIcons/IconEyeOn.d.ts +4 -0
- package/components/SVGIcons/IconEyeOn.js +35 -0
- package/components/SVGIcons/IconEyeOnFilled.d.ts +4 -0
- package/components/SVGIcons/IconEyeOnFilled.js +33 -0
- package/components/SVGIcons/IconFacebook.d.ts +4 -0
- package/components/SVGIcons/IconFacebook.js +40 -0
- package/components/SVGIcons/IconFilter.d.ts +4 -0
- package/components/SVGIcons/IconFilter.js +30 -0
- package/components/SVGIcons/IconFilterFilled.d.ts +4 -0
- package/components/SVGIcons/IconFilterFilled.js +30 -0
- package/components/SVGIcons/IconFlag.d.ts +4 -0
- package/components/SVGIcons/IconFlag.js +33 -0
- package/components/SVGIcons/IconFlagFilled.d.ts +4 -0
- package/components/SVGIcons/IconFlagFilled.js +33 -0
- package/components/SVGIcons/IconFlash.d.ts +4 -0
- package/components/SVGIcons/IconFlash.js +30 -0
- package/components/SVGIcons/IconFlashFilled.d.ts +4 -0
- package/components/SVGIcons/IconFlashFilled.js +30 -0
- package/components/SVGIcons/IconFolderLink.d.ts +4 -0
- package/components/SVGIcons/IconFolderLink.js +30 -0
- package/components/SVGIcons/IconFolderLinkFilled.d.ts +4 -0
- package/components/SVGIcons/IconFolderLinkFilled.js +30 -0
- package/components/SVGIcons/IconGas.d.ts +4 -0
- package/components/SVGIcons/IconGas.js +33 -0
- package/components/SVGIcons/IconGb.d.ts +4 -0
- package/components/SVGIcons/IconGb.js +73 -0
- package/components/SVGIcons/IconGlobe.d.ts +4 -0
- package/components/SVGIcons/IconGlobe.js +30 -0
- package/components/SVGIcons/IconGlobeFilled.d.ts +4 -0
- package/components/SVGIcons/IconGlobeFilled.js +30 -0
- package/components/SVGIcons/IconGoogle.d.ts +4 -0
- package/components/SVGIcons/IconGoogle.js +42 -0
- package/components/SVGIcons/IconHandOpenHeart.d.ts +4 -0
- package/components/SVGIcons/IconHandOpenHeart.js +33 -0
- package/components/SVGIcons/IconHandOpenHeartFilled.d.ts +4 -0
- package/components/SVGIcons/IconHandOpenHeartFilled.js +33 -0
- package/components/SVGIcons/IconHandWave.d.ts +4 -0
- package/components/SVGIcons/IconHandWave.js +30 -0
- package/components/SVGIcons/IconHandWaveFilled.d.ts +4 -0
- package/components/SVGIcons/IconHandWaveFilled.js +30 -0
- package/components/SVGIcons/IconHeart.d.ts +4 -0
- package/components/SVGIcons/IconHeart.js +33 -0
- package/components/SVGIcons/IconHeartFilled.d.ts +4 -0
- package/components/SVGIcons/IconHeartFilled.js +33 -0
- package/components/SVGIcons/IconHistory.d.ts +4 -0
- package/components/SVGIcons/IconHistory.js +33 -0
- package/components/SVGIcons/IconHistoryFilled.d.ts +4 -0
- package/components/SVGIcons/IconHistoryFilled.js +33 -0
- package/components/SVGIcons/IconHome.d.ts +4 -0
- package/components/SVGIcons/IconHome.js +33 -0
- package/components/SVGIcons/IconHomeAdd.d.ts +4 -0
- package/components/SVGIcons/IconHomeAdd.js +30 -0
- package/components/SVGIcons/IconHomeAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconHomeAddFilled.js +30 -0
- package/components/SVGIcons/IconHomeFilled.d.ts +4 -0
- package/components/SVGIcons/IconHomeFilled.js +33 -0
- package/components/SVGIcons/IconImage.d.ts +4 -0
- package/components/SVGIcons/IconImage.js +33 -0
- package/components/SVGIcons/IconImageFilled.d.ts +4 -0
- package/components/SVGIcons/IconImageFilled.js +33 -0
- package/components/SVGIcons/IconInfo.d.ts +4 -0
- package/components/SVGIcons/IconInfo.js +30 -0
- package/components/SVGIcons/IconInfoFilled.d.ts +4 -0
- package/components/SVGIcons/IconInfoFilled.js +30 -0
- package/components/SVGIcons/IconInstagram.d.ts +4 -0
- package/components/SVGIcons/IconInstagram.js +41 -0
- package/components/SVGIcons/IconKey.d.ts +4 -0
- package/components/SVGIcons/IconKey.js +30 -0
- package/components/SVGIcons/IconKeyFilled.d.ts +4 -0
- package/components/SVGIcons/IconKeyFilled.js +30 -0
- package/components/SVGIcons/IconKeyReset.d.ts +4 -0
- package/components/SVGIcons/IconKeyReset.js +33 -0
- package/components/SVGIcons/IconKeyResetFilled.d.ts +4 -0
- package/components/SVGIcons/IconKeyResetFilled.js +33 -0
- package/components/SVGIcons/IconLaptop.d.ts +4 -0
- package/components/SVGIcons/IconLaptop.js +30 -0
- package/components/SVGIcons/IconLaptopFilled.d.ts +4 -0
- package/components/SVGIcons/IconLaptopFilled.js +30 -0
- package/components/SVGIcons/IconLeaf.d.ts +4 -0
- package/components/SVGIcons/IconLeaf.js +30 -0
- package/components/SVGIcons/IconLeafFilled.d.ts +4 -0
- package/components/SVGIcons/IconLeafFilled.js +30 -0
- package/components/SVGIcons/IconLightbulb.d.ts +4 -0
- package/components/SVGIcons/IconLightbulb.js +30 -0
- package/components/SVGIcons/IconLightbulbFilled.d.ts +4 -0
- package/components/SVGIcons/IconLightbulbFilled.js +30 -0
- package/components/SVGIcons/IconLink.d.ts +4 -0
- package/components/SVGIcons/IconLink.js +33 -0
- package/components/SVGIcons/IconLinkFilled.d.ts +4 -0
- package/components/SVGIcons/IconLinkFilled.js +33 -0
- package/components/SVGIcons/IconLinkedin.d.ts +4 -0
- package/components/SVGIcons/IconLinkedin.js +33 -0
- package/components/SVGIcons/IconList.d.ts +4 -0
- package/components/SVGIcons/IconList.js +30 -0
- package/components/SVGIcons/IconListFilled.d.ts +4 -0
- package/components/SVGIcons/IconListFilled.js +33 -0
- package/components/SVGIcons/IconLoan.d.ts +4 -0
- package/components/SVGIcons/IconLoan.js +39 -0
- package/components/SVGIcons/IconLoanFilled.d.ts +4 -0
- package/components/SVGIcons/IconLoanFilled.js +30 -0
- package/components/SVGIcons/IconLocation.d.ts +4 -0
- package/components/SVGIcons/IconLocation.js +33 -0
- package/components/SVGIcons/IconLocationFilled.d.ts +4 -0
- package/components/SVGIcons/IconLocationFilled.js +33 -0
- package/components/SVGIcons/IconLockClosed.d.ts +4 -0
- package/components/SVGIcons/IconLockClosed.js +33 -0
- package/components/SVGIcons/IconLockClosedFilled.d.ts +4 -0
- package/components/SVGIcons/IconLockClosedFilled.js +33 -0
- package/components/SVGIcons/IconLockOpen.d.ts +4 -0
- package/components/SVGIcons/IconLockOpen.js +33 -0
- package/components/SVGIcons/IconLockOpenFilled.d.ts +4 -0
- package/components/SVGIcons/IconLockOpenFilled.js +33 -0
- package/components/SVGIcons/IconMail.d.ts +4 -0
- package/components/SVGIcons/IconMail.js +33 -0
- package/components/SVGIcons/IconMailAdd.d.ts +4 -0
- package/components/SVGIcons/IconMailAdd.js +33 -0
- package/components/SVGIcons/IconMailAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailAddFilled.js +33 -0
- package/components/SVGIcons/IconMailArrowForward.d.ts +4 -0
- package/components/SVGIcons/IconMailArrowForward.js +33 -0
- package/components/SVGIcons/IconMailArrowForwardFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailArrowForwardFilled.js +33 -0
- package/components/SVGIcons/IconMailFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailFilled.js +33 -0
- package/components/SVGIcons/IconMailLink.d.ts +4 -0
- package/components/SVGIcons/IconMailLink.js +33 -0
- package/components/SVGIcons/IconMailLinkFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailLinkFilled.js +33 -0
- package/components/SVGIcons/IconMedium.d.ts +4 -0
- package/components/SVGIcons/IconMedium.js +33 -0
- package/components/SVGIcons/IconMore.d.ts +4 -0
- package/components/SVGIcons/IconMore.js +33 -0
- package/components/SVGIcons/IconMoreFilled.d.ts +4 -0
- package/components/SVGIcons/IconMoreFilled.js +33 -0
- package/components/SVGIcons/IconMoreVertical.d.ts +4 -0
- package/components/SVGIcons/IconMoreVertical.js +33 -0
- package/components/SVGIcons/IconMoreVerticalFilled.d.ts +4 -0
- package/components/SVGIcons/IconMoreVerticalFilled.js +33 -0
- package/components/SVGIcons/IconNavigation.d.ts +4 -0
- package/components/SVGIcons/IconNavigation.js +33 -0
- package/components/SVGIcons/IconNavigationFilled.d.ts +4 -0
- package/components/SVGIcons/IconNavigationFilled.js +33 -0
- package/components/SVGIcons/IconNotebook.d.ts +4 -0
- package/components/SVGIcons/IconNotebook.js +33 -0
- package/components/SVGIcons/IconNotebookAdd.d.ts +4 -0
- package/components/SVGIcons/IconNotebookAdd.js +49 -0
- package/components/SVGIcons/IconNotebookAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconNotebookAddFilled.js +46 -0
- package/components/SVGIcons/IconNotebookFilled.d.ts +4 -0
- package/components/SVGIcons/IconNotebookFilled.js +33 -0
- package/components/SVGIcons/IconOnlyEmployee.d.ts +4 -0
- package/components/SVGIcons/IconOnlyEmployee.js +30 -0
- package/components/SVGIcons/IconOpen.d.ts +4 -0
- package/components/SVGIcons/IconOpen.js +33 -0
- package/components/SVGIcons/IconOpenFilled.d.ts +4 -0
- package/components/SVGIcons/IconOpenFilled.js +33 -0
- package/components/SVGIcons/IconPaintBrush.d.ts +4 -0
- package/components/SVGIcons/IconPaintBrush.js +30 -0
- package/components/SVGIcons/IconPaintBrushFilled.d.ts +4 -0
- package/components/SVGIcons/IconPaintBrushFilled.js +30 -0
- package/components/SVGIcons/IconPatient.d.ts +4 -0
- package/components/SVGIcons/IconPatient.js +30 -0
- package/components/SVGIcons/IconPatientFilled.d.ts +4 -0
- package/components/SVGIcons/IconPatientFilled.js +30 -0
- package/components/SVGIcons/IconPeople.d.ts +4 -0
- package/components/SVGIcons/IconPeople.js +30 -0
- package/components/SVGIcons/IconPeopleAdd.d.ts +4 -0
- package/components/SVGIcons/IconPeopleAdd.js +33 -0
- package/components/SVGIcons/IconPeopleAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconPeopleAddFilled.js +33 -0
- package/components/SVGIcons/IconPeopleFilled.d.ts +4 -0
- package/components/SVGIcons/IconPeopleFilled.js +33 -0
- package/components/SVGIcons/IconPercent.d.ts +4 -0
- package/components/SVGIcons/IconPercent.js +35 -0
- package/components/SVGIcons/IconPerson.d.ts +4 -0
- package/components/SVGIcons/IconPerson.js +33 -0
- package/components/SVGIcons/IconPersonAccount.d.ts +4 -0
- package/components/SVGIcons/IconPersonAccount.js +30 -0
- package/components/SVGIcons/IconPersonAccountFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonAccountFilled.js +30 -0
- package/components/SVGIcons/IconPersonAdd.d.ts +4 -0
- package/components/SVGIcons/IconPersonAdd.js +33 -0
- package/components/SVGIcons/IconPersonAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonAddFilled.js +33 -0
- package/components/SVGIcons/IconPersonFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonFilled.js +33 -0
- package/components/SVGIcons/IconPersonStar.d.ts +4 -0
- package/components/SVGIcons/IconPersonStar.js +33 -0
- package/components/SVGIcons/IconPersonStarFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonStarFilled.js +33 -0
- package/components/SVGIcons/IconPersonSubtract.d.ts +4 -0
- package/components/SVGIcons/IconPersonSubtract.js +33 -0
- package/components/SVGIcons/IconPersonSubtractFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonSubtractFilled.js +33 -0
- package/components/SVGIcons/IconPhone.d.ts +4 -0
- package/components/SVGIcons/IconPhone.js +33 -0
- package/components/SVGIcons/IconPhoneFilled.d.ts +4 -0
- package/components/SVGIcons/IconPhoneFilled.js +33 -0
- package/components/SVGIcons/IconPos.d.ts +4 -0
- package/components/SVGIcons/IconPos.js +35 -0
- package/components/SVGIcons/IconPosFilled.d.ts +4 -0
- package/components/SVGIcons/IconPosFilled.js +35 -0
- package/components/SVGIcons/IconProhibited.d.ts +4 -0
- package/components/SVGIcons/IconProhibited.js +33 -0
- package/components/SVGIcons/IconProhibitedFilled.d.ts +4 -0
- package/components/SVGIcons/IconProhibitedFilled.js +33 -0
- package/components/SVGIcons/IconProjectProduct.d.ts +4 -0
- package/components/SVGIcons/IconProjectProduct.js +30 -0
- package/components/SVGIcons/IconQuestion.d.ts +4 -0
- package/components/SVGIcons/IconQuestion.js +33 -0
- package/components/SVGIcons/IconQuestionFilled.d.ts +4 -0
- package/components/SVGIcons/IconQuestionFilled.js +33 -0
- package/components/SVGIcons/IconRedo.d.ts +4 -0
- package/components/SVGIcons/IconRedo.js +33 -0
- package/components/SVGIcons/IconRedoFilled.d.ts +4 -0
- package/components/SVGIcons/IconRedoFilled.js +33 -0
- package/components/SVGIcons/IconRu.d.ts +4 -0
- package/components/SVGIcons/IconRu.js +62 -0
- package/components/SVGIcons/IconRub.d.ts +4 -0
- package/components/SVGIcons/IconRub.js +30 -0
- package/components/SVGIcons/IconRubFilled.d.ts +4 -0
- package/components/SVGIcons/IconRubFilled.js +30 -0
- package/components/SVGIcons/IconSave.d.ts +4 -0
- package/components/SVGIcons/IconSave.js +33 -0
- package/components/SVGIcons/IconSaveFilled.d.ts +4 -0
- package/components/SVGIcons/IconSaveFilled.js +33 -0
- package/components/SVGIcons/IconSavings.d.ts +4 -0
- package/components/SVGIcons/IconSavings.js +33 -0
- package/components/SVGIcons/IconSavingsFilled.d.ts +4 -0
- package/components/SVGIcons/IconSavingsFilled.js +33 -0
- package/components/SVGIcons/IconSearch.d.ts +4 -0
- package/components/SVGIcons/IconSearch.js +33 -0
- package/components/SVGIcons/IconSearchFilled.d.ts +4 -0
- package/components/SVGIcons/IconSearchFilled.js +33 -0
- package/components/SVGIcons/IconSelectAllOff.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOff.js +33 -0
- package/components/SVGIcons/IconSelectAllOffFilled.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOffFilled.js +33 -0
- package/components/SVGIcons/IconSelectAllOn.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOn.js +33 -0
- package/components/SVGIcons/IconSelectAllOnFilled.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOnFilled.js +33 -0
- package/components/SVGIcons/IconSend.d.ts +4 -0
- package/components/SVGIcons/IconSend.js +33 -0
- package/components/SVGIcons/IconSendFilled.d.ts +4 -0
- package/components/SVGIcons/IconSendFilled.js +33 -0
- package/components/SVGIcons/IconSettings.d.ts +4 -0
- package/components/SVGIcons/IconSettings.js +30 -0
- package/components/SVGIcons/IconSettingsFilled.d.ts +4 -0
- package/components/SVGIcons/IconSettingsFilled.js +33 -0
- package/components/SVGIcons/IconShare.d.ts +4 -0
- package/components/SVGIcons/IconShare.js +33 -0
- package/components/SVGIcons/IconShareAndroid.d.ts +4 -0
- package/components/SVGIcons/IconShareAndroid.js +33 -0
- package/components/SVGIcons/IconShareAndroidFilled.d.ts +4 -0
- package/components/SVGIcons/IconShareAndroidFilled.js +33 -0
- package/components/SVGIcons/IconShareFilled.d.ts +4 -0
- package/components/SVGIcons/IconShareFilled.js +33 -0
- package/components/SVGIcons/IconShower.d.ts +4 -0
- package/components/SVGIcons/IconShower.js +30 -0
- package/components/SVGIcons/IconSignOut.d.ts +4 -0
- package/components/SVGIcons/IconSignOut.js +33 -0
- package/components/SVGIcons/IconSignOutFilled.d.ts +4 -0
- package/components/SVGIcons/IconSignOutFilled.js +33 -0
- package/components/SVGIcons/IconSpinner.d.ts +4 -0
- package/components/SVGIcons/IconSpinner.js +33 -0
- package/components/SVGIcons/IconSpinnerFilled.d.ts +4 -0
- package/components/SVGIcons/IconSpinnerFilled.js +33 -0
- package/components/SVGIcons/IconStar.d.ts +4 -0
- package/components/SVGIcons/IconStar.js +30 -0
- package/components/SVGIcons/IconStarFilled.d.ts +4 -0
- package/components/SVGIcons/IconStarFilled.js +30 -0
- package/components/SVGIcons/IconStatus.d.ts +4 -0
- package/components/SVGIcons/IconStatus.js +33 -0
- package/components/SVGIcons/IconStatusFilled.d.ts +4 -0
- package/components/SVGIcons/IconStatusFilled.js +33 -0
- package/components/SVGIcons/IconSubtract.d.ts +4 -0
- package/components/SVGIcons/IconSubtract.js +33 -0
- package/components/SVGIcons/IconSubtractCircle.d.ts +4 -0
- package/components/SVGIcons/IconSubtractCircle.js +33 -0
- package/components/SVGIcons/IconSubtractCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconSubtractCircleFilled.js +33 -0
- package/components/SVGIcons/IconSubtractFilled.d.ts +4 -0
- package/components/SVGIcons/IconSubtractFilled.js +33 -0
- package/components/SVGIcons/IconTableCellEdit.d.ts +4 -0
- package/components/SVGIcons/IconTableCellEdit.js +37 -0
- package/components/SVGIcons/IconTableCellEditFilled.d.ts +4 -0
- package/components/SVGIcons/IconTableCellEditFilled.js +43 -0
- package/components/SVGIcons/IconTelegram.d.ts +4 -0
- package/components/SVGIcons/IconTelegram.js +42 -0
- package/components/SVGIcons/IconTextBulletListSquarePerson.d.ts +4 -0
- package/components/SVGIcons/IconTextBulletListSquarePerson.js +30 -0
- package/components/SVGIcons/IconTextBulletListSquarePersonFilled.d.ts +4 -0
- package/components/SVGIcons/IconTextBulletListSquarePersonFilled.js +30 -0
- package/components/SVGIcons/IconTextboxSettings.d.ts +4 -0
- package/components/SVGIcons/IconTextboxSettings.js +30 -0
- package/components/SVGIcons/IconTextboxSettingsFilled.d.ts +4 -0
- package/components/SVGIcons/IconTextboxSettingsFilled.js +30 -0
- package/components/SVGIcons/IconTimer.d.ts +4 -0
- package/components/SVGIcons/IconTimer.js +33 -0
- package/components/SVGIcons/IconTimerFilled.d.ts +4 -0
- package/components/SVGIcons/IconTimerFilled.js +33 -0
- package/components/SVGIcons/IconTin.d.ts +4 -0
- package/components/SVGIcons/IconTin.js +39 -0
- package/components/SVGIcons/IconTinFilled.d.ts +4 -0
- package/components/SVGIcons/IconTinFilled.js +42 -0
- package/components/SVGIcons/IconTv.d.ts +4 -0
- package/components/SVGIcons/IconTv.js +30 -0
- package/components/SVGIcons/IconTvFilled.d.ts +4 -0
- package/components/SVGIcons/IconTvFilled.js +30 -0
- package/components/SVGIcons/IconTwitter.d.ts +4 -0
- package/components/SVGIcons/IconTwitter.js +33 -0
- package/components/SVGIcons/IconUndo.d.ts +4 -0
- package/components/SVGIcons/IconUndo.js +33 -0
- package/components/SVGIcons/IconUndoFilled.d.ts +4 -0
- package/components/SVGIcons/IconUndoFilled.js +33 -0
- package/components/SVGIcons/IconUnitsEmployee.d.ts +4 -0
- package/components/SVGIcons/IconUnitsEmployee.js +30 -0
- package/components/SVGIcons/IconUsd.d.ts +4 -0
- package/components/SVGIcons/IconUsd.js +30 -0
- package/components/SVGIcons/IconUsdFilled.d.ts +4 -0
- package/components/SVGIcons/IconUsdFilled.js +30 -0
- package/components/SVGIcons/IconVehicleTruckProfile.d.ts +4 -0
- package/components/SVGIcons/IconVehicleTruckProfile.js +30 -0
- package/components/SVGIcons/IconVehicleTruckProfileFilled.d.ts +4 -0
- package/components/SVGIcons/IconVehicleTruckProfileFilled.js +30 -0
- package/components/SVGIcons/IconVideo.d.ts +4 -0
- package/components/SVGIcons/IconVideo.js +30 -0
- package/components/SVGIcons/IconVideoFilled.d.ts +4 -0
- package/components/SVGIcons/IconVideoFilled.js +30 -0
- package/components/SVGIcons/IconWallet.d.ts +4 -0
- package/components/SVGIcons/IconWallet.js +33 -0
- package/components/SVGIcons/IconWalletFilled.d.ts +4 -0
- package/components/SVGIcons/IconWalletFilled.js +33 -0
- package/components/SVGIcons/IconWarning.d.ts +4 -0
- package/components/SVGIcons/IconWarning.js +30 -0
- package/components/SVGIcons/IconWarningFilled.d.ts +4 -0
- package/components/SVGIcons/IconWarningFilled.js +30 -0
- package/components/SVGIcons/IconWrenchScrewdriver.d.ts +4 -0
- package/components/SVGIcons/IconWrenchScrewdriver.js +30 -0
- package/components/SVGIcons/IconWrenchScrewdriverFilled.d.ts +4 -0
- package/components/SVGIcons/IconWrenchScrewdriverFilled.js +30 -0
- package/components/SVGIcons/IconYoutube.d.ts +4 -0
- package/components/SVGIcons/IconYoutube.js +33 -0
- package/components/SVGIcons/IconZoomIn.d.ts +4 -0
- package/components/SVGIcons/IconZoomIn.js +30 -0
- package/components/SVGIcons/IconZoomInFilled.d.ts +4 -0
- package/components/SVGIcons/IconZoomInFilled.js +30 -0
- package/components/SVGIcons/IconZoomOut.d.ts +4 -0
- package/components/SVGIcons/IconZoomOut.js +30 -0
- package/components/SVGIcons/IconZoomOutFilled.d.ts +4 -0
- package/components/SVGIcons/IconZoomOutFilled.js +30 -0
- package/components/SVGIcons/index.d.ts +338 -0
- package/components/SVGIcons/index.js +342 -0
- package/components/SVGIcons/types.d.ts +18 -0
- package/components/SVGIcons/types.js +1 -0
- package/components/Select/ButtonSelect/ButtonSelect.d.ts +3 -0
- package/components/Select/ButtonSelect/ButtonSelect.js +180 -0
- package/components/Select/FilterSelect/FilterDropdown.d.ts +3 -0
- package/components/Select/FilterSelect/FilterDropdown.js +80 -0
- package/components/Select/FilterSelect/FilterGroupDropdown.d.ts +3 -0
- package/components/Select/FilterSelect/FilterGroupDropdown.js +65 -0
- package/components/Select/FilterSelect/FilterSelect.d.ts +3 -0
- package/components/Select/FilterSelect/FilterSelect.js +195 -0
- package/components/Select/MultiSelect/MultiBase/MultiBase.d.ts +3 -0
- package/components/Select/MultiSelect/MultiBase/MultiBase.js +207 -0
- package/components/Select/MultiSelect/MultiSelect.d.ts +3 -0
- package/components/Select/MultiSelect/MultiSelect.js +227 -0
- package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.d.ts +3 -0
- package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +256 -0
- package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.d.ts +3 -0
- package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +244 -0
- package/components/Select/MultiSelect/OptionsWrapper.d.ts +17 -0
- package/components/Select/MultiSelect/OptionsWrapper.js +176 -0
- package/components/Select/NestedSelect/NestedSelect.d.ts +3 -0
- package/components/Select/NestedSelect/NestedSelect.js +190 -0
- package/components/Select/ProfileDropdown/index.d.ts +4 -0
- package/components/Select/ProfileDropdown/index.js +83 -0
- package/components/Select/Select/Select.d.ts +3 -0
- package/components/Select/Select/Select.js +331 -0
- package/components/Select/SharedComponents/Actions.d.ts +8 -0
- package/components/Select/SharedComponents/Actions.js +100 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.d.ts +15 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +45 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.d.ts +3 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +102 -0
- package/components/Select/SharedComponents/ContentTop.d.ts +19 -0
- package/components/Select/SharedComponents/ContentTop.js +158 -0
- package/components/Select/SharedComponents/Footer.d.ts +3 -0
- package/components/Select/SharedComponents/Footer.js +67 -0
- package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.d.ts +3 -0
- package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +154 -0
- package/components/Select/SharedComponents/Loading.d.ts +6 -0
- package/components/Select/SharedComponents/Loading.js +17 -0
- package/components/Select/SharedComponents/index.d.ts +6 -0
- package/components/Select/SharedComponents/index.js +79 -0
- package/components/Select/constants.d.ts +7 -0
- package/components/Select/constants.js +9 -0
- package/components/Select/index.d.ts +5 -0
- package/components/Select/index.js +96 -0
- package/components/Select/types.d.ts +240 -0
- package/components/Select/types.js +1 -0
- package/components/SideNavigation/Block.d.ts +3 -0
- package/components/SideNavigation/Block.js +28 -0
- package/components/SideNavigation/NavigationItem/index.d.ts +3 -0
- package/components/SideNavigation/NavigationItem/index.js +73 -0
- package/components/SideNavigation/NavigationItem/types.d.ts +25 -0
- package/components/SideNavigation/NavigationItem/types.js +11 -0
- package/components/SideNavigation/SideNavigation.d.ts +3 -0
- package/components/SideNavigation/SideNavigation.js +57 -0
- package/components/SideNavigation/index.d.ts +2 -0
- package/components/SideNavigation/index.js +37 -0
- package/components/SideNavigation/types.d.ts +18 -0
- package/components/SideNavigation/types.js +1 -0
- package/components/SideSheet/Footer/Footer.d.ts +16 -0
- package/components/SideSheet/Footer/Footer.js +79 -0
- package/components/SideSheet/SideSheet.d.ts +3 -0
- package/components/SideSheet/SideSheet.js +193 -0
- package/components/SideSheet/index.d.ts +1 -0
- package/components/SideSheet/index.js +38 -0
- package/components/SideSheet/types.d.ts +34 -0
- package/components/SideSheet/types.js +1 -0
- package/components/Snackbar/Snackbar.d.ts +5 -0
- package/components/Snackbar/Snackbar.js +105 -0
- package/components/Snackbar/consts.d.ts +8 -0
- package/components/Snackbar/consts.js +15 -0
- package/components/Snackbar/index.d.ts +1 -0
- package/components/Snackbar/index.js +33 -0
- package/components/Snackbar/types.d.ts +15 -0
- package/components/Snackbar/types.js +1 -0
- package/components/Status/Status.d.ts +3 -0
- package/components/Status/Status.js +48 -0
- package/components/Status/index.d.ts +1 -0
- package/components/Status/index.js +9 -0
- package/components/Status/types.d.ts +14 -0
- package/components/Status/types.js +1 -0
- package/components/Stepper/Stepper.d.ts +3 -0
- package/components/Stepper/Stepper.js +45 -0
- package/components/Stepper/index.d.ts +1 -0
- package/components/Stepper/index.js +3 -0
- package/components/Stepper/types.d.ts +16 -0
- package/components/Stepper/types.js +1 -0
- package/components/Switcher/Switcher.d.ts +3 -0
- package/components/Switcher/Switcher.js +91 -0
- package/components/Switcher/index.d.ts +1 -0
- package/components/Switcher/index.js +29 -0
- package/components/Switcher/types.d.ts +12 -0
- package/components/Switcher/types.js +1 -0
- package/components/Tab/Tab.d.ts +3 -0
- package/components/Tab/Tab.js +45 -0
- package/components/Tab/TabItem.d.ts +3 -0
- package/components/Tab/TabItem.js +58 -0
- package/components/Tab/consts.d.ts +7 -0
- package/components/Tab/consts.js +12 -0
- package/components/Tab/index.d.ts +1 -0
- package/components/Tab/index.js +12 -0
- package/components/Tab/types.d.ts +51 -0
- package/components/Tab/types.js +1 -0
- package/components/Table/Header.d.ts +16 -0
- package/components/Table/Header.js +100 -0
- package/components/Table/IndeterminateCheckbox.d.ts +12 -0
- package/components/Table/IndeterminateCheckbox.js +53 -0
- package/components/Table/Row.d.ts +10 -0
- package/components/Table/Row.js +69 -0
- package/components/Table/Table.d.ts +3 -0
- package/components/Table/Table.js +149 -0
- package/components/Table/index.d.ts +1 -0
- package/components/Table/index.js +42 -0
- package/components/Table/types.d.ts +44 -0
- package/components/Table/types.js +1 -0
- package/components/Table/utils.d.ts +5 -0
- package/components/Table/utils.js +53 -0
- package/components/Text/Text.d.ts +3 -0
- package/components/Text/Text.js +36 -0
- package/components/Text/index.d.ts +1 -0
- package/components/Text/index.js +5 -0
- package/components/Text/types.d.ts +19 -0
- package/components/Text/types.js +1 -0
- package/components/Textarea/Textarea.d.ts +3 -0
- package/components/Textarea/Textarea.js +115 -0
- package/components/Textarea/index.d.ts +1 -0
- package/components/Textarea/index.js +31 -0
- package/components/Textarea/types.d.ts +18 -0
- package/components/Textarea/types.js +1 -0
- package/components/Tooltip/Tooltip.d.ts +3 -0
- package/components/Tooltip/Tooltip.js +103 -0
- package/components/Tooltip/index.d.ts +1 -0
- package/components/Tooltip/index.js +16 -0
- package/components/Tooltip/types.d.ts +21 -0
- package/components/Tooltip/types.js +13 -0
- package/consts/index.d.ts +23 -0
- package/consts/index.js +62 -0
- package/context/FormContextProvider.d.ts +5 -0
- package/context/FormContextProvider.js +12 -0
- package/context/index.d.ts +2 -0
- package/context/index.js +5 -0
- package/context/types.d.ts +21 -0
- package/context/types.js +12 -0
- package/defineProperty-7db32082.js +28 -0
- package/extends-e8ef956f.js +11 -0
- package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.d.ts +6 -0
- package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +15 -0
- package/helperComponents/AnimatePresenceWrapper/index.d.ts +1 -0
- package/helperComponents/AnimatePresenceWrapper/index.js +3 -0
- package/helperComponents/CodeBlock/CodeBlock.d.ts +8 -0
- package/helperComponents/CodeBlock/CodeBlock.js +178 -0
- package/helperComponents/CodeBlock/index.d.ts +2 -0
- package/helperComponents/CodeBlock/index.js +3 -0
- package/helperComponents/ErrorMessage/ErrorMessage.d.ts +3 -0
- package/helperComponents/ErrorMessage/ErrorMessage.js +27 -0
- package/helperComponents/ErrorMessage/index.d.ts +1 -0
- package/helperComponents/ErrorMessage/index.js +8 -0
- package/helperComponents/ErrorMessage/types.d.ts +7 -0
- package/helperComponents/ErrorMessage/types.js +1 -0
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.d.ts +9 -0
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +26 -0
- package/helperComponents/IconDynamicComponent/constants.d.ts +3 -0
- package/helperComponents/IconDynamicComponent/constants.js +34 -0
- package/helperComponents/IconDynamicComponent/index.d.ts +1 -0
- package/helperComponents/IconDynamicComponent/index.js +3 -0
- package/helperComponents/Label/Label.d.ts +3 -0
- package/helperComponents/Label/Label.js +29 -0
- package/helperComponents/Label/index.d.ts +1 -0
- package/helperComponents/Label/index.js +6 -0
- package/helperComponents/Label/types.d.ts +11 -0
- package/helperComponents/Label/types.js +1 -0
- package/helperComponents/Loader/Loader.d.ts +3 -0
- package/helperComponents/Loader/Loader.js +15 -0
- package/helperComponents/Loader/index.d.ts +1 -0
- package/helperComponents/Loader/index.js +2 -0
- package/helperComponents/Loader/types.d.ts +4 -0
- package/helperComponents/Loader/types.js +1 -0
- package/helperComponents/OptionItem/OptionItem.d.ts +3 -0
- package/helperComponents/OptionItem/OptionItem.js +119 -0
- package/helperComponents/OptionItem/index.d.ts +1 -0
- package/helperComponents/OptionItem/index.js +46 -0
- package/helperComponents/OptionItem/types.d.ts +17 -0
- package/helperComponents/OptionItem/types.js +1 -0
- package/helperComponents/index.d.ts +6 -0
- package/helperComponents/index.js +47 -0
- package/hooks/index.d.ts +12 -0
- package/hooks/index.js +19 -0
- package/hooks/useChangePositionsOnScroll.d.ts +6 -0
- package/hooks/useChangePositionsOnScroll.js +42 -0
- package/hooks/useDispatchEventOnScroll.d.ts +1 -0
- package/hooks/useDispatchEventOnScroll.js +12 -0
- package/hooks/useFieldArray.d.ts +1 -0
- package/hooks/useFieldArray.js +1 -0
- package/hooks/useFormContext.d.ts +9 -0
- package/hooks/useFormContext.js +10 -0
- package/hooks/useFormProps.d.ts +2 -0
- package/hooks/useFormProps.js +10 -0
- package/hooks/useGetElemPositions.d.ts +10 -0
- package/hooks/useGetElemPositions.js +19 -0
- package/hooks/useGetElemSizes.d.ts +13 -0
- package/hooks/useGetElemSizes.js +16 -0
- package/hooks/useGetHasBottomSpace.d.ts +11 -0
- package/hooks/useGetHasBottomSpace.js +26 -0
- package/hooks/useGetTooltipPosition.d.ts +1 -0
- package/hooks/useGetTooltipPosition.js +85 -0
- package/hooks/useGetTooltipStyles.d.ts +14 -0
- package/hooks/useGetTooltipStyles.js +89 -0
- package/hooks/useHideBodyScroll.d.ts +1 -0
- package/hooks/useHideBodyScroll.js +35 -0
- package/hooks/useHideOnScroll.d.ts +1 -0
- package/hooks/useHideOnScroll.js +24 -0
- package/hooks/useOnOutsideClick.d.ts +3 -0
- package/hooks/useOnOutsideClick.js +65 -0
- package/hooks/useScreenSize.d.ts +3 -0
- package/hooks/useScreenSize.js +36 -0
- package/index.d.ts +54 -0
- package/index.js +495 -0
- package/objectWithoutProperties-fcd64cc7.js +23 -0
- package/package.json +39 -0
- package/slicedToArray-0c706912.js +55 -0
- package/stories/AdvancedTable.stories.d.ts +8 -0
- package/stories/Alert.stories.d.ts +22 -0
- package/stories/Avatar.stories.d.ts +29 -0
- package/stories/Badge.stories.d.ts +22 -0
- package/stories/Breadcrumb.stories.d.ts +8 -0
- package/stories/Button.stories.d.ts +22 -0
- package/stories/ButtonIcon.stories.d.ts +16 -0
- package/stories/CardBody.stories.d.ts +8 -0
- package/stories/CardSelect.stories.d.ts +24 -0
- package/stories/Cards.stories.d.ts +8 -0
- package/stories/Checkbox.stories.d.ts +9 -0
- package/stories/Chips.stories.d.ts +28 -0
- package/stories/Collapse.stories.d.ts +12 -0
- package/stories/Container.stories.d.ts +8 -0
- package/stories/Copy.stories.d.ts +9 -0
- package/stories/Counter.stories.d.ts +8 -0
- package/stories/DatePicker.stories.d.ts +17 -0
- package/stories/Divider.stories.d.ts +4 -0
- package/stories/Empty.stories.d.ts +16 -0
- package/stories/FileUpload.stories.d.ts +8 -0
- package/stories/Form.stories.d.ts +7 -0
- package/stories/FramedIcon.stories.d.ts +16 -0
- package/stories/Heading.stories.d.ts +36 -0
- package/stories/Image.stories.d.ts +4 -0
- package/stories/Input.stories.d.ts +18 -0
- package/stories/ItemSelect.stories.d.ts +9 -0
- package/stories/Link.stories.d.ts +22 -0
- package/stories/Menu.stories.d.ts +17 -0
- package/stories/Modal.stories.d.ts +23 -0
- package/stories/More.stories.d.ts +7 -0
- package/stories/NavigationItem.stories.d.ts +13 -0
- package/stories/OneTimePassword.stories.d.ts +34 -0
- package/stories/Pagination.stories.d.ts +16 -0
- package/stories/Popover.stories.d.ts +16 -0
- package/stories/Progress.stories.d.ts +23 -0
- package/stories/ProgressStep.stories.d.ts +28 -0
- package/stories/Radio.stories.d.ts +10 -0
- package/stories/SVGIcons.stories.d.ts +29 -0
- package/stories/Select.stories.d.ts +21 -0
- package/stories/SideNavigation.stories.d.ts +9 -0
- package/stories/SideSheet.stories.d.ts +16 -0
- package/stories/Snackbar.stories.d.ts +17 -0
- package/stories/Status.stories.d.ts +22 -0
- package/stories/Stepper.stories.d.ts +7 -0
- package/stories/Switcher.stories.d.ts +16 -0
- package/stories/Tab.stories.d.ts +28 -0
- package/stories/Table.stories.d.ts +8 -0
- package/stories/Text.stories.d.ts +42 -0
- package/stories/Textarea.stories.d.ts +8 -0
- package/stories/Tooltip.stories.d.ts +22 -0
- package/toConsumableArray-e0031ed3.js +19 -0
- package/typeof-ecd92d7f.js +11 -0
- package/types.d.js +1 -0
- package/utils/helpers.d.ts +15 -0
- package/utils/helpers.js +86 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { _ as _extends } from '../../extends-e8ef956f.js';
|
|
2
|
+
import React, { useMemo } from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import { CHECKBOX_HEADER_ID, CHECKBOX_DEFAULT_WIDTH } from './utils.js';
|
|
5
|
+
import '../../toConsumableArray-e0031ed3.js';
|
|
6
|
+
import '../../slicedToArray-0c706912.js';
|
|
7
|
+
import './IndeterminateCheckbox.js';
|
|
8
|
+
import '../Checkbox/Checkbox.js';
|
|
9
|
+
import '../../defineProperty-7db32082.js';
|
|
10
|
+
import '../../typeof-ecd92d7f.js';
|
|
11
|
+
import '../Popover/Popover.js';
|
|
12
|
+
import '../../hooks/useGetTooltipStyles.js';
|
|
13
|
+
import '../../hooks/useGetElemSizes.js';
|
|
14
|
+
import '../../hooks/useGetElemPositions.js';
|
|
15
|
+
import '../../hooks/useGetTooltipPosition.js';
|
|
16
|
+
import '../Tooltip/types.js';
|
|
17
|
+
import '../../hooks/useHideOnScroll.js';
|
|
18
|
+
import '../../consts/index.js';
|
|
19
|
+
import 'dayjs';
|
|
20
|
+
import '../../hooks/useOnOutsideClick.js';
|
|
21
|
+
import '../../hooks/useScreenSize.js';
|
|
22
|
+
import 'react-hook-form';
|
|
23
|
+
import '../Text/Text.js';
|
|
24
|
+
import '../../utils/helpers.js';
|
|
25
|
+
import '../Link/Link.js';
|
|
26
|
+
import '../SVGIcons/IconInfo.js';
|
|
27
|
+
import '../../helperComponents/IconDynamicComponent/IconDynamicComponent.js';
|
|
28
|
+
import '../../helperComponents/IconDynamicComponent/constants.js';
|
|
29
|
+
import 'react-syntax-highlighter';
|
|
30
|
+
|
|
31
|
+
function Row(_ref) {
|
|
32
|
+
var row = _ref.row,
|
|
33
|
+
selectedFlatRows = _ref.selectedFlatRows,
|
|
34
|
+
withSelect = _ref.withSelect,
|
|
35
|
+
handleRowClick = _ref.handleRowClick;
|
|
36
|
+
var isRowSelected = useMemo(function () {
|
|
37
|
+
return selectedFlatRows.find(function (r) {
|
|
38
|
+
return r.id === row.id;
|
|
39
|
+
});
|
|
40
|
+
}, [selectedFlatRows]);
|
|
41
|
+
return /*#__PURE__*/React.createElement("tr", _extends({}, row.getRowProps(), {
|
|
42
|
+
className: classNames({
|
|
43
|
+
selected: Boolean(isRowSelected)
|
|
44
|
+
}),
|
|
45
|
+
onClick: function onClick() {
|
|
46
|
+
return handleRowClick === null || handleRowClick === void 0 ? void 0 : handleRowClick(row.original);
|
|
47
|
+
}
|
|
48
|
+
}), row.cells.map(function (_ref2, i, arr) {
|
|
49
|
+
var _arr$column;
|
|
50
|
+
var getCellProps = _ref2.getCellProps,
|
|
51
|
+
column = _ref2.column,
|
|
52
|
+
render = _ref2.render;
|
|
53
|
+
var isSelection = column.id === CHECKBOX_HEADER_ID;
|
|
54
|
+
return /*#__PURE__*/React.createElement("td", _extends({
|
|
55
|
+
key: i
|
|
56
|
+
}, getCellProps(), {
|
|
57
|
+
style: {
|
|
58
|
+
left: !isSelection && withSelect && (column === null || column === void 0 ? void 0 : column.fixed) === 'left' ? CHECKBOX_DEFAULT_WIDTH : 0
|
|
59
|
+
},
|
|
60
|
+
className: classNames({
|
|
61
|
+
fixed_column_left: (column === null || column === void 0 ? void 0 : column.fixed) === 'left',
|
|
62
|
+
fixed_column_right: (column === null || column === void 0 ? void 0 : column.fixed) === 'right',
|
|
63
|
+
fixed_checkbox: isSelection && ((_arr$column = arr[i + 1].column) === null || _arr$column === void 0 ? void 0 : _arr$column.fixed) === 'left'
|
|
64
|
+
})
|
|
65
|
+
}), render('Cell'));
|
|
66
|
+
}));
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export { Row };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { ReactElement } from 'react';
|
|
2
|
+
import type { TTableProps } from './types';
|
|
3
|
+
export declare function Table({ columns, data, onChange, fixedHeader, withSelect, handleRowClick, className, sortIconProps, containerRefHandler, noResultProps }: TTableProps): ReactElement;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import { _ as _extends } from '../../extends-e8ef956f.js';
|
|
2
|
+
import { _ as _toConsumableArray } from '../../toConsumableArray-e0031ed3.js';
|
|
3
|
+
import { _ as _slicedToArray } from '../../slicedToArray-0c706912.js';
|
|
4
|
+
import React, { useRef, useState, useMemo, useEffect } from 'react';
|
|
5
|
+
import { useTable, useSortBy, useRowSelect } from 'react-table';
|
|
6
|
+
import { setSelectedRows } from './utils.js';
|
|
7
|
+
import { Row } from './Row.js';
|
|
8
|
+
import { Header } from './Header.js';
|
|
9
|
+
import classNames from 'classnames';
|
|
10
|
+
import { useDispatchEventOnScroll } from '../../hooks/useDispatchEventOnScroll.js';
|
|
11
|
+
import { Empty } from '../Empty/Empty.js';
|
|
12
|
+
import './IndeterminateCheckbox.js';
|
|
13
|
+
import '../Checkbox/Checkbox.js';
|
|
14
|
+
import '../../defineProperty-7db32082.js';
|
|
15
|
+
import '../../typeof-ecd92d7f.js';
|
|
16
|
+
import '../Popover/Popover.js';
|
|
17
|
+
import '../../hooks/useGetTooltipStyles.js';
|
|
18
|
+
import '../../hooks/useGetElemSizes.js';
|
|
19
|
+
import '../../hooks/useGetElemPositions.js';
|
|
20
|
+
import '../../hooks/useGetTooltipPosition.js';
|
|
21
|
+
import '../Tooltip/types.js';
|
|
22
|
+
import '../../hooks/useHideOnScroll.js';
|
|
23
|
+
import '../../consts/index.js';
|
|
24
|
+
import 'dayjs';
|
|
25
|
+
import '../../hooks/useOnOutsideClick.js';
|
|
26
|
+
import '../../hooks/useScreenSize.js';
|
|
27
|
+
import 'react-hook-form';
|
|
28
|
+
import '../Text/Text.js';
|
|
29
|
+
import '../../utils/helpers.js';
|
|
30
|
+
import '../Link/Link.js';
|
|
31
|
+
import '../SVGIcons/IconInfo.js';
|
|
32
|
+
import '../../helperComponents/IconDynamicComponent/IconDynamicComponent.js';
|
|
33
|
+
import '../../helperComponents/IconDynamicComponent/constants.js';
|
|
34
|
+
import 'react-syntax-highlighter';
|
|
35
|
+
import '../SVGIcons/IconArrowDown.js';
|
|
36
|
+
import '../SVGIcons/IconArrowUp.js';
|
|
37
|
+
import '../Image/Image.js';
|
|
38
|
+
import '../Button/Button.js';
|
|
39
|
+
import '../../objectWithoutProperties-fcd64cc7.js';
|
|
40
|
+
import '../../helperComponents/Loader/Loader.js';
|
|
41
|
+
import '../Button/consts.js';
|
|
42
|
+
|
|
43
|
+
function Table(_ref) {
|
|
44
|
+
var columns = _ref.columns,
|
|
45
|
+
data = _ref.data,
|
|
46
|
+
onChange = _ref.onChange,
|
|
47
|
+
fixedHeader = _ref.fixedHeader,
|
|
48
|
+
_ref$withSelect = _ref.withSelect,
|
|
49
|
+
withSelect = _ref$withSelect === void 0 ? false : _ref$withSelect,
|
|
50
|
+
handleRowClick = _ref.handleRowClick,
|
|
51
|
+
className = _ref.className,
|
|
52
|
+
sortIconProps = _ref.sortIconProps,
|
|
53
|
+
containerRefHandler = _ref.containerRefHandler,
|
|
54
|
+
noResultProps = _ref.noResultProps;
|
|
55
|
+
var tableRef = useRef(null);
|
|
56
|
+
var _useState = useState(400),
|
|
57
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
58
|
+
tableWidth = _useState2[0],
|
|
59
|
+
setTableWidth = _useState2[1];
|
|
60
|
+
var dispatchScrollEvent = useDispatchEventOnScroll();
|
|
61
|
+
var sortedColumns = useMemo(function () {
|
|
62
|
+
var condition1 = function condition1(item) {
|
|
63
|
+
return item.fixed === 'left';
|
|
64
|
+
}; // Move even numbers to the start
|
|
65
|
+
var condition2 = function condition2(item) {
|
|
66
|
+
return item.fixed === 'right';
|
|
67
|
+
}; // Move numbers greater than 5 to the end
|
|
68
|
+
|
|
69
|
+
// Custom sorting function
|
|
70
|
+
columns.sort(function (a, b) {
|
|
71
|
+
if (condition1(a) && !condition1(b)) {
|
|
72
|
+
return -1; // Move 'a' to the start
|
|
73
|
+
} else if (!condition1(a) && condition1(b)) {
|
|
74
|
+
return 1; // Move 'b' to the start
|
|
75
|
+
} else if (condition2(a) && !condition2(b)) {
|
|
76
|
+
return 1; // Move 'a' to the end
|
|
77
|
+
} else if (!condition2(a) && condition2(b)) {
|
|
78
|
+
return -1; // Move 'b' to the end
|
|
79
|
+
} else {
|
|
80
|
+
return 0; // Their order doesn't matter
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
return _toConsumableArray(columns);
|
|
84
|
+
}, [columns]);
|
|
85
|
+
var _ref2 = useTable({
|
|
86
|
+
columns: sortedColumns,
|
|
87
|
+
data: data
|
|
88
|
+
}, useSortBy, useRowSelect, function (hooks) {
|
|
89
|
+
return setSelectedRows(hooks, withSelect);
|
|
90
|
+
}),
|
|
91
|
+
getTableProps = _ref2.getTableProps,
|
|
92
|
+
getTableBodyProps = _ref2.getTableBodyProps,
|
|
93
|
+
selectedFlatRows = _ref2.selectedFlatRows,
|
|
94
|
+
headerGroups = _ref2.headerGroups,
|
|
95
|
+
rows = _ref2.rows,
|
|
96
|
+
prepareRow = _ref2.prepareRow,
|
|
97
|
+
state = _ref2.state;
|
|
98
|
+
useEffect(function () {
|
|
99
|
+
onChange === null || onChange === void 0 || onChange(state);
|
|
100
|
+
}, [JSON.stringify(state)]);
|
|
101
|
+
var handleResize = function handleResize() {
|
|
102
|
+
if (tableRef.current) {
|
|
103
|
+
var _tableRef$current;
|
|
104
|
+
setTableWidth((_tableRef$current = tableRef.current) === null || _tableRef$current === void 0 ? void 0 : _tableRef$current.offsetWidth);
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
useEffect(function () {
|
|
108
|
+
window.addEventListener('resize', handleResize);
|
|
109
|
+
if (tableRef.current) {
|
|
110
|
+
var _tableRef$current2;
|
|
111
|
+
setTableWidth((_tableRef$current2 = tableRef.current) === null || _tableRef$current2 === void 0 ? void 0 : _tableRef$current2.offsetWidth);
|
|
112
|
+
}
|
|
113
|
+
return function () {
|
|
114
|
+
window.removeEventListener('resize', handleResize);
|
|
115
|
+
};
|
|
116
|
+
}, [tableRef.current]);
|
|
117
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
118
|
+
onScroll: dispatchScrollEvent,
|
|
119
|
+
ref: containerRefHandler,
|
|
120
|
+
className: classNames('table-wrapper scrollbar scrollbar--horizontal scrollbar--vertical', className)
|
|
121
|
+
}, /*#__PURE__*/React.createElement("table", _extends({}, getTableProps(), {
|
|
122
|
+
ref: tableRef
|
|
123
|
+
}), /*#__PURE__*/React.createElement("thead", null, headerGroups.map(function (headerGroup, i) {
|
|
124
|
+
return /*#__PURE__*/React.createElement(Header, {
|
|
125
|
+
key: i,
|
|
126
|
+
sortIconProps: sortIconProps,
|
|
127
|
+
withSelect: withSelect,
|
|
128
|
+
fixedHeader: fixedHeader,
|
|
129
|
+
headerGroup: headerGroup,
|
|
130
|
+
tableWidth: tableWidth
|
|
131
|
+
});
|
|
132
|
+
})), /*#__PURE__*/React.createElement("tbody", getTableBodyProps(), rows !== null && rows !== void 0 && rows.length ? rows.map(function (row) {
|
|
133
|
+
prepareRow(row);
|
|
134
|
+
return /*#__PURE__*/React.createElement(Row, {
|
|
135
|
+
handleRowClick: handleRowClick,
|
|
136
|
+
withSelect: withSelect,
|
|
137
|
+
selectedFlatRows: selectedFlatRows,
|
|
138
|
+
row: row,
|
|
139
|
+
key: row.id
|
|
140
|
+
});
|
|
141
|
+
}) : /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", {
|
|
142
|
+
colSpan: withSelect ? columns.length + 1 : columns.length
|
|
143
|
+
}, /*#__PURE__*/React.createElement(Empty, {
|
|
144
|
+
mainMessage: noResultProps === null || noResultProps === void 0 ? void 0 : noResultProps.title,
|
|
145
|
+
paragraphMessage: noResultProps === null || noResultProps === void 0 ? void 0 : noResultProps.text
|
|
146
|
+
}))))));
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export { Table };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Table';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export { Table } from './Table.js';
|
|
2
|
+
import '../../extends-e8ef956f.js';
|
|
3
|
+
import '../../toConsumableArray-e0031ed3.js';
|
|
4
|
+
import '../../slicedToArray-0c706912.js';
|
|
5
|
+
import 'react';
|
|
6
|
+
import 'react-table';
|
|
7
|
+
import './utils.js';
|
|
8
|
+
import './IndeterminateCheckbox.js';
|
|
9
|
+
import '../Checkbox/Checkbox.js';
|
|
10
|
+
import '../../defineProperty-7db32082.js';
|
|
11
|
+
import '../../typeof-ecd92d7f.js';
|
|
12
|
+
import 'classnames';
|
|
13
|
+
import '../Popover/Popover.js';
|
|
14
|
+
import '../../hooks/useGetTooltipStyles.js';
|
|
15
|
+
import '../../hooks/useGetElemSizes.js';
|
|
16
|
+
import '../../hooks/useGetElemPositions.js';
|
|
17
|
+
import '../../hooks/useGetTooltipPosition.js';
|
|
18
|
+
import '../Tooltip/types.js';
|
|
19
|
+
import '../../hooks/useHideOnScroll.js';
|
|
20
|
+
import '../../consts/index.js';
|
|
21
|
+
import 'dayjs';
|
|
22
|
+
import '../../hooks/useOnOutsideClick.js';
|
|
23
|
+
import '../../hooks/useScreenSize.js';
|
|
24
|
+
import 'react-hook-form';
|
|
25
|
+
import '../Text/Text.js';
|
|
26
|
+
import '../../utils/helpers.js';
|
|
27
|
+
import '../Link/Link.js';
|
|
28
|
+
import '../SVGIcons/IconInfo.js';
|
|
29
|
+
import '../../helperComponents/IconDynamicComponent/IconDynamicComponent.js';
|
|
30
|
+
import '../../helperComponents/IconDynamicComponent/constants.js';
|
|
31
|
+
import 'react-syntax-highlighter';
|
|
32
|
+
import './Row.js';
|
|
33
|
+
import './Header.js';
|
|
34
|
+
import '../SVGIcons/IconArrowDown.js';
|
|
35
|
+
import '../SVGIcons/IconArrowUp.js';
|
|
36
|
+
import '../../hooks/useDispatchEventOnScroll.js';
|
|
37
|
+
import '../Empty/Empty.js';
|
|
38
|
+
import '../Image/Image.js';
|
|
39
|
+
import '../Button/Button.js';
|
|
40
|
+
import '../../objectWithoutProperties-fcd64cc7.js';
|
|
41
|
+
import '../../helperComponents/Loader/Loader.js';
|
|
42
|
+
import '../Button/consts.js';
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { Column, TableState } from 'react-table';
|
|
2
|
+
import type { TSVGIconType } from '../SVGIcons/types';
|
|
3
|
+
type Enumerate<N extends number, Acc extends number[] = []> = Acc['length'] extends N ? Acc[number] : Enumerate<N, [...Acc, Acc['length']]>;
|
|
4
|
+
export type IntRange<F extends number, T extends number> = Exclude<Enumerate<T>, Enumerate<F>>;
|
|
5
|
+
export type TColumnProps = {
|
|
6
|
+
sortable?: boolean;
|
|
7
|
+
};
|
|
8
|
+
export type TFixedSide = 'left' | 'right';
|
|
9
|
+
export type TColumnFields = {
|
|
10
|
+
columnProps?: TColumnProps;
|
|
11
|
+
fixed?: TFixedSide;
|
|
12
|
+
widthInPercent?: IntRange<0, 100>;
|
|
13
|
+
};
|
|
14
|
+
export type TColumn = Column & TColumnFields;
|
|
15
|
+
export type TTableProps = {
|
|
16
|
+
className?: string;
|
|
17
|
+
columns: TColumn[];
|
|
18
|
+
data: any[];
|
|
19
|
+
withSelect?: boolean;
|
|
20
|
+
fixedHeader?: boolean;
|
|
21
|
+
handleRowClick?: (row: any) => void;
|
|
22
|
+
onChange?: (state: TableState) => void;
|
|
23
|
+
containerRefHandler?: (ref: HTMLDivElement) => void;
|
|
24
|
+
sortIconProps?: {
|
|
25
|
+
size?: TIconSize;
|
|
26
|
+
type?: TSVGIconType;
|
|
27
|
+
Component?: TSVGIconComponent;
|
|
28
|
+
};
|
|
29
|
+
noResultProps?: {
|
|
30
|
+
title?: string;
|
|
31
|
+
text?: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export type SortBy = {
|
|
35
|
+
id: string;
|
|
36
|
+
desc: boolean;
|
|
37
|
+
};
|
|
38
|
+
export interface TTableState extends TableState {
|
|
39
|
+
selectedRowIds?: Record<string, number>;
|
|
40
|
+
pageSize?: number;
|
|
41
|
+
pageIndex?: number;
|
|
42
|
+
sortBy?: SortBy[];
|
|
43
|
+
}
|
|
44
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { Hooks } from 'react-table';
|
|
2
|
+
export declare const CHECKBOX_HEADER_ID = "selection";
|
|
3
|
+
export declare const CHECKBOX_DEFAULT_WIDTH = 48;
|
|
4
|
+
export declare function setSelectedRows(hooks: Hooks, withSelect: boolean): void;
|
|
5
|
+
export declare function calcColumnWidth(percent: number, tableWidth: number): number;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { _ as _toConsumableArray } from '../../toConsumableArray-e0031ed3.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { IndeterminateCheckbox } from './IndeterminateCheckbox.js';
|
|
4
|
+
import '../../slicedToArray-0c706912.js';
|
|
5
|
+
import '../Checkbox/Checkbox.js';
|
|
6
|
+
import '../../defineProperty-7db32082.js';
|
|
7
|
+
import '../../typeof-ecd92d7f.js';
|
|
8
|
+
import '../../extends-e8ef956f.js';
|
|
9
|
+
import 'classnames';
|
|
10
|
+
import '../Popover/Popover.js';
|
|
11
|
+
import '../../hooks/useGetTooltipStyles.js';
|
|
12
|
+
import '../../hooks/useGetElemSizes.js';
|
|
13
|
+
import '../../hooks/useGetElemPositions.js';
|
|
14
|
+
import '../../hooks/useGetTooltipPosition.js';
|
|
15
|
+
import '../Tooltip/types.js';
|
|
16
|
+
import '../../hooks/useHideOnScroll.js';
|
|
17
|
+
import '../../consts/index.js';
|
|
18
|
+
import 'dayjs';
|
|
19
|
+
import '../../hooks/useOnOutsideClick.js';
|
|
20
|
+
import '../../hooks/useScreenSize.js';
|
|
21
|
+
import 'react-hook-form';
|
|
22
|
+
import '../Text/Text.js';
|
|
23
|
+
import '../../utils/helpers.js';
|
|
24
|
+
import '../Link/Link.js';
|
|
25
|
+
import '../SVGIcons/IconInfo.js';
|
|
26
|
+
import '../../helperComponents/IconDynamicComponent/IconDynamicComponent.js';
|
|
27
|
+
import '../../helperComponents/IconDynamicComponent/constants.js';
|
|
28
|
+
import 'react-syntax-highlighter';
|
|
29
|
+
|
|
30
|
+
var CHECKBOX_HEADER_ID = 'selection';
|
|
31
|
+
var CHECKBOX_DEFAULT_WIDTH = 48;
|
|
32
|
+
function setSelectedRows(hooks, withSelect) {
|
|
33
|
+
if (withSelect) {
|
|
34
|
+
hooks.visibleColumns.push(function (columns) {
|
|
35
|
+
return [{
|
|
36
|
+
id: CHECKBOX_HEADER_ID,
|
|
37
|
+
Header: function Header(_ref) {
|
|
38
|
+
var getToggleAllRowsSelectedProps = _ref.getToggleAllRowsSelectedProps;
|
|
39
|
+
return /*#__PURE__*/React.createElement(IndeterminateCheckbox, getToggleAllRowsSelectedProps());
|
|
40
|
+
},
|
|
41
|
+
Cell: function Cell(_ref2) {
|
|
42
|
+
var row = _ref2.row;
|
|
43
|
+
return /*#__PURE__*/React.createElement(IndeterminateCheckbox, row.getToggleRowSelectedProps());
|
|
44
|
+
}
|
|
45
|
+
}].concat(_toConsumableArray(columns));
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
function calcColumnWidth(percent, tableWidth) {
|
|
50
|
+
return percent * tableWidth / 100;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export { CHECKBOX_DEFAULT_WIDTH, CHECKBOX_HEADER_ID, calcColumnWidth, setSelectedRows };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import classNames from 'classnames';
|
|
3
|
+
import { noop } from '../../utils/helpers.js';
|
|
4
|
+
import 'dayjs';
|
|
5
|
+
|
|
6
|
+
var Text = function Text(props) {
|
|
7
|
+
var children = props.children,
|
|
8
|
+
_props$className = props.className,
|
|
9
|
+
className = _props$className === void 0 ? '' : _props$className,
|
|
10
|
+
_props$type = props.type,
|
|
11
|
+
type = _props$type === void 0 ? 'primary' : _props$type,
|
|
12
|
+
_props$size = props.size,
|
|
13
|
+
size = _props$size === void 0 ? 'standard' : _props$size,
|
|
14
|
+
_props$weight = props.weight,
|
|
15
|
+
weight = _props$weight === void 0 ? 'regular' : _props$weight,
|
|
16
|
+
_props$lineHeight = props.lineHeight,
|
|
17
|
+
lineHeight = _props$lineHeight === void 0 ? 'medium' : _props$lineHeight,
|
|
18
|
+
_props$as = props.as,
|
|
19
|
+
As = _props$as === void 0 ? 'p' : _props$as,
|
|
20
|
+
_props$dataId = props.dataId,
|
|
21
|
+
dataId = _props$dataId === void 0 ? '' : _props$dataId,
|
|
22
|
+
_props$onClick = props.onClick,
|
|
23
|
+
onClick = _props$onClick === void 0 ? noop : _props$onClick,
|
|
24
|
+
_props$id = props.id,
|
|
25
|
+
id = _props$id === void 0 ? '' : _props$id,
|
|
26
|
+
title = props.title;
|
|
27
|
+
return /*#__PURE__*/React.createElement(As, {
|
|
28
|
+
id: id,
|
|
29
|
+
title: title,
|
|
30
|
+
"data-id": dataId,
|
|
31
|
+
onClick: onClick,
|
|
32
|
+
className: classNames('body', size && "body-".concat(size), type && "color-".concat(type), weight, lineHeight && "lh-".concat(lineHeight), className)
|
|
33
|
+
}, children);
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export { Text };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Text';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { ElementType, MouseEvent, ReactNode } from 'react';
|
|
2
|
+
type TTextTypes = 'primary' | 'secondary' | 'tertiary' | 'disabled' | 'inverse' | 'selected' | 'brand' | 'danger' | 'warning' | 'success' | 'information' | 'discovery';
|
|
3
|
+
type TTextSize = 'xxsmall' | 'xsmall' | 'small' | 'standard' | 'medium' | 'large';
|
|
4
|
+
type TTextWeight = 'regular' | 'semibold' | 'bold' | 'bolder';
|
|
5
|
+
type TTextLineHeight = 'xsmall' | 'small' | 'medium' | 'large';
|
|
6
|
+
export interface TextPropTypes {
|
|
7
|
+
id?: string;
|
|
8
|
+
as?: ElementType;
|
|
9
|
+
title?: string;
|
|
10
|
+
children?: ReactNode;
|
|
11
|
+
type?: TTextTypes;
|
|
12
|
+
size?: TTextSize;
|
|
13
|
+
weight?: TTextWeight;
|
|
14
|
+
lineHeight?: TTextLineHeight;
|
|
15
|
+
className?: string;
|
|
16
|
+
dataId?: string;
|
|
17
|
+
onClick?: (event: MouseEvent<HTMLElement>) => void;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { _ as _extends } from '../../extends-e8ef956f.js';
|
|
2
|
+
import { _ as _objectWithoutProperties } from '../../objectWithoutProperties-fcd64cc7.js';
|
|
3
|
+
import React, { useMemo } from 'react';
|
|
4
|
+
import { Label } from '../../helperComponents/Label/Label.js';
|
|
5
|
+
import { ErrorMessage } from '../../helperComponents/ErrorMessage/ErrorMessage.js';
|
|
6
|
+
import '../Checkbox/Checkbox.js';
|
|
7
|
+
import classNames from 'classnames';
|
|
8
|
+
import { Text } from '../Text/Text.js';
|
|
9
|
+
import 'dayjs';
|
|
10
|
+
import '../../hooks/useScreenSize.js';
|
|
11
|
+
import 'react-hook-form';
|
|
12
|
+
import 'react-syntax-highlighter';
|
|
13
|
+
import { IconCheckmarkCircleFilled } from '../SVGIcons/IconCheckmarkCircleFilled.js';
|
|
14
|
+
import '../../utils/helpers.js';
|
|
15
|
+
import '../../helperComponents/IconDynamicComponent/IconDynamicComponent.js';
|
|
16
|
+
import '../../helperComponents/IconDynamicComponent/constants.js';
|
|
17
|
+
import '../../defineProperty-7db32082.js';
|
|
18
|
+
import '../../typeof-ecd92d7f.js';
|
|
19
|
+
import '../Popover/Popover.js';
|
|
20
|
+
import '../../slicedToArray-0c706912.js';
|
|
21
|
+
import '../../hooks/useGetTooltipStyles.js';
|
|
22
|
+
import '../../hooks/useGetElemSizes.js';
|
|
23
|
+
import '../../hooks/useGetElemPositions.js';
|
|
24
|
+
import '../../hooks/useGetTooltipPosition.js';
|
|
25
|
+
import '../Tooltip/types.js';
|
|
26
|
+
import '../../hooks/useHideOnScroll.js';
|
|
27
|
+
import '../../consts/index.js';
|
|
28
|
+
import '../../hooks/useOnOutsideClick.js';
|
|
29
|
+
import '../Link/Link.js';
|
|
30
|
+
import '../SVGIcons/IconInfo.js';
|
|
31
|
+
|
|
32
|
+
var _excluded = ["className", "error", "hasError", "label", "disabled", "currentValue", "changeHandler", "placeHolder", "onChange", "required", "maxCount", "helperText", "successMessage", "dataId", "labelAddons"];
|
|
33
|
+
var Textarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
34
|
+
var className = _ref.className,
|
|
35
|
+
error = _ref.error,
|
|
36
|
+
hasError = _ref.hasError,
|
|
37
|
+
label = _ref.label,
|
|
38
|
+
disabled = _ref.disabled,
|
|
39
|
+
currentValue = _ref.currentValue,
|
|
40
|
+
changeHandler = _ref.changeHandler,
|
|
41
|
+
placeHolder = _ref.placeHolder,
|
|
42
|
+
onChange = _ref.onChange,
|
|
43
|
+
_ref$required = _ref.required,
|
|
44
|
+
required = _ref$required === void 0 ? false : _ref$required,
|
|
45
|
+
maxCount = _ref.maxCount,
|
|
46
|
+
helperText = _ref.helperText,
|
|
47
|
+
successMessage = _ref.successMessage,
|
|
48
|
+
_ref$dataId = _ref.dataId,
|
|
49
|
+
dataId = _ref$dataId === void 0 ? '' : _ref$dataId,
|
|
50
|
+
labelAddons = _ref.labelAddons,
|
|
51
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
52
|
+
// const isErrorVisible = hasError !== undefined ? hasError : !!error
|
|
53
|
+
|
|
54
|
+
var handleChange = function handleChange(event) {
|
|
55
|
+
if (changeHandler) {
|
|
56
|
+
changeHandler(event);
|
|
57
|
+
}
|
|
58
|
+
if (onChange) {
|
|
59
|
+
onChange(event);
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
var currentLength = useMemo(function () {
|
|
63
|
+
if (currentValue) {
|
|
64
|
+
return currentValue.length;
|
|
65
|
+
}
|
|
66
|
+
if (rest && rest.value && typeof rest.value === 'string') {
|
|
67
|
+
return rest.value.length;
|
|
68
|
+
}
|
|
69
|
+
return 0;
|
|
70
|
+
}, [rest, currentValue]);
|
|
71
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
72
|
+
className: classNames('textarea', className, {
|
|
73
|
+
'textarea--invalid': hasError
|
|
74
|
+
})
|
|
75
|
+
}, /*#__PURE__*/React.createElement(Label, {
|
|
76
|
+
text: label,
|
|
77
|
+
required: required,
|
|
78
|
+
disabled: disabled,
|
|
79
|
+
labelAddons: labelAddons
|
|
80
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
81
|
+
className: "textarea__inner"
|
|
82
|
+
}, /*#__PURE__*/React.createElement("textarea", _extends({
|
|
83
|
+
"data-id": dataId,
|
|
84
|
+
disabled: disabled,
|
|
85
|
+
ref: ref,
|
|
86
|
+
placeholder: placeHolder,
|
|
87
|
+
onChange: handleChange
|
|
88
|
+
}, rest, currentValue ? {
|
|
89
|
+
value: currentValue
|
|
90
|
+
} : {}))), error || successMessage || helperText || maxCount ? /*#__PURE__*/React.createElement("div", {
|
|
91
|
+
className: "textarea__message mt-8"
|
|
92
|
+
}, error && /*#__PURE__*/React.createElement(ErrorMessage, {
|
|
93
|
+
message: error,
|
|
94
|
+
icon: "infoFilled"
|
|
95
|
+
}), successMessage ? /*#__PURE__*/React.createElement(Text, {
|
|
96
|
+
size: "small",
|
|
97
|
+
type: "success",
|
|
98
|
+
className: "flexbox align-items--center"
|
|
99
|
+
}, /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(IconCheckmarkCircleFilled, {
|
|
100
|
+
type: "success",
|
|
101
|
+
size: "xsmall"
|
|
102
|
+
}), /*#__PURE__*/React.createElement("span", {
|
|
103
|
+
className: "ml-4"
|
|
104
|
+
}, successMessage))) : null, helperText && !successMessage ? /*#__PURE__*/React.createElement(Text, {
|
|
105
|
+
size: "small",
|
|
106
|
+
type: disabled ? 'disabled' : 'secondary'
|
|
107
|
+
}, helperText) : null, maxCount ? /*#__PURE__*/React.createElement(Text, {
|
|
108
|
+
size: "small",
|
|
109
|
+
type: disabled ? 'disabled' : 'secondary',
|
|
110
|
+
className: "textarea__counter"
|
|
111
|
+
}, "".concat(currentLength, "/").concat(maxCount)) : null) : null);
|
|
112
|
+
});
|
|
113
|
+
Textarea.displayName = 'Textarea';
|
|
114
|
+
|
|
115
|
+
export { Textarea };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Textarea';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export { Textarea } from './Textarea.js';
|
|
2
|
+
import '../../extends-e8ef956f.js';
|
|
3
|
+
import '../../objectWithoutProperties-fcd64cc7.js';
|
|
4
|
+
import 'react';
|
|
5
|
+
import '../../helperComponents/Label/Label.js';
|
|
6
|
+
import '../Text/Text.js';
|
|
7
|
+
import 'classnames';
|
|
8
|
+
import '../../utils/helpers.js';
|
|
9
|
+
import 'dayjs';
|
|
10
|
+
import '../../helperComponents/ErrorMessage/ErrorMessage.js';
|
|
11
|
+
import '../../helperComponents/IconDynamicComponent/IconDynamicComponent.js';
|
|
12
|
+
import '../../helperComponents/IconDynamicComponent/constants.js';
|
|
13
|
+
import '../Checkbox/Checkbox.js';
|
|
14
|
+
import '../../defineProperty-7db32082.js';
|
|
15
|
+
import '../../typeof-ecd92d7f.js';
|
|
16
|
+
import '../Popover/Popover.js';
|
|
17
|
+
import '../../slicedToArray-0c706912.js';
|
|
18
|
+
import '../../hooks/useGetTooltipStyles.js';
|
|
19
|
+
import '../../hooks/useGetElemSizes.js';
|
|
20
|
+
import '../../hooks/useGetElemPositions.js';
|
|
21
|
+
import '../../hooks/useGetTooltipPosition.js';
|
|
22
|
+
import '../Tooltip/types.js';
|
|
23
|
+
import '../../hooks/useHideOnScroll.js';
|
|
24
|
+
import '../../consts/index.js';
|
|
25
|
+
import '../../hooks/useOnOutsideClick.js';
|
|
26
|
+
import '../../hooks/useScreenSize.js';
|
|
27
|
+
import 'react-hook-form';
|
|
28
|
+
import '../Link/Link.js';
|
|
29
|
+
import '../SVGIcons/IconInfo.js';
|
|
30
|
+
import 'react-syntax-highlighter';
|
|
31
|
+
import '../SVGIcons/IconCheckmarkCircleFilled.js';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { JSX } from 'react';
|
|
2
|
+
export interface TTextAreaTypeProps extends IFormCompProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
name?: string;
|
|
5
|
+
error?: string;
|
|
6
|
+
cols?: number;
|
|
7
|
+
row?: number;
|
|
8
|
+
label?: string | JSX.Element;
|
|
9
|
+
currentValue?: string;
|
|
10
|
+
placeHolder?: string;
|
|
11
|
+
required?: boolean;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
maxCount?: number;
|
|
14
|
+
changeHandler?: (event: TChangeEventType) => void;
|
|
15
|
+
helperText?: string;
|
|
16
|
+
successMessage?: string;
|
|
17
|
+
labelAddons?: JSX.Element;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|