@mui/x-data-grid 6.19.3 → 6.19.4
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 +56 -0
- package/components/GridPagination.d.ts +1 -1
- package/components/GridPagination.js +8 -1
- package/components/cell/GridActionsCell.js +3 -3
- package/components/cell/GridActionsCellItem.d.ts +13 -1
- package/components/cell/GridActionsCellItem.js +27 -15
- package/components/containers/GridRootStyles.js +6 -0
- package/hooks/features/export/useGridPrintExport.js +3 -1
- package/hooks/features/filter/gridFilterUtils.js +15 -22
- package/index.js +1 -1
- package/legacy/components/GridPagination.js +8 -1
- package/legacy/components/cell/GridActionsCell.js +3 -3
- package/legacy/components/cell/GridActionsCellItem.js +30 -17
- package/legacy/components/containers/GridRootStyles.js +5 -1
- package/legacy/hooks/features/export/useGridPrintExport.js +11 -7
- package/legacy/hooks/features/filter/gridFilterUtils.js +11 -14
- package/legacy/index.js +1 -1
- package/legacy/locales/daDK.js +12 -12
- package/locales/daDK.js +12 -12
- package/models/props/DataGridProps.d.ts +1 -1
- package/modern/components/GridPagination.js +8 -1
- package/modern/components/cell/GridActionsCell.js +3 -3
- package/modern/components/cell/GridActionsCellItem.js +27 -15
- package/modern/components/containers/GridRootStyles.js +6 -0
- package/modern/hooks/features/export/useGridPrintExport.js +3 -1
- package/modern/hooks/features/filter/gridFilterUtils.js +15 -22
- package/modern/index.js +1 -1
- package/modern/locales/daDK.js +12 -12
- package/node/components/GridPagination.js +8 -1
- package/node/components/cell/GridActionsCell.js +3 -3
- package/node/components/cell/GridActionsCellItem.js +27 -15
- package/node/components/containers/GridRootStyles.js +6 -0
- package/node/hooks/features/export/useGridPrintExport.js +3 -1
- package/node/hooks/features/filter/gridFilterUtils.js +15 -21
- package/node/index.js +1 -1
- package/node/locales/daDK.js +12 -12
- package/package.json +1 -1
package/node/locales/daDK.js
CHANGED
|
@@ -17,8 +17,8 @@ const daDKGrid = {
|
|
|
17
17
|
toolbarDensityStandard: 'Standard',
|
|
18
18
|
toolbarDensityComfortable: 'Luftig',
|
|
19
19
|
// Columns selector toolbar button text
|
|
20
|
-
toolbarColumns: '
|
|
21
|
-
toolbarColumnsLabel: 'Vælg
|
|
20
|
+
toolbarColumns: 'Kolonner',
|
|
21
|
+
toolbarColumnsLabel: 'Vælg kolonner',
|
|
22
22
|
// Filters toolbar button text
|
|
23
23
|
toolbarFilters: 'Filtre',
|
|
24
24
|
toolbarFiltersLabel: 'Vis filtre',
|
|
@@ -46,12 +46,12 @@ const daDKGrid = {
|
|
|
46
46
|
filterPanelRemoveAll: 'Fjern alle',
|
|
47
47
|
filterPanelDeleteIconLabel: 'Slet',
|
|
48
48
|
filterPanelLogicOperator: 'Logisk operator',
|
|
49
|
-
filterPanelOperator: '
|
|
49
|
+
filterPanelOperator: 'Operator',
|
|
50
50
|
filterPanelOperatorAnd: 'Og',
|
|
51
51
|
filterPanelOperatorOr: 'Eller',
|
|
52
|
-
filterPanelColumns: '
|
|
52
|
+
filterPanelColumns: 'Kolonner',
|
|
53
53
|
filterPanelInputLabel: 'Værdi',
|
|
54
|
-
filterPanelInputPlaceholder: '
|
|
54
|
+
filterPanelInputPlaceholder: 'Filterværdi',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: 'indeholder',
|
|
57
57
|
filterOperatorEquals: 'lig med',
|
|
@@ -98,10 +98,10 @@ const daDKGrid = {
|
|
|
98
98
|
filterValueFalse: 'negativ',
|
|
99
99
|
// Column menu text
|
|
100
100
|
columnMenuLabel: 'Menu',
|
|
101
|
-
columnMenuShowColumns: 'Vis
|
|
101
|
+
columnMenuShowColumns: 'Vis kolonner',
|
|
102
102
|
columnMenuManageColumns: 'Administrer kolonner',
|
|
103
|
-
columnMenuFilter: '
|
|
104
|
-
columnMenuHideColumn: 'Skjul',
|
|
103
|
+
columnMenuFilter: 'Filtrer',
|
|
104
|
+
columnMenuHideColumn: 'Skjul kolonne',
|
|
105
105
|
columnMenuUnsort: 'Fjern sortering',
|
|
106
106
|
columnMenuSortAsc: 'Sorter stigende',
|
|
107
107
|
columnMenuSortDesc: 'Sorter faldende',
|
|
@@ -131,13 +131,13 @@ const daDKGrid = {
|
|
|
131
131
|
pinToRight: 'Fastgør til højre',
|
|
132
132
|
unpin: 'Frigiv',
|
|
133
133
|
// Tree Data
|
|
134
|
-
treeDataGroupingHeaderName: '
|
|
134
|
+
treeDataGroupingHeaderName: 'Gruppe',
|
|
135
135
|
treeDataExpand: 'Vis underelementer',
|
|
136
136
|
treeDataCollapse: 'Skjul underelementer',
|
|
137
137
|
// Grouping columns
|
|
138
|
-
groupingColumnHeaderName: '
|
|
138
|
+
groupingColumnHeaderName: 'Gruppe',
|
|
139
139
|
groupColumn: name => `Gruppér efter ${name}`,
|
|
140
|
-
unGroupColumn: name => `Fjern
|
|
140
|
+
unGroupColumn: name => `Fjern gruppering efter ${name}`,
|
|
141
141
|
// Master/detail
|
|
142
142
|
detailPanelToggle: 'Udvid/kollaps detaljepanel',
|
|
143
143
|
expandDetailPanel: 'Udvid',
|
|
@@ -145,7 +145,7 @@ const daDKGrid = {
|
|
|
145
145
|
// Row reordering text
|
|
146
146
|
rowReorderingHeaderName: 'Omarrangering af rækker',
|
|
147
147
|
// Aggregation
|
|
148
|
-
aggregationMenuItemHeader: '
|
|
148
|
+
aggregationMenuItemHeader: 'Aggregering',
|
|
149
149
|
aggregationFunctionLabelSum: 'sum',
|
|
150
150
|
aggregationFunctionLabelAvg: 'gns',
|
|
151
151
|
aggregationFunctionLabelMin: 'min',
|