@unicom-cloud/ui 0.8.106 → 0.8.108

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.
Files changed (197) hide show
  1. package/App.js +7 -0
  2. package/BackTop.js +2 -4
  3. package/Calendar.js +2 -2
  4. package/ColorPicker.js +15 -14
  5. package/Constant.js +4 -0
  6. package/Copy.js +4 -3
  7. package/Countdown.js +25 -0
  8. package/Grid.js +8 -10
  9. package/LiquidFill.js +4 -3
  10. package/List.js +7 -6
  11. package/Marquee.js +4 -3
  12. package/Modal.js +4 -2
  13. package/PageHeader.js +3 -2
  14. package/QrCode.js +4 -3
  15. package/RowCol.js +8 -0
  16. package/Segmented.js +14 -4
  17. package/Statistic.js +5 -4
  18. package/Tour.js +4 -3
  19. package/Transfer.js +4 -2
  20. package/anchor/Link.js +1 -1
  21. package/app/App.js +26 -0
  22. package/app/context.js +9 -0
  23. package/app/index.js +9 -0
  24. package/app/interface.js +1 -0
  25. package/app/useApp.js +8 -0
  26. package/avatar/Group.js +1 -1
  27. package/back-top/index.js +44 -56
  28. package/button/index.js +52 -51
  29. package/calendar/Lunar.js +71 -0
  30. package/calendar/index.js +11 -11
  31. package/cascader/base/node.js +22 -20
  32. package/cascader/base/store.js +10 -10
  33. package/cascader/util.js +29 -27
  34. package/color-picker/Mode.js +8 -7
  35. package/color-picker/hooks/useColorPicker.js +56 -55
  36. package/color-picker/index.js +49 -48
  37. package/color-picker/utils.js +58 -57
  38. package/components/common/empty/index.js +2 -2
  39. package/components/common/flex/index.js +64 -55
  40. package/components/common/flex/interface.js +6 -6
  41. package/components/common/hooks/useInterval.js +6 -6
  42. package/components/common/icons/file/index.js +13 -11
  43. package/components/common/space/index.js +53 -53
  44. package/components/common/utils/dayjs.js +114 -126
  45. package/components/common/utils/is.js +98 -104
  46. package/components/common/utils/setDir.js +12 -0
  47. package/components/common/utils/setTheme.js +13 -13
  48. package/components/common/utils/toArray.js +7 -5
  49. package/config-provider/ConfigProvider.js +32 -30
  50. package/constant/index.js +4 -0
  51. package/copy/index.js +2 -1
  52. package/countdown/index.js +113 -0
  53. package/countdown/interface.js +1 -0
  54. package/countdown/util.js +29 -0
  55. package/descriptions/index.js +45 -45
  56. package/divider/index.js +28 -20
  57. package/dropdown/Button.js +1 -1
  58. package/empty/index.js +1 -1
  59. package/flex/index.js +30 -29
  60. package/form/FormItem.js +126 -122
  61. package/grid/Grid.js +56 -90
  62. package/grid/Item.js +44 -65
  63. package/grid/context.js +2 -6
  64. package/grid/index.js +6 -8
  65. package/grid/util.js +6 -44
  66. package/hooks/useResponsiveState.js +54 -0
  67. package/index.js +614 -605
  68. package/input/Button.js +12 -12
  69. package/input/Group.js +11 -12
  70. package/input/Input.js +112 -102
  71. package/input/InputElement.js +25 -24
  72. package/input/Search.js +24 -24
  73. package/layout/Sider.js +1 -1
  74. package/liquid-fill/index.js +4 -3
  75. package/list/Item.js +21 -21
  76. package/list/index.js +53 -52
  77. package/marquee/index.js +20 -19
  78. package/marquee-/index.js +4 -3
  79. package/mentions/util.js +9 -8
  80. package/modal/Confirm.js +17 -17
  81. package/modal/Modal.js +247 -237
  82. package/modal/index.js +4 -2
  83. package/modal/use-modal/index.js +2 -2
  84. package/package.json +1 -1
  85. package/page-header/index.js +57 -56
  86. package/pagination/Pagination.js +89 -92
  87. package/qr-code/index.js +4 -3
  88. package/radio/Group.js +1 -1
  89. package/row-col/Col-.js +88 -0
  90. package/row-col/Col.js +159 -0
  91. package/row-col/Row.js +73 -0
  92. package/row-col/context.js +5 -0
  93. package/row-col/index.js +11 -0
  94. package/row-col/interface.js +1 -0
  95. package/segmented/index.js +257 -206
  96. package/select/Select.js +191 -191
  97. package/select/util.js +50 -50
  98. package/select-view/Core.js +31 -28
  99. package/space/index.js +15 -13
  100. package/splitter/SplitBar.js +44 -46
  101. package/statistic/index.js +56 -55
  102. package/statistic/interface.js +4 -1
  103. package/style.css +1 -1
  104. package/table/Table.js +198 -210
  105. package/table/hook/useColumns.js +27 -26
  106. package/table/hook/useStickyClassNames.js +9 -8
  107. package/table/hook/useThResizable.js +4 -3
  108. package/table/th-resizable/index.js +2 -2
  109. package/table/thead/index.js +18 -16
  110. package/time-picker/util.js +20 -30
  111. package/timeline/Item.js +1 -1
  112. package/tour/index.js +4 -3
  113. package/transfer/index.js +93 -91
  114. package/trigger/index.js +66 -66
  115. package/types/common/development/interface.d.ts +3 -3
  116. package/types/common/flex/index.d.ts +3 -9
  117. package/types/common/flex/interface.d.ts +15 -4
  118. package/types/common/space/index.d.ts +3 -5
  119. package/types/common/space/interface.d.ts +2 -0
  120. package/types/common/utils/dayjs.d.ts +3 -1
  121. package/types/common/utils/is.d.ts +3 -4
  122. package/types/common/utils/setDir.d.ts +2 -0
  123. package/types/pc/app/App.d.ts +6 -0
  124. package/types/pc/app/context.d.ts +4 -0
  125. package/types/pc/app/index.d.ts +5 -0
  126. package/types/pc/app/interface.d.ts +17 -0
  127. package/types/pc/app/useApp.d.ts +3 -0
  128. package/types/pc/back-top/interface.d.ts +4 -17
  129. package/types/pc/button/interface.d.ts +2 -2
  130. package/types/pc/calendar/Lunar.d.ts +17 -0
  131. package/types/pc/calendar/index.d.ts +1 -1
  132. package/types/pc/config-provider/interface.d.ts +17 -12
  133. package/types/pc/constant/index.d.ts +1 -0
  134. package/types/pc/countdown/interface.d.ts +65 -0
  135. package/types/pc/countdown/util.d.ts +7 -0
  136. package/types/pc/divider/interface.d.ts +1 -0
  137. package/types/pc/flex/index.d.ts +8 -6
  138. package/types/pc/flex/interface.d.ts +3 -10
  139. package/types/pc/form/FormItem.d.ts +1 -1
  140. package/types/pc/form/interface.d.ts +1 -1
  141. package/types/pc/grid/Grid.d.ts +2 -4
  142. package/types/pc/grid/Item.d.ts +1 -5
  143. package/types/pc/grid/context.d.ts +4 -15
  144. package/types/pc/grid/index.d.ts +4 -6
  145. package/types/pc/grid/interface.d.ts +14 -142
  146. package/types/pc/grid/util.d.ts +1 -10
  147. package/types/pc/hooks/useResponsiveState.d.ts +3 -0
  148. package/types/pc/index.d.ts +10 -4
  149. package/types/pc/input/Button.d.ts +2 -2
  150. package/types/pc/list/interface.d.ts +2 -1
  151. package/types/pc/message/index.d.ts +1 -9
  152. package/types/pc/message/interface.d.ts +8 -0
  153. package/types/pc/message/useMessage.d.ts +1 -2
  154. package/types/pc/modal/Modal.d.ts +1 -0
  155. package/types/pc/modal/config.d.ts +1 -2
  156. package/types/pc/modal/index.d.ts +2 -1
  157. package/types/pc/modal/interface.d.ts +17 -5
  158. package/types/pc/notification/index.d.ts +2 -9
  159. package/types/pc/notification/interface.d.ts +7 -0
  160. package/types/pc/notification/useNotification.d.ts +1 -2
  161. package/types/pc/pagination/PageOption.d.ts +0 -1
  162. package/types/pc/pagination/interface.d.ts +5 -6
  163. package/types/pc/{grid → row-col}/Col-.d.ts +1 -1
  164. package/types/pc/{grid → row-col}/Col.d.ts +1 -2
  165. package/types/pc/{grid → row-col}/Row.d.ts +1 -2
  166. package/types/pc/row-col/context.d.ts +6 -0
  167. package/types/pc/row-col/index.d.ts +7 -0
  168. package/types/pc/row-col/interface.d.ts +112 -0
  169. package/types/pc/segmented/index.d.ts +3 -7
  170. package/types/pc/segmented/interface.d.ts +38 -5
  171. package/types/pc/select-view/Core.d.ts +1 -8
  172. package/types/pc/select-view/index.d.ts +1 -8
  173. package/types/pc/select-view/interface.d.ts +9 -2
  174. package/types/pc/space/index.d.ts +5 -7
  175. package/types/pc/space/interface.d.ts +3 -10
  176. package/types/pc/statistic/index.d.ts +1 -1
  177. package/types/pc/statistic/interface.d.ts +1 -49
  178. package/types/pc/utils/is.d.ts +1 -1
  179. package/types/pc/utils/names.d.ts +422 -111
  180. package/types/pc/utils/responsiveObserve.d.ts +8 -8
  181. package/typography/Ellipsis.js +5 -4
  182. package/typography/Operations.js +4 -3
  183. package/utils/dayjs.js +13 -11
  184. package/utils/index.js +245 -244
  185. package/utils/is.js +65 -66
  186. package/utils/names.js +309 -150
  187. package/utils/responsiveObserve.js +43 -36
  188. package/version/index.js +1 -1
  189. package/grid/Col-.js +0 -86
  190. package/grid/Col.js +0 -169
  191. package/grid/Row.js +0 -96
  192. package/grid/hook/useResponsiveState.js +0 -38
  193. package/statistic/Countdown.js +0 -56
  194. package/statistic/util.js +0 -33
  195. package/types/pc/grid/hook/useResponsiveState.d.ts +0 -2
  196. package/types/pc/statistic/util.d.ts +0 -1
  197. /package/types/pc/{statistic/Countdown.d.ts → countdown/index.d.ts} +0 -0
