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,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 IconDelete = function IconDelete(_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: "M10 5H14C14 3.89543 13.1046 3 12 3C10.8954 3 10 3.89543 10 5ZM8.5 5C8.5 3.067 10.067 1.5 12 1.5C13.933 1.5 15.5 3.067 15.5 5H21.25C21.6642 5 22 5.33579 22 5.75C22 6.16421 21.6642 6.5 21.25 6.5H19.9309L18.7589 18.6112C18.5729 20.5334 16.9575 22 15.0263 22H8.97369C7.04254 22 5.42715 20.5334 5.24113 18.6112L4.06908 6.5H2.75C2.33579 6.5 2 6.16421 2 5.75C2 5.33579 2.33579 5 2.75 5H8.5ZM10.5 9.75C10.5 9.33579 10.1642 9 9.75 9C9.33579 9 9 9.33579 9 9.75V17.25C9 17.6642 9.33579 18 9.75 18C10.1642 18 10.5 17.6642 10.5 17.25V9.75ZM14.25 9C14.6642 9 15 9.33579 15 9.75V17.25C15 17.6642 14.6642 18 14.25 18C13.8358 18 13.5 17.6642 13.5 17.25V9.75C13.5 9.33579 13.8358 9 14.25 9ZM6.73416 18.4667C6.84577 19.62 7.815 20.5 8.97369 20.5H15.0263C16.185 20.5 17.1542 19.62 17.2658 18.4667L18.4239 6.5H5.57608L6.73416 18.4667Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDelete, IconDelete 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 IconDeleteFilled = function IconDeleteFilled(_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: "M10 5H14C14 3.89543 13.1046 3 12 3C10.8954 3 10 3.89543 10 5ZM8.5 5C8.5 3.067 10.067 1.5 12 1.5C13.933 1.5 15.5 3.067 15.5 5H21.25C21.6642 5 22 5.33579 22 5.75C22 6.16421 21.6642 6.5 21.25 6.5H19.9309L18.7589 18.6112C18.5729 20.5334 16.9575 22 15.0263 22H8.97369C7.04254 22 5.42715 20.5334 5.24113 18.6112L4.06908 6.5H2.75C2.33579 6.5 2 6.16421 2 5.75C2 5.33579 2.33579 5 2.75 5H8.5ZM10.5 9.75C10.5 9.33579 10.1642 9 9.75 9C9.33579 9 9 9.33579 9 9.75V17.25C9 17.6642 9.33579 18 9.75 18C10.1642 18 10.5 17.6642 10.5 17.25V9.75ZM14.25 9C13.8358 9 13.5 9.33579 13.5 9.75V17.25C13.5 17.6642 13.8358 18 14.25 18C14.6642 18 15 17.6642 15 17.25V9.75C15 9.33579 14.6642 9 14.25 9Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDeleteFilled, IconDeleteFilled 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 IconDesignIdeas = function IconDesignIdeas(_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: "M5.57489 2.07403C5.83474 2.19892 6 2.4617 6 2.75001C6 3.57985 6.31211 4.05763 6.70313 4.63948L6.73156 4.68175C7.0641 5.17579 7.5 5.8234 7.5 6.75001C7.5 7.69552 7.02282 8.52959 6.29615 9.02452C6.48733 9.1848 6.65672 9.38248 6.80225 9.61803C7.27801 10.388 7.5 11.5645 7.5 13.2549C7.5 14.967 7.27003 17.023 6.89541 18.6644C6.70914 19.4806 6.47843 20.2335 6.20272 20.7994C6.06598 21.08 5.89948 21.3541 5.69217 21.5685C5.48714 21.7804 5.17035 22.0049 4.75 22.0049C4.32965 22.0049 4.01286 21.7804 3.80783 21.5685C3.60052 21.3541 3.43402 21.08 3.29728 20.7994C3.02157 20.2335 2.79086 19.4806 2.60459 18.6644C2.22997 17.023 2 14.967 2 13.2549C2 11.5645 2.22199 10.388 2.69775 9.61803C2.84328 9.38248 3.01267 9.1848 3.20385 9.02452C2.47718 8.52959 2 7.69552 2 6.75001C2 6.38181 2.00034 5.74889 2.38341 4.93168C2.75829 4.13192 3.47066 3.21301 4.78148 2.16436C5.00661 1.98425 5.31504 1.94914 5.57489 2.07403ZM3.5 6.74875V6.75001C3.5 7.44036 4.05964 8.00001 4.75 8.00001C5.44036 8.00001 6 7.44036 6 6.75001C6 6.31097 5.81518 6.00743 5.45814 5.47615L5.44592 5.45796C5.21705 5.11747 4.94673 4.71532 4.75381 4.19756C4.21053 4.74999 3.9105 5.208 3.74159 5.56833C3.5 6.08374 3.5 6.4505 3.5 6.74875ZM3.97383 10.4065C3.72572 10.808 3.5 11.6315 3.5 13.2549C3.5 14.8565 3.71774 16.8005 4.06698 18.3306C4.24264 19.1003 4.44289 19.726 4.64574 20.1424C4.68308 20.219 4.71806 20.2834 4.75 20.3369C4.78194 20.2834 4.81692 20.219 4.85426 20.1424C5.05711 19.726 5.25736 19.1003 5.43302 18.3306C5.78226 16.8005 6 14.8565 6 13.2549C6 11.6315 5.77428 10.808 5.52617 10.4065C5.41327 10.2237 5.30119 10.1372 5.20105 10.0886C5.09322 10.0363 4.95068 10.0049 4.75 10.0049C4.54932 10.0049 4.40678 10.0363 4.29895 10.0886C4.19881 10.1372 4.08673 10.2237 3.97383 10.4065ZM9.99994 14.917C9.46162 14.8267 8.94761 14.6647 8.46806 14.4412C8.48904 14.0349 8.49994 13.637 8.49994 13.2549C8.49994 13.0791 8.49768 12.9066 8.49298 12.7376C8.94409 13.0407 9.4531 13.2644 9.99994 13.3885V10.5C9.99994 9.67157 10.6715 9 11.4999 9H15.4999C15.4999 6.51472 13.4852 4.5 10.9999 4.5C9.97153 4.5 9.0237 4.84498 8.26586 5.42552C8.06633 4.8731 7.78116 4.44995 7.58275 4.15554L7.54248 4.09572C8.51976 3.40549 9.7125 3 10.9999 3C14.3136 3 16.9999 5.68629 16.9999 9H20.4999C21.3284 9 21.9999 9.67157 21.9999 10.5V19.5C21.9999 20.3284 21.3284 21 20.4999 21H11.4999C10.6715 21 9.99994 20.3284 9.99994 19.5V14.917ZM11.4999 14.9795V19.5H20.4999V10.5H16.8109C16.185 12.932 14.0726 14.7672 11.4999 14.9795ZM15.2439 10.5H11.4999V13.4725C13.239 13.2803 14.6794 12.097 15.2439 10.5Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDesignIdeas, IconDesignIdeas 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 IconDesignIdeasFilled = function IconDesignIdeasFilled(_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: "M5.57489 2.07403C5.83474 2.19892 6 2.4617 6 2.75001C6 3.57985 6.31211 4.05763 6.70313 4.63948L6.73156 4.68175C7.0641 5.17579 7.5 5.8234 7.5 6.75001C7.5 7.69552 7.02282 8.52959 6.29615 9.02452C6.48733 9.1848 6.65672 9.38248 6.80225 9.61803C7.27801 10.388 7.5 11.5645 7.5 13.2549C7.5 14.967 7.27003 17.023 6.89541 18.6644C6.70914 19.4806 6.47843 20.2335 6.20272 20.7994C6.06598 21.08 5.89948 21.3541 5.69217 21.5685C5.48714 21.7804 5.17035 22.0049 4.75 22.0049C4.32965 22.0049 4.01286 21.7804 3.80783 21.5685C3.60052 21.3541 3.43402 21.08 3.29728 20.7994C3.02157 20.2335 2.79086 19.4806 2.60459 18.6644C2.22997 17.023 2 14.967 2 13.2549C2 11.5645 2.22199 10.388 2.69775 9.61803C2.84328 9.38248 3.01267 9.1848 3.20385 9.02452C2.47718 8.52959 2 7.69552 2 6.75001C2 6.38181 2.00034 5.74889 2.38341 4.93168C2.75829 4.13192 3.47066 3.21301 4.78148 2.16436C5.00661 1.98425 5.31504 1.94914 5.57489 2.07403ZM9.99994 14.917C9.46162 14.8267 8.94761 14.6647 8.46806 14.4412C8.48904 14.0349 8.49994 13.637 8.49994 13.2549C8.49994 12.8491 8.48793 12.461 8.46151 12.0915C8.90465 12.4558 9.4275 12.7266 9.99994 12.874V10.5C9.99994 9.67157 10.6715 9 11.4999 9H14.9999C14.9999 6.79086 13.2091 5 10.9999 5C10.0146 5 9.11251 5.35626 8.4154 5.94699C8.24173 5.13337 7.83957 4.53662 7.58275 4.15554L7.54248 4.09572C8.51976 3.40549 9.7125 3 10.9999 3C14.3136 3 16.9999 5.68629 16.9999 9H20.4999C21.3284 9 21.9999 9.67157 21.9999 10.5V19.5C21.9999 20.3284 21.3284 21 20.4999 21H11.4999C10.6715 21 9.99994 20.3284 9.99994 19.5V14.917ZM11.9999 14.917V19H19.9999V11H16.6585C15.9423 13.0265 14.1683 14.5533 11.9999 14.917ZM14.4648 11H11.9999V12.874C13.0508 12.6035 13.9345 11.9168 14.4648 11Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDesignIdeasFilled, IconDesignIdeasFilled 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 IconDeviceMeetingRoom = function IconDeviceMeetingRoom(_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: "M7.06943 3C5.65417 3 4.42324 3.96976 4.09199 5.34571L2.10025 13.6191C1.56269 15.8521 3.2549 18 5.55164 18H18.4435C20.7403 18 22.4325 15.8521 21.8949 13.6191L19.9032 5.34571C19.5719 3.96976 18.341 3 16.9257 3H7.06943ZM5.55033 5.69679C5.71933 4.99478 6.34736 4.5 7.06943 4.5H16.9257C17.6478 4.5 18.2758 4.99478 18.4448 5.69679L20.4366 13.9702C20.747 15.2596 19.7698 16.5 18.4435 16.5H5.55164C4.22535 16.5 3.24816 15.2596 3.55859 13.9702L5.55033 5.69679ZM6.74756 19C6.33334 19 5.99756 19.3358 5.99756 19.75C5.99756 20.1642 6.33334 20.5 6.74756 20.5H17.2476C17.6618 20.5 17.9976 20.1642 17.9976 19.75C17.9976 19.3358 17.6618 19 17.2476 19H6.74756Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDeviceMeetingRoom, IconDeviceMeetingRoom as default };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ReactElement } from 'react';
|
|
2
|
+
import type { ISVGIconProps } from './types';
|
|
3
|
+
export declare const IconDeviceMeetingRoomFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
|
+
export default IconDeviceMeetingRoomFilled;
|
|
@@ -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 IconDeviceMeetingRoomFilled = function IconDeviceMeetingRoomFilled(_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: "M4.0925 5.34571C4.42383 3.96976 5.65506 3 7.07066 3H16.9293C18.3449 3 19.5762 3.96976 19.9075 5.34571L21.8997 13.6191C22.4374 15.8521 20.7448 18 18.4475 18H5.55251C3.2552 18 1.56258 15.8521 2.10028 13.6191L4.0925 5.34571ZM6.74871 19C6.3344 19 5.99853 19.3358 5.99853 19.75C5.99853 20.1642 6.3344 20.5 6.74871 20.5H17.2513C17.6656 20.5 18.0014 20.1642 18.0014 19.75C18.0014 19.3358 17.6656 19 17.2513 19H6.74871Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDeviceMeetingRoomFilled, IconDeviceMeetingRoomFilled 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 IconDismiss = function IconDismiss(_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: "M4.39705 4.55379L4.46967 4.46967C4.73594 4.2034 5.1526 4.1792 5.44621 4.39705L5.53033 4.46967L12 10.939L18.4697 4.46967C18.7626 4.17678 19.2374 4.17678 19.5303 4.46967C19.8232 4.76256 19.8232 5.23744 19.5303 5.53033L13.061 12L19.5303 18.4697C19.7966 18.7359 19.8208 19.1526 19.6029 19.4462L19.5303 19.5303C19.2641 19.7966 18.8474 19.8208 18.5538 19.6029L18.4697 19.5303L12 13.061L5.53033 19.5303C5.23744 19.8232 4.76256 19.8232 4.46967 19.5303C4.17678 19.2374 4.17678 18.7626 4.46967 18.4697L10.939 12L4.46967 5.53033C4.2034 5.26406 4.1792 4.8474 4.39705 4.55379L4.46967 4.46967L4.39705 4.55379Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDismiss, IconDismiss 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 IconDismissCircle = function IconDismissCircle(_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: "M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM15.4462 8.39705L15.5303 8.46967C15.7966 8.73594 15.8208 9.1526 15.6029 9.44621L15.5303 9.53033L13.061 12L15.5303 14.4697C15.7966 14.7359 15.8208 15.1526 15.6029 15.4462L15.5303 15.5303C15.2641 15.7966 14.8474 15.8208 14.5538 15.6029L14.4697 15.5303L12 13.061L9.53033 15.5303C9.26406 15.7966 8.8474 15.8208 8.55379 15.6029L8.46967 15.5303C8.2034 15.2641 8.1792 14.8474 8.39705 14.5538L8.46967 14.4697L10.939 12L8.46967 9.53033C8.2034 9.26406 8.1792 8.8474 8.39705 8.55379L8.46967 8.46967C8.73594 8.2034 9.1526 8.1792 9.44621 8.39705L9.53033 8.46967L12 10.939L14.4697 8.46967C14.7359 8.2034 15.1526 8.1792 15.4462 8.39705Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconDismissCircle, IconDismissCircle 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 IconDismissCircleFilled = function IconDismissCircleFilled(_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: "M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.5303 8.46967L15.4462 8.39705C15.1852 8.2034 14.827 8.20101 14.5636 8.38988L14.4697 8.46967L12 10.939L9.53033 8.46967L9.44621 8.39705C9.18522 8.2034 8.82701 8.20101 8.56362 8.38988L8.46967 8.46967L8.39705 8.55379C8.2034 8.81478 8.20101 9.17299 8.38988 9.43638L8.46967 9.53033L10.939 12L8.46967 14.4697L8.39705 14.5538C8.2034 14.8148 8.20101 15.173 8.38988 15.4364L8.46967 15.5303L8.55379 15.6029C8.81478 15.7966 9.17299 15.799 9.43638 15.6101L9.53033 15.5303L12 13.061L14.4697 15.5303L14.5538 15.6029C14.8148 15.7966 15.173 15.799 15.4364 15.6101L15.5303 15.5303L15.6029 15.4462C15.7966 15.1852 15.799 14.827 15.6101 14.5636L15.5303 14.4697L13.061 12L15.5303 9.53033L15.6029 9.44621C15.7966 9.18522 15.799 8.82701 15.6101 8.56362L15.5303 8.46967L15.4462 8.39705L15.5303 8.46967Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconDismissCircleFilled, IconDismissCircleFilled 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 IconDismissFilled = function IconDismissFilled(_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: "M4.2097 4.3871L4.29289 4.29289C4.65338 3.93241 5.22061 3.90468 5.6129 4.2097L5.70711 4.29289L12 10.585L18.2929 4.29289C18.6834 3.90237 19.3166 3.90237 19.7071 4.29289C20.0976 4.68342 20.0976 5.31658 19.7071 5.70711L13.415 12L19.7071 18.2929C20.0676 18.6534 20.0953 19.2206 19.7903 19.6129L19.7071 19.7071C19.3466 20.0676 18.7794 20.0953 18.3871 19.7903L18.2929 19.7071L12 13.415L5.70711 19.7071C5.31658 20.0976 4.68342 20.0976 4.29289 19.7071C3.90237 19.3166 3.90237 18.6834 4.29289 18.2929L10.585 12L4.29289 5.70711C3.93241 5.34662 3.90468 4.77939 4.2097 4.3871L4.29289 4.29289L4.2097 4.3871Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDismissFilled, IconDismissFilled 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 IconDocument = function IconDocument(_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: "M18.5 20C18.5 20.275 18.276 20.5 18 20.5H6C5.724 20.5 5.5 20.275 5.5 20V4C5.5 3.725 5.724 3.5 6 3.5H12V8C12 9.104 12.896 10 14 10H18.5V20ZM13.5 4.621L17.378 8.5H14C13.724 8.5 13.5 8.275 13.5 8V4.621ZM19.414 8.414L13.585 2.586C13.559 2.56 13.527 2.54 13.5 2.516C13.429 2.452 13.359 2.389 13.281 2.336C13.241 2.309 13.195 2.291 13.153 2.268C13.082 2.228 13.012 2.184 12.937 2.152C12.74 2.07 12.528 2.029 12.313 2.014C12.266 2.011 12.22 2 12.172 2H12.171H12H6C4.896 2 4 2.896 4 4V20C4 21.104 4.896 22 6 22H18C19.104 22 20 21.104 20 20V10V9.828C20 9.298 19.789 8.789 19.414 8.414Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDocument, IconDocument 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 IconDocumentBulletList = function IconDocumentBulletList(_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: "M7 12.25C7 11.8358 7.33579 11.5 7.75 11.5C8.16421 11.5 8.5 11.8358 8.5 12.25C8.5 12.6642 8.16421 13 7.75 13C7.33579 13 7 12.6642 7 12.25ZM7.75 14.5C7.33579 14.5 7 14.8358 7 15.25C7 15.6642 7.33579 16 7.75 16C8.16421 16 8.5 15.6642 8.5 15.25C8.5 14.8358 8.16421 14.5 7.75 14.5ZM7 18.25C7 17.8358 7.33579 17.5 7.75 17.5C8.16421 17.5 8.5 17.8358 8.5 18.25C8.5 18.6642 8.16421 19 7.75 19C7.33579 19 7 18.6642 7 18.25ZM10.75 11.5C10.3358 11.5 10 11.8358 10 12.25C10 12.6642 10.3358 13 10.75 13H16.25C16.6642 13 17 12.6642 17 12.25C17 11.8358 16.6642 11.5 16.25 11.5H10.75ZM10 15.25C10 14.8358 10.3358 14.5 10.75 14.5H16.25C16.6642 14.5 17 14.8358 17 15.25C17 15.6642 16.6642 16 16.25 16H10.75C10.3358 16 10 15.6642 10 15.25ZM10.75 17.5C10.3358 17.5 10 17.8358 10 18.25C10 18.6642 10.3358 19 10.75 19H16.25C16.6642 19 17 18.6642 17 18.25C17 17.8358 16.6642 17.5 16.25 17.5H10.75ZM19.414 8.414L13.585 2.586C13.57 2.57105 13.5531 2.55808 13.5363 2.54519C13.5238 2.53567 13.5115 2.5262 13.5 2.516C13.429 2.452 13.359 2.389 13.281 2.336C13.2557 2.31894 13.2281 2.30548 13.2005 2.29207C13.1845 2.28426 13.1685 2.27647 13.153 2.268C13.1363 2.25859 13.1197 2.24897 13.103 2.23933C13.0488 2.20797 12.9944 2.17648 12.937 2.152C12.74 2.07 12.528 2.029 12.313 2.014C12.2933 2.01274 12.2738 2.01008 12.2542 2.00741C12.2271 2.00371 12.1999 2 12.172 2H6C4.896 2 4 2.896 4 4V20C4 21.104 4.896 22 6 22H18C19.104 22 20 21.104 20 20V9.828C20 9.298 19.789 8.789 19.414 8.414ZM18.5 20C18.5 20.275 18.276 20.5 18 20.5H6C5.724 20.5 5.5 20.275 5.5 20V4C5.5 3.725 5.724 3.5 6 3.5H12V8C12 9.104 12.896 10 14 10H18.5V20ZM13.5 4.621L17.378 8.5H14C13.724 8.5 13.5 8.275 13.5 8V4.621Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconDocumentBulletList, IconDocumentBulletList as default };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ReactElement } from 'react';
|
|
2
|
+
import type { ISVGIconProps } from './types';
|
|
3
|
+
export declare const IconDocumentBulletListFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
|
+
export default IconDocumentBulletListFilled;
|
|
@@ -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 IconDocumentBulletListFilled = function IconDocumentBulletListFilled(_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: "M12 8V2H6C4.89543 2 4 2.89543 4 4V20C4 21.1046 4.89543 22 6 22H18C19.1046 22 20 21.1046 20 20V10H14C12.8954 10 12 9.10457 12 8ZM7 12.25C7 11.8358 7.33579 11.5 7.75 11.5C8.16421 11.5 8.5 11.8358 8.5 12.25C8.5 12.6642 8.16421 13 7.75 13C7.33579 13 7 12.6642 7 12.25ZM7 15.25C7 14.8358 7.33579 14.5 7.75 14.5C8.16421 14.5 8.5 14.8358 8.5 15.25C8.5 15.6642 8.16421 16 7.75 16C7.33579 16 7 15.6642 7 15.25ZM7 18.25C7 17.8358 7.33579 17.5 7.75 17.5C8.16421 17.5 8.5 17.8358 8.5 18.25C8.5 18.6642 8.16421 19 7.75 19C7.33579 19 7 18.6642 7 18.25ZM10 12.25C10 11.8358 10.3358 11.5 10.75 11.5H16.25C16.6642 11.5 17 11.8358 17 12.25C17 12.6642 16.6642 13 16.25 13H10.75C10.3358 13 10 12.6642 10 12.25ZM10 15.25C10 14.8358 10.3358 14.5 10.75 14.5H16.25C16.6642 14.5 17 14.8358 17 15.25C17 15.6642 16.6642 16 16.25 16H10.75C10.3358 16 10 15.6642 10 15.25ZM10 18.25C10 17.8358 10.3358 17.5 10.75 17.5H16.25C16.6642 17.5 17 17.8358 17 18.25C17 18.6642 16.6642 19 16.25 19H10.75C10.3358 19 10 18.6642 10 18.25ZM13.5 8V2.5L19.5 8.5H14C13.7239 8.5 13.5 8.27614 13.5 8Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconDocumentBulletListFilled, IconDocumentBulletListFilled 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 IconDocumentEdit = function IconDocumentEdit(_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.25 3.5C5.83579 3.5 5.5 3.83579 5.5 4.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H10.0293C9.92216 21.0483 10.0375 21.5732 10.3007 22H6.25C5.00736 22 4 20.9926 4 19.75V4.25C4 3.00736 5.00736 2 6.25 2H12.3358C12.7999 2 13.245 2.18437 13.5732 2.51256L19.4874 8.42678C19.8156 8.75497 20 9.20009 20 9.66421V10H19.8698C19.7592 9.99447 19.6484 9.99447 19.5378 10H14C12.8954 10 12 9.10457 12 8V3.5H6.25ZM13.5 4.56066V8C13.5 8.27614 13.7239 8.5 14 8.5H17.4393L13.5 4.56066ZM19.7133 11H19.7154C20.3 11.0003 20.8845 11.2234 21.3305 11.6695C22.2231 12.5621 22.2231 14.0093 21.3305 14.9019L15.4281 20.8043C15.084 21.1485 14.6528 21.3926 14.1806 21.5106L12.3499 21.9683C11.5538 22.1674 10.8326 21.4462 11.0317 20.6501L11.4894 18.8194C11.6074 18.3472 11.8515 17.916 12.1957 17.5719L18.0981 11.6695C18.5441 11.2234 19.1287 11.0003 19.7133 11Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDocumentEdit, IconDocumentEdit 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 IconDocumentEditFilled = function IconDocumentEditFilled(_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: "M12 2V8C12 9.10457 12.8954 10 14 10H18.9209C18.324 10.2196 17.7756 10.5541 17.3621 10.9704L11.3114 17.0623C10.9598 17.4164 10.7086 17.8576 10.5836 18.3407L10.0588 20.3701C9.90491 20.9651 10.0168 21.5396 10.3007 22H5.5C4.67157 22 4 21.3284 4 20.5V3.5C4 2.67157 4.67157 2 5.5 2H12ZM13.5 2.5V8C13.5 8.27614 13.7239 8.5 14 8.5H19.5L13.5 2.5ZM12.1957 17.5719L18.0981 11.6695C18.9907 10.7768 20.4379 10.7768 21.3305 11.6695C22.2231 12.5621 22.2231 14.0093 21.3305 14.9019L15.4281 20.8043C15.084 21.1485 14.6528 21.3926 14.1806 21.5106L12.3499 21.9683C11.5538 22.1674 10.8326 21.4462 11.0317 20.6501L11.4894 18.8194C11.6074 18.3472 11.8515 17.916 12.1957 17.5719Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDocumentEditFilled, IconDocumentEditFilled 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 IconDocumentFilled = function IconDocumentFilled(_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: "M12 2V8C12 9.10457 12.8954 10 14 10H20V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V4C4 2.89543 4.89543 2 6 2H12ZM13.5 2.5V8C13.5 8.27614 13.7239 8.5 14 8.5H19.5L13.5 2.5Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDocumentFilled, IconDocumentFilled as default };
|