rsuite 5.81.0 → 5.82.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 CHANGED
@@ -1,3 +1,13 @@
1
+ # [5.82.0](https://github.com/rsuite/rsuite/compare/v5.81.0...v5.82.0) (2025-05-29)
2
+
3
+
4
+ ### Features
5
+
6
+ * **locale:** add support for Thai (th_TH) ([#4299](https://github.com/rsuite/rsuite/issues/4299)) ([91a7a45](https://github.com/rsuite/rsuite/commit/91a7a45c26d3f13df161fa56ef212bf17f61e460))
7
+ * **locales:** add Ukrainian (uk-UA) localization for DateRangePicker and other components ([#4288](https://github.com/rsuite/rsuite/issues/4288)) ([b8789ec](https://github.com/rsuite/rsuite/commit/b8789ec085fed00c5f4ddedf7f3ff82301c62b4b))
8
+
9
+
10
+
1
11
  # [5.81.0](https://github.com/rsuite/rsuite/compare/v5.80.3...v5.81.0) (2025-05-23)
2
12
 
3
13
 
@@ -26,6 +26,8 @@ export { default as jaJP } from './ja_JP';
26
26
  export { default as neNP } from './ne_NP';
27
27
  export { default as csCZ } from './cs_CZ';
28
28
  export { default as plPL } from './pl_PL';
29
+ export { default as ukUA } from './uk_UA';
30
+ export { default as thTH } from './th_TH';
29
31
  type PickKeys<T> = {
30
32
  [keys in keyof T]?: T[keys];
31
33
  };
@@ -3,7 +3,7 @@
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
5
  exports.__esModule = true;
6
- exports.zhTW = exports.zhCN = exports.trTR = exports.svSE = exports.ruRU = exports.ptBR = exports.plPL = exports.nlNL = exports.neNP = exports.koKR = exports.kkKZ = exports.jaJP = exports.itIT = exports.huHU = exports.frFR = exports.fiFI = exports.faIR = exports.esES = exports.esAR = exports.enUS = exports.enGB = exports.deDE = exports.daDK = exports.csCZ = exports.caES = exports.arEG = void 0;
6
+ exports.zhTW = exports.zhCN = exports.ukUA = exports.trTR = exports.thTH = exports.svSE = exports.ruRU = exports.ptBR = exports.plPL = exports.nlNL = exports.neNP = exports.koKR = exports.kkKZ = exports.jaJP = exports.itIT = exports.huHU = exports.frFR = exports.fiFI = exports.faIR = exports.esES = exports.esAR = exports.enUS = exports.enGB = exports.deDE = exports.daDK = exports.csCZ = exports.caES = exports.arEG = void 0;
7
7
  var _ar_EG = _interopRequireDefault(require("./ar_EG"));
8
8
  exports.arEG = _ar_EG.default;
9
9
  var _da_DK = _interopRequireDefault(require("./da_DK"));
@@ -55,4 +55,8 @@ exports.neNP = _ne_NP.default;
55
55
  var _cs_CZ = _interopRequireDefault(require("./cs_CZ"));
56
56
  exports.csCZ = _cs_CZ.default;
57
57
  var _pl_PL = _interopRequireDefault(require("./pl_PL"));
58
- exports.plPL = _pl_PL.default;
58
+ exports.plPL = _pl_PL.default;
59
+ var _uk_UA = _interopRequireDefault(require("./uk_UA"));
60
+ exports.ukUA = _uk_UA.default;
61
+ var _th_TH = _interopRequireDefault(require("./th_TH"));
62
+ exports.thTH = _th_TH.default;
@@ -0,0 +1,163 @@
1
+ declare const _default: {
2
+ code: string;
3
+ common: {
4
+ loading: string;
5
+ emptyMessage: string;
6
+ remove: string;
7
+ clear: string;
8
+ };
9
+ Plaintext: {
10
+ unfilled: string;
11
+ notSelected: string;
12
+ notUploaded: string;
13
+ };
14
+ Pagination: {
15
+ more: string;
16
+ prev: string;
17
+ next: string;
18
+ first: string;
19
+ last: string;
20
+ limit: string;
21
+ total: string;
22
+ skip: string;
23
+ };
24
+ DateTimeFormats: {
25
+ sunday: string;
26
+ monday: string;
27
+ tuesday: string;
28
+ wednesday: string;
29
+ thursday: string;
30
+ friday: string;
31
+ saturday: string;
32
+ ok: string;
33
+ today: string;
34
+ yesterday: string;
35
+ now: string;
36
+ hours: string;
37
+ minutes: string;
38
+ seconds: string;
39
+ /**
40
+ * Reference from en_GB without modifications.
41
+ **/
42
+ formattedMonthPattern: string;
43
+ formattedDayPattern: string;
44
+ shortDateFormat: string;
45
+ shortTimeFormat: string;
46
+ dateLocale: any;
47
+ };
48
+ Calendar: {
49
+ sunday: string;
50
+ monday: string;
51
+ tuesday: string;
52
+ wednesday: string;
53
+ thursday: string;
54
+ friday: string;
55
+ saturday: string;
56
+ ok: string;
57
+ today: string;
58
+ yesterday: string;
59
+ now: string;
60
+ hours: string;
61
+ minutes: string;
62
+ seconds: string;
63
+ /**
64
+ * Reference from en_GB without modifications.
65
+ **/
66
+ formattedMonthPattern: string;
67
+ formattedDayPattern: string;
68
+ shortDateFormat: string;
69
+ shortTimeFormat: string;
70
+ dateLocale: any;
71
+ };
72
+ DatePicker: {
73
+ sunday: string;
74
+ monday: string;
75
+ tuesday: string;
76
+ wednesday: string;
77
+ thursday: string;
78
+ friday: string;
79
+ saturday: string;
80
+ ok: string;
81
+ today: string;
82
+ yesterday: string;
83
+ now: string;
84
+ hours: string;
85
+ minutes: string;
86
+ seconds: string;
87
+ /**
88
+ * Reference from en_GB without modifications.
89
+ **/
90
+ formattedMonthPattern: string;
91
+ formattedDayPattern: string;
92
+ shortDateFormat: string;
93
+ shortTimeFormat: string;
94
+ dateLocale: any;
95
+ };
96
+ DateRangePicker: {
97
+ last7Days: string;
98
+ sunday: string;
99
+ monday: string;
100
+ tuesday: string;
101
+ wednesday: string;
102
+ thursday: string;
103
+ friday: string;
104
+ saturday: string;
105
+ ok: string;
106
+ today: string;
107
+ yesterday: string;
108
+ now: string;
109
+ hours: string;
110
+ minutes: string;
111
+ seconds: string;
112
+ /**
113
+ * Reference from en_GB without modifications.
114
+ **/
115
+ formattedMonthPattern: string;
116
+ formattedDayPattern: string;
117
+ shortDateFormat: string;
118
+ shortTimeFormat: string;
119
+ dateLocale: any;
120
+ };
121
+ Combobox: {
122
+ noResultsText: string;
123
+ placeholder: string;
124
+ searchPlaceholder: string;
125
+ checkAll: string;
126
+ };
127
+ InputPicker: {
128
+ newItem: string;
129
+ createOption: string;
130
+ noResultsText: string;
131
+ placeholder: string;
132
+ searchPlaceholder: string;
133
+ checkAll: string;
134
+ };
135
+ TagPicker: {
136
+ newItem: string;
137
+ createOption: string;
138
+ noResultsText: string;
139
+ placeholder: string;
140
+ searchPlaceholder: string;
141
+ checkAll: string;
142
+ };
143
+ Uploader: {
144
+ inited: string;
145
+ progress: string;
146
+ error: string;
147
+ complete: string;
148
+ emptyFile: string;
149
+ upload: string;
150
+ removeFile: string;
151
+ };
152
+ CloseButton: {
153
+ closeLabel: string;
154
+ };
155
+ Breadcrumb: {
156
+ expandText: string;
157
+ };
158
+ Toggle: {
159
+ on: string;
160
+ off: string;
161
+ };
162
+ };
163
+ export default _default;
@@ -0,0 +1,94 @@
1
+ 'use client';
2
+ "use strict";
3
+
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ exports.__esModule = true;
6
+ exports.default = void 0;
7
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
8
+ var _th = _interopRequireDefault(require("date-fns/locale/th"));
9
+ var DateTimeFormats = {
10
+ sunday: 'อา.',
11
+ monday: 'จ.',
12
+ tuesday: 'อ.',
13
+ wednesday: 'พ.',
14
+ thursday: 'พฤ.',
15
+ friday: 'ศ.',
16
+ saturday: 'ส.',
17
+ ok: 'ตกลง',
18
+ today: 'วันนี้',
19
+ yesterday: 'เมื่อวาน',
20
+ now: 'ตอนนี้',
21
+ hours: 'ชั่วโมง',
22
+ minutes: 'นาที',
23
+ seconds: 'วินาที',
24
+ /**
25
+ * Reference from en_GB without modifications.
26
+ **/
27
+ formattedMonthPattern: 'MMM yyyy',
28
+ formattedDayPattern: 'dd MMM yyyy',
29
+ shortDateFormat: 'dd/MM/yyyy',
30
+ shortTimeFormat: 'HH:mm',
31
+ dateLocale: _th.default
32
+ };
33
+ var Combobox = {
34
+ noResultsText: 'ไม่พบผลลัพธ์',
35
+ placeholder: 'เลือก',
36
+ searchPlaceholder: 'ค้นหา',
37
+ checkAll: 'ทั้งหมด'
38
+ };
39
+ var CreatableComboBox = (0, _extends2.default)({}, Combobox, {
40
+ newItem: 'รายการใหม่',
41
+ createOption: 'สร้างรายการ "{0}"'
42
+ });
43
+ var _default = exports.default = {
44
+ code: 'th-TH',
45
+ common: {
46
+ loading: 'กำลังโหลด...',
47
+ emptyMessage: 'ไม่พบข้อมูล',
48
+ remove: 'ลบ',
49
+ clear: 'ล้าง'
50
+ },
51
+ Plaintext: {
52
+ unfilled: 'ไม่ได้ระบุ',
53
+ notSelected: 'ไม่ได้เลือก',
54
+ notUploaded: 'ไม่ได้อัพโหลด'
55
+ },
56
+ Pagination: {
57
+ more: 'เพิ่มเติม',
58
+ prev: 'ก่อนหน้า',
59
+ next: 'ถัดไป',
60
+ first: 'หน้าแรก',
61
+ last: 'หน้าสุดท้าย',
62
+ limit: '{0} / หน้า',
63
+ total: 'รายการทั้งหมด: {0}',
64
+ skip: 'ไปยัง {0}'
65
+ },
66
+ DateTimeFormats: DateTimeFormats,
67
+ Calendar: DateTimeFormats,
68
+ DatePicker: DateTimeFormats,
69
+ DateRangePicker: (0, _extends2.default)({}, DateTimeFormats, {
70
+ last7Days: '7 วันที่ผ่านมา'
71
+ }),
72
+ Combobox: Combobox,
73
+ InputPicker: CreatableComboBox,
74
+ TagPicker: CreatableComboBox,
75
+ Uploader: {
76
+ inited: 'เริ่มต้น',
77
+ progress: 'กำลังอัพโหลด',
78
+ error: 'ข้อผิดพลาด',
79
+ complete: 'เสร็จสมบูรณ์',
80
+ emptyFile: 'ว่างเปล่า',
81
+ upload: 'อัพโหลด',
82
+ removeFile: 'ลบไฟล์'
83
+ },
84
+ CloseButton: {
85
+ closeLabel: 'ปิด'
86
+ },
87
+ Breadcrumb: {
88
+ expandText: 'แสดงเส้นทาง'
89
+ },
90
+ Toggle: {
91
+ on: 'เปิด',
92
+ off: 'ปิด'
93
+ }
94
+ };
@@ -0,0 +1,151 @@
1
+ declare const _default: {
2
+ code: string;
3
+ common: {
4
+ loading: string;
5
+ emptyMessage: string;
6
+ remove: string;
7
+ clear: string;
8
+ };
9
+ Plaintext: {
10
+ unfilled: string;
11
+ notSelected: string;
12
+ notUploaded: string;
13
+ };
14
+ Pagination: {
15
+ more: string;
16
+ prev: string;
17
+ next: string;
18
+ first: string;
19
+ last: string;
20
+ limit: string;
21
+ total: string;
22
+ skip: string;
23
+ };
24
+ DateTimeFormats: {
25
+ sunday: string;
26
+ monday: string;
27
+ tuesday: string;
28
+ wednesday: string;
29
+ thursday: string;
30
+ friday: string;
31
+ saturday: string;
32
+ ok: string;
33
+ today: string;
34
+ yesterday: string;
35
+ now: string;
36
+ hours: string;
37
+ minutes: string;
38
+ seconds: string;
39
+ formattedMonthPattern: string;
40
+ formattedDayPattern: string;
41
+ shortDateFormat: string;
42
+ shortTimeFormat: string;
43
+ dateLocale: any;
44
+ };
45
+ Calendar: {
46
+ sunday: string;
47
+ monday: string;
48
+ tuesday: string;
49
+ wednesday: string;
50
+ thursday: string;
51
+ friday: string;
52
+ saturday: string;
53
+ ok: string;
54
+ today: string;
55
+ yesterday: string;
56
+ now: string;
57
+ hours: string;
58
+ minutes: string;
59
+ seconds: string;
60
+ formattedMonthPattern: string;
61
+ formattedDayPattern: string;
62
+ shortDateFormat: string;
63
+ shortTimeFormat: string;
64
+ dateLocale: any;
65
+ };
66
+ DatePicker: {
67
+ sunday: string;
68
+ monday: string;
69
+ tuesday: string;
70
+ wednesday: string;
71
+ thursday: string;
72
+ friday: string;
73
+ saturday: string;
74
+ ok: string;
75
+ today: string;
76
+ yesterday: string;
77
+ now: string;
78
+ hours: string;
79
+ minutes: string;
80
+ seconds: string;
81
+ formattedMonthPattern: string;
82
+ formattedDayPattern: string;
83
+ shortDateFormat: string;
84
+ shortTimeFormat: string;
85
+ dateLocale: any;
86
+ };
87
+ DateRangePicker: {
88
+ last7Days: string;
89
+ sunday: string;
90
+ monday: string;
91
+ tuesday: string;
92
+ wednesday: string;
93
+ thursday: string;
94
+ friday: string;
95
+ saturday: string;
96
+ ok: string;
97
+ today: string;
98
+ yesterday: string;
99
+ now: string;
100
+ hours: string;
101
+ minutes: string;
102
+ seconds: string;
103
+ formattedMonthPattern: string;
104
+ formattedDayPattern: string;
105
+ shortDateFormat: string;
106
+ shortTimeFormat: string;
107
+ dateLocale: any;
108
+ };
109
+ Combobox: {
110
+ noResultsText: string;
111
+ placeholder: string;
112
+ searchPlaceholder: string;
113
+ checkAll: string;
114
+ };
115
+ InputPicker: {
116
+ newItem: string;
117
+ createOption: string;
118
+ noResultsText: string;
119
+ placeholder: string;
120
+ searchPlaceholder: string;
121
+ checkAll: string;
122
+ };
123
+ TagPicker: {
124
+ newItem: string;
125
+ createOption: string;
126
+ noResultsText: string;
127
+ placeholder: string;
128
+ searchPlaceholder: string;
129
+ checkAll: string;
130
+ };
131
+ Uploader: {
132
+ inited: string;
133
+ progress: string;
134
+ error: string;
135
+ complete: string;
136
+ emptyFile: string;
137
+ upload: string;
138
+ removeFile: string;
139
+ };
140
+ CloseButton: {
141
+ closeLabel: string;
142
+ };
143
+ Breadcrumb: {
144
+ expandText: string;
145
+ };
146
+ Toggle: {
147
+ on: string;
148
+ off: string;
149
+ };
150
+ };
151
+ export default _default;
@@ -0,0 +1,91 @@
1
+ 'use client';
2
+ "use strict";
3
+
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ exports.__esModule = true;
6
+ exports.default = void 0;
7
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
8
+ var _uk = _interopRequireDefault(require("date-fns/locale/uk"));
9
+ var DateTimeFormats = {
10
+ sunday: 'Нд',
11
+ monday: 'Пн',
12
+ tuesday: 'Вт',
13
+ wednesday: 'Ср',
14
+ thursday: 'Чт',
15
+ friday: 'Пт',
16
+ saturday: 'Сб',
17
+ ok: 'ОК',
18
+ today: 'Сьогодні',
19
+ yesterday: 'Вчора',
20
+ now: 'Зараз',
21
+ hours: 'Години',
22
+ minutes: 'Хвилини',
23
+ seconds: 'Секунди',
24
+ formattedMonthPattern: 'MMM yyyy',
25
+ formattedDayPattern: 'dd MMM yyyy',
26
+ shortDateFormat: 'dd.MM.yyyy',
27
+ shortTimeFormat: 'HH:mm',
28
+ dateLocale: _uk.default
29
+ };
30
+ var Combobox = {
31
+ noResultsText: 'Результати не знайдено',
32
+ placeholder: 'Вибрати',
33
+ searchPlaceholder: 'Пошук',
34
+ checkAll: 'Усі'
35
+ };
36
+ var CreatableComboBox = (0, _extends2.default)({}, Combobox, {
37
+ newItem: 'Новий',
38
+ createOption: 'Створити опцію "{0}"'
39
+ });
40
+ var _default = exports.default = {
41
+ code: 'uk-UA',
42
+ common: {
43
+ loading: 'Завантаження...',
44
+ emptyMessage: 'Дані не знайдено',
45
+ remove: 'Видалити',
46
+ clear: 'Очистити'
47
+ },
48
+ Plaintext: {
49
+ unfilled: 'Незаповнено',
50
+ notSelected: 'Не вибрано',
51
+ notUploaded: 'Не завантажено'
52
+ },
53
+ Pagination: {
54
+ more: 'Більше',
55
+ prev: 'Попередня',
56
+ next: 'Наступна',
57
+ first: 'Перша',
58
+ last: 'Остання',
59
+ limit: '{0} / сторінка',
60
+ total: 'Всього: {0}',
61
+ skip: 'Перейти до {0}'
62
+ },
63
+ DateTimeFormats: DateTimeFormats,
64
+ Calendar: DateTimeFormats,
65
+ DatePicker: DateTimeFormats,
66
+ DateRangePicker: (0, _extends2.default)({}, DateTimeFormats, {
67
+ last7Days: 'Останні 7 днів'
68
+ }),
69
+ Combobox: Combobox,
70
+ InputPicker: CreatableComboBox,
71
+ TagPicker: CreatableComboBox,
72
+ Uploader: {
73
+ inited: 'Ініційовано',
74
+ progress: 'Завантаження',
75
+ error: 'Помилка',
76
+ complete: 'Завершено',
77
+ emptyFile: 'Порожній',
78
+ upload: 'Завантажити',
79
+ removeFile: 'Видалити файл'
80
+ },
81
+ CloseButton: {
82
+ closeLabel: 'Закрити'
83
+ },
84
+ Breadcrumb: {
85
+ expandText: 'Показати шлях'
86
+ },
87
+ Toggle: {
88
+ on: 'Увімкнено',
89
+ off: 'Вимкнено'
90
+ }
91
+ };
@@ -26,6 +26,8 @@ export { default as jaJP } from './ja_JP';
26
26
  export { default as neNP } from './ne_NP';
27
27
  export { default as csCZ } from './cs_CZ';
28
28
  export { default as plPL } from './pl_PL';
29
+ export { default as ukUA } from './uk_UA';
30
+ export { default as thTH } from './th_TH';
29
31
  type PickKeys<T> = {
30
32
  [keys in keyof T]?: T[keys];
31
33
  };
@@ -24,4 +24,6 @@ export { default as frFR } from "./fr_FR.js";
24
24
  export { default as jaJP } from "./ja_JP.js";
25
25
  export { default as neNP } from "./ne_NP.js";
26
26
  export { default as csCZ } from "./cs_CZ.js";
27
- export { default as plPL } from "./pl_PL.js";
27
+ export { default as plPL } from "./pl_PL.js";
28
+ export { default as ukUA } from "./uk_UA.js";
29
+ export { default as thTH } from "./th_TH.js";
@@ -0,0 +1,163 @@
1
+ declare const _default: {
2
+ code: string;
3
+ common: {
4
+ loading: string;
5
+ emptyMessage: string;
6
+ remove: string;
7
+ clear: string;
8
+ };
9
+ Plaintext: {
10
+ unfilled: string;
11
+ notSelected: string;
12
+ notUploaded: string;
13
+ };
14
+ Pagination: {
15
+ more: string;
16
+ prev: string;
17
+ next: string;
18
+ first: string;
19
+ last: string;
20
+ limit: string;
21
+ total: string;
22
+ skip: string;
23
+ };
24
+ DateTimeFormats: {
25
+ sunday: string;
26
+ monday: string;
27
+ tuesday: string;
28
+ wednesday: string;
29
+ thursday: string;
30
+ friday: string;
31
+ saturday: string;
32
+ ok: string;
33
+ today: string;
34
+ yesterday: string;
35
+ now: string;
36
+ hours: string;
37
+ minutes: string;
38
+ seconds: string;
39
+ /**
40
+ * Reference from en_GB without modifications.
41
+ **/
42
+ formattedMonthPattern: string;
43
+ formattedDayPattern: string;
44
+ shortDateFormat: string;
45
+ shortTimeFormat: string;
46
+ dateLocale: any;
47
+ };
48
+ Calendar: {
49
+ sunday: string;
50
+ monday: string;
51
+ tuesday: string;
52
+ wednesday: string;
53
+ thursday: string;
54
+ friday: string;
55
+ saturday: string;
56
+ ok: string;
57
+ today: string;
58
+ yesterday: string;
59
+ now: string;
60
+ hours: string;
61
+ minutes: string;
62
+ seconds: string;
63
+ /**
64
+ * Reference from en_GB without modifications.
65
+ **/
66
+ formattedMonthPattern: string;
67
+ formattedDayPattern: string;
68
+ shortDateFormat: string;
69
+ shortTimeFormat: string;
70
+ dateLocale: any;
71
+ };
72
+ DatePicker: {
73
+ sunday: string;
74
+ monday: string;
75
+ tuesday: string;
76
+ wednesday: string;
77
+ thursday: string;
78
+ friday: string;
79
+ saturday: string;
80
+ ok: string;
81
+ today: string;
82
+ yesterday: string;
83
+ now: string;
84
+ hours: string;
85
+ minutes: string;
86
+ seconds: string;
87
+ /**
88
+ * Reference from en_GB without modifications.
89
+ **/
90
+ formattedMonthPattern: string;
91
+ formattedDayPattern: string;
92
+ shortDateFormat: string;
93
+ shortTimeFormat: string;
94
+ dateLocale: any;
95
+ };
96
+ DateRangePicker: {
97
+ last7Days: string;
98
+ sunday: string;
99
+ monday: string;
100
+ tuesday: string;
101
+ wednesday: string;
102
+ thursday: string;
103
+ friday: string;
104
+ saturday: string;
105
+ ok: string;
106
+ today: string;
107
+ yesterday: string;
108
+ now: string;
109
+ hours: string;
110
+ minutes: string;
111
+ seconds: string;
112
+ /**
113
+ * Reference from en_GB without modifications.
114
+ **/
115
+ formattedMonthPattern: string;
116
+ formattedDayPattern: string;
117
+ shortDateFormat: string;
118
+ shortTimeFormat: string;
119
+ dateLocale: any;
120
+ };
121
+ Combobox: {
122
+ noResultsText: string;
123
+ placeholder: string;
124
+ searchPlaceholder: string;
125
+ checkAll: string;
126
+ };
127
+ InputPicker: {
128
+ newItem: string;
129
+ createOption: string;
130
+ noResultsText: string;
131
+ placeholder: string;
132
+ searchPlaceholder: string;
133
+ checkAll: string;
134
+ };
135
+ TagPicker: {
136
+ newItem: string;
137
+ createOption: string;
138
+ noResultsText: string;
139
+ placeholder: string;
140
+ searchPlaceholder: string;
141
+ checkAll: string;
142
+ };
143
+ Uploader: {
144
+ inited: string;
145
+ progress: string;
146
+ error: string;
147
+ complete: string;
148
+ emptyFile: string;
149
+ upload: string;
150
+ removeFile: string;
151
+ };
152
+ CloseButton: {
153
+ closeLabel: string;
154
+ };
155
+ Breadcrumb: {
156
+ expandText: string;
157
+ };
158
+ Toggle: {
159
+ on: string;
160
+ off: string;
161
+ };
162
+ };
163
+ export default _default;
@@ -0,0 +1,89 @@
1
+ 'use client';
2
+ import _extends from "@babel/runtime/helpers/esm/extends";
3
+ import th from 'date-fns/locale/th';
4
+ var DateTimeFormats = {
5
+ sunday: 'อา.',
6
+ monday: 'จ.',
7
+ tuesday: 'อ.',
8
+ wednesday: 'พ.',
9
+ thursday: 'พฤ.',
10
+ friday: 'ศ.',
11
+ saturday: 'ส.',
12
+ ok: 'ตกลง',
13
+ today: 'วันนี้',
14
+ yesterday: 'เมื่อวาน',
15
+ now: 'ตอนนี้',
16
+ hours: 'ชั่วโมง',
17
+ minutes: 'นาที',
18
+ seconds: 'วินาที',
19
+ /**
20
+ * Reference from en_GB without modifications.
21
+ **/
22
+ formattedMonthPattern: 'MMM yyyy',
23
+ formattedDayPattern: 'dd MMM yyyy',
24
+ shortDateFormat: 'dd/MM/yyyy',
25
+ shortTimeFormat: 'HH:mm',
26
+ dateLocale: th
27
+ };
28
+ var Combobox = {
29
+ noResultsText: 'ไม่พบผลลัพธ์',
30
+ placeholder: 'เลือก',
31
+ searchPlaceholder: 'ค้นหา',
32
+ checkAll: 'ทั้งหมด'
33
+ };
34
+ var CreatableComboBox = _extends({}, Combobox, {
35
+ newItem: 'รายการใหม่',
36
+ createOption: 'สร้างรายการ "{0}"'
37
+ });
38
+ export default {
39
+ code: 'th-TH',
40
+ common: {
41
+ loading: 'กำลังโหลด...',
42
+ emptyMessage: 'ไม่พบข้อมูล',
43
+ remove: 'ลบ',
44
+ clear: 'ล้าง'
45
+ },
46
+ Plaintext: {
47
+ unfilled: 'ไม่ได้ระบุ',
48
+ notSelected: 'ไม่ได้เลือก',
49
+ notUploaded: 'ไม่ได้อัพโหลด'
50
+ },
51
+ Pagination: {
52
+ more: 'เพิ่มเติม',
53
+ prev: 'ก่อนหน้า',
54
+ next: 'ถัดไป',
55
+ first: 'หน้าแรก',
56
+ last: 'หน้าสุดท้าย',
57
+ limit: '{0} / หน้า',
58
+ total: 'รายการทั้งหมด: {0}',
59
+ skip: 'ไปยัง {0}'
60
+ },
61
+ DateTimeFormats: DateTimeFormats,
62
+ Calendar: DateTimeFormats,
63
+ DatePicker: DateTimeFormats,
64
+ DateRangePicker: _extends({}, DateTimeFormats, {
65
+ last7Days: '7 วันที่ผ่านมา'
66
+ }),
67
+ Combobox: Combobox,
68
+ InputPicker: CreatableComboBox,
69
+ TagPicker: CreatableComboBox,
70
+ Uploader: {
71
+ inited: 'เริ่มต้น',
72
+ progress: 'กำลังอัพโหลด',
73
+ error: 'ข้อผิดพลาด',
74
+ complete: 'เสร็จสมบูรณ์',
75
+ emptyFile: 'ว่างเปล่า',
76
+ upload: 'อัพโหลด',
77
+ removeFile: 'ลบไฟล์'
78
+ },
79
+ CloseButton: {
80
+ closeLabel: 'ปิด'
81
+ },
82
+ Breadcrumb: {
83
+ expandText: 'แสดงเส้นทาง'
84
+ },
85
+ Toggle: {
86
+ on: 'เปิด',
87
+ off: 'ปิด'
88
+ }
89
+ };
@@ -0,0 +1,151 @@
1
+ declare const _default: {
2
+ code: string;
3
+ common: {
4
+ loading: string;
5
+ emptyMessage: string;
6
+ remove: string;
7
+ clear: string;
8
+ };
9
+ Plaintext: {
10
+ unfilled: string;
11
+ notSelected: string;
12
+ notUploaded: string;
13
+ };
14
+ Pagination: {
15
+ more: string;
16
+ prev: string;
17
+ next: string;
18
+ first: string;
19
+ last: string;
20
+ limit: string;
21
+ total: string;
22
+ skip: string;
23
+ };
24
+ DateTimeFormats: {
25
+ sunday: string;
26
+ monday: string;
27
+ tuesday: string;
28
+ wednesday: string;
29
+ thursday: string;
30
+ friday: string;
31
+ saturday: string;
32
+ ok: string;
33
+ today: string;
34
+ yesterday: string;
35
+ now: string;
36
+ hours: string;
37
+ minutes: string;
38
+ seconds: string;
39
+ formattedMonthPattern: string;
40
+ formattedDayPattern: string;
41
+ shortDateFormat: string;
42
+ shortTimeFormat: string;
43
+ dateLocale: any;
44
+ };
45
+ Calendar: {
46
+ sunday: string;
47
+ monday: string;
48
+ tuesday: string;
49
+ wednesday: string;
50
+ thursday: string;
51
+ friday: string;
52
+ saturday: string;
53
+ ok: string;
54
+ today: string;
55
+ yesterday: string;
56
+ now: string;
57
+ hours: string;
58
+ minutes: string;
59
+ seconds: string;
60
+ formattedMonthPattern: string;
61
+ formattedDayPattern: string;
62
+ shortDateFormat: string;
63
+ shortTimeFormat: string;
64
+ dateLocale: any;
65
+ };
66
+ DatePicker: {
67
+ sunday: string;
68
+ monday: string;
69
+ tuesday: string;
70
+ wednesday: string;
71
+ thursday: string;
72
+ friday: string;
73
+ saturday: string;
74
+ ok: string;
75
+ today: string;
76
+ yesterday: string;
77
+ now: string;
78
+ hours: string;
79
+ minutes: string;
80
+ seconds: string;
81
+ formattedMonthPattern: string;
82
+ formattedDayPattern: string;
83
+ shortDateFormat: string;
84
+ shortTimeFormat: string;
85
+ dateLocale: any;
86
+ };
87
+ DateRangePicker: {
88
+ last7Days: string;
89
+ sunday: string;
90
+ monday: string;
91
+ tuesday: string;
92
+ wednesday: string;
93
+ thursday: string;
94
+ friday: string;
95
+ saturday: string;
96
+ ok: string;
97
+ today: string;
98
+ yesterday: string;
99
+ now: string;
100
+ hours: string;
101
+ minutes: string;
102
+ seconds: string;
103
+ formattedMonthPattern: string;
104
+ formattedDayPattern: string;
105
+ shortDateFormat: string;
106
+ shortTimeFormat: string;
107
+ dateLocale: any;
108
+ };
109
+ Combobox: {
110
+ noResultsText: string;
111
+ placeholder: string;
112
+ searchPlaceholder: string;
113
+ checkAll: string;
114
+ };
115
+ InputPicker: {
116
+ newItem: string;
117
+ createOption: string;
118
+ noResultsText: string;
119
+ placeholder: string;
120
+ searchPlaceholder: string;
121
+ checkAll: string;
122
+ };
123
+ TagPicker: {
124
+ newItem: string;
125
+ createOption: string;
126
+ noResultsText: string;
127
+ placeholder: string;
128
+ searchPlaceholder: string;
129
+ checkAll: string;
130
+ };
131
+ Uploader: {
132
+ inited: string;
133
+ progress: string;
134
+ error: string;
135
+ complete: string;
136
+ emptyFile: string;
137
+ upload: string;
138
+ removeFile: string;
139
+ };
140
+ CloseButton: {
141
+ closeLabel: string;
142
+ };
143
+ Breadcrumb: {
144
+ expandText: string;
145
+ };
146
+ Toggle: {
147
+ on: string;
148
+ off: string;
149
+ };
150
+ };
151
+ export default _default;
@@ -0,0 +1,86 @@
1
+ 'use client';
2
+ import _extends from "@babel/runtime/helpers/esm/extends";
3
+ import uk from 'date-fns/locale/uk';
4
+ var DateTimeFormats = {
5
+ sunday: 'Нд',
6
+ monday: 'Пн',
7
+ tuesday: 'Вт',
8
+ wednesday: 'Ср',
9
+ thursday: 'Чт',
10
+ friday: 'Пт',
11
+ saturday: 'Сб',
12
+ ok: 'ОК',
13
+ today: 'Сьогодні',
14
+ yesterday: 'Вчора',
15
+ now: 'Зараз',
16
+ hours: 'Години',
17
+ minutes: 'Хвилини',
18
+ seconds: 'Секунди',
19
+ formattedMonthPattern: 'MMM yyyy',
20
+ formattedDayPattern: 'dd MMM yyyy',
21
+ shortDateFormat: 'dd.MM.yyyy',
22
+ shortTimeFormat: 'HH:mm',
23
+ dateLocale: uk
24
+ };
25
+ var Combobox = {
26
+ noResultsText: 'Результати не знайдено',
27
+ placeholder: 'Вибрати',
28
+ searchPlaceholder: 'Пошук',
29
+ checkAll: 'Усі'
30
+ };
31
+ var CreatableComboBox = _extends({}, Combobox, {
32
+ newItem: 'Новий',
33
+ createOption: 'Створити опцію "{0}"'
34
+ });
35
+ export default {
36
+ code: 'uk-UA',
37
+ common: {
38
+ loading: 'Завантаження...',
39
+ emptyMessage: 'Дані не знайдено',
40
+ remove: 'Видалити',
41
+ clear: 'Очистити'
42
+ },
43
+ Plaintext: {
44
+ unfilled: 'Незаповнено',
45
+ notSelected: 'Не вибрано',
46
+ notUploaded: 'Не завантажено'
47
+ },
48
+ Pagination: {
49
+ more: 'Більше',
50
+ prev: 'Попередня',
51
+ next: 'Наступна',
52
+ first: 'Перша',
53
+ last: 'Остання',
54
+ limit: '{0} / сторінка',
55
+ total: 'Всього: {0}',
56
+ skip: 'Перейти до {0}'
57
+ },
58
+ DateTimeFormats: DateTimeFormats,
59
+ Calendar: DateTimeFormats,
60
+ DatePicker: DateTimeFormats,
61
+ DateRangePicker: _extends({}, DateTimeFormats, {
62
+ last7Days: 'Останні 7 днів'
63
+ }),
64
+ Combobox: Combobox,
65
+ InputPicker: CreatableComboBox,
66
+ TagPicker: CreatableComboBox,
67
+ Uploader: {
68
+ inited: 'Ініційовано',
69
+ progress: 'Завантаження',
70
+ error: 'Помилка',
71
+ complete: 'Завершено',
72
+ emptyFile: 'Порожній',
73
+ upload: 'Завантажити',
74
+ removeFile: 'Видалити файл'
75
+ },
76
+ CloseButton: {
77
+ closeLabel: 'Закрити'
78
+ },
79
+ Breadcrumb: {
80
+ expandText: 'Показати шлях'
81
+ },
82
+ Toggle: {
83
+ on: 'Увімкнено',
84
+ off: 'Вимкнено'
85
+ }
86
+ };
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "rsuite/locales/th_TH",
3
+ "private": true,
4
+ "main": "../../cjs/locales/th_TH.js",
5
+ "module": "../../esm/locales/th_TH.js",
6
+ "types": "../../esm/locales/th_TH.d.ts"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "rsuite/locales/uk_UA",
3
+ "private": true,
4
+ "main": "../../cjs/locales/uk_UA.js",
5
+ "module": "../../esm/locales/uk_UA.js",
6
+ "types": "../../esm/locales/uk_UA.d.ts"
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rsuite",
3
- "version": "5.81.0",
3
+ "version": "5.82.0",
4
4
  "description": "A suite of react components",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",