@mui/x-data-grid 9.0.3 → 9.1.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 +220 -0
- package/LICENSE +2 -0
- package/components/base/GridOverlays.js +1 -2
- package/components/base/GridOverlays.mjs +1 -2
- package/hooks/features/filter/gridFilterSelector.js +2 -1
- package/hooks/features/filter/gridFilterSelector.mjs +2 -1
- package/hooks/features/rows/gridRowsUtils.js +3 -1
- package/hooks/features/rows/gridRowsUtils.mjs +3 -1
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/locales/itIT.js +18 -19
- package/locales/itIT.mjs +18 -19
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,225 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 9.1.0
|
|
4
|
+
|
|
5
|
+
_May 8, 2026_
|
|
6
|
+
|
|
7
|
+
We'd like to extend a big thank you to the 14 contributors who made this release possible. Here are some highlights ✨:
|
|
8
|
+
|
|
9
|
+
- ⚡️ Add a WebGL renderer to the [Scatter chart](https://mui.com/x/react-charts/scatter/#webgl-renderer), and apply the same WebGL performance patterns to the candlestick and heatmap [Premium]
|
|
10
|
+
- 🐞 Bugfixes
|
|
11
|
+
- 📚 Documentation improvements
|
|
12
|
+
|
|
13
|
+
Special thanks go out to these community members for their valuable contributions:
|
|
14
|
+
@Anexus5919, @gaetanodanelli, @imazizbohra, @mustafajw07
|
|
15
|
+
|
|
16
|
+
The following team members contributed to this release:
|
|
17
|
+
@alexfauquette, @brijeshb42, @flaviendelangle, @JCQuintas, @LukasTy, @mapache-salvaje, @MBilalShafi, @michelengelen, @oliviertassinari, @rita-codes
|
|
18
|
+
|
|
19
|
+
### Data Grid
|
|
20
|
+
|
|
21
|
+
#### `@mui/x-data-grid@9.1.0`
|
|
22
|
+
|
|
23
|
+
- [DataGrid] Fix accessibility violation in detail panel toggle column header (#22178) @michelengelen
|
|
24
|
+
- [DataGrid] Fix active filter detection for array values (#22340) @MBilalShafi
|
|
25
|
+
- [DataGrid] Fix crash when grouping/tree-data values match `Object.prototype` property names (#22312) @LukasTy
|
|
26
|
+
- [DataGrid] Position overlays below top pinned rows (#22341) @MBilalShafi
|
|
27
|
+
- [l10n] Improve Italian (it-IT) locale (#22290) @gaetanodanelli
|
|
28
|
+
|
|
29
|
+
#### `@mui/x-data-grid-pro@9.1.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
30
|
+
|
|
31
|
+
Same changes as in `@mui/x-data-grid@9.1.0`, plus:
|
|
32
|
+
|
|
33
|
+
- [DataGridPro] Fix column unpin restoring stale position after reorder (#22250) @michelengelen
|
|
34
|
+
|
|
35
|
+
#### `@mui/x-data-grid-premium@9.1.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
36
|
+
|
|
37
|
+
Same changes as in `@mui/x-data-grid-pro@9.1.0`, plus:
|
|
38
|
+
|
|
39
|
+
- [DataGridPremium] Fix aggregation column header title truncation without ellipsis (#22248) @michelengelen
|
|
40
|
+
|
|
41
|
+
### Date and Time Pickers
|
|
42
|
+
|
|
43
|
+
#### `@mui/x-date-pickers@9.1.0`
|
|
44
|
+
|
|
45
|
+
- [pickers] Fix duplicate hour label in `MultiSectionDigitalClock` on DST day (#22110) @LukasTy
|
|
46
|
+
- [l10n] Improve Italian (it-IT) locale (#22290) @gaetanodanelli
|
|
47
|
+
|
|
48
|
+
#### `@mui/x-date-pickers-pro@9.1.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
49
|
+
|
|
50
|
+
Same changes as in `@mui/x-date-pickers@9.1.0`.
|
|
51
|
+
|
|
52
|
+
### Charts
|
|
53
|
+
|
|
54
|
+
#### `@mui/x-charts@9.1.0`
|
|
55
|
+
|
|
56
|
+
- [charts] Add `ChartsAxisHighlightValue` component (#21803) @Copilot
|
|
57
|
+
- [charts] Create `ChartsRadialAxisHighlight` (#22241) @alexfauquette
|
|
58
|
+
- [charts] Remove useless extends (#22313) @alexfauquette
|
|
59
|
+
- [charts] Use `PolarAxisConfig` in polar plugin internals (#22315) @alexfauquette
|
|
60
|
+
|
|
61
|
+
#### `@mui/x-charts-pro@9.1.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
62
|
+
|
|
63
|
+
Same changes as in `@mui/x-charts@9.1.0`.
|
|
64
|
+
|
|
65
|
+
#### `@mui/x-charts-premium@9.1.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
66
|
+
|
|
67
|
+
Same changes as in `@mui/x-charts-pro@9.1.0`, plus:
|
|
68
|
+
|
|
69
|
+
- [charts-premium] Add WebGL renderer to `ScatterChartPremium` (#22157) @JCQuintas
|
|
70
|
+
- [charts-premium] Add highlight to the `RadialLineChart` (#22156) @alexfauquette
|
|
71
|
+
- [charts-premium] Apply WebGL perf patterns to candlestick + heatmap (#22223) @JCQuintas
|
|
72
|
+
- [charts-premium] Introduce the `RadialBarChart` (#22268) @alexfauquette
|
|
73
|
+
|
|
74
|
+
### Tree View
|
|
75
|
+
|
|
76
|
+
#### `@mui/x-tree-view@9.1.0`
|
|
77
|
+
|
|
78
|
+
- [tree view] Fix stale Tree View `apiRef` after keyed remount (#22342) @MBilalShafi
|
|
79
|
+
|
|
80
|
+
#### `@mui/x-tree-view-pro@9.1.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
81
|
+
|
|
82
|
+
Same changes as in `@mui/x-tree-view@9.1.0`.
|
|
83
|
+
|
|
84
|
+
### Scheduler
|
|
85
|
+
|
|
86
|
+
#### `@mui/x-scheduler@9.0.0-alpha.5`
|
|
87
|
+
|
|
88
|
+
- [scheduler] Make `EventItem` interactive by integrating button props for keyboard accessibility (#22160) @mustafajw07
|
|
89
|
+
- [scheduler] Migrate color switch to Base UI `ToggleGroup` (#22254) @flaviendelangle
|
|
90
|
+
- [scheduler] Rename Scheduler headless packages (#22273) @rita-codes
|
|
91
|
+
- [scheduler] Use TreeView for the resource sidebar (#22261) @flaviendelangle
|
|
92
|
+
- [scheduler] Use fieldset/legend instead of headings for form sections in the event dialog (#22095) @Anexus5919
|
|
93
|
+
- [scheduler] Added `position: relative` for consistent layout (#22284) @mustafajw07
|
|
94
|
+
- [l10n] Improve Italian (it-IT) locale (#22290) @gaetanodanelli
|
|
95
|
+
|
|
96
|
+
#### `@mui/x-scheduler-premium@9.0.0-alpha.5` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
97
|
+
|
|
98
|
+
Same changes as in `@mui/x-scheduler@9.0.0-alpha.5`, plus:
|
|
99
|
+
|
|
100
|
+
- [scheduler] Replace per-view headers with a generic `EventTimelinePremiumHeader` in the `EventTimeline` (#22222) @rita-codes
|
|
101
|
+
|
|
102
|
+
### Codemod
|
|
103
|
+
|
|
104
|
+
#### `@mui/x-codemod@9.1.0`
|
|
105
|
+
|
|
106
|
+
Internal changes.
|
|
107
|
+
|
|
108
|
+
### Docs
|
|
109
|
+
|
|
110
|
+
- [docs] Migrate `FlightPicker` overview demo to v9 `slotProps` shape (#22272) @LukasTy
|
|
111
|
+
- [docs] Standardize Scheduler docs style and formatting (#22161) @mapache-salvaje
|
|
112
|
+
- [docs] Add feedback form to the scheduler docs (#22237) @rita-codes
|
|
113
|
+
- [docs] Fix `GridToolbarCustom` demo crash in DataGrid (#21950) @MBilalShafi
|
|
114
|
+
- [docs] Do not resolve axes in charts (#22307) @alexfauquette
|
|
115
|
+
- [docs] Fix no longer valid link (#22371) @LukasTy
|
|
116
|
+
- [docs] Replace broken CodeSandbox iframes in migration guides (#22352) @LukasTy
|
|
117
|
+
|
|
118
|
+
### Core
|
|
119
|
+
|
|
120
|
+
- [code-infra] Bump browser `testTimeout` to absorb React 19 slowness (#22236) @LukasTy
|
|
121
|
+
- [code-infra] Use vale rules from code-infra package (#22256) @brijeshb42
|
|
122
|
+
- [code-infra] Fix broken valelint and docs build (#22362) @LukasTy
|
|
123
|
+
- [internal] Prepare renaming LICENSE file to LICENSE.md (#22055) @imazizbohra
|
|
124
|
+
- [internal] Remove outdated .woff files (#22286) @oliviertassinari
|
|
125
|
+
- [internal] Replace Codspeed with `@mui/internal-benchmark` for charts (#22243) @JCQuintas
|
|
126
|
+
|
|
127
|
+
### Miscellaneous
|
|
128
|
+
|
|
129
|
+
- [internal-gestures] Add passive option to `TurnWheelGesture` (#22349) @JCQuintas
|
|
130
|
+
- [internal-gestures] Enforce pointer-type filter in `ShadowRoot` branch (#22327) @JCQuintas
|
|
131
|
+
- [internal-gestures] Improve passive event listener handling (#22329) @JCQuintas
|
|
132
|
+
- [internal-gestures] Inline wheel-delta clamp per axis (#22331) @JCQuintas
|
|
133
|
+
- [internal-gestures] Return read-only pointer map without copy (#22330) @JCQuintas
|
|
134
|
+
- [internal-gestures] Track multi-tap reset timeout to prevent leak (#22326) @JCQuintas
|
|
135
|
+
|
|
136
|
+
## 9.0.4
|
|
137
|
+
|
|
138
|
+
_Apr 28, 2026_
|
|
139
|
+
|
|
140
|
+
We'd like to extend a big thank you to the 4 contributors who made this release possible. Here are some highlights ✨:
|
|
141
|
+
|
|
142
|
+
- Fix Pickers previous (v9.0.3) release ensuring the latest `@mui/x-internals` version usage
|
|
143
|
+
|
|
144
|
+
The following team members contributed to this release:
|
|
145
|
+
@alexfauquette, @JCQuintas, @LukasTy, @mj12albert
|
|
146
|
+
|
|
147
|
+
### Data Grid
|
|
148
|
+
|
|
149
|
+
#### `@mui/x-data-grid@9.0.4`
|
|
150
|
+
|
|
151
|
+
Internal changes.
|
|
152
|
+
|
|
153
|
+
#### `@mui/x-data-grid-pro@9.0.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
154
|
+
|
|
155
|
+
Same changes as in `@mui/x-data-grid@9.0.4`.
|
|
156
|
+
|
|
157
|
+
#### `@mui/x-data-grid-premium@9.0.4` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
158
|
+
|
|
159
|
+
Same changes as in `@mui/x-data-grid-pro@9.0.4`.
|
|
160
|
+
|
|
161
|
+
### Date and Time Pickers
|
|
162
|
+
|
|
163
|
+
#### `@mui/x-date-pickers@9.0.4`
|
|
164
|
+
|
|
165
|
+
Internal changes.
|
|
166
|
+
|
|
167
|
+
#### `@mui/x-date-pickers-pro@9.0.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
168
|
+
|
|
169
|
+
Same changes as in `@mui/x-date-pickers@9.0.4`.
|
|
170
|
+
|
|
171
|
+
### Charts
|
|
172
|
+
|
|
173
|
+
#### `@mui/x-charts@9.0.4`
|
|
174
|
+
|
|
175
|
+
- [charts] Exclude hidden series and items from keyboard navigation (alt approach) (#22221) @JCQuintas
|
|
176
|
+
- [charts] Fix line interaction with `area` and `conectNulls` (#22227) @alexfauquette
|
|
177
|
+
- [charts] Implement the continuous case of `getAxisIndex` for rotation axis (#22230) @alexfauquette
|
|
178
|
+
|
|
179
|
+
#### `@mui/x-charts-pro@9.0.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
180
|
+
|
|
181
|
+
Same changes as in `@mui/x-charts@9.0.4`.
|
|
182
|
+
|
|
183
|
+
#### `@mui/x-charts-premium@9.0.4` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
184
|
+
|
|
185
|
+
Same changes as in `@mui/x-charts-pro@9.0.4` plus:
|
|
186
|
+
|
|
187
|
+
- [charts-premium] Add `showMark` and `shape` properties to radial line (#22226) @alexfauquette
|
|
188
|
+
|
|
189
|
+
### Tree View
|
|
190
|
+
|
|
191
|
+
#### `@mui/x-tree-view@9.0.4`
|
|
192
|
+
|
|
193
|
+
Internal changes.
|
|
194
|
+
|
|
195
|
+
#### `@mui/x-tree-view-pro@9.0.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
196
|
+
|
|
197
|
+
Same changes as in `@mui/x-tree-view@9.0.4`.
|
|
198
|
+
|
|
199
|
+
### Scheduler
|
|
200
|
+
|
|
201
|
+
#### `@mui/x-scheduler@9.0.4`
|
|
202
|
+
|
|
203
|
+
Internal changes.
|
|
204
|
+
|
|
205
|
+
#### `@mui/x-scheduler-premium@9.0.4` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
206
|
+
|
|
207
|
+
Same changes as in `@mui/x-scheduler@9.0.4`.
|
|
208
|
+
|
|
209
|
+
### Codemod
|
|
210
|
+
|
|
211
|
+
#### `@mui/x-codemod@9.0.4`
|
|
212
|
+
|
|
213
|
+
Internal changes.
|
|
214
|
+
|
|
215
|
+
### Docs
|
|
216
|
+
|
|
217
|
+
- [docs] Update WCAG links (#22234) @mj12albert
|
|
218
|
+
|
|
219
|
+
### Core
|
|
220
|
+
|
|
221
|
+
- [code-infra] Avoid overriding `renovate` `ignoredPaths` (#22228) @LukasTy
|
|
222
|
+
|
|
3
223
|
## 9.0.3
|
|
4
224
|
|
|
5
225
|
_Apr 27, 2026_
|
package/LICENSE
CHANGED
|
@@ -31,8 +31,7 @@ const GridOverlayWrapperRoot = (0, _styles.styled)('div', {
|
|
|
31
31
|
loadingOverlayVariant !== 'skeleton' ? {
|
|
32
32
|
position: 'sticky',
|
|
33
33
|
// To stay in place while scrolling
|
|
34
|
-
top: 'var(--DataGrid-
|
|
35
|
-
// TODO: take pinned rows into account
|
|
34
|
+
top: 'var(--DataGrid-topContainerHeight)',
|
|
36
35
|
left: 0,
|
|
37
36
|
right: `${right}px`,
|
|
38
37
|
width: 0,
|
|
@@ -23,8 +23,7 @@ const GridOverlayWrapperRoot = styled('div', {
|
|
|
23
23
|
loadingOverlayVariant !== 'skeleton' ? {
|
|
24
24
|
position: 'sticky',
|
|
25
25
|
// To stay in place while scrolling
|
|
26
|
-
top: 'var(--DataGrid-
|
|
27
|
-
// TODO: take pinned rows into account
|
|
26
|
+
top: 'var(--DataGrid-topContainerHeight)',
|
|
28
27
|
left: 0,
|
|
29
28
|
right: `${right}px`,
|
|
30
29
|
width: 0,
|
|
@@ -180,7 +180,8 @@ const gridFilterActiveItemsSelector = exports.gridFilterActiveItemsSelector = (0
|
|
|
180
180
|
if (!filterOperator) {
|
|
181
181
|
return false;
|
|
182
182
|
}
|
|
183
|
-
|
|
183
|
+
const hasFilterValue = Array.isArray(item.value) ? item.value.length > 0 : item.value != null && item.value?.toString() !== '';
|
|
184
|
+
return !filterOperator.InputComponent || hasFilterValue;
|
|
184
185
|
}));
|
|
185
186
|
/**
|
|
186
187
|
* @category Filtering
|
|
@@ -175,7 +175,8 @@ export const gridFilterActiveItemsSelector = createSelectorMemoized(gridFilterMo
|
|
|
175
175
|
if (!filterOperator) {
|
|
176
176
|
return false;
|
|
177
177
|
}
|
|
178
|
-
|
|
178
|
+
const hasFilterValue = Array.isArray(item.value) ? item.value.length > 0 : item.value != null && item.value?.toString() !== '';
|
|
179
|
+
return !filterOperator.InputComponent || hasFilterValue;
|
|
179
180
|
}));
|
|
180
181
|
/**
|
|
181
182
|
* @category Filtering
|
|
@@ -21,7 +21,9 @@ const buildRootGroup = () => ({
|
|
|
21
21
|
groupingKey: null,
|
|
22
22
|
isAutoGenerated: true,
|
|
23
23
|
children: [],
|
|
24
|
-
|
|
24
|
+
// Prototype-less so user-supplied grouping values like `'constructor'`
|
|
25
|
+
// or `'__proto__'` cannot collide with `Object.prototype` properties.
|
|
26
|
+
childrenFromPath: Object.create(null),
|
|
25
27
|
childrenExpanded: true,
|
|
26
28
|
parent: null
|
|
27
29
|
});
|
|
@@ -11,7 +11,9 @@ export const buildRootGroup = () => ({
|
|
|
11
11
|
groupingKey: null,
|
|
12
12
|
isAutoGenerated: true,
|
|
13
13
|
children: [],
|
|
14
|
-
|
|
14
|
+
// Prototype-less so user-supplied grouping values like `'constructor'`
|
|
15
|
+
// or `'__proto__'` cannot collide with `Object.prototype` properties.
|
|
16
|
+
childrenFromPath: Object.create(null),
|
|
15
17
|
childrenExpanded: true,
|
|
16
18
|
parent: null
|
|
17
19
|
});
|
package/index.js
CHANGED
package/index.mjs
CHANGED
package/locales/itIT.js
CHANGED
|
@@ -52,8 +52,7 @@ const itITGrid = {
|
|
|
52
52
|
columnsManagementNoColumns: 'Nessuna colonna',
|
|
53
53
|
columnsManagementShowHideAllText: 'Mostra/Nascondi Tutto',
|
|
54
54
|
columnsManagementReset: 'Resetta',
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
columnsManagementDeleteIconLabel: 'Cancella',
|
|
57
56
|
// Filter panel text
|
|
58
57
|
filterPanelAddFilter: 'Aggiungi un filtro',
|
|
59
58
|
filterPanelRemoveAll: 'Rimuovi filtri',
|
|
@@ -209,9 +208,9 @@ const itITGrid = {
|
|
|
209
208
|
pivotColumns: 'Colonne',
|
|
210
209
|
pivotValues: 'Valori',
|
|
211
210
|
pivotCloseButton: 'Chiudi impostazioni di trasposizione',
|
|
212
|
-
pivotSearchButton: 'Cerca
|
|
213
|
-
pivotSearchControlPlaceholder: 'Cerca
|
|
214
|
-
pivotSearchControlLabel: 'Cerca
|
|
211
|
+
pivotSearchButton: 'Cerca attributi',
|
|
212
|
+
pivotSearchControlPlaceholder: 'Cerca attributi',
|
|
213
|
+
pivotSearchControlLabel: 'Cerca attributi',
|
|
215
214
|
pivotSearchControlClear: 'Annulla ricerca',
|
|
216
215
|
pivotNoFields: 'Nessun attributo',
|
|
217
216
|
pivotMenuMoveUp: 'Sposta in alto',
|
|
@@ -280,18 +279,18 @@ const itITGrid = {
|
|
|
280
279
|
promptChangeGroupDescription: column => `Raggruppa per ${column}`,
|
|
281
280
|
promptChangeAggregationLabel: (column, aggregation) => `${column} (${aggregation})`,
|
|
282
281
|
promptChangeAggregationDescription: (column, aggregation) => `Aggrega ${column} (${aggregation})`,
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
282
|
+
promptChangeFilterLabel: (column, operator, value) => {
|
|
283
|
+
if (operator === 'is any of') {
|
|
284
|
+
return `${column} è uno tra: ${value}`;
|
|
285
|
+
}
|
|
286
|
+
return `${column} ${operator} ${value}`;
|
|
287
|
+
},
|
|
288
|
+
promptChangeFilterDescription: (column, operator, value) => {
|
|
289
|
+
if (operator === 'is any of') {
|
|
290
|
+
return `Filtra dove ${column} è uno tra: ${value}`;
|
|
291
|
+
}
|
|
292
|
+
return `Filtra dove ${column} ${operator} ${value}`;
|
|
293
|
+
},
|
|
295
294
|
promptChangeSortDescription: (column, direction) => `Ordina per ${column} (${direction})`,
|
|
296
295
|
promptChangePivotEnableLabel: 'Pivota',
|
|
297
296
|
promptChangePivotEnableDescription: 'Abilita pivoting',
|
|
@@ -299,7 +298,7 @@ const itITGrid = {
|
|
|
299
298
|
promptChangePivotColumnsDescription: (column, direction) => `${column}${direction ? ` (${direction})` : ''}`,
|
|
300
299
|
promptChangePivotRowsLabel: count => `Righe (${count})`,
|
|
301
300
|
promptChangePivotValuesLabel: count => `Valori (${count})`,
|
|
302
|
-
promptChangePivotValuesDescription: (column, aggregation) => `${column} (${aggregation})
|
|
303
|
-
|
|
301
|
+
promptChangePivotValuesDescription: (column, aggregation) => `${column} (${aggregation})`,
|
|
302
|
+
promptChangeChartsLabel: (dimensionsCount, valuesCount) => `Dimensioni (${dimensionsCount}), Valori (${valuesCount})`
|
|
304
303
|
};
|
|
305
304
|
const itIT = exports.itIT = (0, _getGridLocalization.getGridLocalization)(itITGrid);
|
package/locales/itIT.mjs
CHANGED
|
@@ -46,8 +46,7 @@ const itITGrid = {
|
|
|
46
46
|
columnsManagementNoColumns: 'Nessuna colonna',
|
|
47
47
|
columnsManagementShowHideAllText: 'Mostra/Nascondi Tutto',
|
|
48
48
|
columnsManagementReset: 'Resetta',
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
columnsManagementDeleteIconLabel: 'Cancella',
|
|
51
50
|
// Filter panel text
|
|
52
51
|
filterPanelAddFilter: 'Aggiungi un filtro',
|
|
53
52
|
filterPanelRemoveAll: 'Rimuovi filtri',
|
|
@@ -203,9 +202,9 @@ const itITGrid = {
|
|
|
203
202
|
pivotColumns: 'Colonne',
|
|
204
203
|
pivotValues: 'Valori',
|
|
205
204
|
pivotCloseButton: 'Chiudi impostazioni di trasposizione',
|
|
206
|
-
pivotSearchButton: 'Cerca
|
|
207
|
-
pivotSearchControlPlaceholder: 'Cerca
|
|
208
|
-
pivotSearchControlLabel: 'Cerca
|
|
205
|
+
pivotSearchButton: 'Cerca attributi',
|
|
206
|
+
pivotSearchControlPlaceholder: 'Cerca attributi',
|
|
207
|
+
pivotSearchControlLabel: 'Cerca attributi',
|
|
209
208
|
pivotSearchControlClear: 'Annulla ricerca',
|
|
210
209
|
pivotNoFields: 'Nessun attributo',
|
|
211
210
|
pivotMenuMoveUp: 'Sposta in alto',
|
|
@@ -274,18 +273,18 @@ const itITGrid = {
|
|
|
274
273
|
promptChangeGroupDescription: column => `Raggruppa per ${column}`,
|
|
275
274
|
promptChangeAggregationLabel: (column, aggregation) => `${column} (${aggregation})`,
|
|
276
275
|
promptChangeAggregationDescription: (column, aggregation) => `Aggrega ${column} (${aggregation})`,
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
276
|
+
promptChangeFilterLabel: (column, operator, value) => {
|
|
277
|
+
if (operator === 'is any of') {
|
|
278
|
+
return `${column} è uno tra: ${value}`;
|
|
279
|
+
}
|
|
280
|
+
return `${column} ${operator} ${value}`;
|
|
281
|
+
},
|
|
282
|
+
promptChangeFilterDescription: (column, operator, value) => {
|
|
283
|
+
if (operator === 'is any of') {
|
|
284
|
+
return `Filtra dove ${column} è uno tra: ${value}`;
|
|
285
|
+
}
|
|
286
|
+
return `Filtra dove ${column} ${operator} ${value}`;
|
|
287
|
+
},
|
|
289
288
|
promptChangeSortDescription: (column, direction) => `Ordina per ${column} (${direction})`,
|
|
290
289
|
promptChangePivotEnableLabel: 'Pivota',
|
|
291
290
|
promptChangePivotEnableDescription: 'Abilita pivoting',
|
|
@@ -293,7 +292,7 @@ const itITGrid = {
|
|
|
293
292
|
promptChangePivotColumnsDescription: (column, direction) => `${column}${direction ? ` (${direction})` : ''}`,
|
|
294
293
|
promptChangePivotRowsLabel: count => `Righe (${count})`,
|
|
295
294
|
promptChangePivotValuesLabel: count => `Valori (${count})`,
|
|
296
|
-
promptChangePivotValuesDescription: (column, aggregation) => `${column} (${aggregation})
|
|
297
|
-
|
|
295
|
+
promptChangePivotValuesDescription: (column, aggregation) => `${column} (${aggregation})`,
|
|
296
|
+
promptChangeChartsLabel: (dimensionsCount, valuesCount) => `Dimensioni (${dimensionsCount}), Valori (${valuesCount})`
|
|
298
297
|
};
|
|
299
298
|
export const itIT = getGridLocalization(itITGrid);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid",
|
|
3
|
-
"version": "9.0
|
|
3
|
+
"version": "9.1.0",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "The Community plan edition of the MUI X Data Grid components.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"clsx": "^2.1.1",
|
|
43
43
|
"prop-types": "^15.8.1",
|
|
44
44
|
"use-sync-external-store": "^1.6.0",
|
|
45
|
-
"@mui/x-internals": "^9.
|
|
46
|
-
"@mui/x-virtualizer": "9.0.0-alpha.
|
|
45
|
+
"@mui/x-internals": "^9.1.0",
|
|
46
|
+
"@mui/x-virtualizer": "9.0.0-alpha.5"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@emotion/react": "^11.9.0",
|