@astral/ui 4.4.0 → 4.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Checkbox/Icon/Icon.js +1 -1
- package/components/Radio/Icon/Icon.js +1 -1
- package/components/SvgIcon/SvgIcon.js +1 -1
- package/components/Tree/MultipleTreeList/MultipleTreeList.d.ts +2 -2
- package/components/Tree/MultipleTreeList/MultipleTreeList.js +1 -1
- package/components/Tree/MultipleTreeList/TreeItem/TreeItem.d.ts +10 -6
- package/components/Tree/MultipleTreeList/TreeItem/TreeItem.js +3 -2
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/useLogic.d.ts +3 -2
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/useLogic.js +24 -18
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/checkIsIndeterminate/checkIsIndeterminate.d.ts +2 -1
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/checkIsIndeterminate/checkIsIndeterminate.js +2 -1
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/checkIsSelected/checkIsSelected.d.ts +2 -1
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/checkIsSelected/checkIsSelected.js +2 -1
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/findObjectsByIds/findObjectsByIds.d.ts +5 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/findObjectsByIds/findObjectsByIds.js +22 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/findObjectsByIds/index.d.ts +1 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/findObjectsByIds/index.js +1 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getIdFromValue/getIdFromValue.d.ts +5 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getIdFromValue/getIdFromValue.js +6 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getIdFromValue/index.d.ts +1 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getIdFromValue/index.js +1 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getItemsToAdd/getItemsToAdd.d.ts +5 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getItemsToAdd/getItemsToAdd.js +14 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getItemsToAdd/index.d.ts +1 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getItemsToAdd/index.js +1 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/index.d.ts +3 -0
- package/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/index.js +3 -0
- package/components/Tree/MultipleTreeList/types.d.ts +8 -4
- package/components/TreeAsyncAutocomplete/types.d.ts +14 -2
- package/components/TreeLikeAsyncAutocomplete/Input/Input.d.ts +3 -0
- package/components/TreeLikeAsyncAutocomplete/Input/Input.js +20 -0
- package/components/TreeLikeAsyncAutocomplete/Input/constants.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/Input/constants.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/Input/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/Input/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/Input/styles.d.ts +11 -0
- package/components/TreeLikeAsyncAutocomplete/Input/styles.js +27 -0
- package/components/TreeLikeAsyncAutocomplete/Input/types.d.ts +7 -0
- package/components/TreeLikeAsyncAutocomplete/Input/types.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/Input/useLogic/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/Input/useLogic/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/Input/useLogic/useLogic.d.ts +18 -0
- package/components/TreeLikeAsyncAutocomplete/Input/useLogic/useLogic.js +50 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/ErrorMessage.d.ts +13 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/ErrorMessage.js +6 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/styles.d.ts +5 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/styles.js +10 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/Loader.d.ts +2 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/Loader.js +4 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/styles.d.ts +5 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/styles.js +8 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/NoData.d.ts +2 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/NoData.js +6 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/styles.d.ts +5 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/styles.js +8 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/OptionsModal.d.ts +3 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/OptionsModal.js +33 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/SearchSuggestion.d.ts +2 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/SearchSuggestion.js +6 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/styles.d.ts +5 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/styles.js +8 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/constants.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/constants.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/styles.d.ts +19 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/styles.js +48 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/types.d.ts +69 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/types.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/useLogic/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/useLogic/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/useLogic/useLogic.d.ts +27 -0
- package/components/TreeLikeAsyncAutocomplete/OptionsModal/useLogic/useLogic.js +92 -0
- package/components/TreeLikeAsyncAutocomplete/TreeLikeAsyncAutocomplete.d.ts +3 -0
- package/components/TreeLikeAsyncAutocomplete/TreeLikeAsyncAutocomplete.js +9 -0
- package/components/TreeLikeAsyncAutocomplete/constants.d.ts +2 -0
- package/components/TreeLikeAsyncAutocomplete/constants.js +2 -0
- package/components/TreeLikeAsyncAutocomplete/index.d.ts +2 -0
- package/components/TreeLikeAsyncAutocomplete/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/types.d.ts +69 -0
- package/components/TreeLikeAsyncAutocomplete/types.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/useLogic.d.ts +626 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/useLogic.js +82 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/utils/deepMultipleFind/deepMultipleFind.d.ts +3 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/utils/deepMultipleFind/deepMultipleFind.js +12 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/utils/deepMultipleFind/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/utils/deepMultipleFind/index.js +1 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/utils/index.d.ts +1 -0
- package/components/TreeLikeAsyncAutocomplete/useLogic/utils/index.js +1 -0
- package/components/TreeLikeList/TreeItem/TreeItem.d.ts +3 -51
- package/components/TreeLikeList/TreeItem/TreeItem.js +3 -2
- package/components/TreeLikeList/TreeItem/types.d.ts +56 -0
- package/components/TreeLikeList/TreeItem/types.js +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/useLogic.d.ts +4 -3
- package/components/TreeLikeList/TreeItem/useLogic/useLogic.js +22 -13
- package/components/TreeLikeList/TreeItem/useLogic/utils/addItem/addItem.d.ts +6 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/addItem/addItem.js +8 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/addItem/index.d.ts +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/addItem/index.js +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/addItemsByIds/addItemsByIds.d.ts +6 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/addItemsByIds/addItemsByIds.js +15 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/addItemsByIds/index.d.ts +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/addItemsByIds/index.js +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/checkIsSelected/checkIsSelected.d.ts +2 -1
- package/components/TreeLikeList/TreeItem/useLogic/utils/checkIsSelected/checkIsSelected.js +2 -1
- package/components/TreeLikeList/TreeItem/useLogic/utils/findObjectsByIds/findObjectsByIds.d.ts +5 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/findObjectsByIds/findObjectsByIds.js +22 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/findObjectsByIds/index.d.ts +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/findObjectsByIds/index.js +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/getCurrentValueIds/getCurrentValueIds.d.ts +5 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/getCurrentValueIds/getCurrentValueIds.js +10 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/getCurrentValueIds/index.d.ts +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/getCurrentValueIds/index.js +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/getIdFromValue/getIdFromValue.d.ts +5 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/getIdFromValue/getIdFromValue.js +6 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/getIdFromValue/index.d.ts +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/getIdFromValue/index.js +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/index.d.ts +7 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/index.js +7 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/removeItem/index.d.ts +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/removeItem/index.js +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/removeItem/removeItem.d.ts +5 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/removeItem/removeItem.js +10 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/removeItemsByIds/index.d.ts +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/removeItemsByIds/index.js +1 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/removeItemsByIds/removeItemsByIds.d.ts +5 -0
- package/components/TreeLikeList/TreeItem/useLogic/utils/removeItemsByIds/removeItemsByIds.js +11 -0
- package/components/TreeLikeList/TreeLikeList.d.ts +2 -3
- package/components/TreeLikeList/TreeLikeList.js +1 -1
- package/components/TreeLikeList/index.d.ts +1 -0
- package/components/TreeLikeList/types.d.ts +8 -4
- package/components/TreeLikeList/useLogic/useLogic.d.ts +3 -3
- package/components/TreeLikeList/useLogic/useLogic.js +3 -2
- package/components/TreeLikeList/useLogic/utils/getChainsId/getChainsId.js +17 -10
- package/hook-form/FormTreeLikeAsyncAutocomplete/FormTreeLikeAsyncAutocomplete.d.ts +13 -0
- package/hook-form/FormTreeLikeAsyncAutocomplete/FormTreeLikeAsyncAutocomplete.js +13 -0
- package/hook-form/FormTreeLikeAsyncAutocomplete/index.d.ts +0 -0
- package/hook-form/FormTreeLikeAsyncAutocomplete/index.js +1 -0
- package/icons/FillSm/ArrowDFillSm.js +1 -1
- package/icons/FillSm/ArrowUpFillSm.js +1 -1
- package/icons/FillSm/CircleErrorFillSm.js +1 -1
- package/icons/FillSm/ClockFillSm.js +1 -1
- package/icons/FillSm/DislikeFillSm.js +1 -1
- package/icons/FillSm/ErrorFillSm.js +1 -1
- package/icons/FillSm/InfoFillSm.js +1 -1
- package/icons/FillSm/LikeFillSm.js +1 -1
- package/icons/FillSm/LocationFillSm.js +1 -1
- package/icons/FillSm/MailFillSm.js +1 -1
- package/icons/FillSm/PauseFillSm.js +1 -1
- package/icons/FillSm/PhoneFillSm.js +1 -1
- package/icons/FillSm/PitFillSm.js +1 -1
- package/icons/FillSm/PlayFillSm.js +1 -1
- package/icons/FillSm/RectangleFillSm.js +1 -1
- package/icons/FillSm/RoundFillSm.js +1 -1
- package/icons/FillSm/SentFillSm.js +1 -1
- package/icons/FillSm/SortDownFillSm.js +1 -1
- package/icons/FillSm/SortFillSm.js +1 -1
- package/icons/FillSm/SortUpFillSm.js +1 -1
- package/icons/FillSm/StarFillSm.js +1 -1
- package/icons/FillSm/SuccessFillSm.js +1 -1
- package/icons/FillSm/UpToDateFillSm.js +1 -1
- package/icons/FillSm/WarningFillSm.js +1 -1
- package/icons/OutlineSm/AddOutlineSm.js +1 -1
- package/icons/OutlineSm/AddSmOutlineSm.js +1 -1
- package/icons/OutlineSm/ArrowDwnOutlineSm.js +1 -1
- package/icons/OutlineSm/ArrowLOutlineSm.js +1 -1
- package/icons/OutlineSm/ArrowROutlineSm.js +1 -1
- package/icons/OutlineSm/ArrowUpOutlineSm.js +1 -1
- package/icons/OutlineSm/BlockOutlineSm.js +1 -1
- package/icons/OutlineSm/CheckOutlineSm.js +1 -1
- package/icons/OutlineSm/ClockOutlineSm.js +1 -1
- package/icons/OutlineSm/CopyOutlineSm.js +1 -1
- package/icons/OutlineSm/CrossOutlineSm.js +1 -1
- package/icons/OutlineSm/CrossSmOutlineSm.js +1 -1
- package/icons/OutlineSm/DislikeOutlineSm.js +1 -1
- package/icons/OutlineSm/DocumentOutlineSm.js +1 -1
- package/icons/OutlineSm/DocumentsOutlineSm.js +1 -1
- package/icons/OutlineSm/DotOutlineSm.js +1 -1
- package/icons/OutlineSm/DoubleCheckOutlineSm.js +1 -1
- package/icons/OutlineSm/DownloadVOutlineSm.js +1 -1
- package/icons/OutlineSm/EditOutlineSm.js +1 -1
- package/icons/OutlineSm/InfoOutlineSm.js +1 -1
- package/icons/OutlineSm/LikeOutlineSm.js +1 -1
- package/icons/OutlineSm/LoaderOutlineSm.js +1 -1
- package/icons/OutlineSm/MessageOutlineSm.js +1 -1
- package/icons/OutlineSm/OpenLinkOutlineSm.js +1 -1
- package/icons/OutlineSm/PageOutlineSm.js +1 -1
- package/icons/OutlineSm/ProfileOutlineSm.js +1 -1
- package/icons/OutlineSm/RefreshOutlineSm.js +1 -1
- package/icons/OutlineSm/RequestOutlineSm.js +1 -1
- package/icons/OutlineSm/RouteOutlineSm.js +1 -1
- package/icons/OutlineSm/SearchOutlineSm.js +1 -1
- package/icons/OutlineSm/SortingOutlineSm.js +1 -1
- package/icons/OutlineSm/SuccessOutlineSm.js +1 -1
- package/icons/OutlineSm/TransferOutlineSm.js +1 -1
- package/node/components/Checkbox/Icon/Icon.js +1 -1
- package/node/components/Radio/Icon/Icon.js +1 -1
- package/node/components/SvgIcon/SvgIcon.js +1 -1
- package/node/components/Tree/MultipleTreeList/MultipleTreeList.d.ts +2 -2
- package/node/components/Tree/MultipleTreeList/MultipleTreeList.js +1 -1
- package/node/components/Tree/MultipleTreeList/TreeItem/TreeItem.d.ts +10 -6
- package/node/components/Tree/MultipleTreeList/TreeItem/TreeItem.js +3 -2
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/useLogic.d.ts +3 -2
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/useLogic.js +23 -17
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/checkIsIndeterminate/checkIsIndeterminate.d.ts +2 -1
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/checkIsIndeterminate/checkIsIndeterminate.js +2 -1
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/checkIsSelected/checkIsSelected.d.ts +2 -1
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/checkIsSelected/checkIsSelected.js +2 -1
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/findObjectsByIds/findObjectsByIds.d.ts +5 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/findObjectsByIds/findObjectsByIds.js +26 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/findObjectsByIds/index.d.ts +1 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/findObjectsByIds/index.js +17 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getIdFromValue/getIdFromValue.d.ts +5 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getIdFromValue/getIdFromValue.js +10 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getIdFromValue/index.d.ts +1 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getIdFromValue/index.js +17 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getItemsToAdd/getItemsToAdd.d.ts +5 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getItemsToAdd/getItemsToAdd.js +18 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getItemsToAdd/index.d.ts +1 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/getItemsToAdd/index.js +17 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/index.d.ts +3 -0
- package/node/components/Tree/MultipleTreeList/TreeItem/useLogic/utils/index.js +7 -1
- package/node/components/Tree/MultipleTreeList/types.d.ts +8 -4
- package/node/components/TreeAsyncAutocomplete/types.d.ts +14 -2
- package/node/components/TreeLikeAsyncAutocomplete/Input/Input.d.ts +3 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/Input.js +23 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/constants.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/constants.js +4 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/styles.d.ts +11 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/styles.js +30 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/types.d.ts +7 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/types.js +2 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/useLogic/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/useLogic/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/useLogic/useLogic.d.ts +18 -0
- package/node/components/TreeLikeAsyncAutocomplete/Input/useLogic/useLogic.js +54 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/ErrorMessage.d.ts +13 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/ErrorMessage.js +10 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/styles.d.ts +5 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/ErrorMessage/styles.js +13 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/Loader.d.ts +2 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/Loader.js +8 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/styles.d.ts +5 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/Loader/styles.js +11 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/NoData.d.ts +2 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/NoData.js +10 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/styles.d.ts +5 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/NoData/styles.js +11 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/OptionsModal.d.ts +3 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/OptionsModal.js +37 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/SearchSuggestion.d.ts +2 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/SearchSuggestion.js +10 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/styles.d.ts +5 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/SearchSuggestion/styles.js +11 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/constants.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/constants.js +4 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/styles.d.ts +19 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/styles.js +51 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/types.d.ts +69 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/types.js +2 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/useLogic/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/useLogic/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/useLogic/useLogic.d.ts +27 -0
- package/node/components/TreeLikeAsyncAutocomplete/OptionsModal/useLogic/useLogic.js +96 -0
- package/node/components/TreeLikeAsyncAutocomplete/TreeLikeAsyncAutocomplete.d.ts +3 -0
- package/node/components/TreeLikeAsyncAutocomplete/TreeLikeAsyncAutocomplete.js +12 -0
- package/node/components/TreeLikeAsyncAutocomplete/constants.d.ts +2 -0
- package/node/components/TreeLikeAsyncAutocomplete/constants.js +5 -0
- package/node/components/TreeLikeAsyncAutocomplete/index.d.ts +2 -0
- package/node/components/TreeLikeAsyncAutocomplete/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/types.d.ts +69 -0
- package/node/components/TreeLikeAsyncAutocomplete/types.js +2 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/useLogic.d.ts +626 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/useLogic.js +86 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/utils/deepMultipleFind/deepMultipleFind.d.ts +3 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/utils/deepMultipleFind/deepMultipleFind.js +16 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/utils/deepMultipleFind/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/utils/deepMultipleFind/index.js +17 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/utils/index.d.ts +1 -0
- package/node/components/TreeLikeAsyncAutocomplete/useLogic/utils/index.js +5 -0
- package/node/components/TreeLikeList/TreeItem/TreeItem.d.ts +3 -51
- package/node/components/TreeLikeList/TreeItem/TreeItem.js +3 -2
- package/node/components/TreeLikeList/TreeItem/types.d.ts +56 -0
- package/node/components/TreeLikeList/TreeItem/types.js +2 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/useLogic.d.ts +4 -3
- package/node/components/TreeLikeList/TreeItem/useLogic/useLogic.js +21 -12
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/addItem/addItem.d.ts +6 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/addItem/addItem.js +12 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/addItem/index.d.ts +1 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/addItem/index.js +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/addItemsByIds/addItemsByIds.d.ts +6 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/addItemsByIds/addItemsByIds.js +19 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/addItemsByIds/index.d.ts +1 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/addItemsByIds/index.js +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/checkIsSelected/checkIsSelected.d.ts +2 -1
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/checkIsSelected/checkIsSelected.js +2 -1
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/findObjectsByIds/findObjectsByIds.d.ts +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/findObjectsByIds/findObjectsByIds.js +26 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/findObjectsByIds/index.d.ts +1 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/findObjectsByIds/index.js +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/getCurrentValueIds/getCurrentValueIds.d.ts +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/getCurrentValueIds/getCurrentValueIds.js +14 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/getCurrentValueIds/index.d.ts +1 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/getCurrentValueIds/index.js +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/getIdFromValue/getIdFromValue.d.ts +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/getIdFromValue/getIdFromValue.js +10 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/getIdFromValue/index.d.ts +1 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/getIdFromValue/index.js +17 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/index.d.ts +7 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/index.js +15 -1
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/removeItem/index.d.ts +1 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/removeItem/index.js +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/removeItem/removeItem.d.ts +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/removeItem/removeItem.js +14 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/removeItemsByIds/index.d.ts +1 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/removeItemsByIds/index.js +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/removeItemsByIds/removeItemsByIds.d.ts +5 -0
- package/node/components/TreeLikeList/TreeItem/useLogic/utils/removeItemsByIds/removeItemsByIds.js +15 -0
- package/node/components/TreeLikeList/TreeLikeList.d.ts +2 -3
- package/node/components/TreeLikeList/TreeLikeList.js +1 -1
- package/node/components/TreeLikeList/index.d.ts +1 -0
- package/node/components/TreeLikeList/types.d.ts +8 -4
- package/node/components/TreeLikeList/useLogic/useLogic.d.ts +3 -3
- package/node/components/TreeLikeList/useLogic/useLogic.js +3 -2
- package/node/components/TreeLikeList/useLogic/utils/getChainsId/getChainsId.js +17 -10
- package/node/hook-form/FormTreeLikeAsyncAutocomplete/FormTreeLikeAsyncAutocomplete.d.ts +13 -0
- package/node/hook-form/FormTreeLikeAsyncAutocomplete/FormTreeLikeAsyncAutocomplete.js +17 -0
- package/node/hook-form/FormTreeLikeAsyncAutocomplete/index.d.ts +0 -0
- package/node/hook-form/FormTreeLikeAsyncAutocomplete/index.js +1 -0
- package/node/icons/FillSm/ArrowDFillSm.js +1 -1
- package/node/icons/FillSm/ArrowUpFillSm.js +1 -1
- package/node/icons/FillSm/CircleErrorFillSm.js +1 -1
- package/node/icons/FillSm/ClockFillSm.js +1 -1
- package/node/icons/FillSm/DislikeFillSm.js +1 -1
- package/node/icons/FillSm/ErrorFillSm.js +1 -1
- package/node/icons/FillSm/InfoFillSm.js +1 -1
- package/node/icons/FillSm/LikeFillSm.js +1 -1
- package/node/icons/FillSm/LocationFillSm.js +1 -1
- package/node/icons/FillSm/MailFillSm.js +1 -1
- package/node/icons/FillSm/PauseFillSm.js +1 -1
- package/node/icons/FillSm/PhoneFillSm.js +1 -1
- package/node/icons/FillSm/PitFillSm.js +1 -1
- package/node/icons/FillSm/PlayFillSm.js +1 -1
- package/node/icons/FillSm/RectangleFillSm.js +1 -1
- package/node/icons/FillSm/RoundFillSm.js +1 -1
- package/node/icons/FillSm/SentFillSm.js +1 -1
- package/node/icons/FillSm/SortDownFillSm.js +1 -1
- package/node/icons/FillSm/SortFillSm.js +1 -1
- package/node/icons/FillSm/SortUpFillSm.js +1 -1
- package/node/icons/FillSm/StarFillSm.js +1 -1
- package/node/icons/FillSm/SuccessFillSm.js +1 -1
- package/node/icons/FillSm/UpToDateFillSm.js +1 -1
- package/node/icons/FillSm/WarningFillSm.js +1 -1
- package/node/icons/OutlineSm/AddOutlineSm.js +1 -1
- package/node/icons/OutlineSm/AddSmOutlineSm.js +1 -1
- package/node/icons/OutlineSm/ArrowDwnOutlineSm.js +1 -1
- package/node/icons/OutlineSm/ArrowLOutlineSm.js +1 -1
- package/node/icons/OutlineSm/ArrowROutlineSm.js +1 -1
- package/node/icons/OutlineSm/ArrowUpOutlineSm.js +1 -1
- package/node/icons/OutlineSm/BlockOutlineSm.js +1 -1
- package/node/icons/OutlineSm/CheckOutlineSm.js +1 -1
- package/node/icons/OutlineSm/ClockOutlineSm.js +1 -1
- package/node/icons/OutlineSm/CopyOutlineSm.js +1 -1
- package/node/icons/OutlineSm/CrossOutlineSm.js +1 -1
- package/node/icons/OutlineSm/CrossSmOutlineSm.js +1 -1
- package/node/icons/OutlineSm/DislikeOutlineSm.js +1 -1
- package/node/icons/OutlineSm/DocumentOutlineSm.js +1 -1
- package/node/icons/OutlineSm/DocumentsOutlineSm.js +1 -1
- package/node/icons/OutlineSm/DotOutlineSm.js +1 -1
- package/node/icons/OutlineSm/DoubleCheckOutlineSm.js +1 -1
- package/node/icons/OutlineSm/DownloadVOutlineSm.js +1 -1
- package/node/icons/OutlineSm/EditOutlineSm.js +1 -1
- package/node/icons/OutlineSm/InfoOutlineSm.js +1 -1
- package/node/icons/OutlineSm/LikeOutlineSm.js +1 -1
- package/node/icons/OutlineSm/LoaderOutlineSm.js +1 -1
- package/node/icons/OutlineSm/MessageOutlineSm.js +1 -1
- package/node/icons/OutlineSm/OpenLinkOutlineSm.js +1 -1
- package/node/icons/OutlineSm/PageOutlineSm.js +1 -1
- package/node/icons/OutlineSm/ProfileOutlineSm.js +1 -1
- package/node/icons/OutlineSm/RefreshOutlineSm.js +1 -1
- package/node/icons/OutlineSm/RequestOutlineSm.js +1 -1
- package/node/icons/OutlineSm/RouteOutlineSm.js +1 -1
- package/node/icons/OutlineSm/SearchOutlineSm.js +1 -1
- package/node/icons/OutlineSm/SortingOutlineSm.js +1 -1
- package/node/icons/OutlineSm/SuccessOutlineSm.js +1 -1
- package/node/icons/OutlineSm/TransferOutlineSm.js +1 -1
- package/package.json +15 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.removeItem = void 0;
|
|
4
|
+
const getIdFromValue_1 = require("../getIdFromValue");
|
|
5
|
+
/**
|
|
6
|
+
* Удаляет элемент из value по id
|
|
7
|
+
*/
|
|
8
|
+
const removeItem = (value, idToRemove) => {
|
|
9
|
+
if (!value) {
|
|
10
|
+
return value;
|
|
11
|
+
}
|
|
12
|
+
return value.filter((treeItem) => (0, getIdFromValue_1.getIdFromValue)(treeItem) !== idToRemove);
|
|
13
|
+
};
|
|
14
|
+
exports.removeItem = removeItem;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { removeItemsByIds } from './removeItemsByIds';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.removeItemsByIds = void 0;
|
|
4
|
+
var removeItemsByIds_1 = require("./removeItemsByIds");
|
|
5
|
+
Object.defineProperty(exports, "removeItemsByIds", { enumerable: true, get: function () { return removeItemsByIds_1.removeItemsByIds; } });
|
package/node/components/TreeLikeList/TreeItem/useLogic/utils/removeItemsByIds/removeItemsByIds.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.removeItemsByIds = void 0;
|
|
4
|
+
const getIdFromValue_1 = require("../getIdFromValue");
|
|
5
|
+
/**
|
|
6
|
+
* Удаляет элементы из value по массиву id
|
|
7
|
+
*/
|
|
8
|
+
const removeItemsByIds = (value, idsToRemove) => {
|
|
9
|
+
if (!value || idsToRemove.length === 0) {
|
|
10
|
+
return value;
|
|
11
|
+
}
|
|
12
|
+
const idsSet = new Set(idsToRemove);
|
|
13
|
+
return value.filter((treeItem) => !idsSet.has((0, getIdFromValue_1.getIdFromValue)(treeItem)));
|
|
14
|
+
};
|
|
15
|
+
exports.removeItemsByIds = removeItemsByIds;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
3
|
-
export
|
|
4
|
-
export declare const TreeLikeList: (props: TreeLikeListProps) => JSX.Element;
|
|
2
|
+
import type { MultipleValue, TreeLikeListProps } from './types';
|
|
3
|
+
export declare const TreeLikeList: <TValue extends MultipleValue = string[]>(props: TreeLikeListProps<TValue>) => JSX.Element;
|
|
@@ -9,6 +9,6 @@ const INITIAL_LEVEL = 0;
|
|
|
9
9
|
const TreeLikeList = (props) => {
|
|
10
10
|
const { listProps, itemProps } = (0, useLogic_1.useLogic)(props);
|
|
11
11
|
const { data, className, expandedLevel = 10, disabledItems, ...restProps } = props;
|
|
12
|
-
return ((0, jsx_runtime_1.jsx)(styles_1.List, { className: className, ...listProps, children: data.map((item) => ((0, jsx_runtime_1.jsx)(TreeItem_1.TreeItem, {
|
|
12
|
+
return ((0, jsx_runtime_1.jsx)(styles_1.List, { className: className, ...listProps, children: data.map((item) => ((0, jsx_runtime_1.jsx)(TreeItem_1.TreeItem, { item: item, level: INITIAL_LEVEL, expandedLevel: expandedLevel, ...itemProps, ...restProps }, item.id))) }));
|
|
13
13
|
};
|
|
14
14
|
exports.TreeLikeList = TreeLikeList;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { type FunctionComponent } from 'react';
|
|
2
2
|
import type { TreeListData } from '../Tree';
|
|
3
|
-
export type MultipleValue = string[] | undefined;
|
|
3
|
+
export type MultipleValue = TreeListData[] | string[] | undefined;
|
|
4
4
|
export type DisabledItemValue = string | {
|
|
5
5
|
id: string;
|
|
6
6
|
disabledReason?: string;
|
|
7
7
|
};
|
|
8
|
-
export type TreeLikeListProps = {
|
|
8
|
+
export type TreeLikeListProps<TValue extends MultipleValue = string[]> = {
|
|
9
9
|
/**
|
|
10
10
|
* Выбранные значения
|
|
11
11
|
*/
|
|
12
|
-
value?:
|
|
12
|
+
value?: TValue;
|
|
13
13
|
/**
|
|
14
14
|
* Данные, которые необходимо отобразить в виде дерева.
|
|
15
15
|
*/
|
|
@@ -43,5 +43,9 @@ export type TreeLikeListProps = {
|
|
|
43
43
|
/**
|
|
44
44
|
* Функция, которая запускается при изменении состояния.
|
|
45
45
|
*/
|
|
46
|
-
onChange: (value:
|
|
46
|
+
onChange: (value: TValue) => void;
|
|
47
|
+
/**
|
|
48
|
+
* Переключает компонент в режим работы с объектами а не с id элементов
|
|
49
|
+
*/
|
|
50
|
+
isObjectMode?: boolean;
|
|
47
51
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
3
|
-
type UseLogicParams = TreeLikeListProps
|
|
4
|
-
export declare const useLogic: ({ data, value, disabledItems }: UseLogicParams) => {
|
|
2
|
+
import type { MultipleValue, TreeLikeListProps } from '../types';
|
|
3
|
+
type UseLogicParams<TValue extends MultipleValue = string[]> = TreeLikeListProps<TValue>;
|
|
4
|
+
export declare const useLogic: <TValue extends MultipleValue = string[]>({ data, value, disabledItems, }: UseLogicParams<TValue>) => {
|
|
5
5
|
listProps: {
|
|
6
6
|
ref: import("react").RefObject<HTMLUListElement>;
|
|
7
7
|
};
|
|
@@ -5,14 +5,15 @@ const react_1 = require("react");
|
|
|
5
5
|
const useId_1 = require("../../hooks/useId");
|
|
6
6
|
const utils_1 = require("../../Tree/utils");
|
|
7
7
|
const utils_2 = require("./utils");
|
|
8
|
-
const useLogic = ({ data, value, disabledItems }) => {
|
|
8
|
+
const useLogic = ({ data, value, disabledItems, }) => {
|
|
9
9
|
const prefixId = (0, useId_1.useId)();
|
|
10
10
|
const listRef = (0, react_1.useRef)(null);
|
|
11
11
|
(0, react_1.useEffect)(() => {
|
|
12
12
|
if (listRef.current && value?.length) {
|
|
13
13
|
// Выбираем первый элемент из списка value
|
|
14
|
+
const firstItemId = typeof value[0] === 'string' ? value[0] : value[0].id;
|
|
14
15
|
const targetItem = listRef.current.querySelector(`
|
|
15
|
-
li[id="${prefixId}${
|
|
16
|
+
li[id="${prefixId}${firstItemId}"]`);
|
|
16
17
|
if (targetItem) {
|
|
17
18
|
targetItem.scrollIntoView({ block: 'center' });
|
|
18
19
|
}
|
|
@@ -1,21 +1,28 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getChainsId = void 0;
|
|
4
|
+
/*
|
|
5
|
+
* Возвращает цепочки идентификаторов до целевых элементов
|
|
6
|
+
*/
|
|
4
7
|
const getChainsId = (tree, targetId) => {
|
|
5
8
|
const chainIds = [];
|
|
9
|
+
if (!targetId || targetId.length === 0) {
|
|
10
|
+
return [];
|
|
11
|
+
}
|
|
12
|
+
// Создаем набор идентификаторов для быстрого поиска
|
|
13
|
+
const targetIdsSet = new Set(targetId.map((item) => (typeof item === 'string' ? item : item.id)));
|
|
6
14
|
const findChain = (node, chainId) => {
|
|
7
|
-
chainId
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
if (node.children) {
|
|
13
|
-
for (const child of node.children) {
|
|
14
|
-
findChain(child, [...chainId]);
|
|
15
|
-
}
|
|
15
|
+
const currentChain = [...chainId, node.id];
|
|
16
|
+
// Проверяем по набору идентификаторов
|
|
17
|
+
if (targetIdsSet.has(node.id)) {
|
|
18
|
+
chainIds.push(currentChain);
|
|
19
|
+
// Не делаем return, так как элемент может иметь дочерние элементы с целевыми id
|
|
16
20
|
}
|
|
21
|
+
node.children?.forEach((child) => findChain(child, currentChain));
|
|
17
22
|
};
|
|
18
|
-
|
|
23
|
+
for (const node of tree) {
|
|
24
|
+
findChain(node, []);
|
|
25
|
+
}
|
|
19
26
|
return chainIds;
|
|
20
27
|
};
|
|
21
28
|
exports.getChainsId = getChainsId;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { type FetchOptionsResult, type TreeLikeAsyncAutocompleteProps, type TreeLikeAsyncAutocompleteValue } from '../../components/TreeLikeAsyncAutocomplete';
|
|
3
|
+
import { type WithFormFieldProps } from '../types';
|
|
4
|
+
/**
|
|
5
|
+
* Тип значения, которое сетится в state формы
|
|
6
|
+
*/
|
|
7
|
+
export type FormTreeLikeAsyncAutocompleteValue = TreeLikeAsyncAutocompleteValue;
|
|
8
|
+
export type FormFetchOptionsResult = FetchOptionsResult;
|
|
9
|
+
export type FormTreeLikeAutocompleteProps<TFieldValues extends object> = WithFormFieldProps<TreeLikeAsyncAutocompleteProps, TFieldValues>;
|
|
10
|
+
/**
|
|
11
|
+
* Обертка TreeLikeAsyncAutocomplete для формы
|
|
12
|
+
*/
|
|
13
|
+
export declare const FormTreeLikeAsyncAutocomplete: <TFieldValues extends object>(props: FormTreeLikeAutocompleteProps<TFieldValues>) => JSX.Element;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FormTreeLikeAsyncAutocomplete = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const TreeLikeAsyncAutocomplete_1 = require("../../components/TreeLikeAsyncAutocomplete");
|
|
6
|
+
const hooks_1 = require("../hooks");
|
|
7
|
+
/**
|
|
8
|
+
* Обертка TreeLikeAsyncAutocomplete для формы
|
|
9
|
+
*/
|
|
10
|
+
const FormTreeLikeAsyncAutocomplete = (props) => {
|
|
11
|
+
const { error, ...fieldProps } = (0, hooks_1.useFormFieldProps)({
|
|
12
|
+
...props,
|
|
13
|
+
defaultValue: props.defaultValue || '',
|
|
14
|
+
});
|
|
15
|
+
return (0, jsx_runtime_1.jsx)(TreeLikeAsyncAutocomplete_1.TreeLikeAsyncAutocomplete, { isError: error, ...fieldProps });
|
|
16
|
+
};
|
|
17
|
+
exports.FormTreeLikeAsyncAutocomplete = FormTreeLikeAsyncAutocomplete;
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const ArrowDFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 10 5.5 7h5L8 10Z" }) }));
|
|
5
|
+
const ArrowDFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 10 5.5 7h5L8 10Z" }) }));
|
|
6
6
|
exports.default = ArrowDFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const ArrowUpFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "m8 7-2.5 3h5L8 7Z" }) }));
|
|
5
|
+
const ArrowUpFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "m8 7-2.5 3h5L8 7Z" }) }));
|
|
6
6
|
exports.default = ArrowUpFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const CircleErrorFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm2.875 3.412a.75.75 0 0 0-1.06-.032L8.126 6.97l-1.69-1.59A.75.75 0 0 0 5.41 6.472l1.622 1.527L5.41 9.526a.75.75 0 0 0 .969 1.143l.059-.05 1.689-1.59 1.69 1.59.058.05a.75.75 0 0 0 .969-1.143L9.22 8l1.623-1.527a.75.75 0 0 0 .032-1.06Z" }) }));
|
|
5
|
+
const CircleErrorFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm2.875 3.412a.75.75 0 0 0-1.06-.032L8.126 6.97l-1.69-1.59A.75.75 0 0 0 5.41 6.472l1.622 1.527L5.41 9.526a.75.75 0 0 0 .969 1.143l.059-.05 1.689-1.59 1.69 1.59.058.05a.75.75 0 0 0 .969-1.143L9.22 8l1.623-1.527a.75.75 0 0 0 .032-1.06Z" }) }));
|
|
6
6
|
exports.default = CircleErrorFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const ClockFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: [(0, jsx_runtime_1.jsx)("circle", { cx: "8", cy: "8", r: "6" }), (0, jsx_runtime_1.jsx)("path", { d: "M10.5 9.5 8 8V4.5", stroke: "#fff", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }));
|
|
5
|
+
const ClockFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: [(0, jsx_runtime_1.jsx)("circle", { cx: "8", cy: "8", r: "6" }), (0, jsx_runtime_1.jsx)("path", { d: "M10.5 9.5 8 8V4.5", stroke: "#fff", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }));
|
|
6
6
|
exports.default = ClockFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const DislikeFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M1.504 9.417a.75.75 0 0 0 .75-.75V2A.75.75 0 0 0 .753 2v6.667c0 .414.337.75.75.75ZM8.504 14.75c.658 0 1.185-.286 1.506-.8.283-.455.361-1.016.369-1.522.01-.725-.125-1.567-.281-2.345h3.073c.535 0 1.024-.145 1.403-.483.373-.334.552-.777.626-1.207.143-.827-.06-1.834-.329-2.732-.551-1.837-1.547-3.719-1.69-3.984a.811.811 0 0 0-.717-.427h-7.96a.75.75 0 0 0-.75.75v6.667c0 .585.277 1.03.588 1.354.296.307.676.56.981.762.335.222.602.397.81.59.201.184.28.323.303.44.059.298.123.66.181.936.062.292.138.6.254.875.117.279.294.575.587.797.304.23.663.329 1.046.329Z" }) }));
|
|
5
|
+
const DislikeFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M1.504 9.417a.75.75 0 0 0 .75-.75V2A.75.75 0 0 0 .753 2v6.667c0 .414.337.75.75.75ZM8.504 14.75c.658 0 1.185-.286 1.506-.8.283-.455.361-1.016.369-1.522.01-.725-.125-1.567-.281-2.345h3.073c.535 0 1.024-.145 1.403-.483.373-.334.552-.777.626-1.207.143-.827-.06-1.834-.329-2.732-.551-1.837-1.547-3.719-1.69-3.984a.811.811 0 0 0-.717-.427h-7.96a.75.75 0 0 0-.75.75v6.667c0 .585.277 1.03.588 1.354.296.307.676.56.981.762.335.222.602.397.81.59.201.184.28.323.303.44.059.298.123.66.181.936.062.292.138.6.254.875.117.279.294.575.587.797.304.23.663.329 1.046.329Z" }) }));
|
|
6
6
|
exports.default = DislikeFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const ErrorFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M6.821 1.979c.651-.651 1.707-.651 2.358 0l4.843 4.842c.65.651.65 1.707 0 2.358l-4.843 4.843c-.651.65-1.707.65-2.358 0L1.98 9.179a1.667 1.667 0 0 1 0-2.358L6.82 1.98Zm1.18 8.604a.75.75 0 0 0 0 1.5h.008l.076-.004a.75.75 0 0 0 0-1.492l-.076-.004H8Zm0-6.667a.75.75 0 0 0-.75.75V8a.75.75 0 0 0 1.5 0V4.666a.75.75 0 0 0-.75-.75Z" }) }));
|
|
5
|
+
const ErrorFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M6.821 1.979c.651-.651 1.707-.651 2.358 0l4.843 4.842c.65.651.65 1.707 0 2.358l-4.843 4.843c-.651.65-1.707.65-2.358 0L1.98 9.179a1.667 1.667 0 0 1 0-2.358L6.82 1.98Zm1.18 8.604a.75.75 0 0 0 0 1.5h.008l.076-.004a.75.75 0 0 0 0-1.492l-.076-.004H8Zm0-6.667a.75.75 0 0 0-.75.75V8a.75.75 0 0 0 1.5 0V4.666a.75.75 0 0 0-.75-.75Z" }) }));
|
|
6
6
|
exports.default = ErrorFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const InfoFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm0 5.25a.75.75 0 0 0-.75.75v3.333a.75.75 0 0 0 1.5 0V8A.75.75 0 0 0 8 7.25Zm0-3.333a.75.75 0 0 0 0 1.5h.009l.076-.004a.75.75 0 0 0 0-1.492l-.076-.004H8Z" }) }));
|
|
5
|
+
const InfoFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm0 5.25a.75.75 0 0 0-.75.75v3.333a.75.75 0 0 0 1.5 0V8A.75.75 0 0 0 8 7.25Zm0-3.333a.75.75 0 0 0 0 1.5h.009l.076-.004a.75.75 0 0 0 0-1.492l-.076-.004H8Z" }) }));
|
|
6
6
|
exports.default = InfoFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const LikeFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M1.504 6.583a.75.75 0 0 1 .75.75V14a.75.75 0 0 1-1.501 0V7.333c0-.414.337-.75.75-.75ZM8.504 1.25c.658 0 1.185.286 1.506.8.283.455.361 1.016.369 1.522.01.725-.125 1.567-.281 2.345h3.073c.535 0 1.024.145 1.403.483.373.334.552.777.626 1.207.143.827-.06 1.834-.329 2.732-.551 1.837-1.547 3.719-1.69 3.984a.811.811 0 0 1-.717.427h-7.96a.75.75 0 0 1-.75-.75V7.333c0-.585.277-1.03.588-1.354.296-.307.676-.56.981-.762.335-.222.602-.397.81-.59.201-.184.28-.323.303-.44.059-.298.123-.66.181-.936.062-.292.138-.6.254-.875.117-.279.294-.575.587-.797.304-.23.663-.329 1.046-.329Z" }) }));
|
|
5
|
+
const LikeFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M1.504 6.583a.75.75 0 0 1 .75.75V14a.75.75 0 0 1-1.501 0V7.333c0-.414.337-.75.75-.75ZM8.504 1.25c.658 0 1.185.286 1.506.8.283.455.361 1.016.369 1.522.01.725-.125 1.567-.281 2.345h3.073c.535 0 1.024.145 1.403.483.373.334.552.777.626 1.207.143.827-.06 1.834-.329 2.732-.551 1.837-1.547 3.719-1.69 3.984a.811.811 0 0 1-.717.427h-7.96a.75.75 0 0 1-.75-.75V7.333c0-.585.277-1.03.588-1.354.296-.307.676-.56.981-.762.335-.222.602-.397.81-.59.201-.184.28-.323.303-.44.059-.298.123-.66.181-.936.062-.292.138-.6.254-.875.117-.279.294-.575.587-.797.304-.23.663-.329 1.046-.329Z" }) }));
|
|
6
6
|
exports.default = LikeFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const LocationFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 1c1.187 0 2.346.34 3.333.978a5.847 5.847 0 0 1 2.21 2.602 5.62 5.62 0 0 1 .342 3.35 5.741 5.741 0 0 1-1.643 2.97L8 15l-4.242-4.1a5.742 5.742 0 0 1-1.643-2.97 5.62 5.62 0 0 1 .342-3.35 5.847 5.847 0 0 1 2.21-2.602A6.149 6.149 0 0 1 8 1Zm0 4a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z" }) }));
|
|
5
|
+
const LocationFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 1c1.187 0 2.346.34 3.333.978a5.847 5.847 0 0 1 2.21 2.602 5.62 5.62 0 0 1 .342 3.35 5.741 5.741 0 0 1-1.643 2.97L8 15l-4.242-4.1a5.742 5.742 0 0 1-1.643-2.97 5.62 5.62 0 0 1 .342-3.35 5.847 5.847 0 0 1 2.21-2.602A6.149 6.149 0 0 1 8 1Zm0 4a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z" }) }));
|
|
6
6
|
exports.default = LocationFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const MailFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M13 3a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h10Zm.558 1.498a.75.75 0 0 0-1.06-.056L8.836 7.738a1.25 1.25 0 0 1-1.672 0L3.502 4.442l-.06-.047a.75.75 0 0 0-.998 1.108l.054.055L4.636 7.48l-1.28 2.133a.751.751 0 0 0 1.288.772L5.77 8.504l.39.35a2.75 2.75 0 0 0 3.679 0l.387-.35 1.13 1.882a.751.751 0 0 0 1.287-.772l-1.28-2.133 2.138-1.923a.75.75 0 0 0 .056-1.06Z" }) }));
|
|
5
|
+
const MailFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M13 3a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h10Zm.558 1.498a.75.75 0 0 0-1.06-.056L8.836 7.738a1.25 1.25 0 0 1-1.672 0L3.502 4.442l-.06-.047a.75.75 0 0 0-.998 1.108l.054.055L4.636 7.48l-1.28 2.133a.751.751 0 0 0 1.288.772L5.77 8.504l.39.35a2.75 2.75 0 0 0 3.679 0l.387-.35 1.13 1.882a.751.751 0 0 0 1.287-.772l-1.28-2.133 2.138-1.923a.75.75 0 0 0 .056-1.06Z" }) }));
|
|
6
6
|
exports.default = MailFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const PauseFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2ZM6 5.25a.75.75 0 0 0-.75.75v4a.75.75 0 0 0 1.5 0V6A.75.75 0 0 0 6 5.25Zm4 0a.75.75 0 0 0-.75.75v4a.75.75 0 0 0 1.5 0V6a.75.75 0 0 0-.75-.75Z" }) }));
|
|
5
|
+
const PauseFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2ZM6 5.25a.75.75 0 0 0-.75.75v4a.75.75 0 0 0 1.5 0V6A.75.75 0 0 0 6 5.25Zm4 0a.75.75 0 0 0-.75.75v4a.75.75 0 0 0 1.5 0V6a.75.75 0 0 0-.75-.75Z" }) }));
|
|
6
6
|
exports.default = PauseFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const PhoneFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M4.967 11.099a12.568 12.568 0 0 1-2.492-3.552c-.079-.187-.152-.371-.22-.552a.003.003 0 0 0-.005-.001c-.001 0-.003-.001-.003-.003l-.072-.213c-.656-1.814-.772-3.248-.656-3.62a1.33 1.33 0 0 1 .584-.848l1.355-.862a1.333 1.333 0 0 1 1.88.474l1.576 2.816a.798.798 0 0 1-.533 1.17l-.388.082a.436.436 0 0 0-.319.605c.38.819.916 1.582 1.571 2.24a7.934 7.934 0 0 0 2.234 1.58c.325.153.688-.076.724-.434l.03-.306a.794.794 0 0 1 1.165-.622l2.417 1.29c.594.316.859 1.026.617 1.655l-.75 1.946c-.198.515-.693.863-1.242.812a10.637 10.637 0 0 1-3.323-.887c-.204-.082-.407-.17-.608-.264A12.579 12.579 0 0 1 4.967 11.1Z" }) }));
|
|
5
|
+
const PhoneFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M4.967 11.099a12.568 12.568 0 0 1-2.492-3.552c-.079-.187-.152-.371-.22-.552a.003.003 0 0 0-.005-.001c-.001 0-.003-.001-.003-.003l-.072-.213c-.656-1.814-.772-3.248-.656-3.62a1.33 1.33 0 0 1 .584-.848l1.355-.862a1.333 1.333 0 0 1 1.88.474l1.576 2.816a.798.798 0 0 1-.533 1.17l-.388.082a.436.436 0 0 0-.319.605c.38.819.916 1.582 1.571 2.24a7.934 7.934 0 0 0 2.234 1.58c.325.153.688-.076.724-.434l.03-.306a.794.794 0 0 1 1.165-.622l2.417 1.29c.594.316.859 1.026.617 1.655l-.75 1.946c-.198.515-.693.863-1.242.812a10.637 10.637 0 0 1-3.323-.887c-.204-.082-.407-.17-.608-.264A12.579 12.579 0 0 1 4.967 11.1Z" }) }));
|
|
6
6
|
exports.default = PhoneFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const PitFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M12 11.014a1 1 0 0 1 1 1v1H3v-1a1 1 0 0 1 1-1h8ZM11.36 10.015H4.64l.76-2h5.2l.76 2ZM7.065 3.63c.327-.858 1.543-.858 1.87 0l1.286 3.385H5.779L7.065 3.63Z" }) }));
|
|
5
|
+
const PitFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M12 11.014a1 1 0 0 1 1 1v1H3v-1a1 1 0 0 1 1-1h8ZM11.36 10.015H4.64l.76-2h5.2l.76 2ZM7.065 3.63c.327-.858 1.543-.858 1.87 0l1.286 3.385H5.779L7.065 3.63Z" }) }));
|
|
6
6
|
exports.default = PitFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const PlayFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm-.987 3.507A.7.7 0 0 0 6 6.133v3.734a.7.7 0 0 0 1.013.626l3.735-1.867a.7.7 0 0 0 0-1.252L7.013 5.507Z" }) }));
|
|
5
|
+
const PlayFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm-.987 3.507A.7.7 0 0 0 6 6.133v3.734a.7.7 0 0 0 1.013.626l3.735-1.867a.7.7 0 0 0 0-1.252L7.013 5.507Z" }) }));
|
|
6
6
|
exports.default = PlayFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const RectangleFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M11.25 4.75v6.5h-6.5v-6.5h6.5Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M12 0a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4h8ZM4 3.25a.75.75 0 0 0-.75.75v8c0 .414.336.75.75.75h8a.75.75 0 0 0 .75-.75V4a.75.75 0 0 0-.75-.75H4Z" })] }));
|
|
5
|
+
const RectangleFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M11.25 4.75v6.5h-6.5v-6.5h6.5Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M12 0a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4h8ZM4 3.25a.75.75 0 0 0-.75.75v8c0 .414.336.75.75.75h8a.75.75 0 0 0 .75-.75V4a.75.75 0 0 0-.75-.75H4Z" })] }));
|
|
6
6
|
exports.default = RectangleFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const RoundFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M12 0a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4h8ZM8 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z" }) }));
|
|
5
|
+
const RoundFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M12 0a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4h8ZM8 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z" }) }));
|
|
6
6
|
exports.default = RoundFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const SentFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1-.001 11.999A6 6 0 0 1 8 2ZM6.5 5.25a.75.75 0 0 0 0 1.5h1.688L5.47 9.47a.75.75 0 0 0 1.06 1.06L9.25 7.81V9.5a.751.751 0 0 0 1.497.076l.004-.075V6a.75.75 0 0 0-.75-.75H6.5Z" }) }));
|
|
5
|
+
const SentFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1-.001 11.999A6 6 0 0 1 8 2ZM6.5 5.25a.75.75 0 0 0 0 1.5h1.688L5.47 9.47a.75.75 0 0 0 1.06 1.06L9.25 7.81V9.5a.751.751 0 0 0 1.497.076l.004-.075V6a.75.75 0 0 0-.75-.75H6.5Z" }) }));
|
|
6
6
|
exports.default = SentFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const SortDownFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M8 13 4.5 9h7L8 13Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M10.5 7h-5L8 4l2.5 3Z", fill: "#636363" })] }));
|
|
5
|
+
const SortDownFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M8 13 4.5 9h7L8 13Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M10.5 7h-5L8 4l2.5 3Z", fill: "#636363" })] }));
|
|
6
6
|
exports.default = SortDownFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const SortFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 12 5.5 9h5L8 12ZM10.5 7h-5L8 4l2.5 3Z" }) }));
|
|
5
|
+
const SortFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 12 5.5 9h5L8 12ZM10.5 7h-5L8 4l2.5 3Z" }) }));
|
|
6
6
|
exports.default = SortFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const SortUpFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M8 3 4.5 7h7L8 3Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M10.5 9h-5L8 12l2.5-3Z" })] }));
|
|
5
|
+
const SortUpFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M8 3 4.5 7h7L8 3Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M10.5 9h-5L8 12l2.5-3Z" })] }));
|
|
6
6
|
exports.default = SortUpFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const StarFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.283 2.044a.8.8 0 0 1 1.434 0l1.448 2.933a.8.8 0 0 0 .602.438l3.237.47a.8.8 0 0 1 .444 1.365l-2.343 2.283a.8.8 0 0 0-.23.708l.553 3.224a.8.8 0 0 1-1.16.843l-2.896-1.522a.8.8 0 0 0-.744 0l-2.896 1.522a.8.8 0 0 1-1.16-.843l.553-3.224a.8.8 0 0 0-.23-.708L1.552 7.25a.8.8 0 0 1 .444-1.365l3.237-.47a.8.8 0 0 0 .602-.438l1.448-2.933Z" }) }));
|
|
5
|
+
const StarFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.283 2.044a.8.8 0 0 1 1.434 0l1.448 2.933a.8.8 0 0 0 .602.438l3.237.47a.8.8 0 0 1 .444 1.365l-2.343 2.283a.8.8 0 0 0-.23.708l.553 3.224a.8.8 0 0 1-1.16.843l-2.896-1.522a.8.8 0 0 0-.744 0l-2.896 1.522a.8.8 0 0 1-1.16-.843l.553-3.224a.8.8 0 0 0-.23-.708L1.552 7.25a.8.8 0 0 1 .444-1.365l3.237-.47a.8.8 0 0 0 .602-.438l1.448-2.933Z" }) }));
|
|
6
6
|
exports.default = StarFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const SuccessFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm2.947 3.752a.751.751 0 0 0-1.004-.05l-.056.05-2.97 2.97-1.22-1.22a.75.75 0 0 0-1.06 1.061l1.75 1.75a.75.75 0 0 0 1.06 0l3.5-3.5.051-.056a.752.752 0 0 0-.05-1.005Z" }) }));
|
|
5
|
+
const SuccessFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm2.947 3.752a.751.751 0 0 0-1.004-.05l-.056.05-2.97 2.97-1.22-1.22a.75.75 0 0 0-1.06 1.061l1.75 1.75a.75.75 0 0 0 1.06 0l3.5-3.5.051-.056a.752.752 0 0 0-.05-1.005Z" }) }));
|
|
6
6
|
exports.default = SuccessFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const UpToDateFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1-.001 11.999A6 6 0 0 1 8 2Zm0 2.25a.75.75 0 0 0-.135.013h-.01a.75.75 0 0 0-.118.035l-.02.008a.75.75 0 0 0-.105.052l-.017.011a.75.75 0 0 0-.094.07l-.014.013-.03.03-2.5 2.625-.05.059a.75.75 0 0 0 1.08 1.03l.056-.053L7.25 6.875V11a.75.75 0 0 0 1.5 0V6.875l1.207 1.268a.75.75 0 0 0 1.086-1.036l-2.5-2.625-.031-.03-.014-.013a.748.748 0 0 0-.094-.07l-.017-.012a.75.75 0 0 0-.1-.05l-.028-.01a.75.75 0 0 0-.114-.033l-.011-.001a.746.746 0 0 0-.058-.01L8 4.25Z" }) }));
|
|
5
|
+
const UpToDateFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 2a6 6 0 1 1-.001 11.999A6 6 0 0 1 8 2Zm0 2.25a.75.75 0 0 0-.135.013h-.01a.75.75 0 0 0-.118.035l-.02.008a.75.75 0 0 0-.105.052l-.017.011a.75.75 0 0 0-.094.07l-.014.013-.03.03-2.5 2.625-.05.059a.75.75 0 0 0 1.08 1.03l.056-.053L7.25 6.875V11a.75.75 0 0 0 1.5 0V6.875l1.207 1.268a.75.75 0 0 0 1.086-1.036l-2.5-2.625-.031-.03-.014-.013a.748.748 0 0 0-.094-.07l-.017-.012a.75.75 0 0 0-.1-.05l-.028-.01a.75.75 0 0 0-.114-.033l-.011-.001a.746.746 0 0 0-.058-.01L8 4.25Z" }) }));
|
|
6
6
|
exports.default = UpToDateFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const WarningFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M6.508 2.933c.613-1.231 2.37-1.231 2.984 0L13.8 11.58a1.667 1.667 0 0 1-1.493 2.41H3.692A1.667 1.667 0 0 1 2.2 11.58l4.308-8.647ZM8 11.188a.75.75 0 0 0 0 1.5h.009l.076-.004a.75.75 0 0 0 0-1.492l-.076-.004h-.01Zm0-7a.75.75 0 0 0-.75.75v4a.75.75 0 0 0 1.5 0v-4a.75.75 0 0 0-.75-.75Z" }) }));
|
|
5
|
+
const WarningFillSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M6.508 2.933c.613-1.231 2.37-1.231 2.984 0L13.8 11.58a1.667 1.667 0 0 1-1.493 2.41H3.692A1.667 1.667 0 0 1 2.2 11.58l4.308-8.647ZM8 11.188a.75.75 0 0 0 0 1.5h.009l.076-.004a.75.75 0 0 0 0-1.492l-.076-.004h-.01Zm0-7a.75.75 0 0 0-.75.75v4a.75.75 0 0 0 1.5 0v-4a.75.75 0 0 0-.75-.75Z" }) }));
|
|
6
6
|
exports.default = WarningFillSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const AddOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.25 12V8.75H4a.75.75 0 0 1 0-1.5h3.25V4a.75.75 0 0 1 1.5 0v3.25H12a.75.75 0 1 1 0 1.5H8.75V12a.75.75 0 0 1-1.5 0Z" }) }));
|
|
5
|
+
const AddOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.25 12V8.75H4a.75.75 0 0 1 0-1.5h3.25V4a.75.75 0 0 1 1.5 0v3.25H12a.75.75 0 1 1 0 1.5H8.75V12a.75.75 0 0 1-1.5 0Z" }) }));
|
|
6
6
|
exports.default = AddOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const AddSmOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 4a.75.75 0 0 1 .75.75v2.5h2.5a.75.75 0 0 1 0 1.5h-2.5v2.5a.75.75 0 0 1-1.5 0v-2.5H4.754a.75.75 0 1 1 0-1.5H7.25v-2.5A.75.75 0 0 1 8 4z" }) }));
|
|
5
|
+
const AddSmOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8 4a.75.75 0 0 1 .75.75v2.5h2.5a.75.75 0 0 1 0 1.5h-2.5v2.5a.75.75 0 0 1-1.5 0v-2.5H4.754a.75.75 0 1 1 0-1.5H7.25v-2.5A.75.75 0 0 1 8 4z" }) }));
|
|
6
6
|
exports.default = AddSmOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const ArrowDwnOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.25 3a.75.75 0 0 1 1.5 0v8.5l2.8-2.1a.75.75 0 0 1 .9 1.2l-4 3a.75.75 0 0 1-.9 0l-4-3-.059-.05a.75.75 0 0 1 .896-1.193l.063.043 2.8 2.1V3Z" }) }));
|
|
5
|
+
const ArrowDwnOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.25 3a.75.75 0 0 1 1.5 0v8.5l2.8-2.1a.75.75 0 0 1 .9 1.2l-4 3a.75.75 0 0 1-.9 0l-4-3-.059-.05a.75.75 0 0 1 .896-1.193l.063.043 2.8 2.1V3Z" }) }));
|
|
6
6
|
exports.default = ArrowDwnOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const ArrowLOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M13 7.25a.75.75 0 0 1 0 1.5H4.5l2.1 2.8a.75.75 0 0 1-1.2.9l-3-4a.75.75 0 0 1 0-.9l3-4 .049-.059a.75.75 0 0 1 1.193.896L6.6 4.45l-2.1 2.8H13Z" }) }));
|
|
5
|
+
const ArrowLOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M13 7.25a.75.75 0 0 1 0 1.5H4.5l2.1 2.8a.75.75 0 0 1-1.2.9l-3-4a.75.75 0 0 1 0-.9l3-4 .049-.059a.75.75 0 0 1 1.193.896L6.6 4.45l-2.1 2.8H13Z" }) }));
|
|
6
6
|
exports.default = ArrowLOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const ArrowROutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M3 7.25a.75.75 0 0 0 0 1.5h8.5l-2.1 2.8a.75.75 0 0 0 1.2.9l3-4a.75.75 0 0 0 0-.9l-3-4-.049-.059a.75.75 0 0 0-1.193.896l.043.063 2.1 2.8H3Z" }) }));
|
|
5
|
+
const ArrowROutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M3 7.25a.75.75 0 0 0 0 1.5h8.5l-2.1 2.8a.75.75 0 0 0 1.2.9l3-4a.75.75 0 0 0 0-.9l-3-4-.049-.059a.75.75 0 0 0-1.193.896l.043.063 2.1 2.8H3Z" }) }));
|
|
6
6
|
exports.default = ArrowROutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const ArrowUpOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.25 13a.75.75 0 0 0 1.5 0V4.5l2.8 2.1a.75.75 0 0 0 .9-1.2l-4-3a.75.75 0 0 0-.9 0l-4 3-.059.049a.75.75 0 0 0 .896 1.193L4.45 6.6l2.8-2.1V13Z" }) }));
|
|
5
|
+
const ArrowUpOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M7.25 13a.75.75 0 0 0 1.5 0V4.5l2.8 2.1a.75.75 0 0 0 .9-1.2l-4-3a.75.75 0 0 0-.9 0l-4 3-.059.049a.75.75 0 0 0 .896 1.193L4.45 6.6l2.8-2.1V13Z" }) }));
|
|
6
6
|
exports.default = ArrowUpOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const BlockOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M12.25 8a4.23 4.23 0 0 0-.763-2.428l-5.915 5.915A4.25 4.25 0 0 0 12.25 8Zm-8.5 0c0 .902.282 1.739.762 2.427l5.915-5.915A4.25 4.25 0 0 0 3.75 8Zm10 0a5.75 5.75 0 1 1-11.5 0 5.75 5.75 0 0 1 11.5 0Z" }) }));
|
|
5
|
+
const BlockOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M12.25 8a4.23 4.23 0 0 0-.763-2.428l-5.915 5.915A4.25 4.25 0 0 0 12.25 8Zm-8.5 0c0 .902.282 1.739.762 2.427l5.915-5.915A4.25 4.25 0 0 0 3.75 8Zm10 0a5.75 5.75 0 1 1-11.5 0 5.75 5.75 0 0 1 11.5 0Z" }) }));
|
|
6
6
|
exports.default = BlockOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const CheckOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M11.457 4.483a.75.75 0 1 1 1.086 1.034l-5.361 5.637a.751.751 0 0 1-1.075.014L3.47 8.53a.75.75 0 0 1 1.004-1.112l.056.052 2.094 2.093 4.833-5.08Z" }) }));
|
|
5
|
+
const CheckOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M11.457 4.483a.75.75 0 1 1 1.086 1.034l-5.361 5.637a.751.751 0 0 1-1.075.014L3.47 8.53a.75.75 0 0 1 1.004-1.112l.056.052 2.094 2.093 4.833-5.08Z" }) }));
|
|
6
6
|
exports.default = CheckOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const ClockOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M13.25 8a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Zm-6-3.333a.75.75 0 0 1 1.5 0v2.87l1.585.792a.75.75 0 0 1-.6 1.372l-.07-.03-2-1A.75.75 0 0 1 7.25 8V4.667ZM14.75 8a6.75 6.75 0 1 1-13.5 0 6.75 6.75 0 0 1 13.5 0Z" }) }));
|
|
5
|
+
const ClockOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M13.25 8a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Zm-6-3.333a.75.75 0 0 1 1.5 0v2.87l1.585.792a.75.75 0 0 1-.6 1.372l-.07-.03-2-1A.75.75 0 0 1 7.25 8V4.667ZM14.75 8a6.75 6.75 0 1 1-13.5 0 6.75 6.75 0 0 1 13.5 0Z" }) }));
|
|
6
6
|
exports.default = ClockOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const CopyOutlineSm = (props) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M13.13 5.01c1.05.107 1.87.994 1.87 2.072v5.834c0 1.15-.933 2.083-2.083 2.083H8.083a2.084 2.084 0 0 1-2.072-1.87L6 12.916V7.082c0-1.15.933-2.083 2.083-2.083h4.834l.213.01ZM8.083 6.499a.583.583 0 0 0-.583.583v5.834l.012.117c.054.266.29.466.571.466h4.834a.583.583 0 0 0 .583-.583V7.082c0-.282-.2-.517-.466-.571l-.117-.012H8.083Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M9.129 1.01A2.084 2.084 0 0 1 11 3.083v.166a.75.75 0 0 1-1.5 0v-.166c0-.282-.2-.517-.466-.571L8.916 2.5l-4.833.002a.583.583 0 0 0-.583.583v5.831c0 .322.261.583.583.583h.344l.076.004a.75.75 0 0 1 0 1.492L4.427 11h-.344A2.083 2.083 0 0 1 2 8.916V3.085c0-1.15.932-2.082 2.082-2.083L8.916 1l.213.01Z" })] }));
|
|
5
|
+
const CopyOutlineSm = (props) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M13.13 5.01c1.05.107 1.87.994 1.87 2.072v5.834c0 1.15-.933 2.083-2.083 2.083H8.083a2.084 2.084 0 0 1-2.072-1.87L6 12.916V7.082c0-1.15.933-2.083 2.083-2.083h4.834l.213.01ZM8.083 6.499a.583.583 0 0 0-.583.583v5.834l.012.117c.054.266.29.466.571.466h4.834a.583.583 0 0 0 .583-.583V7.082c0-.282-.2-.517-.466-.571l-.117-.012H8.083Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M9.129 1.01A2.084 2.084 0 0 1 11 3.083v.166a.75.75 0 0 1-1.5 0v-.166c0-.282-.2-.517-.466-.571L8.916 2.5l-4.833.002a.583.583 0 0 0-.583.583v5.831c0 .322.261.583.583.583h.344l.076.004a.75.75 0 0 1 0 1.492L4.427 11h-.344A2.083 2.083 0 0 1 2 8.916V3.085c0-1.15.932-2.082 2.082-2.083L8.916 1l.213.01Z" })] }));
|
|
6
6
|
exports.default = CopyOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const CrossOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M10.665 4.274a.75.75 0 1 1 1.06 1.061L9.06 8l2.665 2.665.052.057a.75.75 0 0 1-1.055 1.055l-.057-.051L8 9.06l-2.665 2.665a.75.75 0 0 1-1.06-1.06L6.938 8 4.274 5.335a.75.75 0 1 1 1.06-1.06L8 6.938l2.665-2.665Z" }) }));
|
|
5
|
+
const CrossOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M10.665 4.274a.75.75 0 1 1 1.06 1.061L9.06 8l2.665 2.665.052.057a.75.75 0 0 1-1.055 1.055l-.057-.051L8 9.06l-2.665 2.665a.75.75 0 0 1-1.06-1.06L6.938 8 4.274 5.335a.75.75 0 1 1 1.06-1.06L8 6.938l2.665-2.665Z" }) }));
|
|
6
6
|
exports.default = CrossOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const CrossSmOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M9.526 5.418a.75.75 0 0 1 1.056 1.056l-.052.056L9.06 8l1.47 1.47.052.056a.75.75 0 0 1-1.056 1.056l-.056-.052L8 9.06l-1.47 1.47a.75.75 0 1 1-1.06-1.06L6.94 8 5.47 6.53l-.052-.056a.75.75 0 0 1 1.056-1.056l.056.052L8 6.94l1.47-1.47.056-.052Z" }) }));
|
|
5
|
+
const CrossSmOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M9.526 5.418a.75.75 0 0 1 1.056 1.056l-.052.056L9.06 8l1.47 1.47.052.056a.75.75 0 0 1-1.056 1.056l-.056-.052L8 9.06l-1.47 1.47a.75.75 0 1 1-1.06-1.06L6.94 8 5.47 6.53l-.052-.056a.75.75 0 0 1 1.056-1.056l.056.052L8 6.94l1.47-1.47.056-.052Z" }) }));
|
|
6
6
|
exports.default = CrossSmOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const DislikeOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M12.463 1.25c.214 0 .476.088.65.32l.068.107.246.475c.366.727 1.03 2.13 1.444 3.51.269.897.471 1.904.329 2.73-.074.43-.254.874-.626 1.208-.38.339-.868.483-1.404.483h-3.073c.157.778.292 1.62.281 2.345-.007.506-.085 1.067-.369 1.521-.321.515-.848.801-1.506.801-.382 0-.742-.099-1.045-.33a1.895 1.895 0 0 1-.587-.796 4.898 4.898 0 0 1-.254-.875c-.059-.276-.122-.638-.182-.936-.023-.117-.101-.256-.302-.44-.209-.193-.476-.368-.81-.59-.306-.202-.686-.454-.982-.762-.31-.324-.587-.769-.588-1.354V2a.75.75 0 0 1 .75-.75h7.96ZM.753 8.667V2a.75.75 0 1 1 1.5 0v6.667a.75.75 0 0 1-1.5 0Zm4.506.057c.014.062.054.142.164.256.163.17.4.335.728.552.298.198.682.445.998.736.324.297.647.702.757 1.252.074.369.118.632.178.918.057.27.11.464.17.605.057.137.1.175.11.183.004.003.01.007.025.011a.4.4 0 0 0 .114.013c.176 0 .204-.047.234-.095.067-.108.135-.34.141-.75.013-.811-.213-1.887-.44-2.909a.75.75 0 0 1 .732-.913h4c.266 0 .366-.068.404-.102.044-.04.11-.13.147-.343.08-.462-.03-1.183-.288-2.045-.395-1.318-1.052-2.688-1.385-3.343H5.253v5.917l.006.057Z" }) }));
|
|
5
|
+
const DislikeOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M12.463 1.25c.214 0 .476.088.65.32l.068.107.246.475c.366.727 1.03 2.13 1.444 3.51.269.897.471 1.904.329 2.73-.074.43-.254.874-.626 1.208-.38.339-.868.483-1.404.483h-3.073c.157.778.292 1.62.281 2.345-.007.506-.085 1.067-.369 1.521-.321.515-.848.801-1.506.801-.382 0-.742-.099-1.045-.33a1.895 1.895 0 0 1-.587-.796 4.898 4.898 0 0 1-.254-.875c-.059-.276-.122-.638-.182-.936-.023-.117-.101-.256-.302-.44-.209-.193-.476-.368-.81-.59-.306-.202-.686-.454-.982-.762-.31-.324-.587-.769-.588-1.354V2a.75.75 0 0 1 .75-.75h7.96ZM.753 8.667V2a.75.75 0 1 1 1.5 0v6.667a.75.75 0 0 1-1.5 0Zm4.506.057c.014.062.054.142.164.256.163.17.4.335.728.552.298.198.682.445.998.736.324.297.647.702.757 1.252.074.369.118.632.178.918.057.27.11.464.17.605.057.137.1.175.11.183.004.003.01.007.025.011a.4.4 0 0 0 .114.013c.176 0 .204-.047.234-.095.067-.108.135-.34.141-.75.013-.811-.213-1.887-.44-2.909a.75.75 0 0 1 .732-.913h4c.266 0 .366-.068.404-.102.044-.04.11-.13.147-.343.08-.462-.03-1.183-.288-2.045-.395-1.318-1.052-2.688-1.385-3.343H5.253v5.917l.006.057Z" }) }));
|
|
6
6
|
exports.default = DislikeOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const DocumentOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M9.514 1.251a.75.75 0 0 1 .129.013l.013.003c.039.008.077.02.114.034l.043.02a.749.749 0 0 1 .078.041l.036.023a.752.752 0 0 1 .103.085l3 3a.752.752 0 0 1 .084.102l.023.036c.015.026.03.051.042.078l.02.043a.746.746 0 0 1 .049.256L13.25 5v7.667c0 1.15-.933 2.083-2.083 2.083H4.833a2.083 2.083 0 0 1-2.083-2.083V3.333c0-1.15.933-2.083 2.083-2.083H9.5l.014.001ZM4.833 2.75a.583.583 0 0 0-.583.583v9.334c0 .322.261.583.583.583h6.334a.583.583 0 0 0 .583-.583V5.75H9.5A.75.75 0 0 1 8.75 5V2.75H4.833Z" }) }));
|
|
5
|
+
const DocumentOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsx)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M9.514 1.251a.75.75 0 0 1 .129.013l.013.003c.039.008.077.02.114.034l.043.02a.749.749 0 0 1 .078.041l.036.023a.752.752 0 0 1 .103.085l3 3a.752.752 0 0 1 .084.102l.023.036c.015.026.03.051.042.078l.02.043a.746.746 0 0 1 .049.256L13.25 5v7.667c0 1.15-.933 2.083-2.083 2.083H4.833a2.083 2.083 0 0 1-2.083-2.083V3.333c0-1.15.933-2.083 2.083-2.083H9.5l.014.001ZM4.833 2.75a.583.583 0 0 0-.583.583v9.334c0 .322.261.583.583.583h6.334a.583.583 0 0 0 .583-.583V5.75H9.5A.75.75 0 0 1 8.75 5V2.75H4.833Z" }) }));
|
|
6
6
|
exports.default = DocumentOutlineSm;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
5
|
-
const DocumentsOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M11.014 1.251a.75.75 0 0 1 .129.013l.013.003a.75.75 0 0 1 .114.034l.043.02a.75.75 0 0 1 .078.041l.036.023a.757.757 0 0 1 .103.085l3 3a.752.752 0 0 1 .084.102l.023.036c.015.026.03.051.042.078l.02.043a.746.746 0 0 1 .049.256L14.75 5v7.667c0 1.15-.933 2.083-2.083 2.083H6.333a2.083 2.083 0 0 1-2.083-2.083V3.333c0-1.15.933-2.083 2.083-2.083H11l.014.001ZM6.333 2.75a.583.583 0 0 0-.583.583v9.334c0 .322.261.583.583.583h6.334a.583.583 0 0 0 .583-.583V5.75H11a.75.75 0 0 1-.75-.75V2.75H6.333Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M2 2.004a.75.75 0 0 1 .75.75v10.492a.75.75 0 0 1-1.5 0V2.754a.75.75 0 0 1 .75-.75Z" })] }));
|
|
5
|
+
const DocumentsOutlineSm = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { size: "sm", viewBox: "0 0 16 16", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M11.014 1.251a.75.75 0 0 1 .129.013l.013.003a.75.75 0 0 1 .114.034l.043.02a.75.75 0 0 1 .078.041l.036.023a.757.757 0 0 1 .103.085l3 3a.752.752 0 0 1 .084.102l.023.036c.015.026.03.051.042.078l.02.043a.746.746 0 0 1 .049.256L14.75 5v7.667c0 1.15-.933 2.083-2.083 2.083H6.333a2.083 2.083 0 0 1-2.083-2.083V3.333c0-1.15.933-2.083 2.083-2.083H11l.014.001ZM6.333 2.75a.583.583 0 0 0-.583.583v9.334c0 .322.261.583.583.583h6.334a.583.583 0 0 0 .583-.583V5.75H11a.75.75 0 0 1-.75-.75V2.75H6.333Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M2 2.004a.75.75 0 0 1 .75.75v10.492a.75.75 0 0 1-1.5 0V2.754a.75.75 0 0 1 .75-.75Z" })] }));
|
|
6
6
|
exports.default = DocumentsOutlineSm;
|