@mui/x-date-pickers 5.0.18 → 5.0.19
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 +24 -0
- package/index.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/locales/huHU.js +65 -0
- package/legacy/locales/index.js +1 -0
- package/locales/huHU.d.ts +34 -0
- package/locales/huHU.js +51 -0
- package/locales/index.d.ts +1 -0
- package/locales/index.js +1 -0
- package/modern/index.js +1 -1
- package/modern/locales/huHU.js +47 -0
- package/modern/locales/index.js +1 -0
- package/node/index.js +1 -1
- package/node/locales/huHU.js +60 -0
- package/node/locales/index.js +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 5.17.24
|
|
7
|
+
|
|
8
|
+
_Feb 16, 2023_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🌍 Add Hungarian (hu-HU) locale
|
|
13
|
+
- 🐞 Bugfixes
|
|
14
|
+
|
|
15
|
+
### `@mui/x-data-grid@v5.17.24` / `@mui/x-data-grid-pro@v5.17.24` / `@mui/x-data-grid-premium@v5.17.24`
|
|
16
|
+
|
|
17
|
+
#### Changes
|
|
18
|
+
|
|
19
|
+
- [DataGrid] Allow to pass props to the `TrapFocus` inside the panel wrapper (#7897) @Vivek-Prajapatii
|
|
20
|
+
- [DataGrid] Avoid unnecessary rerenders after `updateRows` (#7945) @cherniavskii
|
|
21
|
+
- [DataGridPro] Change cursor when dragging a column (#7878) @sai6855
|
|
22
|
+
- [DataGridPremium] Fix `leafField` to have correct focus value (#7959) @MBilalShafi
|
|
23
|
+
|
|
24
|
+
### `@mui/x-date-pickers@v5.0.19` / `@mui/x-date-pickers-pro@v5.0.19`
|
|
25
|
+
|
|
26
|
+
#### Changes
|
|
27
|
+
|
|
28
|
+
- [l10n] Add Hungarian (hu-HU) locale (#7796) @noherczeg
|
|
29
|
+
|
|
6
30
|
## 5.17.23
|
|
7
31
|
|
|
8
32
|
_Feb 9, 2023_
|
package/index.js
CHANGED
package/legacy/index.js
CHANGED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { getPickersLocalization } from './utils/getPickersLocalization'; // maps TimeView to its translation
|
|
2
|
+
|
|
3
|
+
var timeViews = {
|
|
4
|
+
hours: 'Óra',
|
|
5
|
+
minutes: 'Perc',
|
|
6
|
+
seconds: 'Másodperc'
|
|
7
|
+
}; // maps PickersToolbar["viewType"] to its translation
|
|
8
|
+
|
|
9
|
+
var pickerViews = {
|
|
10
|
+
calendar: 'naptár',
|
|
11
|
+
clock: 'óra'
|
|
12
|
+
};
|
|
13
|
+
var huHUPickers = {
|
|
14
|
+
// Calendar navigation
|
|
15
|
+
previousMonth: 'Előző hónap',
|
|
16
|
+
nextMonth: 'Következő hónap',
|
|
17
|
+
// View navigation
|
|
18
|
+
openPreviousView: 'Előző nézet megnyitása',
|
|
19
|
+
openNextView: 'Következő nézet megnyitása',
|
|
20
|
+
calendarViewSwitchingButtonAriaLabel: function calendarViewSwitchingButtonAriaLabel(view) {
|
|
21
|
+
return view === 'year' ? 'az évválasztó már nyitva, váltson a naptárnézetre' : 'a naptárnézet már nyitva, váltson az évválasztóra';
|
|
22
|
+
},
|
|
23
|
+
inputModeToggleButtonAriaLabel: function inputModeToggleButtonAriaLabel(isKeyboardInputOpen, viewType) {
|
|
24
|
+
return isKeyboardInputOpen ? "sz\xF6veges beviteli n\xE9zet akt\xEDv, v\xE1lt\xE1s ".concat(pickerViews[viewType], " n\xE9zetre") : "".concat(pickerViews[viewType], " beviteli n\xE9zet akt\xEDv, v\xE1lt\xE1s sz\xF6veges beviteli n\xE9zetre");
|
|
25
|
+
},
|
|
26
|
+
// DateRange placeholders
|
|
27
|
+
start: 'Kezdő dátum',
|
|
28
|
+
end: 'Záró dátum',
|
|
29
|
+
// Action bar
|
|
30
|
+
cancelButtonLabel: 'Mégse',
|
|
31
|
+
clearButtonLabel: 'Törlés',
|
|
32
|
+
okButtonLabel: 'OK',
|
|
33
|
+
todayButtonLabel: 'Ma',
|
|
34
|
+
// Toolbar titles
|
|
35
|
+
datePickerDefaultToolbarTitle: 'Dátum kiválasztása',
|
|
36
|
+
dateTimePickerDefaultToolbarTitle: 'Dátum és idő kiválasztása',
|
|
37
|
+
timePickerDefaultToolbarTitle: 'Idő kiválasztása',
|
|
38
|
+
dateRangePickerDefaultToolbarTitle: 'Dátumhatárok kiválasztása',
|
|
39
|
+
// Clock labels
|
|
40
|
+
clockLabelText: function clockLabelText(view, time, adapter) {
|
|
41
|
+
var _timeViews$view;
|
|
42
|
+
|
|
43
|
+
return "".concat((_timeViews$view = timeViews[view]) != null ? _timeViews$view : view, " kiv\xE1laszt\xE1sa. ").concat(time === null ? 'Nincs kiválasztva idő' : "A kiv\xE1lasztott id\u0151 ".concat(adapter.format(time, 'fullTime')));
|
|
44
|
+
},
|
|
45
|
+
hoursClockNumberText: function hoursClockNumberText(hours) {
|
|
46
|
+
return "".concat(hours, " ").concat(timeViews.hours.toLowerCase());
|
|
47
|
+
},
|
|
48
|
+
minutesClockNumberText: function minutesClockNumberText(minutes) {
|
|
49
|
+
return "".concat(minutes, " ").concat(timeViews.minutes.toLowerCase());
|
|
50
|
+
},
|
|
51
|
+
secondsClockNumberText: function secondsClockNumberText(seconds) {
|
|
52
|
+
return "".concat(seconds, " ").concat(timeViews.seconds.toLowerCase());
|
|
53
|
+
},
|
|
54
|
+
// Open picker labels
|
|
55
|
+
openDatePickerDialogue: function openDatePickerDialogue(value, utils) {
|
|
56
|
+
return value !== null && utils.isValid(value) ? "V\xE1lasszon d\xE1tumot, a kiv\xE1lasztott d\xE1tum: ".concat(utils.format(value, 'fullDate')) : 'Válasszon dátumot';
|
|
57
|
+
},
|
|
58
|
+
openTimePickerDialogue: function openTimePickerDialogue(value, utils) {
|
|
59
|
+
return value !== null && utils.isValid(value) ? "V\xE1lasszon id\u0151t, a kiv\xE1lasztott id\u0151: ".concat(utils.format(value, 'fullTime')) : 'Válasszon időt';
|
|
60
|
+
},
|
|
61
|
+
// Table labels
|
|
62
|
+
timeTableLabel: 'válasszon időt',
|
|
63
|
+
dateTableLabel: 'válasszon dátumot'
|
|
64
|
+
};
|
|
65
|
+
export var huHU = getPickersLocalization(huHUPickers);
|
package/legacy/locales/index.js
CHANGED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const huHU: {
|
|
2
|
+
components: {
|
|
3
|
+
MuiLocalizationProvider: {
|
|
4
|
+
defaultProps: {
|
|
5
|
+
localeText: {
|
|
6
|
+
previousMonth?: string | undefined;
|
|
7
|
+
nextMonth?: string | undefined;
|
|
8
|
+
openPreviousView?: string | undefined;
|
|
9
|
+
openNextView?: string | undefined;
|
|
10
|
+
cancelButtonLabel?: string | undefined;
|
|
11
|
+
clearButtonLabel?: string | undefined;
|
|
12
|
+
okButtonLabel?: string | undefined;
|
|
13
|
+
todayButtonLabel?: string | undefined;
|
|
14
|
+
start?: string | undefined;
|
|
15
|
+
end?: string | undefined;
|
|
16
|
+
calendarViewSwitchingButtonAriaLabel?: ((currentView: import("..").CalendarPickerView) => string) | undefined;
|
|
17
|
+
inputModeToggleButtonAriaLabel?: ((isKeyboardInputOpen: boolean, viewType: "calendar" | "clock") => string) | undefined;
|
|
18
|
+
clockLabelText?: ((view: import("..").ClockPickerView, time: any, adapter: import("../internals").MuiPickersAdapter<any>) => string) | undefined;
|
|
19
|
+
hoursClockNumberText?: ((hours: string) => string) | undefined;
|
|
20
|
+
minutesClockNumberText?: ((minutes: string) => string) | undefined;
|
|
21
|
+
secondsClockNumberText?: ((seconds: string) => string) | undefined;
|
|
22
|
+
openDatePickerDialogue?: ((date: any, utils: import("../internals").MuiPickersAdapter<any>) => string) | undefined;
|
|
23
|
+
openTimePickerDialogue?: ((date: any, utils: import("../internals").MuiPickersAdapter<any>) => string) | undefined;
|
|
24
|
+
timeTableLabel?: string | undefined;
|
|
25
|
+
dateTableLabel?: string | undefined;
|
|
26
|
+
datePickerDefaultToolbarTitle?: string | undefined;
|
|
27
|
+
dateTimePickerDefaultToolbarTitle?: string | undefined;
|
|
28
|
+
timePickerDefaultToolbarTitle?: string | undefined;
|
|
29
|
+
dateRangePickerDefaultToolbarTitle?: string | undefined;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
package/locales/huHU.js
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { getPickersLocalization } from './utils/getPickersLocalization'; // maps TimeView to its translation
|
|
2
|
+
|
|
3
|
+
const timeViews = {
|
|
4
|
+
hours: 'Óra',
|
|
5
|
+
minutes: 'Perc',
|
|
6
|
+
seconds: 'Másodperc'
|
|
7
|
+
}; // maps PickersToolbar["viewType"] to its translation
|
|
8
|
+
|
|
9
|
+
const pickerViews = {
|
|
10
|
+
calendar: 'naptár',
|
|
11
|
+
clock: 'óra'
|
|
12
|
+
};
|
|
13
|
+
const huHUPickers = {
|
|
14
|
+
// Calendar navigation
|
|
15
|
+
previousMonth: 'Előző hónap',
|
|
16
|
+
nextMonth: 'Következő hónap',
|
|
17
|
+
// View navigation
|
|
18
|
+
openPreviousView: 'Előző nézet megnyitása',
|
|
19
|
+
openNextView: 'Következő nézet megnyitása',
|
|
20
|
+
calendarViewSwitchingButtonAriaLabel: view => view === 'year' ? 'az évválasztó már nyitva, váltson a naptárnézetre' : 'a naptárnézet már nyitva, váltson az évválasztóra',
|
|
21
|
+
inputModeToggleButtonAriaLabel: (isKeyboardInputOpen, viewType) => isKeyboardInputOpen ? `szöveges beviteli nézet aktív, váltás ${pickerViews[viewType]} nézetre` : `${pickerViews[viewType]} beviteli nézet aktív, váltás szöveges beviteli nézetre`,
|
|
22
|
+
// DateRange placeholders
|
|
23
|
+
start: 'Kezdő dátum',
|
|
24
|
+
end: 'Záró dátum',
|
|
25
|
+
// Action bar
|
|
26
|
+
cancelButtonLabel: 'Mégse',
|
|
27
|
+
clearButtonLabel: 'Törlés',
|
|
28
|
+
okButtonLabel: 'OK',
|
|
29
|
+
todayButtonLabel: 'Ma',
|
|
30
|
+
// Toolbar titles
|
|
31
|
+
datePickerDefaultToolbarTitle: 'Dátum kiválasztása',
|
|
32
|
+
dateTimePickerDefaultToolbarTitle: 'Dátum és idő kiválasztása',
|
|
33
|
+
timePickerDefaultToolbarTitle: 'Idő kiválasztása',
|
|
34
|
+
dateRangePickerDefaultToolbarTitle: 'Dátumhatárok kiválasztása',
|
|
35
|
+
// Clock labels
|
|
36
|
+
clockLabelText: (view, time, adapter) => {
|
|
37
|
+
var _timeViews$view;
|
|
38
|
+
|
|
39
|
+
return `${(_timeViews$view = timeViews[view]) != null ? _timeViews$view : view} kiválasztása. ${time === null ? 'Nincs kiválasztva idő' : `A kiválasztott idő ${adapter.format(time, 'fullTime')}`}`;
|
|
40
|
+
},
|
|
41
|
+
hoursClockNumberText: hours => `${hours} ${timeViews.hours.toLowerCase()}`,
|
|
42
|
+
minutesClockNumberText: minutes => `${minutes} ${timeViews.minutes.toLowerCase()}`,
|
|
43
|
+
secondsClockNumberText: seconds => `${seconds} ${timeViews.seconds.toLowerCase()}`,
|
|
44
|
+
// Open picker labels
|
|
45
|
+
openDatePickerDialogue: (value, utils) => value !== null && utils.isValid(value) ? `Válasszon dátumot, a kiválasztott dátum: ${utils.format(value, 'fullDate')}` : 'Válasszon dátumot',
|
|
46
|
+
openTimePickerDialogue: (value, utils) => value !== null && utils.isValid(value) ? `Válasszon időt, a kiválasztott idő: ${utils.format(value, 'fullTime')}` : 'Válasszon időt',
|
|
47
|
+
// Table labels
|
|
48
|
+
timeTableLabel: 'válasszon időt',
|
|
49
|
+
dateTableLabel: 'válasszon dátumot'
|
|
50
|
+
};
|
|
51
|
+
export const huHU = getPickersLocalization(huHUPickers);
|
package/locales/index.d.ts
CHANGED
package/locales/index.js
CHANGED
package/modern/index.js
CHANGED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getPickersLocalization } from './utils/getPickersLocalization'; // maps TimeView to its translation
|
|
2
|
+
|
|
3
|
+
const timeViews = {
|
|
4
|
+
hours: 'Óra',
|
|
5
|
+
minutes: 'Perc',
|
|
6
|
+
seconds: 'Másodperc'
|
|
7
|
+
}; // maps PickersToolbar["viewType"] to its translation
|
|
8
|
+
|
|
9
|
+
const pickerViews = {
|
|
10
|
+
calendar: 'naptár',
|
|
11
|
+
clock: 'óra'
|
|
12
|
+
};
|
|
13
|
+
const huHUPickers = {
|
|
14
|
+
// Calendar navigation
|
|
15
|
+
previousMonth: 'Előző hónap',
|
|
16
|
+
nextMonth: 'Következő hónap',
|
|
17
|
+
// View navigation
|
|
18
|
+
openPreviousView: 'Előző nézet megnyitása',
|
|
19
|
+
openNextView: 'Következő nézet megnyitása',
|
|
20
|
+
calendarViewSwitchingButtonAriaLabel: view => view === 'year' ? 'az évválasztó már nyitva, váltson a naptárnézetre' : 'a naptárnézet már nyitva, váltson az évválasztóra',
|
|
21
|
+
inputModeToggleButtonAriaLabel: (isKeyboardInputOpen, viewType) => isKeyboardInputOpen ? `szöveges beviteli nézet aktív, váltás ${pickerViews[viewType]} nézetre` : `${pickerViews[viewType]} beviteli nézet aktív, váltás szöveges beviteli nézetre`,
|
|
22
|
+
// DateRange placeholders
|
|
23
|
+
start: 'Kezdő dátum',
|
|
24
|
+
end: 'Záró dátum',
|
|
25
|
+
// Action bar
|
|
26
|
+
cancelButtonLabel: 'Mégse',
|
|
27
|
+
clearButtonLabel: 'Törlés',
|
|
28
|
+
okButtonLabel: 'OK',
|
|
29
|
+
todayButtonLabel: 'Ma',
|
|
30
|
+
// Toolbar titles
|
|
31
|
+
datePickerDefaultToolbarTitle: 'Dátum kiválasztása',
|
|
32
|
+
dateTimePickerDefaultToolbarTitle: 'Dátum és idő kiválasztása',
|
|
33
|
+
timePickerDefaultToolbarTitle: 'Idő kiválasztása',
|
|
34
|
+
dateRangePickerDefaultToolbarTitle: 'Dátumhatárok kiválasztása',
|
|
35
|
+
// Clock labels
|
|
36
|
+
clockLabelText: (view, time, adapter) => `${timeViews[view] ?? view} kiválasztása. ${time === null ? 'Nincs kiválasztva idő' : `A kiválasztott idő ${adapter.format(time, 'fullTime')}`}`,
|
|
37
|
+
hoursClockNumberText: hours => `${hours} ${timeViews.hours.toLowerCase()}`,
|
|
38
|
+
minutesClockNumberText: minutes => `${minutes} ${timeViews.minutes.toLowerCase()}`,
|
|
39
|
+
secondsClockNumberText: seconds => `${seconds} ${timeViews.seconds.toLowerCase()}`,
|
|
40
|
+
// Open picker labels
|
|
41
|
+
openDatePickerDialogue: (value, utils) => value !== null && utils.isValid(value) ? `Válasszon dátumot, a kiválasztott dátum: ${utils.format(value, 'fullDate')}` : 'Válasszon dátumot',
|
|
42
|
+
openTimePickerDialogue: (value, utils) => value !== null && utils.isValid(value) ? `Válasszon időt, a kiválasztott idő: ${utils.format(value, 'fullTime')}` : 'Válasszon időt',
|
|
43
|
+
// Table labels
|
|
44
|
+
timeTableLabel: 'válasszon időt',
|
|
45
|
+
dateTableLabel: 'válasszon dátumot'
|
|
46
|
+
};
|
|
47
|
+
export const huHU = getPickersLocalization(huHUPickers);
|
package/modern/locales/index.js
CHANGED
package/node/index.js
CHANGED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.huHU = void 0;
|
|
7
|
+
|
|
8
|
+
var _getPickersLocalization = require("./utils/getPickersLocalization");
|
|
9
|
+
|
|
10
|
+
// maps TimeView to its translation
|
|
11
|
+
const timeViews = {
|
|
12
|
+
hours: 'Óra',
|
|
13
|
+
minutes: 'Perc',
|
|
14
|
+
seconds: 'Másodperc'
|
|
15
|
+
}; // maps PickersToolbar["viewType"] to its translation
|
|
16
|
+
|
|
17
|
+
const pickerViews = {
|
|
18
|
+
calendar: 'naptár',
|
|
19
|
+
clock: 'óra'
|
|
20
|
+
};
|
|
21
|
+
const huHUPickers = {
|
|
22
|
+
// Calendar navigation
|
|
23
|
+
previousMonth: 'Előző hónap',
|
|
24
|
+
nextMonth: 'Következő hónap',
|
|
25
|
+
// View navigation
|
|
26
|
+
openPreviousView: 'Előző nézet megnyitása',
|
|
27
|
+
openNextView: 'Következő nézet megnyitása',
|
|
28
|
+
calendarViewSwitchingButtonAriaLabel: view => view === 'year' ? 'az évválasztó már nyitva, váltson a naptárnézetre' : 'a naptárnézet már nyitva, váltson az évválasztóra',
|
|
29
|
+
inputModeToggleButtonAriaLabel: (isKeyboardInputOpen, viewType) => isKeyboardInputOpen ? `szöveges beviteli nézet aktív, váltás ${pickerViews[viewType]} nézetre` : `${pickerViews[viewType]} beviteli nézet aktív, váltás szöveges beviteli nézetre`,
|
|
30
|
+
// DateRange placeholders
|
|
31
|
+
start: 'Kezdő dátum',
|
|
32
|
+
end: 'Záró dátum',
|
|
33
|
+
// Action bar
|
|
34
|
+
cancelButtonLabel: 'Mégse',
|
|
35
|
+
clearButtonLabel: 'Törlés',
|
|
36
|
+
okButtonLabel: 'OK',
|
|
37
|
+
todayButtonLabel: 'Ma',
|
|
38
|
+
// Toolbar titles
|
|
39
|
+
datePickerDefaultToolbarTitle: 'Dátum kiválasztása',
|
|
40
|
+
dateTimePickerDefaultToolbarTitle: 'Dátum és idő kiválasztása',
|
|
41
|
+
timePickerDefaultToolbarTitle: 'Idő kiválasztása',
|
|
42
|
+
dateRangePickerDefaultToolbarTitle: 'Dátumhatárok kiválasztása',
|
|
43
|
+
// Clock labels
|
|
44
|
+
clockLabelText: (view, time, adapter) => {
|
|
45
|
+
var _timeViews$view;
|
|
46
|
+
|
|
47
|
+
return `${(_timeViews$view = timeViews[view]) != null ? _timeViews$view : view} kiválasztása. ${time === null ? 'Nincs kiválasztva idő' : `A kiválasztott idő ${adapter.format(time, 'fullTime')}`}`;
|
|
48
|
+
},
|
|
49
|
+
hoursClockNumberText: hours => `${hours} ${timeViews.hours.toLowerCase()}`,
|
|
50
|
+
minutesClockNumberText: minutes => `${minutes} ${timeViews.minutes.toLowerCase()}`,
|
|
51
|
+
secondsClockNumberText: seconds => `${seconds} ${timeViews.seconds.toLowerCase()}`,
|
|
52
|
+
// Open picker labels
|
|
53
|
+
openDatePickerDialogue: (value, utils) => value !== null && utils.isValid(value) ? `Válasszon dátumot, a kiválasztott dátum: ${utils.format(value, 'fullDate')}` : 'Válasszon dátumot',
|
|
54
|
+
openTimePickerDialogue: (value, utils) => value !== null && utils.isValid(value) ? `Válasszon időt, a kiválasztott idő: ${utils.format(value, 'fullTime')}` : 'Válasszon időt',
|
|
55
|
+
// Table labels
|
|
56
|
+
timeTableLabel: 'válasszon időt',
|
|
57
|
+
dateTableLabel: 'válasszon dátumot'
|
|
58
|
+
};
|
|
59
|
+
const huHU = (0, _getPickersLocalization.getPickersLocalization)(huHUPickers);
|
|
60
|
+
exports.huHU = huHU;
|
package/node/locales/index.js
CHANGED
|
@@ -134,6 +134,19 @@ Object.keys(_frFR).forEach(function (key) {
|
|
|
134
134
|
});
|
|
135
135
|
});
|
|
136
136
|
|
|
137
|
+
var _huHU = require("./huHU");
|
|
138
|
+
|
|
139
|
+
Object.keys(_huHU).forEach(function (key) {
|
|
140
|
+
if (key === "default" || key === "__esModule") return;
|
|
141
|
+
if (key in exports && exports[key] === _huHU[key]) return;
|
|
142
|
+
Object.defineProperty(exports, key, {
|
|
143
|
+
enumerable: true,
|
|
144
|
+
get: function () {
|
|
145
|
+
return _huHU[key];
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
});
|
|
149
|
+
|
|
137
150
|
var _enUS = require("./enUS");
|
|
138
151
|
|
|
139
152
|
Object.keys(_enUS).forEach(function (key) {
|