@next-bricks/advanced 0.32.5 → 0.32.6

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 (35) hide show
  1. package/dist/bricks.json +14 -14
  2. package/dist/chunks/{5114.b2f022c6.js → 5114.bd258abd.js} +2 -2
  3. package/dist/chunks/{5114.b2f022c6.js.map → 5114.bd258abd.js.map} +1 -1
  4. package/dist/chunks/{5479.37460e88.js → 5479.d1b255af.js} +2 -2
  5. package/dist/chunks/{5479.37460e88.js.map → 5479.d1b255af.js.map} +1 -1
  6. package/dist/chunks/{7115.0879573e.js → 7115.6285bfa3.js} +2 -2
  7. package/dist/chunks/{7115.0879573e.js.map → 7115.6285bfa3.js.map} +1 -1
  8. package/dist/chunks/{8954.99b7b09f.js → 8954.aa471e16.js} +2 -2
  9. package/dist/chunks/8954.aa471e16.js.map +1 -0
  10. package/dist/chunks/{9496.6ca87c7e.js → 9496.cc558508.js} +2 -2
  11. package/dist/chunks/{9496.6ca87c7e.js.map → 9496.cc558508.js.map} +1 -1
  12. package/dist/chunks/{capture-snapshot.4cd49daf.js → capture-snapshot.a7443f4f.js} +2 -2
  13. package/dist/chunks/{capture-snapshot.4cd49daf.js.map → capture-snapshot.a7443f4f.js.map} +1 -1
  14. package/dist/chunks/{eo-cascader.696bf910.js → eo-cascader.861a2333.js} +2 -2
  15. package/dist/chunks/{eo-cascader.696bf910.js.map → eo-cascader.861a2333.js.map} +1 -1
  16. package/dist/chunks/{eo-table.e3f2480f.js → eo-table.47d32993.js} +2 -2
  17. package/dist/chunks/{eo-table.e3f2480f.js.map → eo-table.47d32993.js.map} +1 -1
  18. package/dist/chunks/{eo-tree-select.363521ad.js → eo-tree-select.2888c46c.js} +2 -2
  19. package/dist/chunks/{eo-tree-select.363521ad.js.map → eo-tree-select.2888c46c.js.map} +1 -1
  20. package/dist/chunks/{eo-tree.bcf6e80f.js → eo-tree.e86be3b5.js} +3 -3
  21. package/dist/chunks/{eo-tree.bcf6e80f.js.map → eo-tree.e86be3b5.js.map} +1 -1
  22. package/dist/chunks/{eo-workbench-layout.b608d58a.js → eo-workbench-layout.d089c56f.js} +2 -2
  23. package/dist/chunks/{eo-workbench-layout.b608d58a.js.map → eo-workbench-layout.d089c56f.js.map} +1 -1
  24. package/dist/chunks/main.7ad6e4fa.js +2 -0
  25. package/dist/chunks/{main.62d02ee4.js.map → main.7ad6e4fa.js.map} +1 -1
  26. package/dist/examples.json +5 -5
  27. package/dist/index.ad43fd2f.js +2 -0
  28. package/dist/{index.8480f27f.js.map → index.ad43fd2f.js.map} +1 -1
  29. package/dist/manifest.json +239 -239
  30. package/dist/types.json +156 -156
  31. package/package.json +2 -2
  32. package/dist/chunks/8954.99b7b09f.js.map +0 -1
  33. package/dist/chunks/main.62d02ee4.js +0 -2
  34. package/dist/index.8480f27f.js +0 -2
  35. /package/dist/chunks/{eo-tree.bcf6e80f.js.LICENSE.txt → eo-tree.e86be3b5.js.LICENSE.txt} +0 -0
@@ -344,6 +344,245 @@
344
344
  "category": "table",
345
345
  "insider": true
346
346
  },
