@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
|
@@ -1,305 +1,197 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
fontSize: "14px",
|
|
162
|
-
cursor: !isDisabled ? "pointer" : "default",
|
|
163
|
-
display: "flex",
|
|
164
|
-
flexDirection: "row",
|
|
165
|
-
alignItems: "center",
|
|
166
|
-
padding: "7px 10px",
|
|
167
|
-
minHeight: "36px",
|
|
168
|
-
marginRight: "4px",
|
|
169
|
-
marginBottom: "2px",
|
|
170
|
-
lineHeight: "22px",
|
|
171
|
-
borderRadius: th.radius("ml")({
|
|
172
|
-
theme: selectProps === null || selectProps === void 0 ? void 0 : selectProps.systemTheme
|
|
173
|
-
}),
|
|
174
|
-
"&:hover": {
|
|
175
|
-
backgroundColor: isSelected ? theme.colors.hoverToActiveOptionBackground : !isDisabled ? theme.colors.menuHoverBackgroundColor : void 0
|
|
176
|
-
}
|
|
177
|
-
};
|
|
178
|
-
},
|
|
179
|
-
menu: function menu(styles, state) {
|
|
180
|
-
var theme = state.theme;
|
|
181
|
-
return _object_spread_props(_object_spread({}, styles), {
|
|
182
|
-
boxShadow: "0 2px 20px 0 rgba(0, 0, 0, 0.10);",
|
|
183
|
-
marginTop: "4px",
|
|
184
|
-
paddingTop: "0",
|
|
185
|
-
borderRadius: "10px",
|
|
186
|
-
zIndex: 3,
|
|
187
|
-
minWidth: "max-content",
|
|
188
|
-
backgroundColor: theme.colors.whiteBackgroundColor
|
|
189
|
-
});
|
|
190
|
-
},
|
|
191
|
-
menuList: function menuList(styles, param) {
|
|
192
|
-
var theme = param.theme;
|
|
193
|
-
return _object_spread_props(_object_spread({}, styles), {
|
|
194
|
-
margin: "8px 4px 8px 8px",
|
|
195
|
-
"::-webkit-scrollbar-thumb": {
|
|
196
|
-
border: "none",
|
|
197
|
-
borderRadius: "4px",
|
|
198
|
-
height: "47px",
|
|
199
|
-
backgroundColor: theme.colors.defaultControlColor,
|
|
200
|
-
"&:hover": {
|
|
201
|
-
backgroundColor: theme.colors.dropdownIndicatorColor
|
|
202
|
-
}
|
|
203
|
-
},
|
|
204
|
-
"::-webkit-scrollbar": {
|
|
205
|
-
width: "10px"
|
|
206
|
-
},
|
|
207
|
-
"::-webkit-scrollbar-track": {
|
|
208
|
-
backgroundColor: theme.colors.menuHoverBackgroundColor,
|
|
209
|
-
borderRadius: "6px"
|
|
210
|
-
}
|
|
211
|
-
});
|
|
212
|
-
},
|
|
213
|
-
dropdownIndicator: function dropdownIndicator(styles) {
|
|
214
|
-
return _object_spread_props(_object_spread({}, styles), {
|
|
215
|
-
justifyContent: "center",
|
|
216
|
-
alignItems: "center",
|
|
217
|
-
padding: "0px 7px 0px 0px"
|
|
218
|
-
});
|
|
219
|
-
},
|
|
220
|
-
clearIndicator: function clearIndicator(styles, state) {
|
|
221
|
-
var theme = state.theme, selectProps = state.selectProps;
|
|
222
|
-
return _object_spread_props(_object_spread({}, styles), {
|
|
223
|
-
justifyContent: "center",
|
|
224
|
-
alignItems: "center",
|
|
225
|
-
padding: theme.narrowIndicators && selectProps.containerVariant !== "search" ? "0px" : "0px 4px",
|
|
226
|
-
color: theme.colors.clearIndicatorColor,
|
|
227
|
-
cursor: "pointer"
|
|
228
|
-
});
|
|
229
|
-
},
|
|
230
|
-
indicatorSeparator: function indicatorSeparator() {
|
|
231
|
-
return {
|
|
232
|
-
display: "none"
|
|
233
|
-
};
|
|
234
|
-
}
|
|
1
|
+
import { th } from "/home/linomorfed/Projects/design-system/node_modules/@xstyled/system/dist/index.mjs";
|
|
2
|
+
//#region packages/ui/Elements/Select/themes/selectStyles.ts
|
|
3
|
+
const CustomStyles = {
|
|
4
|
+
control: (styles, { selectProps, theme, isFocused, isDisabled }) => {
|
|
5
|
+
const colors = theme.colors;
|
|
6
|
+
return {
|
|
7
|
+
...styles,
|
|
8
|
+
borderColor: selectProps.isInvalid ? colors.primary : isFocused ? colors.inputTextColor : colors.inputBorderColor,
|
|
9
|
+
backgroundColor: isDisabled ? colors.menuHoverBackgroundColor : colors.whiteBackgroundColor,
|
|
10
|
+
boxShadow: theme.focusBoxShadow,
|
|
11
|
+
borderRadius: theme.borderRadius,
|
|
12
|
+
"& input": {
|
|
13
|
+
fontWeight: theme.textWeightNormal,
|
|
14
|
+
fontFamily: theme.font
|
|
15
|
+
},
|
|
16
|
+
"&:hover": {
|
|
17
|
+
...styles["&:hover"] ?? {},
|
|
18
|
+
borderColor: colors.inputBorderHoverColor
|
|
19
|
+
},
|
|
20
|
+
fontSize: "14px",
|
|
21
|
+
minWidth: "min-content",
|
|
22
|
+
".inputIcon": { color: isDisabled ? colors.defaultControlColor : selectProps.value ? colors.inputTextColor : colors.defaultControlColor }
|
|
23
|
+
};
|
|
24
|
+
},
|
|
25
|
+
valueContainer: (styles, { theme }) => {
|
|
26
|
+
return {
|
|
27
|
+
...styles,
|
|
28
|
+
width: "50px",
|
|
29
|
+
paddingLeft: "7px",
|
|
30
|
+
flexWrap: theme.flexWrap
|
|
31
|
+
};
|
|
32
|
+
},
|
|
33
|
+
singleValue: (styles, { selectProps, theme, isDisabled }) => {
|
|
34
|
+
return {
|
|
35
|
+
...styles,
|
|
36
|
+
position: "absolute",
|
|
37
|
+
top: "50%",
|
|
38
|
+
transform: "translateY(-50%)",
|
|
39
|
+
color: selectProps.isInvalid ? theme.colors.primary : isDisabled ? theme.colors.disabledTextColor : theme.colors.inputTextColor,
|
|
40
|
+
fontSize: "14px",
|
|
41
|
+
fontWeight: theme.textWeightNormal
|
|
42
|
+
};
|
|
43
|
+
},
|
|
44
|
+
multiValue: (styles, state) => {
|
|
45
|
+
const { theme } = state;
|
|
46
|
+
return {
|
|
47
|
+
...styles,
|
|
48
|
+
color: theme.colors.inputTextColor,
|
|
49
|
+
fontWeight: theme.textWeightNormal,
|
|
50
|
+
backgroundColor: "#E7EBEF",
|
|
51
|
+
borderRadius: "4px",
|
|
52
|
+
"& svg": { color: theme.colors.inputTextColor },
|
|
53
|
+
" > div": { fontSize: "12px" }
|
|
54
|
+
};
|
|
55
|
+
},
|
|
56
|
+
multiValueLabel: (styles) => ({
|
|
57
|
+
...styles,
|
|
58
|
+
fontSize: "unset",
|
|
59
|
+
padding: "5px"
|
|
60
|
+
}),
|
|
61
|
+
multiValueRemove: (styles, { theme }) => ({
|
|
62
|
+
...styles,
|
|
63
|
+
color: theme.colors.inputBorderColor
|
|
64
|
+
}),
|
|
65
|
+
placeholder: (styles, state) => {
|
|
66
|
+
const { theme, selectProps } = state;
|
|
67
|
+
return {
|
|
68
|
+
...styles,
|
|
69
|
+
fontSize: "14px",
|
|
70
|
+
fontWeight: theme.textWeightNormal,
|
|
71
|
+
textOverflow: "ellipsis",
|
|
72
|
+
whiteSpace: "nowrap",
|
|
73
|
+
overflow: "hidden",
|
|
74
|
+
maxWidth: "calc(100% - 8px)",
|
|
75
|
+
color: selectProps.isDarkPlaceholderText ? theme.colors.inputTextColor : theme.colors.placeholderTextColor
|
|
76
|
+
};
|
|
77
|
+
},
|
|
78
|
+
loadingMessage: (styles, { theme }) => ({
|
|
79
|
+
...styles,
|
|
80
|
+
color: theme.colors.optionTextColor
|
|
81
|
+
}),
|
|
82
|
+
noOptionsMessage: (styles, { theme }) => ({
|
|
83
|
+
...styles,
|
|
84
|
+
color: theme.colors.optionTextColor
|
|
85
|
+
}),
|
|
86
|
+
input: (styles, { theme }) => ({
|
|
87
|
+
...styles,
|
|
88
|
+
color: theme.colors.inputTextColor
|
|
89
|
+
}),
|
|
90
|
+
option: (styles, { isSelected, theme, isDisabled, selectProps }) => {
|
|
91
|
+
const defaultColor = theme.colors.optionTextColor;
|
|
92
|
+
return {
|
|
93
|
+
color: isSelected ? theme.colors.primary : defaultColor,
|
|
94
|
+
backgroundColor: isSelected ? theme.colors.activeOptionBackground : void 0,
|
|
95
|
+
fontWeight: theme.textWeightNormal,
|
|
96
|
+
fontSize: "14px",
|
|
97
|
+
cursor: !isDisabled ? "pointer" : "default",
|
|
98
|
+
display: "flex",
|
|
99
|
+
flexDirection: "row",
|
|
100
|
+
alignItems: "center",
|
|
101
|
+
padding: "7px 10px",
|
|
102
|
+
minHeight: "36px",
|
|
103
|
+
marginRight: "4px",
|
|
104
|
+
marginBottom: "2px",
|
|
105
|
+
lineHeight: "22px",
|
|
106
|
+
borderRadius: th.radius("ml")({ theme: selectProps?.systemTheme }),
|
|
107
|
+
"&:hover": { backgroundColor: isSelected ? theme.colors.hoverToActiveOptionBackground : !isDisabled ? theme.colors.menuHoverBackgroundColor : void 0 }
|
|
108
|
+
};
|
|
109
|
+
},
|
|
110
|
+
menu: (styles, state) => {
|
|
111
|
+
const { theme } = state;
|
|
112
|
+
return {
|
|
113
|
+
...styles,
|
|
114
|
+
boxShadow: "0 2px 20px 0 rgba(0, 0, 0, 0.10);",
|
|
115
|
+
marginTop: "4px",
|
|
116
|
+
paddingTop: "0",
|
|
117
|
+
borderRadius: "10px",
|
|
118
|
+
zIndex: 3,
|
|
119
|
+
minWidth: "max-content",
|
|
120
|
+
backgroundColor: theme.colors.whiteBackgroundColor
|
|
121
|
+
};
|
|
122
|
+
},
|
|
123
|
+
menuList: (styles, { theme }) => {
|
|
124
|
+
return {
|
|
125
|
+
...styles,
|
|
126
|
+
margin: "8px 4px 8px 8px",
|
|
127
|
+
"::-webkit-scrollbar-thumb": {
|
|
128
|
+
border: "none",
|
|
129
|
+
borderRadius: "4px",
|
|
130
|
+
height: "47px",
|
|
131
|
+
backgroundColor: theme.colors.defaultControlColor,
|
|
132
|
+
"&:hover": { backgroundColor: theme.colors.dropdownIndicatorColor }
|
|
133
|
+
},
|
|
134
|
+
"::-webkit-scrollbar": { width: "10px" },
|
|
135
|
+
"::-webkit-scrollbar-track": {
|
|
136
|
+
backgroundColor: theme.colors.menuHoverBackgroundColor,
|
|
137
|
+
borderRadius: "6px"
|
|
138
|
+
}
|
|
139
|
+
};
|
|
140
|
+
},
|
|
141
|
+
dropdownIndicator: (styles) => {
|
|
142
|
+
return {
|
|
143
|
+
...styles,
|
|
144
|
+
justifyContent: "center",
|
|
145
|
+
alignItems: "center",
|
|
146
|
+
padding: "0px 7px 0px 0px"
|
|
147
|
+
};
|
|
148
|
+
},
|
|
149
|
+
clearIndicator: (styles, state) => {
|
|
150
|
+
const { theme, selectProps } = state;
|
|
151
|
+
return {
|
|
152
|
+
...styles,
|
|
153
|
+
justifyContent: "center",
|
|
154
|
+
alignItems: "center",
|
|
155
|
+
padding: theme.narrowIndicators && selectProps.containerVariant !== "search" ? "0px" : "0px 4px",
|
|
156
|
+
color: theme.colors.clearIndicatorColor,
|
|
157
|
+
cursor: "pointer"
|
|
158
|
+
};
|
|
159
|
+
},
|
|
160
|
+
indicatorSeparator: () => ({ display: "none" })
|
|
235
161
|
};
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
disabledTextColor: th.color("lightGray6")({
|
|
270
|
-
theme: theme
|
|
271
|
-
}),
|
|
272
|
-
dropdownIndicatorColor: th.color("gray1")({
|
|
273
|
-
theme: theme
|
|
274
|
-
}),
|
|
275
|
-
inputBorderHoverColor: th.color("gray5")({
|
|
276
|
-
theme: theme
|
|
277
|
-
}),
|
|
278
|
-
activeOptionBackground: th.color("red20")({
|
|
279
|
-
theme: theme
|
|
280
|
-
}),
|
|
281
|
-
hoverToActiveOptionBackground: th.color("red30")({
|
|
282
|
-
theme: theme
|
|
283
|
-
})
|
|
284
|
-
};
|
|
285
|
-
return function(reactSelectTheme) {
|
|
286
|
-
return _object_spread_props(_object_spread({}, reactSelectTheme), {
|
|
287
|
-
colors: customColors,
|
|
288
|
-
focusBoxShadow: null,
|
|
289
|
-
height: "38px",
|
|
290
|
-
flexWrap: useFilterSubvariant ? "nowrap" : "wrap",
|
|
291
|
-
textWeightNormal: th.fontWeight("normal")({
|
|
292
|
-
theme: theme
|
|
293
|
-
}),
|
|
294
|
-
optionVariant: optionVariant,
|
|
295
|
-
borderRadius: th.radius("lg")({
|
|
296
|
-
theme: theme
|
|
297
|
-
}),
|
|
298
|
-
font: th.font("primary")({
|
|
299
|
-
theme: theme
|
|
300
|
-
}),
|
|
301
|
-
narrowIndicators: !!useFilterSubvariant
|
|
302
|
-
});
|
|
303
|
-
};
|
|
162
|
+
const getCustomTheme = (theme, optionVariant, useFilterSubvariant) => {
|
|
163
|
+
const inputTextColor = th.color("blue2")({ theme });
|
|
164
|
+
const customColors = {
|
|
165
|
+
primary: th.color("red1")({ theme }),
|
|
166
|
+
inputTextColor,
|
|
167
|
+
whiteBackgroundColor: th.color("white")({ theme }),
|
|
168
|
+
optionTextColor: th.color("blue2")({ theme }),
|
|
169
|
+
menuHoverBackgroundColor: th.color("bgLightGray1")({ theme }),
|
|
170
|
+
inputDisabledColor: th.color("lightGray1")({ theme }),
|
|
171
|
+
inputBorderColor: th.color("lightGray3")({ theme }),
|
|
172
|
+
placeholderTextColor: th.color("lightGray3")({ theme }),
|
|
173
|
+
clearIndicatorColor: th.color("lightGray4")({ theme }),
|
|
174
|
+
defaultControlColor: th.color("lightGray5")({ theme }),
|
|
175
|
+
disabledTextColor: th.color("lightGray6")({ theme }),
|
|
176
|
+
dropdownIndicatorColor: th.color("gray1")({ theme }),
|
|
177
|
+
inputBorderHoverColor: th.color("gray5")({ theme }),
|
|
178
|
+
activeOptionBackground: th.color("red20")({ theme }),
|
|
179
|
+
hoverToActiveOptionBackground: th.color("red30")({ theme })
|
|
180
|
+
};
|
|
181
|
+
return (reactSelectTheme) => {
|
|
182
|
+
return {
|
|
183
|
+
...reactSelectTheme,
|
|
184
|
+
colors: customColors,
|
|
185
|
+
focusBoxShadow: null,
|
|
186
|
+
height: "38px",
|
|
187
|
+
flexWrap: useFilterSubvariant ? "nowrap" : "wrap",
|
|
188
|
+
textWeightNormal: th.fontWeight("normal")({ theme }),
|
|
189
|
+
optionVariant,
|
|
190
|
+
borderRadius: th.radius("lg")({ theme }),
|
|
191
|
+
font: th.font("primary")({ theme }),
|
|
192
|
+
narrowIndicators: !!useFilterSubvariant
|
|
193
|
+
};
|
|
194
|
+
};
|
|
304
195
|
};
|
|
196
|
+
//#endregion
|
|
305
197
|
export { CustomStyles, getCustomTheme };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,64 +1,35 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
};
|
|
37
|
-
return data;
|
|
38
|
-
}
|
|
39
|
-
function _templateObject3() {
|
|
40
|
-
var data = _tagged_template_literal([
|
|
41
|
-
"\n color: inherit;\n cursor: pointer;\n\n :visited {\n color: inherit;\n }\n :hover {\n color: inherit;\n }\n :active {\n color: inherit;\n }\n :focus {\n outline: none;\n }\n\n ",
|
|
42
|
-
"\n\n ",
|
|
43
|
-
"\n\n ",
|
|
44
|
-
"\n"
|
|
45
|
-
]);
|
|
46
|
-
_templateObject3 = function _templateObject() {
|
|
47
|
-
return data;
|
|
48
|
-
};
|
|
49
|
-
return data;
|
|
50
|
-
}
|
|
51
|
-
import { Link as ReactLink } from "react-router-dom";
|
|
52
|
-
import styled, { css } from "@xstyled/styled-components";
|
|
53
|
-
var StyledLink = styled(ReactLink)(_templateObject3(), function(param) {
|
|
54
|
-
var disabled = param.disabled;
|
|
55
|
-
return disabled ? css(_templateObject()) : null;
|
|
56
|
-
}, function(param) {
|
|
57
|
-
var $decorate = param.$decorate;
|
|
58
|
-
return $decorate ? css(_templateObject1()) : null;
|
|
59
|
-
}, function(param) {
|
|
60
|
-
var variant = param.variant;
|
|
61
|
-
return variant ? css(_templateObject2(), variant) : null;
|
|
62
|
-
});
|
|
63
|
-
var SimpleLink_default = StyledLink;
|
|
64
|
-
export { SimpleLink_default as default };
|
|
1
|
+
import styled$1, { css } from "@xstyled/styled-components";
|
|
2
|
+
import { Link } from "react-router-dom";
|
|
3
|
+
//#region packages/ui/Elements/SimpleLink/SimpleLink.tsx
|
|
4
|
+
const StyledLink = styled$1(Link)`
|
|
5
|
+
color: inherit;
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
|
|
8
|
+
:visited {
|
|
9
|
+
color: inherit;
|
|
10
|
+
}
|
|
11
|
+
:hover {
|
|
12
|
+
color: inherit;
|
|
13
|
+
}
|
|
14
|
+
:active {
|
|
15
|
+
color: inherit;
|
|
16
|
+
}
|
|
17
|
+
:focus {
|
|
18
|
+
outline: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
${({ disabled }) => disabled ? css`
|
|
22
|
+
pointer-events: none;
|
|
23
|
+
opacity: 0.5;
|
|
24
|
+
` : null}
|
|
25
|
+
|
|
26
|
+
${({ $decorate }) => $decorate ? css`
|
|
27
|
+
text-decoration: underline;
|
|
28
|
+
` : null}
|
|
29
|
+
|
|
30
|
+
${({ variant }) => variant ? css`
|
|
31
|
+
font-weight: ${variant};
|
|
32
|
+
` : null}
|
|
33
|
+
`;
|
|
34
|
+
//#endregion
|
|
35
|
+
export { StyledLink as default };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import StyledLink from "./SimpleLink.js";
|
|
2
|
+
//#region packages/ui/Elements/SimpleLink/index.ts
|
|
3
|
+
var SimpleLink_default = StyledLink;
|
|
4
|
+
//#endregion
|
|
5
|
+
export { StyledLink as SimpleLink, SimpleLink_default as default };
|