@mailstep/design-system 0.8.30 → 0.8.31-beta.2
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/package.json +25 -18
- package/ui/Blocks/CommonGrid/CommonGrid.d.ts +4 -3
- package/ui/Blocks/CommonGrid/CommonGrid.js +63 -106
- package/ui/Blocks/CommonGrid/CommonGridContainer.d.ts +3 -2
- package/ui/Blocks/CommonGrid/CommonGridContainer.js +84 -188
- package/ui/Blocks/CommonGrid/HoC/withProps.d.ts +2 -1
- package/ui/Blocks/CommonGrid/HoC/withProps.js +20 -10
- package/ui/Blocks/CommonGrid/HoC/withReduxActions.d.ts +1 -1
- package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +40 -31
- package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.js +49 -108
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.js +17 -38
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.js +50 -80
- package/ui/Blocks/CommonGrid/components/ActionHead/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/ActionHead/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.d.ts +2 -2
- package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.js +31 -44
- package/ui/Blocks/CommonGrid/components/ButtonMore/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/ButtonMore/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/ColumnFilterCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/ColumnFilterCell.js +39 -52
- package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +57 -131
- package/ui/Blocks/CommonGrid/components/ColumnTitle/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/ColumnTitle/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/ColumnTitle.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/ColumnTitle.js +30 -39
- package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.d.ts +3 -3
- package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +53 -159
- package/ui/Blocks/CommonGrid/components/ControlButtons/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/ControlButtons/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/ControlButtons/styles.d.ts +5 -4
- package/ui/Blocks/CommonGrid/components/ControlButtons/styles.js +12 -42
- package/ui/Blocks/CommonGrid/components/DataCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/DataCell.js +50 -35
- package/ui/Blocks/CommonGrid/components/DataRow.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/DataRow.js +51 -61
- package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.d.ts +4 -3
- package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.js +33 -68
- package/ui/Blocks/CommonGrid/components/DropdownButton/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/DropdownButton/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.d.ts +4 -3
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.js +65 -58
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/FilterDropdown.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/FilterDropdown.js +35 -31
- package/ui/Blocks/CommonGrid/components/FilterRow.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/FilterRow.js +11 -29
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.js +13 -33
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.js +24 -36
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.d.ts +4 -3
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.js +110 -151
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/getCleanValues.js +9 -8
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.js +31 -15
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/sameDate.js +3 -4
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.d.ts +4 -3
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.js +113 -94
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.js +2 -5
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.js +108 -144
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/types.d.ts +1 -0
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.js +95 -163
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/types.d.ts +1 -0
- package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.d.ts +5 -4
- package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.js +35 -80
- package/ui/Blocks/CommonGrid/components/FloatingButton/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/FloatingButton/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/GridInfo/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/GridInfo/index.js +9 -33
- package/ui/Blocks/CommonGrid/components/GridModals/index.d.ts +4 -3
- package/ui/Blocks/CommonGrid/components/GridModals/index.js +27 -135
- package/ui/Blocks/CommonGrid/components/GridStatus/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/GridStatus/index.js +8 -26
- package/ui/Blocks/CommonGrid/components/GroupRow.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/GroupRow.js +23 -27
- package/ui/Blocks/CommonGrid/components/HeadCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/HeadCell.js +28 -36
- package/ui/Blocks/CommonGrid/components/HeadRow.d.ts +4 -3
- package/ui/Blocks/CommonGrid/components/HeadRow.js +53 -71
- package/ui/Blocks/CommonGrid/components/IconList/IconList.d.ts +7 -6
- package/ui/Blocks/CommonGrid/components/IconList/IconList.js +30 -62
- package/ui/Blocks/CommonGrid/components/IconList/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/IconList/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.d.ts +4 -4
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +25 -54
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.d.ts +3 -3
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.js +40 -69
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.d.ts +3 -3
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.js +16 -17
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.js +10 -9
- package/ui/Blocks/CommonGrid/components/MobileFilterModal.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/MobileFilterModal.js +68 -112
- package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.d.ts +1 -1
- package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.js +7 -14
- package/ui/Blocks/CommonGrid/components/MobileSortModal.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/MobileSortModal.js +32 -68
- package/ui/Blocks/CommonGrid/components/OversizedScroll.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/OversizedScroll.js +18 -35
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.d.ts +1 -1
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.js +7 -19
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +31 -91
- package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.js +20 -30
- package/ui/Blocks/CommonGrid/components/QuickFilter/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/QuickFilter/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/Resize.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/Resize.js +32 -47
- package/ui/Blocks/CommonGrid/components/Table.d.ts +36 -36
- package/ui/Blocks/CommonGrid/components/Table.js +15 -41
- package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +40 -64
- package/ui/Blocks/CommonGrid/components/TablePagination/index.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/TablePagination/index.js +2 -5
- package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +17 -18
- package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +15 -12
- package/ui/Blocks/CommonGrid/components/gridCells/Date.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/Date.js +7 -10
- package/ui/Blocks/CommonGrid/components/gridCells/DateTime.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +12 -12
- package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +32 -29
- package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +16 -50
- package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +8 -33
- package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +22 -30
- package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.d.ts +1 -1
- package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +8 -9
- package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.d.ts +5 -4
- package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +22 -40
- package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +54 -78
- package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +6 -9
- package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +15 -11
- package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +31 -32
- package/ui/Blocks/CommonGrid/components/gridCells/index.js +14 -15
- package/ui/Blocks/CommonGrid/components/icons/Edit.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/icons/Edit.js +14 -14
- package/ui/Blocks/CommonGrid/components/icons/EyeOpen.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +14 -14
- package/ui/Blocks/CommonGrid/components/icons/Sorting.d.ts +2 -1
- package/ui/Blocks/CommonGrid/components/icons/Sorting.js +14 -21
- package/ui/Blocks/CommonGrid/components/utils.d.ts +1 -0
- package/ui/Blocks/CommonGrid/components/utils.js +21 -20
- package/ui/Blocks/CommonGrid/hooks/useAddFilter.d.ts +3 -2
- package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +13 -16
- package/ui/Blocks/CommonGrid/hooks/useColumnSizes.d.ts +3 -2
- package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +82 -86
- package/ui/Blocks/CommonGrid/hooks/useCreatePreset.d.ts +1 -0
- package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +33 -31
- package/ui/Blocks/CommonGrid/hooks/useDeletePreset.d.ts +1 -0
- package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +28 -23
- package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.d.ts +2 -1
- package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +71 -57
- package/ui/Blocks/CommonGrid/hooks/useEvent.d.ts +1 -1
- package/ui/Blocks/CommonGrid/hooks/useEvent.js +16 -12
- package/ui/Blocks/CommonGrid/hooks/useFloatingButton.d.ts +1 -0
- package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +12 -15
- package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.d.ts +2 -1
- package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +24 -26
- package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.d.ts +1 -0
- package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.js +16 -12
- package/ui/Blocks/CommonGrid/hooks/useManageColumn.d.ts +3 -2
- package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +109 -98
- package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.d.ts +3 -2
- package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +75 -56
- package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +12 -15
- package/ui/Blocks/CommonGrid/hooks/useQuickFilter.d.ts +3 -2
- package/ui/Blocks/CommonGrid/hooks/useQuickFilter.js +82 -77
- package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.d.ts +3 -2
- package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +21 -20
- package/ui/Blocks/CommonGrid/hooks/useSelectPreset.d.ts +1 -0
- package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +28 -20
- package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.d.ts +3 -2
- package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +14 -18
- package/ui/Blocks/CommonGrid/hooks/useUxReset.d.ts +2 -1
- package/ui/Blocks/CommonGrid/hooks/useUxReset.js +14 -13
- package/ui/Blocks/CommonGrid/index.d.ts +7 -6
- package/ui/Blocks/CommonGrid/index.js +10 -26
- package/ui/Blocks/CommonGrid/store/index.d.ts +16 -15
- package/ui/Blocks/CommonGrid/store/index.js +260 -288
- package/ui/Blocks/CommonGrid/store/migrateState.d.ts +1 -0
- package/ui/Blocks/CommonGrid/store/migrateState.js +13 -12
- package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.d.ts +3 -2
- package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.js +12 -18
- package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.d.ts +3 -2
- package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.js +13 -19
- package/ui/Blocks/CommonGrid/storybook/stories/complexWithPaginationAndRedux.stories.js +103 -0
- package/ui/Blocks/CommonGrid/storybook/stories/default.stories.js +15 -0
- package/ui/Blocks/CommonGrid/storybook/stories/gridStates.stories.js +12 -0
- package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNoScrollLayout.stories.js +12 -0
- package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNormalLayout.stories.js +12 -0
- package/ui/Blocks/CommonGrid/storybook/stories/styledCommonGrid.stories.js +15 -0
- package/ui/Blocks/CommonGrid/storybook/stories/withCustomGridActions.stories.js +15 -0
- package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.d.ts +1 -0
- package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.js +25 -0
- package/ui/Blocks/CommonGrid/storybook/stories/withQuickFilter.stories.js +18 -0
- package/ui/Blocks/CommonGrid/storybook/utils/actions.js +6 -9
- package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.d.ts +2 -1
- package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +125 -122
- package/ui/Blocks/CommonGrid/storybook/utils/utils.d.ts +3 -2
- package/ui/Blocks/CommonGrid/storybook/utils/utils.js +87 -108
- package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +13 -13
- package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +4 -7
- package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +2 -4
- package/ui/Blocks/CommonGrid/styles.d.ts +10 -9
- package/ui/Blocks/CommonGrid/styles.js +35 -253
- package/ui/Blocks/CommonGrid/types.d.ts +2 -1
- package/ui/Blocks/CommonGrid/types.js +13 -22
- package/ui/Blocks/CommonGrid/utils/constants.js +10 -25
- package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.d.ts +2 -1
- package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.js +23 -17
- package/ui/Blocks/CommonGrid/utils/getRowsPerPage.js +9 -9
- package/ui/Blocks/CommonGrid/utils/hasSortTerminated.js +9 -9
- package/ui/Blocks/CommonGrid/utils/index.d.ts +3 -2
- package/ui/Blocks/CommonGrid/utils/index.js +96 -69
- package/ui/Blocks/CornerDialog/CornerDialog.d.ts +3 -2
- package/ui/Blocks/CornerDialog/CornerDialog.js +17 -42
- package/ui/Blocks/CornerDialog/index.d.ts +1 -0
- package/ui/Blocks/CornerDialog/index.js +2 -5
- package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.d.ts +2 -1
- package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.js +54 -0
- package/ui/Blocks/CornerDialog/styles.d.ts +6 -6
- package/ui/Blocks/CornerDialog/styles.js +21 -57
- package/ui/Blocks/CornerDialog/types.d.ts +2 -1
- package/ui/Blocks/CornerDialog/utils.d.ts +1 -0
- package/ui/Blocks/CornerDialog/utils.js +10 -29
- package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.d.ts +3 -2
- package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.js +6 -15
- package/ui/Blocks/Header/components/MenuItems/index.d.ts +3 -2
- package/ui/Blocks/Header/components/MenuItems/index.js +6 -8
- package/ui/Blocks/Header/components/MenuItems/styles.d.ts +3 -3
- package/ui/Blocks/Header/components/MenuItems/styles.js +11 -22
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.d.ts +2 -1
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.js +7 -22
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.d.ts +2 -2
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.js +8 -14
- package/ui/Blocks/Header/components/UserMenu/hooks/index.js +1 -2
- package/ui/Blocks/Header/components/UserMenu/hooks/useLogout.js +9 -9
- package/ui/Blocks/Header/components/UserMenu/index.d.ts +3 -2
- package/ui/Blocks/Header/components/UserMenu/index.js +17 -48
- package/ui/Blocks/Header/components/UserMenu/styles.d.ts +3 -3
- package/ui/Blocks/Header/components/UserMenu/styles.js +9 -25
- package/ui/Blocks/Header/hooks/useChangeLanguage.js +8 -8
- package/ui/Blocks/Header/index.d.ts +6 -5
- package/ui/Blocks/Header/index.js +14 -44
- package/ui/Blocks/Header/stories/Header.stories.d.ts +18 -17
- package/ui/Blocks/Header/stories/Header.stories.js +44 -0
- package/ui/Blocks/Header/styles.d.ts +4 -4
- package/ui/Blocks/Header/styles.js +11 -34
- package/ui/Blocks/Header/utils/constants.js +1 -4
- package/ui/Blocks/Header/utils/languageItems.d.ts +2 -1
- package/ui/Blocks/Header/utils/languageItems.js +15 -15
- package/ui/Blocks/HidePrint/HidePrint.d.ts +2 -1
- package/ui/Blocks/HidePrint/HidePrint.js +13 -13
- package/ui/Blocks/ImageList/ImageList.d.ts +3 -2
- package/ui/Blocks/ImageList/ImageList.js +33 -79
- package/ui/Blocks/ImageList/components/AddPhoto/index.d.ts +3 -2
- package/ui/Blocks/ImageList/components/AddPhoto/index.js +67 -35
- package/ui/Blocks/ImageList/components/AddPhoto/styles.d.ts +4 -4
- package/ui/Blocks/ImageList/components/AddPhoto/styles.js +14 -30
- package/ui/Blocks/ImageList/components/CloseButton/index.d.ts +2 -1
- package/ui/Blocks/ImageList/components/CloseButton/index.js +6 -17
- package/ui/Blocks/ImageList/components/CloseButton/styles.d.ts +2 -2
- package/ui/Blocks/ImageList/components/CloseButton/styles.js +10 -18
- package/ui/Blocks/ImageList/components/ImageElement/index.d.ts +2 -1
- package/ui/Blocks/ImageList/components/ImageElement/index.js +9 -28
- package/ui/Blocks/ImageList/components/ImageElement/styles.d.ts +4 -4
- package/ui/Blocks/ImageList/components/ImageElement/styles.js +25 -22
- package/ui/Blocks/ImageList/components/ImageTag/index.d.ts +2 -1
- package/ui/Blocks/ImageList/components/ImageTag/index.js +8 -14
- package/ui/Blocks/ImageList/components/ImageTag/styles.d.ts +1 -1
- package/ui/Blocks/ImageList/components/ImageTag/styles.js +7 -9
- package/ui/Blocks/ImageList/hooks/useControls.js +14 -13
- package/ui/Blocks/ImageList/hooks/useOnElementClick.d.ts +2 -1
- package/ui/Blocks/ImageList/hooks/useOnElementClick.js +19 -14
- package/ui/Blocks/ImageList/index.d.ts +2 -1
- package/ui/Blocks/ImageList/index.js +2 -5
- package/ui/Blocks/ImageList/stories/ImageList.stories.d.ts +2 -1
- package/ui/Blocks/ImageList/stories/ImageList.stories.js +63 -0
- package/ui/Blocks/ImageList/styles.d.ts +4 -4
- package/ui/Blocks/ImageList/styles.js +20 -29
- package/ui/Blocks/ImageList/types.d.ts +2 -1
- package/ui/Blocks/LanguageSwitch/LanguageSwitch.d.ts +3 -2
- package/ui/Blocks/LanguageSwitch/LanguageSwitch.js +38 -51
- package/ui/Blocks/LanguageSwitch/index.d.ts +2 -1
- package/ui/Blocks/LanguageSwitch/index.js +2 -5
- package/ui/Blocks/LanguageSwitch/stories/LanguageSwith.stories.d.ts +2 -1
- package/ui/Blocks/LanguageSwitch/stories/LanguageSwith.stories.js +31 -0
- package/ui/Blocks/LanguageSwitch/styles.d.ts +5 -5
- package/ui/Blocks/LanguageSwitch/styles.js +15 -32
- package/ui/Blocks/LanguageSwitch/types.d.ts +1 -0
- package/ui/Blocks/LightBox/LightBox.d.ts +3 -2
- package/ui/Blocks/LightBox/LightBox.js +13 -40
- package/ui/Blocks/LightBox/hooks/useLightBox.d.ts +2 -1
- package/ui/Blocks/LightBox/hooks/useLightBox.js +16 -16
- package/ui/Blocks/LightBox/index.d.ts +1 -0
- package/ui/Blocks/LightBox/index.js +3 -6
- package/ui/Blocks/LightBox/stories/LightBox.stories.d.ts +2 -1
- package/ui/Blocks/LightBox/stories/LightBox.stories.js +21 -0
- package/ui/Blocks/LightBox/styles.d.ts +4 -4
- package/ui/Blocks/LightBox/styles.js +10 -28
- package/ui/Blocks/LoginPage/LoginPage.d.ts +3 -2
- package/ui/Blocks/LoginPage/LoginPage.js +14 -62
- package/ui/Blocks/LoginPage/components/LoginForm.d.ts +1 -0
- package/ui/Blocks/LoginPage/components/LoginForm.js +62 -169
- package/ui/Blocks/LoginPage/components/SocialLinks.d.ts +5 -4
- package/ui/Blocks/LoginPage/components/SocialLinks.js +16 -81
- package/ui/Blocks/LoginPage/index.d.ts +2 -1
- package/ui/Blocks/LoginPage/index.js +2 -5
- package/ui/Blocks/LoginPage/stories/LoginPage.stories.js +113 -0
- package/ui/Blocks/LoginPage/styles.d.ts +9 -9
- package/ui/Blocks/LoginPage/styles.js +21 -75
- package/ui/Blocks/LoginPage/types.d.ts +5 -4
- package/ui/Blocks/LoginPage/utils/links.js +7 -10
- package/ui/Blocks/Modal/Modal.d.ts +3 -2
- package/ui/Blocks/Modal/Modal.js +35 -124
- package/ui/Blocks/Modal/hooks/useClickOutside.d.ts +3 -2
- package/ui/Blocks/Modal/hooks/useClickOutside.js +29 -27
- package/ui/Blocks/Modal/hooks/useModal.d.ts +1 -0
- package/ui/Blocks/Modal/hooks/useModal.js +14 -19
- package/ui/Blocks/Modal/index.d.ts +1 -0
- package/ui/Blocks/Modal/index.js +4 -7
- package/ui/Blocks/Modal/stories/Modal.stories.d.ts +2 -1
- package/ui/Blocks/Modal/stories/Modal.stories.js +168 -0
- package/ui/Blocks/Modal/styles.d.ts +16 -15
- package/ui/Blocks/Modal/styles.js +82 -183
- package/ui/Blocks/Modal/types.d.ts +2 -1
- package/ui/Blocks/Modal/utils.d.ts +1 -0
- package/ui/Blocks/Modal/utils.js +6 -9
- package/ui/Blocks/Popover/index.d.ts +4 -3
- package/ui/Blocks/Popover/index.js +20 -31
- package/ui/Blocks/Scheduler/Scheduler.d.ts +3 -2
- package/ui/Blocks/Scheduler/Scheduler.js +26 -43
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.d.ts +3 -2
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.js +45 -37
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.d.ts +3 -3
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.js +16 -35
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/hooks/useCurrentTime.js +16 -16
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.d.ts +2 -1
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.js +8 -13
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.d.ts +3 -3
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.js +13 -30
- package/ui/Blocks/Scheduler/components/DateChanger/index.d.ts +3 -2
- package/ui/Blocks/Scheduler/components/DateChanger/index.js +18 -49
- package/ui/Blocks/Scheduler/components/DateChanger/styles.d.ts +2 -2
- package/ui/Blocks/Scheduler/components/DateChanger/styles.js +11 -23
- package/ui/Blocks/Scheduler/components/Groups/index.d.ts +3 -2
- package/ui/Blocks/Scheduler/components/Groups/index.js +5 -10
- package/ui/Blocks/Scheduler/components/Groups/styles.d.ts +4 -4
- package/ui/Blocks/Scheduler/components/Groups/styles.js +13 -32
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.d.ts +2 -1
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.js +46 -45
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.d.ts +1 -0
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.js +15 -15
- package/ui/Blocks/Scheduler/components/TimeSlots/index.d.ts +3 -2
- package/ui/Blocks/Scheduler/components/TimeSlots/index.js +20 -47
- package/ui/Blocks/Scheduler/components/TimeSlots/styles.d.ts +5 -5
- package/ui/Blocks/Scheduler/components/TimeSlots/styles.js +23 -52
- package/ui/Blocks/Scheduler/hooks/useChangeDate.d.ts +3 -2
- package/ui/Blocks/Scheduler/hooks/useChangeDate.js +33 -34
- package/ui/Blocks/Scheduler/index.js +1 -2
- package/ui/Blocks/Scheduler/stories/Scheduler.stories.d.ts +2 -1
- package/ui/Blocks/Scheduler/stories/Scheduler.stories.js +114 -0
- package/ui/Blocks/Scheduler/styles.d.ts +2 -2
- package/ui/Blocks/Scheduler/styles.js +8 -23
- package/ui/Blocks/Scheduler/types.d.ts +2 -1
- package/ui/Blocks/Scheduler/utils/constants.js +6 -9
- package/ui/Blocks/Scheduler/utils/convertDateToTime.js +4 -5
- package/ui/Blocks/Scheduler/utils/convertIndexToISOString.js +7 -10
- package/ui/Blocks/Scheduler/utils/convertMinutesToDuration.js +10 -9
- package/ui/Blocks/Scheduler/utils/formatDate.js +4 -8
- package/ui/Blocks/Scheduler/utils/generateTimeArray.js +15 -18
- package/ui/Blocks/Scheduler/utils/getClosestStep.js +8 -11
- package/ui/Blocks/Scheduler/utils/getMinutesFromString.js +3 -6
- package/ui/Blocks/Scheduler/utils/getMinutesFromTime.js +3 -6
- package/ui/Blocks/Scheduler/utils/isActiveTime.d.ts +1 -0
- package/ui/Blocks/Scheduler/utils/isActiveTime.js +9 -10
- package/ui/Blocks/Scheduler/utils/isToday.js +3 -6
- package/ui/Blocks/SideMenu/MenuItem.d.ts +3 -2
- package/ui/Blocks/SideMenu/MenuItem.js +53 -102
- package/ui/Blocks/SideMenu/SideMenu.d.ts +3 -2
- package/ui/Blocks/SideMenu/SideMenu.js +26 -36
- package/ui/Blocks/SideMenu/components/Footer.d.ts +5 -4
- package/ui/Blocks/SideMenu/components/Footer.js +27 -63
- package/ui/Blocks/SideMenu/components/HamburgerMenu.js +22 -51
- package/ui/Blocks/SideMenu/components/SubitemTooltip.d.ts +3 -2
- package/ui/Blocks/SideMenu/components/SubitemTooltip.js +40 -51
- package/ui/Blocks/SideMenu/context/LeftMenuContext.d.ts +2 -1
- package/ui/Blocks/SideMenu/context/LeftMenuContext.js +14 -19
- package/ui/Blocks/SideMenu/context/useLeftMenuContext.js +7 -9
- package/ui/Blocks/SideMenu/hooks/useOutsideHover.d.ts +1 -0
- package/ui/Blocks/SideMenu/hooks/useOutsideHover.js +22 -24
- package/ui/Blocks/SideMenu/index.d.ts +2 -1
- package/ui/Blocks/SideMenu/index.js +5 -7
- package/ui/Blocks/SideMenu/stories/SideMenu.stories.d.ts +2 -1
- package/ui/Blocks/SideMenu/stories/SideMenu.stories.js +23 -0
- package/ui/Blocks/SideMenu/stories/menuItems.js +101 -108
- package/ui/Blocks/SideMenu/styles.d.ts +38 -37
- package/ui/Blocks/SideMenu/styles.js +162 -310
- package/ui/Blocks/SideMenu/types.d.ts +2 -1
- package/ui/Blocks/SideMenu/utils/constants.js +2 -5
- package/ui/Blocks/Stepper/Stepper.d.ts +3 -2
- package/ui/Blocks/Stepper/Stepper.js +20 -33
- package/ui/Blocks/Stepper/components/StepCircle/index.d.ts +2 -1
- package/ui/Blocks/Stepper/components/StepCircle/index.js +6 -16
- package/ui/Blocks/Stepper/components/StepCircle/styles.d.ts +3 -3
- package/ui/Blocks/Stepper/components/StepCircle/styles.js +19 -23
- package/ui/Blocks/Stepper/components/StepItem/index.d.ts +2 -1
- package/ui/Blocks/Stepper/components/StepItem/index.js +12 -51
- package/ui/Blocks/Stepper/components/StepItem/styles.d.ts +6 -6
- package/ui/Blocks/Stepper/components/StepItem/styles.js +36 -79
- package/ui/Blocks/Stepper/hooks/useStepper.js +21 -32
- package/ui/Blocks/Stepper/index.js +3 -4
- package/ui/Blocks/Stepper/stories/Stepper.stories.d.ts +2 -1
- package/ui/Blocks/Stepper/stories/Stepper.stories.js +86 -0
- package/ui/Blocks/Stepper/styles.d.ts +2 -2
- package/ui/Blocks/Stepper/styles.js +14 -25
- package/ui/Blocks/Stepper/types.d.ts +2 -1
- package/ui/Blocks/Table/Table.d.ts +1 -0
- package/ui/Blocks/Table/Table.js +5 -12
- package/ui/Blocks/Table/index.js +1 -2
- package/ui/Blocks/Table/stories/Table.stories.d.ts +5 -4
- package/ui/Blocks/Table/stories/Table.stories.js +20 -0
- package/ui/Blocks/Tabs/TabContent.d.ts +3 -2
- package/ui/Blocks/Tabs/TabContent.js +6 -9
- package/ui/Blocks/Tabs/Tabs.d.ts +3 -2
- package/ui/Blocks/Tabs/Tabs.js +18 -44
- package/ui/Blocks/Tabs/hooks/useTabs.d.ts +1 -0
- package/ui/Blocks/Tabs/hooks/useTabs.js +9 -13
- package/ui/Blocks/Tabs/index.d.ts +1 -0
- package/ui/Blocks/Tabs/index.js +4 -7
- package/ui/Blocks/Tabs/stories/Tabs.stories.d.ts +2 -1
- package/ui/Blocks/Tabs/stories/Tabs.stories.js +44 -0
- package/ui/Blocks/Tabs/styles.d.ts +10 -9
- package/ui/Blocks/Tabs/styles.js +36 -95
- package/ui/Blocks/Tabs/types.d.ts +2 -1
- package/ui/Elements/Alert/Alert.d.ts +1 -0
- package/ui/Elements/Alert/Alert.js +28 -72
- package/ui/Elements/Alert/index.d.ts +2 -1
- package/ui/Elements/Alert/index.js +3 -5
- package/ui/Elements/Alert/stories/Alert.stories.d.ts +3 -2
- package/ui/Elements/Alert/stories/Alert.stories.js +73 -0
- package/ui/Elements/Alert/styles.d.ts +24 -23
- package/ui/Elements/Alert/styles.js +32 -82
- package/ui/Elements/Alert/types.d.ts +2 -1
- package/ui/Elements/AsyncSelect/AsyncSelect.d.ts +5 -4
- package/ui/Elements/AsyncSelect/AsyncSelect.js +33 -34
- package/ui/Elements/AsyncSelect/index.d.ts +2 -1
- package/ui/Elements/AsyncSelect/index.js +2 -5
- package/ui/Elements/AsyncSelect/stories/AsyncSelect.stories.d.ts +2 -1
- package/ui/Elements/AsyncSelect/stories/AsyncSelect.stories.js +89 -0
- package/ui/Elements/Avatar/Avatar.d.ts +3 -2
- package/ui/Elements/Avatar/Avatar.js +35 -37
- package/ui/Elements/Avatar/index.d.ts +1 -0
- package/ui/Elements/Avatar/index.js +3 -5
- package/ui/Elements/Avatar/stories/Avatar.stories.d.ts +3 -2
- package/ui/Elements/Avatar/stories/Avatar.stories.js +20 -0
- package/ui/Elements/Badge/Badge.d.ts +2 -1
- package/ui/Elements/Badge/Badge.js +44 -51
- package/ui/Elements/Badge/index.d.ts +2 -1
- package/ui/Elements/Badge/index.js +3 -5
- package/ui/Elements/Badge/stories/Badge.stories.d.ts +3 -2
- package/ui/Elements/Badge/stories/Badge.stories.js +34 -0
- package/ui/Elements/BarChartSymbol/BarChartSymbol.d.ts +1 -0
- package/ui/Elements/BarChartSymbol/BarChartSymbol.js +6 -21
- package/ui/Elements/BarChartSymbol/index.js +1 -2
- package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.d.ts +3 -2
- package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.js +26 -0
- package/ui/Elements/BarChartSymbol/styles.d.ts +3 -3
- package/ui/Elements/BarChartSymbol/styles.js +16 -10
- package/ui/Elements/BorderedBox/BorderedBox.d.ts +3 -2
- package/ui/Elements/BorderedBox/BorderedBox.js +35 -21
- package/ui/Elements/BorderedBox/index.d.ts +2 -1
- package/ui/Elements/BorderedBox/index.js +3 -5
- package/ui/Elements/BorderedBox/stories/BorderedBox.stories.d.ts +3 -2
- package/ui/Elements/BorderedBox/stories/BorderedBox.stories.js +13 -0
- package/ui/Elements/BorderedBox/types.d.ts +1 -0
- package/ui/Elements/Button/Button.d.ts +3 -2
- package/ui/Elements/Button/Button.js +30 -44
- package/ui/Elements/Button/index.d.ts +2 -1
- package/ui/Elements/Button/index.js +3 -5
- package/ui/Elements/Button/stories/Button.stories.d.ts +3 -2
- package/ui/Elements/Button/stories/Button.stories.js +120 -0
- package/ui/Elements/Button/styles.d.ts +10 -9
- package/ui/Elements/Button/styles.js +44 -227
- package/ui/Elements/Button/types.d.ts +2 -1
- package/ui/Elements/Card/Card.d.ts +1 -0
- package/ui/Elements/Card/Card.js +6 -14
- package/ui/Elements/Card/index.d.ts +2 -1
- package/ui/Elements/Card/index.js +2 -5
- package/ui/Elements/Card/stories/Card.stories.d.ts +3 -2
- package/ui/Elements/Card/stories/Card.stories.js +34 -0
- package/ui/Elements/Card/styles.d.ts +4 -3
- package/ui/Elements/Card/styles.js +20 -22
- package/ui/Elements/Card/types.d.ts +1 -0
- package/ui/Elements/CheckedCircle/index.d.ts +2 -1
- package/ui/Elements/CheckedCircle/index.js +6 -14
- package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.d.ts +5 -4
- package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.js +27 -0
- package/ui/Elements/CheckedCircle/styles.d.ts +1 -1
- package/ui/Elements/CheckedCircle/styles.js +13 -15
- package/ui/Elements/DatePicker/DatePicker.d.ts +4 -8
- package/ui/Elements/DatePicker/DatePicker.js +65 -88
- package/ui/Elements/DatePicker/Datetime/DateTime.d.ts +4 -3
- package/ui/Elements/DatePicker/Datetime/DateTime.js +521 -426
- package/ui/Elements/DatePicker/Datetime/components/DateRepeater.d.ts +3 -2
- package/ui/Elements/DatePicker/Datetime/components/DateRepeater.js +30 -65
- package/ui/Elements/DatePicker/Datetime/components/FooterRow.d.ts +2 -2
- package/ui/Elements/DatePicker/Datetime/components/FooterRow.js +10 -12
- package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.d.ts +1 -1
- package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.js +7 -16
- package/ui/Elements/DatePicker/Datetime/components/TimeInput.d.ts +1 -1
- package/ui/Elements/DatePicker/Datetime/components/TimeInput.js +7 -16
- package/ui/Elements/DatePicker/Datetime/components/Timepicker.d.ts +2 -1
- package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +66 -163
- package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +15 -30
- package/ui/Elements/DatePicker/Datetime/types.d.ts +3 -2
- package/ui/Elements/DatePicker/Datetime/types.js +11 -14
- package/ui/Elements/DatePicker/Datetime/views/DaysView.d.ts +2 -1
- package/ui/Elements/DatePicker/Datetime/views/DaysView.js +145 -134
- package/ui/Elements/DatePicker/Datetime/views/MonthsView.d.ts +2 -1
- package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +106 -72
- package/ui/Elements/DatePicker/Datetime/views/YearsView.d.ts +2 -1
- package/ui/Elements/DatePicker/Datetime/views/YearsView.js +114 -83
- package/ui/Elements/DatePicker/index.d.ts +2 -1
- package/ui/Elements/DatePicker/index.js +3 -6
- package/ui/Elements/DatePicker/styles.d.ts +2 -1
- package/ui/Elements/DatePicker/styles.js +8 -234
- package/ui/Elements/DatePicker/utils/constants.d.ts +1 -0
- package/ui/Elements/DatePicker/utils/constants.js +12 -29
- package/ui/Elements/Dropdown/Dropdown.d.ts +3 -2
- package/ui/Elements/Dropdown/Dropdown.js +25 -54
- package/ui/Elements/Dropdown/index.d.ts +2 -1
- package/ui/Elements/Dropdown/index.js +3 -5
- package/ui/Elements/Dropdown/stories/Dropdown.stories.d.ts +3 -2
- package/ui/Elements/Dropdown/stories/Dropdown.stories.js +14 -0
- package/ui/Elements/Dropdown/types.d.ts +1 -0
- package/ui/Elements/DropdownMenu/DropdownMenu.d.ts +3 -2
- package/ui/Elements/DropdownMenu/DropdownMenu.js +35 -34
- package/ui/Elements/DropdownMenu/components/DefaultItem.d.ts +3 -2
- package/ui/Elements/DropdownMenu/components/DefaultItem.js +15 -31
- package/ui/Elements/DropdownMenu/components/MenuItem.d.ts +3 -2
- package/ui/Elements/DropdownMenu/components/MenuItem.js +49 -58
- package/ui/Elements/DropdownMenu/components/MenuList.d.ts +3 -2
- package/ui/Elements/DropdownMenu/components/MenuList.js +8 -14
- package/ui/Elements/DropdownMenu/index.js +1 -2
- package/ui/Elements/DropdownMenu/types.d.ts +2 -1
- package/ui/Elements/DropdownSelect/DropdownSelect.d.ts +4 -3
- package/ui/Elements/DropdownSelect/DropdownSelect.js +50 -127
- package/ui/Elements/DropdownSelect/index.d.ts +2 -1
- package/ui/Elements/DropdownSelect/index.js +3 -5
- package/ui/Elements/ErrorMessage/ErrorMessage.d.ts +3 -2
- package/ui/Elements/ErrorMessage/ErrorMessage.js +14 -63
- package/ui/Elements/ErrorMessage/index.d.ts +2 -1
- package/ui/Elements/ErrorMessage/index.js +3 -5
- package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.d.ts +3 -2
- package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.js +19 -0
- package/ui/Elements/ErrorMessage/types.d.ts +1 -0
- package/ui/Elements/HighlightBox/HighlightBox.d.ts +2 -1
- package/ui/Elements/HighlightBox/HighlightBox.js +62 -98
- package/ui/Elements/HighlightBox/index.d.ts +2 -1
- package/ui/Elements/HighlightBox/index.js +2 -5
- package/ui/Elements/Icon/BadgeIcon.d.ts +3 -2
- package/ui/Elements/Icon/BadgeIcon.js +47 -27
- package/ui/Elements/Icon/Icon.d.ts +5 -4
- package/ui/Elements/Icon/Icon.js +279 -280
- package/ui/Elements/Icon/icons/Add.d.ts +2 -1
- package/ui/Elements/Icon/icons/Add.js +13 -33
- package/ui/Elements/Icon/icons/AddPhoto.d.ts +1 -0
- package/ui/Elements/Icon/icons/AddPhoto.js +13 -34
- package/ui/Elements/Icon/icons/Admin.d.ts +1 -0
- package/ui/Elements/Icon/icons/Admin.js +13 -26
- package/ui/Elements/Icon/icons/ArrowDown.d.ts +2 -1
- package/ui/Elements/Icon/icons/ArrowDown.js +13 -18
- package/ui/Elements/Icon/icons/ArrowForward.d.ts +2 -1
- package/ui/Elements/Icon/icons/ArrowForward.js +13 -12
- package/ui/Elements/Icon/icons/ArrowUp.d.ts +2 -1
- package/ui/Elements/Icon/icons/ArrowUp.js +13 -18
- package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.d.ts +2 -1
- package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.js +13 -21
- package/ui/Elements/Icon/icons/ArrowsLeftRight.d.ts +2 -1
- package/ui/Elements/Icon/icons/ArrowsLeftRight.js +13 -12
- package/ui/Elements/Icon/icons/ArrowsUpDown.d.ts +2 -1
- package/ui/Elements/Icon/icons/ArrowsUpDown.js +13 -12
- package/ui/Elements/Icon/icons/BarcodeScan.d.ts +1 -0
- package/ui/Elements/Icon/icons/BarcodeScan.js +13 -13
- package/ui/Elements/Icon/icons/Box.d.ts +1 -0
- package/ui/Elements/Icon/icons/Box.js +13 -17
- package/ui/Elements/Icon/icons/Calendar.d.ts +1 -0
- package/ui/Elements/Icon/icons/Calendar.js +13 -39
- package/ui/Elements/Icon/icons/Cancel.d.ts +1 -0
- package/ui/Elements/Icon/icons/Cancel.js +13 -18
- package/ui/Elements/Icon/icons/CheckedBox.d.ts +2 -1
- package/ui/Elements/Icon/icons/CheckedBox.js +13 -23
- package/ui/Elements/Icon/icons/CircleHalfStroke.d.ts +2 -1
- package/ui/Elements/Icon/icons/CircleHalfStroke.js +13 -12
- package/ui/Elements/Icon/icons/Company.d.ts +1 -0
- package/ui/Elements/Icon/icons/Company.js +13 -82
- package/ui/Elements/Icon/icons/Complaint.d.ts +2 -1
- package/ui/Elements/Icon/icons/Complaint.js +13 -59
- package/ui/Elements/Icon/icons/Consolidation.d.ts +2 -1
- package/ui/Elements/Icon/icons/Consolidation.js +13 -13
- package/ui/Elements/Icon/icons/Container.d.ts +2 -1
- package/ui/Elements/Icon/icons/Container.js +13 -13
- package/ui/Elements/Icon/icons/Dashboard.d.ts +2 -1
- package/ui/Elements/Icon/icons/Dashboard.js +13 -36
- package/ui/Elements/Icon/icons/Desktop.d.ts +2 -1
- package/ui/Elements/Icon/icons/Desktop.js +13 -63
- package/ui/Elements/Icon/icons/Dispatch.d.ts +2 -1
- package/ui/Elements/Icon/icons/Dispatch.js +13 -13
- package/ui/Elements/Icon/icons/EmptyRack.d.ts +1 -0
- package/ui/Elements/Icon/icons/EmptyRack.js +2 -34
- package/ui/Elements/Icon/icons/Expeditions.d.ts +2 -1
- package/ui/Elements/Icon/icons/Expeditions.js +13 -62
- package/ui/Elements/Icon/icons/Filter.d.ts +3 -2
- package/ui/Elements/Icon/icons/Filter.js +13 -17
- package/ui/Elements/Icon/icons/FlagCZ.d.ts +2 -1
- package/ui/Elements/Icon/icons/FlagCZ.js +13 -55
- package/ui/Elements/Icon/icons/FlagEL.d.ts +2 -1
- package/ui/Elements/Icon/icons/FlagEL.js +13 -50
- package/ui/Elements/Icon/icons/FlagESP.d.ts +2 -1
- package/ui/Elements/Icon/icons/FlagESP.js +13 -93
- package/ui/Elements/Icon/icons/FlagHU.d.ts +3 -2
- package/ui/Elements/Icon/icons/FlagHU.js +13 -27
- package/ui/Elements/Icon/icons/FlagITA.d.ts +2 -1
- package/ui/Elements/Icon/icons/FlagITA.js +13 -55
- package/ui/Elements/Icon/icons/FlagNL.d.ts +3 -2
- package/ui/Elements/Icon/icons/FlagNL.js +13 -27
- package/ui/Elements/Icon/icons/FlagRUS.d.ts +2 -1
- package/ui/Elements/Icon/icons/FlagRUS.js +13 -55
- package/ui/Elements/Icon/icons/FlagSVK.d.ts +2 -1
- package/ui/Elements/Icon/icons/FlagSVK.js +13 -92
- package/ui/Elements/Icon/icons/FlagUK.d.ts +2 -1
- package/ui/Elements/Icon/icons/FlagUK.js +13 -20
- package/ui/Elements/Icon/icons/FlagUSA.d.ts +2 -1
- package/ui/Elements/Icon/icons/FlagUSA.js +13 -106
- package/ui/Elements/Icon/icons/Foldable.d.ts +3 -2
- package/ui/Elements/Icon/icons/Foldable.js +13 -34
- package/ui/Elements/Icon/icons/Fragile.d.ts +2 -1
- package/ui/Elements/Icon/icons/Fragile.js +13 -42
- package/ui/Elements/Icon/icons/Gift.d.ts +2 -1
- package/ui/Elements/Icon/icons/Gift.js +13 -41
- package/ui/Elements/Icon/icons/Group.d.ts +1 -0
- package/ui/Elements/Icon/icons/Group.js +13 -17
- package/ui/Elements/Icon/icons/HamburgerMenu.d.ts +2 -1
- package/ui/Elements/Icon/icons/HamburgerMenu.js +13 -41
- package/ui/Elements/Icon/icons/HelpCircle1.d.ts +2 -1
- package/ui/Elements/Icon/icons/HelpCircle1.js +13 -32
- package/ui/Elements/Icon/icons/HorizontalLines.d.ts +1 -0
- package/ui/Elements/Icon/icons/HorizontalLines.js +13 -36
- package/ui/Elements/Icon/icons/ImagePlaceholder.d.ts +1 -0
- package/ui/Elements/Icon/icons/ImagePlaceholder.js +13 -17
- package/ui/Elements/Icon/icons/Income.d.ts +2 -1
- package/ui/Elements/Icon/icons/Income.js +13 -22
- package/ui/Elements/Icon/icons/Info.d.ts +2 -1
- package/ui/Elements/Icon/icons/Info.js +13 -33
- package/ui/Elements/Icon/icons/Integrations.d.ts +1 -0
- package/ui/Elements/Icon/icons/Integrations.js +13 -17
- package/ui/Elements/Icon/icons/Inventory.d.ts +2 -1
- package/ui/Elements/Icon/icons/Inventory.js +13 -45
- package/ui/Elements/Icon/icons/Inventory2.d.ts +2 -1
- package/ui/Elements/Icon/icons/Inventory2.js +13 -66
- package/ui/Elements/Icon/icons/Layout.d.ts +3 -2
- package/ui/Elements/Icon/icons/Layout.js +14 -43
- package/ui/Elements/Icon/icons/Link.d.ts +1 -0
- package/ui/Elements/Icon/icons/Link.js +13 -20
- package/ui/Elements/Icon/icons/Liquid.d.ts +3 -2
- package/ui/Elements/Icon/icons/Liquid.js +13 -22
- package/ui/Elements/Icon/icons/Location.d.ts +2 -1
- package/ui/Elements/Icon/icons/Location.js +13 -13
- package/ui/Elements/Icon/icons/Logout1.d.ts +2 -1
- package/ui/Elements/Icon/icons/Logout1.js +13 -32
- package/ui/Elements/Icon/icons/MachinePackingForbidden.d.ts +3 -2
- package/ui/Elements/Icon/icons/MachinePackingForbidden.js +13 -70
- package/ui/Elements/Icon/icons/MakePhoto.d.ts +2 -1
- package/ui/Elements/Icon/icons/MakePhoto.js +13 -35
- package/ui/Elements/Icon/icons/MenuItems.d.ts +2 -1
- package/ui/Elements/Icon/icons/MenuItems.js +13 -39
- package/ui/Elements/Icon/icons/Message.d.ts +2 -1
- package/ui/Elements/Icon/icons/Message.js +13 -38
- package/ui/Elements/Icon/icons/MobileCancel.d.ts +2 -1
- package/ui/Elements/Icon/icons/MobileCancel.js +13 -22
- package/ui/Elements/Icon/icons/MobilePhone.d.ts +3 -2
- package/ui/Elements/Icon/icons/MobilePhone.js +13 -47
- package/ui/Elements/Icon/icons/Moon.d.ts +2 -1
- package/ui/Elements/Icon/icons/Moon.js +13 -12
- package/ui/Elements/Icon/icons/Notification2.d.ts +2 -1
- package/ui/Elements/Icon/icons/Notification2.js +13 -25
- package/ui/Elements/Icon/icons/OpenBox.d.ts +1 -0
- package/ui/Elements/Icon/icons/OpenBox.js +13 -37
- package/ui/Elements/Icon/icons/Pallet.d.ts +2 -1
- package/ui/Elements/Icon/icons/Pallet.js +13 -36
- package/ui/Elements/Icon/icons/Plus1.d.ts +2 -1
- package/ui/Elements/Icon/icons/Plus1.js +13 -17
- package/ui/Elements/Icon/icons/Print.d.ts +2 -1
- package/ui/Elements/Icon/icons/Print.js +13 -41
- package/ui/Elements/Icon/icons/Product.d.ts +1 -0
- package/ui/Elements/Icon/icons/Product.js +13 -17
- package/ui/Elements/Icon/icons/Products.d.ts +2 -1
- package/ui/Elements/Icon/icons/Products.js +13 -16
- package/ui/Elements/Icon/icons/Profile.d.ts +2 -1
- package/ui/Elements/Icon/icons/Profile.js +13 -25
- package/ui/Elements/Icon/icons/Puzzle1.d.ts +2 -1
- package/ui/Elements/Icon/icons/Puzzle1.js +13 -18
- package/ui/Elements/Icon/icons/QRCode.d.ts +2 -1
- package/ui/Elements/Icon/icons/QRCode.js +13 -19
- package/ui/Elements/Icon/icons/Rack.d.ts +1 -0
- package/ui/Elements/Icon/icons/Rack.js +13 -65
- package/ui/Elements/Icon/icons/Reload.d.ts +3 -2
- package/ui/Elements/Icon/icons/Reload.js +13 -13
- package/ui/Elements/Icon/icons/Return.d.ts +2 -1
- package/ui/Elements/Icon/icons/Return.js +13 -19
- package/ui/Elements/Icon/icons/Rows.d.ts +1 -0
- package/ui/Elements/Icon/icons/Rows.js +13 -39
- package/ui/Elements/Icon/icons/Settings2.d.ts +2 -1
- package/ui/Elements/Icon/icons/Settings2.js +13 -33
- package/ui/Elements/Icon/icons/ShieldUser.d.ts +3 -2
- package/ui/Elements/Icon/icons/ShieldUser.js +13 -9
- package/ui/Elements/Icon/icons/ShoppingBag.d.ts +2 -1
- package/ui/Elements/Icon/icons/ShoppingBag.js +13 -18
- package/ui/Elements/Icon/icons/Sort.d.ts +3 -2
- package/ui/Elements/Icon/icons/Sort.js +13 -23
- package/ui/Elements/Icon/icons/Sun.d.ts +2 -1
- package/ui/Elements/Icon/icons/Sun.js +13 -12
- package/ui/Elements/Icon/icons/ThreeDots.d.ts +1 -0
- package/ui/Elements/Icon/icons/ThreeDots.js +13 -39
- package/ui/Elements/Icon/icons/ToastError.d.ts +1 -0
- package/ui/Elements/Icon/icons/ToastError.js +13 -27
- package/ui/Elements/Icon/icons/ToastSuccess.d.ts +1 -0
- package/ui/Elements/Icon/icons/ToastSuccess.js +13 -27
- package/ui/Elements/Icon/icons/Transfer.d.ts +2 -1
- package/ui/Elements/Icon/icons/Transfer.js +13 -21
- package/ui/Elements/Icon/icons/TrashBin.d.ts +1 -0
- package/ui/Elements/Icon/icons/TrashBin.js +13 -33
- package/ui/Elements/Icon/icons/Truck.d.ts +2 -1
- package/ui/Elements/Icon/icons/Truck.js +13 -73
- package/ui/Elements/Icon/icons/TwoBoxes.d.ts +2 -1
- package/ui/Elements/Icon/icons/TwoBoxes.js +13 -20
- package/ui/Elements/Icon/icons/TwoCheckedBoxes.d.ts +2 -1
- package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +2 -29
- package/ui/Elements/Icon/icons/TwoUsers.d.ts +2 -1
- package/ui/Elements/Icon/icons/TwoUsers.js +13 -42
- package/ui/Elements/Icon/icons/UserCowboy.d.ts +3 -2
- package/ui/Elements/Icon/icons/UserCowboy.js +13 -9
- package/ui/Elements/Icon/icons/Valuable.d.ts +3 -2
- package/ui/Elements/Icon/icons/Valuable.js +13 -34
- package/ui/Elements/Icon/icons/Weight.d.ts +2 -1
- package/ui/Elements/Icon/icons/Weight.js +13 -12
- package/ui/Elements/Icon/icons/index.js +91 -188
- package/ui/Elements/Icon/index.d.ts +2 -1
- package/ui/Elements/Icon/index.js +5 -97
- package/ui/Elements/Icon/stories/BadgeIcon.stories.d.ts +6 -5
- package/ui/Elements/Icon/stories/BadgeIcon.stories.js +18 -0
- package/ui/Elements/Icon/stories/Icon.stories.d.ts +3 -2
- package/ui/Elements/Icon/stories/Icon.stories.js +48 -0
- package/ui/Elements/Icon/types.d.ts +2 -1
- package/ui/Elements/Image/Image.d.ts +3 -2
- package/ui/Elements/Image/Image.js +37 -15
- package/ui/Elements/Image/index.d.ts +2 -1
- package/ui/Elements/Image/index.js +3 -5
- package/ui/Elements/Image/stories/Image.stories.d.ts +3 -2
- package/ui/Elements/Image/stories/Image.stories.js +36 -0
- package/ui/Elements/Image/types.d.ts +2 -1
- package/ui/Elements/Label/Label.d.ts +3 -3
- package/ui/Elements/Label/Label.js +14 -23
- package/ui/Elements/Label/index.d.ts +1 -0
- package/ui/Elements/Label/index.js +3 -5
- package/ui/Elements/Label/stories/Label.stories.d.ts +4 -3
- package/ui/Elements/Label/stories/Label.stories.js +20 -0
- package/ui/Elements/Line/Line.d.ts +1 -0
- package/ui/Elements/Line/Line.js +23 -21
- package/ui/Elements/Line/index.d.ts +2 -1
- package/ui/Elements/Line/index.js +3 -5
- package/ui/Elements/Line/stories/Line.stories.d.ts +3 -2
- package/ui/Elements/Line/stories/Line.stories.js +41 -0
- package/ui/Elements/Line/types.d.ts +2 -1
- package/ui/Elements/Link/Link.d.ts +2 -1
- package/ui/Elements/Link/Link.js +47 -43
- package/ui/Elements/Link/index.d.ts +2 -1
- package/ui/Elements/Link/index.js +3 -5
- package/ui/Elements/Link/stories/Link.stories.d.ts +15 -14
- package/ui/Elements/Link/stories/Link.stories.js +63 -0
- package/ui/Elements/Logo/Logo.d.ts +3 -2
- package/ui/Elements/Logo/Logo.js +91 -66
- package/ui/Elements/Logo/index.d.ts +2 -1
- package/ui/Elements/Logo/index.js +3 -5
- package/ui/Elements/Logo/stories/Logo.stories.d.ts +3 -2
- package/ui/Elements/Logo/stories/Logo.stories.js +136 -0
- package/ui/Elements/Pagination/Pagination.d.ts +2 -1
- package/ui/Elements/Pagination/Pagination.js +38 -62
- package/ui/Elements/Pagination/index.d.ts +2 -1
- package/ui/Elements/Pagination/index.js +3 -5
- package/ui/Elements/Pagination/stories/Pagination.stories.d.ts +3 -2
- package/ui/Elements/Pagination/stories/Pagination.stories.js +48 -0
- package/ui/Elements/Pagination/styled.d.ts +7 -6
- package/ui/Elements/Pagination/styled.js +26 -64
- package/ui/Elements/Portal/index.d.ts +2 -1
- package/ui/Elements/Portal/index.js +23 -22
- package/ui/Elements/ProgressBar/ProgressBar.d.ts +2 -1
- package/ui/Elements/ProgressBar/ProgressBar.js +8 -16
- package/ui/Elements/ProgressBar/index.d.ts +2 -1
- package/ui/Elements/ProgressBar/index.js +3 -5
- package/ui/Elements/ProgressBar/stories/ProgressBar.stories.d.ts +8 -7
- package/ui/Elements/ProgressBar/stories/ProgressBar.stories.js +27 -0
- package/ui/Elements/ProgressBar/styles.d.ts +4 -4
- package/ui/Elements/ProgressBar/styles.js +19 -72
- package/ui/Elements/Select/Select.d.ts +3 -2
- package/ui/Elements/Select/Select.js +110 -96
- package/ui/Elements/Select/components/ChevronOption.js +22 -30
- package/ui/Elements/Select/components/ConnectedMenu.js +26 -25
- package/ui/Elements/Select/components/CountMultiValue.d.ts +2 -1
- package/ui/Elements/Select/components/CountMultiValue.js +45 -41
- package/ui/Elements/Select/components/CustomInput.js +18 -12
- package/ui/Elements/Select/components/DropdownIndicator.d.ts +2 -1
- package/ui/Elements/Select/components/DropdownIndicator.js +28 -29
- package/ui/Elements/Select/components/IconValueContainer.js +45 -29
- package/ui/Elements/Select/components/SelectAll.d.ts +2 -2
- package/ui/Elements/Select/components/SelectAll.js +58 -89
- package/ui/Elements/Select/components/SelectedIndicator.d.ts +1 -1
- package/ui/Elements/Select/components/SelectedIndicator.js +8 -7
- package/ui/Elements/Select/components/SimplifiedOption.d.ts +2 -1
- package/ui/Elements/Select/components/SimplifiedOption.js +10 -16
- package/ui/Elements/Select/index.d.ts +2 -1
- package/ui/Elements/Select/index.js +2 -5
- package/ui/Elements/Select/stories/Select.stories.d.ts +10 -0
- package/ui/Elements/Select/stories/Select.stories.js +16 -0
- package/ui/Elements/Select/styles.d.ts +6 -5
- package/ui/Elements/Select/styles.js +12 -19
- package/ui/Elements/Select/themes/index.d.ts +4 -3
- package/ui/Elements/Select/themes/index.js +41 -40
- package/ui/Elements/Select/themes/selectStyles.d.ts +3 -2
- package/ui/Elements/Select/themes/selectStyles.js +148 -195
- package/ui/Elements/Select/types.d.ts +8 -4
- package/ui/Elements/SimpleLink/SimpleLink.d.ts +3 -2
- package/ui/Elements/SimpleLink/SimpleLink.js +21 -35
- package/ui/Elements/SimpleLink/index.d.ts +2 -1
- package/ui/Elements/SimpleLink/index.js +3 -5
- package/ui/Elements/SingleSelect/SingleSelect.d.ts +3 -2
- package/ui/Elements/SingleSelect/SingleSelect.js +197 -147
- package/ui/Elements/SingleSelect/index.d.ts +2 -1
- package/ui/Elements/SingleSelect/index.js +2 -5
- package/ui/Elements/SpaceAround/SpaceAround.d.ts +3 -2
- package/ui/Elements/SpaceAround/SpaceAround.js +52 -32
- package/ui/Elements/SpaceAround/index.d.ts +2 -1
- package/ui/Elements/SpaceAround/index.js +3 -5
- package/ui/Elements/SpaceAround/stories/SpaceAround.stories.d.ts +3 -2
- package/ui/Elements/SpaceAround/stories/SpaceAround.stories.js +22 -0
- package/ui/Elements/SpaceAround/types.d.ts +1 -0
- package/ui/Elements/Spinner/Spinner.d.ts +3 -2
- package/ui/Elements/Spinner/Spinner.js +25 -36
- package/ui/Elements/Spinner/index.d.ts +2 -1
- package/ui/Elements/Spinner/index.js +3 -5
- package/ui/Elements/Spinner/stories/Spinner.stories.d.ts +3 -2
- package/ui/Elements/Spinner/stories/Spinner.stories.js +56 -0
- package/ui/Elements/Spinner/styles.d.ts +3 -3
- package/ui/Elements/Spinner/styles.js +19 -36
- package/ui/Elements/Table/Table.d.ts +6 -6
- package/ui/Elements/Table/Table.js +12 -45
- package/ui/Elements/Table/index.js +1 -2
- package/ui/Elements/Table/stories/Table.stories.d.ts +1 -1
- package/ui/Elements/Table/stories/Table.stories.js +10 -0
- package/ui/Elements/Tag/Tag.d.ts +3 -2
- package/ui/Elements/Tag/Tag.js +57 -47
- package/ui/Elements/Tag/index.d.ts +2 -1
- package/ui/Elements/Tag/index.js +3 -6
- package/ui/Elements/Tag/palettes.d.ts +2 -1
- package/ui/Elements/Tag/palettes.js +14 -50
- package/ui/Elements/Tag/stories/Tag.stories.d.ts +3 -2
- package/ui/Elements/Tag/stories/Tag.stories.js +72 -0
- package/ui/Elements/Tag/stories/components/predefinedTags.js +7 -18
- package/ui/Elements/Tag/types.d.ts +1 -0
- package/ui/Elements/Text/Text.d.ts +3 -2
- package/ui/Elements/Text/Text.js +29 -10
- package/ui/Elements/Text/index.d.ts +2 -1
- package/ui/Elements/Text/index.js +1 -1
- package/ui/Elements/Text/stories/Text.stories.d.ts +3 -2
- package/ui/Elements/Text/stories/Text.stories.js +43 -0
- package/ui/Elements/Text/types.d.ts +1 -0
- package/ui/Elements/Toast/Toast.d.ts +2 -1
- package/ui/Elements/Toast/Toast.js +20 -35
- package/ui/Elements/Toast/constants.d.ts +2 -1
- package/ui/Elements/Toast/constants.js +15 -18
- package/ui/Elements/Toast/index.d.ts +2 -1
- package/ui/Elements/Toast/index.js +3 -5
- package/ui/Elements/Toast/stories/Toast.stories.d.ts +3 -2
- package/ui/Elements/Toast/stories/Toast.stories.js +36 -0
- package/ui/Elements/Toast/styles.d.ts +6 -6
- package/ui/Elements/Toast/styles.js +22 -76
- package/ui/Elements/Toggle/Toggle.d.ts +3 -2
- package/ui/Elements/Toggle/Toggle.js +61 -123
- package/ui/Elements/Toggle/index.d.ts +2 -1
- package/ui/Elements/Toggle/index.js +3 -5
- package/ui/Elements/Toggle/stories/Toggle.stories.d.ts +3 -2
- package/ui/Elements/Toggle/stories/Toggle.stories.js +64 -0
- package/ui/Elements/Toggle/types.d.ts +1 -0
- package/ui/Elements/Tooltip/Tooltip.d.ts +3 -2
- package/ui/Elements/Tooltip/Tooltip.js +24 -50
- package/ui/Elements/Tooltip/index.d.ts +2 -1
- package/ui/Elements/Tooltip/index.js +3 -5
- package/ui/Elements/Tooltip/stories/Tooltip.stories.d.ts +3 -2
- package/ui/Elements/Tooltip/stories/Tooltip.stories.js +15 -0
- package/ui/Elements/Typography/Typography.d.ts +3 -2
- package/ui/Elements/Typography/Typography.js +46 -75
- package/ui/Elements/Typography/index.d.ts +1 -0
- package/ui/Elements/Typography/index.js +3 -5
- package/ui/Elements/Typography/stories/Typography.stories.d.ts +2 -1
- package/ui/Elements/Typography/stories/Typography.stories.js +20 -0
- package/ui/Forms/Checkbox/Checkbox.d.ts +3 -2
- package/ui/Forms/Checkbox/Checkbox.js +11 -43
- package/ui/Forms/Checkbox/index.d.ts +2 -1
- package/ui/Forms/Checkbox/index.js +3 -5
- package/ui/Forms/Checkbox/stories/Checkbox.stories.d.ts +2 -1
- package/ui/Forms/Checkbox/stories/Checkbox.stories.js +35 -0
- package/ui/Forms/Checkbox/styles.d.ts +5 -4
- package/ui/Forms/Checkbox/styles.js +26 -94
- package/ui/Forms/Checkbox/types.d.ts +2 -1
- package/ui/Forms/Input/Input.d.ts +3 -2
- package/ui/Forms/Input/Input.js +65 -128
- package/ui/Forms/Input/index.d.ts +1 -0
- package/ui/Forms/Input/index.js +3 -5
- package/ui/Forms/Input/stories/Input.stories.d.ts +3 -2
- package/ui/Forms/Input/stories/Input.stories.js +77 -0
- package/ui/Forms/Input/styles.d.ts +12 -12
- package/ui/Forms/Input/styles.js +66 -218
- package/ui/Forms/Input/types.d.ts +2 -1
- package/ui/Forms/RadioButton/RadioButton.d.ts +3 -2
- package/ui/Forms/RadioButton/RadioButton.js +31 -23
- package/ui/Forms/RadioButton/index.d.ts +2 -1
- package/ui/Forms/RadioButton/index.js +3 -5
- package/ui/Forms/RadioButton/stories/RadioButton.stories.d.ts +3 -2
- package/ui/Forms/RadioButton/stories/RadioButton.stories.js +38 -0
- package/ui/Forms/RadioButton/styles.d.ts +6 -6
- package/ui/Forms/RadioButton/styles.js +15 -86
- package/ui/Forms/RadioButton/types.d.ts +1 -0
- package/ui/Forms/TextArea/TextArea.d.ts +3 -2
- package/ui/Forms/TextArea/TextArea.js +33 -34
- package/ui/Forms/TextArea/index.d.ts +2 -1
- package/ui/Forms/TextArea/index.js +2 -5
- package/ui/Forms/TextArea/styles.d.ts +10 -10
- package/ui/Forms/TextArea/styles.js +31 -76
- package/ui/System/Fonts/index.js +9 -54
- package/ui/ThemeProvider/ThemeProvider.d.ts +4 -3
- package/ui/ThemeProvider/ThemeProvider.js +9 -16
- package/ui/ThemeProvider/index.d.ts +3 -2
- package/ui/ThemeProvider/index.js +5 -6
- package/ui/ThemeProvider/themes/dark.d.ts +169 -0
- package/ui/ThemeProvider/themes/dark.js +14 -0
- package/ui/ThemeProvider/themes/default.d.ts +17 -0
- package/ui/ThemeProvider/themes/default.js +170 -185
- package/ui/ThemeProvider/themes/index.d.ts +279 -78
- package/ui/ThemeProvider/themes/index.js +8 -10
- package/ui/ThemeProvider/themes/mailwise.d.ts +115 -98
- package/ui/ThemeProvider/themes/mailwise.js +82 -229
- package/ui/ThemeProvider/types.d.ts +3 -2
- package/ui/hooks/useToggleAndClose.js +11 -17
- package/ui/index.d.ts +48 -47
- package/ui/index.es.js +50429 -0
- package/ui/index.js +94 -179
- package/ui/index.umd.js +4323 -0
- package/ui/utils/CheckDeviceWidth/checkDeviceWidth.js +16 -16
- package/ui/utils/CreateRgba/createRgba.d.ts +1 -0
- package/ui/utils/CreateRgba/createRgba.js +15 -11
- package/ui/utils/KeyPress/KeyPress.d.ts +1 -0
- package/ui/utils/KeyPress/KeyPress.js +16 -15
- package/ui/utils/KeyPress/KeyPress.stories.d.ts +2 -1
- package/ui/utils/KeyPress/KeyPress.stories.js +18 -0
- package/ui/utils/KeyPress/index.d.ts +2 -1
- package/ui/utils/KeyPress/index.js +2 -5
- package/ui/utils/LinguiContainer/index.js +7 -12
- package/ui/utils/index.d.ts +5 -4
- package/ui/utils/index.js +6 -8
- package/ui/utils/translations.d.ts +2 -1
- package/ui/utils/translations.js +4 -336
- package/ui/ThemeProvider/themes/light.d.ts +0 -3
- package/ui/ThemeProvider/themes/light.js +0 -7
- package/ui/_virtual/_rolldown/runtime.js +0 -13
|
@@ -1,82 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
strokeWidth: "1.5",
|
|
15
|
-
strokeMiterlimit: "10",
|
|
16
|
-
strokeLinecap: "round",
|
|
17
|
-
strokeLinejoin: "round"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ jsx("rect", {
|
|
20
|
-
x: "6",
|
|
21
|
-
y: "10",
|
|
22
|
-
width: "4.66667",
|
|
23
|
-
height: "4.66667",
|
|
24
|
-
strokeWidth: "1.5",
|
|
25
|
-
strokeMiterlimit: "10",
|
|
26
|
-
strokeLinecap: "round",
|
|
27
|
-
strokeLinejoin: "round"
|
|
28
|
-
}),
|
|
29
|
-
/* @__PURE__ */ jsx("path", {
|
|
30
|
-
d: "M5.16699 7.38867H7.00033",
|
|
31
|
-
strokeWidth: "1.5",
|
|
32
|
-
strokeMiterlimit: "10",
|
|
33
|
-
strokeLinecap: "round",
|
|
34
|
-
strokeLinejoin: "round"
|
|
35
|
-
}),
|
|
36
|
-
/* @__PURE__ */ jsx("path", {
|
|
37
|
-
d: "M9.55566 7.38867H11.389",
|
|
38
|
-
strokeWidth: "1.5",
|
|
39
|
-
strokeMiterlimit: "10",
|
|
40
|
-
strokeLinecap: "round",
|
|
41
|
-
strokeLinejoin: "round"
|
|
42
|
-
}),
|
|
43
|
-
/* @__PURE__ */ jsx("path", {
|
|
44
|
-
d: "M5.16699 5.55566H7.00033",
|
|
45
|
-
strokeWidth: "1.5",
|
|
46
|
-
strokeMiterlimit: "10",
|
|
47
|
-
strokeLinecap: "round",
|
|
48
|
-
strokeLinejoin: "round"
|
|
49
|
-
}),
|
|
50
|
-
/* @__PURE__ */ jsx("path", {
|
|
51
|
-
d: "M9.55566 5.55566H11.389",
|
|
52
|
-
strokeWidth: "1.5",
|
|
53
|
-
strokeMiterlimit: "10",
|
|
54
|
-
strokeLinecap: "round",
|
|
55
|
-
strokeLinejoin: "round"
|
|
56
|
-
}),
|
|
57
|
-
/* @__PURE__ */ jsx("path", {
|
|
58
|
-
d: "M5.16699 3.72168H7.00033",
|
|
59
|
-
strokeWidth: "1.5",
|
|
60
|
-
strokeMiterlimit: "10",
|
|
61
|
-
strokeLinecap: "round",
|
|
62
|
-
strokeLinejoin: "round"
|
|
63
|
-
}),
|
|
64
|
-
/* @__PURE__ */ jsx("path", {
|
|
65
|
-
d: "M9.55566 3.72168H11.389",
|
|
66
|
-
strokeWidth: "1.5",
|
|
67
|
-
strokeMiterlimit: "10",
|
|
68
|
-
strokeLinecap: "round",
|
|
69
|
-
strokeLinejoin: "round"
|
|
70
|
-
})
|
|
71
|
-
]
|
|
72
|
-
}), /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
|
|
73
|
-
id: "clip0_1076_22920",
|
|
74
|
-
children: /* @__PURE__ */ jsx("rect", {
|
|
75
|
-
width: "16",
|
|
76
|
-
height: "16",
|
|
77
|
-
fill: "white"
|
|
78
|
-
})
|
|
79
|
-
}) })]
|
|
80
|
-
});
|
|
81
|
-
//#endregion
|
|
82
|
-
export { Company };
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
export var Company = function (props) { return (_jsxs("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: [_jsxs("g", { clipPath: "url(#clip0_1076_22920)", children: [_jsx("path", { d: "M14.0003 14.6663H5.66699C4.01014 14.6663 2.66699 13.3232 2.66699 11.6663V4.33301C2.66699 2.67615 4.01014 1.33301 5.66699 1.33301H11.0401C12.675 1.33301 14.0003 2.65834 14.0003 4.29323V4.29323V14.6663Z", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("rect", { x: "6", y: "10", width: "4.66667", height: "4.66667", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M5.16699 7.38867H7.00033", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9.55566 7.38867H11.389", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M5.16699 5.55566H7.00033", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9.55566 5.55566H11.389", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M5.16699 3.72168H7.00033", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9.55566 3.72168H11.389", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_1076_22920", children: _jsx("rect", { width: "16", height: "16", fill: "white" }) }) })] }))); };
|
|
@@ -1,59 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
d: "M19.2501 17.4667C19.2501 18.9578 18.0413 20.1667 16.5501 20.1667H6.36675C4.87558 20.1667 3.66675 18.9578 3.66675 17.4667V4.53333C3.66675 3.04216 4.87558 1.83333 6.36675 1.83333H12.7404C13.3915 1.83333 14.0207 2.06863 14.512 2.49589L18.3218 5.8087C18.9115 6.3215 19.2501 7.06465 19.2501 7.84614V17.4667Z",
|
|
15
|
-
strokeWidth: "1.35",
|
|
16
|
-
strokeMiterlimit: "10",
|
|
17
|
-
strokeLinecap: "round",
|
|
18
|
-
strokeLinejoin: "round"
|
|
19
|
-
}),
|
|
20
|
-
/* @__PURE__ */ jsx("path", {
|
|
21
|
-
d: "M13.2917 2.29166V6.89166C13.2917 7.38871 13.6947 7.79166 14.1917 7.79166H18.7917",
|
|
22
|
-
strokeWidth: "1.35",
|
|
23
|
-
strokeMiterlimit: "10",
|
|
24
|
-
strokeLinecap: "round",
|
|
25
|
-
strokeLinejoin: "round"
|
|
26
|
-
}),
|
|
27
|
-
/* @__PURE__ */ jsx("path", {
|
|
28
|
-
d: "M6.41675 9.16666H10.0834",
|
|
29
|
-
strokeWidth: "1.35",
|
|
30
|
-
strokeMiterlimit: "10",
|
|
31
|
-
strokeLinecap: "round",
|
|
32
|
-
strokeLinejoin: "round"
|
|
33
|
-
}),
|
|
34
|
-
/* @__PURE__ */ jsx("path", {
|
|
35
|
-
d: "M6.41675 11.9167H16.5001",
|
|
36
|
-
strokeWidth: "1.35",
|
|
37
|
-
strokeMiterlimit: "10",
|
|
38
|
-
strokeLinecap: "round",
|
|
39
|
-
strokeLinejoin: "round"
|
|
40
|
-
}),
|
|
41
|
-
/* @__PURE__ */ jsx("path", {
|
|
42
|
-
d: "M6.41675 14.6667H16.5001",
|
|
43
|
-
strokeWidth: "1.35",
|
|
44
|
-
strokeMiterlimit: "10",
|
|
45
|
-
strokeLinecap: "round",
|
|
46
|
-
strokeLinejoin: "round"
|
|
47
|
-
})
|
|
48
|
-
]
|
|
49
|
-
}), /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
|
|
50
|
-
id: "clip0_7_1621",
|
|
51
|
-
children: /* @__PURE__ */ jsx("rect", {
|
|
52
|
-
width: "22",
|
|
53
|
-
height: "22",
|
|
54
|
-
fill: "white"
|
|
55
|
-
})
|
|
56
|
-
}) })]
|
|
57
|
-
});
|
|
58
|
-
//#endregion
|
|
59
|
-
export { Complaint };
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
export var Complaint = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [_jsxs("g", { clipPath: "url(#clip0_7_1621)", children: [_jsx("path", { d: "M19.2501 17.4667C19.2501 18.9578 18.0413 20.1667 16.5501 20.1667H6.36675C4.87558 20.1667 3.66675 18.9578 3.66675 17.4667V4.53333C3.66675 3.04216 4.87558 1.83333 6.36675 1.83333H12.7404C13.3915 1.83333 14.0207 2.06863 14.512 2.49589L18.3218 5.8087C18.9115 6.3215 19.2501 7.06465 19.2501 7.84614V17.4667Z", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.2917 2.29166V6.89166C13.2917 7.38871 13.6947 7.79166 14.1917 7.79166H18.7917", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M6.41675 9.16666H10.0834", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M6.41675 11.9167H16.5001", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M6.41675 14.6667H16.5001", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_7_1621", children: _jsx("rect", { width: "22", height: "22", fill: "white" }) }) })] }))); };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
export var Consolidation = function (props) { return (_jsx("svg", __assign({ width: "18", height: "16", viewBox: "0 0 18 16", fill: "white", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M13.5 1.485H11V3.76509C11 3.87338 10.9125 3.96 10.8031 3.96C10.7688 3.96 10.7344 3.95072 10.7063 3.93525L9.25 3.11231C9.09688 3.02569 8.90625 3.02569 8.75313 3.11231L7.29688 3.93525C7.26562 3.95072 7.23438 3.96 7.2 3.96C7.09062 3.96 7.00313 3.87338 7.00313 3.76509V1.485H4.5V6.435H13.5V1.485ZM13.5 0C14.3281 0 15 0.665156 15 1.485V6.435C15 7.25484 14.3281 7.92 13.5 7.92H4.5C3.67188 7.92 3 7.25484 3 6.435V1.485C3 0.665156 3.67188 0 4.5 0H7H11H13.5ZM5.85625 10.89C5.60938 10.89 5.36875 10.9612 5.1625 11.0973L2.66563 12.7463C2.54375 12.8267 2.39687 12.87 2.25 12.87H0.75C0.334375 12.87 0 12.539 0 12.1275C0 11.716 0.334375 11.385 0.75 11.385H2.02187L4.32812 9.86288C4.78125 9.56278 5.3125 9.405 5.85625 9.405H10.75C11.8531 9.405 12.75 10.2929 12.75 11.385C12.75 11.4067 12.75 11.4252 12.75 11.4469L14.7781 10.2094C15.1125 10.0052 15.4937 9.9 15.8875 9.9H16.1187C17.1594 9.9 18.0031 10.7353 18.0031 11.7655C18.0031 12.3967 17.6781 12.9876 17.1437 13.331L14.1562 15.246C13.55 15.6358 12.8406 15.8431 12.1187 15.8431H0.75C0.334375 15.8431 0 15.5121 0 15.1006C0 14.6891 0.334375 14.3581 0.75 14.3581H12.1156C12.55 14.3581 12.975 14.2343 13.3375 13.9992L16.325 12.0842C16.4344 12.013 16.5 11.8955 16.5 11.7655C16.5 11.5552 16.3281 11.385 16.1156 11.385H15.8844C15.7719 11.385 15.6594 11.4159 15.5625 11.4747L12.6406 13.2536C12.5219 13.3248 12.3875 13.365 12.2469 13.365H10.75H10H8C7.58437 13.365 7.25 13.034 7.25 12.6225C7.25 12.211 7.58437 11.88 8 11.88H10H10.75C11.025 11.88 11.25 11.6573 11.25 11.385C11.25 11.1128 11.025 10.89 10.75 10.89H5.85625Z" }) }))); };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
export var Container = function (props) { return (_jsx("svg", __assign({ width: "80", height: "84", viewBox: "0 0 80 84", fill: "#7A90A1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M50.375 76.5833C51.3295 76.5833 52.1042 75.8087 52.1042 74.8542V54.1042C52.1042 53.1497 51.3295 52.375 50.375 52.375C49.4205 52.375 48.6458 53.1497 48.6458 54.1042V74.8542C48.6458 75.8087 49.4205 76.5833 50.375 76.5833ZM57.2917 76.5833C58.2462 76.5833 59.0208 75.8087 59.0208 74.8542V54.1042C59.0208 53.1497 58.2462 52.375 57.2917 52.375C56.3372 52.375 55.5625 53.1497 55.5625 54.1042V74.8542C55.5625 75.8087 56.3372 76.5833 57.2917 76.5833ZM71.125 76.5833C72.0795 76.5833 72.8542 75.8087 72.8542 74.8542V54.1042C72.8542 53.1497 72.0795 52.375 71.125 52.375C70.1705 52.375 69.3958 53.1497 69.3958 54.1042V74.8542C69.3958 75.8087 70.1705 76.5833 71.125 76.5833ZM43.4583 76.5833C44.4128 76.5833 45.1875 75.8087 45.1875 74.8542V54.1042C45.1875 53.1497 44.4128 52.375 43.4583 52.375C42.5038 52.375 41.7292 53.1497 41.7292 54.1042V74.8542C41.7292 75.8087 42.5038 76.5833 43.4583 76.5833ZM64.2083 76.5833C65.1628 76.5833 65.9375 75.8087 65.9375 74.8542V54.1042C65.9375 53.1497 65.1628 52.375 64.2083 52.375C63.2538 52.375 62.4792 53.1497 62.4792 54.1042V74.8542C62.4792 75.8087 63.2538 76.5833 64.2083 76.5833ZM36.5417 76.5833C37.4962 76.5833 38.2708 75.8087 38.2708 74.8542V54.1042C38.2708 53.1497 37.4962 52.375 36.5417 52.375C35.5872 52.375 34.8125 53.1497 34.8125 54.1042V74.8542C34.8125 75.8087 35.5872 76.5833 36.5417 76.5833ZM8.875 76.5833C9.8295 76.5833 10.6042 75.8087 10.6042 74.8542V54.1042C10.6042 53.1497 9.8295 52.375 8.875 52.375C7.92051 52.375 7.14584 53.1497 7.14584 54.1042V74.8542C7.14584 75.8087 7.92051 76.5833 8.875 76.5833ZM79.7293 46.9765C79.7121 46.8486 79.6982 46.7241 79.6533 46.603C79.6187 46.5028 79.5633 46.4198 79.5115 46.3298C79.4527 46.2295 79.3973 46.1292 79.3178 46.0428C79.2417 45.9563 79.1518 45.8941 79.0584 45.8249C78.9927 45.7765 78.9478 45.7073 78.8717 45.6693L43.7696 26.5205C44.6411 25.5937 45.1875 24.3521 45.1875 22.9792C45.1875 20.7278 43.7385 18.8257 41.7292 18.1098V17.7917H43.4583C44.4128 17.7917 45.1875 17.017 45.1875 16.0625V9.14583C45.1875 8.19133 44.4128 7.41667 43.4583 7.41667H41.7292V2.22917C41.7292 1.27467 40.9545 0.5 40 0.5C39.0455 0.5 38.2708 1.27467 38.2708 2.22917V7.41667H36.5417C35.5872 7.41667 34.8125 8.19133 34.8125 9.14583V16.0625C34.8125 17.017 35.5872 17.7917 36.5417 17.7917H38.2708V19.5208C38.2708 20.4753 39.0455 21.25 40 21.25C40.951 21.25 41.7292 22.0247 41.7292 22.9792C41.7292 23.9337 40.951 24.7083 40 24.7083C39.049 24.7083 38.2708 23.9337 38.2708 22.9792C38.2708 22.0247 37.4962 21.25 36.5417 21.25C35.5872 21.25 34.8125 22.0247 34.8125 22.9792C34.8125 24.3521 35.3589 25.5937 36.2339 26.524L1.1318 45.6693C1.06263 45.7073 1.01767 45.7696 0.955422 45.818C0.85513 45.8906 0.761755 45.9598 0.678755 46.0497C0.602672 46.1327 0.550797 46.2261 0.495463 46.3229C0.44013 46.4163 0.381338 46.5062 0.346755 46.6134C0.305255 46.7275 0.291422 46.8451 0.27413 46.9627C0.263755 47.0388 0.229172 47.108 0.229172 47.1875V81.7708C0.229172 82.7253 1.00384 83.5 1.95834 83.5H78.0417C78.9962 83.5 79.7708 82.7253 79.7708 81.7708V47.1875C79.7708 47.1114 79.7363 47.0492 79.7293 46.9765ZM38.2708 14.3333V10.875H41.7292V14.3333H38.2708ZM40 28.4053L71.2633 45.4583H8.73667L40 28.4053ZM76.3125 80.0417H3.68751V48.9167H76.3125V80.0417ZM15.7917 76.5833C16.7462 76.5833 17.5208 75.8087 17.5208 74.8542V54.1042C17.5208 53.1497 16.7462 52.375 15.7917 52.375C14.8372 52.375 14.0625 53.1497 14.0625 54.1042V74.8542C14.0625 75.8087 14.8372 76.5833 15.7917 76.5833ZM29.625 76.5833C30.5795 76.5833 31.3542 75.8087 31.3542 74.8542V54.1042C31.3542 53.1497 30.5795 52.375 29.625 52.375C28.6705 52.375 27.8958 53.1497 27.8958 54.1042V74.8542C27.8958 75.8087 28.6705 76.5833 29.625 76.5833ZM22.7083 76.5833C23.6628 76.5833 24.4375 75.8087 24.4375 74.8542V54.1042C24.4375 53.1497 23.6628 52.375 22.7083 52.375C21.7538 52.375 20.9792 53.1497 20.9792 54.1042V74.8542C20.9792 75.8087 21.7538 76.5833 22.7083 76.5833Z" }) }))); };
|
|
@@ -1,36 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
/* @__PURE__ */ jsx("path", {
|
|
15
|
-
d: "M11.5 13.75C12.5125 13.75 13.3334 12.9292 13.3334 11.9167C13.3334 10.9042 12.5125 10.0833 11.5 10.0833C10.4875 10.0833 9.66669 10.9042 9.66669 11.9167C9.66669 12.9292 10.4875 13.75 11.5 13.75Z",
|
|
16
|
-
strokeWidth: "1.5",
|
|
17
|
-
strokeLinecap: "round",
|
|
18
|
-
strokeLinejoin: "round"
|
|
19
|
-
}),
|
|
20
|
-
/* @__PURE__ */ jsx("path", {
|
|
21
|
-
d: "M13.3333 10.0833L15.1666 8.25",
|
|
22
|
-
strokeWidth: "1.5",
|
|
23
|
-
strokeLinecap: "round",
|
|
24
|
-
strokeLinejoin: "round"
|
|
25
|
-
}),
|
|
26
|
-
/* @__PURE__ */ jsx("path", {
|
|
27
|
-
d: "M5.79628 19.25C4.30735 18.0552 3.22341 16.4223 2.69466 14.5778C2.16591 12.7332 2.21855 10.7683 2.84527 8.95527C3.47199 7.14226 4.64176 5.57097 6.19247 4.45913C7.74318 3.3473 9.59803 2.75 11.5 2.75C13.4019 2.75 15.2568 3.3473 16.8075 4.45913C18.3582 5.57097 19.528 7.14226 20.1547 8.95527C20.7814 10.7683 20.834 12.7332 20.3053 14.5778C19.7765 16.4223 18.6926 18.0552 17.2037 19.25H5.79628Z",
|
|
28
|
-
strokeWidth: "1.5",
|
|
29
|
-
strokeLinecap: "round",
|
|
30
|
-
strokeLinejoin: "round"
|
|
31
|
-
})
|
|
32
|
-
]
|
|
33
|
-
})
|
|
34
|
-
});
|
|
35
|
-
//#endregion
|
|
36
|
-
export { Dashboard };
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
export var Dashboard = function (props) { return (_jsx("svg", { width: "23", height: "22", viewBox: "0 0 23 22", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsxs("g", __assign({ clipPath: "url(#clip0_4578_3246)", stroke: "white" }, props, { children: [_jsx("path", { d: "M11.5 13.75C12.5125 13.75 13.3334 12.9292 13.3334 11.9167C13.3334 10.9042 12.5125 10.0833 11.5 10.0833C10.4875 10.0833 9.66669 10.9042 9.66669 11.9167C9.66669 12.9292 10.4875 13.75 11.5 13.75Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.3333 10.0833L15.1666 8.25", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M5.79628 19.25C4.30735 18.0552 3.22341 16.4223 2.69466 14.5778C2.16591 12.7332 2.21855 10.7683 2.84527 8.95527C3.47199 7.14226 4.64176 5.57097 6.19247 4.45913C7.74318 3.3473 9.59803 2.75 11.5 2.75C13.4019 2.75 15.2568 3.3473 16.8075 4.45913C18.3582 5.57097 19.528 7.14226 20.1547 8.95527C20.7814 10.7683 20.834 12.7332 20.3053 14.5778C19.7765 16.4223 18.6926 18.0552 17.2037 19.25H5.79628Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] })) })); };
|
|
@@ -1,63 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
x: "0.75",
|
|
15
|
-
y: "13.5",
|
|
16
|
-
width: "16.5",
|
|
17
|
-
height: "3",
|
|
18
|
-
rx: "1.5",
|
|
19
|
-
strokeWidth: "1.5",
|
|
20
|
-
strokeMiterlimit: "10",
|
|
21
|
-
strokeLinecap: "round",
|
|
22
|
-
strokeLinejoin: "round"
|
|
23
|
-
}),
|
|
24
|
-
/* @__PURE__ */ jsx("rect", {
|
|
25
|
-
x: "1.5",
|
|
26
|
-
y: "0.75",
|
|
27
|
-
width: "15",
|
|
28
|
-
height: "12.75",
|
|
29
|
-
rx: "3",
|
|
30
|
-
strokeWidth: "1.5",
|
|
31
|
-
strokeMiterlimit: "10",
|
|
32
|
-
strokeLinecap: "round",
|
|
33
|
-
strokeLinejoin: "round"
|
|
34
|
-
}),
|
|
35
|
-
/* @__PURE__ */ jsx("path", {
|
|
36
|
-
d: "M6.75 6L5.78333 6.725C5.51667 6.925 5.51667 7.325 5.78333 7.525L6.75 8.25",
|
|
37
|
-
strokeWidth: "1.5",
|
|
38
|
-
strokeLinecap: "round"
|
|
39
|
-
}),
|
|
40
|
-
/* @__PURE__ */ jsx("path", {
|
|
41
|
-
d: "M11.25 6L12.2167 6.725C12.4833 6.925 12.4833 7.325 12.2167 7.525L11.25 8.25",
|
|
42
|
-
strokeWidth: "1.5",
|
|
43
|
-
strokeLinecap: "round"
|
|
44
|
-
}),
|
|
45
|
-
/* @__PURE__ */ jsx("line", {
|
|
46
|
-
x1: "10.2243",
|
|
47
|
-
y1: "4.69868",
|
|
48
|
-
x2: "8.44868",
|
|
49
|
-
y2: "10.0257",
|
|
50
|
-
strokeWidth: "1.5",
|
|
51
|
-
strokeLinecap: "round"
|
|
52
|
-
})
|
|
53
|
-
]
|
|
54
|
-
}), /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
|
|
55
|
-
id: "clip0_1226_2757",
|
|
56
|
-
children: /* @__PURE__ */ jsx("rect", {
|
|
57
|
-
width: "18",
|
|
58
|
-
height: "18"
|
|
59
|
-
})
|
|
60
|
-
}) })]
|
|
61
|
-
});
|
|
62
|
-
//#endregion
|
|
63
|
-
export { Desktop };
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
export var Desktop = function (props) { return (_jsxs("svg", __assign({ width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", stroke: "black" }, props, { children: [_jsxs("g", { "clip-path": "url(#clip0_1226_2757)", children: [_jsx("rect", { x: "0.75", y: "13.5", width: "16.5", height: "3", rx: "1.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("rect", { x: "1.5", y: "0.75", width: "15", height: "12.75", rx: "3", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M6.75 6L5.78333 6.725C5.51667 6.925 5.51667 7.325 5.78333 7.525L6.75 8.25", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M11.25 6L12.2167 6.725C12.4833 6.925 12.4833 7.325 12.2167 7.525L11.25 8.25", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("line", { x1: "10.2243", y1: "4.69868", x2: "8.44868", y2: "10.0257", strokeWidth: "1.5", strokeLinecap: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_1226_2757", children: _jsx("rect", { width: "18", height: "18" }) }) })] }))); };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
export var Dispatch = function (props) { return (_jsx("svg", __assign({ width: "18", height: "15", viewBox: "0 0 18 15", fill: "white", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M0.675 0C0.300937 0 0 0.300937 0 0.675C0 1.04906 0.300937 1.35 0.675 1.35H2.025C2.14875 1.35 2.25 1.45125 2.25 1.575V11.475C2.25 12.3441 2.95594 13.05 3.825 13.05H4.5C4.5 13.7953 5.10469 14.4 5.85 14.4C6.59531 14.4 7.2 13.7953 7.2 13.05H12.6C12.6 13.7953 13.2047 14.4 13.95 14.4C14.6953 14.4 15.3 13.7953 15.3 13.05H17.325C17.6991 13.05 18 12.7491 18 12.375C18 12.0009 17.6991 11.7 17.325 11.7H13.95H5.85H3.825C3.70125 11.7 3.6 11.5987 3.6 11.475V1.575C3.6 0.705937 2.89406 0 2.025 0H0.675ZM6.75 2.25H10.35V8.55H6.75V2.25ZM5.4 2.25V8.55C5.4 9.29531 6.00469 9.9 6.75 9.9H10.35C11.0953 9.9 11.7 9.29531 11.7 8.55V2.25C11.7 1.50469 11.0953 0.9 10.35 0.9H6.75C6.00469 0.9 5.4 1.50469 5.4 2.25ZM15.75 2.25V4.05H13.95V2.25H15.75ZM13.95 0.9C13.2047 0.9 12.6 1.50469 12.6 2.25V4.05C12.6 4.79531 13.2047 5.4 13.95 5.4H15.75C16.4953 5.4 17.1 4.79531 17.1 4.05V2.25C17.1 1.50469 16.4953 0.9 15.75 0.9H13.95ZM13.95 7.65H16.65V8.55H13.95V7.65ZM12.6 7.65V8.55C12.6 9.29531 13.2047 9.9 13.95 9.9H16.65C17.3953 9.9 18 9.29531 18 8.55V7.65C18 6.90469 17.3953 6.3 16.65 6.3H13.95C13.2047 6.3 12.6 6.90469 12.6 7.65Z" }) }))); };
|
|
@@ -1,34 +1,2 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
|
|
3
|
-
const EmptyRack = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
width: "18",
|
|
5
|
-
height: "18",
|
|
6
|
-
viewBox: "0 0 18 18",
|
|
7
|
-
fill: "none",
|
|
8
|
-
stroke: "#DB2B19",
|
|
9
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("path", {
|
|
12
|
-
d: "M1 1L1 16.4545",
|
|
13
|
-
strokeWidth: "1.54045",
|
|
14
|
-
strokeLinecap: "round"
|
|
15
|
-
}),
|
|
16
|
-
/* @__PURE__ */ jsx("path", {
|
|
17
|
-
d: "M17 15L1 15",
|
|
18
|
-
strokeWidth: "1.54045",
|
|
19
|
-
strokeLinecap: "round"
|
|
20
|
-
}),
|
|
21
|
-
/* @__PURE__ */ jsx("path", {
|
|
22
|
-
d: "M17 9L1 9",
|
|
23
|
-
strokeWidth: "1.54045",
|
|
24
|
-
strokeLinecap: "round"
|
|
25
|
-
}),
|
|
26
|
-
/* @__PURE__ */ jsx("path", {
|
|
27
|
-
d: "M17 3.57574L17 16.4545",
|
|
28
|
-
strokeWidth: "1.54045",
|
|
29
|
-
strokeLinecap: "round"
|
|
30
|
-
})
|
|
31
|
-
]
|
|
32
|
-
});
|
|
33
|
-
//#endregion
|
|
34
|
-
export { EmptyRack };
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export var EmptyRack = function (props) { return (_jsxs("svg", { width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", stroke: "#DB2B19", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { d: "M1 1L1 16.4545", strokeWidth: "1.54045", strokeLinecap: "round" }), _jsx("path", { d: "M17 15L1 15", strokeWidth: "1.54045", strokeLinecap: "round" }), _jsx("path", { d: "M17 9L1 9", strokeWidth: "1.54045", strokeLinecap: "round" }), _jsx("path", { d: "M17 3.57574L17 16.4545", strokeWidth: "1.54045", strokeLinecap: "round" })] })); };
|
|
@@ -1,62 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
strokeLinecap: "round"
|
|
15
|
-
}),
|
|
16
|
-
/* @__PURE__ */ jsx("path", {
|
|
17
|
-
d: "M3 6.5H9",
|
|
18
|
-
strokeWidth: "1.5",
|
|
19
|
-
strokeLinecap: "round"
|
|
20
|
-
}),
|
|
21
|
-
/* @__PURE__ */ jsx("path", {
|
|
22
|
-
d: "M2 9H6",
|
|
23
|
-
strokeWidth: "1.5",
|
|
24
|
-
strokeLinecap: "round"
|
|
25
|
-
}),
|
|
26
|
-
/* @__PURE__ */ jsx("path", {
|
|
27
|
-
d: "M2 12H6",
|
|
28
|
-
strokeWidth: "1.5",
|
|
29
|
-
strokeLinecap: "round"
|
|
30
|
-
}),
|
|
31
|
-
/* @__PURE__ */ jsx("path", {
|
|
32
|
-
d: "M4 15H6",
|
|
33
|
-
strokeWidth: "1.5",
|
|
34
|
-
strokeLinecap: "round"
|
|
35
|
-
}),
|
|
36
|
-
/* @__PURE__ */ jsx("path", {
|
|
37
|
-
d: "M10 15L14 15",
|
|
38
|
-
strokeWidth: "1.5",
|
|
39
|
-
strokeLinecap: "round"
|
|
40
|
-
}),
|
|
41
|
-
/* @__PURE__ */ jsx("path", {
|
|
42
|
-
d: "M12.5 5H15.2639C16.0215 5 16.714 5.428 17.0528 6.10557L18.5 9",
|
|
43
|
-
strokeWidth: "1.5"
|
|
44
|
-
}),
|
|
45
|
-
/* @__PURE__ */ jsx("circle", {
|
|
46
|
-
cx: "16",
|
|
47
|
-
cy: "16",
|
|
48
|
-
r: "2",
|
|
49
|
-
strokeWidth: "1.5",
|
|
50
|
-
strokeLinecap: "round"
|
|
51
|
-
}),
|
|
52
|
-
/* @__PURE__ */ jsx("circle", {
|
|
53
|
-
cx: "8",
|
|
54
|
-
cy: "16",
|
|
55
|
-
r: "2",
|
|
56
|
-
strokeWidth: "1.5",
|
|
57
|
-
strokeLinecap: "round"
|
|
58
|
-
})
|
|
59
|
-
]
|
|
60
|
-
});
|
|
61
|
-
//#endregion
|
|
62
|
-
export { Expeditions };
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
export var Expeditions = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [_jsx("path", { d: "M5 4H12.8C12.9105 4 13 4.08954 13 4.2V8.8C13 8.91046 13.0895 9 13.2 9H18.9C18.963 9 19.0222 9.02964 19.06 9.08L20.46 10.9467C20.486 10.9813 20.5 11.0234 20.5 11.0667V14.8C20.5 14.9105 20.4105 15 20.3 15H18", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M3 6.5H9", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M2 9H6", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M2 12H6", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M4 15H6", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M10 15L14 15", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M12.5 5H15.2639C16.0215 5 16.714 5.428 17.0528 6.10557L18.5 9", strokeWidth: "1.5" }), _jsx("circle", { cx: "16", cy: "16", r: "2", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("circle", { cx: "8", cy: "16", r: "2", strokeWidth: "1.5", strokeLinecap: "round" })] }))); };
|