347
+ {
348
+ "name": "eo-next-table",
349
+ "properties": [
350
+ {
351
+ "name": "rowKey",
352
+ "description": "指定表格行的 key",
353
+ "default": "\"key\"",
354
+ "type": "string"
355
+ },
356
+ {
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": "是否前端搜索",
377
+ "type": "boolean"
378
+ },
379
+ {
380
+ "name": "pagination",
381
+ "description": "分页配置",
382
+ "attribute": false,
383
+ "type": "PaginationType"
384
+ },
385
+ {
386
+ "name": "multiSort",
387
+ "description": "是否支持多列排序,前端搜索时需设置 column.sortPriority 优先级",
388
+ "type": "boolean"
389
+ },
390
+ {
391
+ "name": "sort",
392
+ "description": "排序信息",
393
+ "attribute": false,
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)[]"
467
+ }
468
+ ],
469
+ "events": [
470
+ {
471
+ "name": "page.change",
472
+ "description": "page 或 pageSize 改变的回调",
473
+ "detail": {
474
+ "description": "改变后的页码及每页条数",
475
+ "type": "{ page: number; pageSize: number }"
476
+ }
477
+ },
478
+ {
479
+ "name": "page.size.change",
480
+ "description": "pageSize 变化的回调",
481
+ "detail": {
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 }"
524
+ }
525
+ }
526
+ ],
527
+ "slots": [],
528
+ "methods": [
529
+ {
530
+ "name": "search",
531
+ "params": [
532
+ {
533
+ "name": "params",
534
+ "type": "{ q: string }"
535
+ }
536
+ ],
537
+ "description": "前端搜索",
538
+ "returns": {}
539
+ }
540
+ ],
541
+ "parts": [],
542
+ "description": "大型表格",
543
+ "category": "table"
544
+ },
545
+ {
546
+ "name": "eo-workbench-layout",
547
+ "properties": [
548
+ {
549
+ "name": "cardTitle",
550
+ "type": "string"
551
+ },
552
+ {
553
+ "name": "isEdit",
554
+ "type": "boolean"
555
+ },
556
+ {
557
+ "name": "layouts",
558
+ "attribute": false,
559
+ "type": "Layout[]"
560
+ },
561
+ {
562
+ "name": "componentList",
563
+ "attribute": false,
564
+ "type": "Item[]"
565
+ }
566
+ ],
567
+ "events": [
568
+ {
569
+ "name": "save",
570
+ "detail": {
571
+ "type": "Layout[]"
572
+ }
573
+ },
574
+ {
575
+ "name": "cancel",
576
+ "detail": {
577
+ "type": "void"
578
+ }
579
+ }
580
+ ],
581
+ "slots": [],
582
+ "methods": [],
583
+ "parts": [],
584
+ "description": "工作台布局"
585
+ },
347
586
  {
348
587
  "name": "eo-cascader",
349
588
  "alias": [
@@ -451,47 +690,6 @@
451
690
  "description": "级联选择器",
452
691
  "category": "form-input-basic"
453
692
  },
454
- {
455
- "name": "eo-workbench-layout",
456
- "properties": [
457
- {
458
- "name": "cardTitle",
459
- "type": "string"
460
- },
461
- {
462
- "name": "isEdit",
463
- "type": "boolean"
464
- },
465
- {
466
- "name": "layouts",
467
- "attribute": false,
468
- "type": "Layout[]"
469
- },
470
- {
471
- "name": "componentList",
472
- "attribute": false,
473
- "type": "Item[]"
474
- }
475
- ],
476
- "events": [
477
- {
478
- "name": "save",
479
- "detail": {
480
- "type": "Layout[]"
481
- }
482
- },
483
- {
484
- "name": "cancel",
485
- "detail": {
486
- "type": "void"
487
- }
488
- }
489
- ],
490
- "slots": [],
491
- "methods": [],
492
- "parts": [],
493
- "description": "工作台布局"
494
- },
495
693
  {
496
694
  "name": "eo-tree",
497
695
  "properties": [
@@ -713,204 +911,6 @@
713
911
  "parts": [],
714
912
  "description": "树选择器",
715
913
  "category": "form-input-basic"
716
- },
717
- {
718
- "name": "eo-next-table",
719
- "properties": [
720
- {
721
- "name": "rowKey",
722
- "description": "指定表格行的 key",
723
- "default": "\"key\"",
724
- "type": "string"
725
- },
726
- {
727
- "name": "columns",
728
- "description": "列定义",
729
- "attribute": false,
730
- "type": "Column[]"
731
- },
732
- {
733
- "name": "cell",
734
- "description": "单元格",
735
- "attribute": false,
736
- "type": "CellConfig"
737
- },
738
- {
739
- "name": "dataSource",
740
- "description": "数据源",
741
- "attribute": false,
742
- "type": "DataSource"
743
- },
744
- {
745
- "name": "frontSearch",
746
- "description": "是否前端搜索",
747
- "type": "boolean"
748
- },
749
- {
750
- "name": "pagination",
751
- "description": "分页配置",
752
- "attribute": false,
753
- "type": "PaginationType"
754
- },
755
- {
756
- "name": "multiSort",
757
- "description": "是否支持多列排序,前端搜索时需设置 column.sortPriority 优先级",
758
- "type": "boolean"
759
- },
760
- {
761
- "name": "sort",
762
- "description": "排序信息",
763
- "attribute": false,
764
- "type": "Sort | Sort[]"
765
- },
766
- {
767
- "name": "rowSelection",
768
- "description": "表格行可选择配置",
769
- "attribute": false,
770
- "type": "RowSelectionType"
771
- },
772
- {
773
- "name": "selectedRowKeys",
774
- "description": "选中项的 key",
775
- "attribute": false,
776
- "type": "(string | number)[]"
777
- },
778
- {
779
- "name": "hiddenColumns",
780
- "description": "隐藏的列(输入对应的 column.key)",
781
- "attribute": false,
782
- "type": "(string | number)[]"
783
- },
784
- {
785
- "name": "expandable",
786
- "description": "表格行展开配置",
787
- "attribute": false,
788
- "type": "ExpandableType"
789
- },
790
- {
791
- "name": "expandedRowKeys",
792
- "description": "展开项的 key",
793
- "attribute": false,
794
- "type": "(string | number)[]"
795
- },
796
- {
797
- "name": "childrenColumnName",
798
- "description": "树形结构的列名",
799
- "default": "\"children\"",
800
- "type": "string"
801
- },
802
- {
803
- "name": "rowDraggable",
804
- "description": "表格行拖拽配置",
805
- "type": "boolean"
806
- },
807
- {
808
- "name": "searchFields",
809
- "description": "进行前端搜索的字段,支持嵌套的写法。不配置的时候默认为对所有 column.dataIndex 进行前端搜索",
810
- "attribute": false,
811
- "type": "(string | string[])[]"
812
- },
813
- {
814
- "name": "size",
815
- "description": "表格大小",
816
- "default": "\"large\"",
817
- "type": "TableProps<RecordType>[\"size\"]"
818
- },
819
- {
820
- "name": "showHeader",
821
- "description": "是否显示表头",
822
- "default": "true",
823
- "type": "boolean"
824
- },
825
- {
826
- "name": "scrollConfig",
827
- "description": "滚动配置",
828
- "default": "{ x: true }",
829
- "attribute": false,
830
- "type": "TableProps<RecordType>[\"scroll\"]"
831
- },
832
- {
833
- "name": "optimizedColumns",
834
- "description": "优化渲染的列(输入对应的 column.key)",
835
- "attribute": false,
836
- "type": "(string | number)[]"
837
- }
838
- ],
839
- "events": [
840
- {
841
- "name": "page.change",
842
- "description": "page 或 pageSize 改变的回调",
843
- "detail": {
844
- "description": "改变后的页码及每页条数",
845
- "type": "{ page: number; pageSize: number }"
846
- }
847
- },
848
- {
849
- "name": "page.size.change",
850
- "description": "pageSize 变化的回调",
851
- "detail": {
852
- "description": "改变后的页码及每页条数",
853
- "type": "{\n page: number;\n pageSize: number;\n }"
854
- }
855
- },
856
- {
857
- "name": "sort.change",
858
- "description": "排序变化的回调",
859
- "detail": {
860
- "description": "当前排序的信息",
861
- "type": "Sort | Sort[] | undefined"
862
- }
863
- },
864
- {
865
- "name": "row.select",
866
- "description": "行选中项发生变化时的回调",
867
- "detail": {
868
- "description": "改变后的 rowKey 及行数据",
869
- "type": "{\n keys: (string | number)[];\n rows: RecordType[];\n info: { type: RowSelectMethod };\n }"
870
- }
871
- },
872
- {
873
- "name": "row.expand",
874
- "description": "点击展开图标时触发",
875
- "detail": {
876
- "description": "当前行的展开情况及数据",
877
- "type": "{\n expanded: boolean;\n record: RecordType;\n }"
878
- }
879
- },
880
- {
881
- "name": "expanded.rows.change",
882
- "description": "展开的行变化时触发",
883
- "detail": {
884
- "description": "所有展开行的 key",
885
- "type": "(string | number)[]"
886
- }
887
- },
888
- {
889
- "name": "row.drag",
890
- "description": "表格行拖拽结束发生的事件",
891
- "detail": {
892
- "description": "重新排序的行数据、拖拽的行数据、放下位置的行数据",
893
- "type": "{\n list: RecordType[];\n active: RecordType;\n over: RecordType;\n }"
894
- }
895
- }
896
- ],
897
- "slots": [],
898
- "methods": [
899
- {
900
- "name": "search",
901
- "params": [
902
- {
903
- "name": "params",
904
- "type": "{ q: string }"
905
- }
906
- ],
907
- "description": "前端搜索",
908
- "returns": {}
909
- }
910
- ],
911
- "parts": [],
912
- "description": "大型表格",
913
- "category": "table"
914
914
  }
915
915
  ],
916
916
  "providers": [