@unicom-cloud/ui 0.8.107 → 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.
- package/ColorPicker.js +15 -14
- package/Constant.js +4 -0
- package/Copy.js +4 -3
- package/Countdown.js +25 -0
- package/Grid.js +8 -10
- package/LiquidFill.js +4 -3
- package/List.js +7 -6
- package/Marquee.js +4 -3
- package/PageHeader.js +3 -2
- package/QrCode.js +4 -3
- package/RowCol.js +8 -0
- package/Segmented.js +14 -4
- package/Statistic.js +5 -4
- package/Tour.js +4 -3
- package/Transfer.js +4 -2
- package/anchor/Link.js +1 -1
- package/avatar/Group.js +1 -1
- package/button/index.js +52 -51
- package/calendar/Lunar.js +21 -21
- package/cascader/base/node.js +22 -20
- package/cascader/base/store.js +10 -10
- package/cascader/util.js +29 -27
- package/color-picker/Mode.js +8 -7
- package/color-picker/hooks/useColorPicker.js +56 -55
- package/color-picker/index.js +54 -53
- package/color-picker/utils.js +58 -57
- package/components/common/empty/index.js +2 -2
- package/components/common/flex/index.js +64 -55
- package/components/common/flex/interface.js +6 -6
- package/components/common/hooks/useInterval.js +6 -6
- package/components/common/space/index.js +53 -53
- package/components/common/utils/dayjs.js +75 -62
- package/components/common/utils/toArray.js +7 -5
- package/constant/index.js +4 -0
- package/copy/index.js +2 -1
- package/countdown/index.js +113 -0
- package/countdown/interface.js +1 -0
- package/countdown/util.js +29 -0
- package/descriptions/index.js +26 -26
- package/dropdown/Button.js +1 -1
- package/flex/index.js +30 -29
- package/form/FormItem.js +126 -122
- package/grid/Grid.js +40 -41
- package/grid/Item.js +37 -37
- package/grid/context.js +2 -3
- package/grid/index.js +6 -8
- package/hooks/useResponsiveState.js +54 -0
- package/index.js +614 -610
- package/input/InputElement.js +25 -24
- package/layout/Sider.js +1 -1
- package/liquid-fill/index.js +4 -3
- package/list/Item.js +21 -21
- package/list/index.js +53 -52
- package/marquee/index.js +20 -19
- package/marquee-/index.js +4 -3
- package/mentions/util.js +9 -8
- package/package.json +1 -1
- package/page-header/index.js +57 -56
- package/pagination/Pagination.js +89 -92
- package/qr-code/index.js +4 -3
- package/radio/Group.js +1 -1
- package/row-col/Col-.js +88 -0
- package/row-col/Col.js +159 -0
- package/row-col/Row.js +73 -0
- package/row-col/context.js +5 -0
- package/row-col/index.js +11 -0
- package/row-col/interface.js +1 -0
- package/segmented/index.js +257 -206
- package/select/Select.js +191 -191
- package/select/util.js +50 -50
- package/space/index.js +15 -13
- package/statistic/index.js +56 -55
- package/statistic/interface.js +4 -1
- package/style.css +1 -1
- package/table/hook/useColumns.js +27 -26
- package/table/hook/useStickyClassNames.js +9 -8
- package/table/hook/useThResizable.js +4 -3
- package/table/th-resizable/index.js +11 -10
- package/table/thead/index.js +18 -16
- package/timeline/Item.js +1 -1
- package/tour/index.js +4 -3
- package/transfer/index.js +93 -91
- package/trigger/index.js +66 -66
- package/types/common/flex/index.d.ts +3 -9
- package/types/common/flex/interface.d.ts +15 -4
- package/types/common/space/index.d.ts +3 -5
- package/types/common/space/interface.d.ts +2 -0
- package/types/common/utils/dayjs.d.ts +3 -1
- package/types/pc/button/interface.d.ts +2 -2
- package/types/pc/config-provider/interface.d.ts +16 -11
- package/types/pc/constant/index.d.ts +1 -0
- package/types/pc/countdown/interface.d.ts +65 -0
- package/types/pc/countdown/util.d.ts +7 -0
- package/types/pc/flex/index.d.ts +8 -6
- package/types/pc/flex/interface.d.ts +3 -10
- package/types/pc/form/FormItem.d.ts +1 -1
- package/types/pc/form/interface.d.ts +1 -1
- package/types/pc/grid/Grid.d.ts +1 -2
- package/types/pc/grid/Item.d.ts +1 -2
- package/types/pc/grid/context.d.ts +0 -5
- package/types/pc/grid/index.d.ts +4 -6
- package/types/pc/grid/interface.d.ts +7 -125
- package/types/pc/hooks/useResponsiveState.d.ts +3 -0
- package/types/pc/index.d.ts +7 -3
- package/types/pc/list/interface.d.ts +2 -1
- package/types/pc/pagination/PageOption.d.ts +0 -1
- package/types/pc/pagination/interface.d.ts +5 -6
- package/types/pc/{grid → row-col}/Col-.d.ts +1 -1
- package/types/pc/{grid → row-col}/Col.d.ts +1 -2
- package/types/pc/{grid → row-col}/Row.d.ts +1 -2
- package/types/pc/row-col/context.d.ts +6 -0
- package/types/pc/row-col/index.d.ts +7 -0
- package/types/pc/row-col/interface.d.ts +112 -0
- package/types/pc/segmented/index.d.ts +3 -7
- package/types/pc/segmented/interface.d.ts +38 -5
- package/types/pc/space/index.d.ts +5 -7
- package/types/pc/space/interface.d.ts +3 -10
- package/types/pc/statistic/index.d.ts +1 -1
- package/types/pc/statistic/interface.d.ts +1 -49
- package/types/pc/utils/names.d.ts +121 -113
- package/types/pc/utils/responsiveObserve.d.ts +8 -8
- package/typography/Ellipsis.js +5 -4
- package/typography/Operations.js +4 -3
- package/utils/dayjs.js +13 -11
- package/utils/index.js +244 -242
- package/utils/names.js +15 -10
- package/utils/responsiveObserve.js +43 -36
- package/version/index.js +1 -1
- package/grid/Col-.js +0 -86
- package/grid/Col.js +0 -169
- package/grid/Row.js +0 -96
- package/grid/hook/useResponsiveState.js +0 -35
- package/statistic/Countdown.js +0 -56
- package/statistic/util.js +0 -33
- package/types/pc/grid/hook/useResponsiveState.d.ts +0 -2
- package/types/pc/statistic/util.d.ts +0 -1
- /package/types/pc/{statistic/Countdown.d.ts → countdown/index.d.ts} +0 -0
|
@@ -196,7 +196,7 @@ export namespace COMPONENT_NAMES {
|
|
|
196
196
|
let id_24: string;
|
|
197
197
|
export { id_24 as id };
|
|
198
198
|
}
|
|
199
|
-
namespace
|
|
199
|
+
namespace Collapse {
|
|
200
200
|
let zh_25: string;
|
|
201
201
|
export { zh_25 as zh };
|
|
202
202
|
let en_25: string;
|
|
@@ -204,7 +204,7 @@ export namespace COMPONENT_NAMES {
|
|
|
204
204
|
let id_25: string;
|
|
205
205
|
export { id_25 as id };
|
|
206
206
|
}
|
|
207
|
-
namespace
|
|
207
|
+
namespace CollapseItem {
|
|
208
208
|
let zh_26: string;
|
|
209
209
|
export { zh_26 as zh };
|
|
210
210
|
let en_26: string;
|
|
@@ -212,7 +212,7 @@ export namespace COMPONENT_NAMES {
|
|
|
212
212
|
let id_26: string;
|
|
213
213
|
export { id_26 as id };
|
|
214
214
|
}
|
|
215
|
-
namespace
|
|
215
|
+
namespace ColorPicker {
|
|
216
216
|
let zh_27: string;
|
|
217
217
|
export { zh_27 as zh };
|
|
218
218
|
let en_27: string;
|
|
@@ -220,7 +220,7 @@ export namespace COMPONENT_NAMES {
|
|
|
220
220
|
let id_27: string;
|
|
221
221
|
export { id_27 as id };
|
|
222
222
|
}
|
|
223
|
-
namespace
|
|
223
|
+
namespace ColorPickerPanel {
|
|
224
224
|
let zh_28: string;
|
|
225
225
|
export { zh_28 as zh };
|
|
226
226
|
let en_28: string;
|
|
@@ -228,7 +228,7 @@ export namespace COMPONENT_NAMES {
|
|
|
228
228
|
let id_28: string;
|
|
229
229
|
export { id_28 as id };
|
|
230
230
|
}
|
|
231
|
-
namespace
|
|
231
|
+
namespace Comment {
|
|
232
232
|
let zh_29: string;
|
|
233
233
|
export { zh_29 as zh };
|
|
234
234
|
let en_29: string;
|
|
@@ -236,7 +236,7 @@ export namespace COMPONENT_NAMES {
|
|
|
236
236
|
let id_29: string;
|
|
237
237
|
export { id_29 as id };
|
|
238
238
|
}
|
|
239
|
-
namespace
|
|
239
|
+
namespace ConfigConsumer {
|
|
240
240
|
let zh_30: string;
|
|
241
241
|
export { zh_30 as zh };
|
|
242
242
|
let en_30: string;
|
|
@@ -244,7 +244,7 @@ export namespace COMPONENT_NAMES {
|
|
|
244
244
|
let id_30: string;
|
|
245
245
|
export { id_30 as id };
|
|
246
246
|
}
|
|
247
|
-
namespace
|
|
247
|
+
namespace ConfigContext {
|
|
248
248
|
let zh_31: string;
|
|
249
249
|
export { zh_31 as zh };
|
|
250
250
|
let en_31: string;
|
|
@@ -252,7 +252,7 @@ export namespace COMPONENT_NAMES {
|
|
|
252
252
|
let id_31: string;
|
|
253
253
|
export { id_31 as id };
|
|
254
254
|
}
|
|
255
|
-
namespace
|
|
255
|
+
namespace ConfigProvider {
|
|
256
256
|
let zh_32: string;
|
|
257
257
|
export { zh_32 as zh };
|
|
258
258
|
let en_32: string;
|
|
@@ -260,7 +260,7 @@ export namespace COMPONENT_NAMES {
|
|
|
260
260
|
let id_32: string;
|
|
261
261
|
export { id_32 as id };
|
|
262
262
|
}
|
|
263
|
-
namespace
|
|
263
|
+
namespace Copy {
|
|
264
264
|
let zh_33: string;
|
|
265
265
|
export { zh_33 as zh };
|
|
266
266
|
let en_33: string;
|
|
@@ -268,7 +268,7 @@ export namespace COMPONENT_NAMES {
|
|
|
268
268
|
let id_33: string;
|
|
269
269
|
export { id_33 as id };
|
|
270
270
|
}
|
|
271
|
-
namespace
|
|
271
|
+
namespace DatePicker {
|
|
272
272
|
let zh_34: string;
|
|
273
273
|
export { zh_34 as zh };
|
|
274
274
|
let en_34: string;
|
|
@@ -276,7 +276,7 @@ export namespace COMPONENT_NAMES {
|
|
|
276
276
|
let id_34: string;
|
|
277
277
|
export { id_34 as id };
|
|
278
278
|
}
|
|
279
|
-
namespace
|
|
279
|
+
namespace DatePickerRange {
|
|
280
280
|
let zh_35: string;
|
|
281
281
|
export { zh_35 as zh };
|
|
282
282
|
let en_35: string;
|
|
@@ -284,7 +284,7 @@ export namespace COMPONENT_NAMES {
|
|
|
284
284
|
let id_35: string;
|
|
285
285
|
export { id_35 as id };
|
|
286
286
|
}
|
|
287
|
-
namespace
|
|
287
|
+
namespace DatePickerWeek {
|
|
288
288
|
let zh_36: string;
|
|
289
289
|
export { zh_36 as zh };
|
|
290
290
|
let en_36: string;
|
|
@@ -292,7 +292,7 @@ export namespace COMPONENT_NAMES {
|
|
|
292
292
|
let id_36: string;
|
|
293
293
|
export { id_36 as id };
|
|
294
294
|
}
|
|
295
|
-
namespace
|
|
295
|
+
namespace DatePickerMonth {
|
|
296
296
|
let zh_37: string;
|
|
297
297
|
export { zh_37 as zh };
|
|
298
298
|
let en_37: string;
|
|
@@ -300,7 +300,7 @@ export namespace COMPONENT_NAMES {
|
|
|
300
300
|
let id_37: string;
|
|
301
301
|
export { id_37 as id };
|
|
302
302
|
}
|
|
303
|
-
namespace
|
|
303
|
+
namespace DatePickerQuarter {
|
|
304
304
|
let zh_38: string;
|
|
305
305
|
export { zh_38 as zh };
|
|
306
306
|
let en_38: string;
|
|
@@ -308,7 +308,7 @@ export namespace COMPONENT_NAMES {
|
|
|
308
308
|
let id_38: string;
|
|
309
309
|
export { id_38 as id };
|
|
310
310
|
}
|
|
311
|
-
namespace
|
|
311
|
+
namespace DatePickerYear {
|
|
312
312
|
let zh_39: string;
|
|
313
313
|
export { zh_39 as zh };
|
|
314
314
|
let en_39: string;
|
|
@@ -316,7 +316,7 @@ export namespace COMPONENT_NAMES {
|
|
|
316
316
|
let id_39: string;
|
|
317
317
|
export { id_39 as id };
|
|
318
318
|
}
|
|
319
|
-
namespace
|
|
319
|
+
namespace Descriptions {
|
|
320
320
|
let zh_40: string;
|
|
321
321
|
export { zh_40 as zh };
|
|
322
322
|
let en_40: string;
|
|
@@ -324,7 +324,7 @@ export namespace COMPONENT_NAMES {
|
|
|
324
324
|
let id_40: string;
|
|
325
325
|
export { id_40 as id };
|
|
326
326
|
}
|
|
327
|
-
namespace
|
|
327
|
+
namespace Divider {
|
|
328
328
|
let zh_41: string;
|
|
329
329
|
export { zh_41 as zh };
|
|
330
330
|
let en_41: string;
|
|
@@ -332,7 +332,7 @@ export namespace COMPONENT_NAMES {
|
|
|
332
332
|
let id_41: string;
|
|
333
333
|
export { id_41 as id };
|
|
334
334
|
}
|
|
335
|
-
namespace
|
|
335
|
+
namespace Drawer {
|
|
336
336
|
let zh_42: string;
|
|
337
337
|
export { zh_42 as zh };
|
|
338
338
|
let en_42: string;
|
|
@@ -340,7 +340,7 @@ export namespace COMPONENT_NAMES {
|
|
|
340
340
|
let id_42: string;
|
|
341
341
|
export { id_42 as id };
|
|
342
342
|
}
|
|
343
|
-
namespace
|
|
343
|
+
namespace Dropdown {
|
|
344
344
|
let zh_43: string;
|
|
345
345
|
export { zh_43 as zh };
|
|
346
346
|
let en_43: string;
|
|
@@ -348,7 +348,7 @@ export namespace COMPONENT_NAMES {
|
|
|
348
348
|
let id_43: string;
|
|
349
349
|
export { id_43 as id };
|
|
350
350
|
}
|
|
351
|
-
namespace
|
|
351
|
+
namespace DropdownButton {
|
|
352
352
|
let zh_44: string;
|
|
353
353
|
export { zh_44 as zh };
|
|
354
354
|
let en_44: string;
|
|
@@ -356,7 +356,7 @@ export namespace COMPONENT_NAMES {
|
|
|
356
356
|
let id_44: string;
|
|
357
357
|
export { id_44 as id };
|
|
358
358
|
}
|
|
359
|
-
namespace
|
|
359
|
+
namespace Empty {
|
|
360
360
|
let zh_45: string;
|
|
361
361
|
export { zh_45 as zh };
|
|
362
362
|
let en_45: string;
|
|
@@ -364,7 +364,7 @@ export namespace COMPONENT_NAMES {
|
|
|
364
364
|
let id_45: string;
|
|
365
365
|
export { id_45 as id };
|
|
366
366
|
}
|
|
367
|
-
namespace
|
|
367
|
+
namespace Form {
|
|
368
368
|
let zh_46: string;
|
|
369
369
|
export { zh_46 as zh };
|
|
370
370
|
let en_46: string;
|
|
@@ -372,7 +372,7 @@ export namespace COMPONENT_NAMES {
|
|
|
372
372
|
let id_46: string;
|
|
373
373
|
export { id_46 as id };
|
|
374
374
|
}
|
|
375
|
-
namespace
|
|
375
|
+
namespace FormControl {
|
|
376
376
|
let zh_47: string;
|
|
377
377
|
export { zh_47 as zh };
|
|
378
378
|
let en_47: string;
|
|
@@ -380,7 +380,7 @@ export namespace COMPONENT_NAMES {
|
|
|
380
380
|
let id_47: string;
|
|
381
381
|
export { id_47 as id };
|
|
382
382
|
}
|
|
383
|
-
namespace
|
|
383
|
+
namespace FormItem {
|
|
384
384
|
let zh_48: string;
|
|
385
385
|
export { zh_48 as zh };
|
|
386
386
|
let en_48: string;
|
|
@@ -388,7 +388,7 @@ export namespace COMPONENT_NAMES {
|
|
|
388
388
|
let id_48: string;
|
|
389
389
|
export { id_48 as id };
|
|
390
390
|
}
|
|
391
|
-
namespace
|
|
391
|
+
namespace FormList {
|
|
392
392
|
let zh_49: string;
|
|
393
393
|
export { zh_49 as zh };
|
|
394
394
|
let en_49: string;
|
|
@@ -396,7 +396,7 @@ export namespace COMPONENT_NAMES {
|
|
|
396
396
|
let id_49: string;
|
|
397
397
|
export { id_49 as id };
|
|
398
398
|
}
|
|
399
|
-
namespace
|
|
399
|
+
namespace FormProvider {
|
|
400
400
|
let zh_50: string;
|
|
401
401
|
export { zh_50 as zh };
|
|
402
402
|
let en_50: string;
|
|
@@ -404,7 +404,7 @@ export namespace COMPONENT_NAMES {
|
|
|
404
404
|
let id_50: string;
|
|
405
405
|
export { id_50 as id };
|
|
406
406
|
}
|
|
407
|
-
namespace
|
|
407
|
+
namespace Grid {
|
|
408
408
|
let zh_51: string;
|
|
409
409
|
export { zh_51 as zh };
|
|
410
410
|
let en_51: string;
|
|
@@ -412,7 +412,7 @@ export namespace COMPONENT_NAMES {
|
|
|
412
412
|
let id_51: string;
|
|
413
413
|
export { id_51 as id };
|
|
414
414
|
}
|
|
415
|
-
namespace
|
|
415
|
+
namespace GridRow {
|
|
416
416
|
let zh_52: string;
|
|
417
417
|
export { zh_52 as zh };
|
|
418
418
|
let en_52: string;
|
|
@@ -420,7 +420,7 @@ export namespace COMPONENT_NAMES {
|
|
|
420
420
|
let id_52: string;
|
|
421
421
|
export { id_52 as id };
|
|
422
422
|
}
|
|
423
|
-
namespace
|
|
423
|
+
namespace GridCol {
|
|
424
424
|
let zh_53: string;
|
|
425
425
|
export { zh_53 as zh };
|
|
426
426
|
let en_53: string;
|
|
@@ -428,7 +428,7 @@ export namespace COMPONENT_NAMES {
|
|
|
428
428
|
let id_53: string;
|
|
429
429
|
export { id_53 as id };
|
|
430
430
|
}
|
|
431
|
-
namespace
|
|
431
|
+
namespace Row {
|
|
432
432
|
let zh_54: string;
|
|
433
433
|
export { zh_54 as zh };
|
|
434
434
|
let en_54: string;
|
|
@@ -436,7 +436,7 @@ export namespace COMPONENT_NAMES {
|
|
|
436
436
|
let id_54: string;
|
|
437
437
|
export { id_54 as id };
|
|
438
438
|
}
|
|
439
|
-
namespace
|
|
439
|
+
namespace Col {
|
|
440
440
|
let zh_55: string;
|
|
441
441
|
export { zh_55 as zh };
|
|
442
442
|
let en_55: string;
|
|
@@ -444,7 +444,7 @@ export namespace COMPONENT_NAMES {
|
|
|
444
444
|
let id_55: string;
|
|
445
445
|
export { id_55 as id };
|
|
446
446
|
}
|
|
447
|
-
namespace
|
|
447
|
+
namespace GridItem {
|
|
448
448
|
let zh_56: string;
|
|
449
449
|
export { zh_56 as zh };
|
|
450
450
|
let en_56: string;
|
|
@@ -452,7 +452,7 @@ export namespace COMPONENT_NAMES {
|
|
|
452
452
|
let id_56: string;
|
|
453
453
|
export { id_56 as id };
|
|
454
454
|
}
|
|
455
|
-
namespace
|
|
455
|
+
namespace Icon {
|
|
456
456
|
let zh_57: string;
|
|
457
457
|
export { zh_57 as zh };
|
|
458
458
|
let en_57: string;
|
|
@@ -460,7 +460,7 @@ export namespace COMPONENT_NAMES {
|
|
|
460
460
|
let id_57: string;
|
|
461
461
|
export { id_57 as id };
|
|
462
462
|
}
|
|
463
|
-
namespace
|
|
463
|
+
namespace IconHover {
|
|
464
464
|
let zh_58: string;
|
|
465
465
|
export { zh_58 as zh };
|
|
466
466
|
let en_58: string;
|
|
@@ -468,7 +468,7 @@ export namespace COMPONENT_NAMES {
|
|
|
468
468
|
let id_58: string;
|
|
469
469
|
export { id_58 as id };
|
|
470
470
|
}
|
|
471
|
-
namespace
|
|
471
|
+
namespace Image {
|
|
472
472
|
let zh_59: string;
|
|
473
473
|
export { zh_59 as zh };
|
|
474
474
|
let en_59: string;
|
|
@@ -476,7 +476,7 @@ export namespace COMPONENT_NAMES {
|
|
|
476
476
|
let id_59: string;
|
|
477
477
|
export { id_59 as id };
|
|
478
478
|
}
|
|
479
|
-
namespace
|
|
479
|
+
namespace ImagePreview {
|
|
480
480
|
let zh_60: string;
|
|
481
481
|
export { zh_60 as zh };
|
|
482
482
|
let en_60: string;
|
|
@@ -484,7 +484,7 @@ export namespace COMPONENT_NAMES {
|
|
|
484
484
|
let id_60: string;
|
|
485
485
|
export { id_60 as id };
|
|
486
486
|
}
|
|
487
|
-
namespace
|
|
487
|
+
namespace ImagePreviewGroup {
|
|
488
488
|
let zh_61: string;
|
|
489
489
|
export { zh_61 as zh };
|
|
490
490
|
let en_61: string;
|
|
@@ -492,7 +492,7 @@ export namespace COMPONENT_NAMES {
|
|
|
492
492
|
let id_61: string;
|
|
493
493
|
export { id_61 as id };
|
|
494
494
|
}
|
|
495
|
-
namespace
|
|
495
|
+
namespace Input {
|
|
496
496
|
let zh_62: string;
|
|
497
497
|
export { zh_62 as zh };
|
|
498
498
|
let en_62: string;
|
|
@@ -500,7 +500,7 @@ export namespace COMPONENT_NAMES {
|
|
|
500
500
|
let id_62: string;
|
|
501
501
|
export { id_62 as id };
|
|
502
502
|
}
|
|
503
|
-
namespace
|
|
503
|
+
namespace InputTextArea {
|
|
504
504
|
let zh_63: string;
|
|
505
505
|
export { zh_63 as zh };
|
|
506
506
|
let en_63: string;
|
|
@@ -508,7 +508,7 @@ export namespace COMPONENT_NAMES {
|
|
|
508
508
|
let id_63: string;
|
|
509
509
|
export { id_63 as id };
|
|
510
510
|
}
|
|
511
|
-
namespace
|
|
511
|
+
namespace InputNumber {
|
|
512
512
|
let zh_64: string;
|
|
513
513
|
export { zh_64 as zh };
|
|
514
514
|
let en_64: string;
|
|
@@ -516,7 +516,7 @@ export namespace COMPONENT_NAMES {
|
|
|
516
516
|
let id_64: string;
|
|
517
517
|
export { id_64 as id };
|
|
518
518
|
}
|
|
519
|
-
namespace
|
|
519
|
+
namespace InputTag {
|
|
520
520
|
let zh_65: string;
|
|
521
521
|
export { zh_65 as zh };
|
|
522
522
|
let en_65: string;
|
|
@@ -524,7 +524,7 @@ export namespace COMPONENT_NAMES {
|
|
|
524
524
|
let id_65: string;
|
|
525
525
|
export { id_65 as id };
|
|
526
526
|
}
|
|
527
|
-
namespace
|
|
527
|
+
namespace InputButton {
|
|
528
528
|
let zh_66: string;
|
|
529
529
|
export { zh_66 as zh };
|
|
530
530
|
let en_66: string;
|
|
@@ -532,7 +532,7 @@ export namespace COMPONENT_NAMES {
|
|
|
532
532
|
let id_66: string;
|
|
533
533
|
export { id_66 as id };
|
|
534
534
|
}
|
|
535
|
-
namespace
|
|
535
|
+
namespace InputGroup {
|
|
536
536
|
let zh_67: string;
|
|
537
537
|
export { zh_67 as zh };
|
|
538
538
|
let en_67: string;
|
|
@@ -540,7 +540,7 @@ export namespace COMPONENT_NAMES {
|
|
|
540
540
|
let id_67: string;
|
|
541
541
|
export { id_67 as id };
|
|
542
542
|
}
|
|
543
|
-
namespace
|
|
543
|
+
namespace InputPassword {
|
|
544
544
|
let zh_68: string;
|
|
545
545
|
export { zh_68 as zh };
|
|
546
546
|
let en_68: string;
|
|
@@ -548,7 +548,7 @@ export namespace COMPONENT_NAMES {
|
|
|
548
548
|
let id_68: string;
|
|
549
549
|
export { id_68 as id };
|
|
550
550
|
}
|
|
551
|
-
namespace
|
|
551
|
+
namespace InputSearch {
|
|
552
552
|
let zh_69: string;
|
|
553
553
|
export { zh_69 as zh };
|
|
554
554
|
let en_69: string;
|
|
@@ -556,7 +556,7 @@ export namespace COMPONENT_NAMES {
|
|
|
556
556
|
let id_69: string;
|
|
557
557
|
export { id_69 as id };
|
|
558
558
|
}
|
|
559
|
-
namespace
|
|
559
|
+
namespace Layout {
|
|
560
560
|
let zh_70: string;
|
|
561
561
|
export { zh_70 as zh };
|
|
562
562
|
let en_70: string;
|
|
@@ -564,7 +564,7 @@ export namespace COMPONENT_NAMES {
|
|
|
564
564
|
let id_70: string;
|
|
565
565
|
export { id_70 as id };
|
|
566
566
|
}
|
|
567
|
-
namespace
|
|
567
|
+
namespace LayoutContent {
|
|
568
568
|
let zh_71: string;
|
|
569
569
|
export { zh_71 as zh };
|
|
570
570
|
let en_71: string;
|
|
@@ -572,7 +572,7 @@ export namespace COMPONENT_NAMES {
|
|
|
572
572
|
let id_71: string;
|
|
573
573
|
export { id_71 as id };
|
|
574
574
|
}
|
|
575
|
-
namespace
|
|
575
|
+
namespace LayoutFooter {
|
|
576
576
|
let zh_72: string;
|
|
577
577
|
export { zh_72 as zh };
|
|
578
578
|
let en_72: string;
|
|
@@ -580,7 +580,7 @@ export namespace COMPONENT_NAMES {
|
|
|
580
580
|
let id_72: string;
|
|
581
581
|
export { id_72 as id };
|
|
582
582
|
}
|
|
583
|
-
namespace
|
|
583
|
+
namespace LayoutHeader {
|
|
584
584
|
let zh_73: string;
|
|
585
585
|
export { zh_73 as zh };
|
|
586
586
|
let en_73: string;
|
|
@@ -588,7 +588,7 @@ export namespace COMPONENT_NAMES {
|
|
|
588
588
|
let id_73: string;
|
|
589
589
|
export { id_73 as id };
|
|
590
590
|
}
|
|
591
|
-
namespace
|
|
591
|
+
namespace LayoutSider {
|
|
592
592
|
let zh_74: string;
|
|
593
593
|
export { zh_74 as zh };
|
|
594
594
|
let en_74: string;
|
|
@@ -596,7 +596,7 @@ export namespace COMPONENT_NAMES {
|
|
|
596
596
|
let id_74: string;
|
|
597
597
|
export { id_74 as id };
|
|
598
598
|
}
|
|
599
|
-
namespace
|
|
599
|
+
namespace Link {
|
|
600
600
|
let zh_75: string;
|
|
601
601
|
export { zh_75 as zh };
|
|
602
602
|
let en_75: string;
|
|
@@ -604,7 +604,7 @@ export namespace COMPONENT_NAMES {
|
|
|
604
604
|
let id_75: string;
|
|
605
605
|
export { id_75 as id };
|
|
606
606
|
}
|
|
607
|
-
namespace
|
|
607
|
+
namespace List {
|
|
608
608
|
let zh_76: string;
|
|
609
609
|
export { zh_76 as zh };
|
|
610
610
|
let en_76: string;
|
|
@@ -612,7 +612,7 @@ export namespace COMPONENT_NAMES {
|
|
|
612
612
|
let id_76: string;
|
|
613
613
|
export { id_76 as id };
|
|
614
614
|
}
|
|
615
|
-
namespace
|
|
615
|
+
namespace ListItem {
|
|
616
616
|
let zh_77: string;
|
|
617
617
|
export { zh_77 as zh };
|
|
618
618
|
let en_77: string;
|
|
@@ -620,7 +620,7 @@ export namespace COMPONENT_NAMES {
|
|
|
620
620
|
let id_77: string;
|
|
621
621
|
export { id_77 as id };
|
|
622
622
|
}
|
|
623
|
-
namespace
|
|
623
|
+
namespace Loading {
|
|
624
624
|
let zh_78: string;
|
|
625
625
|
export { zh_78 as zh };
|
|
626
626
|
let en_78: string;
|
|
@@ -628,7 +628,7 @@ export namespace COMPONENT_NAMES {
|
|
|
628
628
|
let id_78: string;
|
|
629
629
|
export { id_78 as id };
|
|
630
630
|
}
|
|
631
|
-
namespace
|
|
631
|
+
namespace Mentions {
|
|
632
632
|
let zh_79: string;
|
|
633
633
|
export { zh_79 as zh };
|
|
634
634
|
let en_79: string;
|
|
@@ -636,7 +636,7 @@ export namespace COMPONENT_NAMES {
|
|
|
636
636
|
let id_79: string;
|
|
637
637
|
export { id_79 as id };
|
|
638
638
|
}
|
|
639
|
-
namespace
|
|
639
|
+
namespace Menu {
|
|
640
640
|
let zh_80: string;
|
|
641
641
|
export { zh_80 as zh };
|
|
642
642
|
let en_80: string;
|
|
@@ -644,7 +644,7 @@ export namespace COMPONENT_NAMES {
|
|
|
644
644
|
let id_80: string;
|
|
645
645
|
export { id_80 as id };
|
|
646
646
|
}
|
|
647
|
-
namespace
|
|
647
|
+
namespace MenuItem {
|
|
648
648
|
let zh_81: string;
|
|
649
649
|
export { zh_81 as zh };
|
|
650
650
|
let en_81: string;
|
|
@@ -652,7 +652,7 @@ export namespace COMPONENT_NAMES {
|
|
|
652
652
|
let id_81: string;
|
|
653
653
|
export { id_81 as id };
|
|
654
654
|
}
|
|
655
|
-
namespace
|
|
655
|
+
namespace MenuItemGroup {
|
|
656
656
|
let zh_82: string;
|
|
657
657
|
export { zh_82 as zh };
|
|
658
658
|
let en_82: string;
|
|
@@ -660,7 +660,7 @@ export namespace COMPONENT_NAMES {
|
|
|
660
660
|
let id_82: string;
|
|
661
661
|
export { id_82 as id };
|
|
662
662
|
}
|
|
663
|
-
namespace
|
|
663
|
+
namespace MenuSubMenu {
|
|
664
664
|
let zh_83: string;
|
|
665
665
|
export { zh_83 as zh };
|
|
666
666
|
let en_83: string;
|
|
@@ -668,7 +668,7 @@ export namespace COMPONENT_NAMES {
|
|
|
668
668
|
let id_83: string;
|
|
669
669
|
export { id_83 as id };
|
|
670
670
|
}
|
|
671
|
-
namespace
|
|
671
|
+
namespace Message {
|
|
672
672
|
let zh_84: string;
|
|
673
673
|
export { zh_84 as zh };
|
|
674
674
|
let en_84: string;
|
|
@@ -676,7 +676,7 @@ export namespace COMPONENT_NAMES {
|
|
|
676
676
|
let id_84: string;
|
|
677
677
|
export { id_84 as id };
|
|
678
678
|
}
|
|
679
|
-
namespace
|
|
679
|
+
namespace Modal {
|
|
680
680
|
let zh_85: string;
|
|
681
681
|
export { zh_85 as zh };
|
|
682
682
|
let en_85: string;
|
|
@@ -684,7 +684,7 @@ export namespace COMPONENT_NAMES {
|
|
|
684
684
|
let id_85: string;
|
|
685
685
|
export { id_85 as id };
|
|
686
686
|
}
|
|
687
|
-
namespace
|
|
687
|
+
namespace Notification {
|
|
688
688
|
let zh_86: string;
|
|
689
689
|
export { zh_86 as zh };
|
|
690
690
|
let en_86: string;
|
|
@@ -692,7 +692,7 @@ export namespace COMPONENT_NAMES {
|
|
|
692
692
|
let id_86: string;
|
|
693
693
|
export { id_86 as id };
|
|
694
694
|
}
|
|
695
|
-
namespace
|
|
695
|
+
namespace PageHeader {
|
|
696
696
|
let zh_87: string;
|
|
697
697
|
export { zh_87 as zh };
|
|
698
698
|
let en_87: string;
|
|
@@ -700,7 +700,7 @@ export namespace COMPONENT_NAMES {
|
|
|
700
700
|
let id_87: string;
|
|
701
701
|
export { id_87 as id };
|
|
702
702
|
}
|
|
703
|
-
namespace
|
|
703
|
+
namespace Pagination {
|
|
704
704
|
let zh_88: string;
|
|
705
705
|
export { zh_88 as zh };
|
|
706
706
|
let en_88: string;
|
|
@@ -708,7 +708,7 @@ export namespace COMPONENT_NAMES {
|
|
|
708
708
|
let id_88: string;
|
|
709
709
|
export { id_88 as id };
|
|
710
710
|
}
|
|
711
|
-
namespace
|
|
711
|
+
namespace Popconfirm {
|
|
712
712
|
let zh_89: string;
|
|
713
713
|
export { zh_89 as zh };
|
|
714
714
|
let en_89: string;
|
|
@@ -716,7 +716,7 @@ export namespace COMPONENT_NAMES {
|
|
|
716
716
|
let id_89: string;
|
|
717
717
|
export { id_89 as id };
|
|
718
718
|
}
|
|
719
|
-
namespace
|
|
719
|
+
namespace Popover {
|
|
720
720
|
let zh_90: string;
|
|
721
721
|
export { zh_90 as zh };
|
|
722
722
|
let en_90: string;
|
|
@@ -724,7 +724,7 @@ export namespace COMPONENT_NAMES {
|
|
|
724
724
|
let id_90: string;
|
|
725
725
|
export { id_90 as id };
|
|
726
726
|
}
|
|
727
|
-
namespace
|
|
727
|
+
namespace Portal {
|
|
728
728
|
let zh_91: string;
|
|
729
729
|
export { zh_91 as zh };
|
|
730
730
|
let en_91: string;
|
|
@@ -732,7 +732,7 @@ export namespace COMPONENT_NAMES {
|
|
|
732
732
|
let id_91: string;
|
|
733
733
|
export { id_91 as id };
|
|
734
734
|
}
|
|
735
|
-
namespace
|
|
735
|
+
namespace Progress {
|
|
736
736
|
let zh_92: string;
|
|
737
737
|
export { zh_92 as zh };
|
|
738
738
|
let en_92: string;
|
|
@@ -740,7 +740,7 @@ export namespace COMPONENT_NAMES {
|
|
|
740
740
|
let id_92: string;
|
|
741
741
|
export { id_92 as id };
|
|
742
742
|
}
|
|
743
|
-
namespace
|
|
743
|
+
namespace Qrcode {
|
|
744
744
|
let zh_93: string;
|
|
745
745
|
export { zh_93 as zh };
|
|
746
746
|
let en_93: string;
|
|
@@ -748,7 +748,7 @@ export namespace COMPONENT_NAMES {
|
|
|
748
748
|
let id_93: string;
|
|
749
749
|
export { id_93 as id };
|
|
750
750
|
}
|
|
751
|
-
namespace
|
|
751
|
+
namespace Radio {
|
|
752
752
|
let zh_94: string;
|
|
753
753
|
export { zh_94 as zh };
|
|
754
754
|
let en_94: string;
|
|
@@ -756,7 +756,7 @@ export namespace COMPONENT_NAMES {
|
|
|
756
756
|
let id_94: string;
|
|
757
757
|
export { id_94 as id };
|
|
758
758
|
}
|
|
759
|
-
namespace
|
|
759
|
+
namespace RadioGroup {
|
|
760
760
|
let zh_95: string;
|
|
761
761
|
export { zh_95 as zh };
|
|
762
762
|
let en_95: string;
|
|
@@ -764,7 +764,7 @@ export namespace COMPONENT_NAMES {
|
|
|
764
764
|
let id_95: string;
|
|
765
765
|
export { id_95 as id };
|
|
766
766
|
}
|
|
767
|
-
namespace
|
|
767
|
+
namespace RadioGroupBlock {
|
|
768
768
|
let zh_96: string;
|
|
769
769
|
export { zh_96 as zh };
|
|
770
770
|
let en_96: string;
|
|
@@ -772,7 +772,7 @@ export namespace COMPONENT_NAMES {
|
|
|
772
772
|
let id_96: string;
|
|
773
773
|
export { id_96 as id };
|
|
774
774
|
}
|
|
775
|
-
namespace
|
|
775
|
+
namespace Rate {
|
|
776
776
|
let zh_97: string;
|
|
777
777
|
export { zh_97 as zh };
|
|
778
778
|
let en_97: string;
|
|
@@ -780,7 +780,7 @@ export namespace COMPONENT_NAMES {
|
|
|
780
780
|
let id_97: string;
|
|
781
781
|
export { id_97 as id };
|
|
782
782
|
}
|
|
783
|
-
namespace
|
|
783
|
+
namespace ResizeBox {
|
|
784
784
|
let zh_98: string;
|
|
785
785
|
export { zh_98 as zh };
|
|
786
786
|
let en_98: string;
|
|
@@ -788,7 +788,7 @@ export namespace COMPONENT_NAMES {
|
|
|
788
788
|
let id_98: string;
|
|
789
789
|
export { id_98 as id };
|
|
790
790
|
}
|
|
791
|
-
namespace
|
|
791
|
+
namespace ResizeBoxSplit {
|
|
792
792
|
let zh_99: string;
|
|
793
793
|
export { zh_99 as zh };
|
|
794
794
|
let en_99: string;
|
|
@@ -796,7 +796,7 @@ export namespace COMPONENT_NAMES {
|
|
|
796
796
|
let id_99: string;
|
|
797
797
|
export { id_99 as id };
|
|
798
798
|
}
|
|
799
|
-
namespace
|
|
799
|
+
namespace ResizeBoxSplitGroup {
|
|
800
800
|
let zh_100: string;
|
|
801
801
|
export { zh_100 as zh };
|
|
802
802
|
let en_100: string;
|
|
@@ -804,7 +804,7 @@ export namespace COMPONENT_NAMES {
|
|
|
804
804
|
let id_100: string;
|
|
805
805
|
export { id_100 as id };
|
|
806
806
|
}
|
|
807
|
-
namespace
|
|
807
|
+
namespace Result {
|
|
808
808
|
let zh_101: string;
|
|
809
809
|
export { zh_101 as zh };
|
|
810
810
|
let en_101: string;
|
|
@@ -876,7 +876,7 @@ export namespace COMPONENT_NAMES {
|
|
|
876
876
|
let id_109: string;
|
|
877
877
|
export { id_109 as id };
|
|
878
878
|
}
|
|
879
|
-
namespace
|
|
879
|
+
namespace Countdown {
|
|
880
880
|
let zh_110: string;
|
|
881
881
|
export { zh_110 as zh };
|
|
882
882
|
let en_110: string;
|
|
@@ -884,7 +884,7 @@ export namespace COMPONENT_NAMES {
|
|
|
884
884
|
let id_110: string;
|
|
885
885
|
export { id_110 as id };
|
|
886
886
|
}
|
|
887
|
-
namespace
|
|
887
|
+
namespace Steps {
|
|
888
888
|
let zh_111: string;
|
|
889
889
|
export { zh_111 as zh };
|
|
890
890
|
let en_111: string;
|
|
@@ -892,7 +892,7 @@ export namespace COMPONENT_NAMES {
|
|
|
892
892
|
let id_111: string;
|
|
893
893
|
export { id_111 as id };
|
|
894
894
|
}
|
|
895
|
-
namespace
|
|
895
|
+
namespace StepsStep {
|
|
896
896
|
let zh_112: string;
|
|
897
897
|
export { zh_112 as zh };
|
|
898
898
|
let en_112: string;
|
|
@@ -900,7 +900,7 @@ export namespace COMPONENT_NAMES {
|
|
|
900
900
|
let id_112: string;
|
|
901
901
|
export { id_112 as id };
|
|
902
902
|
}
|
|
903
|
-
namespace
|
|
903
|
+
namespace StepsItem {
|
|
904
904
|
let zh_113: string;
|
|
905
905
|
export { zh_113 as zh };
|
|
906
906
|
let en_113: string;
|
|
@@ -908,7 +908,7 @@ export namespace COMPONENT_NAMES {
|
|
|
908
908
|
let id_113: string;
|
|
909
909
|
export { id_113 as id };
|
|
910
910
|
}
|
|
911
|
-
namespace
|
|
911
|
+
namespace Switch {
|
|
912
912
|
let zh_114: string;
|
|
913
913
|
export { zh_114 as zh };
|
|
914
914
|
let en_114: string;
|
|
@@ -916,7 +916,7 @@ export namespace COMPONENT_NAMES {
|
|
|
916
916
|
let id_114: string;
|
|
917
917
|
export { id_114 as id };
|
|
918
918
|
}
|
|
919
|
-
namespace
|
|
919
|
+
namespace Table {
|
|
920
920
|
let zh_115: string;
|
|
921
921
|
export { zh_115 as zh };
|
|
922
922
|
let en_115: string;
|
|
@@ -924,7 +924,7 @@ export namespace COMPONENT_NAMES {
|
|
|
924
924
|
let id_115: string;
|
|
925
925
|
export { id_115 as id };
|
|
926
926
|
}
|
|
927
|
-
namespace
|
|
927
|
+
namespace TableSummary {
|
|
928
928
|
let zh_116: string;
|
|
929
929
|
export { zh_116 as zh };
|
|
930
930
|
let en_116: string;
|
|
@@ -932,7 +932,7 @@ export namespace COMPONENT_NAMES {
|
|
|
932
932
|
let id_116: string;
|
|
933
933
|
export { id_116 as id };
|
|
934
934
|
}
|
|
935
|
-
namespace
|
|
935
|
+
namespace TableSummaryCell {
|
|
936
936
|
let zh_117: string;
|
|
937
937
|
export { zh_117 as zh };
|
|
938
938
|
let en_117: string;
|
|
@@ -940,7 +940,7 @@ export namespace COMPONENT_NAMES {
|
|
|
940
940
|
let id_117: string;
|
|
941
941
|
export { id_117 as id };
|
|
942
942
|
}
|
|
943
|
-
namespace
|
|
943
|
+
namespace TableSummaryRow {
|
|
944
944
|
let zh_118: string;
|
|
945
945
|
export { zh_118 as zh };
|
|
946
946
|
let en_118: string;
|
|
@@ -948,7 +948,7 @@ export namespace COMPONENT_NAMES {
|
|
|
948
948
|
let id_118: string;
|
|
949
949
|
export { id_118 as id };
|
|
950
950
|
}
|
|
951
|
-
namespace
|
|
951
|
+
namespace Tabs {
|
|
952
952
|
let zh_119: string;
|
|
953
953
|
export { zh_119 as zh };
|
|
954
954
|
let en_119: string;
|
|
@@ -956,7 +956,7 @@ export namespace COMPONENT_NAMES {
|
|
|
956
956
|
let id_119: string;
|
|
957
957
|
export { id_119 as id };
|
|
958
958
|
}
|
|
959
|
-
namespace
|
|
959
|
+
namespace Tag {
|
|
960
960
|
let zh_120: string;
|
|
961
961
|
export { zh_120 as zh };
|
|
962
962
|
let en_120: string;
|
|
@@ -964,7 +964,7 @@ export namespace COMPONENT_NAMES {
|
|
|
964
964
|
let id_120: string;
|
|
965
965
|
export { id_120 as id };
|
|
966
966
|
}
|
|
967
|
-
namespace
|
|
967
|
+
namespace TimePicker {
|
|
968
968
|
let zh_121: string;
|
|
969
969
|
export { zh_121 as zh };
|
|
970
970
|
let en_121: string;
|
|
@@ -972,7 +972,7 @@ export namespace COMPONENT_NAMES {
|
|
|
972
972
|
let id_121: string;
|
|
973
973
|
export { id_121 as id };
|
|
974
974
|
}
|
|
975
|
-
namespace
|
|
975
|
+
namespace TimePickerRange {
|
|
976
976
|
let zh_122: string;
|
|
977
977
|
export { zh_122 as zh };
|
|
978
978
|
let en_122: string;
|
|
@@ -980,7 +980,7 @@ export namespace COMPONENT_NAMES {
|
|
|
980
980
|
let id_122: string;
|
|
981
981
|
export { id_122 as id };
|
|
982
982
|
}
|
|
983
|
-
namespace
|
|
983
|
+
namespace Timeline {
|
|
984
984
|
let zh_123: string;
|
|
985
985
|
export { zh_123 as zh };
|
|
986
986
|
let en_123: string;
|
|
@@ -988,7 +988,7 @@ export namespace COMPONENT_NAMES {
|
|
|
988
988
|
let id_123: string;
|
|
989
989
|
export { id_123 as id };
|
|
990
990
|
}
|
|
991
|
-
namespace
|
|
991
|
+
namespace Tooltip {
|
|
992
992
|
let zh_124: string;
|
|
993
993
|
export { zh_124 as zh };
|
|
994
994
|
let en_124: string;
|
|
@@ -996,7 +996,7 @@ export namespace COMPONENT_NAMES {
|
|
|
996
996
|
let id_124: string;
|
|
997
997
|
export { id_124 as id };
|
|
998
998
|
}
|
|
999
|
-
namespace
|
|
999
|
+
namespace Transfer {
|
|
1000
1000
|
let zh_125: string;
|
|
1001
1001
|
export { zh_125 as zh };
|
|
1002
1002
|
let en_125: string;
|
|
@@ -1004,7 +1004,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1004
1004
|
let id_125: string;
|
|
1005
1005
|
export { id_125 as id };
|
|
1006
1006
|
}
|
|
1007
|
-
namespace
|
|
1007
|
+
namespace Tree {
|
|
1008
1008
|
let zh_126: string;
|
|
1009
1009
|
export { zh_126 as zh };
|
|
1010
1010
|
let en_126: string;
|
|
@@ -1012,7 +1012,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1012
1012
|
let id_126: string;
|
|
1013
1013
|
export { id_126 as id };
|
|
1014
1014
|
}
|
|
1015
|
-
namespace
|
|
1015
|
+
namespace TreeSelect {
|
|
1016
1016
|
let zh_127: string;
|
|
1017
1017
|
export { zh_127 as zh };
|
|
1018
1018
|
let en_127: string;
|
|
@@ -1020,7 +1020,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1020
1020
|
let id_127: string;
|
|
1021
1021
|
export { id_127 as id };
|
|
1022
1022
|
}
|
|
1023
|
-
namespace
|
|
1023
|
+
namespace Trigger {
|
|
1024
1024
|
let zh_128: string;
|
|
1025
1025
|
export { zh_128 as zh };
|
|
1026
1026
|
let en_128: string;
|
|
@@ -1028,7 +1028,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1028
1028
|
let id_128: string;
|
|
1029
1029
|
export { id_128 as id };
|
|
1030
1030
|
}
|
|
1031
|
-
namespace
|
|
1031
|
+
namespace Typography {
|
|
1032
1032
|
let zh_129: string;
|
|
1033
1033
|
export { zh_129 as zh };
|
|
1034
1034
|
let en_129: string;
|
|
@@ -1036,7 +1036,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1036
1036
|
let id_129: string;
|
|
1037
1037
|
export { id_129 as id };
|
|
1038
1038
|
}
|
|
1039
|
-
namespace
|
|
1039
|
+
namespace TypographyEllipsis {
|
|
1040
1040
|
let zh_130: string;
|
|
1041
1041
|
export { zh_130 as zh };
|
|
1042
1042
|
let en_130: string;
|
|
@@ -1044,7 +1044,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1044
1044
|
let id_130: string;
|
|
1045
1045
|
export { id_130 as id };
|
|
1046
1046
|
}
|
|
1047
|
-
namespace
|
|
1047
|
+
namespace TypographyParagraph {
|
|
1048
1048
|
let zh_131: string;
|
|
1049
1049
|
export { zh_131 as zh };
|
|
1050
1050
|
let en_131: string;
|
|
@@ -1052,7 +1052,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1052
1052
|
let id_131: string;
|
|
1053
1053
|
export { id_131 as id };
|
|
1054
1054
|
}
|
|
1055
|
-
namespace
|
|
1055
|
+
namespace TypographyText {
|
|
1056
1056
|
let zh_132: string;
|
|
1057
1057
|
export { zh_132 as zh };
|
|
1058
1058
|
let en_132: string;
|
|
@@ -1060,7 +1060,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1060
1060
|
let id_132: string;
|
|
1061
1061
|
export { id_132 as id };
|
|
1062
1062
|
}
|
|
1063
|
-
namespace
|
|
1063
|
+
namespace TypographyTitle {
|
|
1064
1064
|
let zh_133: string;
|
|
1065
1065
|
export { zh_133 as zh };
|
|
1066
1066
|
let en_133: string;
|
|
@@ -1068,7 +1068,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1068
1068
|
let id_133: string;
|
|
1069
1069
|
export { id_133 as id };
|
|
1070
1070
|
}
|
|
1071
|
-
namespace
|
|
1071
|
+
namespace Upload {
|
|
1072
1072
|
let zh_134: string;
|
|
1073
1073
|
export { zh_134 as zh };
|
|
1074
1074
|
let en_134: string;
|
|
@@ -1076,7 +1076,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1076
1076
|
let id_134: string;
|
|
1077
1077
|
export { id_134 as id };
|
|
1078
1078
|
}
|
|
1079
|
-
namespace
|
|
1079
|
+
namespace VerificationCode {
|
|
1080
1080
|
let zh_135: string;
|
|
1081
1081
|
export { zh_135 as zh };
|
|
1082
1082
|
let en_135: string;
|
|
@@ -1084,7 +1084,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1084
1084
|
let id_135: string;
|
|
1085
1085
|
export { id_135 as id };
|
|
1086
1086
|
}
|
|
1087
|
-
namespace
|
|
1087
|
+
namespace Watermark {
|
|
1088
1088
|
let zh_136: string;
|
|
1089
1089
|
export { zh_136 as zh };
|
|
1090
1090
|
let en_136: string;
|
|
@@ -1092,7 +1092,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1092
1092
|
let id_136: string;
|
|
1093
1093
|
export { id_136 as id };
|
|
1094
1094
|
}
|
|
1095
|
-
namespace
|
|
1095
|
+
namespace Development {
|
|
1096
1096
|
let zh_137: string;
|
|
1097
1097
|
export { zh_137 as zh };
|
|
1098
1098
|
let en_137: string;
|
|
@@ -1100,7 +1100,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1100
1100
|
let id_137: string;
|
|
1101
1101
|
export { id_137 as id };
|
|
1102
1102
|
}
|
|
1103
|
-
namespace
|
|
1103
|
+
namespace Tour {
|
|
1104
1104
|
let zh_138: string;
|
|
1105
1105
|
export { zh_138 as zh };
|
|
1106
1106
|
let en_138: string;
|
|
@@ -1108,7 +1108,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1108
1108
|
let id_138: string;
|
|
1109
1109
|
export { id_138 as id };
|
|
1110
1110
|
}
|
|
1111
|
-
namespace
|
|
1111
|
+
namespace QRCode {
|
|
1112
1112
|
let zh_139: string;
|
|
1113
1113
|
export { zh_139 as zh };
|
|
1114
1114
|
let en_139: string;
|
|
@@ -1116,7 +1116,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1116
1116
|
let id_139: string;
|
|
1117
1117
|
export { id_139 as id };
|
|
1118
1118
|
}
|
|
1119
|
-
namespace
|
|
1119
|
+
namespace LiquidFill {
|
|
1120
1120
|
let zh_140: string;
|
|
1121
1121
|
export { zh_140 as zh };
|
|
1122
1122
|
let en_140: string;
|
|
@@ -1124,7 +1124,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1124
1124
|
let id_140: string;
|
|
1125
1125
|
export { id_140 as id };
|
|
1126
1126
|
}
|
|
1127
|
-
namespace
|
|
1127
|
+
namespace Marquee {
|
|
1128
1128
|
let zh_141: string;
|
|
1129
1129
|
export { zh_141 as zh };
|
|
1130
1130
|
let en_141: string;
|
|
@@ -1132,7 +1132,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1132
1132
|
let id_141: string;
|
|
1133
1133
|
export { id_141 as id };
|
|
1134
1134
|
}
|
|
1135
|
-
namespace
|
|
1135
|
+
namespace Segmented {
|
|
1136
1136
|
let zh_142: string;
|
|
1137
1137
|
export { zh_142 as zh };
|
|
1138
1138
|
let en_142: string;
|
|
@@ -1140,7 +1140,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1140
1140
|
let id_142: string;
|
|
1141
1141
|
export { id_142 as id };
|
|
1142
1142
|
}
|
|
1143
|
-
namespace
|
|
1143
|
+
namespace Splitter {
|
|
1144
1144
|
let zh_143: string;
|
|
1145
1145
|
export { zh_143 as zh };
|
|
1146
1146
|
let en_143: string;
|
|
@@ -1148,7 +1148,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1148
1148
|
let id_143: string;
|
|
1149
1149
|
export { id_143 as id };
|
|
1150
1150
|
}
|
|
1151
|
-
namespace
|
|
1151
|
+
namespace Flex {
|
|
1152
1152
|
let zh_144: string;
|
|
1153
1153
|
export { zh_144 as zh };
|
|
1154
1154
|
let en_144: string;
|
|
@@ -1156,7 +1156,7 @@ export namespace COMPONENT_NAMES {
|
|
|
1156
1156
|
let id_144: string;
|
|
1157
1157
|
export { id_144 as id };
|
|
1158
1158
|
}
|
|
1159
|
-
namespace
|
|
1159
|
+
namespace App {
|
|
1160
1160
|
let zh_145: string;
|
|
1161
1161
|
export { zh_145 as zh };
|
|
1162
1162
|
let en_145: string;
|
|
@@ -1164,4 +1164,12 @@ export namespace COMPONENT_NAMES {
|
|
|
1164
1164
|
let id_145: string;
|
|
1165
1165
|
export { id_145 as id };
|
|
1166
1166
|
}
|
|
1167
|
+
namespace VariableIcon {
|
|
1168
|
+
let zh_146: string;
|
|
1169
|
+
export { zh_146 as zh };
|
|
1170
|
+
let en_146: string;
|
|
1171
|
+
export { en_146 as en };
|
|
1172
|
+
let id_146: string;
|
|
1173
|
+
export { id_146 as id };
|
|
1174
|
+
}
|
|
1167
1175
|
}
|