@mui/x-data-grid 7.18.0 → 7.19.0
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/CHANGELOG.md +110 -0
- package/DataGrid/DataGrid.js +5 -0
- package/components/cell/GridCell.js +7 -8
- package/components/columnHeaders/GridBaseColumnHeaders.js +1 -1
- package/components/columnSelection/GridCellCheckboxRenderer.js +12 -4
- package/components/columnSelection/GridHeaderCheckbox.d.ts +1 -1
- package/components/containers/GridRoot.js +1 -1
- package/components/containers/GridRootStyles.js +32 -23
- package/components/containers/GridToolbarContainer.js +1 -1
- package/components/menu/GridMenu.js +1 -1
- package/components/panel/GridPanel.d.ts +1 -1
- package/components/panel/GridPanel.js +1 -1
- package/components/panel/GridPanelContent.js +1 -1
- package/components/panel/GridPanelFooter.js +1 -1
- package/components/panel/GridPanelHeader.js +1 -1
- package/components/panel/GridPanelWrapper.js +1 -1
- package/components/panel/filterPanel/filterPanelUtils.d.ts +1 -1
- package/components/toolbar/GridToolbarQuickFilter.js +1 -1
- package/components/virtualization/GridBottomContainer.d.ts +1 -1
- package/components/virtualization/GridBottomContainer.js +18 -1
- package/components/virtualization/GridMainContainer.js +3 -1
- package/components/virtualization/GridTopContainer.d.ts +1 -1
- package/components/virtualization/GridTopContainer.js +1 -1
- package/components/virtualization/GridVirtualScrollbar.js +1 -7
- package/components/virtualization/GridVirtualScroller.js +1 -0
- package/components/virtualization/GridVirtualScrollerFiller.js +3 -4
- package/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +4 -4
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +1 -1
- package/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
- package/hooks/features/columns/gridColumnsSelector.d.ts +12 -12
- package/hooks/features/columns/gridColumnsUtils.js +3 -2
- package/hooks/features/density/densitySelector.d.ts +1 -1
- package/hooks/features/editing/useGridCellEditing.js +1 -1
- package/hooks/features/editing/useGridRowEditing.js +1 -1
- package/hooks/features/filter/gridFilterSelector.d.ts +17 -17
- package/hooks/features/focus/gridFocusStateSelector.d.ts +8 -8
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +3 -3
- package/hooks/features/keyboardNavigation/utils.d.ts +1 -1
- package/hooks/features/pagination/gridPaginationSelector.d.ts +9 -9
- package/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +3 -3
- package/hooks/features/rowSelection/useGridRowSelection.d.ts +1 -1
- package/hooks/features/rowSelection/useGridRowSelection.js +105 -29
- package/hooks/features/rowSelection/utils.d.ts +10 -0
- package/hooks/features/rowSelection/utils.js +156 -1
- package/hooks/features/rows/gridRowSpanningSelectors.d.ts +3 -3
- package/hooks/features/rows/gridRowsSelector.d.ts +14 -14
- package/hooks/features/rows/useGridRows.d.ts +1 -1
- package/hooks/features/rows/useGridRows.js +7 -1
- package/hooks/features/scroll/useGridScroll.js +19 -19
- package/hooks/features/sorting/gridSortingSelector.d.ts +4 -4
- package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +5 -5
- package/hooks/utils/useGridVisibleRows.d.ts +2 -2
- package/index.js +1 -1
- package/internals/index.d.ts +1 -0
- package/internals/index.js +1 -0
- package/locales/bgBG.js +8 -9
- package/locales/deDE.js +4 -4
- package/locales/frFR.js +4 -4
- package/locales/hrHR.d.ts +1 -1
- package/locales/hrHR.js +69 -46
- package/locales/jaJP.js +1 -2
- package/locales/ptPT.d.ts +1 -1
- package/locales/ptPT.js +4 -4
- package/locales/viVN.js +20 -20
- package/locales/zhHK.d.ts +1 -1
- package/models/gridRowSelectionModel.d.ts +4 -0
- package/models/props/DataGridProps.d.ts +20 -1
- package/modern/DataGrid/DataGrid.js +5 -0
- package/modern/components/cell/GridCell.js +7 -8
- package/modern/components/columnHeaders/GridBaseColumnHeaders.js +1 -1
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +12 -4
- package/modern/components/containers/GridRoot.js +1 -1
- package/modern/components/containers/GridRootStyles.js +32 -23
- package/modern/components/containers/GridToolbarContainer.js +1 -1
- package/modern/components/menu/GridMenu.js +1 -1
- package/modern/components/panel/GridPanel.js +1 -1
- package/modern/components/panel/GridPanelContent.js +1 -1
- package/modern/components/panel/GridPanelFooter.js +1 -1
- package/modern/components/panel/GridPanelHeader.js +1 -1
- package/modern/components/panel/GridPanelWrapper.js +1 -1
- package/modern/components/toolbar/GridToolbarQuickFilter.js +1 -1
- package/modern/components/virtualization/GridBottomContainer.js +18 -1
- package/modern/components/virtualization/GridMainContainer.js +3 -1
- package/modern/components/virtualization/GridTopContainer.js +1 -1
- package/modern/components/virtualization/GridVirtualScrollbar.js +1 -7
- package/modern/components/virtualization/GridVirtualScroller.js +1 -0
- package/modern/components/virtualization/GridVirtualScrollerFiller.js +3 -4
- package/modern/hooks/features/columns/gridColumnsUtils.js +3 -2
- package/modern/hooks/features/editing/useGridCellEditing.js +1 -1
- package/modern/hooks/features/editing/useGridRowEditing.js +1 -1
- package/modern/hooks/features/rowSelection/useGridRowSelection.js +105 -29
- package/modern/hooks/features/rowSelection/utils.js +156 -1
- package/modern/hooks/features/rows/useGridRows.js +7 -1
- package/modern/hooks/features/scroll/useGridScroll.js +19 -19
- package/modern/index.js +1 -1
- package/modern/internals/index.js +1 -0
- package/modern/locales/bgBG.js +8 -9
- package/modern/locales/deDE.js +4 -4
- package/modern/locales/frFR.js +4 -4
- package/modern/locales/hrHR.js +69 -46
- package/modern/locales/jaJP.js +1 -2
- package/modern/locales/ptPT.js +4 -4
- package/modern/locales/viVN.js +20 -20
- package/modern/utils/createSelector.js +6 -0
- package/node/DataGrid/DataGrid.js +5 -0
- package/node/components/cell/GridCell.js +7 -8
- package/node/components/columnHeaders/GridBaseColumnHeaders.js +1 -1
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +12 -4
- package/node/components/containers/GridRoot.js +1 -1
- package/node/components/containers/GridRootStyles.js +32 -23
- package/node/components/containers/GridToolbarContainer.js +1 -1
- package/node/components/menu/GridMenu.js +1 -1
- package/node/components/panel/GridPanel.js +1 -1
- package/node/components/panel/GridPanelContent.js +1 -1
- package/node/components/panel/GridPanelFooter.js +1 -1
- package/node/components/panel/GridPanelHeader.js +1 -1
- package/node/components/panel/GridPanelWrapper.js +1 -1
- package/node/components/toolbar/GridToolbarQuickFilter.js +1 -1
- package/node/components/virtualization/GridBottomContainer.js +18 -1
- package/node/components/virtualization/GridMainContainer.js +3 -1
- package/node/components/virtualization/GridTopContainer.js +1 -1
- package/node/components/virtualization/GridVirtualScrollbar.js +1 -7
- package/node/components/virtualization/GridVirtualScroller.js +1 -0
- package/node/components/virtualization/GridVirtualScrollerFiller.js +3 -4
- package/node/hooks/features/columns/gridColumnsUtils.js +3 -2
- package/node/hooks/features/editing/useGridCellEditing.js +1 -1
- package/node/hooks/features/editing/useGridRowEditing.js +1 -1
- package/node/hooks/features/rowSelection/useGridRowSelection.js +102 -26
- package/node/hooks/features/rowSelection/utils.js +160 -1
- package/node/hooks/features/rows/useGridRows.js +7 -1
- package/node/hooks/features/scroll/useGridScroll.js +19 -19
- package/node/index.js +1 -1
- package/node/internals/index.js +23 -15
- package/node/locales/bgBG.js +8 -9
- package/node/locales/deDE.js +4 -4
- package/node/locales/frFR.js +4 -4
- package/node/locales/hrHR.js +69 -46
- package/node/locales/jaJP.js +1 -2
- package/node/locales/ptPT.js +4 -4
- package/node/locales/viVN.js +20 -20
- package/node/utils/createSelector.js +6 -0
- package/package.json +1 -1
- package/utils/createSelector.js +6 -0
|
@@ -53,6 +53,7 @@ export { useGridStatePersistence } from "../hooks/features/statePersistence/useG
|
|
|
53
53
|
export { useGridVirtualScroller, EMPTY_DETAIL_PANELS } from "../hooks/features/virtualization/useGridVirtualScroller.js";
|
|
54
54
|
export * from "../hooks/features/virtualization/index.js";
|
|
55
55
|
export { useGridColumnResize, columnResizeStateInitializer } from "../hooks/features/columnResize/useGridColumnResize.js";
|
|
56
|
+
export { ROW_SELECTION_PROPAGATION_DEFAULT } from "../hooks/features/rowSelection/utils.js";
|
|
56
57
|
export { useTimeout } from "../hooks/utils/useTimeout.js";
|
|
57
58
|
export { useGridVisibleRows, getVisibleRows } from "../hooks/utils/useGridVisibleRows.js";
|
|
58
59
|
export { useGridInitializeState } from "../hooks/utils/useGridInitializeState.js";
|
package/modern/locales/bgBG.js
CHANGED
|
@@ -30,11 +30,10 @@ const bgBGGrid = {
|
|
|
30
30
|
toolbarExportPrint: 'Принтиране',
|
|
31
31
|
toolbarExportExcel: 'Изтегли като Excel',
|
|
32
32
|
// Columns management text
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
columnsManagementSearchTitle: 'Търсене',
|
|
34
|
+
columnsManagementNoColumns: 'Няма колони',
|
|
35
|
+
columnsManagementShowHideAllText: 'Покажи/Скрий Всичко',
|
|
36
|
+
columnsManagementReset: 'Нулирай',
|
|
38
37
|
// Filter panel text
|
|
39
38
|
filterPanelAddFilter: 'Добави Филтър',
|
|
40
39
|
filterPanelRemoveAll: 'Премахни всички',
|
|
@@ -48,9 +47,9 @@ const bgBGGrid = {
|
|
|
48
47
|
filterPanelInputPlaceholder: 'Стойност на филтъра',
|
|
49
48
|
// Filter operators text
|
|
50
49
|
filterOperatorContains: 'съдържа',
|
|
51
|
-
|
|
50
|
+
filterOperatorDoesNotContain: 'не съдържа',
|
|
52
51
|
filterOperatorEquals: 'равно',
|
|
53
|
-
|
|
52
|
+
filterOperatorDoesNotEqual: 'не е равно',
|
|
54
53
|
filterOperatorStartsWith: 'започва с',
|
|
55
54
|
filterOperatorEndsWith: 'завършва с',
|
|
56
55
|
filterOperatorIs: 'е',
|
|
@@ -70,9 +69,9 @@ const bgBGGrid = {
|
|
|
70
69
|
'filterOperator<=': '<=',
|
|
71
70
|
// Header filter operators text
|
|
72
71
|
headerFilterOperatorContains: 'Съдържа',
|
|
73
|
-
|
|
72
|
+
headerFilterOperatorDoesNotContain: 'Не съдържа',
|
|
74
73
|
headerFilterOperatorEquals: 'Равнo',
|
|
75
|
-
|
|
74
|
+
headerFilterOperatorDoesNotEqual: 'Не е равно',
|
|
76
75
|
headerFilterOperatorStartsWith: 'Започва с',
|
|
77
76
|
headerFilterOperatorEndsWith: 'Завършва с',
|
|
78
77
|
headerFilterOperatorIs: 'Равно е на',
|
package/modern/locales/deDE.js
CHANGED
|
@@ -47,9 +47,9 @@ const deDEGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Wert filtern',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'enthält',
|
|
50
|
-
|
|
50
|
+
filterOperatorDoesNotContain: 'enthält nicht',
|
|
51
51
|
filterOperatorEquals: 'ist gleich',
|
|
52
|
-
|
|
52
|
+
filterOperatorDoesNotEqual: 'ist ungleich',
|
|
53
53
|
filterOperatorStartsWith: 'beginnt mit',
|
|
54
54
|
filterOperatorEndsWith: 'endet mit',
|
|
55
55
|
filterOperatorIs: 'ist',
|
|
@@ -69,9 +69,9 @@ const deDEGrid = {
|
|
|
69
69
|
'filterOperator<=': '<=',
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
headerFilterOperatorContains: 'Enthält',
|
|
72
|
-
|
|
72
|
+
headerFilterOperatorDoesNotContain: 'Enthält nicht',
|
|
73
73
|
headerFilterOperatorEquals: 'Gleich',
|
|
74
|
-
|
|
74
|
+
headerFilterOperatorDoesNotEqual: 'Ungleich',
|
|
75
75
|
headerFilterOperatorStartsWith: 'Beginnt mit',
|
|
76
76
|
headerFilterOperatorEndsWith: 'Endet mit',
|
|
77
77
|
headerFilterOperatorIs: 'Ist',
|
package/modern/locales/frFR.js
CHANGED
|
@@ -47,9 +47,9 @@ const frFRGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filtrer la valeur',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'contient',
|
|
50
|
-
|
|
50
|
+
filterOperatorDoesNotContain: 'ne contient pas',
|
|
51
51
|
filterOperatorEquals: 'est égal à',
|
|
52
|
-
|
|
52
|
+
filterOperatorDoesNotEqual: "n'est pas égal à",
|
|
53
53
|
filterOperatorStartsWith: 'commence par',
|
|
54
54
|
filterOperatorEndsWith: 'se termine par',
|
|
55
55
|
filterOperatorIs: 'est',
|
|
@@ -69,9 +69,9 @@ const frFRGrid = {
|
|
|
69
69
|
'filterOperator<=': '<=',
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
headerFilterOperatorContains: 'Contient',
|
|
72
|
-
|
|
72
|
+
headerFilterOperatorDoesNotContain: 'Ne contient pas',
|
|
73
73
|
headerFilterOperatorEquals: 'Est égal à',
|
|
74
|
-
|
|
74
|
+
headerFilterOperatorDoesNotEqual: "N'est pas égal à",
|
|
75
75
|
headerFilterOperatorStartsWith: 'Commence par',
|
|
76
76
|
headerFilterOperatorEndsWith: 'Se termine par',
|
|
77
77
|
headerFilterOperatorIs: 'Est',
|
package/modern/locales/hrHR.js
CHANGED
|
@@ -7,50 +7,57 @@ const hrHRGrid = {
|
|
|
7
7
|
// Density selector toolbar button text
|
|
8
8
|
toolbarDensity: 'Gustoća',
|
|
9
9
|
toolbarDensityLabel: 'Gustoća',
|
|
10
|
-
toolbarDensityCompact: '
|
|
11
|
-
toolbarDensityStandard: '
|
|
10
|
+
toolbarDensityCompact: 'Kompaktno',
|
|
11
|
+
toolbarDensityStandard: 'Standardno',
|
|
12
12
|
toolbarDensityComfortable: 'Udobno',
|
|
13
13
|
// Columns selector toolbar button text
|
|
14
14
|
toolbarColumns: 'Stupci',
|
|
15
15
|
toolbarColumnsLabel: 'Odaberite stupce',
|
|
16
16
|
// Filters toolbar button text
|
|
17
17
|
toolbarFilters: 'Filteri',
|
|
18
|
-
toolbarFiltersLabel: 'Prikaži
|
|
19
|
-
toolbarFiltersTooltipHide: 'Sakrij
|
|
20
|
-
toolbarFiltersTooltipShow: 'Prikaži
|
|
21
|
-
toolbarFiltersTooltipActive: count =>
|
|
18
|
+
toolbarFiltersLabel: 'Prikaži filtere',
|
|
19
|
+
toolbarFiltersTooltipHide: 'Sakrij filtere',
|
|
20
|
+
toolbarFiltersTooltipShow: 'Prikaži filtere',
|
|
21
|
+
toolbarFiltersTooltipActive: count => {
|
|
22
|
+
if (count === 1) {
|
|
23
|
+
return `${count} aktivan filter`;
|
|
24
|
+
}
|
|
25
|
+
if (count < 5) {
|
|
26
|
+
return `${count} aktivna filtera`;
|
|
27
|
+
}
|
|
28
|
+
return `${count} aktivnih filtera`;
|
|
29
|
+
},
|
|
22
30
|
// Quick filter toolbar field
|
|
23
31
|
toolbarQuickFilterPlaceholder: 'Traži…',
|
|
24
32
|
toolbarQuickFilterLabel: 'traži',
|
|
25
|
-
toolbarQuickFilterDeleteIconLabel: '
|
|
33
|
+
toolbarQuickFilterDeleteIconLabel: 'Obriši',
|
|
26
34
|
// Export selector toolbar button text
|
|
27
35
|
toolbarExport: 'Izvoz',
|
|
28
36
|
toolbarExportLabel: 'Izvoz',
|
|
29
37
|
toolbarExportCSV: 'Preuzmi kao CSV',
|
|
30
|
-
toolbarExportPrint: '
|
|
31
|
-
toolbarExportExcel: '
|
|
38
|
+
toolbarExportPrint: 'Štampaj',
|
|
39
|
+
toolbarExportExcel: 'Preuzmi kao Excel',
|
|
32
40
|
// Columns management text
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
41
|
+
columnsManagementSearchTitle: 'Traži',
|
|
42
|
+
columnsManagementNoColumns: 'Nema stupaca',
|
|
43
|
+
columnsManagementShowHideAllText: 'Prikaži/Sakrij sve',
|
|
44
|
+
columnsManagementReset: 'Ponovno namjesti',
|
|
38
45
|
// Filter panel text
|
|
39
|
-
filterPanelAddFilter: '
|
|
40
|
-
filterPanelRemoveAll: '
|
|
41
|
-
filterPanelDeleteIconLabel: '
|
|
46
|
+
filterPanelAddFilter: 'Dodaj filter',
|
|
47
|
+
filterPanelRemoveAll: 'Ukloni sve',
|
|
48
|
+
filterPanelDeleteIconLabel: 'Obriši',
|
|
42
49
|
filterPanelLogicOperator: 'Logički operator',
|
|
43
|
-
filterPanelOperator: '
|
|
50
|
+
filterPanelOperator: 'Operator',
|
|
44
51
|
filterPanelOperatorAnd: 'I',
|
|
45
52
|
filterPanelOperatorOr: 'Ili',
|
|
46
|
-
filterPanelColumns: '
|
|
53
|
+
filterPanelColumns: 'Stupac',
|
|
47
54
|
filterPanelInputLabel: 'Vrijednost',
|
|
48
|
-
filterPanelInputPlaceholder: 'Vrijednost
|
|
55
|
+
filterPanelInputPlaceholder: 'Vrijednost filtera',
|
|
49
56
|
// Filter operators text
|
|
50
57
|
filterOperatorContains: 'sadrži',
|
|
51
|
-
|
|
52
|
-
filterOperatorEquals: '
|
|
53
|
-
|
|
58
|
+
filterOperatorDoesNotContain: 'ne sadrži',
|
|
59
|
+
filterOperatorEquals: 'je jednak',
|
|
60
|
+
filterOperatorDoesNotEqual: 'nije jednak',
|
|
54
61
|
filterOperatorStartsWith: 'počinje sa',
|
|
55
62
|
filterOperatorEndsWith: 'završava sa',
|
|
56
63
|
filterOperatorIs: 'je',
|
|
@@ -59,8 +66,8 @@ const hrHRGrid = {
|
|
|
59
66
|
filterOperatorOnOrAfter: 'je na ili poslije',
|
|
60
67
|
filterOperatorBefore: 'je prije',
|
|
61
68
|
filterOperatorOnOrBefore: 'je na ili prije',
|
|
62
|
-
filterOperatorIsEmpty: 'prazno
|
|
63
|
-
filterOperatorIsNotEmpty: 'nije
|
|
69
|
+
filterOperatorIsEmpty: 'je prazno',
|
|
70
|
+
filterOperatorIsNotEmpty: 'nije prazno',
|
|
64
71
|
filterOperatorIsAnyOf: 'je bilo koji od',
|
|
65
72
|
'filterOperator=': '=',
|
|
66
73
|
'filterOperator!=': '!=',
|
|
@@ -70,20 +77,20 @@ const hrHRGrid = {
|
|
|
70
77
|
'filterOperator<=': '<=',
|
|
71
78
|
// Header filter operators text
|
|
72
79
|
headerFilterOperatorContains: 'Sadrži',
|
|
73
|
-
|
|
80
|
+
headerFilterOperatorDoesNotContain: 'Ne sadrži',
|
|
74
81
|
headerFilterOperatorEquals: 'Jednako',
|
|
75
|
-
|
|
82
|
+
headerFilterOperatorDoesNotEqual: 'Nije jednako',
|
|
76
83
|
headerFilterOperatorStartsWith: 'Počinje sa',
|
|
77
|
-
headerFilterOperatorEndsWith: 'Završava
|
|
84
|
+
headerFilterOperatorEndsWith: 'Završava sa',
|
|
78
85
|
headerFilterOperatorIs: 'Je',
|
|
79
86
|
headerFilterOperatorNot: 'Nije',
|
|
80
87
|
headerFilterOperatorAfter: 'Je poslije',
|
|
81
88
|
headerFilterOperatorOnOrAfter: 'Je uključeno ili poslije',
|
|
82
|
-
headerFilterOperatorBefore: 'Je
|
|
83
|
-
headerFilterOperatorOnOrBefore: '
|
|
84
|
-
headerFilterOperatorIsEmpty: '
|
|
85
|
-
headerFilterOperatorIsNotEmpty: 'Nije
|
|
86
|
-
headerFilterOperatorIsAnyOf: 'Je
|
|
89
|
+
headerFilterOperatorBefore: 'Je prije',
|
|
90
|
+
headerFilterOperatorOnOrBefore: 'Je uključeno ili prije',
|
|
91
|
+
headerFilterOperatorIsEmpty: 'Je prazno',
|
|
92
|
+
headerFilterOperatorIsNotEmpty: 'Nije prazno',
|
|
93
|
+
headerFilterOperatorIsAnyOf: 'Je bilo koji od',
|
|
87
94
|
'headerFilterOperator=': 'Jednako',
|
|
88
95
|
'headerFilterOperator!=': 'Nije jednako',
|
|
89
96
|
'headerFilterOperator>': 'Veći od',
|
|
@@ -92,32 +99,48 @@ const hrHRGrid = {
|
|
|
92
99
|
'headerFilterOperator<=': 'Manje od ili jednako',
|
|
93
100
|
// Filter values text
|
|
94
101
|
filterValueAny: 'bilo koji',
|
|
95
|
-
filterValueTrue: '
|
|
96
|
-
filterValueFalse: '
|
|
102
|
+
filterValueTrue: 'tačno',
|
|
103
|
+
filterValueFalse: 'netačno',
|
|
97
104
|
// Column menu text
|
|
98
|
-
columnMenuLabel: '
|
|
105
|
+
columnMenuLabel: 'Izbornik',
|
|
99
106
|
columnMenuShowColumns: 'Prikaži stupce',
|
|
100
107
|
columnMenuManageColumns: 'Upravljanje stupcima',
|
|
101
|
-
columnMenuFilter: '
|
|
108
|
+
columnMenuFilter: 'Filter',
|
|
102
109
|
columnMenuHideColumn: 'Sakrij stupac',
|
|
103
110
|
columnMenuUnsort: 'Poništi sortiranje',
|
|
104
111
|
columnMenuSortAsc: 'Poredaj uzlazno',
|
|
105
|
-
columnMenuSortDesc: 'Poredaj
|
|
112
|
+
columnMenuSortDesc: 'Poredaj silazno',
|
|
106
113
|
// Column header text
|
|
107
|
-
columnHeaderFiltersTooltipActive: count =>
|
|
108
|
-
|
|
109
|
-
|
|
114
|
+
columnHeaderFiltersTooltipActive: count => {
|
|
115
|
+
if (count === 1) {
|
|
116
|
+
return `${count} aktivan filter`;
|
|
117
|
+
}
|
|
118
|
+
if (count < 5) {
|
|
119
|
+
return `${count} aktivna filtera`;
|
|
120
|
+
}
|
|
121
|
+
return `${count} aktivnih filtera`;
|
|
122
|
+
},
|
|
123
|
+
columnHeaderFiltersLabel: 'Prikaži filtere',
|
|
124
|
+
columnHeaderSortIconLabel: 'Poredaj',
|
|
110
125
|
// Rows selected footer text
|
|
111
|
-
footerRowSelected: count =>
|
|
126
|
+
footerRowSelected: count => {
|
|
127
|
+
if (count === 1) {
|
|
128
|
+
return `Odabran je ${count.toLocaleString()} redak`;
|
|
129
|
+
}
|
|
130
|
+
if (count < 5) {
|
|
131
|
+
return `Odabrana su ${count.toLocaleString()} retka`;
|
|
132
|
+
}
|
|
133
|
+
return `Odabrano je ${count.toLocaleString()} redaka`;
|
|
134
|
+
},
|
|
112
135
|
// Total row amount footer text
|
|
113
136
|
footerTotalRows: 'Ukupno redaka:',
|
|
114
137
|
// Total visible row amount footer text
|
|
115
138
|
footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} od ${totalCount.toLocaleString()}`,
|
|
116
139
|
// Checkbox selection text
|
|
117
|
-
checkboxSelectionHeaderName: 'Odabir
|
|
140
|
+
checkboxSelectionHeaderName: 'Odabir redaka',
|
|
118
141
|
checkboxSelectionSelectAllRows: 'Odaberite sve retke',
|
|
119
142
|
checkboxSelectionUnselectAllRows: 'Poništi odabir svih redaka',
|
|
120
|
-
checkboxSelectionSelectRow: 'Odaberite
|
|
143
|
+
checkboxSelectionSelectRow: 'Odaberite redak',
|
|
121
144
|
checkboxSelectionUnselectRow: 'Poništi odabir retka',
|
|
122
145
|
// Boolean cell text
|
|
123
146
|
booleanCellTrueLabel: 'Da',
|
|
@@ -129,7 +152,7 @@ const hrHRGrid = {
|
|
|
129
152
|
pinToRight: 'Prikvači desno',
|
|
130
153
|
unpin: 'Otkvači',
|
|
131
154
|
// Tree Data
|
|
132
|
-
treeDataGroupingHeaderName: '
|
|
155
|
+
treeDataGroupingHeaderName: 'Skupina',
|
|
133
156
|
treeDataExpand: 'vidjeti djecu',
|
|
134
157
|
treeDataCollapse: 'sakriti djecu',
|
|
135
158
|
// Grouping columns
|
|
@@ -139,7 +162,7 @@ const hrHRGrid = {
|
|
|
139
162
|
// Master/detail
|
|
140
163
|
detailPanelToggle: 'Prebacivanje ploče s detaljima',
|
|
141
164
|
expandDetailPanel: 'Proširiti',
|
|
142
|
-
collapseDetailPanel: '
|
|
165
|
+
collapseDetailPanel: 'Skupiti',
|
|
143
166
|
// Row reordering text
|
|
144
167
|
rowReorderingHeaderName: 'Promjena redoslijeda',
|
|
145
168
|
// Aggregation
|
package/modern/locales/jaJP.js
CHANGED
|
@@ -33,8 +33,7 @@ const jaJPGrid = {
|
|
|
33
33
|
columnsManagementSearchTitle: '検索',
|
|
34
34
|
columnsManagementNoColumns: 'カラムなし',
|
|
35
35
|
columnsManagementShowHideAllText: 'すべて表示/非表示',
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
columnsManagementReset: 'リセット',
|
|
38
37
|
// Filter panel text
|
|
39
38
|
filterPanelAddFilter: 'フィルター追加',
|
|
40
39
|
filterPanelRemoveAll: 'すべて削除',
|
package/modern/locales/ptPT.js
CHANGED
|
@@ -47,9 +47,9 @@ const ptPTGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Valor do filtro',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'contém',
|
|
50
|
-
|
|
50
|
+
filterOperatorDoesNotContain: 'não contém',
|
|
51
51
|
filterOperatorEquals: 'é igual a',
|
|
52
|
-
|
|
52
|
+
filterOperatorDoesNotEqual: 'não é igual a',
|
|
53
53
|
filterOperatorStartsWith: 'começa com',
|
|
54
54
|
filterOperatorEndsWith: 'termina com',
|
|
55
55
|
filterOperatorIs: 'é',
|
|
@@ -69,9 +69,9 @@ const ptPTGrid = {
|
|
|
69
69
|
'filterOperator<=': '<=',
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
headerFilterOperatorContains: 'Contém',
|
|
72
|
-
|
|
72
|
+
headerFilterOperatorDoesNotContain: 'Não contém',
|
|
73
73
|
headerFilterOperatorEquals: 'É igual a',
|
|
74
|
-
|
|
74
|
+
headerFilterOperatorDoesNotEqual: 'Não é igual',
|
|
75
75
|
headerFilterOperatorStartsWith: 'Começa com',
|
|
76
76
|
headerFilterOperatorEndsWith: 'Termina com',
|
|
77
77
|
headerFilterOperatorIs: 'É',
|
package/modern/locales/viVN.js
CHANGED
|
@@ -46,21 +46,21 @@ const viVNGrid = {
|
|
|
46
46
|
filterPanelInputLabel: 'Giá trị',
|
|
47
47
|
filterPanelInputPlaceholder: 'Lọc giá trị',
|
|
48
48
|
// Filter operators text
|
|
49
|
-
filterOperatorContains: '
|
|
50
|
-
|
|
51
|
-
filterOperatorEquals: '
|
|
52
|
-
|
|
53
|
-
filterOperatorStartsWith: '
|
|
54
|
-
filterOperatorEndsWith: '
|
|
55
|
-
filterOperatorIs: '
|
|
56
|
-
filterOperatorNot: '
|
|
57
|
-
filterOperatorAfter: '
|
|
49
|
+
filterOperatorContains: 'chứa',
|
|
50
|
+
filterOperatorDoesNotContain: 'không chứa',
|
|
51
|
+
filterOperatorEquals: 'bằng',
|
|
52
|
+
filterOperatorDoesNotEqual: 'không bằng',
|
|
53
|
+
filterOperatorStartsWith: 'bắt đầu với',
|
|
54
|
+
filterOperatorEndsWith: 'kết thúc với',
|
|
55
|
+
filterOperatorIs: 'là',
|
|
56
|
+
filterOperatorNot: 'không phải là',
|
|
57
|
+
filterOperatorAfter: 'sau',
|
|
58
58
|
filterOperatorOnOrAfter: 'bằng hoặc sau',
|
|
59
|
-
filterOperatorBefore: '
|
|
59
|
+
filterOperatorBefore: 'trước',
|
|
60
60
|
filterOperatorOnOrBefore: 'bằng hoặc trước',
|
|
61
|
-
filterOperatorIsEmpty: '
|
|
62
|
-
filterOperatorIsNotEmpty: '
|
|
63
|
-
filterOperatorIsAnyOf: '
|
|
61
|
+
filterOperatorIsEmpty: 'rỗng',
|
|
62
|
+
filterOperatorIsNotEmpty: 'khác rỗng',
|
|
63
|
+
filterOperatorIsAnyOf: 'là một trong',
|
|
64
64
|
'filterOperator=': '=',
|
|
65
65
|
'filterOperator!=': '!=',
|
|
66
66
|
'filterOperator>': '>',
|
|
@@ -69,20 +69,20 @@ const viVNGrid = {
|
|
|
69
69
|
'filterOperator<=': '<=',
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
headerFilterOperatorContains: 'Chứa',
|
|
72
|
-
|
|
72
|
+
headerFilterOperatorDoesNotContain: 'Không chứa',
|
|
73
73
|
headerFilterOperatorEquals: 'Bằng',
|
|
74
|
-
|
|
74
|
+
headerFilterOperatorDoesNotEqual: 'Không bằng',
|
|
75
75
|
headerFilterOperatorStartsWith: 'Bắt đầu với',
|
|
76
76
|
headerFilterOperatorEndsWith: 'Kết thúc với',
|
|
77
|
-
headerFilterOperatorIs: '
|
|
78
|
-
headerFilterOperatorNot: 'Không là',
|
|
77
|
+
headerFilterOperatorIs: 'Là',
|
|
78
|
+
headerFilterOperatorNot: 'Không phải là',
|
|
79
79
|
headerFilterOperatorAfter: 'Sau',
|
|
80
|
-
headerFilterOperatorOnOrAfter: '
|
|
80
|
+
headerFilterOperatorOnOrAfter: 'Bằng hoặc sau',
|
|
81
81
|
headerFilterOperatorBefore: 'Trước',
|
|
82
|
-
headerFilterOperatorOnOrBefore: '
|
|
82
|
+
headerFilterOperatorOnOrBefore: 'Bằng hoặc trước',
|
|
83
83
|
headerFilterOperatorIsEmpty: 'Rỗng',
|
|
84
84
|
headerFilterOperatorIsNotEmpty: 'Khác rỗng',
|
|
85
|
-
headerFilterOperatorIsAnyOf: '
|
|
85
|
+
headerFilterOperatorIsAnyOf: 'Là một trong',
|
|
86
86
|
'headerFilterOperator=': 'Bằng',
|
|
87
87
|
'headerFilterOperator!=': 'Khác',
|
|
88
88
|
'headerFilterOperator>': 'Lớn hơn',
|
|
@@ -34,6 +34,8 @@ export const createSelector = (a, b, c, d, e, f, ...other) => {
|
|
|
34
34
|
throw new Error('Unsupported number of selectors');
|
|
35
35
|
}
|
|
36
36
|
let selector;
|
|
37
|
+
|
|
38
|
+
// eslint-disable-next-line id-denylist
|
|
37
39
|
if (a && b && c && d && e && f) {
|
|
38
40
|
selector = (stateOrApiRef, instanceIdParam) => {
|
|
39
41
|
const isAPIRef = checkIsAPIRef(stateOrApiRef);
|
|
@@ -46,6 +48,7 @@ export const createSelector = (a, b, c, d, e, f, ...other) => {
|
|
|
46
48
|
const ve = e(state, instanceId);
|
|
47
49
|
return f(va, vb, vc, vd, ve);
|
|
48
50
|
};
|
|
51
|
+
// eslint-disable-next-line id-denylist
|
|
49
52
|
} else if (a && b && c && d && e) {
|
|
50
53
|
selector = (stateOrApiRef, instanceIdParam) => {
|
|
51
54
|
const isAPIRef = checkIsAPIRef(stateOrApiRef);
|
|
@@ -100,6 +103,8 @@ export const createSelectorV8 = (a, b, c, d, e, f, ...other) => {
|
|
|
100
103
|
throw new Error('Unsupported number of selectors');
|
|
101
104
|
}
|
|
102
105
|
let selector;
|
|
106
|
+
|
|
107
|
+
// eslint-disable-next-line id-denylist
|
|
103
108
|
if (a && b && c && d && e && f) {
|
|
104
109
|
selector = (stateOrApiRef, args, instanceIdParam) => {
|
|
105
110
|
const isAPIRef = checkIsAPIRef(stateOrApiRef);
|
|
@@ -112,6 +117,7 @@ export const createSelectorV8 = (a, b, c, d, e, f, ...other) => {
|
|
|
112
117
|
const ve = e(state, args, instanceId);
|
|
113
118
|
return f(va, vb, vc, vd, ve, args);
|
|
114
119
|
};
|
|
120
|
+
// eslint-disable-next-line id-denylist
|
|
115
121
|
} else if (a && b && c && d && e) {
|
|
116
122
|
selector = (stateOrApiRef, args, instanceIdParam) => {
|
|
117
123
|
const isAPIRef = checkIsAPIRef(stateOrApiRef);
|
|
@@ -80,6 +80,11 @@ DataGridRaw.propTypes = {
|
|
|
80
80
|
/**
|
|
81
81
|
* If `true`, the Data Grid height is dynamic and follows the number of rows in the Data Grid.
|
|
82
82
|
* @default false
|
|
83
|
+
* @deprecated Use flex parent container instead: https://mui.com/x/react-data-grid/layout/#flex-parent-container
|
|
84
|
+
* @example
|
|
85
|
+
* <div style={{ display: 'flex', flexDirection: 'column' }}>
|
|
86
|
+
* <DataGrid />
|
|
87
|
+
* </div>
|
|
83
88
|
*/
|
|
84
89
|
autoHeight: _propTypes.default.bool,
|
|
85
90
|
/**
|
|
@@ -126,11 +126,11 @@ const GridCell = /*#__PURE__*/React.forwardRef(function GridCell(props, ref) {
|
|
|
126
126
|
const result = apiRef.current.getCellParams(rowId, field);
|
|
127
127
|
result.api = apiRef.current;
|
|
128
128
|
return result;
|
|
129
|
-
} catch (
|
|
130
|
-
if (
|
|
129
|
+
} catch (error) {
|
|
130
|
+
if (error instanceof _useGridParamsApi.MissingRowIdError) {
|
|
131
131
|
return EMPTY_CELL_PARAMS;
|
|
132
132
|
}
|
|
133
|
-
throw
|
|
133
|
+
throw error;
|
|
134
134
|
}
|
|
135
135
|
}, _useGridSelector.objectShallowCompare);
|
|
136
136
|
const isSelected = (0, _useGridSelector.useGridSelector)(apiRef, () => apiRef.current.unstable_applyPipeProcessors('isCellSelected', false, {
|
|
@@ -263,10 +263,9 @@ const GridCell = /*#__PURE__*/React.forwardRef(function GridCell(props, ref) {
|
|
|
263
263
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
264
264
|
"data-colindex": colIndex,
|
|
265
265
|
role: "presentation",
|
|
266
|
-
style: (0, _extends2.default)({
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
})
|
|
266
|
+
style: (0, _extends2.default)({
|
|
267
|
+
width: 'var(--width)'
|
|
268
|
+
}, style)
|
|
270
269
|
});
|
|
271
270
|
}
|
|
272
271
|
if (cellParams === EMPTY_CELL_PARAMS) {
|
|
@@ -323,7 +322,7 @@ const GridCell = /*#__PURE__*/React.forwardRef(function GridCell(props, ref) {
|
|
|
323
322
|
};
|
|
324
323
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", (0, _extends2.default)({
|
|
325
324
|
ref: handleRef,
|
|
326
|
-
className: (0, _clsx.default)(
|
|
325
|
+
className: (0, _clsx.default)(classes.root, classNames, className),
|
|
327
326
|
role: "gridcell",
|
|
328
327
|
"data-field": field,
|
|
329
328
|
"data-colindex": colIndex,
|
|
@@ -44,7 +44,7 @@ const GridBaseColumnHeaders = exports.GridBaseColumnHeaders = /*#__PURE__*/React
|
|
|
44
44
|
const classes = useUtilityClasses(rootProps);
|
|
45
45
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(GridColumnHeadersRoot, (0, _extends2.default)({
|
|
46
46
|
ref: ref,
|
|
47
|
-
className: (0, _clsx.default)(
|
|
47
|
+
className: (0, _clsx.default)(classes.root, className),
|
|
48
48
|
ownerState: rootProps
|
|
49
49
|
}, other, {
|
|
50
50
|
role: "presentation"
|
|
@@ -14,8 +14,10 @@ var _utils = require("@mui/utils");
|
|
|
14
14
|
var _useGridApiContext = require("../../hooks/utils/useGridApiContext");
|
|
15
15
|
var _useGridRootProps = require("../../hooks/utils/useGridRootProps");
|
|
16
16
|
var _gridClasses = require("../../constants/gridClasses");
|
|
17
|
+
var _useGridSelector = require("../../hooks/utils/useGridSelector");
|
|
18
|
+
var _utils2 = require("../../hooks/features/rowSelection/utils");
|
|
17
19
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
18
|
-
const _excluded = ["field", "id", "
|
|
20
|
+
const _excluded = ["field", "id", "formattedValue", "row", "rowNode", "colDef", "isEditable", "cellMode", "hasFocus", "tabIndex", "api"];
|
|
19
21
|
const useUtilityClasses = ownerState => {
|
|
20
22
|
const {
|
|
21
23
|
classes
|
|
@@ -29,7 +31,6 @@ const GridCellCheckboxForwardRef = exports.GridCellCheckboxForwardRef = /*#__PUR
|
|
|
29
31
|
const {
|
|
30
32
|
field,
|
|
31
33
|
id,
|
|
32
|
-
value: isChecked,
|
|
33
34
|
rowNode,
|
|
34
35
|
hasFocus,
|
|
35
36
|
tabIndex
|
|
@@ -77,21 +78,28 @@ const GridCellCheckboxForwardRef = exports.GridCellCheckboxForwardRef = /*#__PUR
|
|
|
77
78
|
event.stopPropagation();
|
|
78
79
|
}
|
|
79
80
|
}, []);
|
|
81
|
+
const isSelectable = apiRef.current.isRowSelectable(id);
|
|
82
|
+
const checkboxPropsSelector = (0, _utils2.getCheckboxPropsSelector)(id, rootProps.rowSelectionPropagation?.parents ?? false);
|
|
83
|
+
const {
|
|
84
|
+
isIndeterminate,
|
|
85
|
+
isChecked
|
|
86
|
+
} = (0, _useGridSelector.useGridSelector)(apiRef, checkboxPropsSelector);
|
|
80
87
|
if (rowNode.type === 'footer' || rowNode.type === 'pinnedRow') {
|
|
81
88
|
return null;
|
|
82
89
|
}
|
|
83
|
-
const isSelectable = apiRef.current.isRowSelectable(id);
|
|
84
90
|
const label = apiRef.current.getLocaleText(isChecked ? 'checkboxSelectionUnselectRow' : 'checkboxSelectionSelectRow');
|
|
91
|
+
const checked = rootProps.indeterminateCheckboxAction === 'select' ? isChecked && !isIndeterminate : isChecked;
|
|
85
92
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(rootProps.slots.baseCheckbox, (0, _extends2.default)({
|
|
86
93
|
ref: handleRef,
|
|
87
94
|
tabIndex: tabIndex,
|
|
88
|
-
checked:
|
|
95
|
+
checked: checked,
|
|
89
96
|
onChange: handleChange,
|
|
90
97
|
className: classes.root,
|
|
91
98
|
inputProps: {
|
|
92
99
|
'aria-label': label
|
|
93
100
|
},
|
|
94
101
|
onKeyDown: handleKeyDown,
|
|
102
|
+
indeterminate: isIndeterminate,
|
|
95
103
|
disabled: !isSelectable,
|
|
96
104
|
touchRippleRef: rippleRef /* FIXME: typing error */
|
|
97
105
|
}, rootProps.slotProps?.baseCheckbox, other));
|
|
@@ -54,7 +54,7 @@ const GridRoot = exports.GridRoot = /*#__PURE__*/React.forwardRef(function GridR
|
|
|
54
54
|
}
|
|
55
55
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_GridRootStyles.GridRootStyles, (0, _extends2.default)({
|
|
56
56
|
ref: handleRef,
|
|
57
|
-
className: (0, _clsx.default)(
|
|
57
|
+
className: (0, _clsx.default)(classes.root, className),
|
|
58
58
|
ownerState: ownerState
|
|
59
59
|
}, other));
|
|
60
60
|
});
|
|
@@ -177,14 +177,28 @@ const GridRootStyles = exports.GridRootStyles = (0, _styles.styled)('div', {
|
|
|
177
177
|
const hoverOpacity = (t.vars || t).palette.action.hoverOpacity;
|
|
178
178
|
const hoverColor = (t.vars || t).palette.action.hover;
|
|
179
179
|
const selectedOpacity = (t.vars || t).palette.action.selectedOpacity;
|
|
180
|
+
const selectedHoverOpacity = t.vars ? `calc(${hoverOpacity} + ${selectedOpacity})` // TODO: Improve type
|
|
181
|
+
: hoverOpacity + selectedOpacity;
|
|
180
182
|
const selectedBackground = t.vars ? `rgba(${t.vars.palette.primary.mainChannel} / ${selectedOpacity})` : (0, _styles.alpha)(t.palette.primary.main, selectedOpacity);
|
|
181
|
-
const selectedHoverBackground = t.vars ? `rgba(${t.vars.palette.primary.mainChannel} /
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
183
|
+
const selectedHoverBackground = t.vars ? `rgba(${t.vars.palette.primary.mainChannel} / ${selectedHoverOpacity})` : (0, _styles.alpha)(t.palette.primary.main, selectedHoverOpacity);
|
|
184
|
+
const blendFn = t.vars ? blendCssVars : blend;
|
|
185
|
+
const getPinnedBackgroundStyles = backgroundColor => ({
|
|
186
|
+
[`& .${_gridClasses.gridClasses['cell--pinnedLeft']}, & .${_gridClasses.gridClasses['cell--pinnedRight']}`]: {
|
|
187
|
+
backgroundColor,
|
|
188
|
+
'&.Mui-selected': {
|
|
189
|
+
backgroundColor: blendFn(backgroundColor, selectedBackground, selectedOpacity),
|
|
190
|
+
'&:hover': {
|
|
191
|
+
backgroundColor: blendFn(backgroundColor, selectedBackground, selectedHoverOpacity)
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
});
|
|
196
|
+
const pinnedBackgroundColor = blendFn(pinnedBackground, hoverColor, hoverOpacity);
|
|
197
|
+
const pinnedHoverStyles = getPinnedBackgroundStyles(pinnedBackgroundColor);
|
|
198
|
+
const pinnedSelectedBackgroundColor = blendFn(pinnedBackground, selectedBackground, selectedOpacity);
|
|
199
|
+
const pinnedSelectedStyles = getPinnedBackgroundStyles(pinnedSelectedBackgroundColor);
|
|
200
|
+
const pinnedSelectedHoverBackgroundColor = blendFn(pinnedBackground, selectedHoverBackground, selectedHoverOpacity);
|
|
201
|
+
const pinnedSelectedHoverStyles = getPinnedBackgroundStyles(pinnedSelectedHoverBackgroundColor);
|
|
188
202
|
const selectedStyles = {
|
|
189
203
|
backgroundColor: selectedBackground,
|
|
190
204
|
'&:hover': {
|
|
@@ -624,24 +638,15 @@ const GridRootStyles = exports.GridRootStyles = (0, _styles.styled)('div', {
|
|
|
624
638
|
[`& .${_gridClasses.gridClasses['cell--pinnedLeft']}, & .${_gridClasses.gridClasses['cell--pinnedRight']}`]: {
|
|
625
639
|
position: 'sticky',
|
|
626
640
|
zIndex: 3,
|
|
627
|
-
background: 'var(--DataGrid-pinnedBackground)'
|
|
641
|
+
background: 'var(--DataGrid-pinnedBackground)',
|
|
642
|
+
'&.Mui-selected': {
|
|
643
|
+
backgroundColor: pinnedSelectedBackgroundColor
|
|
644
|
+
}
|
|
628
645
|
},
|
|
629
646
|
[`& .${_gridClasses.gridClasses.virtualScrollerContent} .${_gridClasses.gridClasses.row}`]: {
|
|
630
|
-
'&:hover':
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
}
|
|
634
|
-
},
|
|
635
|
-
[`&.Mui-selected`]: {
|
|
636
|
-
[`& .${_gridClasses.gridClasses['cell--pinnedLeft']}, & .${_gridClasses.gridClasses['cell--pinnedRight']}`]: {
|
|
637
|
-
backgroundColor: pinnedSelectedBackground
|
|
638
|
-
},
|
|
639
|
-
'&:hover': {
|
|
640
|
-
[`& .${_gridClasses.gridClasses['cell--pinnedLeft']}, & .${_gridClasses.gridClasses['cell--pinnedRight']}`]: {
|
|
641
|
-
backgroundColor: pinnedSelectedHoverBackground
|
|
642
|
-
}
|
|
643
|
-
}
|
|
644
|
-
}
|
|
647
|
+
'&:hover': pinnedHoverStyles,
|
|
648
|
+
'&.Mui-selected': pinnedSelectedStyles,
|
|
649
|
+
'&.Mui-selected:hover': pinnedSelectedHoverStyles
|
|
645
650
|
},
|
|
646
651
|
[`& .${_gridClasses.gridClasses.cellOffsetLeft}`]: {
|
|
647
652
|
flex: '0 0 auto',
|
|
@@ -754,4 +759,8 @@ function blend(background, overlay, opacity, gamma = 1) {
|
|
|
754
759
|
type: 'rgb',
|
|
755
760
|
values: rgb
|
|
756
761
|
});
|
|
762
|
+
}
|
|
763
|
+
const removeOpacity = color => `rgb(from ${color} r g b / 1)`;
|
|
764
|
+
function blendCssVars(background, overlay, opacity) {
|
|
765
|
+
return `color-mix(in srgb,${background}, ${removeOpacity(overlay)} calc(${opacity} * 100%))`;
|
|
757
766
|
}
|
|
@@ -52,7 +52,7 @@ const GridToolbarContainer = exports.GridToolbarContainer = /*#__PURE__*/React.f
|
|
|
52
52
|
}
|
|
53
53
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(GridToolbarContainerRoot, (0, _extends2.default)({
|
|
54
54
|
ref: ref,
|
|
55
|
-
className: (0, _clsx.default)(
|
|
55
|
+
className: (0, _clsx.default)(classes.root, className),
|
|
56
56
|
ownerState: rootProps
|
|
57
57
|
}, other, {
|
|
58
58
|
children: children
|