@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,92 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
height: "19.5",
|
|
15
|
-
rx: "1.75",
|
|
16
|
-
fill: "white",
|
|
17
|
-
stroke: "#F5F5F5",
|
|
18
|
-
strokeWidth: "0.5"
|
|
19
|
-
}),
|
|
20
|
-
/* @__PURE__ */ jsx("mask", {
|
|
21
|
-
id: "mask0_48_1842",
|
|
22
|
-
maskUnits: "userSpaceOnUse",
|
|
23
|
-
x: "0",
|
|
24
|
-
y: "0",
|
|
25
|
-
width: "28",
|
|
26
|
-
height: "20",
|
|
27
|
-
children: /* @__PURE__ */ jsx("rect", {
|
|
28
|
-
x: "0.25",
|
|
29
|
-
y: "0.25",
|
|
30
|
-
width: "27.5",
|
|
31
|
-
height: "19.5",
|
|
32
|
-
rx: "1.75",
|
|
33
|
-
fill: "white",
|
|
34
|
-
stroke: "white",
|
|
35
|
-
strokeWidth: "0.5"
|
|
36
|
-
})
|
|
37
|
-
}),
|
|
38
|
-
/* @__PURE__ */ jsxs("g", {
|
|
39
|
-
mask: "url(#mask0_48_1842)",
|
|
40
|
-
children: [
|
|
41
|
-
/* @__PURE__ */ jsx("path", {
|
|
42
|
-
fillRule: "evenodd",
|
|
43
|
-
clipRule: "evenodd",
|
|
44
|
-
d: "M0 13.3333H28V6.66666H0V13.3333Z",
|
|
45
|
-
fill: "#0C47B7"
|
|
46
|
-
}),
|
|
47
|
-
/* @__PURE__ */ jsx("path", {
|
|
48
|
-
fillRule: "evenodd",
|
|
49
|
-
clipRule: "evenodd",
|
|
50
|
-
d: "M0 20H28V13.3333H0V20Z",
|
|
51
|
-
fill: "#E53B35"
|
|
52
|
-
}),
|
|
53
|
-
/* @__PURE__ */ jsx("path", {
|
|
54
|
-
d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z",
|
|
55
|
-
fill: "#F73744",
|
|
56
|
-
stroke: "white",
|
|
57
|
-
strokeWidth: "1.33333"
|
|
58
|
-
}),
|
|
59
|
-
/* @__PURE__ */ jsx("mask", {
|
|
60
|
-
id: "mask1_48_1842",
|
|
61
|
-
maskUnits: "userSpaceOnUse",
|
|
62
|
-
x: "4",
|
|
63
|
-
y: "2",
|
|
64
|
-
width: "12",
|
|
65
|
-
height: "16",
|
|
66
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
67
|
-
d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z",
|
|
68
|
-
fill: "white",
|
|
69
|
-
stroke: "white",
|
|
70
|
-
strokeWidth: "1.33333"
|
|
71
|
-
})
|
|
72
|
-
}),
|
|
73
|
-
/* @__PURE__ */ jsxs("g", {
|
|
74
|
-
mask: "url(#mask1_48_1842)",
|
|
75
|
-
children: [/* @__PURE__ */ jsx("path", {
|
|
76
|
-
fillRule: "evenodd",
|
|
77
|
-
clipRule: "evenodd",
|
|
78
|
-
d: "M9.33331 11C9.33331 10.8159 9.18407 10.6667 8.99998 10.6667H7.66665C7.48255 10.6667 7.33331 10.5174 7.33331 10.3333V9.66668C7.33331 9.48258 7.48255 9.33334 7.66665 9.33334H8.99998C9.18407 9.33334 9.33331 9.1841 9.33331 9.00001V8.33334C9.33331 8.14925 9.18407 8.00001 8.99998 8.00001H8.33331C8.14922 8.00001 7.99998 7.85077 7.99998 7.66668V7.00001C7.99998 6.81592 8.14922 6.66668 8.33331 6.66668H8.99998C9.18407 6.66668 9.33331 6.51744 9.33331 6.33334V5.66668C9.33331 5.48258 9.48255 5.33334 9.66665 5.33334H10.3333C10.5174 5.33334 10.6666 5.48258 10.6666 5.66668V6.33334C10.6666 6.51744 10.8159 6.66668 11 6.66668H11.6666C11.8507 6.66668 12 6.81592 12 7.00001V7.66668C12 7.85077 11.8507 8.00001 11.6666 8.00001H11C10.8159 8.00001 10.6666 8.14925 10.6666 8.33334V9.00001C10.6666 9.1841 10.8159 9.33334 11 9.33334H12.3333C12.5174 9.33334 12.6666 9.48258 12.6666 9.66668V10.3333C12.6666 10.5174 12.5174 10.6667 12.3333 10.6667H11C10.8159 10.6667 10.6666 10.8159 10.6666 11V13C10.6666 13.1841 10.5174 13.3333 10.3333 13.3333H9.66665C9.48255 13.3333 9.33331 13.1841 9.33331 13V11Z",
|
|
79
|
-
fill: "white"
|
|
80
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
81
|
-
fillRule: "evenodd",
|
|
82
|
-
clipRule: "evenodd",
|
|
83
|
-
d: "M11.2035 13.4254C10.9889 12.9767 10.5307 12.6667 10 12.6667C9.46934 12.6667 9.01109 12.9767 8.79647 13.4254C7.17545 13.6808 6 14.4384 6 15.3333C6 16.4379 7.79086 17.3333 10 17.3333C12.2091 17.3333 14 16.4379 14 15.3333C14 14.4384 12.8246 13.6808 11.2035 13.4254Z",
|
|
84
|
-
fill: "#1251A1"
|
|
85
|
-
})]
|
|
86
|
-
})
|
|
87
|
-
]
|
|
88
|
-
})
|
|
89
|
-
]
|
|
90
|
-
});
|
|
91
|
-
//#endregion
|
|
92
|
-
export { FlagSVK };
|
|
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 FlagSVK = function (props) { return (_jsxs("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [_jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), _jsx("mask", { id: "mask0_48_1842", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: _jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), _jsxs("g", { mask: "url(#mask0_48_1842)", children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 13.3333H28V6.66666H0V13.3333Z", fill: "#0C47B7" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H28V13.3333H0V20Z", fill: "#E53B35" }), _jsx("path", { d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z", fill: "#F73744", stroke: "white", strokeWidth: "1.33333" }), _jsx("mask", { id: "mask1_48_1842", maskUnits: "userSpaceOnUse", x: "4", y: "2", width: "12", height: "16", children: _jsx("path", { d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z", fill: "white", stroke: "white", strokeWidth: "1.33333" }) }), _jsxs("g", { mask: "url(#mask1_48_1842)", children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.33331 11C9.33331 10.8159 9.18407 10.6667 8.99998 10.6667H7.66665C7.48255 10.6667 7.33331 10.5174 7.33331 10.3333V9.66668C7.33331 9.48258 7.48255 9.33334 7.66665 9.33334H8.99998C9.18407 9.33334 9.33331 9.1841 9.33331 9.00001V8.33334C9.33331 8.14925 9.18407 8.00001 8.99998 8.00001H8.33331C8.14922 8.00001 7.99998 7.85077 7.99998 7.66668V7.00001C7.99998 6.81592 8.14922 6.66668 8.33331 6.66668H8.99998C9.18407 6.66668 9.33331 6.51744 9.33331 6.33334V5.66668C9.33331 5.48258 9.48255 5.33334 9.66665 5.33334H10.3333C10.5174 5.33334 10.6666 5.48258 10.6666 5.66668V6.33334C10.6666 6.51744 10.8159 6.66668 11 6.66668H11.6666C11.8507 6.66668 12 6.81592 12 7.00001V7.66668C12 7.85077 11.8507 8.00001 11.6666 8.00001H11C10.8159 8.00001 10.6666 8.14925 10.6666 8.33334V9.00001C10.6666 9.1841 10.8159 9.33334 11 9.33334H12.3333C12.5174 9.33334 12.6666 9.48258 12.6666 9.66668V10.3333C12.6666 10.5174 12.5174 10.6667 12.3333 10.6667H11C10.8159 10.6667 10.6666 10.8159 10.6666 11V13C10.6666 13.1841 10.5174 13.3333 10.3333 13.3333H9.66665C9.48255 13.3333 9.33331 13.1841 9.33331 13V11Z", fill: "white" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.2035 13.4254C10.9889 12.9767 10.5307 12.6667 10 12.6667C9.46934 12.6667 9.01109 12.9767 8.79647 13.4254C7.17545 13.6808 6 14.4384 6 15.3333C6 16.4379 7.79086 17.3333 10 17.3333C12.2091 17.3333 14 16.4379 14 15.3333C14 14.4384 12.8246 13.6808 11.2035 13.4254Z", fill: "#1251A1" })] })] })] }))); };
|
|
@@ -1,20 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
height: "10",
|
|
15
|
-
y: "10",
|
|
16
|
-
fill: "#FFD700"
|
|
17
|
-
})]
|
|
18
|
-
});
|
|
19
|
-
//#endregion
|
|
20
|
-
export { FlagUK };
|
|
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 FlagUK = function (props) { return (_jsxs("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "28", height: "20" }, props, { children: [_jsx("rect", { width: "28", height: "20", fill: "#0057B7" }), _jsx("rect", { width: "28", height: "10", y: "10", fill: "#FFD700" })] }))); };
|
|
@@ -1,106 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
fill: "white"
|
|
15
|
-
}),
|
|
16
|
-
/* @__PURE__ */ jsx("mask", {
|
|
17
|
-
id: "mask0_48_2135",
|
|
18
|
-
maskUnits: "userSpaceOnUse",
|
|
19
|
-
x: "0",
|
|
20
|
-
y: "0",
|
|
21
|
-
width: "28",
|
|
22
|
-
height: "20",
|
|
23
|
-
children: /* @__PURE__ */ jsx("rect", {
|
|
24
|
-
width: "28",
|
|
25
|
-
height: "20",
|
|
26
|
-
rx: "2",
|
|
27
|
-
fill: "white"
|
|
28
|
-
})
|
|
29
|
-
}),
|
|
30
|
-
/* @__PURE__ */ jsxs("g", {
|
|
31
|
-
mask: "url(#mask0_48_2135)",
|
|
32
|
-
children: [
|
|
33
|
-
/* @__PURE__ */ jsx("path", {
|
|
34
|
-
fillRule: "evenodd",
|
|
35
|
-
clipRule: "evenodd",
|
|
36
|
-
d: "M28 0H0V1.33333H28V0ZM28 2.66667H0V4H28V2.66667ZM0 5.33333H28V6.66667H0V5.33333ZM28 8H0V9.33333H28V8ZM0 10.6667H28V12H0V10.6667ZM28 13.3333H0V14.6667H28V13.3333ZM0 16H28V17.3333H0V16ZM28 18.6667H0V20H28V18.6667Z",
|
|
37
|
-
fill: "#D02F44"
|
|
38
|
-
}),
|
|
39
|
-
/* @__PURE__ */ jsx("rect", {
|
|
40
|
-
width: "12",
|
|
41
|
-
height: "9.33333",
|
|
42
|
-
fill: "#46467F"
|
|
43
|
-
}),
|
|
44
|
-
/* @__PURE__ */ jsx("g", {
|
|
45
|
-
filter: "url(#filter0_d_48_2135)",
|
|
46
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
47
|
-
fillRule: "evenodd",
|
|
48
|
-
clipRule: "evenodd",
|
|
49
|
-
d: "M2.66671 2.00001C2.66671 2.3682 2.36823 2.66668 2.00004 2.66668C1.63185 2.66668 1.33337 2.3682 1.33337 2.00001C1.33337 1.63182 1.63185 1.33334 2.00004 1.33334C2.36823 1.33334 2.66671 1.63182 2.66671 2.00001ZM5.33337 2.00001C5.33337 2.3682 5.0349 2.66668 4.66671 2.66668C4.29852 2.66668 4.00004 2.3682 4.00004 2.00001C4.00004 1.63182 4.29852 1.33334 4.66671 1.33334C5.0349 1.33334 5.33337 1.63182 5.33337 2.00001ZM7.33337 2.66668C7.70156 2.66668 8.00004 2.3682 8.00004 2.00001C8.00004 1.63182 7.70156 1.33334 7.33337 1.33334C6.96518 1.33334 6.66671 1.63182 6.66671 2.00001C6.66671 2.3682 6.96518 2.66668 7.33337 2.66668ZM10.6667 2.00001C10.6667 2.3682 10.3682 2.66668 10 2.66668C9.63185 2.66668 9.33337 2.3682 9.33337 2.00001C9.33337 1.63182 9.63185 1.33334 10 1.33334C10.3682 1.33334 10.6667 1.63182 10.6667 2.00001ZM3.33337 4.00001C3.70156 4.00001 4.00004 3.70153 4.00004 3.33334C4.00004 2.96515 3.70156 2.66668 3.33337 2.66668C2.96518 2.66668 2.66671 2.96515 2.66671 3.33334C2.66671 3.70153 2.96518 4.00001 3.33337 4.00001ZM6.66671 3.33334C6.66671 3.70153 6.36823 4.00001 6.00004 4.00001C5.63185 4.00001 5.33337 3.70153 5.33337 3.33334C5.33337 2.96515 5.63185 2.66668 6.00004 2.66668C6.36823 2.66668 6.66671 2.96515 6.66671 3.33334ZM8.66671 4.00001C9.0349 4.00001 9.33337 3.70153 9.33337 3.33334C9.33337 2.96515 9.0349 2.66668 8.66671 2.66668C8.29852 2.66668 8.00004 2.96515 8.00004 3.33334C8.00004 3.70153 8.29852 4.00001 8.66671 4.00001ZM10.6667 4.66668C10.6667 5.03487 10.3682 5.33334 10 5.33334C9.63185 5.33334 9.33337 5.03487 9.33337 4.66668C9.33337 4.29849 9.63185 4.00001 10 4.00001C10.3682 4.00001 10.6667 4.29849 10.6667 4.66668ZM7.33337 5.33334C7.70156 5.33334 8.00004 5.03487 8.00004 4.66668C8.00004 4.29849 7.70156 4.00001 7.33337 4.00001C6.96518 4.00001 6.66671 4.29849 6.66671 4.66668C6.66671 5.03487 6.96518 5.33334 7.33337 5.33334ZM5.33337 4.66668C5.33337 5.03487 5.0349 5.33334 4.66671 5.33334C4.29852 5.33334 4.00004 5.03487 4.00004 4.66668C4.00004 4.29849 4.29852 4.00001 4.66671 4.00001C5.0349 4.00001 5.33337 4.29849 5.33337 4.66668ZM2.00004 5.33334C2.36823 5.33334 2.66671 5.03487 2.66671 4.66668C2.66671 4.29849 2.36823 4.00001 2.00004 4.00001C1.63185 4.00001 1.33337 4.29849 1.33337 4.66668C1.33337 5.03487 1.63185 5.33334 2.00004 5.33334ZM4.00004 6.00001C4.00004 6.3682 3.70156 6.66668 3.33337 6.66668C2.96518 6.66668 2.66671 6.3682 2.66671 6.00001C2.66671 5.63182 2.96518 5.33334 3.33337 5.33334C3.70156 5.33334 4.00004 5.63182 4.00004 6.00001ZM6.00004 6.66668C6.36823 6.66668 6.66671 6.3682 6.66671 6.00001C6.66671 5.63182 6.36823 5.33334 6.00004 5.33334C5.63185 5.33334 5.33337 5.63182 5.33337 6.00001C5.33337 6.3682 5.63185 6.66668 6.00004 6.66668ZM9.33337 6.00001C9.33337 6.3682 9.0349 6.66668 8.66671 6.66668C8.29852 6.66668 8.00004 6.3682 8.00004 6.00001C8.00004 5.63182 8.29852 5.33334 8.66671 5.33334C9.0349 5.33334 9.33337 5.63182 9.33337 6.00001ZM10 8.00001C10.3682 8.00001 10.6667 7.70153 10.6667 7.33334C10.6667 6.96515 10.3682 6.66668 10 6.66668C9.63185 6.66668 9.33337 6.96515 9.33337 7.33334C9.33337 7.70153 9.63185 8.00001 10 8.00001ZM8.00004 7.33334C8.00004 7.70153 7.70156 8.00001 7.33337 8.00001C6.96518 8.00001 6.66671 7.70153 6.66671 7.33334C6.66671 6.96515 6.96518 6.66668 7.33337 6.66668C7.70156 6.66668 8.00004 6.96515 8.00004 7.33334ZM4.66671 8.00001C5.0349 8.00001 5.33337 7.70153 5.33337 7.33334C5.33337 6.96515 5.0349 6.66668 4.66671 6.66668C4.29852 6.66668 4.00004 6.96515 4.00004 7.33334C4.00004 7.70153 4.29852 8.00001 4.66671 8.00001ZM2.66671 7.33334C2.66671 7.70153 2.36823 8.00001 2.00004 8.00001C1.63185 8.00001 1.33337 7.70153 1.33337 7.33334C1.33337 6.96515 1.63185 6.66668 2.00004 6.66668C2.36823 6.66668 2.66671 6.96515 2.66671 7.33334Z",
|
|
50
|
-
fill: "url(#paint0_linear_48_2135)"
|
|
51
|
-
})
|
|
52
|
-
})
|
|
53
|
-
]
|
|
54
|
-
}),
|
|
55
|
-
/* @__PURE__ */ jsxs("defs", { children: [/* @__PURE__ */ jsxs("filter", {
|
|
56
|
-
id: "filter0_d_48_2135",
|
|
57
|
-
x: "1.33337",
|
|
58
|
-
y: "1.33334",
|
|
59
|
-
width: "9.33337",
|
|
60
|
-
height: "7.66666",
|
|
61
|
-
filterUnits: "userSpaceOnUse",
|
|
62
|
-
colorInterpolationFilters: "sRGB",
|
|
63
|
-
children: [
|
|
64
|
-
/* @__PURE__ */ jsx("feFlood", {
|
|
65
|
-
floodOpacity: "0",
|
|
66
|
-
result: "BackgroundImageFix"
|
|
67
|
-
}),
|
|
68
|
-
/* @__PURE__ */ jsx("feColorMatrix", {
|
|
69
|
-
in: "SourceAlpha",
|
|
70
|
-
type: "matrix",
|
|
71
|
-
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
72
|
-
result: "hardAlpha"
|
|
73
|
-
}),
|
|
74
|
-
/* @__PURE__ */ jsx("feOffset", { dy: "1" }),
|
|
75
|
-
/* @__PURE__ */ jsx("feColorMatrix", {
|
|
76
|
-
type: "matrix",
|
|
77
|
-
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"
|
|
78
|
-
}),
|
|
79
|
-
/* @__PURE__ */ jsx("feBlend", {
|
|
80
|
-
mode: "normal",
|
|
81
|
-
in2: "BackgroundImageFix",
|
|
82
|
-
result: "effect1_dropShadow_48_2135"
|
|
83
|
-
}),
|
|
84
|
-
/* @__PURE__ */ jsx("feBlend", {
|
|
85
|
-
mode: "normal",
|
|
86
|
-
in: "SourceGraphic",
|
|
87
|
-
in2: "effect1_dropShadow_48_2135",
|
|
88
|
-
result: "shape"
|
|
89
|
-
})
|
|
90
|
-
]
|
|
91
|
-
}), /* @__PURE__ */ jsxs("linearGradient", {
|
|
92
|
-
id: "paint0_linear_48_2135",
|
|
93
|
-
x1: "1.33337",
|
|
94
|
-
y1: "1.33334",
|
|
95
|
-
x2: "1.33337",
|
|
96
|
-
y2: "8.00001",
|
|
97
|
-
gradientUnits: "userSpaceOnUse",
|
|
98
|
-
children: [/* @__PURE__ */ jsx("stop", { stopColor: "white" }), /* @__PURE__ */ jsx("stop", {
|
|
99
|
-
offset: "1",
|
|
100
|
-
stopColor: "#F0F0F0"
|
|
101
|
-
})]
|
|
102
|
-
})] })
|
|
103
|
-
]
|
|
104
|
-
});
|
|
105
|
-
//#endregion
|
|
106
|
-
export { FlagUSA };
|
|
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 FlagUSA = function (props) { return (_jsxs("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [_jsx("rect", { width: "28", height: "20", rx: "2", fill: "white" }), _jsx("mask", { id: "mask0_48_2135", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: _jsx("rect", { width: "28", height: "20", rx: "2", fill: "white" }) }), _jsxs("g", { mask: "url(#mask0_48_2135)", children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M28 0H0V1.33333H28V0ZM28 2.66667H0V4H28V2.66667ZM0 5.33333H28V6.66667H0V5.33333ZM28 8H0V9.33333H28V8ZM0 10.6667H28V12H0V10.6667ZM28 13.3333H0V14.6667H28V13.3333ZM0 16H28V17.3333H0V16ZM28 18.6667H0V20H28V18.6667Z", fill: "#D02F44" }), _jsx("rect", { width: "12", height: "9.33333", fill: "#46467F" }), _jsx("g", { filter: "url(#filter0_d_48_2135)", children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.66671 2.00001C2.66671 2.3682 2.36823 2.66668 2.00004 2.66668C1.63185 2.66668 1.33337 2.3682 1.33337 2.00001C1.33337 1.63182 1.63185 1.33334 2.00004 1.33334C2.36823 1.33334 2.66671 1.63182 2.66671 2.00001ZM5.33337 2.00001C5.33337 2.3682 5.0349 2.66668 4.66671 2.66668C4.29852 2.66668 4.00004 2.3682 4.00004 2.00001C4.00004 1.63182 4.29852 1.33334 4.66671 1.33334C5.0349 1.33334 5.33337 1.63182 5.33337 2.00001ZM7.33337 2.66668C7.70156 2.66668 8.00004 2.3682 8.00004 2.00001C8.00004 1.63182 7.70156 1.33334 7.33337 1.33334C6.96518 1.33334 6.66671 1.63182 6.66671 2.00001C6.66671 2.3682 6.96518 2.66668 7.33337 2.66668ZM10.6667 2.00001C10.6667 2.3682 10.3682 2.66668 10 2.66668C9.63185 2.66668 9.33337 2.3682 9.33337 2.00001C9.33337 1.63182 9.63185 1.33334 10 1.33334C10.3682 1.33334 10.6667 1.63182 10.6667 2.00001ZM3.33337 4.00001C3.70156 4.00001 4.00004 3.70153 4.00004 3.33334C4.00004 2.96515 3.70156 2.66668 3.33337 2.66668C2.96518 2.66668 2.66671 2.96515 2.66671 3.33334C2.66671 3.70153 2.96518 4.00001 3.33337 4.00001ZM6.66671 3.33334C6.66671 3.70153 6.36823 4.00001 6.00004 4.00001C5.63185 4.00001 5.33337 3.70153 5.33337 3.33334C5.33337 2.96515 5.63185 2.66668 6.00004 2.66668C6.36823 2.66668 6.66671 2.96515 6.66671 3.33334ZM8.66671 4.00001C9.0349 4.00001 9.33337 3.70153 9.33337 3.33334C9.33337 2.96515 9.0349 2.66668 8.66671 2.66668C8.29852 2.66668 8.00004 2.96515 8.00004 3.33334C8.00004 3.70153 8.29852 4.00001 8.66671 4.00001ZM10.6667 4.66668C10.6667 5.03487 10.3682 5.33334 10 5.33334C9.63185 5.33334 9.33337 5.03487 9.33337 4.66668C9.33337 4.29849 9.63185 4.00001 10 4.00001C10.3682 4.00001 10.6667 4.29849 10.6667 4.66668ZM7.33337 5.33334C7.70156 5.33334 8.00004 5.03487 8.00004 4.66668C8.00004 4.29849 7.70156 4.00001 7.33337 4.00001C6.96518 4.00001 6.66671 4.29849 6.66671 4.66668C6.66671 5.03487 6.96518 5.33334 7.33337 5.33334ZM5.33337 4.66668C5.33337 5.03487 5.0349 5.33334 4.66671 5.33334C4.29852 5.33334 4.00004 5.03487 4.00004 4.66668C4.00004 4.29849 4.29852 4.00001 4.66671 4.00001C5.0349 4.00001 5.33337 4.29849 5.33337 4.66668ZM2.00004 5.33334C2.36823 5.33334 2.66671 5.03487 2.66671 4.66668C2.66671 4.29849 2.36823 4.00001 2.00004 4.00001C1.63185 4.00001 1.33337 4.29849 1.33337 4.66668C1.33337 5.03487 1.63185 5.33334 2.00004 5.33334ZM4.00004 6.00001C4.00004 6.3682 3.70156 6.66668 3.33337 6.66668C2.96518 6.66668 2.66671 6.3682 2.66671 6.00001C2.66671 5.63182 2.96518 5.33334 3.33337 5.33334C3.70156 5.33334 4.00004 5.63182 4.00004 6.00001ZM6.00004 6.66668C6.36823 6.66668 6.66671 6.3682 6.66671 6.00001C6.66671 5.63182 6.36823 5.33334 6.00004 5.33334C5.63185 5.33334 5.33337 5.63182 5.33337 6.00001C5.33337 6.3682 5.63185 6.66668 6.00004 6.66668ZM9.33337 6.00001C9.33337 6.3682 9.0349 6.66668 8.66671 6.66668C8.29852 6.66668 8.00004 6.3682 8.00004 6.00001C8.00004 5.63182 8.29852 5.33334 8.66671 5.33334C9.0349 5.33334 9.33337 5.63182 9.33337 6.00001ZM10 8.00001C10.3682 8.00001 10.6667 7.70153 10.6667 7.33334C10.6667 6.96515 10.3682 6.66668 10 6.66668C9.63185 6.66668 9.33337 6.96515 9.33337 7.33334C9.33337 7.70153 9.63185 8.00001 10 8.00001ZM8.00004 7.33334C8.00004 7.70153 7.70156 8.00001 7.33337 8.00001C6.96518 8.00001 6.66671 7.70153 6.66671 7.33334C6.66671 6.96515 6.96518 6.66668 7.33337 6.66668C7.70156 6.66668 8.00004 6.96515 8.00004 7.33334ZM4.66671 8.00001C5.0349 8.00001 5.33337 7.70153 5.33337 7.33334C5.33337 6.96515 5.0349 6.66668 4.66671 6.66668C4.29852 6.66668 4.00004 6.96515 4.00004 7.33334C4.00004 7.70153 4.29852 8.00001 4.66671 8.00001ZM2.66671 7.33334C2.66671 7.70153 2.36823 8.00001 2.00004 8.00001C1.63185 8.00001 1.33337 7.70153 1.33337 7.33334C1.33337 6.96515 1.63185 6.66668 2.00004 6.66668C2.36823 6.66668 2.66671 6.96515 2.66671 7.33334Z", fill: "url(#paint0_linear_48_2135)" }) })] }), _jsxs("defs", { children: [_jsxs("filter", { id: "filter0_d_48_2135", x: "1.33337", y: "1.33334", width: "9.33337", height: "7.66666", filterUnits: "userSpaceOnUse", colorInterpolationFilters: "sRGB", children: [_jsx("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }), _jsx("feColorMatrix", { in: "SourceAlpha", type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), _jsx("feOffset", { dy: "1" }), _jsx("feColorMatrix", { type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0" }), _jsx("feBlend", { mode: "normal", in2: "BackgroundImageFix", result: "effect1_dropShadow_48_2135" }), _jsx("feBlend", { mode: "normal", in: "SourceGraphic", in2: "effect1_dropShadow_48_2135", result: "shape" })] }), _jsxs("linearGradient", { id: "paint0_linear_48_2135", x1: "1.33337", y1: "1.33334", x2: "1.33337", y2: "8.00001", gradientUnits: "userSpaceOnUse", children: [_jsx("stop", { stopColor: "white" }), _jsx("stop", { offset: "1", stopColor: "#F0F0F0" })] })] })] }))); };
|
|
@@ -1,34 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
strokeWidth: "1.35849",
|
|
15
|
-
strokeMiterlimit: "10",
|
|
16
|
-
strokeLinejoin: "round"
|
|
17
|
-
}),
|
|
18
|
-
/* @__PURE__ */ jsx("path", {
|
|
19
|
-
d: "M11.595 4.80277V24.7273H20.6516V4.80277H11.595Z",
|
|
20
|
-
strokeWidth: "1.35849",
|
|
21
|
-
strokeMiterlimit: "10",
|
|
22
|
-
strokeLinejoin: "round",
|
|
23
|
-
strokeDasharray: "1.81 1.81"
|
|
24
|
-
}),
|
|
25
|
-
/* @__PURE__ */ jsx("path", {
|
|
26
|
-
d: "M5.70818 0.727295L11.595 4.80277V24.7273L5.70818 20.6518V0.727295Z",
|
|
27
|
-
strokeWidth: "1.35849",
|
|
28
|
-
strokeMiterlimit: "10",
|
|
29
|
-
strokeLinejoin: "round"
|
|
30
|
-
})
|
|
31
|
-
]
|
|
32
|
-
});
|
|
33
|
-
//#endregion
|
|
34
|
-
export { Foldable };
|
|
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 Foldable = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "26", viewBox: "0 0 22 26", stroke: "#9E4800", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M11.595 4.80273V24.7273H0.727051V4.80273H5.70818", strokeWidth: "1.35849", strokeMiterlimit: "10", strokeLinejoin: "round" }), _jsx("path", { d: "M11.595 4.80277V24.7273H20.6516V4.80277H11.595Z", strokeWidth: "1.35849", strokeMiterlimit: "10", strokeLinejoin: "round", strokeDasharray: "1.81 1.81" }), _jsx("path", { d: "M5.70818 0.727295L11.595 4.80277V24.7273L5.70818 20.6518V0.727295Z", strokeWidth: "1.35849", strokeMiterlimit: "10", strokeLinejoin: "round" })] }))); };
|
|
@@ -1,42 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
strokeWidth: "2.91667",
|
|
15
|
-
strokeMiterlimit: "10",
|
|
16
|
-
strokeLinejoin: "round"
|
|
17
|
-
}),
|
|
18
|
-
/* @__PURE__ */ jsx("path", {
|
|
19
|
-
d: "M10.875 68.5417H34.2083",
|
|
20
|
-
strokeWidth: "2.91667",
|
|
21
|
-
strokeMiterlimit: "10",
|
|
22
|
-
strokeLinecap: "round",
|
|
23
|
-
strokeLinejoin: "round"
|
|
24
|
-
}),
|
|
25
|
-
/* @__PURE__ */ jsx("path", {
|
|
26
|
-
d: "M5.04167 1.45834H40.0417L42.9583 24.7917C42.9583 36.0704 33.8175 45.2083 22.5417 45.2083C11.2658 45.2083 2.125 36.0704 2.125 24.7917L5.04167 1.45834Z",
|
|
27
|
-
strokeWidth: "2.91667",
|
|
28
|
-
strokeMiterlimit: "10",
|
|
29
|
-
strokeLinecap: "round",
|
|
30
|
-
strokeLinejoin: "round"
|
|
31
|
-
}),
|
|
32
|
-
/* @__PURE__ */ jsx("path", {
|
|
33
|
-
d: "M28.3751 1.45834L13.7917 16.0417H28.3751L13.7917 30.625",
|
|
34
|
-
strokeWidth: "2.91667",
|
|
35
|
-
strokeMiterlimit: "10",
|
|
36
|
-
strokeLinecap: "round",
|
|
37
|
-
strokeLinejoin: "round"
|
|
38
|
-
})
|
|
39
|
-
]
|
|
40
|
-
});
|
|
41
|
-
//#endregion
|
|
42
|
-
export { Fragile };
|
|
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 Fragile = function (props) { return (_jsxs("svg", __assign({ width: "45", height: "70", viewBox: "0 0 45 70", fill: "none", stroke: "black", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M22.5417 45.2083V68.5417", strokeWidth: "2.91667", strokeMiterlimit: "10", strokeLinejoin: "round" }), _jsx("path", { d: "M10.875 68.5417H34.2083", strokeWidth: "2.91667", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M5.04167 1.45834H40.0417L42.9583 24.7917C42.9583 36.0704 33.8175 45.2083 22.5417 45.2083C11.2658 45.2083 2.125 36.0704 2.125 24.7917L5.04167 1.45834Z", strokeWidth: "2.91667", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M28.3751 1.45834L13.7917 16.0417H28.3751L13.7917 30.625", strokeWidth: "2.91667", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
|
|
@@ -1,41 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
strokeWidth: "1.5"
|
|
15
|
-
}),
|
|
16
|
-
/* @__PURE__ */ jsx("path", {
|
|
17
|
-
d: "M9.85562 5.60601L11.4807 6.76042C11.7688 6.96512 12.1578 6.95399 12.4338 6.73315L16.6137 3.38854C17.0243 3.05993 17.0063 2.4296 16.5775 2.125L14.9524 0.970601C14.6643 0.765902 14.2753 0.777027 13.9994 0.997863L9.81948 4.34248C9.4088 4.67109 9.42683 5.30141 9.85562 5.60601Z",
|
|
18
|
-
strokeWidth: "1.5"
|
|
19
|
-
}),
|
|
20
|
-
/* @__PURE__ */ jsx("path", {
|
|
21
|
-
d: "M3 4.5V13.2083C3 13.6456 3.35444 14 3.79167 14H15.2083C15.6456 14 16 13.6456 16 13.2083V4",
|
|
22
|
-
strokeWidth: "1.5"
|
|
23
|
-
}),
|
|
24
|
-
/* @__PURE__ */ jsx("line", {
|
|
25
|
-
x1: "9.75",
|
|
26
|
-
y1: "11",
|
|
27
|
-
x2: "9.75",
|
|
28
|
-
y2: "14",
|
|
29
|
-
strokeWidth: "1.5"
|
|
30
|
-
}),
|
|
31
|
-
/* @__PURE__ */ jsx("line", {
|
|
32
|
-
x1: "9.75",
|
|
33
|
-
y1: "6",
|
|
34
|
-
x2: "9.75",
|
|
35
|
-
y2: "9",
|
|
36
|
-
strokeWidth: "1.5"
|
|
37
|
-
})
|
|
38
|
-
]
|
|
39
|
-
});
|
|
40
|
-
//#endregion
|
|
41
|
-
export { Gift };
|
|
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 Gift = function (props) { return (_jsxs("svg", __assign({ width: "18", height: "15", viewBox: "0 0 18 15", stroke: "#DB2B19", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M1.85556 2.125L3.48063 0.970602C3.76878 0.765903 4.15773 0.777028 4.43371 0.997864L8.6136 4.34248C9.02428 4.67109 9.00625 5.30141 8.57746 5.60601L6.95239 6.76042C6.66423 6.96512 6.27529 6.95399 5.9993 6.73316L1.81941 3.38854C1.40874 3.05993 1.42677 2.4296 1.85556 2.125Z", strokeWidth: "1.5" }), _jsx("path", { d: "M9.85562 5.60601L11.4807 6.76042C11.7688 6.96512 12.1578 6.95399 12.4338 6.73315L16.6137 3.38854C17.0243 3.05993 17.0063 2.4296 16.5775 2.125L14.9524 0.970601C14.6643 0.765902 14.2753 0.777027 13.9994 0.997863L9.81948 4.34248C9.4088 4.67109 9.42683 5.30141 9.85562 5.60601Z", strokeWidth: "1.5" }), _jsx("path", { d: "M3 4.5V13.2083C3 13.6456 3.35444 14 3.79167 14H15.2083C15.6456 14 16 13.6456 16 13.2083V4", strokeWidth: "1.5" }), _jsx("line", { x1: "9.75", y1: "11", x2: "9.75", y2: "14", strokeWidth: "1.5" }), _jsx("line", { x1: "9.75", y1: "6", x2: "9.75", y2: "9", strokeWidth: "1.5" })] }))); };
|
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
})
|
|
15
|
-
});
|
|
16
|
-
//#endregion
|
|
17
|
-
export { Group };
|
|
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 Group = function (props) { return (_jsx("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "#7A90A1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11 18C11 19.1 10.1 20 9 20C7.9 20 7 19.1 7 18C7 16.9 7.9 16 9 16C10.1 16 11 16.9 11 18ZM9 10C7.9 10 7 10.9 7 12C7 13.1 7.9 14 9 14C10.1 14 11 13.1 11 12C11 10.9 10.1 10 9 10ZM9 4C7.9 4 7 4.9 7 6C7 7.1 7.9 8 9 8C10.1 8 11 7.1 11 6C11 4.9 10.1 4 9 4ZM15 8C16.1 8 17 7.1 17 6C17 4.9 16.1 4 15 4C13.9 4 13 4.9 13 6C13 7.1 13.9 8 15 8ZM15 10C13.9 10 13 10.9 13 12C13 13.1 13.9 14 15 14C16.1 14 17 13.1 17 12C17 10.9 16.1 10 15 10ZM15 16C13.9 16 13 16.9 13 18C13 19.1 13.9 20 15 20C16.1 20 17 19.1 17 18C17 16.9 16.1 16 15 16Z" }) }))); };
|
|
@@ -1,41 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
rx: "18",
|
|
15
|
-
fill: "neutral20"
|
|
16
|
-
}),
|
|
17
|
-
/* @__PURE__ */ jsx("path", {
|
|
18
|
-
d: "M11 14H26",
|
|
19
|
-
strokeWidth: "1.5",
|
|
20
|
-
strokeMiterlimit: "10",
|
|
21
|
-
strokeLinecap: "round",
|
|
22
|
-
strokeLinejoin: "round"
|
|
23
|
-
}),
|
|
24
|
-
/* @__PURE__ */ jsx("path", {
|
|
25
|
-
d: "M11 18H26",
|
|
26
|
-
strokeWidth: "1.5",
|
|
27
|
-
strokeMiterlimit: "10",
|
|
28
|
-
strokeLinecap: "round",
|
|
29
|
-
strokeLinejoin: "round"
|
|
30
|
-
}),
|
|
31
|
-
/* @__PURE__ */ jsx("path", {
|
|
32
|
-
d: "M11 22H22",
|
|
33
|
-
strokeWidth: "1.5",
|
|
34
|
-
strokeMiterlimit: "10",
|
|
35
|
-
strokeLinecap: "round",
|
|
36
|
-
strokeLinejoin: "round"
|
|
37
|
-
})
|
|
38
|
-
]
|
|
39
|
-
});
|
|
40
|
-
//#endregion
|
|
41
|
-
export { HamburgerMenu };
|
|
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 HamburgerMenu = function (props) { return (_jsxs("svg", __assign({ width: "36", height: "36", viewBox: "0 0 36 36", fill: "none", stroke: "#22394E" }, props, { children: [_jsx("rect", { width: "36", height: "36", rx: "18", fill: "neutral20" }), _jsx("path", { d: "M11 14H26", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11 18H26", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11 22H22", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
|