@hi-ui/hiui 4.16.3 → 4.16.5

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,5 +1,27 @@
1
1
  # @hi-ui/hiui
2
2
 
3
+ ## 4.16.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3382](https://github.com/XiaoMi/hiui/pull/3382) [`144de50f5`](https://github.com/XiaoMi/hiui/commit/144de50f528c834942d1d04467f7234c1710f758) Thanks [@zyprepare](https://github.com/zyprepare)! - fix(table): 统计行加上表头分组情况的处理 (#3381)
8
+
9
+ - [#3380](https://github.com/XiaoMi/hiui/pull/3380) [`9808ab271`](https://github.com/XiaoMi/hiui/commit/9808ab27177458431767602538ee52d1f2a3a9e6) Thanks [@zyprepare](https://github.com/zyprepare)! - fix(preview): prevent movement on right-click in Preview component (#3379)
10
+
11
+ - Updated dependencies [[`144de50f5`](https://github.com/XiaoMi/hiui/commit/144de50f528c834942d1d04467f7234c1710f758), [`d5b4363`](https://github.com/XiaoMi/hiui/commit/d5b4363888ebc0869a70482de2eb114326ee4d3c), [`9808ab271`](https://github.com/XiaoMi/hiui/commit/9808ab27177458431767602538ee52d1f2a3a9e6)]:
12
+ - @hi-ui/table@4.12.2
13
+ - @hi-ui/core@4.0.10
14
+ - @hi-ui/preview@4.2.2
15
+
16
+ ## 4.16.4
17
+
18
+ ### Patch Changes
19
+
20
+ - [#3364](https://github.com/XiaoMi/hiui/pull/3364) [`06d6dcf`](https://github.com/XiaoMi/hiui/commit/06d6dcff5282bb702791ab87e0690edc3828da5c) Thanks [@fcppddl](https://github.com/fcppddl)! - feat(check-tree-select): 支持自定义下拉菜单底部渲染 (#3363)
21
+
22
+ - Updated dependencies [[`06d6dcf`](https://github.com/XiaoMi/hiui/commit/06d6dcff5282bb702791ab87e0690edc3828da5c)]:
23
+ - @hi-ui/check-tree-select@4.7.5
24
+
3
25
  ## 4.16.3
4
26
 
5
27
  ### Patch Changes
@@ -16,6 +16,7 @@ var zhCN = require('./zh-CN.js');
16
16
  var enUS = require('./en-US.js');
17
17
  var zhHK = require('./zh-HK.js');
18
18
  var zhTW = require('./zh-TW.js');
19
+ var thTH = require('./th-TH.js');
19
20
 
20
21
  /** @LICENSE
21
22
  * @hi-ui/locale-context
@@ -31,6 +32,7 @@ var localeMap = {
31
32
  'zh-Hans': zhCN["default"],
32
33
  'en-US': enUS["default"],
33
34
  'zh-HK': zhHK["default"],
34
- 'zh-TW': zhTW["default"]
35
+ 'zh-TW': zhTW["default"],
36
+ 'th-TH': thTH["default"]
35
37
  };
36
38
  exports["default"] = localeMap;
@@ -0,0 +1,201 @@
1
+ /** @LICENSE
2
+ * @hi-ui/hiui
3
+ * https://github.com/XiaoMi/hiui/tree/master/packages/ui/hiui#readme
4
+ *
5
+ * Copyright (c) HiUI <mi-hiui@xiaomi.com>.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */
10
+ 'use strict';
11
+
12
+ Object.defineProperty(exports, '__esModule', {
13
+ value: true
14
+ });
15
+
16
+ /** @LICENSE
17
+ * @hi-ui/locale-context
18
+ * https://github.com/XiaoMi/hiui/tree/master/packages/ui/locale-context#readme
19
+ *
20
+ * Copyright (c) HiUI <mi-hiui@xiaomi.com>.
21
+ *
22
+ * This source code is licensed under the MIT license found in the
23
+ * LICENSE file in the root directory of this source tree.
24
+ */
25
+ var thTH = {
26
+ timePicker: {
27
+ ok: 'ตกลง',
28
+ to: '-',
29
+ now: 'ตอนนี้'
30
+ },
31
+ datePicker: {
32
+ ok: 'ตกลง',
33
+ to: '-',
34
+ placeholder: ['เลือกวันที่'],
35
+ placeholderTimePeriod: ['เลือกเวลา'],
36
+ dateChoose: 'เลือกวันที่',
37
+ timeChoose: 'เลือกเวลา',
38
+ undefinedType: 'ประเภทไม่ได้กำหนด',
39
+ lastWeek: 'สัปดาห์ที่แล้ว',
40
+ lastMonth: 'เดือนที่แล้ว',
41
+ lastThreeMonth: 'สามเดือนที่แล้ว',
42
+ lastYear: 'ปีที่แล้ว',
43
+ month: ['ม.ค.', 'ก.พ.', 'มี.ค.', 'เม.ย.', 'พ.ค.', 'มิ.ย.', 'ก.ค.', 'ส.ค.', 'ก.ย.', 'ต.ค.', 'พ.ย.', 'ธ.ค.'],
44
+ monthShort: ['ม.ค.', 'ก.พ.', 'มี.ค.', 'เม.ย.', 'พ.ค.', 'มิ.ย.', 'ก.ค.', 'ส.ค.', 'ก.ย.', 'ต.ค.', 'พ.ย.', 'ธ.ค.'],
45
+ week: ['อา.', 'จ.', 'อ.', 'พ.', 'พฤ.', 'ศ.', 'ส.'],
46
+ placeholders: {
47
+ year: ['เลือกปี'],
48
+ quarter: ['เลือกไตรมาส'],
49
+ month: ['เลือกเดือน'],
50
+ week: ['เลือกสัปดาห์'],
51
+ date: ['เลือกวันที่'],
52
+ time: ['เลือกเวลา'],
53
+ yearrange: ['เลือกปีเริ่มต้น', 'เลือกปีสิ้นสุด'],
54
+ quarterrange: ['เลือกไตรมาสเริ่มต้น', 'เลือกไตรมาสสิ้นสุด'],
55
+ monthrange: ['เลือกเดือนเริ่มต้น', 'เลือกเดือนสิ้นสุด'],
56
+ weekrange: ['เลือกสัปดาห์เริ่มต้น', 'เลือกสัปดาห์สิ้นสุด'],
57
+ daterange: ['เลือกวันที่เริ่มต้น', 'เลือกวันที่สิ้นสุด'],
58
+ timeperiod: ['เลือกวันที่และเวลาเริ่มต้น', 'เลือกวันที่และเวลาสิ้นสุด'],
59
+ timerange: ['เลือกวันที่และเวลาเริ่มต้น', 'เลือกวันที่และเวลาสิ้นสุด']
60
+ },
61
+ timePeriod: 'ช่วงเวลา',
62
+ hours: 'ช',
63
+ minutes: 'น',
64
+ seconds: 'ว',
65
+ weekRange: '{{year}}-W{{week}}'
66
+ },
67
+ pagination: {
68
+ total: ['ทั้งหมด', 'รายการ'],
69
+ simple: ['', 'หน้า', '', 'หน้า', 'รายการ'],
70
+ item: '',
71
+ itemPerPage: 'หน้า',
72
+ "goto": 'ไปที่',
73
+ page: ''
74
+ },
75
+ cascader: {
76
+ placeholder: 'กรุณาเลือก',
77
+ noFoundTip: 'ไม่พบ'
78
+ },
79
+ checkCascader: {
80
+ placeholder: 'กรุณาเลือก',
81
+ noFoundTip: 'ไม่พบ'
82
+ },
83
+ select: {
84
+ placeholder: 'กรุณาเลือก',
85
+ emptyContent: 'ไม่พบ',
86
+ searchPlaceholder: 'กรุณาค้นหา',
87
+ checkAll: 'เลือกทั้งหมด',
88
+ justSelected: 'เลือกไปแล้ว'
89
+ },
90
+ selectTree: {
91
+ back: 'กลับ',
92
+ search: 'ค้นหา',
93
+ placeholder: 'กรุณาเลือก',
94
+ emptyContent: 'ไม่พบ'
95
+ },
96
+ search: {
97
+ searchEmptyResult: 'ไม่มีผลการค้นหา',
98
+ searchEmptyRecord: 'ไม่มีบันทึกการค้นหา',
99
+ searchRecord: 'บันทึกการค้นหา'
100
+ },
101
+ transfer: {
102
+ checkAll: 'เลือกทั้งหมด',
103
+ items: 'รายการ',
104
+ searchPlaceholder: 'กรุณาค้นหา',
105
+ emptyContent: 'ไม่มีข้อมูล',
106
+ limit: 'ถึงขีดจำกัด ไม่สามารถเพิ่มได้'
107
+ },
108
+ upload: {
109
+ buttonText: 'อัปโหลด',
110
+ uploadSuccess: 'สำเร็จ',
111
+ cancel: 'ยกเลิก',
112
+ "delete": 'ลบ',
113
+ drag: 'คลิกหรือลากและวางไฟล์เพื่ออัปโหลด',
114
+ dragTips: 'กรุณาคลิกหรือลากและวางไฟล์เพื่ออัปโหลด',
115
+ dragTipsLimited: 'จำนวนถึงขีดจำกัดแล้ว',
116
+ preview: 'ตัวอย่าง',
117
+ modalTiptitle: 'อัปโหลดล้มเหลว',
118
+ modalTiptxt: 'ไฟล์ที่อัปโหลดเกินขนาดการอัปโหลดที่ระบุ',
119
+ modalBtn: 'ฉันเข้าใจแล้ว',
120
+ modalTitle: 'การแจ้งเตือน'
121
+ },
122
+ modal: {
123
+ confirmText: 'ตกลง',
124
+ cancelText: 'ยกเลิก'
125
+ },
126
+ tabs: {
127
+ more: 'เพิ่มเติม'
128
+ },
129
+ timeline: {
130
+ expand: 'ขยาย',
131
+ collapse: 'ยุบ'
132
+ },
133
+ form: {
134
+ colon: ':'
135
+ },
136
+ tree: {
137
+ addNode: 'เพิ่มโหนด',
138
+ addChildNode: 'เพิ่มโหนดลูก',
139
+ edit: 'แก้ไขโหนด',
140
+ del: 'ลบ',
141
+ confirm: 'ยืนยัน',
142
+ cancel: 'ยกเลิก',
143
+ nodePlaceholder: 'กรุณาป้อนชื่อโหนด',
144
+ searchPlaceholder: 'ค้นหาคำสำคัญ',
145
+ searchEmptyResult: 'ไม่มีผลการค้นหา',
146
+ modalTitle: 'คำเตือน',
147
+ delTips: 'การลบโหนดจะลบโหนดลูกทั้งหมด คุณแน่ใจหรือว่าต้องการลบโหนดนี้?'
148
+ },
149
+ table: {
150
+ emptyContent: 'ไม่มีข้อมูล',
151
+ confirm: 'ยืนยัน',
152
+ reset: 'รีเซ็ต',
153
+ ascend: 'จากน้อยไปมาก',
154
+ descend: 'จากมากไปน้อย',
155
+ highlight: 'ไฮไลต์',
156
+ freeze: 'ปักหมุด',
157
+ total: 'ทั้งหมด',
158
+ average: 'เฉลี่ย',
159
+ fieldExplorer: 'ตัวสำรวจฟิลด์'
160
+ },
161
+ watermark: {
162
+ content: 'โปรดอย่า gaiden'
163
+ },
164
+ emptyState: {
165
+ emptyContent: 'ไม่มีข้อมูล'
166
+ },
167
+ checkSelect: {
168
+ placeholder: 'กรุณาเลือก',
169
+ emptyContent: 'ไม่พบ',
170
+ searchPlaceholder: 'กรุณาค้นหา',
171
+ checkAll: 'เลือกทั้งหมด',
172
+ justSelected: 'เลือกไปแล้ว'
173
+ },
174
+ treeSelect: {
175
+ placeholder: 'กรุณาเลือก'
176
+ },
177
+ checkTreeSelect: {
178
+ placeholder: 'กรุณาเลือก'
179
+ },
180
+ picker: {
181
+ placeholder: 'กรุณาเลือก',
182
+ emptyContent: 'ไม่มีข้อมูล',
183
+ noFoundTip: 'ไม่พบ',
184
+ searchPlaceholder: 'กรุณาค้นหา',
185
+ loadingContent: 'กำลังโหลดข้อมูล...'
186
+ },
187
+ zenMode: {
188
+ back: 'กลับ'
189
+ },
190
+ popConfirm: {
191
+ confirmText: 'ตกลง',
192
+ cancelText: 'ยกเลิก'
193
+ },
194
+ tag: {
195
+ add: 'เพิ่ม'
196
+ },
197
+ backTop: {
198
+ backToTop: 'กลับไปด้านบน'
199
+ }
200
+ };
201
+ exports["default"] = thTH;
@@ -11,6 +11,7 @@ import zhCN from './zh-CN.js';
11
11
  import enUS from './en-US.js';
12
12
  import zhHK from './zh-HK.js';
13
13
  import zhTW from './zh-TW.js';
14
+ import thTH from './th-TH.js';
14
15
 
15
16
  /** @LICENSE
16
17
  * @hi-ui/locale-context
@@ -26,6 +27,7 @@ var localeMap = {
26
27
  'zh-Hans': zhCN,
27
28
  'en-US': enUS,
28
29
  'zh-HK': zhHK,
29
- 'zh-TW': zhTW
30
+ 'zh-TW': zhTW,
31
+ 'th-TH': thTH
30
32
  };
31
33
  export { localeMap as default };
@@ -0,0 +1,195 @@
1
+ /** @LICENSE
2
+ * @hi-ui/hiui
3
+ * https://github.com/XiaoMi/hiui/tree/master/packages/ui/hiui#readme
4
+ *
5
+ * Copyright (c) HiUI <mi-hiui@xiaomi.com>.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */
10
+ /** @LICENSE
11
+ * @hi-ui/locale-context
12
+ * https://github.com/XiaoMi/hiui/tree/master/packages/ui/locale-context#readme
13
+ *
14
+ * Copyright (c) HiUI <mi-hiui@xiaomi.com>.
15
+ *
16
+ * This source code is licensed under the MIT license found in the
17
+ * LICENSE file in the root directory of this source tree.
18
+ */
19
+ var thTH = {
20
+ timePicker: {
21
+ ok: 'ตกลง',
22
+ to: '-',
23
+ now: 'ตอนนี้'
24
+ },
25
+ datePicker: {
26
+ ok: 'ตกลง',
27
+ to: '-',
28
+ placeholder: ['เลือกวันที่'],
29
+ placeholderTimePeriod: ['เลือกเวลา'],
30
+ dateChoose: 'เลือกวันที่',
31
+ timeChoose: 'เลือกเวลา',
32
+ undefinedType: 'ประเภทไม่ได้กำหนด',
33
+ lastWeek: 'สัปดาห์ที่แล้ว',
34
+ lastMonth: 'เดือนที่แล้ว',
35
+ lastThreeMonth: 'สามเดือนที่แล้ว',
36
+ lastYear: 'ปีที่แล้ว',
37
+ month: ['ม.ค.', 'ก.พ.', 'มี.ค.', 'เม.ย.', 'พ.ค.', 'มิ.ย.', 'ก.ค.', 'ส.ค.', 'ก.ย.', 'ต.ค.', 'พ.ย.', 'ธ.ค.'],
38
+ monthShort: ['ม.ค.', 'ก.พ.', 'มี.ค.', 'เม.ย.', 'พ.ค.', 'มิ.ย.', 'ก.ค.', 'ส.ค.', 'ก.ย.', 'ต.ค.', 'พ.ย.', 'ธ.ค.'],
39
+ week: ['อา.', 'จ.', 'อ.', 'พ.', 'พฤ.', 'ศ.', 'ส.'],
40
+ placeholders: {
41
+ year: ['เลือกปี'],
42
+ quarter: ['เลือกไตรมาส'],
43
+ month: ['เลือกเดือน'],
44
+ week: ['เลือกสัปดาห์'],
45
+ date: ['เลือกวันที่'],
46
+ time: ['เลือกเวลา'],
47
+ yearrange: ['เลือกปีเริ่มต้น', 'เลือกปีสิ้นสุด'],
48
+ quarterrange: ['เลือกไตรมาสเริ่มต้น', 'เลือกไตรมาสสิ้นสุด'],
49
+ monthrange: ['เลือกเดือนเริ่มต้น', 'เลือกเดือนสิ้นสุด'],
50
+ weekrange: ['เลือกสัปดาห์เริ่มต้น', 'เลือกสัปดาห์สิ้นสุด'],
51
+ daterange: ['เลือกวันที่เริ่มต้น', 'เลือกวันที่สิ้นสุด'],
52
+ timeperiod: ['เลือกวันที่และเวลาเริ่มต้น', 'เลือกวันที่และเวลาสิ้นสุด'],
53
+ timerange: ['เลือกวันที่และเวลาเริ่มต้น', 'เลือกวันที่และเวลาสิ้นสุด']
54
+ },
55
+ timePeriod: 'ช่วงเวลา',
56
+ hours: 'ช',
57
+ minutes: 'น',
58
+ seconds: 'ว',
59
+ weekRange: '{{year}}-W{{week}}'
60
+ },
61
+ pagination: {
62
+ total: ['ทั้งหมด', 'รายการ'],
63
+ simple: ['', 'หน้า', '', 'หน้า', 'รายการ'],
64
+ item: '',
65
+ itemPerPage: 'หน้า',
66
+ "goto": 'ไปที่',
67
+ page: ''
68
+ },
69
+ cascader: {
70
+ placeholder: 'กรุณาเลือก',
71
+ noFoundTip: 'ไม่พบ'
72
+ },
73
+ checkCascader: {
74
+ placeholder: 'กรุณาเลือก',
75
+ noFoundTip: 'ไม่พบ'
76
+ },
77
+ select: {
78
+ placeholder: 'กรุณาเลือก',
79
+ emptyContent: 'ไม่พบ',
80
+ searchPlaceholder: 'กรุณาค้นหา',
81
+ checkAll: 'เลือกทั้งหมด',
82
+ justSelected: 'เลือกไปแล้ว'
83
+ },
84
+ selectTree: {
85
+ back: 'กลับ',
86
+ search: 'ค้นหา',
87
+ placeholder: 'กรุณาเลือก',
88
+ emptyContent: 'ไม่พบ'
89
+ },
90
+ search: {
91
+ searchEmptyResult: 'ไม่มีผลการค้นหา',
92
+ searchEmptyRecord: 'ไม่มีบันทึกการค้นหา',
93
+ searchRecord: 'บันทึกการค้นหา'
94
+ },
95
+ transfer: {
96
+ checkAll: 'เลือกทั้งหมด',
97
+ items: 'รายการ',
98
+ searchPlaceholder: 'กรุณาค้นหา',
99
+ emptyContent: 'ไม่มีข้อมูล',
100
+ limit: 'ถึงขีดจำกัด ไม่สามารถเพิ่มได้'
101
+ },
102
+ upload: {
103
+ buttonText: 'อัปโหลด',
104
+ uploadSuccess: 'สำเร็จ',
105
+ cancel: 'ยกเลิก',
106
+ "delete": 'ลบ',
107
+ drag: 'คลิกหรือลากและวางไฟล์เพื่ออัปโหลด',
108
+ dragTips: 'กรุณาคลิกหรือลากและวางไฟล์เพื่ออัปโหลด',
109
+ dragTipsLimited: 'จำนวนถึงขีดจำกัดแล้ว',
110
+ preview: 'ตัวอย่าง',
111
+ modalTiptitle: 'อัปโหลดล้มเหลว',
112
+ modalTiptxt: 'ไฟล์ที่อัปโหลดเกินขนาดการอัปโหลดที่ระบุ',
113
+ modalBtn: 'ฉันเข้าใจแล้ว',
114
+ modalTitle: 'การแจ้งเตือน'
115
+ },
116
+ modal: {
117
+ confirmText: 'ตกลง',
118
+ cancelText: 'ยกเลิก'
119
+ },
120
+ tabs: {
121
+ more: 'เพิ่มเติม'
122
+ },
123
+ timeline: {
124
+ expand: 'ขยาย',
125
+ collapse: 'ยุบ'
126
+ },
127
+ form: {
128
+ colon: ':'
129
+ },
130
+ tree: {
131
+ addNode: 'เพิ่มโหนด',
132
+ addChildNode: 'เพิ่มโหนดลูก',
133
+ edit: 'แก้ไขโหนด',
134
+ del: 'ลบ',
135
+ confirm: 'ยืนยัน',
136
+ cancel: 'ยกเลิก',
137
+ nodePlaceholder: 'กรุณาป้อนชื่อโหนด',
138
+ searchPlaceholder: 'ค้นหาคำสำคัญ',
139
+ searchEmptyResult: 'ไม่มีผลการค้นหา',
140
+ modalTitle: 'คำเตือน',
141
+ delTips: 'การลบโหนดจะลบโหนดลูกทั้งหมด คุณแน่ใจหรือว่าต้องการลบโหนดนี้?'
142
+ },
143
+ table: {
144
+ emptyContent: 'ไม่มีข้อมูล',
145
+ confirm: 'ยืนยัน',
146
+ reset: 'รีเซ็ต',
147
+ ascend: 'จากน้อยไปมาก',
148
+ descend: 'จากมากไปน้อย',
149
+ highlight: 'ไฮไลต์',
150
+ freeze: 'ปักหมุด',
151
+ total: 'ทั้งหมด',
152
+ average: 'เฉลี่ย',
153
+ fieldExplorer: 'ตัวสำรวจฟิลด์'
154
+ },
155
+ watermark: {
156
+ content: 'โปรดอย่า gaiden'
157
+ },
158
+ emptyState: {
159
+ emptyContent: 'ไม่มีข้อมูล'
160
+ },
161
+ checkSelect: {
162
+ placeholder: 'กรุณาเลือก',
163
+ emptyContent: 'ไม่พบ',
164
+ searchPlaceholder: 'กรุณาค้นหา',
165
+ checkAll: 'เลือกทั้งหมด',
166
+ justSelected: 'เลือกไปแล้ว'
167
+ },
168
+ treeSelect: {
169
+ placeholder: 'กรุณาเลือก'
170
+ },
171
+ checkTreeSelect: {
172
+ placeholder: 'กรุณาเลือก'
173
+ },
174
+ picker: {
175
+ placeholder: 'กรุณาเลือก',
176
+ emptyContent: 'ไม่มีข้อมูล',
177
+ noFoundTip: 'ไม่พบ',
178
+ searchPlaceholder: 'กรุณาค้นหา',
179
+ loadingContent: 'กำลังโหลดข้อมูล...'
180
+ },
181
+ zenMode: {
182
+ back: 'กลับ'
183
+ },
184
+ popConfirm: {
185
+ confirmText: 'ตกลง',
186
+ cancelText: 'ยกเลิก'
187
+ },
188
+ tag: {
189
+ add: 'เพิ่ม'
190
+ },
191
+ backTop: {
192
+ backToTop: 'กลับไปด้านบน'
193
+ }
194
+ };
195
+ export { thTH as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hi-ui/hiui",
3
- "version": "4.16.3",
3
+ "version": "4.16.5",
4
4
  "description": "The root-package for @hi-ui/hiui.",
5
5
  "keywords": [],
6
6
  "author": "HiUI <mi-hiui@xiaomi.com>",
@@ -55,7 +55,7 @@
55
55
  "@hi-ui/cascader": "^4.5.0",
56
56
  "@hi-ui/check-cascader": "^4.5.2",
57
57
  "@hi-ui/check-select": "^4.6.4",
58
- "@hi-ui/check-tree-select": "^4.7.4",
58
+ "@hi-ui/check-tree-select": "^4.7.5",
59
59
  "@hi-ui/checkbox": "^4.0.10",
60
60
  "@hi-ui/collapse": "^4.1.6",
61
61
  "@hi-ui/counter": "^4.1.9",
@@ -82,7 +82,7 @@
82
82
  "@hi-ui/picker": "^4.1.8",
83
83
  "@hi-ui/pop-confirm": "^4.2.5",
84
84
  "@hi-ui/popover": "^4.2.0",
85
- "@hi-ui/preview": "^4.2.1",
85
+ "@hi-ui/preview": "^4.2.2",
86
86
  "@hi-ui/progress": "^4.0.11",
87
87
  "@hi-ui/provider": "^4.1.1",
88
88
  "@hi-ui/radio": "^4.1.4",
@@ -97,7 +97,7 @@
97
97
  "@hi-ui/stepper": "^4.1.0",
98
98
  "@hi-ui/svg-icon": "^4.0.8",
99
99
  "@hi-ui/switch": "^4.0.11",
100
- "@hi-ui/table": "^4.12.1",
100
+ "@hi-ui/table": "^4.12.2",
101
101
  "@hi-ui/tabs": "^4.2.0",
102
102
  "@hi-ui/tag": "^4.3.0",
103
103
  "@hi-ui/textarea": "^4.1.7",
@@ -112,12 +112,12 @@
112
112
  "@hi-ui/zen-mode": "^4.0.8"
113
113
  },
114
114
  "peerDependencies": {
115
- "@hi-ui/core": ">=4.0.9",
115
+ "@hi-ui/core": ">=4.0.10",
116
116
  "react": ">=16.8.6",
117
117
  "react-dom": ">=16.8.6"
118
118
  },
119
119
  "devDependencies": {
120
- "@hi-ui/core": "^4.0.9",
120
+ "@hi-ui/core": "^4.0.10",
121
121
  "@hi-ui/core-css": "^4.1.5",
122
122
  "react": "^17.0.1",
123
123
  "react-dom": "^17.0.1"