@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,60 +1,16 @@
|
|
|
1
|
-
|
|
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
|
-
}
|
|
1
|
+
import { useModal } from "../../Modal/hooks/useModal.js";
|
|
47
2
|
import { useState } from "react";
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
3
|
+
//#region packages/ui/Blocks/CommonGrid/hooks/usePresetsState.ts
|
|
4
|
+
const usePresetState = () => {
|
|
5
|
+
const { isOpen: isPresetsModalOpen, onOpen: onOpenPresetsModal, onClose: onClosePresetsModal } = useModal();
|
|
6
|
+
const [selectedPresetName, setSelectedPresetName] = useState("");
|
|
7
|
+
return {
|
|
8
|
+
isPresetsModalOpen,
|
|
9
|
+
onOpenPresetsModal,
|
|
10
|
+
onClosePresetsModal,
|
|
11
|
+
selectedPresetName,
|
|
12
|
+
setSelectedPresetName
|
|
13
|
+
};
|
|
59
14
|
};
|
|
15
|
+
//#endregion
|
|
60
16
|
export { usePresetState };
|
|
@@ -1,151 +1,78 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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
|
-
}
|
|
1
|
+
import { useCheckDeviceWidth } from "../../../utils/CheckDeviceWidth/checkDeviceWidth.js";
|
|
2
|
+
import { getTranslatedValue } from "../components/ManageColumnForm/utils.js";
|
|
3
|
+
import { createFilterType } from "../utils/index.js";
|
|
4
|
+
import { useAddFilter } from "./useAddFilter.js";
|
|
47
5
|
import { useCallback, useEffect, useState } from "react";
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
6
|
+
//#region packages/ui/Blocks/CommonGrid/hooks/useQuickFilter.ts
|
|
7
|
+
const defaultVoidFunction = (...args) => null;
|
|
8
|
+
const useQuickFilter = ({ gridActions, gridSelectors, quickFilter, columns, filters }) => {
|
|
9
|
+
const { addFilter = defaultVoidFunction, clearSettings = defaultVoidFunction } = gridActions;
|
|
10
|
+
const { filter } = gridSelectors;
|
|
11
|
+
const { isMobile } = useCheckDeviceWidth();
|
|
12
|
+
const [searchedValue, setSearchedValue] = useState("");
|
|
13
|
+
const [displayInput, setDisplayInput] = useState(false);
|
|
14
|
+
const handleAddFilter = useAddFilter(addFilter);
|
|
15
|
+
const quickFilterValues = quickFilter ? filter?.[quickFilter]?.value : void 0;
|
|
16
|
+
const searchedColumnsDefinitions = columns?.find((item) => item.name === quickFilter) || null;
|
|
17
|
+
const filterType = createFilterType(searchedColumnsDefinitions || {});
|
|
18
|
+
const filtersDefaultComparator = filters?.[filterType].defaultExtraProps?.defaultComparator || "eq";
|
|
19
|
+
const searchComparator = quickFilterValues && quickFilterValues.comparator || filtersDefaultComparator;
|
|
20
|
+
const isMobileInputView = isMobile && displayInput;
|
|
21
|
+
useEffect(() => {
|
|
22
|
+
if (quickFilterValues) setSearchedValue(quickFilterValues.value);
|
|
23
|
+
else setSearchedValue("");
|
|
24
|
+
}, [
|
|
25
|
+
quickFilterValues,
|
|
26
|
+
quickFilter,
|
|
27
|
+
setSearchedValue
|
|
28
|
+
]);
|
|
29
|
+
useEffect(() => {
|
|
30
|
+
if (isMobile) setDisplayInput(false);
|
|
31
|
+
else setDisplayInput(true);
|
|
32
|
+
}, [isMobile]);
|
|
33
|
+
const onChangeInputValue = useCallback((e) => {
|
|
34
|
+
setSearchedValue(e.target.value);
|
|
35
|
+
const value = {
|
|
36
|
+
comparator: searchComparator,
|
|
37
|
+
value: e.target.value
|
|
38
|
+
};
|
|
39
|
+
searchedColumnsDefinitions && handleAddFilter(value, searchedColumnsDefinitions);
|
|
40
|
+
}, [
|
|
41
|
+
setSearchedValue,
|
|
42
|
+
searchComparator,
|
|
43
|
+
handleAddFilter,
|
|
44
|
+
searchedColumnsDefinitions
|
|
45
|
+
]);
|
|
46
|
+
const onClear = useCallback(() => {
|
|
47
|
+
setSearchedValue("");
|
|
48
|
+
onChangeInputValue({ target: { value: "" } });
|
|
49
|
+
if (isMobile) setDisplayInput(false);
|
|
50
|
+
else setDisplayInput(true);
|
|
51
|
+
}, [
|
|
52
|
+
setSearchedValue,
|
|
53
|
+
isMobile,
|
|
54
|
+
onChangeInputValue,
|
|
55
|
+
setDisplayInput
|
|
56
|
+
]);
|
|
57
|
+
const onDisplayInput = useCallback(() => {
|
|
58
|
+
setDisplayInput(true);
|
|
59
|
+
}, []);
|
|
60
|
+
const onClearSettings = useCallback(() => {
|
|
61
|
+
clearSettings?.();
|
|
62
|
+
setSearchedValue?.("");
|
|
63
|
+
}, [clearSettings, setSearchedValue]);
|
|
64
|
+
return {
|
|
65
|
+
searchedValue,
|
|
66
|
+
translatedValue: getTranslatedValue(searchedColumnsDefinitions),
|
|
67
|
+
onChangeInputValue,
|
|
68
|
+
onClearSettings,
|
|
69
|
+
onDisplayInput,
|
|
70
|
+
displayInput,
|
|
71
|
+
onClear,
|
|
72
|
+
isMobileInputView,
|
|
73
|
+
isMobile,
|
|
74
|
+
filter
|
|
75
|
+
};
|
|
57
76
|
};
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
var _filter_quickFilter, _filters_filterType_defaultExtraProps;
|
|
61
|
-
var _gridActions_addFilter = gridActions.addFilter, addFilter = _gridActions_addFilter === void 0 ? defaultVoidFunction : _gridActions_addFilter, _gridActions_clearSettings = gridActions.clearSettings, clearSettings = _gridActions_clearSettings === void 0 ? defaultVoidFunction : _gridActions_clearSettings;
|
|
62
|
-
var filter = gridSelectors.filter;
|
|
63
|
-
var isMobile = useCheckDeviceWidth().isMobile;
|
|
64
|
-
var _useState = _sliced_to_array(useState(""), 2), searchedValue = _useState[0], setSearchedValue = _useState[1];
|
|
65
|
-
var _useState1 = _sliced_to_array(useState(false), 2), displayInput = _useState1[0], setDisplayInput = _useState1[1];
|
|
66
|
-
var handleAddFilter = useAddFilter(addFilter);
|
|
67
|
-
var quickFilterValues = quickFilter ? filter === null || filter === void 0 ? void 0 : (_filter_quickFilter = filter[quickFilter]) === null || _filter_quickFilter === void 0 ? void 0 : _filter_quickFilter.value : void 0;
|
|
68
|
-
var searchedColumnsDefinitions = (columns === null || columns === void 0 ? void 0 : columns.find(function(item) {
|
|
69
|
-
return item.name === quickFilter;
|
|
70
|
-
})) || null;
|
|
71
|
-
var filterType = createFilterType(searchedColumnsDefinitions || {});
|
|
72
|
-
var filtersDefaultComparator = (filters === null || filters === void 0 ? void 0 : (_filters_filterType_defaultExtraProps = filters[filterType].defaultExtraProps) === null || _filters_filterType_defaultExtraProps === void 0 ? void 0 : _filters_filterType_defaultExtraProps.defaultComparator) || "eq";
|
|
73
|
-
var searchComparator = quickFilterValues && quickFilterValues.comparator || filtersDefaultComparator;
|
|
74
|
-
var isMobileInputView = isMobile && displayInput;
|
|
75
|
-
useEffect(function() {
|
|
76
|
-
if (quickFilterValues) {
|
|
77
|
-
setSearchedValue(quickFilterValues.value);
|
|
78
|
-
} else {
|
|
79
|
-
setSearchedValue("");
|
|
80
|
-
}
|
|
81
|
-
}, [
|
|
82
|
-
quickFilterValues,
|
|
83
|
-
quickFilter,
|
|
84
|
-
setSearchedValue
|
|
85
|
-
]);
|
|
86
|
-
useEffect(function() {
|
|
87
|
-
if (isMobile) {
|
|
88
|
-
setDisplayInput(false);
|
|
89
|
-
} else {
|
|
90
|
-
setDisplayInput(true);
|
|
91
|
-
}
|
|
92
|
-
}, [
|
|
93
|
-
isMobile
|
|
94
|
-
]);
|
|
95
|
-
var onChangeInputValue = useCallback(function(e) {
|
|
96
|
-
setSearchedValue(e.target.value);
|
|
97
|
-
var value = {
|
|
98
|
-
comparator: searchComparator,
|
|
99
|
-
value: e.target.value
|
|
100
|
-
};
|
|
101
|
-
searchedColumnsDefinitions && handleAddFilter(value, searchedColumnsDefinitions);
|
|
102
|
-
}, [
|
|
103
|
-
setSearchedValue,
|
|
104
|
-
searchComparator,
|
|
105
|
-
handleAddFilter,
|
|
106
|
-
searchedColumnsDefinitions
|
|
107
|
-
]);
|
|
108
|
-
var onClear = useCallback(function() {
|
|
109
|
-
setSearchedValue("");
|
|
110
|
-
onChangeInputValue({
|
|
111
|
-
target: {
|
|
112
|
-
value: ""
|
|
113
|
-
}
|
|
114
|
-
});
|
|
115
|
-
if (isMobile) {
|
|
116
|
-
setDisplayInput(false);
|
|
117
|
-
} else {
|
|
118
|
-
setDisplayInput(true);
|
|
119
|
-
}
|
|
120
|
-
}, [
|
|
121
|
-
setSearchedValue,
|
|
122
|
-
isMobile,
|
|
123
|
-
onChangeInputValue,
|
|
124
|
-
setDisplayInput
|
|
125
|
-
]);
|
|
126
|
-
var onDisplayInput = useCallback(function() {
|
|
127
|
-
setDisplayInput(true);
|
|
128
|
-
}, []);
|
|
129
|
-
var onClearSettings = useCallback(function() {
|
|
130
|
-
clearSettings === null || clearSettings === void 0 ? void 0 : clearSettings();
|
|
131
|
-
setSearchedValue === null || setSearchedValue === void 0 ? void 0 : setSearchedValue("");
|
|
132
|
-
}, [
|
|
133
|
-
clearSettings,
|
|
134
|
-
setSearchedValue
|
|
135
|
-
]);
|
|
136
|
-
var translatedValue = getTranslatedValue(searchedColumnsDefinitions);
|
|
137
|
-
return {
|
|
138
|
-
searchedValue: searchedValue,
|
|
139
|
-
translatedValue: translatedValue,
|
|
140
|
-
onChangeInputValue: onChangeInputValue,
|
|
141
|
-
onClearSettings: onClearSettings,
|
|
142
|
-
onDisplayInput: onDisplayInput,
|
|
143
|
-
displayInput: displayInput,
|
|
144
|
-
onClear: onClear,
|
|
145
|
-
isMobileInputView: isMobileInputView,
|
|
146
|
-
isMobile: isMobile,
|
|
147
|
-
filter: filter
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
var useQuickFilter_default = useQuickFilter;
|
|
151
|
-
export { useQuickFilter_default as default };
|
|
77
|
+
//#endregion
|
|
78
|
+
export { useQuickFilter as default };
|
|
@@ -1,24 +1,20 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
]);
|
|
22
|
-
};
|
|
23
|
-
var useRowsKeyControls_default = useRowsKeyControls;
|
|
24
|
-
export { useRowsKeyControls_default as default };
|
|
2
|
+
//#region packages/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.ts
|
|
3
|
+
const useRowsKeyControls = (rowsData, uxState, onUxChange) => React.useCallback((e) => {
|
|
4
|
+
const selectedRowId = uxState.selectedRow;
|
|
5
|
+
if (!selectedRowId) return;
|
|
6
|
+
const selectedRowIdx = rowsData.findIndex((row) => row.id === selectedRowId);
|
|
7
|
+
const previousRowId = rowsData[selectedRowIdx - 1]?.id;
|
|
8
|
+
const nextRowId = rowsData[selectedRowIdx + 1]?.id;
|
|
9
|
+
const isFirst = selectedRowIdx === 0;
|
|
10
|
+
const isLast = selectedRowIdx === rowsData.length - 1;
|
|
11
|
+
if (e.key === "ArrowUp" && !isFirst) onUxChange?.("selectedRow", previousRowId);
|
|
12
|
+
if (e.key === "ArrowDown" && !isLast) onUxChange?.("selectedRow", nextRowId);
|
|
13
|
+
if (e.key === "Escape") onUxChange?.("selectedRow", null);
|
|
14
|
+
}, [
|
|
15
|
+
uxState,
|
|
16
|
+
rowsData,
|
|
17
|
+
onUxChange
|
|
18
|
+
]);
|
|
19
|
+
//#endregion
|
|
20
|
+
export { useRowsKeyControls as default };
|
|
@@ -1,83 +1,21 @@
|
|
|
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 { useCallback, useEffect } from "react";
|
|
48
|
-
import isEqual from "lodash/isEqual";
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
if (!gridName || !gridPresets) return;
|
|
66
|
-
var activePreset = (_Object_entries = Object.entries(gridPresets)) === null || _Object_entries === void 0 ? void 0 : _Object_entries.find(function(param) {
|
|
67
|
-
var _param = _sliced_to_array(param, 2), presetName = _param[0], presetFilters = _param[1];
|
|
68
|
-
return isEqual(presetFilters, filters);
|
|
69
|
-
});
|
|
70
|
-
if (activePreset) {
|
|
71
|
-
setSelectedPresetName(activePreset[0]);
|
|
72
|
-
} else {
|
|
73
|
-
setSelectedPresetName("");
|
|
74
|
-
}
|
|
75
|
-
}, [
|
|
76
|
-
filters,
|
|
77
|
-
gridPresets
|
|
78
|
-
]);
|
|
79
|
-
return {
|
|
80
|
-
handleSelectPreset: handleSelectPreset
|
|
81
|
-
};
|
|
2
|
+
import isEqual from "lodash/isEqual.js";
|
|
3
|
+
//#region packages/ui/Blocks/CommonGrid/hooks/useSelectPreset.ts
|
|
4
|
+
const useSelectPreset = ({ gridName, gridActions, gridSelectors, setSelectedPresetName, onClosePresetsModal }) => {
|
|
5
|
+
const gridPresets = gridSelectors?.presets;
|
|
6
|
+
const filters = gridSelectors?.filter;
|
|
7
|
+
const handleSelectPreset = useCallback((presetName, filters) => () => {
|
|
8
|
+
setSelectedPresetName(presetName);
|
|
9
|
+
gridActions.setFilters?.(filters);
|
|
10
|
+
onClosePresetsModal();
|
|
11
|
+
}, [gridActions]);
|
|
12
|
+
useEffect(() => {
|
|
13
|
+
if (!gridName || !gridPresets) return;
|
|
14
|
+
const activePreset = Object.entries(gridPresets)?.find(([presetName, presetFilters]) => isEqual(presetFilters, filters));
|
|
15
|
+
if (activePreset) setSelectedPresetName(activePreset[0]);
|
|
16
|
+
else setSelectedPresetName("");
|
|
17
|
+
}, [filters, gridPresets]);
|
|
18
|
+
return { handleSelectPreset };
|
|
82
19
|
};
|
|
20
|
+
//#endregion
|
|
83
21
|
export { useSelectPreset };
|
|
@@ -1,30 +1,19 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
});
|
|
18
|
-
}
|
|
19
|
-
handleUxChange === null || handleUxChange === void 0 ? void 0 : handleUxChange("checkedRows", checkedRows);
|
|
20
|
-
}, [
|
|
21
|
-
handleUxChange,
|
|
22
|
-
rowsData,
|
|
23
|
-
allChecked
|
|
24
|
-
]);
|
|
25
|
-
return [
|
|
26
|
-
!!allChecked,
|
|
27
|
-
toggleAllHandler
|
|
28
|
-
];
|
|
1
|
+
import { useCallback, useMemo } from "react";
|
|
2
|
+
//#region packages/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.ts
|
|
3
|
+
const useToggleAllCheckbox = (rowsData, uxState, handleUxChange) => {
|
|
4
|
+
const allChecked = useMemo(() => rowsData && (rowsData || []).length >= 1 && rowsData.every((row) => uxState?.checkedRows?.[row.id]), [rowsData, uxState?.checkedRows]);
|
|
5
|
+
const toggleAllHandler = useCallback(() => {
|
|
6
|
+
const checkedRows = {};
|
|
7
|
+
if (!allChecked && rowsData) rowsData.forEach((row) => {
|
|
8
|
+
checkedRows[row.id] = true;
|
|
9
|
+
});
|
|
10
|
+
handleUxChange?.("checkedRows", checkedRows);
|
|
11
|
+
}, [
|
|
12
|
+
handleUxChange,
|
|
13
|
+
rowsData,
|
|
14
|
+
allChecked
|
|
15
|
+
]);
|
|
16
|
+
return [!!allChecked, toggleAllHandler];
|
|
29
17
|
};
|
|
18
|
+
//#endregion
|
|
30
19
|
export { useToggleAllCheckbox };
|
|
@@ -1,65 +1,14 @@
|
|
|
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 React from "react";
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
setPrevious(ids);
|
|
60
|
-
}, [
|
|
61
|
-
rowsData
|
|
62
|
-
]);
|
|
2
|
+
//#region packages/ui/Blocks/CommonGrid/hooks/useUxReset.ts
|
|
3
|
+
const useUxReset = (rowsData, uxState, clearUxState) => {
|
|
4
|
+
const [previous, setPrevious] = React.useState("|");
|
|
5
|
+
React.useEffect(() => {
|
|
6
|
+
const ids = (rowsData || []).map((row) => row.id).join("|");
|
|
7
|
+
if (ids !== previous) {
|
|
8
|
+
if (clearUxState && (uxState.checkedRows && Object.keys(uxState.checkedRows).length || uxState.selectedRow)) clearUxState();
|
|
9
|
+
}
|
|
10
|
+
setPrevious(ids);
|
|
11
|
+
}, [rowsData]);
|
|
63
12
|
};
|
|
64
|
-
|
|
65
|
-
export {
|
|
13
|
+
//#endregion
|
|
14
|
+
export { useUxReset as default };
|
|
@@ -1,10 +1,26 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import { useEvent } from "./hooks/useEvent.js";
|
|
2
|
+
import { useAddFilter } from "./hooks/useAddFilter.js";
|
|
3
|
+
import { types_exports } from "./types.js";
|
|
4
|
+
import { DateCell } from "./components/gridCells/Date.js";
|
|
5
|
+
import { DateTimeCell } from "./components/gridCells/DateTime.js";
|
|
6
|
+
import { StringJoinCell } from "./components/gridCells/StringJoin.js";
|
|
7
|
+
import { BoolIconCell } from "./components/gridCells/BoolIcon.js";
|
|
8
|
+
import { RemoveCell } from "./components/gridCells/RemoveItem.js";
|
|
9
|
+
import { LinkInCell } from "./components/gridCells/LinkInCell.js";
|
|
10
|
+
import { ButtonInCell } from "./components/gridCells/ButtonInCell.js";
|
|
11
|
+
import { IconButtonInCell } from "./components/gridCells/IconButtonInCell.js";
|
|
12
|
+
import { SwitchInCell } from "./components/gridCells/SwitchInCell.js";
|
|
13
|
+
import { ImageCell } from "./components/gridCells/ImageCell.js";
|
|
14
|
+
import { EnumInCell } from "./components/gridCells/EnumInCell.js";
|
|
15
|
+
import { HoverBubble } from "./components/gridCells/HoverBubble.js";
|
|
16
|
+
import { RowActionsCell } from "./components/gridCells/RowActionsCell.js";
|
|
17
|
+
import { ToggleCell } from "./components/gridCells/ToggleCell.js";
|
|
18
|
+
import "./components/gridCells/index.js";
|
|
19
|
+
import store_default, { actionPrefix, actionTypes, createActions, createFullSelector, createSelectors } from "./store/index.js";
|
|
20
|
+
import CommonGridContainer from "./CommonGridContainer.js";
|
|
21
|
+
import withReduxActions from "./HoC/withReduxActions.js";
|
|
22
|
+
import useFloatingButton from "./hooks/useFloatingButton.js";
|
|
23
|
+
//#region packages/ui/Blocks/CommonGrid/index.ts
|
|
24
|
+
var CommonGrid_default = CommonGridContainer;
|
|
25
|
+
//#endregion
|
|
26
|
+
export { BoolIconCell, ButtonInCell, DateCell, DateTimeCell, EnumInCell, HoverBubble, IconButtonInCell, ImageCell, LinkInCell, RemoveCell, RowActionsCell, StringJoinCell, SwitchInCell, ToggleCell, types_exports as Types, actionPrefix, actionTypes, createActions, createFullSelector, createSelectors, CommonGrid_default as default, store_default as reducer, useAddFilter, useEvent, useFloatingButton, withReduxActions };
|