@mailstep/design-system 0.8.27 → 0.8.28
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 +4 -4
- package/ui/Blocks/CommonGrid/CommonGrid.js +104 -152
- package/ui/Blocks/CommonGrid/CommonGridContainer.js +187 -368
- package/ui/Blocks/CommonGrid/HoC/withProps.js +9 -37
- package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +29 -46
- package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.js +105 -196
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.js +37 -49
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.js +76 -162
- package/ui/Blocks/CommonGrid/components/ActionHead/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.js +43 -124
- package/ui/Blocks/CommonGrid/components/ButtonMore/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/ColumnFilterCell.js +50 -112
- package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +130 -251
- package/ui/Blocks/CommonGrid/components/ColumnTitle/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/ColumnTitle.js +36 -104
- package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +156 -252
- package/ui/Blocks/CommonGrid/components/ControlButtons/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/ControlButtons/styles.js +40 -53
- package/ui/Blocks/CommonGrid/components/DataCell.js +34 -97
- package/ui/Blocks/CommonGrid/components/DataRow.js +60 -74
- package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.js +67 -154
- package/ui/Blocks/CommonGrid/components/DropdownButton/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.js +57 -149
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/FilterDropdown.js +30 -48
- package/ui/Blocks/CommonGrid/components/FilterRow.js +28 -36
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.js +32 -83
- package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.js +34 -90
- package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.js +4 -2
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.js +149 -373
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/getCleanValues.js +7 -12
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.js +13 -25
- package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/sameDate.js +3 -3
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.js +92 -376
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.js +4 -8
- package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.js +4 -2
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.js +142 -293
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/types.js +1 -0
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.js +160 -320
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/Filters/TextRange/types.js +1 -0
- package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.js +79 -156
- package/ui/Blocks/CommonGrid/components/FloatingButton/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/GridInfo/index.js +30 -41
- package/ui/Blocks/CommonGrid/components/GridModals/index.js +132 -134
- package/ui/Blocks/CommonGrid/components/GridStatus/index.js +23 -25
- package/ui/Blocks/CommonGrid/components/GroupRow.js +26 -87
- package/ui/Blocks/CommonGrid/components/HeadCell.js +33 -89
- package/ui/Blocks/CommonGrid/components/HeadRow.js +69 -192
- package/ui/Blocks/CommonGrid/components/IconList/IconList.js +61 -99
- package/ui/Blocks/CommonGrid/components/IconList/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +52 -114
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.js +66 -171
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.js +16 -34
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.js +7 -9
- package/ui/Blocks/CommonGrid/components/MobileFilterModal.js +110 -228
- package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.js +13 -21
- package/ui/Blocks/CommonGrid/components/MobileSortModal.js +64 -88
- package/ui/Blocks/CommonGrid/components/OversizedScroll.js +34 -86
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.js +17 -20
- package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +88 -201
- package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.js +29 -54
- package/ui/Blocks/CommonGrid/components/QuickFilter/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/Resize.js +46 -53
- package/ui/Blocks/CommonGrid/components/Table.js +40 -94
- package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +63 -113
- package/ui/Blocks/CommonGrid/components/TablePagination/index.js +3 -1
- package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +16 -32
- package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +10 -58
- package/ui/Blocks/CommonGrid/components/gridCells/Date.js +7 -7
- package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +9 -12
- package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +27 -100
- package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +48 -48
- package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +31 -33
- package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +28 -50
- package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +8 -22
- package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +37 -63
- package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +75 -113
- package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +7 -7
- package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +9 -57
- package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +30 -82
- package/ui/Blocks/CommonGrid/components/gridCells/index.js +14 -14
- package/ui/Blocks/CommonGrid/components/icons/Edit.js +13 -65
- package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +13 -65
- package/ui/Blocks/CommonGrid/components/icons/Sorting.js +19 -72
- package/ui/Blocks/CommonGrid/components/utils.js +18 -67
- package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +14 -14
- package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +85 -119
- package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +29 -77
- package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +21 -32
- package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +56 -91
- package/ui/Blocks/CommonGrid/hooks/useEvent.js +10 -14
- package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +14 -15
- package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +25 -42
- package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.js +10 -20
- package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +97 -220
- package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +54 -124
- package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +13 -57
- package/ui/Blocks/CommonGrid/hooks/useQuickFilter.js +76 -149
- package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +19 -23
- package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +18 -80
- package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +17 -28
- package/ui/Blocks/CommonGrid/hooks/useUxReset.js +12 -63
- package/ui/Blocks/CommonGrid/index.js +26 -10
- package/ui/Blocks/CommonGrid/store/index.js +286 -430
- package/ui/Blocks/CommonGrid/store/migrateState.js +10 -10
- package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.js +16 -20
- package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.js +17 -22
- package/ui/Blocks/CommonGrid/storybook/utils/actions.js +9 -15
- package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +121 -156
- package/ui/Blocks/CommonGrid/storybook/utils/utils.js +106 -145
- package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +11 -14
- package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +5 -7
- package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +4 -5
- package/ui/Blocks/CommonGrid/styles.js +252 -97
- package/ui/Blocks/CommonGrid/types.js +22 -14
- package/ui/Blocks/CommonGrid/utils/constants.js +24 -22
- package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.js +15 -44
- package/ui/Blocks/CommonGrid/utils/getRowsPerPage.js +8 -9
- package/ui/Blocks/CommonGrid/utils/hasSortTerminated.js +8 -9
- package/ui/Blocks/CommonGrid/utils/index.js +69 -107
- package/ui/Blocks/CornerDialog/CornerDialog.js +40 -94
- package/ui/Blocks/CornerDialog/index.js +3 -1
- package/ui/Blocks/CornerDialog/styles.js +56 -83
- package/ui/Blocks/CornerDialog/types.js +1 -0
- package/ui/Blocks/CornerDialog/utils.js +28 -26
- package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.js +12 -11
- package/ui/Blocks/Header/components/MenuItems/index.js +6 -11
- package/ui/Blocks/Header/components/MenuItems/styles.js +21 -35
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.js +20 -28
- package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.js +13 -31
- package/ui/Blocks/Header/components/UserMenu/hooks/index.js +1 -1
- package/ui/Blocks/Header/components/UserMenu/hooks/useLogout.js +8 -9
- package/ui/Blocks/Header/components/UserMenu/index.js +45 -99
- package/ui/Blocks/Header/components/UserMenu/styles.js +24 -44
- package/ui/Blocks/Header/hooks/useChangeLanguage.js +7 -8
- package/ui/Blocks/Header/index.js +41 -57
- package/ui/Blocks/Header/styles.js +33 -54
- package/ui/Blocks/Header/types.js +1 -0
- package/ui/Blocks/Header/utils/constants.js +3 -1
- package/ui/Blocks/Header/utils/languageItems.js +13 -18
- package/ui/Blocks/HidePrint/HidePrint.js +11 -28
- package/ui/Blocks/ImageList/ImageList.js +76 -131
- package/ui/Blocks/ImageList/components/AddPhoto/index.js +33 -182
- package/ui/Blocks/ImageList/components/AddPhoto/styles.js +29 -42
- package/ui/Blocks/ImageList/components/CloseButton/index.js +15 -13
- package/ui/Blocks/ImageList/components/CloseButton/styles.js +17 -25
- package/ui/Blocks/ImageList/components/ImageElement/index.js +26 -27
- package/ui/Blocks/ImageList/components/ImageElement/styles.js +21 -63
- package/ui/Blocks/ImageList/components/ImageTag/index.js +12 -15
- package/ui/Blocks/ImageList/components/ImageTag/styles.js +8 -21
- package/ui/Blocks/ImageList/hooks/useControls.js +12 -66
- package/ui/Blocks/ImageList/hooks/useOnElementClick.js +12 -70
- package/ui/Blocks/ImageList/index.js +3 -1
- package/ui/Blocks/ImageList/styles.js +28 -47
- package/ui/Blocks/ImageList/types.js +1 -0
- package/ui/Blocks/LanguageSwitch/LanguageSwitch.js +50 -136
- package/ui/Blocks/LanguageSwitch/index.js +3 -1
- package/ui/Blocks/LanguageSwitch/styles.js +31 -49
- package/ui/Blocks/LanguageSwitch/types.js +1 -0
- package/ui/Blocks/LightBox/LightBox.js +37 -46
- package/ui/Blocks/LightBox/hooks/useLightBox.js +14 -19
- package/ui/Blocks/LightBox/index.js +4 -2
- package/ui/Blocks/LightBox/styles.js +27 -51
- package/ui/Blocks/LightBox/types.js +1 -0
- package/ui/Blocks/LoginPage/LoginPage.js +60 -77
- package/ui/Blocks/LoginPage/assets/mailship.js +4 -0
- package/ui/Blocks/LoginPage/components/LoginForm.js +165 -220
- package/ui/Blocks/LoginPage/components/SocialLinks.js +78 -98
- package/ui/Blocks/LoginPage/index.js +4 -2
- package/ui/Blocks/LoginPage/styles.js +74 -94
- package/ui/Blocks/LoginPage/types.js +1 -0
- package/ui/Blocks/LoginPage/utils/links.js +9 -7
- package/ui/Blocks/Modal/Modal.js +122 -148
- package/ui/Blocks/Modal/hooks/useClickOutside.js +25 -35
- package/ui/Blocks/Modal/hooks/useModal.js +17 -64
- package/ui/Blocks/Modal/index.js +5 -3
- package/ui/Blocks/Modal/styles.js +181 -255
- package/ui/Blocks/Modal/types.js +1 -0
- package/ui/Blocks/Modal/utils.js +8 -6
- package/ui/Blocks/Popover/index.js +29 -50
- package/ui/Blocks/Scheduler/Scheduler.js +40 -104
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.js +35 -123
- package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.js +34 -53
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/hooks/useCurrentTime.js +14 -61
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.js +11 -15
- package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.js +29 -51
- package/ui/Blocks/Scheduler/components/DateChanger/index.js +46 -50
- package/ui/Blocks/Scheduler/components/DateChanger/styles.js +22 -35
- package/ui/Blocks/Scheduler/components/Groups/index.js +8 -14
- package/ui/Blocks/Scheduler/components/Groups/styles.js +31 -53
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.js +43 -114
- package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.js +13 -17
- package/ui/Blocks/Scheduler/components/TimeSlots/index.js +45 -53
- package/ui/Blocks/Scheduler/components/TimeSlots/styles.js +51 -75
- package/ui/Blocks/Scheduler/hooks/useChangeDate.js +32 -83
- package/ui/Blocks/Scheduler/index.js +1 -1
- package/ui/Blocks/Scheduler/styles.js +21 -32
- package/ui/Blocks/Scheduler/types.js +1 -0
- package/ui/Blocks/Scheduler/utils/constants.js +8 -6
- package/ui/Blocks/Scheduler/utils/convertDateToTime.js +4 -4
- package/ui/Blocks/Scheduler/utils/convertIndexToISOString.js +9 -7
- package/ui/Blocks/Scheduler/utils/convertMinutesToDuration.js +8 -10
- package/ui/Blocks/Scheduler/utils/formatDate.js +7 -8
- package/ui/Blocks/Scheduler/utils/generateTimeArray.js +17 -15
- package/ui/Blocks/Scheduler/utils/getClosestStep.js +10 -8
- package/ui/Blocks/Scheduler/utils/getMinutesFromString.js +5 -5
- package/ui/Blocks/Scheduler/utils/getMinutesFromTime.js +5 -49
- package/ui/Blocks/Scheduler/utils/isActiveTime.js +9 -8
- package/ui/Blocks/Scheduler/utils/isToday.js +5 -3
- package/ui/Blocks/SideMenu/MenuItem.js +98 -191
- package/ui/Blocks/SideMenu/SideMenu.js +35 -80
- package/ui/Blocks/SideMenu/components/Footer.js +61 -95
- package/ui/Blocks/SideMenu/components/HamburgerMenu.js +49 -68
- package/ui/Blocks/SideMenu/components/SubitemTooltip.js +49 -133
- package/ui/Blocks/SideMenu/context/LeftMenuContext.js +17 -67
- package/ui/Blocks/SideMenu/context/useLeftMenuContext.js +7 -5
- package/ui/Blocks/SideMenu/hooks/useOutsideHover.js +23 -76
- package/ui/Blocks/SideMenu/index.js +5 -3
- package/ui/Blocks/SideMenu/stories/menuItems.js +106 -100
- package/ui/Blocks/SideMenu/styles.js +308 -415
- package/ui/Blocks/SideMenu/types.js +1 -0
- package/ui/Blocks/SideMenu/utils/constants.js +4 -2
- package/ui/Blocks/Stepper/Stepper.js +31 -50
- package/ui/Blocks/Stepper/components/StepCircle/index.js +14 -13
- package/ui/Blocks/Stepper/components/StepCircle/styles.js +22 -47
- package/ui/Blocks/Stepper/components/StepItem/index.js +48 -58
- package/ui/Blocks/Stepper/components/StepItem/styles.js +77 -86
- package/ui/Blocks/Stepper/hooks/useStepper.js +30 -78
- package/ui/Blocks/Stepper/index.js +3 -3
- package/ui/Blocks/Stepper/styles.js +24 -39
- package/ui/Blocks/Stepper/types.js +1 -0
- package/ui/Blocks/Table/Table.js +10 -31
- package/ui/Blocks/Table/index.js +1 -1
- package/ui/Blocks/Table/types.js +1 -0
- package/ui/Blocks/Tabs/TabContent.js +7 -8
- package/ui/Blocks/Tabs/Tabs.js +42 -53
- package/ui/Blocks/Tabs/hooks/useTabs.js +11 -59
- package/ui/Blocks/Tabs/index.js +5 -3
- package/ui/Blocks/Tabs/styles.js +94 -109
- package/ui/Blocks/Tabs/types.js +1 -0
- package/ui/Elements/Alert/Alert.js +71 -95
- package/ui/Elements/Alert/index.js +3 -1
- package/ui/Elements/Alert/styles.js +81 -126
- package/ui/Elements/Alert/types.js +1 -0
- package/ui/Elements/AsyncSelect/AsyncSelect.js +31 -157
- package/ui/Elements/AsyncSelect/index.js +3 -1
- package/ui/Elements/Avatar/Avatar.js +35 -150
- package/ui/Elements/Avatar/index.js +4 -3
- package/ui/Elements/Avatar/types.js +1 -0
- package/ui/Elements/Badge/Badge.js +50 -105
- package/ui/Elements/Badge/index.js +3 -1
- package/ui/Elements/BarChartSymbol/BarChartSymbol.js +19 -22
- package/ui/Elements/BarChartSymbol/index.js +1 -1
- package/ui/Elements/BarChartSymbol/styles.js +8 -32
- package/ui/Elements/BorderedBox/BorderedBox.js +20 -124
- package/ui/Elements/BorderedBox/index.js +3 -1
- package/ui/Elements/BorderedBox/types.js +1 -0
- package/ui/Elements/Button/Button.js +43 -153
- package/ui/Elements/Button/index.js +3 -1
- package/ui/Elements/Button/styles.js +224 -95
- package/ui/Elements/Button/types.js +1 -0
- package/ui/Elements/Card/Card.js +13 -13
- package/ui/Elements/Card/index.js +3 -1
- package/ui/Elements/Card/styles.js +21 -49
- package/ui/Elements/Card/types.js +1 -0
- package/ui/Elements/CheckedCircle/index.js +12 -11
- package/ui/Elements/CheckedCircle/styles.js +14 -29
- package/ui/Elements/DatePicker/DatePicker.js +84 -206
- package/ui/Elements/DatePicker/Datetime/DateTime.js +422 -724
- package/ui/Elements/DatePicker/Datetime/components/DateRepeater.js +62 -126
- package/ui/Elements/DatePicker/Datetime/components/FooterRow.js +10 -24
- package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.js +14 -20
- package/ui/Elements/DatePicker/Datetime/components/TimeInput.js +15 -21
- package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +160 -254
- package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +28 -84
- package/ui/Elements/DatePicker/Datetime/types.js +13 -11
- package/ui/Elements/DatePicker/Datetime/views/DaysView.js +134 -334
- package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +71 -265
- package/ui/Elements/DatePicker/Datetime/views/YearsView.js +81 -276
- package/ui/Elements/DatePicker/index.js +5 -3
- package/ui/Elements/DatePicker/styles.js +233 -35
- package/ui/Elements/DatePicker/utils/constants.js +27 -33
- package/ui/Elements/Dropdown/Dropdown.js +53 -88
- package/ui/Elements/Dropdown/index.js +3 -1
- package/ui/Elements/Dropdown/types.js +1 -0
- package/ui/Elements/DropdownMenu/DropdownMenu.js +32 -134
- package/ui/Elements/DropdownMenu/components/DefaultItem.js +30 -56
- package/ui/Elements/DropdownMenu/components/MenuItem.js +56 -103
- package/ui/Elements/DropdownMenu/components/MenuList.js +13 -14
- package/ui/Elements/DropdownMenu/index.js +1 -1
- package/ui/Elements/DropdownMenu/types.js +1 -0
- package/ui/Elements/DropdownSelect/DropdownSelect.js +126 -205
- package/ui/Elements/DropdownSelect/index.js +3 -2
- package/ui/Elements/ErrorMessage/ErrorMessage.js +62 -56
- package/ui/Elements/ErrorMessage/index.js +3 -1
- package/ui/Elements/ErrorMessage/types.js +1 -0
- package/ui/Elements/HighlightBox/HighlightBox.js +97 -99
- package/ui/Elements/HighlightBox/index.js +3 -1
- package/ui/Elements/Icon/BadgeIcon.js +26 -121
- package/ui/Elements/Icon/Icon.js +182 -255
- package/ui/Elements/Icon/icons/Add.js +31 -91
- package/ui/Elements/Icon/icons/AddPhoto.js +32 -84
- package/ui/Elements/Icon/icons/Admin.js +24 -79
- package/ui/Elements/Icon/icons/ArrowDown.js +16 -68
- package/ui/Elements/Icon/icons/ArrowForward.js +10 -64
- package/ui/Elements/Icon/icons/ArrowUp.js +16 -68
- package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.js +19 -77
- package/ui/Elements/Icon/icons/ArrowsLeftRight.js +10 -64
- package/ui/Elements/Icon/icons/ArrowsUpDown.js +10 -64
- package/ui/Elements/Icon/icons/BarcodeScan.js +11 -65
- package/ui/Elements/Icon/icons/Box.js +15 -67
- package/ui/Elements/Icon/icons/Calendar.js +37 -89
- package/ui/Elements/Icon/icons/Cancel.js +16 -68
- package/ui/Elements/Icon/icons/CheckedBox.js +21 -76
- package/ui/Elements/Icon/icons/CircleHalfStroke.js +10 -64
- package/ui/Elements/Icon/icons/Company.js +80 -137
- package/ui/Elements/Icon/icons/Complaint.js +57 -114
- package/ui/Elements/Icon/icons/Consolidation.js +11 -65
- package/ui/Elements/Icon/icons/Container.js +11 -65
- package/ui/Elements/Icon/icons/Dashboard.js +34 -86
- package/ui/Elements/Icon/icons/Desktop.js +61 -118
- package/ui/Elements/Icon/icons/Dispatch.js +11 -65
- package/ui/Elements/Icon/icons/EmptyRack.js +32 -32
- package/ui/Elements/Icon/icons/Expeditions.js +60 -112
- package/ui/Elements/Icon/icons/Filter.js +15 -67
- package/ui/Elements/Icon/icons/FlagCZ.js +53 -108
- package/ui/Elements/Icon/icons/FlagEL.js +48 -100
- package/ui/Elements/Icon/icons/FlagESP.js +91 -143
- package/ui/Elements/Icon/icons/FlagHU.js +25 -77
- package/ui/Elements/Icon/icons/FlagITA.js +53 -108
- package/ui/Elements/Icon/icons/FlagNL.js +25 -77
- package/ui/Elements/Icon/icons/FlagRUS.js +53 -108
- package/ui/Elements/Icon/icons/FlagSVK.js +90 -145
- package/ui/Elements/Icon/icons/FlagUK.js +18 -73
- package/ui/Elements/Icon/icons/FlagUSA.js +104 -168
- package/ui/Elements/Icon/icons/Foldable.js +32 -84
- package/ui/Elements/Icon/icons/Fragile.js +40 -92
- package/ui/Elements/Icon/icons/Gift.js +39 -91
- package/ui/Elements/Icon/icons/Group.js +15 -67
- package/ui/Elements/Icon/icons/HamburgerMenu.js +39 -91
- package/ui/Elements/Icon/icons/HelpCircle1.js +30 -82
- package/ui/Elements/Icon/icons/HorizontalLines.js +34 -86
- package/ui/Elements/Icon/icons/ImagePlaceholder.js +15 -67
- package/ui/Elements/Icon/icons/Income.js +20 -75
- package/ui/Elements/Icon/icons/Info.js +31 -83
- package/ui/Elements/Icon/icons/Integrations.js +15 -67
- package/ui/Elements/Icon/icons/Inventory.js +43 -100
- package/ui/Elements/Icon/icons/Inventory2.js +64 -121
- package/ui/Elements/Icon/icons/Layout.js +41 -91
- package/ui/Elements/Icon/icons/Link.js +18 -73
- package/ui/Elements/Icon/icons/Liquid.js +20 -75
- package/ui/Elements/Icon/icons/Location.js +11 -65
- package/ui/Elements/Icon/icons/Logout1.js +30 -82
- package/ui/Elements/Icon/icons/MachinePackingForbidden.js +68 -120
- package/ui/Elements/Icon/icons/MakePhoto.js +33 -85
- package/ui/Elements/Icon/icons/MenuItems.js +37 -91
- package/ui/Elements/Icon/icons/Message.js +36 -96
- package/ui/Elements/Icon/icons/MobileCancel.js +20 -75
- package/ui/Elements/Icon/icons/MobilePhone.js +45 -97
- package/ui/Elements/Icon/icons/Moon.js +10 -64
- package/ui/Elements/Icon/icons/Notification2.js +23 -78
- package/ui/Elements/Icon/icons/OpenBox.js +35 -87
- package/ui/Elements/Icon/icons/Pallet.js +34 -93
- package/ui/Elements/Icon/icons/Plus1.js +15 -67
- package/ui/Elements/Icon/icons/Print.js +39 -91
- package/ui/Elements/Icon/icons/Product.js +15 -67
- package/ui/Elements/Icon/icons/Products.js +14 -66
- package/ui/Elements/Icon/icons/Profile.js +23 -78
- package/ui/Elements/Icon/icons/Puzzle1.js +16 -68
- package/ui/Elements/Icon/icons/QRCode.js +17 -69
- package/ui/Elements/Icon/icons/Rack.js +63 -115
- package/ui/Elements/Icon/icons/Reload.js +11 -65
- package/ui/Elements/Icon/icons/Return.js +17 -72
- package/ui/Elements/Icon/icons/Rows.js +37 -89
- package/ui/Elements/Icon/icons/Settings2.js +31 -91
- package/ui/Elements/Icon/icons/ShieldUser.js +7 -61
- package/ui/Elements/Icon/icons/ShoppingBag.js +16 -67
- package/ui/Elements/Icon/icons/Sort.js +21 -76
- package/ui/Elements/Icon/icons/Sun.js +10 -64
- package/ui/Elements/Icon/icons/ThreeDots.js +37 -89
- package/ui/Elements/Icon/icons/ToastError.js +25 -82
- package/ui/Elements/Icon/icons/ToastSuccess.js +25 -82
- package/ui/Elements/Icon/icons/Transfer.js +19 -74
- package/ui/Elements/Icon/icons/TrashBin.js +31 -83
- package/ui/Elements/Icon/icons/Truck.js +71 -127
- package/ui/Elements/Icon/icons/TwoBoxes.js +18 -73
- package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +27 -27
- package/ui/Elements/Icon/icons/TwoUsers.js +40 -91
- package/ui/Elements/Icon/icons/UserCowboy.js +7 -61
- package/ui/Elements/Icon/icons/Valuable.js +32 -83
- package/ui/Elements/Icon/icons/Weight.js +10 -64
- package/ui/Elements/Icon/icons/index.js +188 -92
- package/ui/Elements/Icon/index.js +96 -4
- package/ui/Elements/Icon/types.js +1 -0
- package/ui/Elements/Image/Image.js +13 -154
- package/ui/Elements/Image/index.js +3 -1
- package/ui/Elements/Image/types.js +1 -0
- package/ui/Elements/Label/Label.js +22 -61
- package/ui/Elements/Label/index.js +4 -3
- package/ui/Elements/Line/Line.js +20 -44
- package/ui/Elements/Line/index.js +3 -1
- package/ui/Elements/Line/types.js +1 -0
- package/ui/Elements/Link/Link.js +42 -126
- package/ui/Elements/Link/index.js +3 -1
- package/ui/Elements/Logo/Logo.js +65 -162
- package/ui/Elements/Logo/assets/mailship/logo_black.js +4 -0
- package/ui/Elements/Logo/assets/mailship/logo_m.js +4 -0
- package/ui/Elements/Logo/assets/mailship/logo_white.js +4 -0
- package/ui/Elements/Logo/assets/mailship/mailship-logo.js +4 -0
- package/ui/Elements/Logo/assets/mailstep/mailstep_black.js +4 -0
- package/ui/Elements/Logo/assets/mailstep/mailstep_white.js +4 -0
- package/ui/Elements/Logo/assets/mailstock/mailstock.js +4 -0
- package/ui/Elements/Logo/assets/mailwise/mailwiseLogo.js +4 -0
- package/ui/Elements/Logo/assets/mailwise/mailwiseLogoSmall.js +4 -0
- package/ui/Elements/Logo/assets/mailwrap/mailwrapLogo.js +4 -0
- package/ui/Elements/Logo/assets/mailwrap/mailwrapLogoSmall.js +4 -0
- package/ui/Elements/Logo/assets/warehouse/manager.js +4 -0
- package/ui/Elements/Logo/assets/warehouse/manager2.js +4 -0
- package/ui/Elements/Logo/assets/warehouse/manager3.js +4 -0
- package/ui/Elements/Logo/index.js +3 -1
- package/ui/Elements/Logo/types.js +1 -0
- package/ui/Elements/Pagination/Pagination.js +61 -85
- package/ui/Elements/Pagination/index.js +3 -1
- package/ui/Elements/Pagination/styled.js +62 -89
- package/ui/Elements/Portal/index.js +20 -68
- package/ui/Elements/ProgressBar/ProgressBar.js +15 -19
- package/ui/Elements/ProgressBar/index.js +3 -1
- package/ui/Elements/ProgressBar/styles.js +69 -114
- package/ui/Elements/Select/Select.js +94 -442
- package/ui/Elements/Select/components/ChevronOption.js +29 -87
- package/ui/Elements/Select/components/ConnectedMenu.js +24 -85
- package/ui/Elements/Select/components/CountMultiValue.js +40 -132
- package/ui/Elements/Select/components/CustomInput.js +11 -61
- package/ui/Elements/Select/components/DropdownIndicator.js +28 -94
- package/ui/Elements/Select/components/IconValueContainer.js +27 -139
- package/ui/Elements/Select/components/SelectAll.js +87 -164
- package/ui/Elements/Select/components/SelectedIndicator.js +7 -23
- package/ui/Elements/Select/components/SimplifiedOption.js +15 -23
- package/ui/Elements/Select/index.js +3 -1
- package/ui/Elements/Select/styles.js +16 -44
- package/ui/Elements/Select/themes/index.js +37 -44
- package/ui/Elements/Select/themes/selectStyles.js +194 -302
- package/ui/Elements/Select/types.js +1 -0
- package/ui/Elements/SimpleLink/SimpleLink.js +35 -64
- package/ui/Elements/SimpleLink/index.js +5 -3
- package/ui/Elements/SingleSelect/SingleSelect.js +145 -509
- package/ui/Elements/SingleSelect/index.js +3 -1
- package/ui/Elements/SpaceAround/SpaceAround.js +31 -166
- package/ui/Elements/SpaceAround/index.js +3 -1
- package/ui/Elements/SpaceAround/types.js +1 -0
- package/ui/Elements/Spinner/Spinner.js +35 -36
- package/ui/Elements/Spinner/index.js +3 -1
- package/ui/Elements/Spinner/styles.js +35 -65
- package/ui/Elements/Spinner/types.js +1 -0
- package/ui/Elements/Table/Table.js +44 -77
- package/ui/Elements/Table/index.js +1 -1
- package/ui/Elements/Tag/Tag.js +47 -82
- package/ui/Elements/Tag/index.js +4 -2
- package/ui/Elements/Tag/palettes.js +50 -45
- package/ui/Elements/Tag/stories/components/predefinedTags.js +17 -18
- package/ui/Elements/Tag/types.js +1 -0
- package/ui/Elements/Text/Text.js +9 -75
- package/ui/Elements/Text/index.js +1 -1
- package/ui/Elements/Text/types.js +1 -0
- package/ui/Elements/Toast/Toast.js +33 -55
- package/ui/Elements/Toast/constants.js +17 -15
- package/ui/Elements/Toast/index.js +3 -1
- package/ui/Elements/Toast/styles.js +74 -104
- package/ui/Elements/Toggle/Toggle.js +120 -258
- package/ui/Elements/Toggle/index.js +3 -1
- package/ui/Elements/Toggle/types.js +1 -0
- package/ui/Elements/Tooltip/Tooltip.js +49 -119
- package/ui/Elements/Tooltip/index.js +3 -1
- package/ui/Elements/Typography/Typography.js +73 -158
- package/ui/Elements/Typography/index.js +4 -3
- package/ui/Forms/Checkbox/Checkbox.js +39 -40
- package/ui/Forms/Checkbox/index.js +5 -3
- package/ui/Forms/Checkbox/styles.js +92 -74
- package/ui/Forms/Checkbox/types.js +1 -0
- package/ui/Forms/Input/Input.js +125 -258
- package/ui/Forms/Input/index.js +3 -1
- package/ui/Forms/Input/styles.js +217 -201
- package/ui/Forms/Input/types.js +1 -0
- package/ui/Forms/RadioButton/RadioButton.js +22 -101
- package/ui/Forms/RadioButton/index.js +3 -1
- package/ui/Forms/RadioButton/styles.js +85 -75
- package/ui/Forms/RadioButton/types.js +1 -0
- package/ui/Forms/TextArea/TextArea.js +33 -153
- package/ui/Forms/TextArea/index.js +3 -1
- package/ui/Forms/TextArea/styles.js +75 -99
- package/ui/System/Fonts/index.js +52 -15
- package/ui/ThemeProvider/ThemeProvider.js +15 -18
- package/ui/ThemeProvider/index.js +5 -4
- package/ui/ThemeProvider/themes/default.js +185 -193
- package/ui/ThemeProvider/themes/index.js +10 -9
- package/ui/ThemeProvider/themes/light.js +7 -8
- package/ui/ThemeProvider/themes/mailwise.js +229 -236
- package/ui/ThemeProvider/types.js +1 -0
- package/ui/_virtual/_rolldown/runtime.js +13 -0
- package/ui/hooks/useToggleAndClose.js +15 -62
- package/ui/index.js +179 -94
- package/ui/packages/assets/fonts/Inter-Bold_mailstep.js +4 -0
- package/ui/packages/assets/fonts/Inter-Light_mailstep.js +4 -0
- package/ui/packages/assets/fonts/Inter-Medium_mailstep.js +4 -0
- package/ui/packages/assets/fonts/Inter-Regular_mailstep.js +4 -0
- package/ui/packages/assets/fonts/Inter-SemiBold_mailstep.js +4 -0
- package/ui/utils/CheckDeviceWidth/checkDeviceWidth.js +14 -63
- package/ui/utils/CreateRgba/createRgba.js +11 -16
- package/ui/utils/CreateRgba/types.js +1 -0
- package/ui/utils/KeyPress/KeyPress.js +15 -22
- package/ui/utils/KeyPress/index.js +4 -2
- package/ui/utils/KeyPress/types.js +1 -0
- package/ui/utils/LinguiContainer/index.js +7 -6
- package/ui/utils/index.js +7 -5
- package/ui/utils/translations.js +334 -333
- package/ui/Blocks/CommonGrid/store/store.d.js +0 -0
- package/ui/Blocks/CornerDialog/index.d.js +0 -2
- package/ui/Blocks/ImageList/index.d.js +0 -2
- package/ui/Blocks/LightBox/index.d.js +0 -3
- package/ui/Blocks/Modal/index.d.js +0 -3
- package/ui/Blocks/Tabs/index.d.js +0 -3
- package/ui/Elements/Alert/index.d.js +0 -3
- package/ui/Elements/Avatar/index.d.js +0 -2
- package/ui/Elements/Badge/index.d.js +0 -2
- package/ui/Elements/BorderedBox/index.d.js +0 -3
- package/ui/Elements/Button/Button.d.js +0 -2
- package/ui/Elements/Button/index.d.js +0 -3
- package/ui/Elements/Card/index.d.js +0 -2
- package/ui/Elements/ErrorMessage/index.d.js +0 -3
- package/ui/Elements/Line/index.d.js +0 -3
- package/ui/Elements/Logo/default.d.js +0 -0
- package/ui/Elements/Logo/index.d.js +0 -2
- package/ui/Elements/Pagination/index.d.js +0 -3
- package/ui/Elements/Spinner/index.d.js +0 -2
- package/ui/Elements/Tag/index.d.js +0 -3
- package/ui/Elements/Text/index.d.js +0 -2
- package/ui/Elements/Toast/index.d.js +0 -3
- package/ui/Elements/Toggle/index.d.js +0 -2
- package/ui/Elements/Tooltip/index.d.js +0 -2
- package/ui/Elements/Typography/index.d.js +0 -2
- package/ui/Forms/Checkbox/index.d.js +0 -2
- package/ui/Forms/Input/index.d.js +0 -3
- package/ui/Forms/RadioButton/index.d.js +0 -2
- package/ui/System/Fonts/font.d.js +0 -0
- package/ui/ThemeProvider/ThemeProvider.d.js +0 -2
- package/ui/ThemeProvider/index.d.js +0 -3
- package/ui/utils/index.d.js +0 -3
package/ui/index.js
CHANGED
|
@@ -1,94 +1,179 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import
|
|
37
|
-
import
|
|
38
|
-
import
|
|
39
|
-
import
|
|
40
|
-
import
|
|
41
|
-
import
|
|
42
|
-
import
|
|
43
|
-
import
|
|
44
|
-
import
|
|
45
|
-
import
|
|
46
|
-
import
|
|
47
|
-
import
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
1
|
+
import { Cancel } from "./Elements/Icon/icons/Cancel.js";
|
|
2
|
+
import { FlagUSA } from "./Elements/Icon/icons/FlagUSA.js";
|
|
3
|
+
import { FlagCZ } from "./Elements/Icon/icons/FlagCZ.js";
|
|
4
|
+
import { FlagEL } from "./Elements/Icon/icons/FlagEL.js";
|
|
5
|
+
import { FlagESP } from "./Elements/Icon/icons/FlagESP.js";
|
|
6
|
+
import { FlagITA } from "./Elements/Icon/icons/FlagITA.js";
|
|
7
|
+
import { FlagRUS } from "./Elements/Icon/icons/FlagRUS.js";
|
|
8
|
+
import { FlagSVK } from "./Elements/Icon/icons/FlagSVK.js";
|
|
9
|
+
import { FlagNL } from "./Elements/Icon/icons/FlagNL.js";
|
|
10
|
+
import { FlagHU } from "./Elements/Icon/icons/FlagHU.js";
|
|
11
|
+
import { FlagUK } from "./Elements/Icon/icons/FlagUK.js";
|
|
12
|
+
import { Complaint } from "./Elements/Icon/icons/Complaint.js";
|
|
13
|
+
import { Expeditions } from "./Elements/Icon/icons/Expeditions.js";
|
|
14
|
+
import { HamburgerMenu } from "./Elements/Icon/icons/HamburgerMenu.js";
|
|
15
|
+
import { HelpCircle1 } from "./Elements/Icon/icons/HelpCircle1.js";
|
|
16
|
+
import { Income } from "./Elements/Icon/icons/Income.js";
|
|
17
|
+
import { Inventory } from "./Elements/Icon/icons/Inventory.js";
|
|
18
|
+
import { MenuItems } from "./Elements/Icon/icons/MenuItems.js";
|
|
19
|
+
import { MobileCancel } from "./Elements/Icon/icons/MobileCancel.js";
|
|
20
|
+
import { Notification2 } from "./Elements/Icon/icons/Notification2.js";
|
|
21
|
+
import { Plus1 } from "./Elements/Icon/icons/Plus1.js";
|
|
22
|
+
import { Products } from "./Elements/Icon/icons/Products.js";
|
|
23
|
+
import { Profile } from "./Elements/Icon/icons/Profile.js";
|
|
24
|
+
import { Return } from "./Elements/Icon/icons/Return.js";
|
|
25
|
+
import { Settings2 } from "./Elements/Icon/icons/Settings2.js";
|
|
26
|
+
import { Transfer } from "./Elements/Icon/icons/Transfer.js";
|
|
27
|
+
import { Product } from "./Elements/Icon/icons/Product.js";
|
|
28
|
+
import { ImagePlaceholder } from "./Elements/Icon/icons/ImagePlaceholder.js";
|
|
29
|
+
import { BarcodeScan } from "./Elements/Icon/icons/BarcodeScan.js";
|
|
30
|
+
import { Inventory2 } from "./Elements/Icon/icons/Inventory2.js";
|
|
31
|
+
import { Logout1 } from "./Elements/Icon/icons/Logout1.js";
|
|
32
|
+
import { Puzzle1 } from "./Elements/Icon/icons/Puzzle1.js";
|
|
33
|
+
import { AddPhoto } from "./Elements/Icon/icons/AddPhoto.js";
|
|
34
|
+
import { Layout } from "./Elements/Icon/icons/Layout.js";
|
|
35
|
+
import { OpenBox } from "./Elements/Icon/icons/OpenBox.js";
|
|
36
|
+
import { Box } from "./Elements/Icon/icons/Box.js";
|
|
37
|
+
import { Rack } from "./Elements/Icon/icons/Rack.js";
|
|
38
|
+
import { CheckedBox } from "./Elements/Icon/icons/CheckedBox.js";
|
|
39
|
+
import { Consolidation } from "./Elements/Icon/icons/Consolidation.js";
|
|
40
|
+
import { Dispatch } from "./Elements/Icon/icons/Dispatch.js";
|
|
41
|
+
import { EmptyRack } from "./Elements/Icon/icons/EmptyRack.js";
|
|
42
|
+
import { Gift } from "./Elements/Icon/icons/Gift.js";
|
|
43
|
+
import { Info } from "./Elements/Icon/icons/Info.js";
|
|
44
|
+
import { Location } from "./Elements/Icon/icons/Location.js";
|
|
45
|
+
import { MakePhoto } from "./Elements/Icon/icons/MakePhoto.js";
|
|
46
|
+
import { Print } from "./Elements/Icon/icons/Print.js";
|
|
47
|
+
import { TwoBoxes } from "./Elements/Icon/icons/TwoBoxes.js";
|
|
48
|
+
import { TwoCheckedBoxes } from "./Elements/Icon/icons/TwoCheckedBoxes.js";
|
|
49
|
+
import { ThreeDots } from "./Elements/Icon/icons/ThreeDots.js";
|
|
50
|
+
import { Calendar } from "./Elements/Icon/icons/Calendar.js";
|
|
51
|
+
import { QRCode } from "./Elements/Icon/icons/QRCode.js";
|
|
52
|
+
import { Rows } from "./Elements/Icon/icons/Rows.js";
|
|
53
|
+
import { Group } from "./Elements/Icon/icons/Group.js";
|
|
54
|
+
import { Company } from "./Elements/Icon/icons/Company.js";
|
|
55
|
+
import { ShoppingBag } from "./Elements/Icon/icons/ShoppingBag.js";
|
|
56
|
+
import { Truck } from "./Elements/Icon/icons/Truck.js";
|
|
57
|
+
import { TwoUsers } from "./Elements/Icon/icons/TwoUsers.js";
|
|
58
|
+
import { Integrations } from "./Elements/Icon/icons/Integrations.js";
|
|
59
|
+
import { ArrowDown } from "./Elements/Icon/icons/ArrowDown.js";
|
|
60
|
+
import { ArrowUp } from "./Elements/Icon/icons/ArrowUp.js";
|
|
61
|
+
import { Desktop } from "./Elements/Icon/icons/Desktop.js";
|
|
62
|
+
import { Message } from "./Elements/Icon/icons/Message.js";
|
|
63
|
+
import { ToastSuccess } from "./Elements/Icon/icons/ToastSuccess.js";
|
|
64
|
+
import { ToastError } from "./Elements/Icon/icons/ToastError.js";
|
|
65
|
+
import { ArrowForward } from "./Elements/Icon/icons/ArrowForward.js";
|
|
66
|
+
import { Add } from "./Elements/Icon/icons/Add.js";
|
|
67
|
+
import { Fragile } from "./Elements/Icon/icons/Fragile.js";
|
|
68
|
+
import { TrashBin } from "./Elements/Icon/icons/TrashBin.js";
|
|
69
|
+
import { Container } from "./Elements/Icon/icons/Container.js";
|
|
70
|
+
import { Dashboard } from "./Elements/Icon/icons/Dashboard.js";
|
|
71
|
+
import { HorizontalLines } from "./Elements/Icon/icons/HorizontalLines.js";
|
|
72
|
+
import { Admin } from "./Elements/Icon/icons/Admin.js";
|
|
73
|
+
import { Pallet } from "./Elements/Icon/icons/Pallet.js";
|
|
74
|
+
import { Liquid } from "./Elements/Icon/icons/Liquid.js";
|
|
75
|
+
import { Foldable } from "./Elements/Icon/icons/Foldable.js";
|
|
76
|
+
import { MachinePackingForbidden } from "./Elements/Icon/icons/MachinePackingForbidden.js";
|
|
77
|
+
import { Valuable } from "./Elements/Icon/icons/Valuable.js";
|
|
78
|
+
import { MobilePhone } from "./Elements/Icon/icons/MobilePhone.js";
|
|
79
|
+
import { Reload } from "./Elements/Icon/icons/Reload.js";
|
|
80
|
+
import { Sun } from "./Elements/Icon/icons/Sun.js";
|
|
81
|
+
import { Moon } from "./Elements/Icon/icons/Moon.js";
|
|
82
|
+
import { CircleHalfStroke } from "./Elements/Icon/icons/CircleHalfStroke.js";
|
|
83
|
+
import { ShieldUser } from "./Elements/Icon/icons/ShieldUser.js";
|
|
84
|
+
import { UserCowboy } from "./Elements/Icon/icons/UserCowboy.js";
|
|
85
|
+
import { ArrowsLeftRight } from "./Elements/Icon/icons/ArrowsLeftRight.js";
|
|
86
|
+
import { ArrowsUpDown } from "./Elements/Icon/icons/ArrowsUpDown.js";
|
|
87
|
+
import { Weight } from "./Elements/Icon/icons/Weight.js";
|
|
88
|
+
import { ArrowUpRightDownLeft } from "./Elements/Icon/icons/ArrowUpRightDownLeft.js";
|
|
89
|
+
import { Filter } from "./Elements/Icon/icons/Filter.js";
|
|
90
|
+
import { Sort } from "./Elements/Icon/icons/Sort.js";
|
|
91
|
+
import { iconDictionary } from "./Elements/Icon/Icon.js";
|
|
92
|
+
import Icon_default from "./Elements/Icon/index.js";
|
|
93
|
+
import Pagination_default from "./Elements/Pagination/index.js";
|
|
94
|
+
import { useModal } from "./Blocks/Modal/hooks/useModal.js";
|
|
95
|
+
import Spinner_default from "./Elements/Spinner/index.js";
|
|
96
|
+
import Button_default from "./Elements/Button/index.js";
|
|
97
|
+
import themes from "./ThemeProvider/themes/index.js";
|
|
98
|
+
import ThemeProvider_default from "./ThemeProvider/index.js";
|
|
99
|
+
import { createRgba } from "./utils/CreateRgba/createRgba.js";
|
|
100
|
+
import KeyPress_default from "./utils/KeyPress/index.js";
|
|
101
|
+
import utils_default from "./utils/index.js";
|
|
102
|
+
import { useClickOutside } from "./Blocks/Modal/hooks/useClickOutside.js";
|
|
103
|
+
import { palettes } from "./Elements/Tag/palettes.js";
|
|
104
|
+
import { H1, H2, H3, H4, H5, H6, H7, Paragraph1, Paragraph2, Paragraph3, Paragraph4, Paragraph5, Text } from "./Elements/Typography/Typography.js";
|
|
105
|
+
import Typography_default from "./Elements/Typography/index.js";
|
|
106
|
+
import Checkbox_default from "./Forms/Checkbox/index.js";
|
|
107
|
+
import ErrorMessage_default from "./Elements/ErrorMessage/index.js";
|
|
108
|
+
import { FieldLabel } from "./Elements/Label/Label.js";
|
|
109
|
+
import Label_default from "./Elements/Label/index.js";
|
|
110
|
+
import SpaceAroundWrap from "./Elements/SpaceAround/SpaceAround.js";
|
|
111
|
+
import SpaceAround_default from "./Elements/SpaceAround/index.js";
|
|
112
|
+
import Select_default from "./Elements/Select/index.js";
|
|
113
|
+
import SingleSelect_default from "./Elements/SingleSelect/index.js";
|
|
114
|
+
import Input_default from "./Forms/Input/index.js";
|
|
115
|
+
import { DatePickerRepeat, TimePickerRepeat } from "./Elements/DatePicker/Datetime/types.js";
|
|
116
|
+
import DatePicker_default from "./Elements/DatePicker/index.js";
|
|
117
|
+
import { useEvent } from "./Blocks/CommonGrid/hooks/useEvent.js";
|
|
118
|
+
import { useAddFilter } from "./Blocks/CommonGrid/hooks/useAddFilter.js";
|
|
119
|
+
import { types_exports } from "./Blocks/CommonGrid/types.js";
|
|
120
|
+
import { Portal } from "./Elements/Portal/index.js";
|
|
121
|
+
import Popover from "./Blocks/Popover/index.js";
|
|
122
|
+
import { CustomSelectButton } from "./Elements/DropdownSelect/DropdownSelect.js";
|
|
123
|
+
import DropdownSelect_default from "./Elements/DropdownSelect/index.js";
|
|
124
|
+
import { DateCell } from "./Blocks/CommonGrid/components/gridCells/Date.js";
|
|
125
|
+
import { DateTimeCell } from "./Blocks/CommonGrid/components/gridCells/DateTime.js";
|
|
126
|
+
import { StringJoinCell } from "./Blocks/CommonGrid/components/gridCells/StringJoin.js";
|
|
127
|
+
import { BoolIconCell } from "./Blocks/CommonGrid/components/gridCells/BoolIcon.js";
|
|
128
|
+
import { RemoveCell } from "./Blocks/CommonGrid/components/gridCells/RemoveItem.js";
|
|
129
|
+
import SimpleLink_default from "./Elements/SimpleLink/index.js";
|
|
130
|
+
import { LinkInCell } from "./Blocks/CommonGrid/components/gridCells/LinkInCell.js";
|
|
131
|
+
import { ButtonInCell } from "./Blocks/CommonGrid/components/gridCells/ButtonInCell.js";
|
|
132
|
+
import { IconButtonInCell } from "./Blocks/CommonGrid/components/gridCells/IconButtonInCell.js";
|
|
133
|
+
import { SwitchInCell } from "./Blocks/CommonGrid/components/gridCells/SwitchInCell.js";
|
|
134
|
+
import { ImageCell } from "./Blocks/CommonGrid/components/gridCells/ImageCell.js";
|
|
135
|
+
import { EnumInCell } from "./Blocks/CommonGrid/components/gridCells/EnumInCell.js";
|
|
136
|
+
import { HoverBubble } from "./Blocks/CommonGrid/components/gridCells/HoverBubble.js";
|
|
137
|
+
import { RowActionsCell } from "./Blocks/CommonGrid/components/gridCells/RowActionsCell.js";
|
|
138
|
+
import { ToggleCell } from "./Blocks/CommonGrid/components/gridCells/ToggleCell.js";
|
|
139
|
+
import store_default, { actionPrefix, actionTypes, createActions, createFullSelector, createSelectors } from "./Blocks/CommonGrid/store/index.js";
|
|
140
|
+
import withReduxActions from "./Blocks/CommonGrid/HoC/withReduxActions.js";
|
|
141
|
+
import useFloatingButton from "./Blocks/CommonGrid/hooks/useFloatingButton.js";
|
|
142
|
+
import CommonGrid_default from "./Blocks/CommonGrid/index.js";
|
|
143
|
+
import CornerDialog_default from "./Blocks/CornerDialog/index.js";
|
|
144
|
+
import Modal_default from "./Blocks/Modal/index.js";
|
|
145
|
+
import { useLightBox } from "./Blocks/LightBox/hooks/useLightBox.js";
|
|
146
|
+
import LightBox_default from "./Blocks/LightBox/index.js";
|
|
147
|
+
import Tag_default from "./Elements/Tag/index.js";
|
|
148
|
+
import ImageList_default from "./Blocks/ImageList/index.js";
|
|
149
|
+
import LanguageSwitch_default from "./Blocks/LanguageSwitch/index.js";
|
|
150
|
+
import LoginPage_default from "./Blocks/LoginPage/index.js";
|
|
151
|
+
import { Scheduler } from "./Blocks/Scheduler/Scheduler.js";
|
|
152
|
+
import "./Blocks/Scheduler/index.js";
|
|
153
|
+
import { HamburgerMenuButton } from "./Blocks/SideMenu/components/HamburgerMenu.js";
|
|
154
|
+
import { compactMenuWidth, expandedMenuWidth } from "./Blocks/SideMenu/utils/constants.js";
|
|
155
|
+
import SideMenu_default from "./Blocks/SideMenu/index.js";
|
|
156
|
+
import { StepCircle } from "./Blocks/Stepper/components/StepCircle/index.js";
|
|
157
|
+
import { Stepper } from "./Blocks/Stepper/Stepper.js";
|
|
158
|
+
import { useStepper } from "./Blocks/Stepper/hooks/useStepper.js";
|
|
159
|
+
import "./Blocks/Stepper/index.js";
|
|
160
|
+
import { TabContent } from "./Blocks/Tabs/TabContent.js";
|
|
161
|
+
import { useTabs } from "./Blocks/Tabs/hooks/useTabs.js";
|
|
162
|
+
import Tabs_default from "./Blocks/Tabs/index.js";
|
|
163
|
+
import Link_default from "./Elements/Link/index.js";
|
|
164
|
+
import Alert_default from "./Elements/Alert/index.js";
|
|
165
|
+
import AsyncSelect_default from "./Elements/AsyncSelect/index.js";
|
|
166
|
+
import Avatar_default from "./Elements/Avatar/index.js";
|
|
167
|
+
import Badge_default from "./Elements/Badge/index.js";
|
|
168
|
+
import BorderedBox_default from "./Elements/BorderedBox/index.js";
|
|
169
|
+
import Card_default from "./Elements/Card/index.js";
|
|
170
|
+
import Dropdown_default from "./Elements/Dropdown/index.js";
|
|
171
|
+
import Image_default from "./Elements/Image/index.js";
|
|
172
|
+
import Line_default from "./Elements/Line/index.js";
|
|
173
|
+
import Logo_default from "./Elements/Logo/index.js";
|
|
174
|
+
import ProgressBar_default from "./Elements/ProgressBar/index.js";
|
|
175
|
+
import Toast_default from "./Elements/Toast/index.js";
|
|
176
|
+
import Toggle_default from "./Elements/Toggle/index.js";
|
|
177
|
+
import RadioButton_default from "./Forms/RadioButton/index.js";
|
|
178
|
+
import TextArea_default from "./Forms/TextArea/index.js";
|
|
179
|
+
export { Add, AddPhoto, Admin, Alert_default as Alert, ArrowDown, ArrowForward, ArrowUp, ArrowUpRightDownLeft, ArrowsLeftRight, ArrowsUpDown, AsyncSelect_default as AsyncSelect, Avatar_default as Avatar, Badge_default as Badge, BarcodeScan, BoolIconCell, BorderedBox_default as BorderedBox, Box, Button_default as Button, ButtonInCell, Calendar, Cancel, Card_default as Card, Checkbox_default as Checkbox, CheckedBox, CircleHalfStroke, CommonGrid_default as CommonGrid, Company, Complaint, Consolidation, Container, CornerDialog_default as CornerDialog, CustomSelectButton, Dashboard, DateCell, DatePicker_default as DatePicker, DatePickerRepeat, DateTimeCell, Desktop, Dispatch, Dropdown_default as Dropdown, DropdownSelect_default as DropdownSelect, EmptyRack, EnumInCell, ErrorMessage_default as ErrorMessage, Expeditions, FieldLabel, Filter, FlagCZ, FlagEL, FlagESP, FlagHU, FlagITA, FlagNL, FlagRUS, FlagSVK, FlagUK, FlagUSA, Foldable, Fragile, Gift, Group, H1, H2, H3, H4, H5, H6, H7, HamburgerMenu, HamburgerMenuButton, HelpCircle1, HorizontalLines, HoverBubble, Icon_default as Icon, IconButtonInCell, Image_default as Image, ImageCell, ImageList_default as ImageList, ImagePlaceholder, Income, Info, Input_default as Input, Integrations, Inventory, Inventory2, KeyPress_default as KeyPress, Label_default as Label, LanguageSwitch_default as LanguageSwitch, Layout, LightBox_default as LightBox, Line_default as Line, Link_default as Link, LinkInCell, Liquid, Location, LoginPage_default as LoginPage, Logo_default as Logo, Logout1, MachinePackingForbidden, MakePhoto, MenuItems, Message, MobileCancel, MobilePhone, Modal_default as Modal, Moon, Notification2, OpenBox, Pagination_default as Pagination, Pallet, Paragraph1, Paragraph2, Paragraph3, Paragraph4, Paragraph5, Plus1, Popover, Portal, Print, Product, Products, Profile, ProgressBar_default as ProgressBar, Puzzle1, QRCode, Rack, RadioButton_default as RadioButton, Reload, RemoveCell, Return, RowActionsCell, Rows, Scheduler, Select_default as Select, Settings2, ShieldUser, ShoppingBag, SideMenu_default as SideMenu, SimpleLink_default as SimpleLink, SingleSelect_default as SingleSelect, Sort, SpaceAround_default as SpaceAround, SpaceAroundWrap, Spinner_default as Spinner, StepCircle, Stepper, StringJoinCell, Sun, SwitchInCell, TabContent, Tabs_default as Tabs, Tag_default as Tag, Text, TextArea_default as TextArea, ThemeProvider_default as ThemeProvider, ThreeDots, TimePickerRepeat, Toast_default as Toast, ToastError, ToastSuccess, Toggle_default as Toggle, ToggleCell, Transfer, TrashBin, Truck, TwoBoxes, TwoCheckedBoxes, TwoUsers, types_exports as Types, Typography_default as Typography, UserCowboy, Valuable, Weight, actionPrefix, actionTypes, compactMenuWidth, createActions, createFullSelector, createRgba, createSelectors, expandedMenuWidth, iconDictionary, palettes, store_default as reducer, themes, useAddFilter, useClickOutside, useEvent, useFloatingButton, useLightBox, useModal, useStepper, useTabs, utils_default as utils, withReduxActions };
|
|
@@ -1,66 +1,17 @@
|
|
|
1
|
-
function _array_like_to_array(arr, len) {
|
|
2
|
-
if (len == null || len > arr.length) len = arr.length;
|
|
3
|
-
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
4
|
-
return arr2;
|
|
5
|
-
}
|
|
6
|
-
function _array_with_holes(arr) {
|
|
7
|
-
if (Array.isArray(arr)) return arr;
|
|
8
|
-
}
|
|
9
|
-
function _iterable_to_array_limit(arr, i) {
|
|
10
|
-
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
11
|
-
if (_i == null) return;
|
|
12
|
-
var _arr = [];
|
|
13
|
-
var _n = true;
|
|
14
|
-
var _d = false;
|
|
15
|
-
var _s, _e;
|
|
16
|
-
try {
|
|
17
|
-
for(_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true){
|
|
18
|
-
_arr.push(_s.value);
|
|
19
|
-
if (i && _arr.length === i) break;
|
|
20
|
-
}
|
|
21
|
-
} catch (err) {
|
|
22
|
-
_d = true;
|
|
23
|
-
_e = err;
|
|
24
|
-
} finally{
|
|
25
|
-
try {
|
|
26
|
-
if (!_n && _i["return"] != null) _i["return"]();
|
|
27
|
-
} finally{
|
|
28
|
-
if (_d) throw _e;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
return _arr;
|
|
32
|
-
}
|
|
33
|
-
function _non_iterable_rest() {
|
|
34
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
35
|
-
}
|
|
36
|
-
function _sliced_to_array(arr, i) {
|
|
37
|
-
return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
|
|
38
|
-
}
|
|
39
|
-
function _unsupported_iterable_to_array(o, minLen) {
|
|
40
|
-
if (!o) return;
|
|
41
|
-
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
42
|
-
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
43
|
-
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
44
|
-
if (n === "Map" || n === "Set") return Array.from(n);
|
|
45
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
46
|
-
}
|
|
47
1
|
import { useEffect, useState } from "react";
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}, []);
|
|
62
|
-
return {
|
|
63
|
-
isMobile: isMobile
|
|
64
|
-
};
|
|
2
|
+
//#region packages/ui/utils/CheckDeviceWidth/checkDeviceWidth.ts
|
|
3
|
+
const useCheckDeviceWidth = () => {
|
|
4
|
+
const [isMobile, setIsMobile] = useState(false);
|
|
5
|
+
useEffect(() => {
|
|
6
|
+
const handleResize = () => {
|
|
7
|
+
if (window.innerWidth < 1024) setIsMobile?.(true);
|
|
8
|
+
else setIsMobile(false);
|
|
9
|
+
};
|
|
10
|
+
window.addEventListener("resize", handleResize);
|
|
11
|
+
handleResize();
|
|
12
|
+
return () => window.removeEventListener("resize", handleResize);
|
|
13
|
+
}, []);
|
|
14
|
+
return { isMobile };
|
|
65
15
|
};
|
|
16
|
+
//#endregion
|
|
66
17
|
export { useCheckDeviceWidth };
|
|
@@ -1,17 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
var g = parseInt("0x".concat(color.substr(3, 2)));
|
|
11
|
-
var b = parseInt("0x".concat(color.substr(5, 2)));
|
|
12
|
-
return "rgba(".concat(r, ", ").concat(g, ", ").concat(b, ", ").concat(alpha, ")");
|
|
13
|
-
}
|
|
14
|
-
return color;
|
|
1
|
+
import themes from "../../ThemeProvider/themes/index.js";
|
|
2
|
+
import "../../ThemeProvider/index.js";
|
|
3
|
+
import getOr from "lodash/fp/getOr.js";
|
|
4
|
+
//#region packages/ui/utils/CreateRgba/createRgba.ts
|
|
5
|
+
const createRgba = (color, alpha) => {
|
|
6
|
+
color = getOr(false, `colors[${color}]`, themes.default) || color;
|
|
7
|
+
if (/^rgb/.test(color)) return `rgba(${color.substring(color.indexOf("(") + 1, color.length - 1)}, ${alpha})`;
|
|
8
|
+
if (/^#/.test(color)) return `rgba(${parseInt(`0x${color.substr(1, 2)}`)}, ${parseInt(`0x${color.substr(3, 2)}`)}, ${parseInt(`0x${color.substr(5, 2)}`)}, ${alpha})`;
|
|
9
|
+
return color;
|
|
15
10
|
};
|
|
16
|
-
|
|
17
|
-
export { createRgba,
|
|
11
|
+
//#endregion
|
|
12
|
+
export { createRgba, createRgba as default };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,23 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
return function() {
|
|
15
|
-
document.removeEventListener("keydown", testKeyCode, false);
|
|
16
|
-
};
|
|
17
|
-
}, [
|
|
18
|
-
testKeyCode
|
|
19
|
-
]);
|
|
20
|
-
return null;
|
|
1
|
+
import { useCallback, useEffect } from "react";
|
|
2
|
+
//#region packages/ui/utils/KeyPress/KeyPress.tsx
|
|
3
|
+
const OnKeyPress = ({ action, keyCode }) => {
|
|
4
|
+
const testKeyCode = useCallback((event) => {
|
|
5
|
+
if (event.keyCode === keyCode) action();
|
|
6
|
+
}, [keyCode, action]);
|
|
7
|
+
useEffect(() => {
|
|
8
|
+
document.addEventListener("keydown", testKeyCode, false);
|
|
9
|
+
return () => {
|
|
10
|
+
document.removeEventListener("keydown", testKeyCode, false);
|
|
11
|
+
};
|
|
12
|
+
}, [testKeyCode]);
|
|
13
|
+
return null;
|
|
21
14
|
};
|
|
22
|
-
|
|
23
|
-
export {
|
|
15
|
+
//#endregion
|
|
16
|
+
export { OnKeyPress as default };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { i18n } from "@lingui/core";
|
|
3
3
|
import { I18nProvider } from "@lingui/react";
|
|
4
|
+
//#region packages/ui/utils/LinguiContainer/index.tsx
|
|
4
5
|
i18n.activate("en");
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
});
|
|
6
|
+
const LinguiContainer = ({ children }) => {
|
|
7
|
+
return /* @__PURE__ */ jsx(I18nProvider, {
|
|
8
|
+
i18n,
|
|
9
|
+
children
|
|
10
|
+
});
|
|
11
11
|
};
|
|
12
|
+
//#endregion
|
|
12
13
|
export { LinguiContainer };
|
package/ui/utils/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import createRgba from "./CreateRgba/createRgba";
|
|
2
|
-
import
|
|
1
|
+
import { createRgba } from "./CreateRgba/createRgba.js";
|
|
2
|
+
import KeyPress_default from "./KeyPress/index.js";
|
|
3
|
+
//#region packages/ui/utils/index.ts
|
|
3
4
|
var utils_default = {
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
createRgba,
|
|
6
|
+
KeyPress: KeyPress_default
|
|
6
7
|
};
|
|
7
|
-
|
|
8
|
+
//#endregion
|
|
9
|
+
export { KeyPress_default as KeyPress, createRgba, utils_default as default };
|