package/utils/names.js CHANGED
@@ -1,579 +1,738 @@
1
1
  const e = {
2
2
  Affix: {
3
3
  zh: "固钉",
4
- en: "Affix"
4
+ en: "Affix",
5
+ id: "d2728564-b6e8-4341-ac0c-1c1596fc280f"
5
6
  },
6
7
  Alert: {
7
8
  zh: "警告提示",
8
- en: "Alert"
9
+ en: "Alert",
10
+ id: "a2874d49-56b0-4877-8f86-6aba87bdf3f8"
9
11
  },
10
12
  Details: {
11
13
  zh: "概要",
12
- en: "Details"
14
+ en: "Details",
15
+ id: "4d8ffcba-7217-4b8d-9e52-d06c097908a6"
13
16
  },
14
17
  Anchor: {
15
18
  zh: "锚点",
16
- en: "Anchor"
19
+ en: "Anchor",
20
+ id: "7e221852-5fd3-45b8-8711-faedd8d24b2b"
17
21
  },
18
22
  AnchorLink: {
19
23
  zh: "锚点.链接",
20
- en: "Anchor.Link"
24
+ en: "Anchor.Link",
25
+ id: "f8149251-e833-4078-9e9f-ee7ce1bd1871"
21
26
  },
22
27
  AutoComplete: {
23
28
  zh: "自动补全",
24
- en: "AutoComplete"
29
+ en: "AutoComplete",
30
+ id: "7fd3b1c4-84c9-4fb6-ba35-f9dbe97ae2b1"
25
31
  },
26
32
  AutoCompleteOptGroup: {
27
33
  zh: "自动补全.项目组",
28
- en: "AutoComplete.OptGroup"
34
+ en: "AutoComplete.OptGroup",
35
+ id: "eaf88b25-108e-4ab9-b1a4-ea3d890ab4a0"
29
36
  },
30
37
  AutoCompleteOption: {
31
38
  zh: "自动补全.项",
32
- en: "AutoComplete.Option"
39
+ en: "AutoComplete.Option",
40
+ id: "fbd475a4-83aa-4267-9582-fa665d295b9e"
33
41
  },
34
42
  Avatar: {
35
43
  zh: "头像",
36
- en: "Avatar"
44
+ en: "Avatar",
45
+ id: "461e1483-c7da-46a7-a908-aac1807d7468"
37
46
  },
38
47
  AvatarGroup: {
39
48
  zh: "头像.组",
40
- en: "Avatar.Group"
49
+ en: "Avatar.Group",
50
+ id: "07655506-798b-48be-b6df-4b01e5f22619"
41
51
  },
42
52
  BackTop: {
43
53
  zh: "返回顶部",
44
- en: "BackTop"
54
+ en: "BackTop",
55
+ id: "fa71dd3a-6462-4577-91d7-5c79454a77b2"
45
56
  },
46
57
  Badge: {
47
58
  zh: "徽标",
48
- en: "Badge"
59
+ en: "Badge",
60
+ id: "31e5cde7-8baa-4ba9-8e94-c100719d0db2"
49
61
  },
50
62
  BadgeCount: {
51
63
  zh: "徽标.数字",
52
- en: "Badge.Count"
64
+ en: "Badge.Count",
65
+ id: "3a33f221-90e9-4209-8914-6a2a1a473d5f"
53
66
  },
54
67
  Breadcrumb: {
55
68
  zh: "面包屑",
56
- en: "Breadcrumb"
69
+ en: "Breadcrumb",
70
+ id: "86328c41-6967-44de-ad74-32f920388512"
57
71
  },
58
72
  BreadcrumbItem: {
59
73
  zh: "面包屑.项",
60
- en: "Breadcrumb.Item"
74
+ en: "Breadcrumb.Item",
75
+ id: "60845ed4-635d-46f3-9960-b3e76b3f2df4"
61
76
  },
62
77
  Button: {
63
78
  zh: "按钮",
64
- en: "Button"
79
+ en: "Button",
80
+ id: "ff476ae8-a29c-497c-9578-2d3f0e20a9aa"
65
81
  },
66
82
  Calendar: {
67
83
  zh: "日历",
68
- en: "Calendar"
84
+ en: "Calendar",
85
+ id: "710018e5-2f3f-4f84-950c-8a51fe09a2d7"
69
86
  },
70
87
  CalendarMonth: {
71
88
  zh: "日历.月",
72
- en: "Calendar.Month"
89
+ en: "Calendar.Month",
90
+ id: "de756c30-e6fb-4e0f-8f59-a02e59efa4bb"
73
91
  },
74
92
  CalendarYear: {
75
93
  zh: "日历.年",
76
- en: "Calendar.Year"
94
+ en: "Calendar.Year",
95
+ id: "fe82230a-206f-4416-8ac9-24de73e692a8"
77
96
  },
78
97
  Card: {
79
98
  zh: "卡片",
80
- en: "Card"
99
+ en: "Card",
100
+ id: "5252fda3-15a1-4b38-b228-998f583b266c"
81
101
  },
82
102
  CardGrid: {
83
103
  zh: "卡片.网格",
84
- en: "Card.Grid"
104
+ en: "Card.Grid",
105
+ id: "aa1e25f4-83a4-485b-8ce1-9929e2d4276e"
85
106
  },
86
107
  CardMeta: {
87
108
  zh: "卡片.元",
88
- en: "Card.Meta"
109
+ en: "Card.Meta",
110
+ id: "65687c9a-e281-46a2-89ae-051b6f0fe9fd"
89
111
  },
90
112
  Carousel: {
91
113
  zh: "图片轮播",
92
- en: "Carousel"
114
+ en: "Carousel",
115
+ id: "9f6095b0-4e63-4f50-b1f9-d1a45e146cd7"
93
116
  },
94
117
  Cascader: {
95
118
  zh: "级联选择",
96
- en: "Cascader"
119
+ en: "Cascader",
120
+ id: "02ff720f-1375-4881-a152-8bda6581778c"
97
121
  },
98
122
  Checkbox: {
99
123
  zh: "复选框",
100
- en: "Checkbox"
101
- },
102
- Col: {
103
- zh: "列布局",
104
- en: "Col"
124
+ en: "Checkbox",
125
+ id: "39637dcd-97e9-4257-b045-2e4bf5528908"
105
126
  },
106
127
  Collapse: {
107
128
  zh: "折叠面板",
108
- en: "Collapse"
129
+ en: "Collapse",
130
+ id: "4463d53c-8ed0-41da-a71d-326c45a5f7ea"
109
131
  },
110
132
  CollapseItem: {
111
133
  zh: "折叠面板.项",
112
- en: "Collapse.Item"
134
+ en: "Collapse.Item",
135
+ id: "86a8867d-1f06-46ee-ba63-949fc81b178c"
113
136
  },
114
137
  ColorPicker: {
115
138
  zh: "颜色选择器",
116
- en: "ColorPicker"
139
+ en: "ColorPicker",
140
+ id: "8e918bdc-2abb-4db1-a462-e3c7c6b88b2a"
117
141
  },
118
142
  ColorPickerPanel: {
119
143
  zh: "颜色选择器.显示盘",
120
- en: "ColorPicker.Panel"
144
+ en: "ColorPicker.Panel",
145
+ id: "06f0988d-56d1-4d25-a6ac-ebd3412b2c97"
121
146
  },
122
147
  Comment: {
123
148
  zh: "评论",
124
- en: "Comment"
149
+ en: "Comment",
150
+ id: "27a95ff8-50a3-45ad-a6a3-6e942af340eb"
125
151
  },
126
152
  ConfigConsumer: {
127
153
  zh: "环境订阅者",
128
- en: "ConfigConsumer"
154
+ en: "ConfigConsumer",
155
+ id: "244f4803-b528-47ce-aca7-fa0d27d0ab7d"
129
156
  },
130
157
  ConfigContext: {
131
158
  zh: "环境配置",
132
- en: "ConfigContext"
159
+ en: "ConfigContext",
160
+ id: "d95c3361-b832-4a9d-8d6c-6179d05053a9"
133
161
  },
134
162
  ConfigProvider: {
135
163
  zh: "全局配置",
136
- en: "ConfigProvider"
164
+ en: "ConfigProvider",
165
+ id: "225f99d0-eb13-4d77-b599-65693cc8a88d"
137
166
  },
138
167
  Copy: {
139
168
  zh: "复制",
140
- en: "Copy"
169
+ en: "Copy",
170
+ id: "c7df21c6-209c-40f5-a22e-0f0c3bde2535"
141
171
  },
142
172
  DatePicker: {
143
173
  zh: "日期选择器",
144
- en: "DatePicker"
174
+ en: "DatePicker",
175
+ id: "9edafc05-331b-418d-87a7-f94133cb7301"
145
176
  },
146
177
  DatePickerRange: {
147
178
  zh: "日期选择器.范围",
148
- en: "DatePicker.RangePicker"
179
+ en: "DatePicker.RangePicker",
180
+ id: "fbc9d298-5ff0-45be-a4e9-a16fda3c9300"
149
181
  },
150
182
  DatePickerWeek: {
151
183
  zh: "日期选择器.星期",
152
- en: "DatePicker.Week"
184
+ en: "DatePicker.Week",
185
+ id: "895be557-9b44-45f5-aee9-5bc666ed602e"
153
186
  },
154
187
  DatePickerMonth: {
155
188
  zh: "日期选择器.月",
156
- en: "DatePicker.Month"
189
+ en: "DatePicker.Month",
190
+ id: "aa00c94c-3372-468f-bea2-ea2cea827c91"
157
191
  },
158
192
  DatePickerQuarter: {
159
193
  zh: "日期选择器.季度",
160
- en: "DatePicker.Quarter"
194
+ en: "DatePicker.Quarter",
195
+ id: "a8016897-c238-40bc-8b0f-78f74526db96"
161
196
  },
162
197
  DatePickerYear: {
163
198
  zh: "日期选择器.年",
164
- en: "DatePicker.Year"
199
+ en: "DatePicker.Year",
200
+ id: "39470ec4-f72b-4489-84ee-bfbe34b91f2c"
165
201
  },
166
202
  Descriptions: {
167
203
  zh: "描述列表",
168
- en: "Descriptions"
204
+ en: "Descriptions",
205
+ id: "bf6c24cc-2ae4-4bb6-ad18-903c07c6b990"
169
206
  },
170
207
  Divider: {
171
208
  zh: "分割线",
172
- en: "Divider"
209
+ en: "Divider",
210
+ id: "3bd17d3d-90ca-460b-b209-3bf3fe2b3c79"
173
211
  },
174
212
  Drawer: {
175
213
  zh: "抽屉",
176
- en: "Drawer"
214
+ en: "Drawer",
215
+ id: "c4d2a607-957d-4da6-a461-462fc6b7a34d"
177
216
  },
178
217
  Dropdown: {
179
218
  zh: "下拉菜单",
180
- en: "Dropdown"
219
+ en: "Dropdown",
220
+ id: "ba72b34b-b221-457d-9782-43bb72f545ef"
181
221
  },
182
222
  DropdownButton: {
183
223
  zh: "下拉菜单.按钮",
184
- en: "Dropdown.Button"
224
+ en: "Dropdown.Button",
225
+ id: "d698989c-e49f-4c78-9992-b45af64120d2"
185
226
  },
186
227
  Empty: {
187
228
  zh: "空状态",
188
- en: "Empty"
229
+ en: "Empty",
230
+ id: "1052f1ef-c315-4faf-b627-c2ed71352359"
189
231
  },
190
232
  Form: {
191
233
  zh: "表单",
192
- en: "Form"
234
+ en: "Form",
235
+ id: "64a447b2-095e-4e43-abe8-cee259f3c596"
193
236
  },
194
237
  FormControl: {
195
238
  zh: "表单.控制",
196
- en: "Form.Control"
239
+ en: "Form.Control",
240
+ id: "e0f23a13-bbbe-452f-8390-0c5791094aea"
197
241
  },
198
242
  FormItem: {
199
243
  zh: "表单.项",
200
- en: "Form.Item"
244
+ en: "Form.Item",
245
+ id: "6ba93ca3-453b-4d32-8120-badad9eaa75b"
201
246
  },
202
247
  FormList: {
203
248
  zh: "表单.列表",
204
- en: "Form.List"
249
+ en: "Form.List",
250
+ id: "2d2feeab-0664-4b40-aa6b-2cf04e532258"
205
251
  },
206
252
  FormProvider: {
207
253
  zh: "表单.提供者",
208
- en: "Form.Provider"
254
+ en: "Form.Provider",
255
+ id: "26c5aaec-f9e2-4d53-b089-6eaa3bf7147b"
209
256
  },
210
257
  Grid: {
211
258
  zh: "栅格",
212
- en: "Grid"
259
+ en: "Grid",
260
+ id: "d3f9c38e-cb21-4f02-9e0f-eaa9bd7a0354"
213
261
  },
214
262
  GridRow: {
215
263
  zh: "栅格.行",
216
- en: "Grid.Row"
264
+ en: "Grid.Row",
265
+ id: "8a5c616c-26c7-44d6-843e-09ec17382e21"
217
266
  },
218
267
  GridCol: {
219
268
  zh: "栅格.列",
220
- en: "Grid.Col"
269
+ en: "Grid.Col",
270
+ id: "1b5f30bf-12d2-47ed-bb0f-1fcd7f891282"
271
+ },
272
+ Row: {
273
+ zh: "行",
274
+ en: "Row",
275
+ id: "5309c915-2a6a-426b-95e3-e1d21e01a832"
276
+ },
277
+ Col: {
278
+ zh: "列",
279
+ en: "Col",
280
+ id: "2ba46e9e-519a-4145-9091-66b4da431a8a"
221
281
  },
222
282
  GridItem: {
223
283
  zh: "栅格.项",
224
- en: "Grid.Item"
284
+ en: "Grid.Item",
285
+ id: "27a64e68-e317-419f-90fa-26f431dc4a39"
225
286
  },
226
287
  Icon: {
227
288
  zh: "图标",
228
- en: "Icon"
289
+ en: "Icon",
290
+ id: "3f7e3593-9943-4bdc-afea-42069b7f3252"
229
291
  },
230
292
  IconHover: {
231
293
  zh: "鼠标进入图标容器",
232
- en: "IconHover"
294
+ en: "IconHover",
295
+ id: "8eff2be1-b96e-4b3f-88ed-4ebbf2377b69"
233
296
  },
234
297
  Image: {
235
298
  zh: "图片",
236
- en: "Image"
299
+ en: "Image",
300
+ id: "60a26309-58e7-4925-8612-5e85aaa60a4a"
237
301
  },
238
302
  ImagePreview: {
239
303
  zh: "图片.预览",
240
- en: "Image.Preview"
304
+ en: "Image.Preview",
305
+ id: "800a30ca-65b3-4137-8dc8-60595605888b"
241
306
  },
242
307
  ImagePreviewGroup: {
243
308
  zh: "图片.预览.组",
244
- en: "Image.Preview.Group"
309
+ en: "Image.Preview.Group",
310
+ id: "30eba265-c42f-4648-85b9-e31cc3b0b9ca"
245
311
  },
246
312
  Input: {
247
313
  zh: "输入框",
248
- en: "Input"
314
+ en: "Input",
315
+ id: "1868be7e-e08a-4754-b2f7-f5f709ede04f"
249
316
  },
250
317
  InputTextArea: {
251
318
  zh: "文本域输入框",
252
- en: "Input.TextArea"
319
+ en: "Input.TextArea",
320
+ id: "a9d21214-778b-4cdc-92ad-84852e3b940a"
253
321
  },
254
322
  InputNumber: {
255
323
  zh: "数字输入框",
256
- en: "InputNumber"
324
+ en: "InputNumber",
325
+ id: "69b419bc-7cb2-4aaf-aadb-996821b0c78d"
257
326
  },
258
327
  InputTag: {
259
328
  zh: "标签输入框",
260
- en: "InputTag"
329
+ en: "InputTag",
330
+ id: "89f05148-995a-46b5-8db1-17b0723b120a"
261
331
  },
262
332
  InputButton: {
263
333
  zh: "输入框.按钮",
264
- en: "Input.Button"
334
+ en: "Input.Button",
335
+ id: "3cbbde8a-ab77-435f-aed7-5b627e0382fc"
265
336
  },
266
337
  InputGroup: {
267
338
  zh: "输入框.组",
268
- en: "Input.Group"
339
+ en: "Input.Group",
340
+ id: "846717d4-a970-4006-8ca8-55c49f738e14"
269
341
  },
270
342
  InputPassword: {
271
343
  zh: "输入框.密码",
272
- en: "Input.Password"
344
+ en: "Input.Password",
345
+ id: "3613770a-341c-4920-a946-cbd95dba0a26"
273
346
  },
274
347
  InputSearch: {
275
348
  zh: "输入框.搜索",
276
- en: "Input.Search"
349
+ en: "Input.Search",
350
+ id: "6fc7840e-cd69-4148-adae-aece0fdf4b0c"
277
351
  },
278
352
  Layout: {
279
353
  zh: "布局",
280
- en: "Layout"
354
+ en: "Layout",
355
+ id: "6d2a0c1c-bf3d-4189-9ccf-4cdf6294471f"
281
356
  },
282
357
  LayoutContent: {
283
358
  zh: "布局.内容",
284
- en: "Layout.Content"
359
+ en: "Layout.Content",
360
+ id: "eb651ccc-5008-4502-a297-5f34b3d4d4da"
285
361
  },
286
362
  LayoutFooter: {
287
363
  zh: "布局.脚",
288
- en: "Layout.Footer"
364
+ en: "Layout.Footer",
365
+ id: "6731ab92-b299-4a7d-aeb0-580c204e55e8"
289
366
  },
290
367
  LayoutHeader: {
291
368
  zh: "布局.头",
292
- en: "Layout.Header"
369
+ en: "Layout.Header",
370
+ id: "f82a9b92-317d-4fe2-b6c4-f5e789581e52"
293
371
  },
294
372
  LayoutSider: {
295
373
  zh: "布局.侧边栏",
296
- en: "Layout.Sider"
374
+ en: "Layout.Sider",
375
+ id: "84dfd6f6-6b56-4fcc-adc2-f6c279222e3f"
297
376
  },
298
377
  Link: {
299
378
  zh: "链接",
300
- en: "Link"
379
+ en: "Link",
380
+ id: "22f292a3-7866-43ba-9f1d-6eac39a946a9"
301
381
  },
302
382
  List: {
303
383
  zh: "列表",
304
- en: "List"
384
+ en: "List",
385
+ id: "4d9436a5-735f-4215-a6c8-d5539ca6a5c9"
305
386
  },
306
387
  ListItem: {
307
388
  zh: "列表.项",
308
- en: "List.Item"
389
+ en: "List.Item",
390
+ id: "dbd04563-d636-457e-9fb1-2d1be2018f12"
309
391
  },
310
392
  Loading: {
311
393
  zh: "加载器",
312
- en: "Loading"
394
+ en: "Loading",
395
+ id: "25dc5099-8b9f-4454-9329-7d5eb42d8e31"
313
396
  },
314
397
  Mentions: {
315
398
  zh: "提及",
316
- en: "Mentions"
399
+ en: "Mentions",
400
+ id: "c0456096-ee34-4c98-8005-9937c97aef6c"
317
401
  },
318
402
  Menu: {
319
403
  zh: "菜单",
320
- en: "Menu"
404
+ en: "Menu",
405
+ id: "d80f81c6-02f9-49b3-a26f-7a3849312643"
321
406
  },
322
407
  MenuItem: {
323
408
  zh: "菜单.项",
324
- en: "Menu.Item"
409
+ en: "Menu.Item",
410
+ id: "07ed9bb6-219f-41c6-be87-fcd1167be9de"
325
411
  },
326
412
  MenuItemGroup: {
327
413
  zh: "菜单.组",
328
- en: "Menu.Item.Group"
414
+ en: "Menu.Item.Group",
415
+ id: "20e28e00-2e33-4757-b33f-55376aaef0f6"
329
416
  },
330
417
  MenuSubMenu: {
331
418
  zh: "菜单.副",
332
- en: "Menu.SubMenu"
419
+ en: "Menu.SubMenu",
420
+ id: "c8f47475-ab3c-49ad-b191-0c695e37d414"
333
421
  },
334
422
  Message: {
335
423
  zh: "全局提示",
336
- en: "Message"
424
+ en: "Message",
425
+ id: "b5b3c5f3-0115-4013-a9fb-78241a6e13cc"
337
426
  },
338
427
  Modal: {
339
428
  zh: "对话框",
340
- en: "Modal"
429
+ en: "Modal",
430
+ id: "6be1d701-d832-4ec1-a392-c2f77a0de0ad"
341
431
  },
342
432
  Notification: {
343
433
  zh: "通知提醒框",
344
- en: "Notification"
434
+ en: "Notification",
435
+ id: "30d2b18e-e1d5-456e-9d3a-69ee6a198dbf"
345
436
  },
346
437
  PageHeader: {
347
438
  zh: "页头",
348
- en: "PageHeader"
439
+ en: "PageHeader",
440
+ id: "d9bdf434-465e-4571-b0e8-b4814dcda168"
349
441
  },
350
442
  Pagination: {
351
443
  zh: "分页",
352
- en: "Pagination"
444
+ en: "Pagination",
445
+ id: "ec48f434-24f5-4b8c-b2b2-2b90527bfaab"
353
446
  },
354
447
  Popconfirm: {
355
448
  zh: "气泡确认框",
356
- en: "Popconfirm"
449
+ en: "Popconfirm",
450
+ id: "721f6f57-510c-4d5a-8329-108352ec2bb2"
357
451
  },
358
452
  Popover: {
359
453
  zh: "气泡卡片",
360
- en: "Popover"
454
+ en: "Popover",
455
+ id: "9bdccec3-2290-4b37-853b-14c98672f33e"
361
456
  },
362
457
  Portal: {
363
458
  zh: "Portal",
364
- en: "Portal"
459
+ en: "Portal",
460
+ id: "4dab23f4-5b36-486a-a2cf-8a569a2b1e84"
365
461
  },
366
462
  Progress: {
367
463
  zh: "进度条",
368
- en: "Progress"
464
+ en: "Progress",
465
+ id: "62723f38-81fc-4535-92b1-2566a90a047c"
369
466
  },
370
467
  Qrcode: {
371
468
  zh: "二维码",
372
- en: "Qrcode"
469
+ en: "Qrcode",
470
+ id: "8346247b-3ecb-4138-bffb-70e42e708237"
373
471
  },
374
472
  Radio: {
375
473
  zh: "单选框",
376
- en: "Radio"
474
+ en: "Radio",
475
+ id: "c946ac4b-85f2-45d9-9421-6f96c18271a4"
377
476
  },
378
477
  RadioGroup: {
379
478
  zh: "单选框.组",
380
- en: "Radio.Group"
479
+ en: "Radio.Group",
480
+ id: "c7c0c22e-eda3-4dd0-ae44-59f8cae79212"
381
481
  },
382
482
  RadioGroupBlock: {
383
483
  zh: "单选框.矩形",
384
- en: "Radio.GroupBlock"
484
+ en: "Radio.GroupBlock",
485
+ id: "e427972e-95c6-4b4f-8db1-7f189a947289"
385
486
  },
386
487
  Rate: {
387
488
  zh: "评分",
388
- en: "Rate"
489
+ en: "Rate",
490
+ id: "6b508197-2136-4c0f-9f8d-7b04ec4de9dc"
389
491
  },
390
492
  ResizeBox: {
391
493
  zh: "伸缩框",
392
- en: "ResizeBox"
494
+ en: "ResizeBox",
495
+ id: "041f4c2f-6673-4a95-b11a-fb7f6a7a8f42"
393
496
  },
394
497
  ResizeBoxSplit: {
395
498
  zh: "伸缩框.分隔",
396
- en: "ResizeBox.Split"
499
+ en: "ResizeBox.Split",
500
+ id: "5d9526a2-1f47-43e8-a01e-579c167dc626"
397
501
  },
398
502
  ResizeBoxSplitGroup: {
399
503
  zh: "伸缩框.分隔组",
400
- en: "ResizeBox.SplitGroup"
504
+ en: "ResizeBox.SplitGroup",
505
+ id: "0beb18a5-4641-45e1-99df-320ba9db2878"
401
506
  },
402
507
  Result: {
403
508
  zh: "结果页",
404
- en: "Result"
405
- },
406
- Row: {
407
- zh: "行布局",
408
- en: "Row"
509
+ en: "Result",
510
+ id: "f64a32e2-29e9-435a-babd-37d8c57d413d"
409
511
  },
410
512
  Select: {
411
513
  zh: "选择器",
412
- en: "Select"
514
+ en: "Select",
515
+ id: "a31c6809-5331-4969-9f6f-24dba44d9fa3"
413
516
  },
414
517
  Skeleton: {
415
518
  zh: "骨架屏",
416
- en: "Skeleton"
519
+ en: "Skeleton",
520
+ id: "dfceb88f-6a8f-4175-b936-c8c8b40947f1"
417
521
  },
418
522
  Slider: {
419
523
  zh: "滑动输入条",
420
- en: "Slider"
524
+ en: "Slider",
525
+ id: "a9b258b4-a907-4c09-ad41-4170bb1febb8"
421
526
  },
422
527
  Space: {
423
528
  zh: "间距",
424
- en: "Space"
529
+ en: "Space",
530
+ id: "b0bf1865-f3dc-490f-8e1c-bd07cd177126"
425
531
  },
426
532
  SpeechSynthesis: {
427
533
  zh: "朗读",
428
- en: "SpeechSynthesis"
534
+ en: "SpeechSynthesis",
535
+ id: "02ac24b0-f37b-4d7f-b225-af76e49c63b1"
429
536
  },
430
537
  Spin: {
431
538
  zh: "加载中",
432
- en: "Spin"
539
+ en: "Spin",
540
+ id: "ccf40119-670c-4362-a1ec-ea22b1f6c3e6"
433
541
  },
434
542
  Statistic: {
435
543
  zh: "数值显示",
436
- en: "Statistic"
544
+ en: "Statistic",
545
+ id: "f2c9fe75-4f7b-442c-afe5-6df1085a810d"
437
546
  },
438
547
  StatisticCountdown: {
439
548
  zh: "数值显示.倒计时",
440
- en: "Statistic.Countdown"
549
+ en: "Statistic.Countdown",
550
+ id: "fa53aadc-46f4-49d1-99a8-3e7ac97e918a"
551
+ },
552
+ Countdown: {
553
+ zh: "倒计时",
554
+ en: "Countdown",
555
+ id: "a7a3c750-632e-447f-b889-f6509f9fbc85"
441
556
  },
442
557
  Steps: {
443
558
  zh: "步骤条",
444
- en: "Steps"
559
+ en: "Steps",
560
+ id: "7e50570c-adda-427f-a55f-99673594fd94"
445
561
  },
446
562
  StepsStep: {
447
563
  zh: "步骤条.步骤",
448
- en: "Steps.Step"
564
+ en: "Steps.Step",
565
+ id: "61fef5de-9acc-4087-9ac2-3d622af1e1f3"
449
566
  },
450
567
  StepsItem: {
451
568
  zh: "步骤条.项",
452
- en: "Steps.Item"
569
+ en: "Steps.Item",
570
+ id: "7c4ddf21-425a-4bdb-9fe3-b61f0934e87c"
453
571
  },
454
572
  Switch: {
455
573
  zh: "开关",
456
- en: "Switch"
574
+ en: "Switch",
575
+ id: "fd223146-3008-4b67-a986-736e699d6725"
457
576
  },
458
577
  Table: {
459
578
  zh: "表格",
460
- en: "Table"
579
+ en: "Table",
580
+ id: "ff0498ea-76a4-4c03-81c4-057468460918"
461
581
  },
462
582
  TableSummary: {
463
583
  zh: "表格.总结",
464
- en: "Table.Summary"
584
+ en: "Table.Summary",
585
+ id: "23bde7c6-af70-4ae7-836e-7f597c8809a0"
465
586
  },
466
587
  TableSummaryCell: {
467
588
  zh: "表格.总结.单元",
468
- en: "Table.Summary.Cell"
589
+ en: "Table.Summary.Cell",
590
+ id: "8592f87a-5b11-48dc-81d2-bc820ffd4d21"
469
591
  },
470
592
  TableSummaryRow: {
471
593
  zh: "表格.总结.行",
472
- en: "Table.Summary.Row"
594
+ en: "Table.Summary.Row",
595
+ id: "2e6b7a00-0b58-4ab6-8573-ed28c5f190b4"
473
596
  },
474
597
  Tabs: {
475
598
  zh: "标签页",
476
- en: "Tabs"
599
+ en: "Tabs",
600
+ id: "5b472f17-0504-4581-936d-668a86b6a7b3"
477
601
  },
478
602
  Tag: {
479
603
  zh: "标签",
480
- en: "Tag"
604
+ en: "Tag",
605
+ id: "3287a660-4471-420c-8ffd-f4511491de10"
481
606
  },
482
607
  TimePicker: {
483
608
  zh: "时间选择器",
484
- en: "TimePicker"
609
+ en: "TimePicker",
610
+ id: "b98a689a-7cb6-48be-9498-14b264118299"
485
611
  },
486
612
  TimePickerRange: {
487
613
  zh: "时间选择器.范围",
488
- en: "TimePicker.Range"
614
+ en: "TimePicker.Range",
615
+ id: "e393bae1-20fa-41c8-b2c0-e98cc0370dec"
489
616
  },
490
617
  Timeline: {
491
618
  zh: "时间轴",
492
- en: "Timeline"
619
+ en: "Timeline",
620
+ id: "6a017e16-84f7-4b37-88d9-9f97214b3b5b"
493
621
  },
494
622
  Tooltip: {
495
623
  zh: "文字气泡",
496
- en: "Tooltip"
624
+ en: "Tooltip",
625
+ id: "0c3433c5-fe25-4a7c-8a57-ed041283f69c"
497
626
  },
498
627
  Transfer: {
499
628
  zh: "数据穿梭框",
500
- en: "Transfer"
629
+ en: "Transfer",
630
+ id: "06b41a95-2092-4745-b378-4f22b52825f2"
501
631
  },
502
632
  Tree: {
503
633
  zh: "树",
504
- en: "Tree"
634
+ en: "Tree",
635
+ id: "07232de6-79d4-4684-aff7-df1767a2946b"
505
636
  },
506
637
  TreeSelect: {
507
638
  zh: "树选择",
508
- en: "TreeSelect"
639
+ en: "TreeSelect",
640
+ id: "c467c4e9-9432-4468-a436-ad83bd83ce37"
509
641
  },
510
642
  Trigger: {
511
643
  zh: "触发器",
512
- en: "Trigger"
644
+ en: "Trigger",
645
+ id: "eacd72b8-8b1c-4a49-a83b-fe8b22d43bda"
513
646
  },
514
647
  Typography: {
515
648
  zh: "排版",
516
- en: "Typography"
649
+ en: "Typography",
650
+ id: "c0838f8b-ea9a-4dea-a8e9-fcd86d0c4e3e"
517
651
  },
518
652
  TypographyEllipsis: {
519
653
  zh: "排版.省略",
520
- en: "Typography.Ellipsis"
654
+ en: "Typography.Ellipsis",
655
+ id: "f144153d-ea61-424f-ae7f-e020e0866c73"
521
656
  },
522
657
  TypographyParagraph: {
523
658
  zh: "排版.段落",
524
- en: "Typography.Paragraph"
659
+ en: "Typography.Paragraph",
660
+ id: "cbf4802f-4736-4fef-b955-664133c8bff0"
525
661
  },
526
662
  TypographyText: {
527
663
  zh: "排版.文本",
528
- en: "Typography.Text"
664
+ en: "Typography.Text",
665
+ id: "0af71bc9-d54f-4735-aea8-54d79298b182"
529
666
  },
530
667
  TypographyTitle: {
531
668
  zh: "排版.标题",
532
- en: "Typography.Title"
669
+ en: "Typography.Title",
670
+ id: "61d6c1f5-d9e7-435a-99fe-40488a81f7a6"
533
671
  },
534
672
  Upload: {
535
673
  zh: "上传",
536
- en: "Upload"
674
+ en: "Upload",
675
+ id: "5824822f-e63e-4a8a-8822-704071c7c280"
537
676
  },
538
677
  VerificationCode: {
539
678
  zh: "验证码输入",
540
- en: "VerificationCode"
679
+ en: "VerificationCode",
680
+ id: "8e14c210-1e49-4394-8b81-105794e3330c"
541
681
  },
542
682
  Watermark: {
543
683
  zh: "水印",
544
- en: "Watermark"
684
+ en: "Watermark",
685
+ id: "3af4892b-e901-4709-b9da-9761626bb0ff"
545
686
  },
546
687
  Development: {
547
688
  zh: "等待开发",
548
- en: "Development"
689
+ en: "Development",
690
+ id: "aa5a04d8-9e3b-4141-a136-84f408897184"
549
691
  },
550
692
  Tour: {
551
693
  zh: "漫游式引导",
552
- en: "Tour"
694
+ en: "Tour",
695
+ id: "159e13df-12c5-45ac-b00b-e6bc39db4c5a"
553
696
  },
554
697
  QRCode: {
555
698
  zh: "二维码",
556
- en: "QRCode"
699
+ en: "QRCode",
700
+ id: "493400fb-26a6-49b3-8d57-2ffb59bb1341"
557
701
  },
558
702
  LiquidFill: {
559
703
  zh: "水球图",
560
- en: "LiquidFill"
704
+ en: "LiquidFill",
705
+ id: "ba3861dd-fe35-4fdf-8b6a-fe44bc450dfb"
561
706
  },
562
707
  Marquee: {
563
708
  zh: "跑马灯",
564
- en: "Marquee"
709
+ en: "Marquee",
710
+ id: "1c18519e-d2fd-4ef8-ad99-471b2e96ad22"
565
711
  },
566
712
  Segmented: {
567
713
  zh: "分段控制器",
568
- en: "Segmented"
714
+ en: "Segmented",
715
+ id: "f759052c-944b-419e-b0d1-39ca561c03bf"
569
716
  },
570
717
  Splitter: {
571
718
  zh: "分隔面板",
572
- en: "Splitter"
719
+ en: "Splitter",
720
+ id: "1261847c-270e-427f-bfe1-eb50c3ed4e6c"
573
721
  },
574
722
  Flex: {
575
723
  zh: "弹性布局",
576
- en: "Flex"
724
+ en: "Flex",
725
+ id: "35efe7f0-eefa-4a24-929c-2cc5933b49ff"
726
+ },
727
+ App: {
728
+ zh: "包裹组件",
729
+ en: "App",
730
+ id: "08bbfbd6-c1b6-4e54-880d-f2e5ca214d67"
731
+ },
732
+ VariableIcon: {
733
+ zh: "变量图标",
734
+ en: "VariableIcon",
735
+ id: "adebcf8a-29c2-4e09-84e3-d87cc08eabfe"
577
736
  }
578
737
  };
579
738
  export {