@next-bricks/advanced 0.51.7 → 0.52.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.
@@ -128,6 +128,242 @@
128
128
  "description": "级联选择器",
129
129
  "category": "form-input-basic"
130
130
  },
131
+ {
132
+ "name": "eo-next-table",
133
+ "properties": [
134
+ {
135
+ "name": "rowKey",
136
+ "description": "指定表格行的 key",
137
+ "default": "\"key\"",
138
+ "type": "string"
139
+ },
140
+ {
141
+ "name": "columns",
142
+ "description": "列定义",
143
+ "attribute": false,
144
+ "type": "Column[]"
145
+ },
146
+ {
147
+ "name": "cell",
148
+ "description": "单元格统一配置,可配置 useBrick 自定义渲染所有单元格及表头",
149
+ "attribute": false,
150
+ "type": "CellConfig"
151
+ },
152
+ {
153
+ "name": "dataSource",
154
+ "description": "数据源",
155
+ "attribute": false,
156
+ "type": "DataSource"
157
+ },
158
+ {
159
+ "name": "frontSearch",
160
+ "description": "是否前端搜索",
161
+ "type": "boolean"
162
+ },
163
+ {
164
+ "name": "pagination",
165
+ "description": "分页配置",
166
+ "attribute": false,
167
+ "type": "PaginationType"
168
+ },
169
+ {
170
+ "name": "loading",
171
+ "description": "显示加载中状态",
172
+ "type": "boolean"
173
+ },
174
+ {
175
+ "name": "multiSort",
176
+ "description": "是否支持多列排序,前端搜索时需设置 column.sortPriority 优先级",
177
+ "type": "boolean"
178
+ },
179
+ {
180
+ "name": "sort",
181
+ "description": "排序信息",
182
+ "attribute": false,
183
+ "type": "Sort | Sort[]"
184
+ },
185
+ {
186
+ "name": "rowSelection",
187
+ "description": "表格行可选择配置",
188
+ "attribute": false,
189
+ "type": "RowSelectionType"
190
+ },
191
+ {
192
+ "name": "selectedRowKeys",
193
+ "description": "选中项的 key",
194
+ "attribute": false,
195
+ "type": "(string | number)[]"
196
+ },
197
+ {
198
+ "name": "hiddenColumns",
199
+ "description": "隐藏的列(输入对应的 column.key)",
200
+ "attribute": false,
201
+ "type": "(string | number)[]"
202
+ },
203
+ {
204
+ "name": "expandable",
205
+ "description": "表格行展开配置",
206
+ "attribute": false,
207
+ "type": "ExpandableType"
208
+ },
209
+ {
210
+ "name": "expandedRowKeys",
211
+ "description": "展开项的 key",
212
+ "attribute": false,
213
+ "type": "(string | number)[]"
214
+ },
215
+ {
216
+ "name": "childrenColumnName",
217
+ "description": "树形结构的列名",
218
+ "default": "\"children\"",
219
+ "type": "string"
220
+ },
221
+ {
222
+ "name": "rowDraggable",
223
+ "description": "表格行拖拽配置",
224
+ "type": "boolean"
225
+ },
226
+ {
227
+ "name": "rowClickable",
228
+ "description": "表格行可点击(激活鼠标手势)",
229
+ "type": "boolean"
230
+ },
231
+ {
232
+ "name": "searchFields",
233
+ "description": "进行前端搜索的字段,支持嵌套的写法。不配置的时候默认为对所有 column.dataIndex 进行前端搜索",
234
+ "attribute": false,
235
+ "type": "(string | string[])[]"
236
+ },
237
+ {
238
+ "name": "size",
239
+ "description": "表格大小",
240
+ "default": "\"large\"",
241
+ "type": "TableProps<RecordType>[\"size\"]"
242
+ },
243
+ {
244
+ "name": "showHeader",
245
+ "description": "是否显示表头",
246
+ "default": "true",
247
+ "type": "boolean"
248
+ },
249
+ {
250
+ "name": "bordered",
251
+ "description": "是否显示边框",
252
+ "type": "boolean"
253
+ },
254
+ {
255
+ "name": "scrollConfig",
256
+ "description": "滚动配置",
257
+ "default": "{ x: true }",
258
+ "attribute": false,
259
+ "type": "TableScroll"
260
+ },
261
+ {
262
+ "name": "optimizedColumns",
263
+ "description": "优化渲染的列(输入对应的 column.key)",
264
+ "attribute": false,
265
+ "type": "(string | number)[]"
266
+ },
267
+ {
268
+ "name": "themeVariant",
269
+ "description": "主题变体",
270
+ "type": "\"default\" | \"elevo\""
271
+ }
272
+ ],
273
+ "events": [
274
+ {
275
+ "name": "page.change",
276
+ "description": "page 或 pageSize 改变的回调",
277
+ "detail": {
278
+ "description": "改变后的页码及每页条数",
279
+ "type": "PageOrPageSizeChangeEventDetail"
280
+ }
281
+ },
282
+ {
283
+ "name": "page.size.change",
284
+ "description": "pageSize 变化的回调",
285
+ "deprecated": "统一用 `page.change` 事件",
286
+ "detail": {
287
+ "description": "改变后的页码及每页条数",
288
+ "type": "PageOrPageSizeChangeEventDetail"
289
+ }
290
+ },
291
+ {
292
+ "name": "sort.change",
293
+ "description": "排序变化的回调",
294
+ "detail": {
295
+ "description": "当前排序的信息",
296
+ "type": "Sort | Sort[] | undefined"
297
+ }
298
+ },
299
+ {
300
+ "name": "row.click",
301
+ "description": "行点击时的回调",
302
+ "detail": {
303
+ "description": "被点击的行数据",
304
+ "type": "RecordType"
305
+ }
306
+ },
307
+ {
308
+ "name": "row.select",
309
+ "description": "行选中项发生变化时的回调",
310
+ "detail": {
311
+ "description": "改变后的 rowKey 及行数据",
312
+ "type": "RowSelectEventDetail"
313
+ }
314
+ },
315
+ {
316
+ "name": "row.select.v2",
317
+ "description": "行选中项发生变化时的回调(v2 版本)",
318
+ "detail": {
319
+ "description": "改变后的行数据",
320
+ "type": "RecordType[]"
321
+ }
322
+ },
323
+ {
324
+ "name": "row.expand",
325
+ "description": "点击展开图标时触发",
326
+ "detail": {
327
+ "description": "当前行的展开情况及数据",
328
+ "type": "RowExpandEventDetail"
329
+ }
330
+ },
331
+ {
332
+ "name": "expanded.rows.change",
333
+ "description": "展开的行变化时触发",
334
+ "detail": {
335
+ "description": "所有展开行的 key",
336
+ "type": "(string | number)[]"
337
+ }
338
+ },
339
+ {
340
+ "name": "row.drag",
341
+ "description": "表格行拖拽结束发生的事件",
342
+ "detail": {
343
+ "description": "重新排序的行数据、拖拽的行数据、放下位置的行数据",
344
+ "type": "RowDragEventDetail"
345
+ }
346
+ }
347
+ ],
348
+ "slots": [],
349
+ "methods": [
350
+ {
351
+ "name": "search",
352
+ "params": [
353
+ {
354
+ "name": "params",
355
+ "description": "搜索参数,q 为搜索关键词",
356
+ "type": "{ q: string }"
357
+ }
358
+ ],
359
+ "description": "前端搜索",
360
+ "returns": {}
361
+ }
362
+ ],
363
+ "parts": [],
364
+ "description": "大型表格",
365
+ "category": "table"
366
+ },
131
367
  {
132
368
  "name": "eo-table",
133
369
  "alias": [
@@ -386,311 +622,66 @@
386
622
  ],
387
623
  "events": [
388
624
  {
389
- "name": "page.update",
390
- "description": "页码变化,pagePath 可在 fields.page 中设置,默认为 page",
391
- "detail": {
392
- "description": "{ page: 当前页码, pageSize: 每页条数 }",
393
- "type": "Record<string, number>"
394
- }
395
- },
396
- {
397
- "name": "filter.update",
398
- "description": "每页条数变化 ,pagePath 可在 fields.page 中设置,pageSizePath 可在 fields.pageSize 中设置,默认为 pageSize",
399
- "detail": {
400
- "description": "{ page: 当前页码, pageSize: 每页条数 }",
401
- "type": "Record<string, number>"
402
- }
403
- },
404
- {
405
- "name": "select.update",
406
- "description": "勾选框变化,detail 中为所选的行数据",
407
- "detail": {
408
- "description": "选中的行数据数组",
409
- "type": "Record<string, any>[]"
410
- }
411
- },
412
- {
413
- "name": "select.row.keys.update",
414
- "description": "勾选框变化,detail 中为所选的行key集合",
415
- "detail": {
416
- "description": "选中的行 key 集合",
417
- "type": "string[]"
418
- }
419
- },
420
- {
421
- "name": "sort.update",
422
- "description": "排序变化,detail 中的 sort 为对应排序列的 key/dataIndex,order 为升序/降序",
423
- "detail": {
424
- "description": "{ sort: 排序列的 key/dataIndex, order: 升序/降序 }",
425
- "type": "SortUpdateEventDetail"
426
- }
427
- },
428
- {
429
- "name": "row.expand",
430
- "description": "点击展开图标时触发的事件,事件详情中`expanded`为是否展开,`record`被点击的行信息",
431
- "detail": {
432
- "description": "{ expanded: 是否展开, record: 被点击的行数据 }",
433
- "type": "RowExpandEventDetail"
434
- }
435
- },
436
- {
437
- "name": "expand.rows.change",
438
- "description": "展开的行变化时触发的事件,事件详情为当前展开的所有行的`rowKey`集合",
439
- "detail": {
440
- "description": "{ expandedRows: 当前展开的所有行的 rowKey 集合 }",
441
- "type": "ExpandRowsChangeEventDetail"
442
- }
443
- },
444
- {
445
- "name": "row.drag",
446
- "description": "表格行拖拽结束发生的事件,事件详情为拖拽后重新排序的所有行数据",
447
- "detail": {
448
- "description": "{ data: 拖拽后重新排序的所有行数据 }",
449
- "type": "RowDragEventDetail"
450
- }
451
- }
452
- ],
453
- "slots": [],
454
- "methods": [
455
- {
456
- "name": "filterSourceData",
457
- "params": [
458
- {
459
- "name": "event",
460
- "description": "搜索事件,event.detail.q 为搜索关键词",
461
- "type": "CustomEvent"
462
- }
463
- ],
464
- "description": "搜索过滤",
465
- "returns": {
466
- "type": "void"
467
- }
468
- },
469
- {
470
- "name": "expandAll",
471
- "params": [],
472
- "description": "展开所有行",
473
- "returns": {}
474
- }
475
- ],
476
- "parts": [],
477
- "description": "简易表格构件。\n\n⚠️ 通常情况下,应使用 `eo-next-table` 替代。",
478
- "category": "table",
479
- "insider": true
480
- },
481
- {
482
- "name": "eo-next-table",
483
- "properties": [
484
- {
485
- "name": "rowKey",
486
- "description": "指定表格行的 key",
487
- "default": "\"key\"",
488
- "type": "string"
489
- },
490
- {
491
- "name": "columns",
492
- "description": "列定义",
493
- "attribute": false,
494
- "type": "Column[]"
495
- },
496
- {
497
- "name": "cell",
498
- "description": "单元格统一配置,可配置 useBrick 自定义渲染所有单元格及表头",
499
- "attribute": false,
500
- "type": "CellConfig"
501
- },
502
- {
503
- "name": "dataSource",
504
- "description": "数据源",
505
- "attribute": false,
506
- "type": "DataSource"
507
- },
508
- {
509
- "name": "frontSearch",
510
- "description": "是否前端搜索",
511
- "type": "boolean"
512
- },
513
- {
514
- "name": "pagination",
515
- "description": "分页配置",
516
- "attribute": false,
517
- "type": "PaginationType"
518
- },
519
- {
520
- "name": "loading",
521
- "description": "显示加载中状态",
522
- "type": "boolean"
523
- },
524
- {
525
- "name": "multiSort",
526
- "description": "是否支持多列排序,前端搜索时需设置 column.sortPriority 优先级",
527
- "type": "boolean"
528
- },
529
- {
530
- "name": "sort",
531
- "description": "排序信息",
532
- "attribute": false,
533
- "type": "Sort | Sort[]"
534
- },
535
- {
536
- "name": "rowSelection",
537
- "description": "表格行可选择配置",
538
- "attribute": false,
539
- "type": "RowSelectionType"
540
- },
541
- {
542
- "name": "selectedRowKeys",
543
- "description": "选中项的 key",
544
- "attribute": false,
545
- "type": "(string | number)[]"
546
- },
547
- {
548
- "name": "hiddenColumns",
549
- "description": "隐藏的列(输入对应的 column.key)",
550
- "attribute": false,
551
- "type": "(string | number)[]"
552
- },
553
- {
554
- "name": "expandable",
555
- "description": "表格行展开配置",
556
- "attribute": false,
557
- "type": "ExpandableType"
558
- },
559
- {
560
- "name": "expandedRowKeys",
561
- "description": "展开项的 key",
562
- "attribute": false,
563
- "type": "(string | number)[]"
564
- },
565
- {
566
- "name": "childrenColumnName",
567
- "description": "树形结构的列名",
568
- "default": "\"children\"",
569
- "type": "string"
570
- },
571
- {
572
- "name": "rowDraggable",
573
- "description": "表格行拖拽配置",
574
- "type": "boolean"
575
- },
576
- {
577
- "name": "rowClickable",
578
- "description": "表格行可点击(激活鼠标手势)",
579
- "type": "boolean"
580
- },
581
- {
582
- "name": "searchFields",
583
- "description": "进行前端搜索的字段,支持嵌套的写法。不配置的时候默认为对所有 column.dataIndex 进行前端搜索",
584
- "attribute": false,
585
- "type": "(string | string[])[]"
586
- },
587
- {
588
- "name": "size",
589
- "description": "表格大小",
590
- "default": "\"large\"",
591
- "type": "TableProps<RecordType>[\"size\"]"
592
- },
593
- {
594
- "name": "showHeader",
595
- "description": "是否显示表头",
596
- "default": "true",
597
- "type": "boolean"
598
- },
599
- {
600
- "name": "bordered",
601
- "description": "是否显示边框",
602
- "type": "boolean"
603
- },
604
- {
605
- "name": "scrollConfig",
606
- "description": "滚动配置",
607
- "default": "{ x: true }",
608
- "attribute": false,
609
- "type": "TableScroll"
610
- },
611
- {
612
- "name": "optimizedColumns",
613
- "description": "优化渲染的列(输入对应的 column.key)",
614
- "attribute": false,
615
- "type": "(string | number)[]"
616
- },
617
- {
618
- "name": "themeVariant",
619
- "description": "主题变体",
620
- "type": "\"default\" | \"elevo\""
621
- }
622
- ],
623
- "events": [
624
- {
625
- "name": "page.change",
626
- "description": "page 或 pageSize 改变的回调",
627
- "detail": {
628
- "description": "改变后的页码及每页条数",
629
- "type": "PageOrPageSizeChangeEventDetail"
630
- }
631
- },
632
- {
633
- "name": "page.size.change",
634
- "description": "pageSize 变化的回调",
635
- "deprecated": "统一用 `page.change` 事件",
625
+ "name": "page.update",
626
+ "description": "页码变化,pagePath 可在 fields.page 中设置,默认为 page",
636
627
  "detail": {
637
- "description": "改变后的页码及每页条数",
638
- "type": "PageOrPageSizeChangeEventDetail"
628
+ "description": "{ page: 当前页码, pageSize: 每页条数 }",
629
+ "type": "Record<string, number>"
639
630
  }
640
631
  },
641
632
  {
642
- "name": "sort.change",
643
- "description": "排序变化的回调",
633
+ "name": "filter.update",
634
+ "description": "每页条数变化 ,pagePath 可在 fields.page 中设置,pageSizePath 可在 fields.pageSize 中设置,默认为 pageSize",
644
635
  "detail": {
645
- "description": "当前排序的信息",
646
- "type": "Sort | Sort[] | undefined"
636
+ "description": "{ page: 当前页码, pageSize: 每页条数 }",
637
+ "type": "Record<string, number>"
647
638
  }
648
639
  },
649
640
  {
650
- "name": "row.click",
651
- "description": "行点击时的回调",
641
+ "name": "select.update",
642
+ "description": "勾选框变化,detail 中为所选的行数据",
652
643
  "detail": {
653
- "description": "被点击的行数据",
654
- "type": "RecordType"
644
+ "description": "选中的行数据数组",
645
+ "type": "Record<string, any>[]"
655
646
  }
656
647
  },
657
648
  {
658
- "name": "row.select",
659
- "description": "行选中项发生变化时的回调",
649
+ "name": "select.row.keys.update",
650
+ "description": "勾选框变化,detail 中为所选的行key集合",
660
651
  "detail": {
661
- "description": "改变后的 rowKey 及行数据",
662
- "type": "RowSelectEventDetail"
652
+ "description": "选中的行 key 集合",
653
+ "type": "string[]"
663
654
  }
664
655
  },
665
656
  {
666
- "name": "row.select.v2",
667
- "description": "行选中项发生变化时的回调(v2 版本)",
657
+ "name": "sort.update",
658
+ "description": "排序变化,detail 中的 sort 为对应排序列的 key/dataIndex,order 为升序/降序",
668
659
  "detail": {
669
- "description": "改变后的行数据",
670
- "type": "RecordType[]"
660
+ "description": "{ sort: 排序列的 key/dataIndex, order: 升序/降序 }",
661
+ "type": "SortUpdateEventDetail"
671
662
  }
672
663
  },
673
664
  {
674
665
  "name": "row.expand",
675
- "description": "点击展开图标时触发",
666
+ "description": "点击展开图标时触发的事件,事件详情中`expanded`为是否展开,`record`被点击的行信息",
676
667
  "detail": {
677
- "description": "当前行的展开情况及数据",
668
+ "description": "{ expanded: 是否展开, record: 被点击的行数据 }",
678
669
  "type": "RowExpandEventDetail"
679
670
  }
680
671
  },
681
672
  {
682
- "name": "expanded.rows.change",
683
- "description": "展开的行变化时触发",
673
+ "name": "expand.rows.change",
674
+ "description": "展开的行变化时触发的事件,事件详情为当前展开的所有行的`rowKey`集合",
684
675
  "detail": {
685
- "description": "所有展开行的 key",
686
- "type": "(string | number)[]"
676
+ "description": "{ expandedRows: 当前展开的所有行的 rowKey 集合 }",
677
+ "type": "ExpandRowsChangeEventDetail"
687
678
  }
688
679
  },
689
680
  {
690
681
  "name": "row.drag",
691
- "description": "表格行拖拽结束发生的事件",
682
+ "description": "表格行拖拽结束发生的事件,事件详情为拖拽后重新排序的所有行数据",
692
683
  "detail": {
693
- "description": "重新排序的行数据、拖拽的行数据、放下位置的行数据",
684
+ "description": "{ data: 拖拽后重新排序的所有行数据 }",
694
685
  "type": "RowDragEventDetail"
695
686
  }
696
687
  }
@@ -698,21 +689,30 @@
698
689
  "slots": [],
699
690
  "methods": [
700
691
  {
701
- "name": "search",
692
+ "name": "filterSourceData",
702
693
  "params": [
703
694
  {
704
- "name": "params",
705
- "description": "搜索参数,q 为搜索关键词",
706
- "type": "{ q: string }"
695
+ "name": "event",
696
+ "description": "搜索事件,event.detail.q 为搜索关键词",
697
+ "type": "CustomEvent"
707
698
  }
708
699
  ],
709
- "description": "前端搜索",
700
+ "description": "搜索过滤",
701
+ "returns": {
702
+ "type": "void"
703
+ }
704
+ },
705
+ {
706
+ "name": "expandAll",
707
+ "params": [],
708
+ "description": "展开所有行",
710
709
  "returns": {}
711
710
  }
712
711
  ],
713
712
  "parts": [],
714
- "description": "大型表格",
715
- "category": "table"
713
+ "description": "简易表格构件。\n\n⚠️ 通常情况下,应使用 `eo-next-table` 替代。",
714
+ "category": "table",
715
+ "insider": true
716
716
  },
717
717
  {
718
718
  "name": "eo-workbench-layout",
@@ -903,6 +903,94 @@
903
903
  "description": "工作台布局 V2,支持拖拽式卡片布局与全局样式(不使用 shadow DOM)",
904
904
  "category": "layout"
905
905
  },
906
+ {
907
+ "name": "eo-tree",
908
+ "properties": [
909
+ {
910
+ "name": "dataSource",
911
+ "attribute": false,
912
+ "type": "TreeNode[]"
913
+ },
914
+ {
915
+ "name": "checkable",
916
+ "type": "boolean"
917
+ },
918
+ {
919
+ "name": "selectable",
920
+ "description": "",
921
+ "default": "true",
922
+ "type": "boolean"
923
+ },
924
+ {
925
+ "name": "defaultExpandAll",
926
+ "type": "boolean"
927
+ },
928
+ {
929
+ "name": "showLine",
930
+ "type": "boolean"
931
+ },
932
+ {
933
+ "name": "expandedKeys",
934
+ "attribute": false,
935
+ "type": "TreeNodeKey[]"
936
+ },
937
+ {
938
+ "name": "checkedKeys",
939
+ "attribute": false,
940
+ "type": "TreeNodeKey[]"
941
+ },
942
+ {
943
+ "name": "nodeDraggable",
944
+ "attribute": false,
945
+ "type": "boolean | { icon?: false }"
946
+ },
947
+ {
948
+ "name": "switcherIcon",
949
+ "attribute": false,
950
+ "type": "\"auto\" | \"chevron\" | false"
951
+ },
952
+ {
953
+ "name": "allowDrop",
954
+ "attribute": false,
955
+ "type": "((info: AllowDropInfo) => boolean)"
956
+ },
957
+ {
958
+ "name": "titleSuffixBrick",
959
+ "attribute": false,
960
+ "type": "{ useBrick: UseBrickConfOrRenderFunction }"
961
+ }
962
+ ],
963
+ "events": [
964
+ {
965
+ "name": "check",
966
+ "detail": {
967
+ "type": "TreeNodeKey[]"
968
+ }
969
+ },
970
+ {
971
+ "name": "check.detail",
972
+ "detail": {
973
+ "type": "CheckDetail"
974
+ }
975
+ },
976
+ {
977
+ "name": "expand",
978
+ "detail": {
979
+ "type": "TreeNodeKey[]"
980
+ }
981
+ },
982
+ {
983
+ "name": "node.drop",
984
+ "detail": {
985
+ "type": "DropDetail"
986
+ }
987
+ }
988
+ ],
989
+ "slots": [],
990
+ "methods": [],
991
+ "parts": [],
992
+ "description": "树形构件"
993
+ },
906
994
  {
907
995
  "name": "eo-tree-select",
908
996
  "properties": [
@@ -1093,94 +1181,6 @@
1093
1181
  "description": "文本超出显示区域时,鼠标悬浮显示完整内容的 Tooltip",
1094
1182
  "category": "display"
1095
1183
  },
1096
- {
1097
- "name": "eo-tree",
1098
- "properties": [
1099
- {
1100
- "name": "dataSource",
1101
- "attribute": false,
1102
- "type": "TreeNode[]"
1103
- },
1104
- {
1105
- "name": "checkable",
1106
- "type": "boolean"
1107
- },
1108
- {
1109
- "name": "selectable",
1110
- "description": "",
1111
- "default": "true",
1112
- "type": "boolean"
1113
- },
1114
- {
1115
- "name": "defaultExpandAll",
1116
- "type": "boolean"
1117
- },
1118
- {
1119
- "name": "showLine",
1120
- "type": "boolean"
1121
- },
1122
- {
1123
- "name": "expandedKeys",
1124
- "attribute": false,
1125
- "type": "TreeNodeKey[]"
1126
- },
1127
- {
1128
- "name": "checkedKeys",
1129
- "attribute": false,
1130
- "type": "TreeNodeKey[]"
1131
- },
1132
- {
1133
- "name": "nodeDraggable",
1134
- "attribute": false,
1135
- "type": "boolean | { icon?: false }"
1136
- },
1137
- {
1138
- "name": "switcherIcon",
1139
- "attribute": false,
1140
- "type": "\"auto\" | \"chevron\" | false"
1141
- },
1142
- {
1143
- "name": "allowDrop",
1144
- "attribute": false,
1145
- "type": "((info: AllowDropInfo) => boolean)"
1146
- },
1147
- {
1148
- "name": "titleSuffixBrick",
1149
- "attribute": false,
1150
- "type": "{ useBrick: UseBrickConfOrRenderFunction }"
1151
- }
1152
- ],
1153
- "events": [
1154
- {
1155
- "name": "check",
1156
- "detail": {
1157
- "type": "TreeNodeKey[]"
1158
- }
1159
- },
1160
- {
1161
- "name": "check.detail",
1162
- "detail": {
1163
- "type": "CheckDetail"
1164
- }
1165
- },
1166
- {
1167
- "name": "expand",
1168
- "detail": {
1169
- "type": "TreeNodeKey[]"
1170
- }
1171
- },
1172
- {
1173
- "name": "node.drop",
1174
- "detail": {
1175
- "type": "DropDetail"
1176
- }
1177
- }
1178
- ],
1179
- "slots": [],
1180
- "methods": [],
1181
- "parts": [],
1182
- "description": "树形构件"
1183
- },
1184
1184
  {
1185
1185
  "name": "advanced.pdf-viewer",
1186
1186
  "properties": [