@mailstep/design-system 0.8.26 → 0.8.27-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +76 -76
- package/package.json +146 -147
- package/ui/Blocks/CommonGrid/CommonGrid.d.ts +3 -4
- package/ui/Blocks/CommonGrid/CommonGrid.js +107 -0
- package/ui/Blocks/CommonGrid/CommonGridContainer.d.ts +2 -3
- package/ui/Blocks/CommonGrid/CommonGridContainer.js +189 -0
- package/ui/Blocks/CommonGrid/HoC/withProps.d.ts +1 -2
- package/ui/Blocks/CommonGrid/HoC/withProps.js +11 -0
- package/ui/Blocks/CommonGrid/HoC/withReduxActions.d.ts +1 -1
- package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +32 -0
- package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.js +109 -0
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.js +39 -0
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.js +81 -0
- package/ui/Blocks/CommonGrid/components/ActionHead/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/ActionHead/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.d.ts +2 -2
- package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.js +45 -0
- package/ui/Blocks/CommonGrid/components/ButtonMore/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/ButtonMore/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/ColumnFilterCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/ColumnFilterCell.js +53 -0
- package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +132 -0
- package/ui/Blocks/CommonGrid/components/ColumnTitle/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/ColumnTitle/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/ColumnTitle.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/ColumnTitle.js +40 -0
- package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.d.ts +3 -3
- package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +160 -0
- package/ui/Blocks/CommonGrid/components/ControlButtons/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/ControlButtons/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/ControlButtons/styles.d.ts +4 -4
- package/ui/Blocks/CommonGrid/components/ControlButtons/styles.js +42 -0
- package/ui/Blocks/CommonGrid/components/DataCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/DataCell.js +37 -0
- package/ui/Blocks/CommonGrid/components/DataRow.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/DataRow.js +62 -0
- package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.d.ts +3 -4
- package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.js +69 -0
- package/ui/Blocks/CommonGrid/components/DropdownButton/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/DropdownButton/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.d.ts +3 -4
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.js +60 -0
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/FilterDropdown.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/FilterDropdown.js +32 -0
- package/ui/Blocks/CommonGrid/components/FilterRow.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/FilterRow.js +30 -0
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.js +34 -0
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.js +37 -0
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.d.ts +3 -4
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.js +152 -0
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/getCleanValues.js +10 -0
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.js +16 -0
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/sameDate.js +4 -0
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.d.ts +3 -4
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.js +95 -0
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.js +6 -0
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.js +147 -0
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/types.d.ts +0 -1
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/types.js +1 -0
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.js +164 -0
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/types.d.ts +0 -1
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/types.js +1 -0
- package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.d.ts +4 -5
- package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.js +81 -0
- package/ui/Blocks/CommonGrid/components/FloatingButton/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/FloatingButton/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/GridInfo/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/GridInfo/index.js +34 -0
- package/ui/Blocks/CommonGrid/components/GridModals/index.d.ts +3 -4
- package/ui/Blocks/CommonGrid/components/GridModals/index.js +136 -0
- package/ui/Blocks/CommonGrid/components/GridStatus/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/GridStatus/index.js +27 -0
- package/ui/Blocks/CommonGrid/components/GroupRow.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/GroupRow.js +29 -0
- package/ui/Blocks/CommonGrid/components/HeadCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/HeadCell.js +37 -0
- package/ui/Blocks/CommonGrid/components/HeadRow.d.ts +3 -4
- package/ui/Blocks/CommonGrid/components/HeadRow.js +72 -0
- package/ui/Blocks/CommonGrid/components/IconList/IconList.d.ts +5 -6
- package/ui/Blocks/CommonGrid/components/IconList/IconList.js +63 -0
- package/ui/Blocks/CommonGrid/components/IconList/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/IconList/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.d.ts +4 -4
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +55 -0
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.d.ts +3 -3
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.js +70 -0
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.d.ts +1 -1
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.js +17 -0
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.js +9 -0
- package/ui/Blocks/CommonGrid/components/MobileFilterModal.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/MobileFilterModal.js +113 -0
- package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.d.ts +1 -1
- package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.js +14 -0
- package/ui/Blocks/CommonGrid/components/MobileSortModal.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/MobileSortModal.js +70 -0
- package/ui/Blocks/CommonGrid/components/OversizedScroll.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/OversizedScroll.js +36 -0
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.d.ts +1 -1
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.js +19 -0
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +92 -0
- package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.js +31 -0
- package/ui/Blocks/CommonGrid/components/QuickFilter/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/QuickFilter/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/Resize.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/Resize.js +48 -0
- package/ui/Blocks/CommonGrid/components/Table.d.ts +8 -8
- package/ui/Blocks/CommonGrid/components/Table.js +42 -0
- package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +66 -0
- package/ui/Blocks/CommonGrid/components/TablePagination/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/TablePagination/index.js +5 -0
- package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +19 -0
- package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +13 -0
- package/ui/Blocks/CommonGrid/components/gridCells/Date.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/Date.js +11 -0
- package/ui/Blocks/CommonGrid/components/gridCells/DateTime.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +13 -0
- package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +30 -0
- package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +52 -0
- package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +34 -0
- package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +31 -0
- package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.d.ts +1 -1
- package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +9 -0
- package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.d.ts +4 -5
- package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +41 -0
- package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +79 -0
- package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +10 -0
- package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +12 -0
- package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +33 -0
- package/ui/Blocks/CommonGrid/components/gridCells/index.js +15 -0
- package/ui/Blocks/CommonGrid/components/icons/Edit.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/icons/Edit.js +14 -0
- package/ui/Blocks/CommonGrid/components/icons/EyeOpen.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +14 -0
- package/ui/Blocks/CommonGrid/components/icons/Sorting.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/icons/Sorting.js +21 -0
- package/ui/Blocks/CommonGrid/components/utils.d.ts +0 -1
- package/ui/Blocks/CommonGrid/components/utils.js +21 -0
- package/ui/Blocks/CommonGrid/hooks/useAddFilter.d.ts +1 -2
- package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +17 -0
- package/ui/Blocks/CommonGrid/hooks/useColumnSizes.d.ts +1 -2
- package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +87 -0
- package/ui/Blocks/CommonGrid/hooks/useCreatePreset.d.ts +0 -1
- package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +32 -0
- package/ui/Blocks/CommonGrid/hooks/useDeletePreset.d.ts +0 -1
- package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +24 -0
- package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.d.ts +1 -2
- package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +58 -0
- package/ui/Blocks/CommonGrid/hooks/useEvent.js +13 -0
- package/ui/Blocks/CommonGrid/hooks/useFloatingButton.d.ts +0 -1
- package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +15 -0
- package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.d.ts +0 -1
- package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +27 -0
- package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.d.ts +0 -1
- package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.js +13 -0
- package/ui/Blocks/CommonGrid/hooks/useManageColumn.d.ts +1 -2
- package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +99 -0
- package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.d.ts +2 -3
- package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +57 -0
- package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +16 -0
- package/ui/Blocks/CommonGrid/hooks/useQuickFilter.d.ts +2 -3
- package/ui/Blocks/CommonGrid/hooks/useQuickFilter.js +78 -0
- package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.d.ts +1 -2
- package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +20 -0
- package/ui/Blocks/CommonGrid/hooks/useSelectPreset.d.ts +0 -1
- package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +21 -0
- package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.d.ts +1 -2
- package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +19 -0
- package/ui/Blocks/CommonGrid/hooks/useUxReset.d.ts +0 -1
- package/ui/Blocks/CommonGrid/hooks/useUxReset.js +14 -0
- package/ui/Blocks/CommonGrid/index.d.ts +6 -7
- package/ui/Blocks/CommonGrid/index.js +26 -0
- package/ui/Blocks/CommonGrid/store/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/store/index.js +293 -0
- package/ui/Blocks/CommonGrid/store/migrateState.d.ts +0 -1
- package/ui/Blocks/CommonGrid/store/migrateState.js +13 -0
- package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.d.ts +2 -3
- package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.js +19 -0
- package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.d.ts +2 -3
- package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.js +22 -0
- package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.d.ts +0 -1
- package/ui/Blocks/CommonGrid/storybook/utils/actions.js +10 -0
- package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.d.ts +1 -2
- package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +125 -0
- package/ui/Blocks/CommonGrid/storybook/utils/utils.d.ts +2 -3
- package/ui/Blocks/CommonGrid/storybook/utils/utils.js +114 -0
- package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +14 -0
- package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +7 -0
- package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +4 -0
- package/ui/Blocks/CommonGrid/styles.d.ts +9 -9
- package/ui/Blocks/CommonGrid/styles.js +253 -0
- package/ui/Blocks/CommonGrid/types.d.ts +1 -2
- package/ui/Blocks/CommonGrid/types.js +22 -0
- package/ui/Blocks/CommonGrid/utils/constants.js +26 -0
- package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.d.ts +1 -2
- package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.js +17 -0
- package/ui/Blocks/CommonGrid/utils/getRowsPerPage.js +10 -0
- package/ui/Blocks/CommonGrid/utils/hasSortTerminated.js +10 -0
- package/ui/Blocks/CommonGrid/utils/index.d.ts +1 -2
- package/ui/Blocks/CommonGrid/utils/index.js +78 -0
- package/ui/Blocks/CornerDialog/CornerDialog.d.ts +2 -3
- package/ui/Blocks/CornerDialog/CornerDialog.js +43 -0
- package/ui/Blocks/CornerDialog/index.d.ts +0 -1
- package/ui/Blocks/CornerDialog/index.js +5 -0
- package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.d.ts +1 -2
- package/ui/Blocks/CornerDialog/styles.d.ts +6 -6
- package/ui/Blocks/CornerDialog/styles.js +57 -0
- package/ui/Blocks/CornerDialog/types.d.ts +1 -2
- package/ui/Blocks/CornerDialog/types.js +1 -0
- package/ui/Blocks/CornerDialog/utils.d.ts +0 -1
- package/ui/Blocks/CornerDialog/utils.js +31 -0
- package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.d.ts +2 -3
- package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.js +16 -0
- package/ui/Blocks/Header/components/MenuItems/index.d.ts +2 -3
- package/ui/Blocks/Header/components/MenuItems/index.js +9 -0
- package/ui/Blocks/Header/components/MenuItems/styles.d.ts +2 -2
- package/ui/Blocks/Header/components/MenuItems/styles.js +22 -0
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.d.ts +1 -2
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.js +23 -0
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.d.ts +2 -2
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.js +14 -0
- package/ui/Blocks/Header/components/UserMenu/hooks/index.js +2 -0
- package/ui/Blocks/Header/components/UserMenu/hooks/useLogout.js +10 -0
- package/ui/Blocks/Header/components/UserMenu/index.d.ts +2 -3
- package/ui/Blocks/Header/components/UserMenu/index.js +49 -0
- package/ui/Blocks/Header/components/UserMenu/styles.d.ts +3 -3
- package/ui/Blocks/Header/components/UserMenu/styles.js +25 -0
- package/ui/Blocks/Header/hooks/useChangeLanguage.js +9 -0
- package/ui/Blocks/Header/index.d.ts +5 -6
- package/ui/Blocks/Header/index.js +45 -0
- package/ui/Blocks/Header/stories/Header.stories.d.ts +6 -7
- package/ui/Blocks/Header/styles.d.ts +4 -4
- package/ui/Blocks/Header/styles.js +34 -0
- package/ui/Blocks/Header/types.js +1 -0
- package/ui/Blocks/Header/utils/constants.js +4 -0
- package/ui/Blocks/Header/utils/languageItems.d.ts +1 -2
- package/ui/Blocks/Header/utils/languageItems.js +15 -0
- package/ui/Blocks/HidePrint/HidePrint.d.ts +1 -2
- package/ui/Blocks/HidePrint/HidePrint.js +13 -0
- package/ui/Blocks/ImageList/ImageList.d.ts +2 -3
- package/ui/Blocks/ImageList/ImageList.js +80 -0
- package/ui/Blocks/ImageList/components/AddPhoto/index.d.ts +2 -3
- package/ui/Blocks/ImageList/components/AddPhoto/index.js +36 -0
- package/ui/Blocks/ImageList/components/AddPhoto/styles.d.ts +2 -2
- package/ui/Blocks/ImageList/components/AddPhoto/styles.js +30 -0
- package/ui/Blocks/ImageList/components/CloseButton/index.d.ts +1 -2
- package/ui/Blocks/ImageList/components/CloseButton/index.js +18 -0
- package/ui/Blocks/ImageList/components/CloseButton/styles.d.ts +1 -1
- package/ui/Blocks/ImageList/components/CloseButton/styles.js +18 -0
- package/ui/Blocks/ImageList/components/ImageElement/index.d.ts +1 -2
- package/ui/Blocks/ImageList/components/ImageElement/index.js +29 -0
- package/ui/Blocks/ImageList/components/ImageElement/styles.d.ts +3 -3
- package/ui/Blocks/ImageList/components/ImageElement/styles.js +22 -0
- package/ui/Blocks/ImageList/components/ImageTag/index.d.ts +1 -2
- package/ui/Blocks/ImageList/components/ImageTag/index.js +15 -0
- package/ui/Blocks/ImageList/components/ImageTag/styles.d.ts +1 -1
- package/ui/Blocks/ImageList/components/ImageTag/styles.js +9 -0
- package/ui/Blocks/ImageList/hooks/useControls.js +14 -0
- package/ui/Blocks/ImageList/hooks/useOnElementClick.d.ts +1 -2
- package/ui/Blocks/ImageList/hooks/useOnElementClick.js +15 -0
- package/ui/Blocks/ImageList/index.d.ts +1 -2
- package/ui/Blocks/ImageList/index.js +5 -0
- package/ui/Blocks/ImageList/stories/ImageList.stories.d.ts +1 -2
- package/ui/Blocks/ImageList/styles.d.ts +2 -2
- package/ui/Blocks/ImageList/styles.js +29 -0
- package/ui/Blocks/ImageList/types.d.ts +1 -2
- package/ui/Blocks/ImageList/types.js +1 -0
- package/ui/Blocks/LanguageSwitch/LanguageSwitch.d.ts +2 -3
- package/ui/Blocks/LanguageSwitch/LanguageSwitch.js +53 -0
- package/ui/Blocks/LanguageSwitch/index.d.ts +1 -2
- package/ui/Blocks/LanguageSwitch/index.js +5 -0
- package/ui/Blocks/LanguageSwitch/stories/LanguageSwith.stories.d.ts +1 -2
- package/ui/Blocks/LanguageSwitch/styles.d.ts +3 -3
- package/ui/Blocks/LanguageSwitch/styles.js +32 -0
- package/ui/Blocks/LanguageSwitch/types.d.ts +0 -1
- package/ui/Blocks/LanguageSwitch/types.js +1 -0
- package/ui/Blocks/LightBox/LightBox.d.ts +2 -3
- package/ui/Blocks/LightBox/LightBox.js +41 -0
- package/ui/Blocks/LightBox/hooks/useLightBox.d.ts +1 -2
- package/ui/Blocks/LightBox/hooks/useLightBox.js +17 -0
- package/ui/Blocks/LightBox/index.d.ts +0 -1
- package/ui/Blocks/LightBox/index.js +6 -0
- package/ui/Blocks/LightBox/stories/LightBox.stories.d.ts +1 -2
- package/ui/Blocks/LightBox/styles.d.ts +4 -4
- package/ui/Blocks/LightBox/styles.js +28 -0
- package/ui/Blocks/LightBox/types.js +1 -0
- package/ui/Blocks/LoginPage/LoginPage.d.ts +2 -3
- package/ui/Blocks/LoginPage/LoginPage.js +63 -0
- package/ui/Blocks/LoginPage/assets/mailship.js +4 -0
- package/ui/Blocks/LoginPage/components/LoginForm.d.ts +0 -1
- package/ui/Blocks/LoginPage/components/LoginForm.js +170 -0
- package/ui/Blocks/LoginPage/components/SocialLinks.d.ts +4 -5
- package/ui/Blocks/LoginPage/components/SocialLinks.js +82 -0
- package/ui/Blocks/LoginPage/index.d.ts +1 -2
- package/ui/Blocks/LoginPage/index.js +5 -0
- package/ui/Blocks/LoginPage/styles.d.ts +7 -8
- package/ui/Blocks/LoginPage/styles.js +75 -0
- package/ui/Blocks/LoginPage/types.d.ts +4 -5
- package/ui/Blocks/LoginPage/types.js +1 -0
- package/ui/Blocks/LoginPage/utils/links.js +10 -0
- package/ui/Blocks/Modal/Modal.d.ts +2 -3
- package/ui/Blocks/Modal/Modal.js +125 -0
- package/ui/Blocks/Modal/hooks/useClickOutside.d.ts +2 -3
- package/ui/Blocks/Modal/hooks/useClickOutside.js +28 -0
- package/ui/Blocks/Modal/hooks/useModal.d.ts +0 -1
- package/ui/Blocks/Modal/hooks/useModal.js +20 -0
- package/ui/Blocks/Modal/index.d.ts +0 -1
- package/ui/Blocks/Modal/index.js +7 -0
- package/ui/Blocks/Modal/stories/Modal.stories.d.ts +1 -2
- package/ui/Blocks/Modal/styles.d.ts +8 -9
- package/ui/Blocks/Modal/styles.js +183 -0
- package/ui/Blocks/Modal/types.d.ts +1 -2
- package/ui/Blocks/Modal/types.js +1 -0
- package/ui/Blocks/Modal/utils.d.ts +0 -1
- package/ui/Blocks/Modal/utils.js +10 -0
- package/ui/Blocks/Popover/index.d.ts +3 -4
- package/ui/Blocks/Popover/index.js +32 -0
- package/ui/Blocks/Scheduler/Scheduler.d.ts +2 -3
- package/ui/Blocks/Scheduler/Scheduler.js +44 -0
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.d.ts +2 -3
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.js +38 -0
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.d.ts +3 -3
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.js +35 -0
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/hooks/useCurrentTime.js +17 -0
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.d.ts +1 -2
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.js +14 -0
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.d.ts +3 -3
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.js +30 -0
- package/ui/Blocks/Scheduler/components/DateChanger/index.d.ts +2 -3
- package/ui/Blocks/Scheduler/components/DateChanger/index.js +50 -0
- package/ui/Blocks/Scheduler/components/DateChanger/styles.d.ts +2 -2
- package/ui/Blocks/Scheduler/components/DateChanger/styles.js +23 -0
- package/ui/Blocks/Scheduler/components/Groups/index.d.ts +2 -3
- package/ui/Blocks/Scheduler/components/Groups/index.js +11 -0
- package/ui/Blocks/Scheduler/components/Groups/styles.d.ts +3 -3
- package/ui/Blocks/Scheduler/components/Groups/styles.js +32 -0
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.d.ts +1 -2
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.js +46 -0
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.d.ts +0 -1
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.js +16 -0
- package/ui/Blocks/Scheduler/components/TimeSlots/index.d.ts +2 -3
- package/ui/Blocks/Scheduler/components/TimeSlots/index.js +48 -0
- package/ui/Blocks/Scheduler/components/TimeSlots/styles.d.ts +4 -4
- package/ui/Blocks/Scheduler/components/TimeSlots/styles.js +52 -0
- package/ui/Blocks/Scheduler/hooks/useChangeDate.d.ts +2 -3
- package/ui/Blocks/Scheduler/hooks/useChangeDate.js +35 -0
- package/ui/Blocks/Scheduler/index.js +2 -0
- package/ui/Blocks/Scheduler/stories/Scheduler.stories.d.ts +1 -2
- package/ui/Blocks/Scheduler/styles.d.ts +2 -2
- package/ui/Blocks/Scheduler/styles.js +23 -0
- package/ui/Blocks/Scheduler/types.d.ts +1 -2
- package/ui/Blocks/Scheduler/types.js +1 -0
- package/ui/Blocks/Scheduler/utils/constants.js +9 -0
- package/ui/Blocks/Scheduler/utils/convertDateToTime.js +6 -0
- package/ui/Blocks/Scheduler/utils/convertIndexToISOString.js +11 -0
- package/ui/Blocks/Scheduler/utils/convertMinutesToDuration.js +10 -0
- package/ui/Blocks/Scheduler/utils/formatDate.js +8 -0
- package/ui/Blocks/Scheduler/utils/generateTimeArray.js +19 -0
- package/ui/Blocks/Scheduler/utils/getClosestStep.js +12 -0
- package/ui/Blocks/Scheduler/utils/getMinutesFromString.js +6 -0
- package/ui/Blocks/Scheduler/utils/getMinutesFromTime.js +7 -0
- package/ui/Blocks/Scheduler/utils/isActiveTime.d.ts +0 -1
- package/ui/Blocks/Scheduler/utils/isActiveTime.js +11 -0
- package/ui/Blocks/Scheduler/utils/isToday.js +7 -0
- package/ui/Blocks/SideMenu/MenuItem.d.ts +2 -3
- package/ui/Blocks/SideMenu/MenuItem.js +103 -0
- package/ui/Blocks/SideMenu/SideMenu.d.ts +2 -3
- package/ui/Blocks/SideMenu/SideMenu.js +37 -0
- package/ui/Blocks/SideMenu/components/Footer.d.ts +3 -4
- package/ui/Blocks/SideMenu/components/Footer.js +64 -0
- package/ui/Blocks/SideMenu/components/HamburgerMenu.js +52 -0
- package/ui/Blocks/SideMenu/components/SubitemTooltip.d.ts +2 -3
- package/ui/Blocks/SideMenu/components/SubitemTooltip.js +53 -0
- package/ui/Blocks/SideMenu/context/LeftMenuContext.d.ts +1 -2
- package/ui/Blocks/SideMenu/context/LeftMenuContext.js +20 -0
- package/ui/Blocks/SideMenu/context/useLeftMenuContext.js +10 -0
- package/ui/Blocks/SideMenu/hooks/useOutsideHover.d.ts +0 -1
- package/ui/Blocks/SideMenu/hooks/useOutsideHover.js +25 -0
- package/ui/Blocks/SideMenu/index.d.ts +1 -2
- package/ui/Blocks/SideMenu/index.js +7 -0
- package/ui/Blocks/SideMenu/stories/SideMenu.stories.d.ts +1 -1
- package/ui/Blocks/SideMenu/stories/menuItems.js +109 -0
- package/ui/Blocks/SideMenu/styles.d.ts +15 -16
- package/ui/Blocks/SideMenu/styles.js +310 -0
- package/ui/Blocks/SideMenu/types.d.ts +1 -2
- package/ui/Blocks/SideMenu/types.js +1 -0
- package/ui/Blocks/SideMenu/utils/constants.js +5 -0
- package/ui/Blocks/Stepper/Stepper.d.ts +2 -3
- package/ui/Blocks/Stepper/Stepper.js +34 -0
- package/ui/Blocks/Stepper/components/StepCircle/index.d.ts +1 -2
- package/ui/Blocks/Stepper/components/StepCircle/index.js +17 -0
- package/ui/Blocks/Stepper/components/StepCircle/styles.d.ts +1 -1
- package/ui/Blocks/Stepper/components/StepCircle/styles.js +23 -0
- package/ui/Blocks/Stepper/components/StepItem/index.d.ts +1 -2
- package/ui/Blocks/Stepper/components/StepItem/index.js +52 -0
- package/ui/Blocks/Stepper/components/StepItem/styles.d.ts +3 -3
- package/ui/Blocks/Stepper/components/StepItem/styles.js +79 -0
- package/ui/Blocks/Stepper/hooks/useStepper.js +33 -0
- package/ui/Blocks/Stepper/index.js +4 -0
- package/ui/Blocks/Stepper/stories/Stepper.stories.d.ts +1 -2
- package/ui/Blocks/Stepper/styles.d.ts +2 -2
- package/ui/Blocks/Stepper/styles.js +25 -0
- package/ui/Blocks/Stepper/types.d.ts +1 -2
- package/ui/Blocks/Stepper/types.js +1 -0
- package/ui/Blocks/Table/Table.d.ts +0 -1
- package/ui/Blocks/Table/Table.js +13 -0
- package/ui/Blocks/Table/index.js +2 -0
- package/ui/Blocks/Table/stories/Table.stories.d.ts +4 -4
- package/ui/Blocks/Table/types.js +1 -0
- package/ui/Blocks/Tabs/TabContent.d.ts +2 -3
- package/ui/Blocks/Tabs/TabContent.js +9 -0
- package/ui/Blocks/Tabs/Tabs.d.ts +2 -3
- package/ui/Blocks/Tabs/Tabs.js +46 -0
- package/ui/Blocks/Tabs/hooks/useTabs.d.ts +0 -1
- package/ui/Blocks/Tabs/hooks/useTabs.js +14 -0
- package/ui/Blocks/Tabs/index.d.ts +0 -1
- package/ui/Blocks/Tabs/index.js +7 -0
- package/ui/Blocks/Tabs/stories/Tabs.stories.d.ts +1 -2
- package/ui/Blocks/Tabs/styles.d.ts +5 -5
- package/ui/Blocks/Tabs/styles.js +95 -0
- package/ui/Blocks/Tabs/types.d.ts +1 -2
- package/ui/Blocks/Tabs/types.js +1 -0
- package/ui/Elements/Alert/Alert.d.ts +0 -1
- package/ui/Elements/Alert/Alert.js +76 -0
- package/ui/Elements/Alert/index.d.ts +1 -2
- package/ui/Elements/Alert/index.js +5 -0
- package/ui/Elements/Alert/stories/Alert.stories.d.ts +2 -3
- package/ui/Elements/Alert/styles.d.ts +9 -9
- package/ui/Elements/Alert/styles.js +82 -0
- package/ui/Elements/Alert/types.d.ts +1 -2
- package/ui/Elements/Alert/types.js +1 -0
- package/ui/Elements/AsyncSelect/AsyncSelect.d.ts +4 -5
- package/ui/Elements/AsyncSelect/AsyncSelect.js +35 -0
- package/ui/Elements/AsyncSelect/index.d.ts +1 -2
- package/ui/Elements/AsyncSelect/index.js +5 -0
- package/ui/Elements/AsyncSelect/stories/AsyncSelect.stories.d.ts +1 -1
- package/ui/Elements/Avatar/Avatar.d.ts +2 -3
- package/ui/Elements/Avatar/Avatar.js +38 -0
- package/ui/Elements/Avatar/index.d.ts +0 -1
- package/ui/Elements/Avatar/index.js +5 -0
- package/ui/Elements/Avatar/stories/Avatar.stories.d.ts +2 -3
- package/ui/Elements/Avatar/types.js +1 -0
- package/ui/Elements/Badge/Badge.d.ts +1 -2
- package/ui/Elements/Badge/Badge.js +52 -0
- package/ui/Elements/Badge/index.d.ts +1 -2
- package/ui/Elements/Badge/index.js +5 -0
- package/ui/Elements/Badge/stories/Badge.stories.d.ts +2 -3
- package/ui/Elements/BarChartSymbol/BarChartSymbol.d.ts +0 -1
- package/ui/Elements/BarChartSymbol/BarChartSymbol.js +22 -0
- package/ui/Elements/BarChartSymbol/index.js +2 -0
- package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.d.ts +2 -3
- package/ui/Elements/BarChartSymbol/styles.d.ts +1 -1
- package/ui/Elements/BarChartSymbol/styles.js +10 -0
- package/ui/Elements/BorderedBox/BorderedBox.d.ts +2 -3
- package/ui/Elements/BorderedBox/BorderedBox.js +21 -0
- package/ui/Elements/BorderedBox/index.d.ts +1 -2
- package/ui/Elements/BorderedBox/index.js +5 -0
- package/ui/Elements/BorderedBox/stories/BorderedBox.stories.d.ts +2 -3
- package/ui/Elements/BorderedBox/types.js +1 -0
- package/ui/Elements/Button/Button.d.ts +2 -3
- package/ui/Elements/Button/Button.js +44 -0
- package/ui/Elements/Button/index.d.ts +1 -2
- package/ui/Elements/Button/index.js +5 -0
- package/ui/Elements/Button/stories/Button.stories.d.ts +2 -3
- package/ui/Elements/Button/styles.d.ts +4 -4
- package/ui/Elements/Button/styles.js +227 -0
- package/ui/Elements/Button/types.d.ts +1 -2
- package/ui/Elements/Button/types.js +1 -0
- package/ui/Elements/Card/Card.d.ts +0 -1
- package/ui/Elements/Card/Card.js +15 -0
- package/ui/Elements/Card/index.d.ts +1 -2
- package/ui/Elements/Card/index.js +5 -0
- package/ui/Elements/Card/stories/Card.stories.d.ts +2 -3
- package/ui/Elements/Card/styles.d.ts +1 -2
- package/ui/Elements/Card/styles.js +22 -0
- package/ui/Elements/Card/types.js +1 -0
- package/ui/Elements/CheckedCircle/index.d.ts +1 -2
- package/ui/Elements/CheckedCircle/index.js +15 -0
- package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.d.ts +2 -3
- package/ui/Elements/CheckedCircle/styles.d.ts +1 -1
- package/ui/Elements/CheckedCircle/styles.js +15 -0
- package/ui/Elements/DatePicker/DatePicker.d.ts +8 -4
- package/ui/Elements/DatePicker/DatePicker.js +89 -0
- package/ui/Elements/DatePicker/Datetime/DateTime.d.ts +3 -4
- package/ui/Elements/DatePicker/Datetime/DateTime.js +428 -0
- package/ui/Elements/DatePicker/Datetime/components/DateRepeater.d.ts +2 -3
- package/ui/Elements/DatePicker/Datetime/components/DateRepeater.js +66 -0
- package/ui/Elements/DatePicker/Datetime/components/FooterRow.d.ts +1 -1
- package/ui/Elements/DatePicker/Datetime/components/FooterRow.js +12 -0
- package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.d.ts +1 -1
- package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.js +16 -0
- package/ui/Elements/DatePicker/Datetime/components/TimeInput.d.ts +1 -1
- package/ui/Elements/DatePicker/Datetime/components/TimeInput.js +16 -0
- package/ui/Elements/DatePicker/Datetime/components/Timepicker.d.ts +1 -2
- package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +164 -0
- package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +31 -0
- package/ui/Elements/DatePicker/Datetime/types.d.ts +2 -3
- package/ui/Elements/DatePicker/Datetime/types.js +14 -0
- package/ui/Elements/DatePicker/Datetime/views/DaysView.d.ts +1 -2
- package/ui/Elements/DatePicker/Datetime/views/DaysView.js +140 -0
- package/ui/Elements/DatePicker/Datetime/views/MonthsView.d.ts +1 -2
- package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +77 -0
- package/ui/Elements/DatePicker/Datetime/views/YearsView.d.ts +1 -2
- package/ui/Elements/DatePicker/Datetime/views/YearsView.js +86 -0
- package/ui/Elements/DatePicker/index.d.ts +1 -2
- package/ui/Elements/DatePicker/index.js +6 -0
- package/ui/Elements/DatePicker/styles.d.ts +1 -1
- package/ui/Elements/DatePicker/styles.js +234 -0
- package/ui/Elements/DatePicker/utils/constants.d.ts +0 -1
- package/ui/Elements/DatePicker/utils/constants.js +29 -0
- package/ui/Elements/Dropdown/Dropdown.d.ts +2 -3
- package/ui/Elements/Dropdown/Dropdown.js +55 -0
- package/ui/Elements/Dropdown/index.d.ts +1 -2
- package/ui/Elements/Dropdown/index.js +5 -0
- package/ui/Elements/Dropdown/stories/Dropdown.stories.d.ts +2 -3
- package/ui/Elements/Dropdown/types.d.ts +0 -1
- package/ui/Elements/Dropdown/types.js +1 -0
- package/ui/Elements/DropdownMenu/DropdownMenu.d.ts +2 -3
- package/ui/Elements/DropdownMenu/DropdownMenu.js +35 -0
- package/ui/Elements/DropdownMenu/components/DefaultItem.d.ts +2 -3
- package/ui/Elements/DropdownMenu/components/DefaultItem.js +32 -0
- package/ui/Elements/DropdownMenu/components/MenuItem.d.ts +2 -3
- package/ui/Elements/DropdownMenu/components/MenuItem.js +59 -0
- package/ui/Elements/DropdownMenu/components/MenuList.d.ts +2 -3
- package/ui/Elements/DropdownMenu/components/MenuList.js +15 -0
- package/ui/Elements/DropdownMenu/index.js +2 -0
- package/ui/Elements/DropdownMenu/types.d.ts +1 -2
- package/ui/Elements/DropdownMenu/types.js +1 -0
- package/ui/Elements/DropdownSelect/DropdownSelect.d.ts +3 -4
- package/ui/Elements/DropdownSelect/DropdownSelect.js +128 -0
- package/ui/Elements/DropdownSelect/index.d.ts +1 -2
- package/ui/Elements/DropdownSelect/index.js +5 -0
- package/ui/Elements/ErrorMessage/ErrorMessage.d.ts +2 -3
- package/ui/Elements/ErrorMessage/ErrorMessage.js +64 -0
- package/ui/Elements/ErrorMessage/index.d.ts +1 -2
- package/ui/Elements/ErrorMessage/index.js +5 -0
- package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.d.ts +2 -3
- package/ui/Elements/ErrorMessage/types.d.ts +0 -1
- package/ui/Elements/ErrorMessage/types.js +1 -0
- package/ui/Elements/HighlightBox/HighlightBox.d.ts +1 -2
- package/ui/Elements/HighlightBox/HighlightBox.js +101 -0
- package/ui/Elements/HighlightBox/index.d.ts +1 -2
- package/ui/Elements/HighlightBox/index.js +5 -0
- package/ui/Elements/Icon/BadgeIcon.d.ts +2 -3
- package/ui/Elements/Icon/BadgeIcon.js +28 -0
- package/ui/Elements/Icon/Icon.d.ts +4 -5
- package/ui/Elements/Icon/Icon.js +283 -0
- package/ui/Elements/Icon/icons/Add.d.ts +1 -2
- package/ui/Elements/Icon/icons/Add.js +33 -0
- package/ui/Elements/Icon/icons/AddPhoto.d.ts +0 -1
- package/ui/Elements/Icon/icons/AddPhoto.js +34 -0
- package/ui/Elements/Icon/icons/Admin.d.ts +0 -1
- package/ui/Elements/Icon/icons/Admin.js +26 -0
- package/ui/Elements/Icon/icons/ArrowDown.d.ts +1 -2
- package/ui/Elements/Icon/icons/ArrowDown.js +18 -0
- package/ui/Elements/Icon/icons/ArrowForward.d.ts +1 -2
- package/ui/Elements/Icon/icons/ArrowForward.js +12 -0
- package/ui/Elements/Icon/icons/ArrowUp.d.ts +1 -2
- package/ui/Elements/Icon/icons/ArrowUp.js +18 -0
- package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.d.ts +1 -2
- package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.js +21 -0
- package/ui/Elements/Icon/icons/ArrowsLeftRight.d.ts +1 -2
- package/ui/Elements/Icon/icons/ArrowsLeftRight.js +12 -0
- package/ui/Elements/Icon/icons/ArrowsUpDown.d.ts +1 -2
- package/ui/Elements/Icon/icons/ArrowsUpDown.js +12 -0
- package/ui/Elements/Icon/icons/BarcodeScan.d.ts +0 -1
- package/ui/Elements/Icon/icons/BarcodeScan.js +13 -0
- package/ui/Elements/Icon/icons/Box.d.ts +0 -1
- package/ui/Elements/Icon/icons/Box.js +17 -0
- package/ui/Elements/Icon/icons/Calendar.d.ts +0 -1
- package/ui/Elements/Icon/icons/Calendar.js +39 -0
- package/ui/Elements/Icon/icons/Cancel.d.ts +0 -1
- package/ui/Elements/Icon/icons/Cancel.js +18 -0
- package/ui/Elements/Icon/icons/CheckedBox.d.ts +1 -2
- package/ui/Elements/Icon/icons/CheckedBox.js +23 -0
- package/ui/Elements/Icon/icons/CircleHalfStroke.d.ts +1 -2
- package/ui/Elements/Icon/icons/CircleHalfStroke.js +12 -0
- package/ui/Elements/Icon/icons/Company.d.ts +0 -1
- package/ui/Elements/Icon/icons/Company.js +82 -0
- package/ui/Elements/Icon/icons/Complaint.d.ts +1 -2
- package/ui/Elements/Icon/icons/Complaint.js +59 -0
- package/ui/Elements/Icon/icons/Consolidation.d.ts +1 -2
- package/ui/Elements/Icon/icons/Consolidation.js +13 -0
- package/ui/Elements/Icon/icons/Container.d.ts +1 -2
- package/ui/Elements/Icon/icons/Container.js +13 -0
- package/ui/Elements/Icon/icons/Dashboard.d.ts +1 -2
- package/ui/Elements/Icon/icons/Dashboard.js +36 -0
- package/ui/Elements/Icon/icons/Desktop.d.ts +1 -2
- package/ui/Elements/Icon/icons/Desktop.js +63 -0
- package/ui/Elements/Icon/icons/Dispatch.d.ts +1 -2
- package/ui/Elements/Icon/icons/Dispatch.js +13 -0
- package/ui/Elements/Icon/icons/EmptyRack.d.ts +0 -1
- package/ui/Elements/Icon/icons/EmptyRack.js +34 -0
- package/ui/Elements/Icon/icons/Expeditions.d.ts +1 -2
- package/ui/Elements/Icon/icons/Expeditions.js +62 -0
- package/ui/Elements/Icon/icons/Filter.d.ts +2 -3
- package/ui/Elements/Icon/icons/Filter.js +17 -0
- package/ui/Elements/Icon/icons/FlagCZ.d.ts +1 -2
- package/ui/Elements/Icon/icons/FlagCZ.js +55 -0
- package/ui/Elements/Icon/icons/FlagEL.d.ts +1 -2
- package/ui/Elements/Icon/icons/FlagEL.js +50 -0
- package/ui/Elements/Icon/icons/FlagESP.d.ts +1 -2
- package/ui/Elements/Icon/icons/FlagESP.js +93 -0
- package/ui/Elements/Icon/icons/FlagHU.d.ts +2 -3
- package/ui/Elements/Icon/icons/FlagHU.js +27 -0
- package/ui/Elements/Icon/icons/FlagITA.d.ts +1 -2
- package/ui/Elements/Icon/icons/FlagITA.js +55 -0
- package/ui/Elements/Icon/icons/FlagNL.d.ts +2 -3
- package/ui/Elements/Icon/icons/FlagNL.js +27 -0
- package/ui/Elements/Icon/icons/FlagRUS.d.ts +1 -2
- package/ui/Elements/Icon/icons/FlagRUS.js +55 -0
- package/ui/Elements/Icon/icons/FlagSVK.d.ts +1 -2
- package/ui/Elements/Icon/icons/FlagSVK.js +92 -0
- package/ui/Elements/Icon/icons/FlagUK.d.ts +1 -2
- package/ui/Elements/Icon/icons/FlagUK.js +20 -0
- package/ui/Elements/Icon/icons/FlagUSA.d.ts +1 -2
- package/ui/Elements/Icon/icons/FlagUSA.js +106 -0
- package/ui/Elements/Icon/icons/Foldable.d.ts +2 -3
- package/ui/Elements/Icon/icons/Foldable.js +34 -0
- package/ui/Elements/Icon/icons/Fragile.d.ts +1 -2
- package/ui/Elements/Icon/icons/Fragile.js +42 -0
- package/ui/Elements/Icon/icons/Gift.d.ts +1 -2
- package/ui/Elements/Icon/icons/Gift.js +41 -0
- package/ui/Elements/Icon/icons/Group.d.ts +0 -1
- package/ui/Elements/Icon/icons/Group.js +17 -0
- package/ui/Elements/Icon/icons/HamburgerMenu.d.ts +1 -2
- package/ui/Elements/Icon/icons/HamburgerMenu.js +41 -0
- package/ui/Elements/Icon/icons/HelpCircle1.d.ts +1 -2
- package/ui/Elements/Icon/icons/HelpCircle1.js +32 -0
- package/ui/Elements/Icon/icons/HorizontalLines.d.ts +0 -1
- package/ui/Elements/Icon/icons/HorizontalLines.js +36 -0
- package/ui/Elements/Icon/icons/ImagePlaceholder.d.ts +0 -1
- package/ui/Elements/Icon/icons/ImagePlaceholder.js +17 -0
- package/ui/Elements/Icon/icons/Income.d.ts +1 -2
- package/ui/Elements/Icon/icons/Income.js +22 -0
- package/ui/Elements/Icon/icons/Info.d.ts +1 -2
- package/ui/Elements/Icon/icons/Info.js +33 -0
- package/ui/Elements/Icon/icons/Integrations.d.ts +0 -1
- package/ui/Elements/Icon/icons/Integrations.js +17 -0
- package/ui/Elements/Icon/icons/Inventory.d.ts +1 -2
- package/ui/Elements/Icon/icons/Inventory.js +45 -0
- package/ui/Elements/Icon/icons/Inventory2.d.ts +1 -2
- package/ui/Elements/Icon/icons/Inventory2.js +66 -0
- package/ui/Elements/Icon/icons/Layout.d.ts +2 -3
- package/ui/Elements/Icon/icons/Layout.js +44 -0
- package/ui/Elements/Icon/icons/Link.d.ts +0 -1
- package/ui/Elements/Icon/icons/Link.js +20 -0
- package/ui/Elements/Icon/icons/Liquid.d.ts +2 -3
- package/ui/Elements/Icon/icons/Liquid.js +22 -0
- package/ui/Elements/Icon/icons/Location.d.ts +1 -2
- package/ui/Elements/Icon/icons/Location.js +13 -0
- package/ui/Elements/Icon/icons/Logout1.d.ts +1 -2
- package/ui/Elements/Icon/icons/Logout1.js +32 -0
- package/ui/Elements/Icon/icons/MachinePackingForbidden.d.ts +2 -3
- package/ui/Elements/Icon/icons/MachinePackingForbidden.js +70 -0
- package/ui/Elements/Icon/icons/MakePhoto.d.ts +1 -2
- package/ui/Elements/Icon/icons/MakePhoto.js +35 -0
- package/ui/Elements/Icon/icons/MenuItems.d.ts +1 -2
- package/ui/Elements/Icon/icons/MenuItems.js +39 -0
- package/ui/Elements/Icon/icons/Message.d.ts +1 -2
- package/ui/Elements/Icon/icons/Message.js +38 -0
- package/ui/Elements/Icon/icons/MobileCancel.d.ts +1 -2
- package/ui/Elements/Icon/icons/MobileCancel.js +22 -0
- package/ui/Elements/Icon/icons/MobilePhone.d.ts +2 -3
- package/ui/Elements/Icon/icons/MobilePhone.js +47 -0
- package/ui/Elements/Icon/icons/Moon.d.ts +1 -2
- package/ui/Elements/Icon/icons/Moon.js +12 -0
- package/ui/Elements/Icon/icons/Notification2.d.ts +1 -2
- package/ui/Elements/Icon/icons/Notification2.js +25 -0
- package/ui/Elements/Icon/icons/OpenBox.d.ts +0 -1
- package/ui/Elements/Icon/icons/OpenBox.js +37 -0
- package/ui/Elements/Icon/icons/Pallet.d.ts +1 -2
- package/ui/Elements/Icon/icons/Pallet.js +36 -0
- package/ui/Elements/Icon/icons/Plus1.d.ts +1 -2
- package/ui/Elements/Icon/icons/Plus1.js +17 -0
- package/ui/Elements/Icon/icons/Print.d.ts +1 -2
- package/ui/Elements/Icon/icons/Print.js +41 -0
- package/ui/Elements/Icon/icons/Product.d.ts +0 -1
- package/ui/Elements/Icon/icons/Product.js +17 -0
- package/ui/Elements/Icon/icons/Products.d.ts +1 -2
- package/ui/Elements/Icon/icons/Products.js +16 -0
- package/ui/Elements/Icon/icons/Profile.d.ts +1 -2
- package/ui/Elements/Icon/icons/Profile.js +25 -0
- package/ui/Elements/Icon/icons/Puzzle1.d.ts +1 -2
- package/ui/Elements/Icon/icons/Puzzle1.js +18 -0
- package/ui/Elements/Icon/icons/QRCode.d.ts +1 -2
- package/ui/Elements/Icon/icons/QRCode.js +19 -0
- package/ui/Elements/Icon/icons/Rack.d.ts +0 -1
- package/ui/Elements/Icon/icons/Rack.js +65 -0
- package/ui/Elements/Icon/icons/Reload.d.ts +2 -3
- package/ui/Elements/Icon/icons/Reload.js +13 -0
- package/ui/Elements/Icon/icons/Return.d.ts +1 -2
- package/ui/Elements/Icon/icons/Return.js +19 -0
- package/ui/Elements/Icon/icons/Rows.d.ts +0 -1
- package/ui/Elements/Icon/icons/Rows.js +39 -0
- package/ui/Elements/Icon/icons/Settings2.d.ts +1 -2
- package/ui/Elements/Icon/icons/Settings2.js +33 -0
- package/ui/Elements/Icon/icons/ShieldUser.d.ts +2 -3
- package/ui/Elements/Icon/icons/ShieldUser.js +9 -0
- package/ui/Elements/Icon/icons/ShoppingBag.d.ts +1 -2
- package/ui/Elements/Icon/icons/ShoppingBag.js +18 -0
- package/ui/Elements/Icon/icons/Sort.d.ts +2 -3
- package/ui/Elements/Icon/icons/Sort.js +23 -0
- package/ui/Elements/Icon/icons/Sun.d.ts +1 -2
- package/ui/Elements/Icon/icons/Sun.js +12 -0
- package/ui/Elements/Icon/icons/ThreeDots.d.ts +0 -1
- package/ui/Elements/Icon/icons/ThreeDots.js +39 -0
- package/ui/Elements/Icon/icons/ToastError.d.ts +0 -1
- package/ui/Elements/Icon/icons/ToastError.js +27 -0
- package/ui/Elements/Icon/icons/ToastSuccess.d.ts +0 -1
- package/ui/Elements/Icon/icons/ToastSuccess.js +27 -0
- package/ui/Elements/Icon/icons/Transfer.d.ts +1 -2
- package/ui/Elements/Icon/icons/Transfer.js +21 -0
- package/ui/Elements/Icon/icons/TrashBin.d.ts +0 -1
- package/ui/Elements/Icon/icons/TrashBin.js +33 -0
- package/ui/Elements/Icon/icons/Truck.d.ts +1 -2
- package/ui/Elements/Icon/icons/Truck.js +73 -0
- package/ui/Elements/Icon/icons/TwoBoxes.d.ts +1 -2
- package/ui/Elements/Icon/icons/TwoBoxes.js +20 -0
- package/ui/Elements/Icon/icons/TwoCheckedBoxes.d.ts +1 -2
- package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +29 -0
- package/ui/Elements/Icon/icons/TwoUsers.d.ts +1 -2
- package/ui/Elements/Icon/icons/TwoUsers.js +42 -0
- package/ui/Elements/Icon/icons/UserCowboy.d.ts +2 -3
- package/ui/Elements/Icon/icons/UserCowboy.js +9 -0
- package/ui/Elements/Icon/icons/Valuable.d.ts +2 -3
- package/ui/Elements/Icon/icons/Valuable.js +34 -0
- package/ui/Elements/Icon/icons/Weight.d.ts +1 -2
- package/ui/Elements/Icon/icons/Weight.js +12 -0
- package/ui/Elements/Icon/icons/index.js +188 -0
- package/ui/Elements/Icon/index.d.ts +1 -2
- package/ui/Elements/Icon/index.js +97 -0
- package/ui/Elements/Icon/stories/BadgeIcon.stories.d.ts +4 -5
- package/ui/Elements/Icon/stories/Icon.stories.d.ts +2 -3
- package/ui/Elements/Icon/types.d.ts +1 -2
- package/ui/Elements/Icon/types.js +1 -0
- package/ui/Elements/Image/Image.d.ts +2 -3
- package/ui/Elements/Image/Image.js +16 -0
- package/ui/Elements/Image/index.d.ts +1 -2
- package/ui/Elements/Image/index.js +5 -0
- package/ui/Elements/Image/stories/Image.stories.d.ts +2 -3
- package/ui/Elements/Image/types.d.ts +1 -2
- package/ui/Elements/Image/types.js +1 -0
- package/ui/Elements/Label/Label.d.ts +2 -2
- package/ui/Elements/Label/Label.js +23 -0
- package/ui/Elements/Label/index.d.ts +0 -1
- package/ui/Elements/Label/index.js +5 -0
- package/ui/Elements/Label/stories/Label.stories.d.ts +2 -3
- package/ui/Elements/Line/Line.d.ts +0 -1
- package/ui/Elements/Line/Line.js +23 -0
- package/ui/Elements/Line/index.d.ts +1 -2
- package/ui/Elements/Line/index.js +5 -0
- package/ui/Elements/Line/stories/Line.stories.d.ts +2 -3
- package/ui/Elements/Line/types.d.ts +1 -2
- package/ui/Elements/Line/types.js +1 -0
- package/ui/Elements/Link/Link.d.ts +1 -2
- package/ui/Elements/Link/Link.js +44 -0
- package/ui/Elements/Link/index.d.ts +1 -2
- package/ui/Elements/Link/index.js +5 -0
- package/ui/Elements/Link/stories/Link.stories.d.ts +2 -3
- package/ui/Elements/Logo/Logo.d.ts +2 -3
- package/ui/Elements/Logo/Logo.js +69 -0
- package/ui/Elements/Logo/assets/mailship/logo_black.js +4 -0
- package/ui/Elements/Logo/assets/mailship/logo_m.js +4 -0
- package/ui/Elements/Logo/assets/mailship/logo_white.js +4 -0
- package/ui/Elements/Logo/assets/mailship/mailship-logo.js +4 -0
- package/ui/Elements/Logo/assets/mailship/mailship-logo.svg +12 -12
- package/ui/Elements/Logo/assets/mailstep/mailstep_black.js +4 -0
- package/ui/Elements/Logo/assets/mailstep/mailstep_black.svg +17 -17
- package/ui/Elements/Logo/assets/mailstep/mailstep_white.js +4 -0
- package/ui/Elements/Logo/assets/mailstep/mailstep_white.svg +17 -17
- package/ui/Elements/Logo/assets/mailstock/mailstock.js +4 -0
- package/ui/Elements/Logo/assets/mailstock/mailstock.svg +12 -12
- package/ui/Elements/Logo/assets/mailwise/mailwiseLogo.js +4 -0
- package/ui/Elements/Logo/assets/mailwise/mailwiseLogo.svg +46 -46
- package/ui/Elements/Logo/assets/mailwise/mailwiseLogoSmall.js +4 -0
- package/ui/Elements/Logo/assets/mailwise/mailwiseLogoSmall.svg +19 -19
- package/ui/Elements/Logo/assets/mailwrap/mailwrapLogo.js +4 -0
- package/ui/Elements/Logo/assets/mailwrap/mailwrapLogoSmall.js +4 -0
- package/ui/Elements/Logo/assets/mailwrap/mailwrapLogoSmall.svg +4 -4
- package/ui/Elements/Logo/assets/warehouse/manager.js +4 -0
- package/ui/Elements/Logo/assets/warehouse/manager.svg +5 -5
- package/ui/Elements/Logo/assets/warehouse/manager2.js +4 -0
- package/ui/Elements/Logo/assets/warehouse/manager2.svg +5 -5
- package/ui/Elements/Logo/assets/warehouse/manager3.js +4 -0
- package/ui/Elements/Logo/assets/warehouse/manager3.svg +4 -4
- package/ui/Elements/Logo/index.d.ts +1 -2
- package/ui/Elements/Logo/index.js +5 -0
- package/ui/Elements/Logo/stories/Logo.stories.d.ts +2 -3
- package/ui/Elements/Logo/types.js +1 -0
- package/ui/Elements/Pagination/Pagination.d.ts +1 -2
- package/ui/Elements/Pagination/Pagination.js +63 -0
- package/ui/Elements/Pagination/index.d.ts +1 -2
- package/ui/Elements/Pagination/index.js +5 -0
- package/ui/Elements/Pagination/stories/Pagination.stories.d.ts +2 -3
- package/ui/Elements/Pagination/styled.d.ts +6 -6
- package/ui/Elements/Pagination/styled.js +64 -0
- package/ui/Elements/Portal/index.d.ts +1 -2
- package/ui/Elements/Portal/index.js +23 -0
- package/ui/Elements/ProgressBar/ProgressBar.d.ts +1 -2
- package/ui/Elements/ProgressBar/ProgressBar.js +17 -0
- package/ui/Elements/ProgressBar/index.d.ts +1 -2
- package/ui/Elements/ProgressBar/index.js +5 -0
- package/ui/Elements/ProgressBar/stories/ProgressBar.stories.d.ts +2 -3
- package/ui/Elements/ProgressBar/styles.d.ts +3 -3
- package/ui/Elements/ProgressBar/styles.js +72 -0
- package/ui/Elements/Select/Select.d.ts +2 -3
- package/ui/Elements/Select/Select.js +97 -0
- package/ui/Elements/Select/components/ChevronOption.js +31 -0
- package/ui/Elements/Select/components/ConnectedMenu.js +26 -0
- package/ui/Elements/Select/components/CountMultiValue.d.ts +1 -2
- package/ui/Elements/Select/components/CountMultiValue.js +42 -0
- package/ui/Elements/Select/components/CustomInput.js +13 -0
- package/ui/Elements/Select/components/DropdownIndicator.d.ts +1 -2
- package/ui/Elements/Select/components/DropdownIndicator.js +30 -0
- package/ui/Elements/Select/components/IconValueContainer.js +30 -0
- package/ui/Elements/Select/components/SelectAll.d.ts +2 -2
- package/ui/Elements/Select/components/SelectAll.js +90 -0
- package/ui/Elements/Select/components/SelectedIndicator.d.ts +1 -1
- package/ui/Elements/Select/components/SelectedIndicator.js +7 -0
- package/ui/Elements/Select/components/SimplifiedOption.d.ts +1 -1
- package/ui/Elements/Select/components/SimplifiedOption.js +17 -0
- package/ui/Elements/Select/index.d.ts +1 -2
- package/ui/Elements/Select/index.js +5 -0
- package/ui/Elements/Select/styles.d.ts +5 -6
- package/ui/Elements/Select/styles.js +19 -0
- package/ui/Elements/Select/themes/index.d.ts +2 -3
- package/ui/Elements/Select/themes/index.js +41 -0
- package/ui/Elements/Select/themes/selectStyles.d.ts +1 -2
- package/ui/Elements/Select/themes/selectStyles.js +197 -0
- package/ui/Elements/Select/types.d.ts +3 -4
- package/ui/Elements/Select/types.js +1 -0
- package/ui/Elements/SimpleLink/SimpleLink.d.ts +2 -3
- package/ui/Elements/SimpleLink/SimpleLink.js +35 -0
- package/ui/Elements/SimpleLink/index.d.ts +1 -2
- package/ui/Elements/SimpleLink/index.js +5 -0
- package/ui/Elements/SingleSelect/SingleSelect.d.ts +2 -3
- package/ui/Elements/SingleSelect/SingleSelect.js +150 -0
- package/ui/Elements/SingleSelect/index.d.ts +1 -2
- package/ui/Elements/SingleSelect/index.js +5 -0
- package/ui/Elements/SpaceAround/SpaceAround.d.ts +2 -3
- package/ui/Elements/SpaceAround/SpaceAround.js +33 -0
- package/ui/Elements/SpaceAround/index.d.ts +1 -2
- package/ui/Elements/SpaceAround/index.js +5 -0
- package/ui/Elements/SpaceAround/stories/SpaceAround.stories.d.ts +2 -3
- package/ui/Elements/SpaceAround/types.js +1 -0
- package/ui/Elements/Spinner/Spinner.d.ts +2 -3
- package/ui/Elements/Spinner/Spinner.js +39 -0
- package/ui/Elements/Spinner/index.d.ts +1 -2
- package/ui/Elements/Spinner/index.js +5 -0
- package/ui/Elements/Spinner/stories/Spinner.stories.d.ts +2 -3
- package/ui/Elements/Spinner/styles.d.ts +2 -2
- package/ui/Elements/Spinner/styles.js +36 -0
- package/ui/Elements/Spinner/types.js +1 -0
- package/ui/Elements/Table/Table.d.ts +6 -6
- package/ui/Elements/Table/Table.js +45 -0
- package/ui/Elements/Table/index.js +2 -0
- package/ui/Elements/Table/stories/Table.stories.d.ts +1 -1
- package/ui/Elements/Tag/Tag.d.ts +2 -3
- package/ui/Elements/Tag/Tag.js +52 -0
- package/ui/Elements/Tag/index.d.ts +1 -2
- package/ui/Elements/Tag/index.js +6 -0
- package/ui/Elements/Tag/palettes.d.ts +1 -2
- package/ui/Elements/Tag/palettes.js +52 -0
- package/ui/Elements/Tag/stories/Tag.stories.d.ts +2 -3
- package/ui/Elements/Tag/stories/components/predefinedTags.js +19 -0
- package/ui/Elements/Tag/types.js +1 -0
- package/ui/Elements/Text/Text.d.ts +2 -3
- package/ui/Elements/Text/Text.js +10 -0
- package/ui/Elements/Text/index.d.ts +1 -2
- package/ui/Elements/Text/index.js +2 -0
- package/ui/Elements/Text/stories/Text.stories.d.ts +2 -3
- package/ui/Elements/Text/types.d.ts +0 -1
- package/ui/Elements/Text/types.js +1 -0
- package/ui/Elements/Toast/Toast.d.ts +1 -2
- package/ui/Elements/Toast/Toast.js +36 -0
- package/ui/Elements/Toast/constants.d.ts +1 -2
- package/ui/Elements/Toast/constants.js +21 -0
- package/ui/Elements/Toast/index.d.ts +1 -2
- package/ui/Elements/Toast/index.js +5 -0
- package/ui/Elements/Toast/stories/Toast.stories.d.ts +2 -3
- package/ui/Elements/Toast/styles.d.ts +5 -5
- package/ui/Elements/Toast/styles.js +76 -0
- package/ui/Elements/Toggle/Toggle.d.ts +2 -3
- package/ui/Elements/Toggle/Toggle.js +124 -0
- package/ui/Elements/Toggle/index.d.ts +1 -2
- package/ui/Elements/Toggle/index.js +5 -0
- package/ui/Elements/Toggle/stories/Toggle.stories.d.ts +2 -3
- package/ui/Elements/Toggle/types.d.ts +0 -1
- package/ui/Elements/Toggle/types.js +1 -0
- package/ui/Elements/Tooltip/Tooltip.d.ts +2 -3
- package/ui/Elements/Tooltip/Tooltip.js +51 -0
- package/ui/Elements/Tooltip/index.d.ts +1 -2
- package/ui/Elements/Tooltip/index.js +5 -0
- package/ui/Elements/Tooltip/stories/Tooltip.stories.d.ts +2 -3
- package/ui/Elements/Typography/Typography.d.ts +2 -3
- package/ui/Elements/Typography/Typography.js +75 -0
- package/ui/Elements/Typography/index.d.ts +0 -1
- package/ui/Elements/Typography/index.js +5 -0
- package/ui/Elements/Typography/stories/Typography.stories.d.ts +1 -2
- package/ui/Forms/Checkbox/Checkbox.d.ts +2 -3
- package/ui/Forms/Checkbox/Checkbox.js +44 -0
- package/ui/Forms/Checkbox/index.d.ts +1 -2
- package/ui/Forms/Checkbox/index.js +5 -0
- package/ui/Forms/Checkbox/stories/Checkbox.stories.d.ts +1 -2
- package/ui/Forms/Checkbox/styles.d.ts +4 -4
- package/ui/Forms/Checkbox/styles.js +94 -0
- package/ui/Forms/Checkbox/types.d.ts +1 -2
- package/ui/Forms/Checkbox/types.js +1 -0
- package/ui/Forms/Input/Input.d.ts +2 -3
- package/ui/Forms/Input/Input.js +129 -0
- package/ui/Forms/Input/index.d.ts +0 -1
- package/ui/Forms/Input/index.js +5 -0
- package/ui/Forms/Input/stories/Input.stories.d.ts +2 -3
- package/ui/Forms/Input/styles.d.ts +9 -9
- package/ui/Forms/Input/styles.js +219 -0
- package/ui/Forms/Input/types.d.ts +1 -2
- package/ui/Forms/Input/types.js +1 -0
- package/ui/Forms/RadioButton/RadioButton.d.ts +2 -3
- package/ui/Forms/RadioButton/RadioButton.js +24 -0
- package/ui/Forms/RadioButton/index.d.ts +1 -2
- package/ui/Forms/RadioButton/index.js +5 -0
- package/ui/Forms/RadioButton/stories/RadioButton.stories.d.ts +2 -3
- package/ui/Forms/RadioButton/styles.d.ts +6 -6
- package/ui/Forms/RadioButton/styles.js +86 -0
- package/ui/Forms/RadioButton/types.d.ts +0 -1
- package/ui/Forms/RadioButton/types.js +1 -0
- package/ui/Forms/TextArea/TextArea.d.ts +2 -3
- package/ui/Forms/TextArea/TextArea.js +35 -0
- package/ui/Forms/TextArea/index.d.ts +1 -2
- package/ui/Forms/TextArea/index.js +5 -0
- package/ui/Forms/TextArea/styles.d.ts +5 -5
- package/ui/Forms/TextArea/styles.js +76 -0
- package/ui/System/Fonts/index.js +54 -0
- package/ui/ThemeProvider/ThemeProvider.d.ts +3 -4
- package/ui/ThemeProvider/ThemeProvider.js +17 -0
- package/ui/ThemeProvider/index.d.ts +2 -3
- package/ui/ThemeProvider/index.js +6 -0
- package/ui/ThemeProvider/themes/default.js +186 -0
- package/ui/ThemeProvider/themes/index.d.ts +1 -1
- package/ui/ThemeProvider/themes/index.js +11 -0
- package/ui/ThemeProvider/themes/light.d.ts +1 -2
- package/ui/ThemeProvider/themes/light.js +7 -0
- package/ui/ThemeProvider/themes/mailwise.js +230 -0
- package/ui/ThemeProvider/types.d.ts +1 -2
- package/ui/ThemeProvider/types.js +1 -0
- package/ui/_virtual/_rolldown/runtime.js +13 -0
- package/ui/hooks/useToggleAndClose.js +18 -0
- package/ui/index.d.ts +47 -48
- package/ui/index.js +179 -0
- package/ui/packages/assets/fonts/Inter-Bold_mailstep.js +4 -0
- package/ui/packages/assets/fonts/Inter-Light_mailstep.js +4 -0
- package/ui/packages/assets/fonts/Inter-Medium_mailstep.js +4 -0
- package/ui/packages/assets/fonts/Inter-Regular_mailstep.js +4 -0
- package/ui/packages/assets/fonts/Inter-SemiBold_mailstep.js +4 -0
- package/ui/utils/CheckDeviceWidth/checkDeviceWidth.js +17 -0
- package/ui/utils/CreateRgba/createRgba.d.ts +0 -1
- package/ui/utils/CreateRgba/createRgba.js +12 -0
- package/ui/utils/CreateRgba/types.js +1 -0
- package/ui/utils/KeyPress/KeyPress.d.ts +0 -1
- package/ui/utils/KeyPress/KeyPress.js +16 -0
- package/ui/utils/KeyPress/KeyPress.stories.d.ts +1 -2
- package/ui/utils/KeyPress/index.d.ts +1 -2
- package/ui/utils/KeyPress/index.js +5 -0
- package/ui/utils/KeyPress/types.js +1 -0
- package/ui/utils/LinguiContainer/index.js +13 -0
- package/ui/utils/index.d.ts +4 -5
- package/ui/utils/index.js +9 -0
- package/ui/utils/translations.d.ts +1 -2
- package/ui/utils/translations.js +338 -0
- package/ui/index.es.js +0 -47189
- package/ui/index.umd.js +0 -4234
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/Logout1.tsx
|
|
3
|
+
const Logout1 = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "24",
|
|
5
|
+
height: "24",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
fill: "none",
|
|
8
|
+
stroke: "#374151",
|
|
9
|
+
...props,
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ jsx("path", {
|
|
12
|
+
d: "M15.016 7.38951V6.45652C15.016 4.42151 13.366 2.77151 11.331 2.77151H6.45597C4.42197 2.77151 2.77197 4.42151 2.77197 6.45652V17.5865C2.77197 19.6215 4.42197 21.2715 6.45597 21.2715H11.341C13.37 21.2715 15.016 19.6265 15.016 17.5975V16.6545",
|
|
13
|
+
strokeWidth: "1.5",
|
|
14
|
+
strokeLinecap: "round",
|
|
15
|
+
strokeLinejoin: "round"
|
|
16
|
+
}),
|
|
17
|
+
/* @__PURE__ */ jsx("path", {
|
|
18
|
+
d: "M21.8095 12.0214H9.76849",
|
|
19
|
+
strokeWidth: "1.5",
|
|
20
|
+
strokeLinecap: "round",
|
|
21
|
+
strokeLinejoin: "round"
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ jsx("path", {
|
|
24
|
+
d: "M18.8812 9.10632L21.8092 12.0213L18.8812 14.9373",
|
|
25
|
+
strokeWidth: "1.5",
|
|
26
|
+
strokeLinecap: "round",
|
|
27
|
+
strokeLinejoin: "round"
|
|
28
|
+
})
|
|
29
|
+
]
|
|
30
|
+
});
|
|
31
|
+
//#endregion
|
|
32
|
+
export { Logout1 };
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/MachinePackingForbidden.tsx
|
|
3
|
+
const MachinePackingForbidden = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "36",
|
|
5
|
+
height: "36",
|
|
6
|
+
viewBox: "0 0 36 36",
|
|
7
|
+
stroke: "#9E4800",
|
|
8
|
+
fill: "none",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...props,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ jsx("path", {
|
|
13
|
+
d: "M22.2528 27.3712C21.4091 28.2149 19.9804 27.9422 19.5068 26.8471V26.8471C19.2314 26.2103 19.3731 25.47 19.8643 24.98L29.0757 15.7896C30.0129 14.8545 31.613 15.3182 31.905 16.6095V16.6095C32.0324 17.1728 31.862 17.762 31.4537 18.1703L22.2528 27.3712Z",
|
|
14
|
+
strokeWidth: "1.10624"
|
|
15
|
+
}),
|
|
16
|
+
/* @__PURE__ */ jsx("path", {
|
|
17
|
+
d: "M20.8705 28.0185L7.88937 28.0225C6.81307 28.0229 5.83955 27.3834 5.4123 26.3956V26.3956C4.96707 25.3661 5.20519 24.1686 6.01037 23.3878L10.3613 19.1687",
|
|
18
|
+
strokeWidth: "1.10624"
|
|
19
|
+
}),
|
|
20
|
+
/* @__PURE__ */ jsx("path", {
|
|
21
|
+
d: "M10.3612 21.3812L10.3612 13.6375L12.5737 11.425L20.8705 11.425L20.8705 18.6156L18.1049 21.3812L10.3612 21.3812Z",
|
|
22
|
+
strokeWidth: "1.10624"
|
|
23
|
+
}),
|
|
24
|
+
/* @__PURE__ */ jsx("path", {
|
|
25
|
+
d: "M12.0206 14.1907H18.1049L19.2111 13.0845",
|
|
26
|
+
strokeWidth: "1.10624"
|
|
27
|
+
}),
|
|
28
|
+
/* @__PURE__ */ jsx("rect", {
|
|
29
|
+
x: "12.8502",
|
|
30
|
+
y: "19.4453",
|
|
31
|
+
width: "0.553121",
|
|
32
|
+
height: "0.553121",
|
|
33
|
+
fill: "black",
|
|
34
|
+
strokeWidth: "0.553121"
|
|
35
|
+
}),
|
|
36
|
+
/* @__PURE__ */ jsx("rect", {
|
|
37
|
+
x: "15.0627",
|
|
38
|
+
y: "19.4453",
|
|
39
|
+
width: "0.553121",
|
|
40
|
+
height: "0.553121",
|
|
41
|
+
fill: "black",
|
|
42
|
+
strokeWidth: "0.553121"
|
|
43
|
+
}),
|
|
44
|
+
/* @__PURE__ */ jsx("path", {
|
|
45
|
+
d: "M20.8704 16.9562L23.636 16.9562L26.4016 14.1906L26.4016 7L18.1048 7L15.8923 9.21248L15.8923 11.425",
|
|
46
|
+
strokeWidth: "1.10624"
|
|
47
|
+
}),
|
|
48
|
+
/* @__PURE__ */ jsx("path", {
|
|
49
|
+
d: "M17.5517 9.76567H23.636L24.7423 8.65942",
|
|
50
|
+
strokeWidth: "1.10624"
|
|
51
|
+
}),
|
|
52
|
+
/* @__PURE__ */ jsx("rect", {
|
|
53
|
+
x: "20.5939",
|
|
54
|
+
y: "15.0202",
|
|
55
|
+
width: "0.553121",
|
|
56
|
+
height: "0.553121",
|
|
57
|
+
fill: "black",
|
|
58
|
+
strokeWidth: "0.553121"
|
|
59
|
+
}),
|
|
60
|
+
/* @__PURE__ */ jsx("line", {
|
|
61
|
+
x1: "29.7071",
|
|
62
|
+
y1: "5.70711",
|
|
63
|
+
x2: "4.70711",
|
|
64
|
+
y2: "30.7071",
|
|
65
|
+
strokeWidth: "2"
|
|
66
|
+
})
|
|
67
|
+
]
|
|
68
|
+
});
|
|
69
|
+
//#endregion
|
|
70
|
+
export { MachinePackingForbidden };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/MakePhoto.tsx
|
|
3
|
+
const MakePhoto = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "24",
|
|
5
|
+
height: "24",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
fill: "none",
|
|
8
|
+
stroke: "#22394E",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...props,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ jsx("path", {
|
|
13
|
+
fillRule: "evenodd",
|
|
14
|
+
clipRule: "evenodd",
|
|
15
|
+
d: "M17.6377 7.10987C17.2647 7.10987 16.9267 6.89487 16.7677 6.55887C16.4807 5.95087 16.1157 5.17387 15.8997 4.75087C15.5807 4.12187 15.0637 3.75587 14.3477 3.75087C14.3357 3.74987 9.66376 3.74987 9.65176 3.75087C8.93576 3.75587 8.41976 4.12187 8.09976 4.75087C7.88476 5.17387 7.51976 5.95087 7.23276 6.55887C7.07376 6.89487 6.73476 7.10987 6.36276 7.10987C4.36676 7.10987 2.74976 8.72687 2.74976 10.7219L2.74976 16.6579C2.74976 18.6519 4.36676 20.2699 6.36276 20.2699L17.6377 20.2699C19.6327 20.2699 21.2497 18.6519 21.2497 16.6579L21.2497 10.7219C21.2497 8.72687 19.6327 7.10987 17.6377 7.10987Z",
|
|
16
|
+
strokeWidth: "1.5",
|
|
17
|
+
strokeLinecap: "round",
|
|
18
|
+
strokeLinejoin: "round"
|
|
19
|
+
}),
|
|
20
|
+
/* @__PURE__ */ jsx("path", {
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M8.82139 13.3345C8.82039 15.0875 10.2514 16.5215 12.0014 16.5205C13.7484 16.5185 15.1754 15.0905 15.1784 13.3415C15.1814 11.5855 13.7554 10.1545 12.0034 10.1525C10.2414 10.1505 8.80739 11.6055 8.82139 13.3345Z",
|
|
24
|
+
strokeWidth: "1.5",
|
|
25
|
+
strokeLinecap: "round",
|
|
26
|
+
strokeLinejoin: "round"
|
|
27
|
+
}),
|
|
28
|
+
/* @__PURE__ */ jsx("path", {
|
|
29
|
+
d: "M16.5392 9.80995L16.5392 9.80995L16.54 9.80805C16.571 9.73747 16.5999 9.69016 16.6574 9.63231C16.7068 9.59037 16.7521 9.56032 16.8148 9.5318C17.0023 9.46148 17.2237 9.51198 17.3508 9.63902L17.3508 9.63903L17.3534 9.64159C17.3735 9.66141 17.3933 9.68463 17.4102 9.70806C17.4226 9.72528 17.4311 9.73931 17.4363 9.74872L17.4511 9.7867L17.4553 9.79744L17.46 9.80798C17.486 9.8665 17.5 9.9322 17.5 10.0005C17.5 10.1214 17.4561 10.2419 17.3488 10.3579C17.2703 10.4349 17.169 10.4834 17.06 10.4964L17.0002 10.4994L16.9431 10.4965C16.9056 10.4917 16.8609 10.4809 16.7989 10.4565C16.7374 10.4284 16.6907 10.3971 16.6427 10.3492C16.5483 10.2468 16.5 10.1205 16.5 10.0005C16.5 9.93165 16.5142 9.86606 16.5392 9.80995ZM16.0823 9.60681C16.1368 9.48285 16.2014 9.37829 16.3182 9.26456L16.0823 9.60681Z",
|
|
30
|
+
fill: "#200E32"
|
|
31
|
+
})
|
|
32
|
+
]
|
|
33
|
+
});
|
|
34
|
+
//#endregion
|
|
35
|
+
export { MakePhoto };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/MenuItems.tsx
|
|
3
|
+
const MenuItems = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "24",
|
|
5
|
+
height: "24",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
fill: "#42526E",
|
|
8
|
+
...props,
|
|
9
|
+
children: [
|
|
10
|
+
/* @__PURE__ */ jsx("rect", {
|
|
11
|
+
x: "24",
|
|
12
|
+
y: "24",
|
|
13
|
+
width: "24",
|
|
14
|
+
height: "24",
|
|
15
|
+
rx: "5.4",
|
|
16
|
+
transform: "rotate(180 24 24)"
|
|
17
|
+
}),
|
|
18
|
+
/* @__PURE__ */ jsx("g", {
|
|
19
|
+
clipPath: "url(#clip0_334_574)",
|
|
20
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
21
|
+
d: "M16.95 12.124L9.72446 12.124M9.72446 12.124L12.8211 9.59512M9.72446 12.124L12.8211 14.653",
|
|
22
|
+
stroke: "#A3B3C1",
|
|
23
|
+
strokeWidth: "0.9",
|
|
24
|
+
strokeLinecap: "round"
|
|
25
|
+
})
|
|
26
|
+
}),
|
|
27
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
|
|
28
|
+
id: "clip0_334_574",
|
|
29
|
+
children: /* @__PURE__ */ jsx("rect", {
|
|
30
|
+
width: "13.2",
|
|
31
|
+
height: "13.2",
|
|
32
|
+
fill: "white",
|
|
33
|
+
transform: "matrix(-1 0 0 -1 18.6 18.6)"
|
|
34
|
+
})
|
|
35
|
+
}) })
|
|
36
|
+
]
|
|
37
|
+
});
|
|
38
|
+
//#endregion
|
|
39
|
+
export { MenuItems };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/Message.tsx
|
|
3
|
+
const Message = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "18",
|
|
5
|
+
height: "18",
|
|
6
|
+
viewBox: "0 0 18 18",
|
|
7
|
+
fill: "none",
|
|
8
|
+
stroke: "black",
|
|
9
|
+
...props,
|
|
10
|
+
children: [/* @__PURE__ */ jsxs("g", {
|
|
11
|
+
"clip-path": "url(#clip0_1226_2769)",
|
|
12
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
13
|
+
x: "0.75",
|
|
14
|
+
y: "1.5",
|
|
15
|
+
width: "16.5",
|
|
16
|
+
height: "15",
|
|
17
|
+
rx: "3",
|
|
18
|
+
strokeWidth: "1.5",
|
|
19
|
+
strokeMiterlimit: "10",
|
|
20
|
+
strokeLinecap: "round",
|
|
21
|
+
strokeLinejoin: "round"
|
|
22
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
23
|
+
d: "M3.75 5.25L7.83752 8.16966C8.53292 8.66637 9.46708 8.66637 10.1625 8.16966L14.25 5.25",
|
|
24
|
+
strokeWidth: "1.5",
|
|
25
|
+
strokeMiterlimit: "10",
|
|
26
|
+
strokeLinecap: "round",
|
|
27
|
+
strokeLinejoin: "round"
|
|
28
|
+
})]
|
|
29
|
+
}), /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
|
|
30
|
+
id: "clip0_1226_2769",
|
|
31
|
+
children: /* @__PURE__ */ jsx("rect", {
|
|
32
|
+
width: "18",
|
|
33
|
+
height: "18"
|
|
34
|
+
})
|
|
35
|
+
}) })]
|
|
36
|
+
});
|
|
37
|
+
//#endregion
|
|
38
|
+
export { Message };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/MobileCancel.tsx
|
|
3
|
+
const MobileCancel = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "36",
|
|
5
|
+
height: "36",
|
|
6
|
+
viewBox: "0 0 36 36",
|
|
7
|
+
fill: "none",
|
|
8
|
+
...props,
|
|
9
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
10
|
+
width: "36",
|
|
11
|
+
height: "36",
|
|
12
|
+
rx: "18",
|
|
13
|
+
fill: "neutral20"
|
|
14
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
clipRule: "evenodd",
|
|
17
|
+
d: "M23.5181 13.5128C23.811 13.2199 23.811 12.745 23.5181 12.4521C23.2252 12.1592 22.7503 12.1592 22.4574 12.4521L18.4851 16.4245L14.5127 12.4521C14.2198 12.1592 13.7449 12.1592 13.452 12.4521C13.1591 12.745 13.1591 13.2199 13.452 13.5128L17.4244 17.4851L13.452 21.4575C13.1591 21.7504 13.1591 22.2253 13.452 22.5182C13.7449 22.8111 14.2198 22.8111 14.5127 22.5182L18.4851 18.5458L22.4574 22.5182C22.7503 22.8111 23.2252 22.8111 23.5181 22.5182C23.811 22.2253 23.811 21.7504 23.5181 21.4575L19.5457 17.4851L23.5181 13.5128Z",
|
|
18
|
+
fill: "#111D27"
|
|
19
|
+
})]
|
|
20
|
+
});
|
|
21
|
+
//#endregion
|
|
22
|
+
export { MobileCancel };
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/MobilePhone.tsx
|
|
3
|
+
const MobilePhone = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
width: "24",
|
|
6
|
+
height: "24",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "black",
|
|
9
|
+
...props,
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ jsx("rect", {
|
|
12
|
+
x: "6",
|
|
13
|
+
y: "2",
|
|
14
|
+
width: "12",
|
|
15
|
+
height: "20",
|
|
16
|
+
rx: "3",
|
|
17
|
+
ry: "3"
|
|
18
|
+
}),
|
|
19
|
+
/* @__PURE__ */ jsx("rect", {
|
|
20
|
+
x: "7.75",
|
|
21
|
+
y: "5.25",
|
|
22
|
+
width: "8.5",
|
|
23
|
+
height: "13.5",
|
|
24
|
+
rx: "1.25",
|
|
25
|
+
ry: "1.25",
|
|
26
|
+
fill: "white"
|
|
27
|
+
}),
|
|
28
|
+
/* @__PURE__ */ jsx("rect", {
|
|
29
|
+
x: "10",
|
|
30
|
+
y: "4.25",
|
|
31
|
+
width: "4",
|
|
32
|
+
height: "0.5",
|
|
33
|
+
rx: "0.25",
|
|
34
|
+
fill: "white"
|
|
35
|
+
}),
|
|
36
|
+
/* @__PURE__ */ jsx("rect", {
|
|
37
|
+
x: "9.5",
|
|
38
|
+
y: "19.25",
|
|
39
|
+
width: "5",
|
|
40
|
+
height: "0.5",
|
|
41
|
+
rx: "0.25",
|
|
42
|
+
fill: "white"
|
|
43
|
+
})
|
|
44
|
+
]
|
|
45
|
+
});
|
|
46
|
+
//#endregion
|
|
47
|
+
export { MobilePhone };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/Moon.tsx
|
|
3
|
+
const Moon = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
+
width: "18",
|
|
5
|
+
height: "18",
|
|
6
|
+
viewBox: "0 0 384 512",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
...props,
|
|
9
|
+
children: /* @__PURE__ */ jsx("path", { d: "M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z" })
|
|
10
|
+
});
|
|
11
|
+
//#endregion
|
|
12
|
+
export { Moon };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/Notification2.tsx
|
|
3
|
+
const Notification2 = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "24",
|
|
5
|
+
height: "24",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
fill: "none",
|
|
8
|
+
stroke: "#22394E",
|
|
9
|
+
...props,
|
|
10
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
11
|
+
fillRule: "evenodd",
|
|
12
|
+
clipRule: "evenodd",
|
|
13
|
+
d: "M5.00068 13.701V13.5208C5.02713 12.9875 5.19814 12.4709 5.49606 12.0241C5.99194 11.4874 6.3314 10.8297 6.47882 10.12C6.47882 9.57143 6.47882 9.01507 6.52676 8.46655C6.77445 5.8258 9.38717 4 11.968 4H12.0319C14.6126 4 17.2253 5.8258 17.481 8.46655C17.5289 9.01507 17.481 9.57143 17.5209 10.12C17.6703 10.8313 18.0095 11.491 18.5037 12.0319C18.8038 12.4748 18.9751 12.9896 18.9991 13.5208V13.6932C19.017 14.4095 18.7701 15.1081 18.304 15.66C17.6881 16.3054 16.8523 16.7068 15.9549 16.7884C13.3234 17.0705 10.6684 17.0705 8.03686 16.7884C7.14047 16.7033 6.30592 16.3024 5.68782 15.66C5.22894 15.1077 4.98537 14.4133 5.00068 13.701Z",
|
|
14
|
+
strokeWidth: "1.5",
|
|
15
|
+
strokeLinecap: "round",
|
|
16
|
+
strokeLinejoin: "round"
|
|
17
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
18
|
+
d: "M10 19C10.415 19.5457 11.0244 19.899 11.6934 19.9815C12.3624 20.0639 13.0358 19.8689 13.5645 19.4395C13.7271 19.3125 13.8734 19.1648 14 19",
|
|
19
|
+
strokeWidth: "1.5",
|
|
20
|
+
strokeLinecap: "round",
|
|
21
|
+
strokeLinejoin: "round"
|
|
22
|
+
})]
|
|
23
|
+
});
|
|
24
|
+
//#endregion
|
|
25
|
+
export { Notification2 };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/OpenBox.tsx
|
|
3
|
+
const OpenBox = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "47",
|
|
5
|
+
height: "47",
|
|
6
|
+
viewBox: "0 0 47 47",
|
|
7
|
+
fill: "none",
|
|
8
|
+
stroke: "#22394E",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...props,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ jsx("rect", {
|
|
13
|
+
x: "7",
|
|
14
|
+
y: "22",
|
|
15
|
+
width: "33",
|
|
16
|
+
height: "19",
|
|
17
|
+
rx: "1.92557",
|
|
18
|
+
strokeWidth: "2.88835"
|
|
19
|
+
}),
|
|
20
|
+
/* @__PURE__ */ jsx("rect", {
|
|
21
|
+
width: "37",
|
|
22
|
+
height: "9",
|
|
23
|
+
rx: "1.92557",
|
|
24
|
+
transform: "matrix(1 0 0 -1 5 18)",
|
|
25
|
+
strokeWidth: "2.88835"
|
|
26
|
+
}),
|
|
27
|
+
/* @__PURE__ */ jsx("line", {
|
|
28
|
+
x1: "15",
|
|
29
|
+
y1: "29.5558",
|
|
30
|
+
x2: "33",
|
|
31
|
+
y2: "29.5558",
|
|
32
|
+
strokeWidth: "2.88835"
|
|
33
|
+
})
|
|
34
|
+
]
|
|
35
|
+
});
|
|
36
|
+
//#endregion
|
|
37
|
+
export { OpenBox };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/Pallet.tsx
|
|
3
|
+
const Pallet = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "60",
|
|
5
|
+
height: "47",
|
|
6
|
+
viewBox: "0 0 60 47",
|
|
7
|
+
fill: "#7A90A1",
|
|
8
|
+
stroke: "#7A90A1",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...props,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ jsxs("mask", {
|
|
13
|
+
id: "path-1-outside-1_4169_16824",
|
|
14
|
+
maskUnits: "userSpaceOnUse",
|
|
15
|
+
x: "-1",
|
|
16
|
+
y: "-1",
|
|
17
|
+
width: "62",
|
|
18
|
+
height: "49",
|
|
19
|
+
fill: "black",
|
|
20
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
21
|
+
fill: "white",
|
|
22
|
+
x: "-1",
|
|
23
|
+
y: "-1",
|
|
24
|
+
width: "62",
|
|
25
|
+
height: "49"
|
|
26
|
+
}), /* @__PURE__ */ jsx("path", { d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z" })]
|
|
27
|
+
}),
|
|
28
|
+
/* @__PURE__ */ jsx("path", { d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z" }),
|
|
29
|
+
/* @__PURE__ */ jsx("path", {
|
|
30
|
+
d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z",
|
|
31
|
+
mask: "url(#path-1-outside-1_4169_16824)"
|
|
32
|
+
})
|
|
33
|
+
]
|
|
34
|
+
});
|
|
35
|
+
//#endregion
|
|
36
|
+
export { Pallet };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/Plus1.tsx
|
|
3
|
+
const Plus1 = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
+
width: "20",
|
|
5
|
+
height: "20",
|
|
6
|
+
viewBox: "0 0 20 20",
|
|
7
|
+
fill: "none",
|
|
8
|
+
...props,
|
|
9
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
clipRule: "evenodd",
|
|
12
|
+
d: "M10 5C10.5523 5 11 5.44772 11 6V9H14C14.5523 9 15 9.44772 15 10C15 10.5523 14.5523 11 14 11H11V14C11 14.5523 10.5523 15 10 15C9.44771 15 9 14.5523 9 14V11H6C5.44772 11 5 10.5523 5 10C5 9.44771 5.44772 9 6 9H9V6C9 5.44772 9.44771 5 10 5Z",
|
|
13
|
+
fill: "white"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { Plus1 };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/Print.tsx
|
|
3
|
+
const Print = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
width: "24",
|
|
5
|
+
height: "24",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
stroke: "#22394E",
|
|
8
|
+
fill: "none",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...props,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ jsx("path", {
|
|
13
|
+
d: "M17 17H19C20.1046 17 21 16.1046 21 15L21 11C21 9.89543 20.1046 9 19 9L5 9C3.89543 9 3 9.89543 3 11L3 15C3 16.1046 3.89543 17 5 17H7M9 21L15 21C16.1046 21 17 20.1046 17 19V15C17 13.8954 16.1046 13 15 13H9C7.89543 13 7 13.8954 7 15L7 19C7 20.1046 7.89543 21 9 21ZM17 9V5C17 3.89543 16.1046 3 15 3L9 3C7.89543 3 7 3.89543 7 5L7 9L17 9Z",
|
|
14
|
+
strokeWidth: "1.5",
|
|
15
|
+
strokeLinecap: "round",
|
|
16
|
+
strokeLinejoin: "round"
|
|
17
|
+
}),
|
|
18
|
+
/* @__PURE__ */ jsx("rect", {
|
|
19
|
+
x: "17",
|
|
20
|
+
y: "11",
|
|
21
|
+
width: "2",
|
|
22
|
+
height: "1"
|
|
23
|
+
}),
|
|
24
|
+
/* @__PURE__ */ jsx("rect", {
|
|
25
|
+
x: "9.25",
|
|
26
|
+
y: "15.25",
|
|
27
|
+
width: "5.5",
|
|
28
|
+
height: "0.5",
|
|
29
|
+
strokeWidth: "0.5"
|
|
30
|
+
}),
|
|
31
|
+
/* @__PURE__ */ jsx("rect", {
|
|
32
|
+
x: "9.25",
|
|
33
|
+
y: "18.25",
|
|
34
|
+
width: "5.5",
|
|
35
|
+
height: "0.5",
|
|
36
|
+
strokeWidth: "0.5"
|
|
37
|
+
})
|
|
38
|
+
]
|
|
39
|
+
});
|
|
40
|
+
//#endregion
|
|
41
|
+
export { Print };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/Product.tsx
|
|
3
|
+
const Product = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
+
width: "43",
|
|
5
|
+
height: "32",
|
|
6
|
+
viewBox: "0 0 43 32",
|
|
7
|
+
stroke: "black",
|
|
8
|
+
fill: "none",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...props,
|
|
11
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
12
|
+
d: "M5.88054 9.67078V28.466C5.88054 29.5294 6.74264 30.3916 7.80611 30.3916H21.8425M37.2723 9.04288V9.67078V28.466C37.2723 29.5295 36.4102 30.3916 35.3468 30.3916H21.8425M37.2723 9.04288H39.1538C40.5328 9.04288 41.4648 7.63584 40.9268 6.36613L39.3661 2.68243C39.0645 1.97052 38.3663 1.50806 37.5931 1.50806H21.8425M37.2723 9.04288H26.3103C25.5371 9.04288 24.8389 8.58042 24.5373 7.86851L21.8425 1.50806M21.8425 1.50806L5.2093 1.50806C4.34742 1.50806 3.59051 2.08079 3.35623 2.91021L2.31575 6.59391C1.96867 7.82272 2.89193 9.04288 4.16882 9.04288H17.3747C18.1478 9.04288 18.846 8.58042 19.1477 7.86851L21.8425 1.50806ZM21.8425 1.50806V16.5777M21.8425 21.6009V30.3916M10.1371 25.3683H14.3936M10.1371 20.3451H16.7879",
|
|
13
|
+
strokeWidth: "2.88835"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { Product };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
//#region packages/ui/Elements/Icon/icons/Products.tsx
|
|
3
|
+
const Products = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
+
width: "22",
|
|
5
|
+
height: "22",
|
|
6
|
+
viewBox: "0 0 22 22",
|
|
7
|
+
fill: "none",
|
|
8
|
+
stroke: "#A3B3C1",
|
|
9
|
+
...props,
|
|
10
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
11
|
+
d: "M3.08945 7.41522V16.2C3.08945 16.6971 3.49239 17.1 3.98945 17.1H10.55M17.7618 7.12174V7.41522V16.2C17.7618 16.6971 17.3589 17.1 16.8618 17.1H10.55M17.7618 7.12174H18.6412C19.2857 7.12174 19.7213 6.4641 19.4699 5.87064L18.7404 4.1489C18.5995 3.81616 18.2731 3.60001 17.9117 3.60001H10.55M17.7618 7.12174H12.6382C12.2768 7.12174 11.9505 6.90559 11.8095 6.57285L10.55 3.60001M10.55 3.60001L2.77571 3.60001C2.37288 3.60001 2.0191 3.8677 1.9096 4.25537L1.42329 5.97711C1.26106 6.55145 1.69259 7.12174 2.2894 7.12174H8.46174C8.82312 7.12174 9.14945 6.90559 9.29043 6.57285L10.55 3.60001ZM10.55 3.60001V10.6435M10.55 12.9913V17.1",
|
|
12
|
+
strokeWidth: "1.35"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
//#endregion
|
|
16
|
+
export { Products };
|