naive-ui 2.25.0 → 2.25.1

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.
@@ -15,8 +15,8 @@ const deDE = {
15
15
  loadingRequiredMessage: (label) => `Bitte laden Sie alle Unterpunkte von ${label}, bevor Sie es auswählen.`
16
16
  },
17
17
  Time: {
18
- dateFormat: 'dd-MM-yyyy',
19
- dateTimeFormat: 'dd-MM-yyyy HH:mm:ss'
18
+ dateFormat: 'dd.MM.yyyy',
19
+ dateTimeFormat: 'dd.MM.yyyy HH:mm:ss'
20
20
  },
21
21
  DatePicker: {
22
22
  yearFormat: 'yyyy',
@@ -24,8 +24,8 @@ const deDE = {
24
24
  dayFormat: 'eeeeee',
25
25
  yearTypeFormat: 'yyyy',
26
26
  monthTypeFormat: 'MM-yyyy',
27
- dateFormat: 'dd-MM-yyyy',
28
- dateTimeFormat: 'dd-MM-yyyy HH:mm:ss',
27
+ dateFormat: 'dd.MM.yyyy',
28
+ dateTimeFormat: 'dd.MM.yyyy HH:mm:ss',
29
29
  quarterFormat: 'yyyy-qqq',
30
30
  clear: 'Löschen',
31
31
  now: 'Jetzt',
@@ -35,9 +35,8 @@ const deDE = {
35
35
  datePlaceholder: 'Datum auswählen',
36
36
  datetimePlaceholder: 'Datum und Uhrzeit auswählen',
37
37
  monthPlaceholder: 'Monat auswählen',
38
- // FIXME: translation needed
39
- yearPlaceholder: 'Select Year',
40
- quarterPlaceholder: 'Select Quarter',
38
+ yearPlaceholder: 'Jahr auswählen',
39
+ quarterPlaceholder: 'Quartal auswählen',
41
40
  startDatePlaceholder: 'Anfangsdatum',
42
41
  endDatePlaceholder: 'Enddatum',
43
42
  startDatetimePlaceholder: 'Anfangsdatum und Uhrzeit',
@@ -97,15 +96,14 @@ const deDE = {
97
96
  export: 'Exportieren',
98
97
  restore: 'Auf Standard zurücksetzen'
99
98
  },
100
- // TODO: translation
101
99
  Image: {
102
- tipPrevious: 'Previous picture (←)',
103
- tipNext: 'Next picture (→)',
104
- tipCounterclockwise: 'Counterclockwise',
105
- tipClockwise: 'Clockwise',
106
- tipZoomOut: 'Zoom out',
107
- tipZoomIn: 'Zoom in',
108
- tipClose: 'Close (Esc)'
100
+ tipPrevious: 'Vorheriges Bild (←)',
101
+ tipNext: 'Nächstes Bild (→)',
102
+ tipCounterclockwise: 'Gegen Uhrzeigersinn',
103
+ tipClockwise: 'Uhrzeigersinn',
104
+ tipZoomOut: 'Rauszoomen',
105
+ tipZoomIn: 'Reinzoomen',
106
+ tipClose: 'Schließen (Esc)'
109
107
  }
110
108
  };
111
109
  export default deDE;
@@ -0,0 +1,109 @@
1
+ declare const enGB: {
2
+ name: string;
3
+ global: {
4
+ undo: string;
5
+ redo: string;
6
+ confirm: string;
7
+ };
8
+ Popconfirm: {
9
+ positiveText: string;
10
+ negativeText: string;
11
+ };
12
+ Cascader: {
13
+ placeholder: string;
14
+ loading: string;
15
+ loadingRequiredMessage: (label: string) => string;
16
+ };
17
+ Time: {
18
+ dateFormat: string;
19
+ dateTimeFormat: string;
20
+ };
21
+ DatePicker: {
22
+ yearFormat: string;
23
+ monthFormat: string;
24
+ dayFormat: string;
25
+ yearTypeFormat: string;
26
+ monthTypeFormat: string;
27
+ dateFormat: string;
28
+ dateTimeFormat: string;
29
+ quarterFormat: string;
30
+ clear: string;
31
+ now: string;
32
+ confirm: string;
33
+ selectTime: string;
34
+ selectDate: string;
35
+ datePlaceholder: string;
36
+ datetimePlaceholder: string;
37
+ monthPlaceholder: string;
38
+ yearPlaceholder: string;
39
+ quarterPlaceholder: string;
40
+ startDatePlaceholder: string;
41
+ endDatePlaceholder: string;
42
+ startDatetimePlaceholder: string;
43
+ endDatetimePlaceholder: string;
44
+ monthBeforeYear: boolean;
45
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
46
+ today: string;
47
+ };
48
+ DataTable: {
49
+ checkTableAll: string;
50
+ uncheckTableAll: string;
51
+ confirm: string;
52
+ clear: string;
53
+ };
54
+ Transfer: {
55
+ sourceTitle: string;
56
+ targetTitle: string;
57
+ };
58
+ Empty: {
59
+ description: string;
60
+ };
61
+ Select: {
62
+ placeholder: string;
63
+ };
64
+ TimePicker: {
65
+ placeholder: string;
66
+ positiveText: string;
67
+ negativeText: string;
68
+ now: string;
69
+ };
70
+ Pagination: {
71
+ goto: string;
72
+ selectionSuffix: string;
73
+ };
74
+ DynamicTags: {
75
+ add: string;
76
+ };
77
+ Log: {
78
+ loading: string;
79
+ };
80
+ Input: {
81
+ placeholder: string;
82
+ };
83
+ InputNumber: {
84
+ placeholder: string;
85
+ };
86
+ DynamicInput: {
87
+ create: string;
88
+ };
89
+ ThemeEditor: {
90
+ title: string;
91
+ clearAllVars: string;
92
+ clearSearch: string;
93
+ filterCompName: string;
94
+ filterVarName: string;
95
+ import: string;
96
+ export: string;
97
+ restore: string;
98
+ };
99
+ Image: {
100
+ tipPrevious: string;
101
+ tipNext: string;
102
+ tipCounterclockwise: string;
103
+ tipClockwise: string;
104
+ tipZoomOut: string;
105
+ tipZoomIn: string;
106
+ tipClose: string;
107
+ };
108
+ };
109
+ export default enGB;
@@ -0,0 +1,109 @@
1
+ const enGB = {
2
+ name: 'en-GB',
3
+ global: {
4
+ undo: 'Undo',
5
+ redo: 'Redo',
6
+ confirm: 'Confirm'
7
+ },
8
+ Popconfirm: {
9
+ positiveText: 'Confirm',
10
+ negativeText: 'Cancel'
11
+ },
12
+ Cascader: {
13
+ placeholder: 'Please Select',
14
+ loading: 'Loading',
15
+ loadingRequiredMessage: (label) => `Please load all ${label}'s descendants before checking it.`
16
+ },
17
+ Time: {
18
+ dateFormat: 'yyyy/MM/dd',
19
+ dateTimeFormat: 'yyyy/MM/dd HH:mm:ss'
20
+ },
21
+ DatePicker: {
22
+ yearFormat: 'yyyy',
23
+ monthFormat: 'MMM',
24
+ dayFormat: 'eeeeee',
25
+ yearTypeFormat: 'yyyy',
26
+ monthTypeFormat: 'yyyy/MM',
27
+ dateFormat: 'yyyy/MM/dd',
28
+ dateTimeFormat: 'yyyy/MM/dd HH:mm:ss',
29
+ quarterFormat: 'yyyy-qqq',
30
+ clear: 'Clear',
31
+ now: 'Now',
32
+ confirm: 'Confirm',
33
+ selectTime: 'Select Time',
34
+ selectDate: 'Select Date',
35
+ datePlaceholder: 'Select Date',
36
+ datetimePlaceholder: 'Select Date and Time',
37
+ monthPlaceholder: 'Select Month',
38
+ yearPlaceholder: 'Select Year',
39
+ quarterPlaceholder: 'Select Quarter',
40
+ startDatePlaceholder: 'Start Date',
41
+ endDatePlaceholder: 'End Date',
42
+ startDatetimePlaceholder: 'Start Date and Time',
43
+ endDatetimePlaceholder: 'End Date and Time',
44
+ monthBeforeYear: true,
45
+ firstDayOfWeek: 0,
46
+ today: 'Today'
47
+ },
48
+ DataTable: {
49
+ checkTableAll: 'Select all in the table',
50
+ uncheckTableAll: 'Unselect all in the table',
51
+ confirm: 'Confirm',
52
+ clear: 'Clear'
53
+ },
54
+ Transfer: {
55
+ sourceTitle: 'Source',
56
+ targetTitle: 'Target'
57
+ },
58
+ Empty: {
59
+ description: 'No Data'
60
+ },
61
+ Select: {
62
+ placeholder: 'Please Select'
63
+ },
64
+ TimePicker: {
65
+ placeholder: 'Select Time',
66
+ positiveText: 'OK',
67
+ negativeText: 'Cancel',
68
+ now: 'Now'
69
+ },
70
+ Pagination: {
71
+ goto: 'Goto',
72
+ selectionSuffix: 'page'
73
+ },
74
+ DynamicTags: {
75
+ add: 'Add'
76
+ },
77
+ Log: {
78
+ loading: 'Loading'
79
+ },
80
+ Input: {
81
+ placeholder: 'Please Input'
82
+ },
83
+ InputNumber: {
84
+ placeholder: 'Please Input'
85
+ },
86
+ DynamicInput: {
87
+ create: 'Create'
88
+ },
89
+ ThemeEditor: {
90
+ title: 'Theme Editor',
91
+ clearAllVars: 'Clear All Variables',
92
+ clearSearch: 'Clear Search',
93
+ filterCompName: 'Filter Component Name',
94
+ filterVarName: 'Filter Variable Name',
95
+ import: 'Import',
96
+ export: 'Export',
97
+ restore: 'Reset to Default'
98
+ },
99
+ Image: {
100
+ tipPrevious: 'Previous picture (←)',
101
+ tipNext: 'Next picture (→)',
102
+ tipCounterclockwise: 'Counterclockwise',
103
+ tipClockwise: 'Clockwise',
104
+ tipZoomOut: 'Zoom out',
105
+ tipZoomIn: 'Zoom in',
106
+ tipClose: 'Close (Esc)'
107
+ }
108
+ };
109
+ export default enGB;
@@ -0,0 +1,3 @@
1
+ import { NDateLocale } from './enUS';
2
+ declare const dateEnGB: NDateLocale;
3
+ export default dateEnGB;
@@ -0,0 +1,6 @@
1
+ import enGB from 'date-fns/locale/en-GB';
2
+ const dateEnGB = {
3
+ name: 'en-GB',
4
+ locale: enGB
5
+ };
6
+ export default dateEnGB;
@@ -10,6 +10,7 @@ export { default as nbNO } from './common/nbNO';
10
10
  export { default as frFR } from './common/frFR';
11
11
  export { default as esAR } from './common/esAR';
12
12
  export { default as itIT } from './common/itIT';
13
+ export { default as enGB } from './common/enGB';
13
14
  export { default as dateZhCN } from './date/zhCN';
14
15
  export { default as dateZhTW } from './date/zhTW';
15
16
  export { default as dateEnUS } from './date/enUS';
@@ -22,6 +23,7 @@ export { default as dateNbNO } from './date/nbNO';
22
23
  export { default as dateFrFR } from './date/frFR';
23
24
  export { default as dateEsAR } from './date/esAR';
24
25
  export { default as dateItIT } from './date/itIT';
26
+ export { default as dateEnGB } from './date/enGB';
25
27
  export type { NLocale } from './common/enUS';
26
28
  export type { NDateLocale } from './date/enUS';
27
29
  export type { NPartialLocale } from './utils/index';
@@ -10,6 +10,7 @@ export { default as nbNO } from './common/nbNO';
10
10
  export { default as frFR } from './common/frFR';
11
11
  export { default as esAR } from './common/esAR';
12
12
  export { default as itIT } from './common/itIT';
13
+ export { default as enGB } from './common/enGB';
13
14
  export { default as dateZhCN } from './date/zhCN';
14
15
  export { default as dateZhTW } from './date/zhTW';
15
16
  export { default as dateEnUS } from './date/enUS';
@@ -22,4 +23,5 @@ export { default as dateNbNO } from './date/nbNO';
22
23
  export { default as dateFrFR } from './date/frFR';
23
24
  export { default as dateEsAR } from './date/esAR';
24
25
  export { default as dateItIT } from './date/itIT';
26
+ export { default as dateEnGB } from './date/enGB';
25
27
  export { createLocale } from './utils/index';
package/es/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "2.25.0";
1
+ declare const _default: "2.25.1";
2
2
  export default _default;
package/es/version.js CHANGED
@@ -1 +1 @@
1
- export default '2.25.0';
1
+ export default '2.25.1';
@@ -17,8 +17,8 @@ const deDE = {
17
17
  loadingRequiredMessage: (label) => `Bitte laden Sie alle Unterpunkte von ${label}, bevor Sie es auswählen.`
18
18
  },
19
19
  Time: {
20
- dateFormat: 'dd-MM-yyyy',
21
- dateTimeFormat: 'dd-MM-yyyy HH:mm:ss'
20
+ dateFormat: 'dd.MM.yyyy',
21
+ dateTimeFormat: 'dd.MM.yyyy HH:mm:ss'
22
22
  },
23
23
  DatePicker: {
24
24
  yearFormat: 'yyyy',
@@ -26,8 +26,8 @@ const deDE = {
26
26
  dayFormat: 'eeeeee',
27
27
  yearTypeFormat: 'yyyy',
28
28
  monthTypeFormat: 'MM-yyyy',
29
- dateFormat: 'dd-MM-yyyy',
30
- dateTimeFormat: 'dd-MM-yyyy HH:mm:ss',
29
+ dateFormat: 'dd.MM.yyyy',
30
+ dateTimeFormat: 'dd.MM.yyyy HH:mm:ss',
31
31
  quarterFormat: 'yyyy-qqq',
32
32
  clear: 'Löschen',
33
33
  now: 'Jetzt',
@@ -37,9 +37,8 @@ const deDE = {
37
37
  datePlaceholder: 'Datum auswählen',
38
38
  datetimePlaceholder: 'Datum und Uhrzeit auswählen',
39
39
  monthPlaceholder: 'Monat auswählen',
40
- // FIXME: translation needed
41
- yearPlaceholder: 'Select Year',
42
- quarterPlaceholder: 'Select Quarter',
40
+ yearPlaceholder: 'Jahr auswählen',
41
+ quarterPlaceholder: 'Quartal auswählen',
43
42
  startDatePlaceholder: 'Anfangsdatum',
44
43
  endDatePlaceholder: 'Enddatum',
45
44
  startDatetimePlaceholder: 'Anfangsdatum und Uhrzeit',
@@ -99,15 +98,14 @@ const deDE = {
99
98
  export: 'Exportieren',
100
99
  restore: 'Auf Standard zurücksetzen'
101
100
  },
102
- // TODO: translation
103
101
  Image: {
104
- tipPrevious: 'Previous picture (←)',
105
- tipNext: 'Next picture (→)',
106
- tipCounterclockwise: 'Counterclockwise',
107
- tipClockwise: 'Clockwise',
108
- tipZoomOut: 'Zoom out',
109
- tipZoomIn: 'Zoom in',
110
- tipClose: 'Close (Esc)'
102
+ tipPrevious: 'Vorheriges Bild (←)',
103
+ tipNext: 'Nächstes Bild (→)',
104
+ tipCounterclockwise: 'Gegen Uhrzeigersinn',
105
+ tipClockwise: 'Uhrzeigersinn',
106
+ tipZoomOut: 'Rauszoomen',
107
+ tipZoomIn: 'Reinzoomen',
108
+ tipClose: 'Schließen (Esc)'
111
109
  }
112
110
  };
113
111
  exports.default = deDE;
@@ -0,0 +1,109 @@
1
+ declare const enGB: {
2
+ name: string;
3
+ global: {
4
+ undo: string;
5
+ redo: string;
6
+ confirm: string;
7
+ };
8
+ Popconfirm: {
9
+ positiveText: string;
10
+ negativeText: string;
11
+ };
12
+ Cascader: {
13
+ placeholder: string;
14
+ loading: string;
15
+ loadingRequiredMessage: (label: string) => string;
16
+ };
17
+ Time: {
18
+ dateFormat: string;
19
+ dateTimeFormat: string;
20
+ };
21
+ DatePicker: {
22
+ yearFormat: string;
23
+ monthFormat: string;
24
+ dayFormat: string;
25
+ yearTypeFormat: string;
26
+ monthTypeFormat: string;
27
+ dateFormat: string;
28
+ dateTimeFormat: string;
29
+ quarterFormat: string;
30
+ clear: string;
31
+ now: string;
32
+ confirm: string;
33
+ selectTime: string;
34
+ selectDate: string;
35
+ datePlaceholder: string;
36
+ datetimePlaceholder: string;
37
+ monthPlaceholder: string;
38
+ yearPlaceholder: string;
39
+ quarterPlaceholder: string;
40
+ startDatePlaceholder: string;
41
+ endDatePlaceholder: string;
42
+ startDatetimePlaceholder: string;
43
+ endDatetimePlaceholder: string;
44
+ monthBeforeYear: boolean;
45
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
46
+ today: string;
47
+ };
48
+ DataTable: {
49
+ checkTableAll: string;
50
+ uncheckTableAll: string;
51
+ confirm: string;
52
+ clear: string;
53
+ };
54
+ Transfer: {
55
+ sourceTitle: string;
56
+ targetTitle: string;
57
+ };
58
+ Empty: {
59
+ description: string;
60
+ };
61
+ Select: {
62
+ placeholder: string;
63
+ };
64
+ TimePicker: {
65
+ placeholder: string;
66
+ positiveText: string;
67
+ negativeText: string;
68
+ now: string;
69
+ };
70
+ Pagination: {
71
+ goto: string;
72
+ selectionSuffix: string;
73
+ };
74
+ DynamicTags: {
75
+ add: string;
76
+ };
77
+ Log: {
78
+ loading: string;
79
+ };
80
+ Input: {
81
+ placeholder: string;
82
+ };
83
+ InputNumber: {
84
+ placeholder: string;
85
+ };
86
+ DynamicInput: {
87
+ create: string;
88
+ };
89
+ ThemeEditor: {
90
+ title: string;
91
+ clearAllVars: string;
92
+ clearSearch: string;
93
+ filterCompName: string;
94
+ filterVarName: string;
95
+ import: string;
96
+ export: string;
97
+ restore: string;
98
+ };
99
+ Image: {
100
+ tipPrevious: string;
101
+ tipNext: string;
102
+ tipCounterclockwise: string;
103
+ tipClockwise: string;
104
+ tipZoomOut: string;
105
+ tipZoomIn: string;
106
+ tipClose: string;
107
+ };
108
+ };
109
+ export default enGB;
@@ -0,0 +1,111 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const enGB = {
4
+ name: 'en-GB',
5
+ global: {
6
+ undo: 'Undo',
7
+ redo: 'Redo',
8
+ confirm: 'Confirm'
9
+ },
10
+ Popconfirm: {
11
+ positiveText: 'Confirm',
12
+ negativeText: 'Cancel'
13
+ },
14
+ Cascader: {
15
+ placeholder: 'Please Select',
16
+ loading: 'Loading',
17
+ loadingRequiredMessage: (label) => `Please load all ${label}'s descendants before checking it.`
18
+ },
19
+ Time: {
20
+ dateFormat: 'yyyy/MM/dd',
21
+ dateTimeFormat: 'yyyy/MM/dd HH:mm:ss'
22
+ },
23
+ DatePicker: {
24
+ yearFormat: 'yyyy',
25
+ monthFormat: 'MMM',
26
+ dayFormat: 'eeeeee',
27
+ yearTypeFormat: 'yyyy',
28
+ monthTypeFormat: 'yyyy/MM',
29
+ dateFormat: 'yyyy/MM/dd',
30
+ dateTimeFormat: 'yyyy/MM/dd HH:mm:ss',
31
+ quarterFormat: 'yyyy-qqq',
32
+ clear: 'Clear',
33
+ now: 'Now',
34
+ confirm: 'Confirm',
35
+ selectTime: 'Select Time',
36
+ selectDate: 'Select Date',
37
+ datePlaceholder: 'Select Date',
38
+ datetimePlaceholder: 'Select Date and Time',
39
+ monthPlaceholder: 'Select Month',
40
+ yearPlaceholder: 'Select Year',
41
+ quarterPlaceholder: 'Select Quarter',
42
+ startDatePlaceholder: 'Start Date',
43
+ endDatePlaceholder: 'End Date',
44
+ startDatetimePlaceholder: 'Start Date and Time',
45
+ endDatetimePlaceholder: 'End Date and Time',
46
+ monthBeforeYear: true,
47
+ firstDayOfWeek: 0,
48
+ today: 'Today'
49
+ },
50
+ DataTable: {
51
+ checkTableAll: 'Select all in the table',
52
+ uncheckTableAll: 'Unselect all in the table',
53
+ confirm: 'Confirm',
54
+ clear: 'Clear'
55
+ },
56
+ Transfer: {
57
+ sourceTitle: 'Source',
58
+ targetTitle: 'Target'
59
+ },
60
+ Empty: {
61
+ description: 'No Data'
62
+ },
63
+ Select: {
64
+ placeholder: 'Please Select'
65
+ },
66
+ TimePicker: {
67
+ placeholder: 'Select Time',
68
+ positiveText: 'OK',
69
+ negativeText: 'Cancel',
70
+ now: 'Now'
71
+ },
72
+ Pagination: {
73
+ goto: 'Goto',
74
+ selectionSuffix: 'page'
75
+ },
76
+ DynamicTags: {
77
+ add: 'Add'
78
+ },
79
+ Log: {
80
+ loading: 'Loading'
81
+ },
82
+ Input: {
83
+ placeholder: 'Please Input'
84
+ },
85
+ InputNumber: {
86
+ placeholder: 'Please Input'
87
+ },
88
+ DynamicInput: {
89
+ create: 'Create'
90
+ },
91
+ ThemeEditor: {
92
+ title: 'Theme Editor',
93
+ clearAllVars: 'Clear All Variables',
94
+ clearSearch: 'Clear Search',
95
+ filterCompName: 'Filter Component Name',
96
+ filterVarName: 'Filter Variable Name',
97
+ import: 'Import',
98
+ export: 'Export',
99
+ restore: 'Reset to Default'
100
+ },
101
+ Image: {
102
+ tipPrevious: 'Previous picture (←)',
103
+ tipNext: 'Next picture (→)',
104
+ tipCounterclockwise: 'Counterclockwise',
105
+ tipClockwise: 'Clockwise',
106
+ tipZoomOut: 'Zoom out',
107
+ tipZoomIn: 'Zoom in',
108
+ tipClose: 'Close (Esc)'
109
+ }
110
+ };
111
+ exports.default = enGB;
@@ -0,0 +1,3 @@
1
+ import { NDateLocale } from './enUS';
2
+ declare const dateEnGB: NDateLocale;
3
+ export default dateEnGB;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const en_GB_1 = __importDefault(require("date-fns/locale/en-GB"));
7
+ const dateEnGB = {
8
+ name: 'en-GB',
9
+ locale: en_GB_1.default
10
+ };
11
+ exports.default = dateEnGB;
@@ -10,6 +10,7 @@ export { default as nbNO } from './common/nbNO';
10
10
  export { default as frFR } from './common/frFR';
11
11
  export { default as esAR } from './common/esAR';
12
12
  export { default as itIT } from './common/itIT';
13
+ export { default as enGB } from './common/enGB';
13
14
  export { default as dateZhCN } from './date/zhCN';
14
15
  export { default as dateZhTW } from './date/zhTW';
15
16
  export { default as dateEnUS } from './date/enUS';
@@ -22,6 +23,7 @@ export { default as dateNbNO } from './date/nbNO';
22
23
  export { default as dateFrFR } from './date/frFR';
23
24
  export { default as dateEsAR } from './date/esAR';
24
25
  export { default as dateItIT } from './date/itIT';
26
+ export { default as dateEnGB } from './date/enGB';
25
27
  export type { NLocale } from './common/enUS';
26
28
  export type { NDateLocale } from './date/enUS';
27
29
  export type { NPartialLocale } from './utils/index';
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.createLocale = exports.dateItIT = exports.dateEsAR = exports.dateFrFR = exports.dateNbNO = exports.dateDeDE = exports.dateIdID = exports.dateJaJP = exports.dateUkUA = exports.dateRuRU = exports.dateEnUS = exports.dateZhTW = exports.dateZhCN = exports.itIT = exports.esAR = exports.frFR = exports.nbNO = exports.deDE = exports.idID = exports.jaJP = exports.ukUA = exports.ruRU = exports.enUS = exports.zhTW = exports.zhCN = void 0;
6
+ exports.createLocale = exports.dateEnGB = exports.dateItIT = exports.dateEsAR = exports.dateFrFR = exports.dateNbNO = exports.dateDeDE = exports.dateIdID = exports.dateJaJP = exports.dateUkUA = exports.dateRuRU = exports.dateEnUS = exports.dateZhTW = exports.dateZhCN = exports.enGB = exports.itIT = exports.esAR = exports.frFR = exports.nbNO = exports.deDE = exports.idID = exports.jaJP = exports.ukUA = exports.ruRU = exports.enUS = exports.zhTW = exports.zhCN = void 0;
7
7
  var zhCN_1 = require("./common/zhCN");
8
8
  Object.defineProperty(exports, "zhCN", { enumerable: true, get: function () { return __importDefault(zhCN_1).default; } });
9
9
  var zhTW_1 = require("./common/zhTW");
@@ -28,6 +28,8 @@ var esAR_1 = require("./common/esAR");
28
28
  Object.defineProperty(exports, "esAR", { enumerable: true, get: function () { return __importDefault(esAR_1).default; } });
29
29
  var itIT_1 = require("./common/itIT");
30
30
  Object.defineProperty(exports, "itIT", { enumerable: true, get: function () { return __importDefault(itIT_1).default; } });
31
+ var enGB_1 = require("./common/enGB");
32
+ Object.defineProperty(exports, "enGB", { enumerable: true, get: function () { return __importDefault(enGB_1).default; } });
31
33
  var zhCN_2 = require("./date/zhCN");
32
34
  Object.defineProperty(exports, "dateZhCN", { enumerable: true, get: function () { return __importDefault(zhCN_2).default; } });
33
35
  var zhTW_2 = require("./date/zhTW");
@@ -52,5 +54,7 @@ var esAR_2 = require("./date/esAR");
52
54
  Object.defineProperty(exports, "dateEsAR", { enumerable: true, get: function () { return __importDefault(esAR_2).default; } });
53
55
  var itIT_2 = require("./date/itIT");
54
56
  Object.defineProperty(exports, "dateItIT", { enumerable: true, get: function () { return __importDefault(itIT_2).default; } });
57
+ var enGB_2 = require("./date/enGB");
58
+ Object.defineProperty(exports, "dateEnGB", { enumerable: true, get: function () { return __importDefault(enGB_2).default; } });
55
59
  var index_1 = require("./utils/index");
56
60
  Object.defineProperty(exports, "createLocale", { enumerable: true, get: function () { return index_1.createLocale; } });
package/lib/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "2.25.0";
1
+ declare const _default: "2.25.1";
2
2
  export default _default;
package/lib/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '2.25.0';
3
+ exports.default = '2.25.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "naive-ui",
3
- "version": "2.25.0",
3
+ "version": "2.25.1",
4
4
  "description": "A Vue 3 Component Library. Fairly Complete, Customizable Themes, Uses TypeScript, Not Too Slow",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
package/web-types.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
4
  "name": "naive-ui",
5
- "version": "2.25.0",
5
+ "version": "2.25.1",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "elements": [