@next-bricks/advanced 0.34.2 → 0.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bricks.json +20 -14
- package/dist/chunks/3044.714300b2.js +2 -0
- package/dist/chunks/3044.714300b2.js.map +1 -0
- package/dist/chunks/9946.1050772d.js +2 -0
- package/dist/chunks/9946.1050772d.js.map +1 -0
- package/dist/chunks/eo-workbench-layout-v2.824b1b10.js +2 -0
- package/dist/chunks/eo-workbench-layout-v2.824b1b10.js.map +1 -0
- package/dist/chunks/eo-workbench-layout.6ade93b1.js +2 -0
- package/dist/chunks/eo-workbench-layout.6ade93b1.js.map +1 -0
- package/dist/chunks/main.d761de08.js +2 -0
- package/dist/chunks/{main.4ad51308.js.map → main.d761de08.js.map} +1 -1
- package/dist/examples.json +8 -8
- package/dist/index.70d84bb6.js +2 -0
- package/dist/index.70d84bb6.js.map +1 -0
- package/dist/manifest.json +298 -252
- package/dist/types.json +601 -419
- package/dist-types/bootstrap.d.ts +1 -0
- package/dist-types/workbench-layout-v2/index.d.ts +39 -0
- package/dist-types/workbench-layout-v2/index.spec.d.ts +1 -0
- package/package.json +2 -2
- package/dist/chunks/1890.f2b3590c.js +0 -2
- package/dist/chunks/1890.f2b3590c.js.map +0 -1
- package/dist/chunks/5541.e0452612.js +0 -2
- package/dist/chunks/5541.e0452612.js.map +0 -1
- package/dist/chunks/eo-workbench-layout.26f9f4e8.js +0 -2
- package/dist/chunks/eo-workbench-layout.26f9f4e8.js.map +0 -1
- package/dist/chunks/main.4ad51308.js +0 -2
- package/dist/index.cd107f54.js +0 -2
- package/dist/index.cd107f54.js.map +0 -1
package/dist/manifest.json
CHANGED
|
@@ -345,45 +345,202 @@
|
|
|
345
345
|
"insider": true
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
|
-
"name": "eo-
|
|
348
|
+
"name": "eo-next-table",
|
|
349
349
|
"properties": [
|
|
350
350
|
{
|
|
351
|
-
"name": "
|
|
351
|
+
"name": "rowKey",
|
|
352
|
+
"description": "指定表格行的 key",
|
|
353
|
+
"default": "\"key\"",
|
|
352
354
|
"type": "string"
|
|
353
355
|
},
|
|
354
356
|
{
|
|
355
|
-
"name": "
|
|
357
|
+
"name": "columns",
|
|
358
|
+
"description": "列定义",
|
|
359
|
+
"attribute": false,
|
|
360
|
+
"type": "Column[]"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "cell",
|
|
364
|
+
"description": "单元格",
|
|
365
|
+
"attribute": false,
|
|
366
|
+
"type": "CellConfig"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"name": "dataSource",
|
|
370
|
+
"description": "数据源",
|
|
371
|
+
"attribute": false,
|
|
372
|
+
"type": "DataSource"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"name": "frontSearch",
|
|
376
|
+
"description": "是否前端搜索",
|
|
356
377
|
"type": "boolean"
|
|
357
378
|
},
|
|
358
379
|
{
|
|
359
|
-
"name": "
|
|
380
|
+
"name": "pagination",
|
|
381
|
+
"description": "分页配置",
|
|
360
382
|
"attribute": false,
|
|
361
|
-
"type": "
|
|
383
|
+
"type": "PaginationType"
|
|
362
384
|
},
|
|
363
385
|
{
|
|
364
|
-
"name": "
|
|
386
|
+
"name": "multiSort",
|
|
387
|
+
"description": "是否支持多列排序,前端搜索时需设置 column.sortPriority 优先级",
|
|
388
|
+
"type": "boolean"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"name": "sort",
|
|
392
|
+
"description": "排序信息",
|
|
365
393
|
"attribute": false,
|
|
366
|
-
"type": "
|
|
394
|
+
"type": "Sort | Sort[]"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"name": "rowSelection",
|
|
398
|
+
"description": "表格行可选择配置",
|
|
399
|
+
"attribute": false,
|
|
400
|
+
"type": "RowSelectionType"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"name": "selectedRowKeys",
|
|
404
|
+
"description": "选中项的 key",
|
|
405
|
+
"attribute": false,
|
|
406
|
+
"type": "(string | number)[]"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"name": "hiddenColumns",
|
|
410
|
+
"description": "隐藏的列(输入对应的 column.key)",
|
|
411
|
+
"attribute": false,
|
|
412
|
+
"type": "(string | number)[]"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"name": "expandable",
|
|
416
|
+
"description": "表格行展开配置",
|
|
417
|
+
"attribute": false,
|
|
418
|
+
"type": "ExpandableType"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"name": "expandedRowKeys",
|
|
422
|
+
"description": "展开项的 key",
|
|
423
|
+
"attribute": false,
|
|
424
|
+
"type": "(string | number)[]"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"name": "childrenColumnName",
|
|
428
|
+
"description": "树形结构的列名",
|
|
429
|
+
"default": "\"children\"",
|
|
430
|
+
"type": "string"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"name": "rowDraggable",
|
|
434
|
+
"description": "表格行拖拽配置",
|
|
435
|
+
"type": "boolean"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"name": "searchFields",
|
|
439
|
+
"description": "进行前端搜索的字段,支持嵌套的写法。不配置的时候默认为对所有 column.dataIndex 进行前端搜索",
|
|
440
|
+
"attribute": false,
|
|
441
|
+
"type": "(string | string[])[]"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"name": "size",
|
|
445
|
+
"description": "表格大小",
|
|
446
|
+
"default": "\"large\"",
|
|
447
|
+
"type": "TableProps<RecordType>[\"size\"]"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"name": "showHeader",
|
|
451
|
+
"description": "是否显示表头",
|
|
452
|
+
"default": "true",
|
|
453
|
+
"type": "boolean"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"name": "scrollConfig",
|
|
457
|
+
"description": "滚动配置",
|
|
458
|
+
"default": "{ x: true }",
|
|
459
|
+
"attribute": false,
|
|
460
|
+
"type": "TableProps<RecordType>[\"scroll\"]"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"name": "optimizedColumns",
|
|
464
|
+
"description": "优化渲染的列(输入对应的 column.key)",
|
|
465
|
+
"attribute": false,
|
|
466
|
+
"type": "(string | number)[]"
|
|
367
467
|
}
|
|
368
468
|
],
|
|
369
469
|
"events": [
|
|
370
470
|
{
|
|
371
|
-
"name": "
|
|
471
|
+
"name": "page.change",
|
|
472
|
+
"description": "page 或 pageSize 改变的回调",
|
|
372
473
|
"detail": {
|
|
373
|
-
"
|
|
474
|
+
"description": "改变后的页码及每页条数",
|
|
475
|
+
"type": "{ page: number; pageSize: number }"
|
|
374
476
|
}
|
|
375
477
|
},
|
|
376
478
|
{
|
|
377
|
-
"name": "
|
|
479
|
+
"name": "page.size.change",
|
|
480
|
+
"description": "pageSize 变化的回调",
|
|
378
481
|
"detail": {
|
|
379
|
-
"
|
|
482
|
+
"description": "改变后的页码及每页条数",
|
|
483
|
+
"type": "{\n page: number;\n pageSize: number;\n }"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"name": "sort.change",
|
|
488
|
+
"description": "排序变化的回调",
|
|
489
|
+
"detail": {
|
|
490
|
+
"description": "当前排序的信息",
|
|
491
|
+
"type": "Sort | Sort[] | undefined"
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"name": "row.select",
|
|
496
|
+
"description": "行选中项发生变化时的回调",
|
|
497
|
+
"detail": {
|
|
498
|
+
"description": "改变后的 rowKey 及行数据",
|
|
499
|
+
"type": "{\n keys: (string | number)[];\n rows: RecordType[];\n info: { type: RowSelectMethod };\n }"
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"name": "row.expand",
|
|
504
|
+
"description": "点击展开图标时触发",
|
|
505
|
+
"detail": {
|
|
506
|
+
"description": "当前行的展开情况及数据",
|
|
507
|
+
"type": "{\n expanded: boolean;\n record: RecordType;\n }"
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"name": "expanded.rows.change",
|
|
512
|
+
"description": "展开的行变化时触发",
|
|
513
|
+
"detail": {
|
|
514
|
+
"description": "所有展开行的 key",
|
|
515
|
+
"type": "(string | number)[]"
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"name": "row.drag",
|
|
520
|
+
"description": "表格行拖拽结束发生的事件",
|
|
521
|
+
"detail": {
|
|
522
|
+
"description": "重新排序的行数据、拖拽的行数据、放下位置的行数据",
|
|
523
|
+
"type": "{\n list: RecordType[];\n active: RecordType;\n over: RecordType;\n }"
|
|
380
524
|
}
|
|
381
525
|
}
|
|
382
526
|
],
|
|
383
527
|
"slots": [],
|
|
384
|
-
"methods": [
|
|
528
|
+
"methods": [
|
|
529
|
+
{
|
|
530
|
+
"name": "search",
|
|
531
|
+
"params": [
|
|
532
|
+
{
|
|
533
|
+
"name": "params",
|
|
534
|
+
"type": "{ q: string }"
|
|
535
|
+
}
|
|
536
|
+
],
|
|
537
|
+
"description": "前端搜索",
|
|
538
|
+
"returns": {}
|
|
539
|
+
}
|
|
540
|
+
],
|
|
385
541
|
"parts": [],
|
|
386
|
-
"description": "
|
|
542
|
+
"description": "大型表格",
|
|
543
|
+
"category": "table"
|
|
387
544
|
},
|
|
388
545
|
{
|
|
389
546
|
"name": "eo-cascader",
|
|
@@ -493,160 +650,91 @@
|
|
|
493
650
|
"category": "form-input-basic"
|
|
494
651
|
},
|
|
495
652
|
{
|
|
496
|
-
"name": "eo-
|
|
653
|
+
"name": "eo-workbench-layout",
|
|
497
654
|
"properties": [
|
|
498
655
|
{
|
|
499
|
-
"name": "
|
|
500
|
-
"type": "string"
|
|
501
|
-
},
|
|
502
|
-
{
|
|
503
|
-
"name": "label",
|
|
504
|
-
"type": "string"
|
|
505
|
-
},
|
|
506
|
-
{
|
|
507
|
-
"name": "required",
|
|
508
|
-
"type": "boolean"
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"name": "treeData",
|
|
512
|
-
"attribute": false,
|
|
513
|
-
"type": "AntdTreeSelectProps[\"treeData\"]"
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"name": "treeDefaultExpandAll",
|
|
517
|
-
"type": "boolean"
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
"name": "treeExpandedKeys",
|
|
521
|
-
"attribute": false,
|
|
522
|
-
"type": "string[]"
|
|
523
|
-
},
|
|
524
|
-
{
|
|
525
|
-
"name": "fieldNames",
|
|
526
|
-
"attribute": false,
|
|
527
|
-
"type": "AntdTreeSelectProps[\"fieldNames\"]"
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
"name": "value",
|
|
531
|
-
"attribute": false,
|
|
532
|
-
"type": "AntdTreeSelectProps[\"value\"]"
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
"name": "placeholder",
|
|
656
|
+
"name": "cardTitle",
|
|
536
657
|
"type": "string"
|
|
537
658
|
},
|
|
538
659
|
{
|
|
539
|
-
"name": "
|
|
540
|
-
"type": "boolean"
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
"name": "disabled",
|
|
544
|
-
"type": "boolean"
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
"name": "checkable",
|
|
660
|
+
"name": "isEdit",
|
|
548
661
|
"type": "boolean"
|
|
549
662
|
},
|
|
550
663
|
{
|
|
551
|
-
"name": "
|
|
552
|
-
"type": "boolean",
|
|
553
|
-
"default": "true"
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
"name": "loading",
|
|
557
|
-
"type": "boolean",
|
|
558
|
-
"default": "false"
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
"name": "filterTreeNode",
|
|
562
|
-
"attribute": false,
|
|
563
|
-
"type": "AntdTreeSelectProps[\"filterTreeNode\"]"
|
|
564
|
-
},
|
|
565
|
-
{
|
|
566
|
-
"name": "showSearch",
|
|
567
|
-
"type": "boolean",
|
|
568
|
-
"default": "true"
|
|
569
|
-
},
|
|
570
|
-
{
|
|
571
|
-
"name": "suffixIcon",
|
|
572
|
-
"attribute": false,
|
|
573
|
-
"type": "GeneralIconProps"
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"name": "popupPlacement",
|
|
577
|
-
"type": "AntdTreeSelectProps[\"placement\"]",
|
|
578
|
-
"default": "\"bottomLeft\""
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
"name": "size",
|
|
582
|
-
"type": "AntdTreeSelectProps[\"size\"]"
|
|
583
|
-
},
|
|
584
|
-
{
|
|
585
|
-
"name": "maxTagCount",
|
|
664
|
+
"name": "layouts",
|
|
586
665
|
"attribute": false,
|
|
587
|
-
"type": "
|
|
666
|
+
"type": "Layout[]"
|
|
588
667
|
},
|
|
589
668
|
{
|
|
590
|
-
"name": "
|
|
669
|
+
"name": "componentList",
|
|
591
670
|
"attribute": false,
|
|
592
|
-
"type": "
|
|
671
|
+
"type": "Item[]"
|
|
593
672
|
}
|
|
594
673
|
],
|
|
595
|
-
"events": [
|
|
596
|
-
{
|
|
597
|
-
"name": "change",
|
|
598
|
-
"description": "",
|
|
599
|
-
"detail": {
|
|
600
|
-
"description": "{ value: AntdTreeSelectProps[\"value\"], selectedOptions: DefaultOptionType[] | DefaultOptionType[][] }",
|
|
601
|
-
"type": "{\n value: AntdTreeSelectProps[\"value\"];\n }"
|
|
602
|
-
}
|
|
603
|
-
},
|
|
604
|
-
{
|
|
605
|
-
"name": "search",
|
|
606
|
-
"detail": {
|
|
607
|
-
"type": "string"
|
|
608
|
-
}
|
|
609
|
-
},
|
|
674
|
+
"events": [
|
|
610
675
|
{
|
|
611
|
-
"name": "
|
|
676
|
+
"name": "save",
|
|
612
677
|
"detail": {
|
|
613
|
-
"type": "
|
|
678
|
+
"type": "Layout[]"
|
|
614
679
|
}
|
|
615
680
|
},
|
|
616
681
|
{
|
|
617
|
-
"name": "
|
|
682
|
+
"name": "cancel",
|
|
618
683
|
"detail": {
|
|
619
|
-
"type": "
|
|
684
|
+
"type": "void"
|
|
620
685
|
}
|
|
621
686
|
}
|
|
622
687
|
],
|
|
623
688
|
"slots": [],
|
|
624
689
|
"methods": [],
|
|
625
690
|
"parts": [],
|
|
626
|
-
"description": "
|
|
627
|
-
"category": "form-input-basic"
|
|
691
|
+
"description": "工作台布局"
|
|
628
692
|
},
|
|
629
693
|
{
|
|
630
|
-
"name": "eo-
|
|
694
|
+
"name": "eo-workbench-layout-v2",
|
|
631
695
|
"properties": [
|
|
632
696
|
{
|
|
633
|
-
"name": "
|
|
634
|
-
"description": "文案",
|
|
635
|
-
"default": null,
|
|
697
|
+
"name": "cardTitle",
|
|
636
698
|
"type": "string"
|
|
637
699
|
},
|
|
638
700
|
{
|
|
639
|
-
"name": "
|
|
640
|
-
"
|
|
641
|
-
|
|
642
|
-
|
|
701
|
+
"name": "isEdit",
|
|
702
|
+
"type": "boolean"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"name": "layouts",
|
|
706
|
+
"attribute": false,
|
|
707
|
+
"type": "Layout[]"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"name": "toolbarBricks",
|
|
711
|
+
"attribute": false,
|
|
712
|
+
"type": "{\n useBrick: UseSingleBrickConf[];\n }"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"name": "componentList",
|
|
716
|
+
"attribute": false,
|
|
717
|
+
"type": "Item[]"
|
|
718
|
+
}
|
|
719
|
+
],
|
|
720
|
+
"events": [
|
|
721
|
+
{
|
|
722
|
+
"name": "save",
|
|
723
|
+
"detail": {
|
|
724
|
+
"type": "Layout[]"
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"name": "cancel",
|
|
729
|
+
"detail": {
|
|
730
|
+
"type": "void"
|
|
731
|
+
}
|
|
643
732
|
}
|
|
644
733
|
],
|
|
645
|
-
"events": [],
|
|
646
734
|
"slots": [],
|
|
647
735
|
"methods": [],
|
|
648
736
|
"parts": [],
|
|
649
|
-
"description": "
|
|
737
|
+
"description": "工作台布局V2,未使用shadow dom"
|
|
650
738
|
},
|
|
651
739
|
{
|
|
652
740
|
"name": "eo-tree",
|
|
@@ -737,202 +825,160 @@
|
|
|
737
825
|
"description": "树形构件"
|
|
738
826
|
},
|
|
739
827
|
{
|
|
740
|
-
"name": "eo-
|
|
828
|
+
"name": "eo-tree-select",
|
|
741
829
|
"properties": [
|
|
742
830
|
{
|
|
743
|
-
"name": "
|
|
744
|
-
"description": "指定表格行的 key",
|
|
745
|
-
"default": "\"key\"",
|
|
831
|
+
"name": "name",
|
|
746
832
|
"type": "string"
|
|
747
833
|
},
|
|
748
834
|
{
|
|
749
|
-
"name": "
|
|
750
|
-
"
|
|
751
|
-
"attribute": false,
|
|
752
|
-
"type": "Column[]"
|
|
835
|
+
"name": "label",
|
|
836
|
+
"type": "string"
|
|
753
837
|
},
|
|
754
838
|
{
|
|
755
|
-
"name": "
|
|
756
|
-
"
|
|
757
|
-
"attribute": false,
|
|
758
|
-
"type": "CellConfig"
|
|
839
|
+
"name": "required",
|
|
840
|
+
"type": "boolean"
|
|
759
841
|
},
|
|
760
842
|
{
|
|
761
|
-
"name": "
|
|
762
|
-
"description": "数据源",
|
|
843
|
+
"name": "treeData",
|
|
763
844
|
"attribute": false,
|
|
764
|
-
"type": "
|
|
845
|
+
"type": "AntdTreeSelectProps[\"treeData\"]"
|
|
765
846
|
},
|
|
766
847
|
{
|
|
767
|
-
"name": "
|
|
768
|
-
"description": "是否前端搜索",
|
|
848
|
+
"name": "treeDefaultExpandAll",
|
|
769
849
|
"type": "boolean"
|
|
770
850
|
},
|
|
771
851
|
{
|
|
772
|
-
"name": "
|
|
773
|
-
"description": "分页配置",
|
|
852
|
+
"name": "treeExpandedKeys",
|
|
774
853
|
"attribute": false,
|
|
775
|
-
"type": "
|
|
854
|
+
"type": "string[]"
|
|
776
855
|
},
|
|
777
856
|
{
|
|
778
|
-
"name": "
|
|
779
|
-
"
|
|
780
|
-
"type": "
|
|
857
|
+
"name": "fieldNames",
|
|
858
|
+
"attribute": false,
|
|
859
|
+
"type": "AntdTreeSelectProps[\"fieldNames\"]"
|
|
781
860
|
},
|
|
782
861
|
{
|
|
783
|
-
"name": "
|
|
784
|
-
"description": "排序信息",
|
|
862
|
+
"name": "value",
|
|
785
863
|
"attribute": false,
|
|
786
|
-
"type": "
|
|
864
|
+
"type": "AntdTreeSelectProps[\"value\"]"
|
|
787
865
|
},
|
|
788
866
|
{
|
|
789
|
-
"name": "
|
|
790
|
-
"
|
|
791
|
-
"attribute": false,
|
|
792
|
-
"type": "RowSelectionType"
|
|
867
|
+
"name": "placeholder",
|
|
868
|
+
"type": "string"
|
|
793
869
|
},
|
|
794
870
|
{
|
|
795
|
-
"name": "
|
|
796
|
-
"
|
|
797
|
-
"attribute": false,
|
|
798
|
-
"type": "(string | number)[]"
|
|
871
|
+
"name": "multiple",
|
|
872
|
+
"type": "boolean"
|
|
799
873
|
},
|
|
800
874
|
{
|
|
801
|
-
"name": "
|
|
802
|
-
"
|
|
803
|
-
"attribute": false,
|
|
804
|
-
"type": "(string | number)[]"
|
|
875
|
+
"name": "disabled",
|
|
876
|
+
"type": "boolean"
|
|
805
877
|
},
|
|
806
878
|
{
|
|
807
|
-
"name": "
|
|
808
|
-
"
|
|
809
|
-
"attribute": false,
|
|
810
|
-
"type": "ExpandableType"
|
|
879
|
+
"name": "checkable",
|
|
880
|
+
"type": "boolean"
|
|
811
881
|
},
|
|
812
882
|
{
|
|
813
|
-
"name": "
|
|
814
|
-
"
|
|
815
|
-
"
|
|
816
|
-
"type": "(string | number)[]"
|
|
883
|
+
"name": "allowClear",
|
|
884
|
+
"type": "boolean",
|
|
885
|
+
"default": "true"
|
|
817
886
|
},
|
|
818
887
|
{
|
|
819
|
-
"name": "
|
|
820
|
-
"
|
|
821
|
-
"default": "
|
|
822
|
-
"type": "string"
|
|
888
|
+
"name": "loading",
|
|
889
|
+
"type": "boolean",
|
|
890
|
+
"default": "false"
|
|
823
891
|
},
|
|
824
892
|
{
|
|
825
|
-
"name": "
|
|
826
|
-
"
|
|
827
|
-
"type": "
|
|
893
|
+
"name": "filterTreeNode",
|
|
894
|
+
"attribute": false,
|
|
895
|
+
"type": "AntdTreeSelectProps[\"filterTreeNode\"]"
|
|
828
896
|
},
|
|
829
897
|
{
|
|
830
|
-
"name": "
|
|
831
|
-
"
|
|
898
|
+
"name": "showSearch",
|
|
899
|
+
"type": "boolean",
|
|
900
|
+
"default": "true"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"name": "suffixIcon",
|
|
832
904
|
"attribute": false,
|
|
833
|
-
"type": "
|
|
905
|
+
"type": "GeneralIconProps"
|
|
834
906
|
},
|
|
835
907
|
{
|
|
836
|
-
"name": "
|
|
837
|
-
"
|
|
838
|
-
"default": "\"
|
|
839
|
-
"type": "TableProps<RecordType>[\"size\"]"
|
|
908
|
+
"name": "popupPlacement",
|
|
909
|
+
"type": "AntdTreeSelectProps[\"placement\"]",
|
|
910
|
+
"default": "\"bottomLeft\""
|
|
840
911
|
},
|
|
841
912
|
{
|
|
842
|
-
"name": "
|
|
843
|
-
"
|
|
844
|
-
"default": "true",
|
|
845
|
-
"type": "boolean"
|
|
913
|
+
"name": "size",
|
|
914
|
+
"type": "AntdTreeSelectProps[\"size\"]"
|
|
846
915
|
},
|
|
847
916
|
{
|
|
848
|
-
"name": "
|
|
849
|
-
"description": "滚动配置",
|
|
850
|
-
"default": "{ x: true }",
|
|
917
|
+
"name": "maxTagCount",
|
|
851
918
|
"attribute": false,
|
|
852
|
-
"type": "
|
|
919
|
+
"type": "number | \"responsive\""
|
|
853
920
|
},
|
|
854
921
|
{
|
|
855
|
-
"name": "
|
|
856
|
-
"description": "优化渲染的列(输入对应的 column.key)",
|
|
922
|
+
"name": "dropdownStyle",
|
|
857
923
|
"attribute": false,
|
|
858
|
-
"type": "
|
|
924
|
+
"type": "CSSProperties"
|
|
859
925
|
}
|
|
860
926
|
],
|
|
861
927
|
"events": [
|
|
862
928
|
{
|
|
863
|
-
"name": "
|
|
864
|
-
"description": "
|
|
865
|
-
"detail": {
|
|
866
|
-
"description": "改变后的页码及每页条数",
|
|
867
|
-
"type": "{ page: number; pageSize: number }"
|
|
868
|
-
}
|
|
869
|
-
},
|
|
870
|
-
{
|
|
871
|
-
"name": "page.size.change",
|
|
872
|
-
"description": "pageSize 变化的回调",
|
|
873
|
-
"detail": {
|
|
874
|
-
"description": "改变后的页码及每页条数",
|
|
875
|
-
"type": "{\n page: number;\n pageSize: number;\n }"
|
|
876
|
-
}
|
|
877
|
-
},
|
|
878
|
-
{
|
|
879
|
-
"name": "sort.change",
|
|
880
|
-
"description": "排序变化的回调",
|
|
881
|
-
"detail": {
|
|
882
|
-
"description": "当前排序的信息",
|
|
883
|
-
"type": "Sort | Sort[] | undefined"
|
|
884
|
-
}
|
|
885
|
-
},
|
|
886
|
-
{
|
|
887
|
-
"name": "row.select",
|
|
888
|
-
"description": "行选中项发生变化时的回调",
|
|
929
|
+
"name": "change",
|
|
930
|
+
"description": "",
|
|
889
931
|
"detail": {
|
|
890
|
-
"description": "
|
|
891
|
-
"type": "{\n
|
|
932
|
+
"description": "{ value: AntdTreeSelectProps[\"value\"], selectedOptions: DefaultOptionType[] | DefaultOptionType[][] }",
|
|
933
|
+
"type": "{\n value: AntdTreeSelectProps[\"value\"];\n }"
|
|
892
934
|
}
|
|
893
935
|
},
|
|
894
936
|
{
|
|
895
|
-
"name": "
|
|
896
|
-
"description": "点击展开图标时触发",
|
|
937
|
+
"name": "search",
|
|
897
938
|
"detail": {
|
|
898
|
-
"
|
|
899
|
-
"type": "{\n expanded: boolean;\n record: RecordType;\n }"
|
|
939
|
+
"type": "string"
|
|
900
940
|
}
|
|
901
941
|
},
|
|
902
942
|
{
|
|
903
|
-
"name": "
|
|
904
|
-
"description": "展开的行变化时触发",
|
|
943
|
+
"name": "select",
|
|
905
944
|
"detail": {
|
|
906
|
-
"
|
|
907
|
-
"type": "(string | number)[]"
|
|
945
|
+
"type": "{ value: AntdTreeSelectProps[\"value\"] }"
|
|
908
946
|
}
|
|
909
947
|
},
|
|
910
948
|
{
|
|
911
|
-
"name": "
|
|
912
|
-
"description": "表格行拖拽结束发生的事件",
|
|
949
|
+
"name": "expand",
|
|
913
950
|
"detail": {
|
|
914
|
-
"
|
|
915
|
-
"type": "{\n list: RecordType[];\n active: RecordType;\n over: RecordType;\n }"
|
|
951
|
+
"type": "{ keys: React.Key[] }"
|
|
916
952
|
}
|
|
917
953
|
}
|
|
918
954
|
],
|
|
919
955
|
"slots": [],
|
|
920
|
-
"methods": [
|
|
956
|
+
"methods": [],
|
|
957
|
+
"parts": [],
|
|
958
|
+
"description": "树选择器",
|
|
959
|
+
"category": "form-input-basic"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"name": "eo-text-tooltip",
|
|
963
|
+
"properties": [
|
|
921
964
|
{
|
|
922
|
-
"name": "
|
|
923
|
-
"
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
"description": "
|
|
930
|
-
"
|
|
965
|
+
"name": "label",
|
|
966
|
+
"description": "文案",
|
|
967
|
+
"default": null,
|
|
968
|
+
"type": "string"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"name": "lineClamp",
|
|
972
|
+
"description": "省略行数",
|
|
973
|
+
"default": "1",
|
|
974
|
+
"type": "number"
|
|
931
975
|
}
|
|
932
976
|
],
|
|
977
|
+
"events": [],
|
|
978
|
+
"slots": [],
|
|
979
|
+
"methods": [],
|
|
933
980
|
"parts": [],
|
|
934
|
-
"description": "
|
|
935
|
-
"category": "table"
|
|
981
|
+
"description": "超出宽度鼠标悬浮显示tooltip\n构件 `eo-text-tooltip`"
|
|
936
982
|
}
|
|
937
983
|
],
|
|
938
984
|
"providers": [
|