@m4l/components 9.4.45 → 9.4.46
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/components/datagrids/Datagrid.styles.d.ts.map +1 -1
- package/components/datagrids/Datagrid.styles.js +358 -272
- package/components/datagrids/components/BaseDataGrid/BaseDataGrid.d.ts.map +1 -1
- package/components/datagrids/components/BaseDataGrid/BaseDataGrid.js +47 -45
- package/components/datagrids/contexts/DataGridContext/DataGridContext.d.ts.map +1 -1
- package/components/datagrids/contexts/DataGridContext/DataGridContext.js +237 -178
- package/components/datagrids/contexts/DataGridContext/types.d.ts +13 -4
- package/components/datagrids/contexts/DataGridContext/types.d.ts.map +1 -1
- package/components/datagrids/dictionary.d.ts +1 -0
- package/components/datagrids/dictionary.d.ts.map +1 -1
- package/components/datagrids/dictionary.js +1 -0
- package/components/datagrids/formatters/ColumnImageFormatter/ImageFormatterCell.d.ts.map +1 -1
- package/components/datagrids/formatters/ColumnImageFormatter/ImageFormatterCell.js +14 -14
- package/components/datagrids/helpers/persistence/getViewMode/getViewMode.d.ts.map +1 -1
- package/components/datagrids/helpers/persistence/getViewMode/getViewMode.js +8 -8
- package/components/datagrids/helpers/shared/getAllViewModes/getAllViewModes.d.ts +2 -1
- package/components/datagrids/helpers/shared/getAllViewModes/getAllViewModes.d.ts.map +1 -1
- package/components/datagrids/helpers/shared/getAllViewModes/getAllViewModes.js +1 -1
- package/components/datagrids/helpers/shared/getViewSpecificConfig/getViewSpecificConfig.d.ts +2 -1
- package/components/datagrids/helpers/shared/getViewSpecificConfig/getViewSpecificConfig.d.ts.map +1 -1
- package/components/datagrids/helpers/shared/getViewSpecificConfig/getViewSpecificConfig.js +11 -4
- package/components/datagrids/helpers/shared/getViewSuffix/getViewSuffix.d.ts +3 -2
- package/components/datagrids/helpers/shared/getViewSuffix/getViewSuffix.d.ts.map +1 -1
- package/components/datagrids/helpers/shared/getViewSuffix/getViewSuffix.js +1 -1
- package/components/datagrids/helpers/shared/scrollToRowElement/index.d.ts +2 -0
- package/components/datagrids/helpers/shared/scrollToRowElement/index.d.ts.map +1 -0
- package/components/datagrids/helpers/shared/scrollToRowElement/scrollToRowElement.d.ts +10 -0
- package/components/datagrids/helpers/shared/scrollToRowElement/scrollToRowElement.d.ts.map +1 -0
- package/components/datagrids/helpers/shared/scrollToRowElement/scrollToRowElement.js +24 -0
- package/components/datagrids/hooks/useViewConfig/useViewConfig.d.ts.map +1 -1
- package/components/datagrids/hooks/useViewConfig/useViewConfig.js +11 -10
- package/components/datagrids/shared/LazyLoadItem/LazyLoadItem.d.ts +7 -0
- package/components/datagrids/shared/LazyLoadItem/LazyLoadItem.d.ts.map +1 -0
- package/components/datagrids/shared/LazyLoadItem/index.d.ts +3 -0
- package/components/datagrids/shared/LazyLoadItem/index.d.ts.map +1 -0
- package/components/datagrids/shared/LazyLoadItem/subcomponents/IntersectItem/IntersectItem.d.ts +7 -0
- package/components/datagrids/shared/LazyLoadItem/subcomponents/IntersectItem/IntersectItem.d.ts.map +1 -0
- package/components/datagrids/shared/LazyLoadItem/subcomponents/IntersectItem/index.d.ts +3 -0
- package/components/datagrids/shared/LazyLoadItem/subcomponents/IntersectItem/index.d.ts.map +1 -0
- package/components/datagrids/shared/LazyLoadItem/subcomponents/IntersectItem/types.d.ts +13 -0
- package/components/datagrids/shared/LazyLoadItem/subcomponents/IntersectItem/types.d.ts.map +1 -0
- package/components/datagrids/shared/LazyLoadItem/types.d.ts +12 -0
- package/components/datagrids/shared/LazyLoadItem/types.d.ts.map +1 -0
- package/components/datagrids/slots/DataGridEnum.d.ts +5 -1
- package/components/datagrids/slots/DataGridEnum.d.ts.map +1 -1
- package/components/datagrids/slots/DataGridEnum.js +3 -3
- package/components/datagrids/slots/DataGridSlot.d.ts +12 -0
- package/components/datagrids/slots/DataGridSlot.d.ts.map +1 -1
- package/components/datagrids/slots/DataGridSlot.js +105 -89
- package/components/datagrids/subcomponents/HeaderActions/HeaderActions.d.ts +3 -10
- package/components/datagrids/subcomponents/HeaderActions/HeaderActions.d.ts.map +1 -1
- package/components/datagrids/subcomponents/HeaderActions/HeaderActions.js +34 -33
- package/components/datagrids/subcomponents/HeaderActions/subcomponents/MobileMenuActions/MobileMenuActions.d.ts +1 -13
- package/components/datagrids/subcomponents/HeaderActions/subcomponents/MobileMenuActions/MobileMenuActions.d.ts.map +1 -1
- package/components/datagrids/subcomponents/HeaderActions/subcomponents/MobileMenuActions/MobileMenuActions.js +27 -26
- package/components/datagrids/subcomponents/HeaderActions/subcomponents/ViewMode/ViewMode.d.ts +3 -4
- package/components/datagrids/subcomponents/HeaderActions/subcomponents/ViewMode/ViewMode.d.ts.map +1 -1
- package/components/datagrids/subcomponents/HeaderActions/subcomponents/ViewMode/ViewMode.js +77 -47
- package/components/datagrids/tests/helpers/useListViewConfig.d.ts +12 -0
- package/components/datagrids/tests/helpers/useListViewConfig.d.ts.map +1 -0
- package/components/datagrids/types.d.ts +58 -0
- package/components/datagrids/types.d.ts.map +1 -1
- package/components/datagrids/views/CardsView/CardsView.js +14 -14
- package/components/datagrids/views/ListView/ListView.d.ts +8 -0
- package/components/datagrids/views/ListView/ListView.d.ts.map +1 -0
- package/components/datagrids/views/ListView/ListView.js +98 -0
- package/components/datagrids/views/ListView/hooks/useListContent/index.d.ts +2 -0
- package/components/datagrids/views/{CardsView/helpers/scrollToCardElement → ListView/hooks/useListContent}/index.d.ts.map +1 -1
- package/components/datagrids/views/ListView/hooks/useListContent/useListContent.d.ts +10 -0
- package/components/datagrids/views/ListView/hooks/useListContent/useListContent.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useListContent/useListContent.js +112 -0
- package/components/datagrids/views/ListView/hooks/useListVirtualizer/index.d.ts +3 -0
- package/components/datagrids/views/ListView/hooks/useListVirtualizer/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useListVirtualizer/types.d.ts +27 -0
- package/components/datagrids/views/ListView/hooks/useListVirtualizer/types.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useListVirtualizer/useListVirtualizer.d.ts +19 -0
- package/components/datagrids/views/ListView/hooks/useListVirtualizer/useListVirtualizer.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useListVirtualizer/useListVirtualizer.js +23 -0
- package/components/datagrids/views/ListView/hooks/useModalDetail/index.d.ts +3 -0
- package/components/datagrids/views/ListView/hooks/useModalDetail/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useModalDetail/types.d.ts +20 -0
- package/components/datagrids/views/ListView/hooks/useModalDetail/types.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useModalDetail/useModalDetail.d.ts +7 -0
- package/components/datagrids/views/ListView/hooks/useModalDetail/useModalDetail.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useModalDetail/useModalDetail.js +72 -0
- package/components/datagrids/views/ListView/hooks/useProcessedColumns/index.d.ts +3 -0
- package/components/datagrids/views/ListView/hooks/useProcessedColumns/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useProcessedColumns/types.d.ts +13 -0
- package/components/datagrids/views/ListView/hooks/useProcessedColumns/types.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useProcessedColumns/useProcessedColumns.d.ts +49 -0
- package/components/datagrids/views/ListView/hooks/useProcessedColumns/useProcessedColumns.d.ts.map +1 -0
- package/components/datagrids/views/ListView/hooks/useProcessedColumns/useProcessedColumns.js +30 -0
- package/components/datagrids/views/ListView/index.d.ts +3 -0
- package/components/datagrids/views/ListView/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/ListDetail/ListDetail.d.ts +9 -0
- package/components/datagrids/views/ListView/subcomponents/ListDetail/ListDetail.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/ListDetail/ListDetail.js +113 -0
- package/components/datagrids/views/ListView/subcomponents/ListDetail/index.d.ts +3 -0
- package/components/datagrids/views/ListView/subcomponents/ListDetail/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/ListDetail/types.d.ts +39 -0
- package/components/datagrids/views/ListView/subcomponents/ListDetail/types.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/ListRow.d.ts +12 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/ListRow.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/ListRow.js +96 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/index.d.ts +3 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/subcomponents/ListHeader/ListHeader.d.ts +8 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/subcomponents/ListHeader/ListHeader.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/subcomponents/ListHeader/ListHeader.js +83 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/subcomponents/ListHeader/index.d.ts +3 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/subcomponents/ListHeader/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/subcomponents/ListHeader/types.d.ts +14 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/subcomponents/ListHeader/types.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/types.d.ts +81 -0
- package/components/datagrids/views/ListView/subcomponents/ListRow/types.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/Settings.d.ts +7 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/Settings.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/Settings.js +24 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/hooks/useModalSettings/index.d.ts +3 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/hooks/useModalSettings/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/hooks/useModalSettings/types.d.ts +5 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/hooks/useModalSettings/types.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/hooks/useModalSettings/useModalSettings.d.ts +7 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/hooks/useModalSettings/useModalSettings.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/hooks/useModalSettings/useModalSettings.js +62 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/index.d.ts +3 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/subcomponents/ColumnsConfig/ColumnsConfig.d.ts +3 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/subcomponents/ColumnsConfig/ColumnsConfig.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/subcomponents/ColumnsConfig/ColumnsConfig.js +253 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/subcomponents/ColumnsConfig/index.d.ts +3 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/subcomponents/ColumnsConfig/index.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/subcomponents/ColumnsConfig/types.d.ts +32 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/subcomponents/ColumnsConfig/types.d.ts.map +1 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/types.d.ts +5 -0
- package/components/datagrids/views/ListView/subcomponents/Settings/types.d.ts.map +1 -0
- package/components/datagrids/views/ListView/types.d.ts +7 -0
- package/components/datagrids/views/ListView/types.d.ts.map +1 -0
- package/components/datagrids/views/adapters/RenderContent/RenderContent.d.ts +2 -1
- package/components/datagrids/views/adapters/RenderContent/RenderContent.d.ts.map +1 -1
- package/components/datagrids/views/adapters/RenderContent/RenderContent.js +7 -6
- package/package.json +7 -6
- package/components/datagrids/views/CardsView/helpers/scrollToCardElement/index.d.ts +0 -2
- package/components/datagrids/views/CardsView/helpers/scrollToCardElement/scrollToCardElement.d.ts +0 -10
- package/components/datagrids/views/CardsView/helpers/scrollToCardElement/scrollToCardElement.d.ts.map +0 -1
- package/components/datagrids/views/CardsView/helpers/scrollToCardElement/scrollToCardElement.js +0 -24
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { styled as t } from "@mui/material/styles";
|
|
2
2
|
import { MenuList as c, InputBase as m } from "@mui/material";
|
|
3
3
|
import { DATAGRID_PREFIX_NAME as e } from "../constants.js";
|
|
4
|
-
import { TextEditorSlots as C, DataGridSlots as
|
|
4
|
+
import { TextEditorSlots as C, DataGridSlots as i, TableSlots as n, ActionsSlots as a, ControlNavigateSlots as u, RowsCountSlots as d, ColumnsConfigSlots as l, ColumnIconFormatterSlots as p } from "./DataGridEnum.js";
|
|
5
5
|
import { dataGridStyles as o } from "../Datagrid.styles.js";
|
|
6
6
|
import { Icon as S } from "../../Icon/Icon.js";
|
|
7
|
-
import { Card as
|
|
7
|
+
import { Card as s } from "../../Card/Card.js";
|
|
8
8
|
import { Typography as r } from "../../extended/mui/Typography/Typography.js";
|
|
9
9
|
import { IconButton as g } from "../../extended/mui/IconButton/IconButton.js";
|
|
10
|
-
const
|
|
10
|
+
const h = t("div", {
|
|
11
11
|
name: e,
|
|
12
|
-
slot:
|
|
13
|
-
})(o.datagridRoot),
|
|
12
|
+
slot: i.datagridRoot
|
|
13
|
+
})(o.datagridRoot), T = t("div", {
|
|
14
14
|
name: e,
|
|
15
|
-
slot:
|
|
16
|
-
})(o.customHeader),
|
|
15
|
+
slot: i.customHeader
|
|
16
|
+
})(o.customHeader), B = t("div", {
|
|
17
17
|
name: e,
|
|
18
18
|
slot: a.actionsRoot
|
|
19
|
-
})(o.actionsRoot),
|
|
19
|
+
})(o.actionsRoot), A = t("div", {
|
|
20
20
|
name: e,
|
|
21
21
|
slot: a.containerLeftActions
|
|
22
22
|
})(o.containerLeftActions), D = t("div", {
|
|
@@ -25,25 +25,25 @@ const T = t("div", {
|
|
|
25
25
|
})(o.containerRightActions), G = t("div", {
|
|
26
26
|
name: e,
|
|
27
27
|
slot: a.actionsConfigContainer
|
|
28
|
-
})(o.actionsConfigContainer),
|
|
28
|
+
})(o.actionsConfigContainer), w = t("div", {
|
|
29
29
|
name: e,
|
|
30
30
|
slot: d.rowsCountRoot
|
|
31
|
-
})(o.rowsCountRoot),
|
|
31
|
+
})(o.rowsCountRoot), x = t("div", {
|
|
32
32
|
name: e,
|
|
33
33
|
slot: d.rowsCountLabel
|
|
34
|
-
})(o.rowsCountLabel),
|
|
34
|
+
})(o.rowsCountLabel), E = t("div", {
|
|
35
35
|
name: e,
|
|
36
36
|
slot: d.rowsCountValue
|
|
37
|
-
})(o.rowsCountValue),
|
|
37
|
+
})(o.rowsCountValue), V = t("div", {
|
|
38
38
|
name: e,
|
|
39
39
|
slot: l.columnsConfigWrapper
|
|
40
|
-
})(o.columnsConfigWrapper),
|
|
40
|
+
})(o.columnsConfigWrapper), k = t("div", {
|
|
41
41
|
name: e,
|
|
42
42
|
slot: l.columnsConfigSelColumns
|
|
43
|
-
})(o.columnsConfigSelColumns),
|
|
43
|
+
})(o.columnsConfigSelColumns), N = t("div", {
|
|
44
44
|
name: e,
|
|
45
45
|
slot: l.columnsConfigDataGrid
|
|
46
|
-
})(o.columnsConfigDataGrid),
|
|
46
|
+
})(o.columnsConfigDataGrid), F = t("div", {
|
|
47
47
|
name: e,
|
|
48
48
|
slot: l.columnsConfigActios
|
|
49
49
|
})(o.columnsConfigActios), M = t("div", {
|
|
@@ -52,19 +52,19 @@ const T = t("div", {
|
|
|
52
52
|
})(o.tableContaniner), P = t("div", {
|
|
53
53
|
name: e,
|
|
54
54
|
slot: n.containerToggleCards
|
|
55
|
-
})(o.containerToggleCards),
|
|
55
|
+
})(o.containerToggleCards), z = t(s, {
|
|
56
56
|
name: e,
|
|
57
57
|
slot: n.cardToggleCardButton
|
|
58
|
-
})(o.cardToggleCardButton),
|
|
58
|
+
})(o.cardToggleCardButton), _ = t(r, {
|
|
59
59
|
name: e,
|
|
60
60
|
slot: n.textToggleCardButton
|
|
61
|
-
})(o.textToggleCardButton),
|
|
61
|
+
})(o.textToggleCardButton), X = t(s, {
|
|
62
62
|
name: e,
|
|
63
63
|
slot: n.card
|
|
64
|
-
})(o.card),
|
|
64
|
+
})(o.card), j = t("div", {
|
|
65
65
|
name: e,
|
|
66
66
|
slot: n.cardHeader
|
|
67
|
-
})(o.cardHeader),
|
|
67
|
+
})(o.cardHeader), q = t("div", {
|
|
68
68
|
name: e,
|
|
69
69
|
slot: n.cardHeaderLeft
|
|
70
70
|
})(o.cardHeaderLeft), J = t("div", {
|
|
@@ -80,24 +80,36 @@ const T = t("div", {
|
|
|
80
80
|
name: e,
|
|
81
81
|
slot: n.cardsContainer
|
|
82
82
|
})(o.cardsContainer), U = t("div", {
|
|
83
|
+
name: e,
|
|
84
|
+
slot: n.listContainer
|
|
85
|
+
})(o.listContainer), Y = t(s, {
|
|
86
|
+
name: e,
|
|
87
|
+
slot: n.list
|
|
88
|
+
})(o.list), Z = t("div", {
|
|
89
|
+
name: e,
|
|
90
|
+
slot: n.listRowVirtualizedItem
|
|
91
|
+
})(o.listRowVirtualizedItem), $ = t("div", {
|
|
92
|
+
name: e,
|
|
93
|
+
slot: n.listVirtualContainer
|
|
94
|
+
})(o.listVirtualContainer), tt = t("div", {
|
|
83
95
|
name: e,
|
|
84
96
|
slot: n.containerLabelValueColumn
|
|
85
|
-
})(o.containerLabelValueColumn),
|
|
97
|
+
})(o.containerLabelValueColumn), et = t("div", {
|
|
86
98
|
name: e,
|
|
87
99
|
slot: n.contentWrapperColumn
|
|
88
|
-
})(o.contentWrapperColumn),
|
|
100
|
+
})(o.contentWrapperColumn), ot = t("div", {
|
|
89
101
|
name: e,
|
|
90
102
|
slot: n.cardDetailContainer
|
|
91
|
-
})(o.cardDetailContainer),
|
|
103
|
+
})(o.cardDetailContainer), nt = t(r, {
|
|
92
104
|
name: e,
|
|
93
105
|
slot: n.labelHeaderColumn
|
|
94
|
-
})(o.labelHeaderColumn),
|
|
106
|
+
})(o.labelHeaderColumn), at = t(r, {
|
|
95
107
|
name: e,
|
|
96
108
|
slot: n.valueColumn
|
|
97
|
-
})(o.valueColumn),
|
|
109
|
+
})(o.valueColumn), lt = t("div", {
|
|
98
110
|
name: e,
|
|
99
111
|
slot: n.checkboxCellWrapper
|
|
100
|
-
})(o.checkboxCellWrapper),
|
|
112
|
+
})(o.checkboxCellWrapper), rt = t("div", {
|
|
101
113
|
name: e,
|
|
102
114
|
slot: n.editorCellWrapper
|
|
103
115
|
})(o.editorCellWrapper);
|
|
@@ -125,46 +137,46 @@ t("div", {
|
|
|
125
137
|
name: e,
|
|
126
138
|
slot: n.customCardIconContainer
|
|
127
139
|
})(o.customCardIconContainer);
|
|
128
|
-
const
|
|
140
|
+
const dt = t("div", {
|
|
129
141
|
name: e,
|
|
130
142
|
slot: n.tableWrapperDataGrid
|
|
131
|
-
})(o.tableWrapperDataGrid),
|
|
143
|
+
})(o.tableWrapperDataGrid), st = t("div", {
|
|
132
144
|
name: e,
|
|
133
145
|
slot: n.draggableHeaderRoot
|
|
134
|
-
})(o.draggableHeaderRoot),
|
|
146
|
+
})(o.draggableHeaderRoot), it = t(S, {
|
|
135
147
|
name: e,
|
|
136
148
|
slot: n.iconSearch
|
|
137
|
-
})(o.iconSearch),
|
|
149
|
+
})(o.iconSearch), ct = t("div", {
|
|
138
150
|
name: e,
|
|
139
151
|
slot: n.draggableWrapperInputBase
|
|
140
|
-
})(o.draggableWrapperInputBase),
|
|
152
|
+
})(o.draggableWrapperInputBase), mt = t(m, {
|
|
141
153
|
name: e,
|
|
142
154
|
slot: n.headerInputBase
|
|
143
|
-
})(o.headerInputBase),
|
|
155
|
+
})(o.headerInputBase), Ct = t("div", {
|
|
144
156
|
name: e,
|
|
145
157
|
slot: n.wrapperSkeleton
|
|
146
|
-
})(o.wrapperSkeleton),
|
|
158
|
+
})(o.wrapperSkeleton), ut = t("div", {
|
|
147
159
|
name: e,
|
|
148
160
|
slot: n.contentModalSetting
|
|
149
|
-
})(o.contentModalSetting),
|
|
161
|
+
})(o.contentModalSetting), pt = t("div", {
|
|
150
162
|
name: e,
|
|
151
163
|
slot: n.headerRenderClick
|
|
152
|
-
})(o.headerRenderClick),
|
|
164
|
+
})(o.headerRenderClick), St = t(c, {
|
|
153
165
|
name: e,
|
|
154
166
|
slot: n.menuList
|
|
155
|
-
})(o.menuList),
|
|
167
|
+
})(o.menuList), gt = t("div", {
|
|
156
168
|
name: e,
|
|
157
169
|
slot: n.buttonHeaderActions
|
|
158
|
-
})(o.buttonHeaderActions),
|
|
170
|
+
})(o.buttonHeaderActions), yt = t("div", {
|
|
159
171
|
name: e,
|
|
160
172
|
slot: n.nameColumnIcon
|
|
161
|
-
})(o.nameColumnIcon),
|
|
173
|
+
})(o.nameColumnIcon), vt = t("div", {
|
|
162
174
|
name: e,
|
|
163
175
|
slot: n.iconColumn
|
|
164
|
-
})(o.iconColumn),
|
|
176
|
+
})(o.iconColumn), Rt = t("div", {
|
|
165
177
|
name: e,
|
|
166
178
|
slot: n.nameColumn
|
|
167
|
-
})(o.nameColumn),
|
|
179
|
+
})(o.nameColumn), ft = t("div", {
|
|
168
180
|
name: e,
|
|
169
181
|
slot: n.editablePlaceholder
|
|
170
182
|
})(o.editablePlaceholder);
|
|
@@ -172,13 +184,13 @@ t(r, {
|
|
|
172
184
|
name: e,
|
|
173
185
|
slot: n.editLabel
|
|
174
186
|
})(o.editLabel);
|
|
175
|
-
const
|
|
187
|
+
const bt = t(g, {
|
|
176
188
|
name: e,
|
|
177
189
|
slot: n.iconButtonEdit
|
|
178
|
-
})(o.iconButtonEdit),
|
|
190
|
+
})(o.iconButtonEdit), It = t("input", {
|
|
179
191
|
name: e,
|
|
180
192
|
slot: C.inputTexEditor
|
|
181
|
-
})(o.inputTexEditor),
|
|
193
|
+
})(o.inputTexEditor), Wt = t("div", {
|
|
182
194
|
name: e,
|
|
183
195
|
slot: u.controlNavigate
|
|
184
196
|
})(o.controlNavigate);
|
|
@@ -186,66 +198,70 @@ t("div", {
|
|
|
186
198
|
name: e,
|
|
187
199
|
slot: p.columnIconFormatter
|
|
188
200
|
})(o.columnIconFormatter);
|
|
189
|
-
const
|
|
201
|
+
const Ht = t("span", {
|
|
190
202
|
name: e,
|
|
191
203
|
slot: n.defaultRenderGroupCellRoot
|
|
192
|
-
})(o.defaultRenderGroupCellRoot),
|
|
204
|
+
})(o.defaultRenderGroupCellRoot), Lt = t("span", {
|
|
193
205
|
name: e,
|
|
194
206
|
slot: n.defaultRenderGroupCellText
|
|
195
|
-
})(o.defaultRenderGroupCellText),
|
|
207
|
+
})(o.defaultRenderGroupCellText), ht = t("span", {
|
|
196
208
|
name: e,
|
|
197
209
|
slot: n.cellBackgroundWrapper
|
|
198
210
|
})(o.cellBackgroundWrapper);
|
|
199
211
|
export {
|
|
200
212
|
G as ActionsConfigContainerStyled,
|
|
201
|
-
|
|
202
|
-
|
|
213
|
+
B as ActionsRootStyled,
|
|
214
|
+
gt as ButtonHeaderActionsStyled,
|
|
203
215
|
O as CardContentStyled,
|
|
204
216
|
K as CardContentWrapperStyled,
|
|
205
|
-
|
|
206
|
-
|
|
217
|
+
ot as CardDetailContainerStyled,
|
|
218
|
+
q as CardHeaderLeftStyled,
|
|
207
219
|
J as CardHeaderRightStyled,
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
220
|
+
j as CardHeaderStyled,
|
|
221
|
+
X as CardStyled,
|
|
222
|
+
z as CardToggleButtonStyled,
|
|
211
223
|
Q as CardsContainerStyled,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
224
|
+
ht as CellBackgroundWrapperStyled,
|
|
225
|
+
lt as CheckboxCellWrapperStyled,
|
|
226
|
+
F as ColumnsConfigActiosStyled,
|
|
227
|
+
N as ColumnsConfigDataGridStyled,
|
|
228
|
+
k as ColumnsConfigSelColumnsStyled,
|
|
229
|
+
V as ColumnsConfigWrapperStyled,
|
|
230
|
+
tt as ContainerLabelValueColumnStyled,
|
|
231
|
+
A as ContainerLeftActionsStyled,
|
|
220
232
|
D as ContainerRightActionsStyled,
|
|
221
233
|
P as ContainerToggleCardsStyled,
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
234
|
+
ut as ContentModalSettingStyled,
|
|
235
|
+
et as ContentWrapperColumnStyled,
|
|
236
|
+
Wt as ControlNavigateStyled,
|
|
237
|
+
T as CustomHeaderStyled,
|
|
238
|
+
h as DataGridRootStyled,
|
|
239
|
+
Ht as DefaultRenderGroupCellRootStyled,
|
|
240
|
+
Lt as DefaultRenderGroupCellTextStyled,
|
|
241
|
+
st as DraggableHeaderRootStyled,
|
|
242
|
+
ct as DraggableWrapperInputBaseStyled,
|
|
243
|
+
ft as EditablePlaceholderStyled,
|
|
244
|
+
rt as EditorCellWrapperStyled,
|
|
245
|
+
mt as HeaderInputBaseStyled,
|
|
246
|
+
pt as HeaderRenderClickStyled,
|
|
247
|
+
bt as IconButtonEditStyled,
|
|
248
|
+
vt as IconColumnStyled,
|
|
249
|
+
it as IconSearchStyled,
|
|
250
|
+
It as InputTextEditorStyled,
|
|
251
|
+
nt as LabelHeaderColumnStyled,
|
|
252
|
+
U as ListContainerStyled,
|
|
253
|
+
Z as ListRowVirtualizedItemStyled,
|
|
254
|
+
Y as ListStyled,
|
|
255
|
+
$ as ListVirtualContainerStyled,
|
|
256
|
+
St as MenuListStyled,
|
|
257
|
+
yt as NameColumnIconStyled,
|
|
258
|
+
Rt as NameColumnStyled,
|
|
259
|
+
x as RowsCountLabelStyled,
|
|
260
|
+
w as RowsCountRootStyled,
|
|
261
|
+
E as RowsCountValueStyled,
|
|
246
262
|
M as TableContainerStyled,
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
263
|
+
dt as TableWrapperDataGridStyled,
|
|
264
|
+
_ as TextToggleCardButtonStyled,
|
|
265
|
+
at as ValueColumnStyled,
|
|
266
|
+
Ct as WrapperSkeletonStyled
|
|
251
267
|
};
|
|
@@ -1,15 +1,8 @@
|
|
|
1
1
|
import { HeaderActionsProps } from './types';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
* - Densidad de filas (compact, standard, confortable)
|
|
7
|
-
* - Filtros locales
|
|
8
|
-
* - Configuración de columnas (específica por vista)
|
|
9
|
-
* - Toggle de modo de vista (table/cards)
|
|
10
|
-
* - Exportar (cuando hay columnas exportables y exportConfig)
|
|
11
|
-
*
|
|
12
|
-
* En móviles, todas las acciones se consolidan en un menú desplegable.
|
|
3
|
+
* Renders DataGrid header actions: density, filters, column settings (per view),
|
|
4
|
+
* view mode toggle (table/cards/list), export.
|
|
5
|
+
* On mobile, actions are grouped in MobileMenuActions.
|
|
13
6
|
*/
|
|
14
7
|
export declare function HeaderActions(props: HeaderActionsProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
15
8
|
//# sourceMappingURL=HeaderActions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HeaderActions.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/components/src/components/datagrids/subcomponents/HeaderActions/HeaderActions.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"HeaderActions.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/components/src/components/datagrids/subcomponents/HeaderActions/HeaderActions.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAc7C;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,oDA+EtD"}
|
|
@@ -1,44 +1,45 @@
|
|
|
1
|
-
import { jsx as t, jsxs as
|
|
2
|
-
import { useIsMobile as
|
|
3
|
-
import { ActionsRootStyled as
|
|
4
|
-
import { useComponentSize as
|
|
5
|
-
import { MobileMenuActions as
|
|
6
|
-
import { Export as
|
|
7
|
-
import { Density as
|
|
8
|
-
import { Filter as
|
|
9
|
-
import { ViewMode as
|
|
1
|
+
import { jsx as t, jsxs as m, Fragment as A } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { useIsMobile as b } from "@m4l/graphics";
|
|
3
|
+
import { ActionsRootStyled as y, ActionsConfigContainerStyled as z, ContainerLeftActionsStyled as E, ContainerRightActionsStyled as M } from "../../slots/DataGridSlot.js";
|
|
4
|
+
import { useComponentSize as R } from "../../../../hooks/useComponentSize/useComponentSize.js";
|
|
5
|
+
import { MobileMenuActions as v } from "./subcomponents/MobileMenuActions/MobileMenuActions.js";
|
|
6
|
+
import { Export as p } from "./subcomponents/Export/Export.js";
|
|
7
|
+
import { Density as F } from "./subcomponents/Density/Density.js";
|
|
8
|
+
import { Filter as V } from "./subcomponents/Filter/Filter.js";
|
|
9
|
+
import { ViewMode as j } from "./subcomponents/ViewMode/ViewMode.js";
|
|
10
10
|
import { Settings as B } from "../../views/CardsView/subcomponents/Settings/Settings.js";
|
|
11
|
-
import { Settings as D } from "../../views/
|
|
12
|
-
import {
|
|
13
|
-
|
|
11
|
+
import { Settings as D } from "../../views/ListView/subcomponents/Settings/Settings.js";
|
|
12
|
+
import { Settings as H } from "../../views/TableView/subcomponents/Settings/Settings.js";
|
|
13
|
+
import { useDataGrid as I } from "../../hooks/shared/useDataGrid/useDataGrid.js";
|
|
14
|
+
function Z(d) {
|
|
14
15
|
const {
|
|
15
|
-
withSettings:
|
|
16
|
-
settingsProps:
|
|
17
|
-
withLocalFilters:
|
|
16
|
+
withSettings: u = !0,
|
|
17
|
+
settingsProps: r,
|
|
18
|
+
withLocalFilters: g,
|
|
18
19
|
leftActions: c,
|
|
19
|
-
rightActions:
|
|
20
|
-
withPager:
|
|
20
|
+
rightActions: i,
|
|
21
|
+
withPager: S,
|
|
21
22
|
size: h,
|
|
22
|
-
columns:
|
|
23
|
-
exportConfig:
|
|
24
|
-
} =
|
|
25
|
-
return /* @__PURE__ */ t(
|
|
23
|
+
columns: e,
|
|
24
|
+
exportConfig: n
|
|
25
|
+
} = d, w = b(), { rowHeights: C, viewMode: o, cardsViewConfig: l, listViewConfig: a } = I(), { currentSize: s } = R(h), f = !!e?.some((x) => x.exportable === !0) && !!n;
|
|
26
|
+
return /* @__PURE__ */ t(y, { ownerState: { size: s }, children: w ? /* @__PURE__ */ m(A, { children: [
|
|
26
27
|
c,
|
|
27
|
-
/* @__PURE__ */ t(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
] }) : /* @__PURE__ */
|
|
31
|
-
/* @__PURE__ */
|
|
28
|
+
/* @__PURE__ */ t(v, { columns: e }),
|
|
29
|
+
f && /* @__PURE__ */ t(p, { exportConfig: n }),
|
|
30
|
+
i
|
|
31
|
+
] }) : /* @__PURE__ */ m(z, { ownerState: { withPager: S }, children: [
|
|
32
|
+
/* @__PURE__ */ m(E, { ownerState: { size: s }, children: [
|
|
32
33
|
c,
|
|
33
|
-
typeof
|
|
34
|
-
|
|
35
|
-
!
|
|
36
|
-
l !== void 0 && /* @__PURE__ */ t(
|
|
37
|
-
|
|
34
|
+
typeof C != "number" && o !== "cards" && o !== "list" && /* @__PURE__ */ t(F, {}),
|
|
35
|
+
g && /* @__PURE__ */ t(V, {}),
|
|
36
|
+
!u || o === "cards" && l?.customRender || o === "list" && a?.customRender ? null : o === "cards" ? /* @__PURE__ */ t(B, { ...r, columns: e }) : o === "list" ? /* @__PURE__ */ t(D, { ...r, columns: e }) : /* @__PURE__ */ t(H, { ...r, columns: e }),
|
|
37
|
+
(l !== void 0 || a !== void 0) && /* @__PURE__ */ t(j, {}),
|
|
38
|
+
f && /* @__PURE__ */ t(p, { exportConfig: n })
|
|
38
39
|
] }),
|
|
39
|
-
|
|
40
|
+
i && /* @__PURE__ */ t(M, { ownerState: { size: s }, children: i })
|
|
40
41
|
] }) });
|
|
41
42
|
}
|
|
42
43
|
export {
|
|
43
|
-
|
|
44
|
+
Z as HeaderActions
|
|
44
45
|
};
|
|
@@ -1,18 +1,6 @@
|
|
|
1
1
|
import { Column } from 'react-data-grid';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* Consolida todas las acciones del DataGrid en un único menú desplegable
|
|
6
|
-
* para optimizar el espacio en pantallas pequeñas:
|
|
7
|
-
* - Opciones de densidad (compact, standard, confortable)
|
|
8
|
-
* - Toggle de filtros
|
|
9
|
-
* - Configuración de columnas (específica según viewMode)
|
|
10
|
-
* @param props.columns - Columnas del DataGrid para la configuración
|
|
11
|
-
* @example
|
|
12
|
-
* ```tsx
|
|
13
|
-
* // Se usa internamente en HeaderActions cuando isMobile es true
|
|
14
|
-
* {isMobile && <MobileMenuActions columns={columns} />}
|
|
15
|
-
* ```
|
|
3
|
+
* Mobile header actions: density, filter toggle, column settings (by viewMode), in a dropdown.
|
|
16
4
|
*/
|
|
17
5
|
export declare const MobileMenuActions: (props: {
|
|
18
6
|
columns: readonly Column<any, any>[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MobileMenuActions.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/datagrids/subcomponents/HeaderActions/subcomponents/MobileMenuActions/MobileMenuActions.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MobileMenuActions.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/datagrids/subcomponents/HeaderActions/subcomponents/MobileMenuActions/MobileMenuActions.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AASzC;;GAEG;AACH,eAAO,MAAM,iBAAiB,GAAI,OAAO;IACvC,OAAO,EAAE,SAAS,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC;CACtC,qDAsEA,CAAC"}
|
|
@@ -1,62 +1,63 @@
|
|
|
1
1
|
import { jsx as o } from "@emotion/react/jsx-runtime";
|
|
2
|
-
import { useModuleDictionary as
|
|
2
|
+
import { useModuleDictionary as y, useEnvironment as M } from "@m4l/core";
|
|
3
3
|
import { pathIcons as I } from "../../../../icons.js";
|
|
4
|
-
import { LayoutDensityCompactOutlined as
|
|
5
|
-
import { useModalSettings as
|
|
6
|
-
import { useModalSettings as
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
import { LayoutDensityCompactOutlined as h, LayoutDensityStandardOutlined as S, LayoutDensityConfortableOutlined as C, SettingsConfigOutlined as v, MenuMoreVerticalOutlined as O } from "@m4l/icons";
|
|
5
|
+
import { useModalSettings as w } from "../../../../views/TableView/subcomponents/Settings/hooks/useModalSettings/useModalSettings.js";
|
|
6
|
+
import { useModalSettings as k } from "../../../../views/CardsView/subcomponents/Settings/hooks/useModalSettings/useModalSettings.js";
|
|
7
|
+
import { useModalSettings as D } from "../../../../views/ListView/subcomponents/Settings/hooks/useModalSettings/useModalSettings.js";
|
|
8
|
+
import { useDataGrid as $ } from "../../../../hooks/shared/useDataGrid/useDataGrid.js";
|
|
9
|
+
import { useFilters as A } from "../../../../hooks/shared/useFilters/useFilters.js";
|
|
10
|
+
import { MenuActions as L } from "../../../../../MenuActions/MenuActions.js";
|
|
11
|
+
const T = (l) => {
|
|
12
|
+
const { columns: e } = l, { getLabel: t } = y(), { host_static_assets: c, environment_assets: d } = M(), { currentRowHeightVariant: i, setRowHeightVariant: n, size: a, viewMode: s } = $(), { activeFilters: r, setActiveFilters: m } = A(), u = w(a, e), g = k(a, e), p = D(a, e), f = s === "cards" ? g : s === "list" ? p : u, b = () => {
|
|
12
13
|
m(!r);
|
|
13
|
-
},
|
|
14
|
+
}, _ = [
|
|
14
15
|
{
|
|
15
16
|
type: "menuItem",
|
|
16
|
-
startIcon: /* @__PURE__ */ o(
|
|
17
|
-
onClick: () =>
|
|
18
|
-
disabled:
|
|
17
|
+
startIcon: /* @__PURE__ */ o(h, {}),
|
|
18
|
+
onClick: () => n("compact"),
|
|
19
|
+
disabled: i === "compact",
|
|
19
20
|
label: t("data_grid.density_compact")
|
|
20
21
|
},
|
|
21
22
|
{
|
|
22
23
|
type: "menuItem",
|
|
23
|
-
startIcon: /* @__PURE__ */ o(
|
|
24
|
-
onClick: () =>
|
|
25
|
-
disabled:
|
|
24
|
+
startIcon: /* @__PURE__ */ o(S, {}),
|
|
25
|
+
onClick: () => n("standard"),
|
|
26
|
+
disabled: i === "standard",
|
|
26
27
|
label: t("data_grid.density_standard")
|
|
27
28
|
},
|
|
28
29
|
{
|
|
29
30
|
type: "menuItem",
|
|
30
31
|
startIcon: /* @__PURE__ */ o(C, {}),
|
|
31
|
-
onClick: () =>
|
|
32
|
-
disabled:
|
|
32
|
+
onClick: () => n("confortable"),
|
|
33
|
+
disabled: i === "confortable",
|
|
33
34
|
label: t("data_grid.density_confortable")
|
|
34
35
|
},
|
|
35
36
|
{
|
|
36
37
|
type: "menuItem",
|
|
37
|
-
startIcon: `${
|
|
38
|
-
onClick: () =>
|
|
38
|
+
startIcon: `${c}/${d}/${I.filter}`,
|
|
39
|
+
onClick: () => b(),
|
|
39
40
|
label: t(r ? "data_grid.tooltip_filter_hide" : "data_grid.tooltip_filter_show")
|
|
40
41
|
},
|
|
41
42
|
{
|
|
42
43
|
type: "menuItem",
|
|
43
|
-
startIcon: /* @__PURE__ */ o(
|
|
44
|
-
onClick: () =>
|
|
44
|
+
startIcon: /* @__PURE__ */ o(v, {}),
|
|
45
|
+
onClick: () => f(),
|
|
45
46
|
label: t("data_grid.tooltip_settings")
|
|
46
47
|
}
|
|
47
48
|
];
|
|
48
49
|
return /* @__PURE__ */ o(
|
|
49
|
-
|
|
50
|
+
L,
|
|
50
51
|
{
|
|
51
52
|
className: "mobile-menu-actions",
|
|
52
|
-
icon: /* @__PURE__ */ o(
|
|
53
|
+
icon: /* @__PURE__ */ o(O, {}),
|
|
53
54
|
arrowType: "no-arrow",
|
|
54
55
|
anchorOrigin: { vertical: "bottom", horizontal: "right" },
|
|
55
56
|
transformOrigin: { vertical: "top", horizontal: "right" },
|
|
56
|
-
menuActions:
|
|
57
|
+
menuActions: _
|
|
57
58
|
}
|
|
58
59
|
);
|
|
59
60
|
};
|
|
60
61
|
export {
|
|
61
|
-
|
|
62
|
+
T as MobileMenuActions
|
|
62
63
|
};
|
package/components/datagrids/subcomponents/HeaderActions/subcomponents/ViewMode/ViewMode.d.ts
CHANGED
|
@@ -4,13 +4,12 @@
|
|
|
4
4
|
* Muestra un popover con las opciones disponibles:
|
|
5
5
|
* - **table**: Vista de tabla tradicional con filas y columnas
|
|
6
6
|
* - **cards**: Vista de tarjetas para visualización más compacta
|
|
7
|
+
* - **list**: List view (full-width rows, virtualized; when listViewConfig is defined)
|
|
7
8
|
*
|
|
8
|
-
*
|
|
9
|
-
* indicando que la vista de cards está habilitada.
|
|
9
|
+
* The component renders when `cardsViewConfig` or `listViewConfig` is defined.
|
|
10
10
|
* @example
|
|
11
11
|
* ```tsx
|
|
12
|
-
*
|
|
13
|
-
* {cardsViewConfig !== undefined && <ViewMode />}
|
|
12
|
+
* { (cardsViewConfig !== undefined || listViewConfig !== undefined) && <ViewMode /> }
|
|
14
13
|
* ```
|
|
15
14
|
*/
|
|
16
15
|
export declare function ViewMode(): import("@emotion/react/jsx-runtime").JSX.Element;
|
package/components/datagrids/subcomponents/HeaderActions/subcomponents/ViewMode/ViewMode.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ViewMode.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/datagrids/subcomponents/HeaderActions/subcomponents/ViewMode/ViewMode.tsx"],"names":[],"mappings":"AAeA
|
|
1
|
+
{"version":3,"file":"ViewMode.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/datagrids/subcomponents/HeaderActions/subcomponents/ViewMode/ViewMode.tsx"],"names":[],"mappings":"AAeA;;;;;;;;;;;;;GAaG;AACH,wBAAgB,QAAQ,qDA2IvB"}
|