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,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconRedo = function IconRedo(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Regular"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M19.2501 2C18.8704 2 18.5566 2.28215 18.507 2.64823L18.5001 2.75V8.44L13.9258 3.88014C11.4838 1.43819 7.56165 1.37863 5.0475 3.70146L4.86162 3.88014C2.35863 6.38313 2.35863 10.4413 4.86162 12.9443L13.7068 21.7835C13.9998 22.0762 14.4745 22.0759 14.7674 21.783C15.0603 21.4901 15.06 21.0151 14.767 20.7223L5.92228 11.8836C4.00507 9.96641 4.00507 6.85801 5.92228 4.9408C7.78139 3.08169 10.7606 3.02535 12.6883 4.77248L12.8659 4.94156L17.4381 9.5L11.7501 9.50018C11.3704 9.50018 11.0566 9.78234 11.007 10.1484L11.0001 10.2502C11.0001 10.6299 11.2823 10.9437 11.6483 10.9933L11.7501 11.0002H19.2501C19.6298 11.0002 19.9436 10.718 19.9933 10.352L20.0001 10.2502V2.75C20.0001 2.33579 19.6643 2 19.2501 2Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconRedo, IconRedo as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconRedoFilled = function IconRedoFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Filled"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M18.0001 7.58649L14.359 3.9514C11.7578 1.35018 7.54042 1.35018 4.9392 3.9514C2.33798 6.55262 2.33798 10.77 4.9392 13.3713L13.2777 21.7082C13.6683 22.0987 14.3014 22.0985 14.6919 21.708C15.0824 21.3175 15.0822 20.6842 14.6916 20.2938L6.35341 11.957C4.53324 10.1369 4.53324 7.18579 6.35341 5.36562C8.1167 3.60233 10.9413 3.54722 12.7714 5.20074L12.9453 5.36609L16.5851 8.99949L12.0001 9.00002C11.4873 9.00002 11.0646 9.38606 11.0069 9.8834L11.0001 10C11.0001 10.5129 11.3862 10.9355 11.8835 10.9933L12.0001 11H19.0001C19.513 11 19.9356 10.614 19.9934 10.1166L20.0001 10V3.00284C20.0001 2.45055 19.5524 2.00284 19.0001 2.00284C18.4873 2.00284 18.0646 2.38888 18.0069 2.88622L18.0001 3.00284V7.58649L14.359 3.9514L18.0001 7.58649Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconRedoFilled, IconRedoFilled as default };
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconRu = function IconRu(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
_ref$className = _ref.className,
|
|
9
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
10
|
+
onClick = _ref.onClick,
|
|
11
|
+
refHandler = _ref.refHandler,
|
|
12
|
+
id = _ref.id,
|
|
13
|
+
dataId = _ref.dataId;
|
|
14
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), className, className)),
|
|
17
|
+
viewBox: "0 0 24 24",
|
|
18
|
+
fill: "none",
|
|
19
|
+
onClick: onClick,
|
|
20
|
+
ref: refHandler,
|
|
21
|
+
id: id,
|
|
22
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
24
|
+
x: "0.25",
|
|
25
|
+
y: "3.67999",
|
|
26
|
+
width: "23.5",
|
|
27
|
+
height: "16.6429",
|
|
28
|
+
rx: "1.75",
|
|
29
|
+
fill: "white",
|
|
30
|
+
stroke: "#F5F5F5",
|
|
31
|
+
strokeWidth: "0.5"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
|
33
|
+
id: "mask0_1993_2464",
|
|
34
|
+
style: {
|
|
35
|
+
maskType: 'luminance'
|
|
36
|
+
},
|
|
37
|
+
maskUnits: "userSpaceOnUse",
|
|
38
|
+
x: "0",
|
|
39
|
+
y: "3",
|
|
40
|
+
width: "24",
|
|
41
|
+
height: "18"
|
|
42
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
43
|
+
x: "0.25",
|
|
44
|
+
y: "3.67999",
|
|
45
|
+
width: "23.5",
|
|
46
|
+
height: "16.6429",
|
|
47
|
+
rx: "1.75",
|
|
48
|
+
fill: "white",
|
|
49
|
+
stroke: "white",
|
|
50
|
+
strokeWidth: "0.5"
|
|
51
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
52
|
+
mask: "url(#mask0_1993_2464)"
|
|
53
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
54
|
+
d: "M0 14.8586H24V9.14435H0V14.8586Z",
|
|
55
|
+
fill: "#0C47B7"
|
|
56
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
57
|
+
d: "M0 20.573H24V14.8587H0V20.573Z",
|
|
58
|
+
fill: "#E53B35"
|
|
59
|
+
})));
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export { IconRu, IconRu as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconRub = function IconRub(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M6.55036 9.83908C6.5835 9.83908 6.61036 9.81222 6.61036 9.77908V3.68231C6.61036 3.23442 6.97344 2.87134 7.42133 2.87134H14.3891C15.5281 2.87134 16.6205 3.32383 17.426 4.12927C18.2314 4.93471 18.6839 6.02711 18.6839 7.16618C18.6839 8.30524 18.2314 9.39765 17.426 10.2031C16.6205 11.0085 15.5281 11.461 14.3891 11.461H8.2923C8.25916 11.461 8.2323 11.4879 8.2323 11.521V14.4243C8.2323 14.4575 8.25916 14.4843 8.2923 14.4843H14.3891C14.837 14.4843 15.2 14.8474 15.2 15.2953C15.2 15.7432 14.837 16.1063 14.3891 16.1063H8.2923C8.25916 16.1063 8.2323 16.1331 8.2323 16.1663V19.9404C8.2323 20.3883 7.86921 20.7513 7.42133 20.7513C6.97344 20.7513 6.61036 20.3883 6.61036 19.9404V16.1663C6.61036 16.1331 6.5835 16.1063 6.55036 16.1063H5.09875C4.65086 16.1063 4.28778 15.7432 4.28778 15.2953C4.28778 14.8474 4.65086 14.4843 5.09875 14.4843H6.55036C6.5835 14.4843 6.61036 14.4575 6.61036 14.4243V11.521C6.61036 11.4879 6.5835 11.461 6.55036 11.461H5.09875C4.65086 11.461 4.28778 11.0979 4.28778 10.65C4.28778 10.2022 4.65086 9.83908 5.09875 9.83908H6.55036ZM8.2323 9.77908C8.2323 9.81222 8.25916 9.83908 8.2923 9.83908H14.3891C15.098 9.83908 15.7778 9.55747 16.2791 9.05621C16.7804 8.55494 17.062 7.87507 17.062 7.16618C17.062 6.45728 16.7804 5.77742 16.2791 5.27615C15.7778 4.77488 15.098 4.49327 14.3891 4.49327H8.2923C8.25916 4.49327 8.2323 4.52014 8.2323 4.55327V9.77908Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconRub, IconRub as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconRubFilled = function IconRubFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M6.55042 9.83908C6.58356 9.83908 6.61042 9.81222 6.61042 9.77908V3.68231C6.61042 3.23442 6.97351 2.87134 7.42139 2.87134H14.3891C15.5282 2.87134 16.6206 3.32383 17.426 4.12927C18.2315 4.93471 18.684 6.02711 18.684 7.16618C18.684 8.30524 18.2315 9.39765 17.426 10.2031C16.6206 11.0085 15.5282 11.461 14.3891 11.461H8.29236C8.25922 11.461 8.23236 11.4879 8.23236 11.521V14.4243C8.23236 14.4575 8.25922 14.4843 8.29236 14.4843H14.3891C14.837 14.4843 15.2001 14.8474 15.2001 15.2953C15.2001 15.7432 14.837 16.1063 14.3891 16.1063H8.29236C8.25922 16.1063 8.23236 16.1331 8.23236 16.1663V19.9404C8.23236 20.3883 7.86928 20.7513 7.42139 20.7513C6.97351 20.7513 6.61042 20.3883 6.61042 19.9404V16.1663C6.61042 16.1331 6.58356 16.1063 6.55042 16.1063H5.09881C4.65092 16.1063 4.28784 15.7432 4.28784 15.2953C4.28784 14.8474 4.65092 14.4843 5.09881 14.4843H6.55042C6.58356 14.4843 6.61042 14.4575 6.61042 14.4243V11.521C6.61042 11.4879 6.58356 11.461 6.55042 11.461H5.09881C4.65092 11.461 4.28784 11.0979 4.28784 10.65C4.28784 10.2022 4.65092 9.83908 5.09881 9.83908H6.55042ZM8.23236 9.77908C8.23236 9.81222 8.25922 9.83908 8.29236 9.83908H14.3891C15.098 9.83908 15.7779 9.55747 16.2792 9.05621C16.7804 8.55494 17.062 7.87507 17.062 7.16618C17.062 6.45728 16.7804 5.77742 16.2792 5.27615C15.7779 4.77488 15.098 4.49327 14.3891 4.49327H8.29236C8.25922 4.49327 8.23236 4.52014 8.23236 4.55327V9.77908Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconRubFilled, IconRubFilled as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconSave = function IconSave(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Regular"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M3 5.75C3 4.23122 4.23122 3 5.75 3H15.7145C16.5764 3 17.4031 3.34241 18.0126 3.9519L20.0481 5.98744C20.6576 6.59693 21 7.42358 21 8.28553V18.25C21 19.7688 19.7688 21 18.25 21H5.75C4.23122 21 3 19.7688 3 18.25V5.75ZM5.75 4.5C5.05964 4.5 4.5 5.05964 4.5 5.75V18.25C4.5 18.9404 5.05964 19.5 5.75 19.5H6V14.25C6 13.0074 7.00736 12 8.25 12H15.75C16.9926 12 18 13.0074 18 14.25V19.5H18.25C18.9404 19.5 19.5 18.9404 19.5 18.25V8.28553C19.5 7.8214 19.3156 7.37629 18.9874 7.0481L16.9519 5.01256C16.6918 4.75246 16.3582 4.58269 16 4.52344V7.25C16 8.49264 14.9926 9.5 13.75 9.5H9.25C8.00736 9.5 7 8.49264 7 7.25V4.5H5.75ZM16.5 19.5V14.25C16.5 13.8358 16.1642 13.5 15.75 13.5H8.25C7.83579 13.5 7.5 13.8358 7.5 14.25V19.5H16.5ZM8.5 4.5V7.25C8.5 7.66421 8.83579 8 9.25 8H13.75C14.1642 8 14.5 7.66421 14.5 7.25V4.5H8.5Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconSave, IconSave as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconSaveFilled = function IconSaveFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Filled"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M6.75 3H5.75C4.23122 3 3 4.23122 3 5.75V18.25C3 19.7688 4.23122 21 5.75 21H6V15C6 13.7574 7.00736 12.75 8.25 12.75H15.75C16.9926 12.75 18 13.7574 18 15V21H18.25C19.7688 21 21 19.7688 21 18.25V8.28553C21 7.42358 20.6576 6.59693 20.0481 5.98744L18.0126 3.9519C17.4114 3.35079 16.5991 3.00947 15.75 3.00019V7.5C15.75 8.74264 14.7426 9.75 13.5 9.75H9C7.75736 9.75 6.75 8.74264 6.75 7.5V3ZM14.25 3V7.5C14.25 7.91421 13.9142 8.25 13.5 8.25H9C8.58579 8.25 8.25 7.91421 8.25 7.5V3H14.25ZM16.5 21V15C16.5 14.5858 16.1642 14.25 15.75 14.25H8.25C7.83579 14.25 7.5 14.5858 7.5 15V21H16.5Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconSaveFilled, IconSaveFilled as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconSavings = function IconSavings(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Regular"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M10.0811 4.08935C10.6111 4.45511 11.1177 4.69614 11.5352 4.74929C11.3076 5.20138 11.1488 5.68691 11.0659 6.18856C10.3925 6.04081 9.75356 5.6858 9.22916 5.32393C8.96994 5.14504 8.7245 4.95442 8.5 4.76675V7.00005C8.5 7.3063 8.31381 7.58174 8.02974 7.69593L8.02354 7.69849C8.01733 7.70107 8.0067 7.70553 7.99202 7.71188C7.96264 7.72459 7.91715 7.74477 7.85841 7.77242C7.74069 7.82781 7.57111 7.91252 7.3721 8.02624C6.97012 8.25594 6.46791 8.5928 6.03033 9.03038C5.57681 9.4839 5.29723 10.093 5.13933 10.566C4.93681 11.1727 4.42116 11.7319 3.68711 11.8542C3.57914 11.8722 3.5 11.9656 3.5 12.0751V13.828C3.5 13.9934 3.61961 14.1346 3.7828 14.1618C4.40671 14.2658 4.89825 14.6731 5.17464 15.1679C5.42601 15.6179 5.87291 16.3123 6.53033 16.9697C7.04118 17.4806 7.63608 17.8081 8.11482 18.0085C8.3521 18.1078 8.55481 18.1733 8.69504 18.2133C8.76497 18.2333 8.81882 18.2468 8.853 18.2548C8.87007 18.2588 8.88219 18.2615 8.88889 18.2629L8.8937 18.2639L8.89478 18.2642C9.24631 18.3333 9.5 18.6415 9.5 19.0001V20.2501C9.5 20.3881 9.61193 20.5001 9.75 20.5001H11C11 19.6716 11.6716 19.0001 12.5 19.0001H14.5C15.3284 19.0001 16 19.6716 16 20.5001H17.25C17.3881 20.5001 17.5 20.3881 17.5 20.2501V18.0001C17.5 17.7172 17.6597 17.4583 17.9118 17.3306L17.9251 17.3235C17.939 17.3159 17.9629 17.3026 17.9953 17.2833C18.0602 17.2447 18.1586 17.1825 18.2796 17.0952C18.5223 16.9199 18.851 16.6465 19.1806 16.262C19.8329 15.5009 20.5 14.2941 20.5 12.5001C20.5 11.4934 20.3118 10.6797 19.9913 10.0125C20.3492 9.53751 20.619 9.00301 20.7894 8.43653C20.8886 8.5724 20.9827 8.71346 21.0713 8.85993C21.6755 9.85813 22 11.063 22 12.5001C22 14.706 21.1671 16.2492 20.3194 17.2381C19.899 17.7287 19.4777 18.0802 19.1579 18.3112C19.1021 18.3514 19.0493 18.3881 19 18.4214V20.2501C19 21.2166 18.2165 22.0001 17.25 22.0001H16C15.1716 22.0001 14.5 21.3285 14.5 20.5001H12.5C12.5 21.3285 11.8284 22.0001 11 22.0001H9.75C8.7835 22.0001 8 21.2166 8 20.2501V19.5675C7.86194 19.5209 7.7053 19.4631 7.53573 19.3922C6.93965 19.1427 6.15955 18.7203 5.46967 18.0304C4.68564 17.2464 4.16052 16.4283 3.8651 15.8994C3.77791 15.7433 3.64768 15.66 3.5362 15.6414C2.64973 15.4937 2 14.7267 2 13.828V12.0751C2 11.2324 2.60926 10.5132 3.44051 10.3746C3.52742 10.3601 3.6555 10.2738 3.71651 10.0911C3.90886 9.51484 4.28209 8.6573 4.96967 7.96972C5.53209 7.40731 6.15488 6.99416 6.6279 6.72387C6.76427 6.64594 6.88983 6.57897 7 6.52288V3.67121C7 2.73331 8.13062 2.34833 8.73986 2.95499C9.07031 3.28404 9.55006 3.72288 10.0811 4.08935ZM13.07 8.84808C12.5799 8.64513 12.1664 8.25981 12.0679 7.7386C11.7239 5.91712 12.6886 4.04231 14.4689 3.30468C16.5098 2.45911 18.8498 3.42812 19.6954 5.46902C20.433 7.24939 19.7898 9.25732 18.2587 10.3023C17.8206 10.6013 17.2557 10.5814 16.7656 10.3785L13.07 8.84808ZM17.4641 9.02758C18.3837 8.36546 18.7617 7.13428 18.3096 6.04317C17.7811 4.7676 16.3186 4.16197 15.0431 4.69045C13.952 5.14252 13.3489 6.28046 13.5311 7.39885C13.5369 7.40342 13.544 7.40861 13.5525 7.41427C13.5761 7.43001 13.6068 7.44684 13.6439 7.46221L17.3395 8.99263C17.3767 9.008 17.4103 9.0178 17.4381 9.02336C17.4481 9.02535 17.4568 9.0267 17.4641 9.02758ZM9 10C9 10.5523 8.55228 11 8 11C7.44772 11 7 10.5523 7 10C7 9.44774 7.44772 9.00002 8 9.00002C8.55228 9.00002 9 9.44774 9 10Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconSavings, IconSavings as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconSavingsFilled = function IconSavingsFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Filled"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M18.8225 11.1283C19.7843 10.4718 20.466 9.51181 20.7894 8.43654C20.8886 8.57241 20.9827 8.71346 21.0713 8.85993C21.6755 9.85813 22 11.063 22 12.5001C22 14.706 21.1671 16.2492 20.3194 17.2381C19.899 17.7287 19.4777 18.0802 19.1579 18.3112C19.1021 18.3514 19.0493 18.3881 19 18.4214V20.2501C19 21.2166 18.2165 22.0001 17.25 22.0001H16C15.1716 22.0001 14.5 21.3285 14.5 20.5001H12.5C12.5 21.3285 11.8284 22.0001 11 22.0001H9.75C8.7835 22.0001 8 21.2166 8 20.2501V19.5674C7.86194 19.5209 7.7053 19.4631 7.53573 19.3922C6.93965 19.1427 6.15955 18.7203 5.46967 18.0304C4.68564 17.2464 4.16052 16.4283 3.8651 15.8994C3.77791 15.7433 3.64768 15.66 3.53621 15.6414C2.64973 15.4937 2 14.7267 2 13.828V12.0751C2 11.2324 2.60926 10.5132 3.44051 10.3746C3.52742 10.3601 3.6555 10.2738 3.71651 10.0911C3.90886 9.51484 4.28209 8.6573 4.96967 7.96972C5.53209 7.40731 6.15488 6.99416 6.6279 6.72387C6.76427 6.64594 6.88983 6.57896 7 6.52288V3.67121C7 2.73331 8.13062 2.34833 8.73986 2.95499C9.07031 3.28404 9.55006 3.72288 10.0811 4.08935C10.6111 4.45512 11.1177 4.69615 11.5352 4.74929C11.0507 5.71174 10.8779 6.82571 11.0853 7.92421C11.2662 8.88185 11.999 9.48693 12.6874 9.77201L16.3831 11.3024C17.0715 11.5875 18.0175 11.6777 18.8225 11.1283ZM8 11C8.55228 11 9 10.5523 9 10C9 9.44775 8.55228 9.00003 8 9.00003C7.44772 9.00003 7 9.44775 7 10C7 10.5523 7.44772 11 8 11ZM18.2588 10.3023C19.211 9.65236 19.8199 8.62989 19.9666 7.52135C19.9666 7.52133 19.9666 7.52136 19.9666 7.52135C20.0558 6.8476 19.9742 6.14201 19.6954 5.46899C18.8498 3.42808 16.5099 2.45907 14.4689 3.30465C12.6886 4.04227 11.7239 5.91709 12.0679 7.73856C12.0926 7.86889 12.1369 7.99071 12.1972 8.10332C12.2471 8.19656 12.3079 8.28348 12.3776 8.36366C12.5604 8.57394 12.8039 8.7379 13.07 8.84809L16.7657 10.3785C17.2558 10.5815 17.8206 10.6013 18.2588 10.3023Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconSavingsFilled, IconSavingsFilled as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconSearch = function IconSearch(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Regular"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M10 2.75C14.0041 2.75 17.25 5.99594 17.25 10C17.25 11.7319 16.6427 13.3219 15.6295 14.5688L20.5303 19.4697C20.8232 19.7626 20.8232 20.2374 20.5303 20.5303C20.2641 20.7966 19.8474 20.8208 19.5538 20.6029L19.4697 20.5303L14.5688 15.6295C13.3219 16.6427 11.7319 17.25 10 17.25C5.99594 17.25 2.75 14.0041 2.75 10C2.75 5.99594 5.99594 2.75 10 2.75ZM10 4.25C6.82436 4.25 4.25 6.82436 4.25 10C4.25 13.1756 6.82436 15.75 10 15.75C13.1756 15.75 15.75 13.1756 15.75 10C15.75 6.82436 13.1756 4.25 10 4.25Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconSearch, IconSearch as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconSearchFilled = function IconSearchFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Filled"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M10 2.5C14.1421 2.5 17.5 5.85786 17.5 10C17.5 11.7101 16.9276 13.2866 15.964 14.5483L20.7071 19.2929C21.0976 19.6834 21.0976 20.3166 20.7071 20.7071C20.3466 21.0676 19.7794 21.0953 19.3871 20.7903L19.2929 20.7071L14.5483 15.964C13.2866 16.9276 11.7101 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5ZM10 4.5C6.96243 4.5 4.5 6.96243 4.5 10C4.5 13.0376 6.96243 15.5 10 15.5C13.0376 15.5 15.5 13.0376 15.5 10C15.5 6.96243 13.0376 4.5 10 4.5Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconSearchFilled, IconSearchFilled as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconSelectAllOff = function IconSelectAllOff(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "State=Off, Size=24, Theme=Regular"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468ZM17.2468 3.5H4.25C3.83579 3.5 3.5 3.83579 3.5 4.25V17.2468C3.5 17.661 3.83579 17.9968 4.25 17.9968H17.2468C17.661 17.9968 17.9968 17.661 17.9968 17.2468V4.25C17.9968 3.83579 17.661 3.5 17.2468 3.5Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconSelectAllOff, IconSelectAllOff as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconSelectAllOffFilled = function IconSelectAllOffFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "State=Off, Size=24, Theme=Filled"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconSelectAllOffFilled, IconSelectAllOffFilled as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconSelectAllOn = function IconSelectAllOn(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "State=On, Size=24, Theme=Regular"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468ZM17.2468 3.5H4.25C3.83579 3.5 3.5 3.83579 3.5 4.25V17.2468C3.5 17.661 3.83579 17.9968 4.25 17.9968H17.2468C17.661 17.9968 17.9968 17.661 17.9968 17.2468V4.25C17.9968 3.83579 17.661 3.5 17.2468 3.5ZM9.58115 11.3582L13.4697 7.46967C13.7626 7.17678 14.2374 7.17678 14.5303 7.46967C14.7966 7.73594 14.8208 8.1526 14.6029 8.44621L14.5303 8.53033L10.0303 13.0303C9.73449 13.3262 9.26134 13.3189 8.9736 13.0344L8.9 12.95L7.4 10.95C7.15147 10.6186 7.21863 10.1485 7.55 9.9C7.85125 9.67407 8.26715 9.70903 8.527 9.96622L8.6 10.05L9.58115 11.3582L13.4697 7.46967L9.58115 11.3582Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconSelectAllOn, IconSelectAllOn as default };
|