@lingxiteam/assets 3.2.1 → 3.3.1-alpha.2

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 (71) hide show
  1. package/es/error/errorDisplay/Mobile/Drawer/Drawer.js +9 -3
  2. package/es/error/errorDisplay/Mobile/ErrorMsg/index.js +29 -26
  3. package/es/error/errorDisplay/Mobile/Modal/Modal.js +5 -3
  4. package/es/error/errorDisplay/Mobile/defaultGlobalConfig.js +9 -1
  5. package/es/error/errorDisplay/Web/Drawer/Drawer.js +10 -4
  6. package/es/error/errorDisplay/Web/ErrorMsg/index.js +64 -46
  7. package/es/error/errorDisplay/Web/defaultGlobalConfig.js +10 -2
  8. package/es/error/errorDisplay/const.js +29 -7
  9. package/es/rootConfig/mobile/MobileModal.d.ts +33 -0
  10. package/es/rootConfig/mobile/MobileModal.js +49 -4
  11. package/es/rootConfig/mobile/MobilePopover.d.ts +3 -0
  12. package/es/rootConfig/mobile/MobilePopover.js +4 -1
  13. package/es/rootConfig/mobile/page.d.ts +13 -0
  14. package/es/rootConfig/mobile/page.js +15 -2
  15. package/es/rootConfig/pc/Drawer.d.ts +9 -0
  16. package/es/rootConfig/pc/Drawer.js +10 -1
  17. package/es/rootConfig/pc/Modal.d.ts +3 -0
  18. package/es/rootConfig/pc/Modal.js +4 -1
  19. package/es/rootConfig/pc/Popover.d.ts +3 -0
  20. package/es/rootConfig/pc/Popover.js +4 -1
  21. package/es/rootConfig/pc/page.d.ts +3 -18
  22. package/es/rootConfig/pc/page.js +4 -14
  23. package/es/rootConfig/todoActionList.d.ts +408 -65
  24. package/es/rootConfig/todoActionList.js +517 -118
  25. package/es/rootConfig/todoOptionList.d.ts +13 -2
  26. package/es/rootConfig/todoOptionList.js +16 -7
  27. package/es/security/encipher/sign.js +4 -3
  28. package/es/security/fetch.js +7 -0
  29. package/es/theme/bin/default/theme.js +1 -1
  30. package/es/theme/bin/default/theme.less +1 -1
  31. package/es/theme/bin/default/theme.scss +1 -1
  32. package/es/theme/index.js +54 -0
  33. package/es/theme/src/default/index.js +1 -1
  34. package/es/utils/url.d.ts +1 -0
  35. package/es/utils/url.js +5 -0
  36. package/lib/error/errorDisplay/Mobile/Drawer/Drawer.js +9 -3
  37. package/lib/error/errorDisplay/Mobile/ErrorMsg/index.js +29 -26
  38. package/lib/error/errorDisplay/Mobile/Modal/Modal.js +5 -3
  39. package/lib/error/errorDisplay/Mobile/defaultGlobalConfig.js +9 -1
  40. package/lib/error/errorDisplay/Web/Drawer/Drawer.js +10 -4
  41. package/lib/error/errorDisplay/Web/ErrorMsg/index.js +64 -46
  42. package/lib/error/errorDisplay/Web/defaultGlobalConfig.js +10 -1
  43. package/lib/error/errorDisplay/const.js +33 -9
  44. package/lib/rootConfig/mobile/MobileModal.d.ts +33 -0
  45. package/lib/rootConfig/mobile/MobileModal.js +49 -4
  46. package/lib/rootConfig/mobile/MobilePopover.d.ts +3 -0
  47. package/lib/rootConfig/mobile/MobilePopover.js +4 -1
  48. package/lib/rootConfig/mobile/page.d.ts +13 -0
  49. package/lib/rootConfig/mobile/page.js +15 -2
  50. package/lib/rootConfig/pc/Drawer.d.ts +9 -0
  51. package/lib/rootConfig/pc/Drawer.js +10 -1
  52. package/lib/rootConfig/pc/Modal.d.ts +3 -0
  53. package/lib/rootConfig/pc/Modal.js +4 -1
  54. package/lib/rootConfig/pc/Popover.d.ts +3 -0
  55. package/lib/rootConfig/pc/Popover.js +4 -1
  56. package/lib/rootConfig/pc/page.d.ts +3 -18
  57. package/lib/rootConfig/pc/page.js +4 -14
  58. package/lib/rootConfig/todoActionList.d.ts +408 -65
  59. package/lib/rootConfig/todoActionList.js +517 -118
  60. package/lib/rootConfig/todoOptionList.d.ts +13 -2
  61. package/lib/rootConfig/todoOptionList.js +16 -7
  62. package/lib/security/encipher/sign.js +3 -2
  63. package/lib/security/fetch.js +7 -0
  64. package/lib/theme/bin/default/theme.js +1 -1
  65. package/lib/theme/bin/default/theme.less +1 -1
  66. package/lib/theme/bin/default/theme.scss +1 -1
  67. package/lib/theme/index.js +61 -0
  68. package/lib/theme/src/default/index.js +1 -1
  69. package/lib/utils/url.d.ts +1 -0
  70. package/lib/utils/url.js +7 -1
  71. package/package.json +4 -3
@@ -609,35 +609,6 @@ declare const todoActionObject: {
609
609
  }[];
610
610
  hidden: boolean;
611
611
  };
612
- setStatesByKeyAndValue: {
613
- key: string;
614
- label: string;
615
- todoOptions: {
616
- key: string;
617
- label: string;
618
- type: string;
619
- }[];
620
- classification: {
621
- label: string;
622
- value: string;
623
- }[];
624
- hidden: boolean;
625
- };
626
- getStatesByKey: {
627
- key: string;
628
- label: string;
629
- todoOptions: {
630
- key: string;
631
- label: string;
632
- type: string;
633
- }[];
634
- todoCallbacks: string[];
635
- classification: {
636
- label: string;
637
- value: string;
638
- }[];
639
- hidden: boolean;
640
- };
641
612
  setCompNestedState: {
642
613
  key: string;
643
614
  label: string;
@@ -707,6 +678,14 @@ declare const todoActionObject: {
707
678
  key: string;
708
679
  label: string;
709
680
  type: string;
681
+ props: {
682
+ titleLink: {
683
+ title: string;
684
+ value: string;
685
+ key: string;
686
+ }[];
687
+ valueType: string;
688
+ };
710
689
  }[];
711
690
  };
712
691
  resetForm: {
@@ -749,6 +728,14 @@ declare const todoActionObject: {
749
728
  key: string;
750
729
  label: string;
751
730
  type: string;
731
+ props: {
732
+ titleLink: {
733
+ title: string;
734
+ value: string;
735
+ key: string;
736
+ }[];
737
+ valueType: string;
738
+ };
752
739
  }[];
753
740
  };
754
741
  resetCurrentForm: {
@@ -834,23 +821,41 @@ declare const todoActionObject: {
834
821
  reloadRCData: {
835
822
  key: string;
836
823
  label: string;
837
- todoOptions: {
824
+ todoOptions: ({
838
825
  key: string;
839
826
  aliasKey: string;
840
827
  label: string;
841
828
  type: string;
842
- }[];
829
+ props?: undefined;
830
+ } | {
831
+ key: string;
832
+ aliasKey: string;
833
+ label: string;
834
+ type: string;
835
+ props: {
836
+ isFillKey: boolean;
837
+ };
838
+ })[];
843
839
  todoCallbacks: string[];
844
840
  };
845
841
  reloadSelectData: {
846
842
  key: string;
847
843
  label: string;
848
- todoOptions: {
844
+ todoOptions: ({
849
845
  key: string;
850
846
  aliasKey: string;
851
847
  label: string;
852
848
  type: string;
853
- }[];
849
+ props?: undefined;
850
+ } | {
851
+ key: string;
852
+ aliasKey: string;
853
+ label: string;
854
+ type: string;
855
+ props: {
856
+ isFillKey: boolean;
857
+ };
858
+ })[];
854
859
  todoCallbacks: string[];
855
860
  };
856
861
  reloadDescData: {
@@ -871,11 +876,15 @@ declare const todoActionObject: {
871
876
  label: string;
872
877
  aliasKey: string;
873
878
  type: string;
879
+ props?: undefined;
874
880
  labelTip?: undefined;
875
881
  } | {
876
882
  key: string;
877
883
  label: string;
878
884
  type: string;
885
+ props: {
886
+ isFillKey: boolean;
887
+ };
879
888
  aliasKey?: undefined;
880
889
  labelTip?: undefined;
881
890
  } | {
@@ -883,6 +892,9 @@ declare const todoActionObject: {
883
892
  label: string;
884
893
  type: string;
885
894
  labelTip: string;
895
+ props: {
896
+ isFillKey: boolean;
897
+ };
886
898
  aliasKey?: undefined;
887
899
  })[];
888
900
  todoCallbacks: string[];
@@ -895,18 +907,32 @@ declare const todoActionObject: {
895
907
  aliasKey: string;
896
908
  label: string;
897
909
  type: string;
910
+ props?: undefined;
898
911
  labelTip?: undefined;
899
912
  } | {
900
913
  key: string;
901
914
  label: string;
902
915
  type: string;
903
916
  aliasKey?: undefined;
917
+ props?: undefined;
918
+ labelTip?: undefined;
919
+ } | {
920
+ key: string;
921
+ label: string;
922
+ type: string;
923
+ props: {
924
+ isFillKey: boolean;
925
+ };
926
+ aliasKey?: undefined;
904
927
  labelTip?: undefined;
905
928
  } | {
906
929
  key: string;
907
930
  label: string;
908
931
  type: string;
909
932
  labelTip: string;
933
+ props: {
934
+ isFillKey: boolean;
935
+ };
910
936
  aliasKey?: undefined;
911
937
  })[];
912
938
  todoCallbacks: string[];
@@ -919,11 +945,15 @@ declare const todoActionObject: {
919
945
  aliasKey: string;
920
946
  label: string;
921
947
  type: string;
948
+ props?: undefined;
922
949
  labelTip?: undefined;
923
950
  } | {
924
951
  key: string;
925
952
  label: string;
926
953
  type: string;
954
+ props: {
955
+ isFillKey: boolean;
956
+ };
927
957
  aliasKey?: undefined;
928
958
  labelTip?: undefined;
929
959
  } | {
@@ -931,6 +961,9 @@ declare const todoActionObject: {
931
961
  label: string;
932
962
  type: string;
933
963
  labelTip: string;
964
+ props: {
965
+ isFillKey: boolean;
966
+ };
934
967
  aliasKey?: undefined;
935
968
  })[];
936
969
  todoCallbacks: string[];
@@ -943,18 +976,34 @@ declare const todoActionObject: {
943
976
  aliasKey: string;
944
977
  label: string;
945
978
  type: string;
979
+ props?: undefined;
946
980
  labelTip?: undefined;
947
981
  } | {
948
982
  key: string;
949
983
  label: string;
950
984
  type: string;
985
+ props: {
986
+ isFillKey: boolean;
987
+ };
951
988
  aliasKey?: undefined;
952
989
  labelTip?: undefined;
990
+ } | {
991
+ key: string;
992
+ aliasKey: string;
993
+ label: string;
994
+ type: string;
995
+ props: {
996
+ isFillKey: boolean;
997
+ };
998
+ labelTip?: undefined;
953
999
  } | {
954
1000
  key: string;
955
1001
  label: string;
956
1002
  type: string;
957
1003
  labelTip: string;
1004
+ props: {
1005
+ isFillKey: boolean;
1006
+ };
958
1007
  aliasKey?: undefined;
959
1008
  })[];
960
1009
  };
@@ -966,11 +1015,24 @@ declare const todoActionObject: {
966
1015
  aliasKey: string;
967
1016
  label: string;
968
1017
  type: string;
1018
+ props?: undefined;
969
1019
  labelTip?: undefined;
970
1020
  } | {
971
1021
  key: string;
1022
+ aliasKey: string;
972
1023
  label: string;
973
1024
  type: string;
1025
+ props: {
1026
+ isFillKey: boolean;
1027
+ };
1028
+ labelTip?: undefined;
1029
+ } | {
1030
+ key: string;
1031
+ label: string;
1032
+ type: string;
1033
+ props: {
1034
+ isFillKey: boolean;
1035
+ };
974
1036
  labelTip: string;
975
1037
  aliasKey?: undefined;
976
1038
  })[];
@@ -1081,6 +1143,14 @@ declare const todoActionObject: {
1081
1143
  key: string;
1082
1144
  label: string;
1083
1145
  type: string;
1146
+ props: {
1147
+ titleLink: {
1148
+ title: string;
1149
+ value: string;
1150
+ key: string;
1151
+ }[];
1152
+ valueType: string;
1153
+ };
1084
1154
  }[];
1085
1155
  };
1086
1156
  delTableRow: {
@@ -1239,11 +1309,15 @@ declare const todoActionObject: {
1239
1309
  label: string;
1240
1310
  type: string;
1241
1311
  aliasKey?: undefined;
1312
+ props?: undefined;
1242
1313
  } | {
1243
1314
  key: string;
1244
1315
  label: string;
1245
1316
  type: string;
1246
1317
  aliasKey: string;
1318
+ props: {
1319
+ isFillKey: boolean;
1320
+ };
1247
1321
  })[];
1248
1322
  todoCallbacks: string[];
1249
1323
  initClose: boolean;
@@ -1295,25 +1369,6 @@ declare const todoActionObject: {
1295
1369
  };
1296
1370
  })[];
1297
1371
  };
1298
- triggerMobileRelDataSource: {
1299
- key: string;
1300
- label: string;
1301
- todoOptions: ({
1302
- key: string;
1303
- label: string;
1304
- type: string;
1305
- props?: undefined;
1306
- } | {
1307
- key: string;
1308
- label: string;
1309
- type: string;
1310
- props: {
1311
- options: {
1312
- noCustom: boolean;
1313
- };
1314
- };
1315
- })[];
1316
- };
1317
1372
  validateMsg: {
1318
1373
  key: string;
1319
1374
  label: string;
@@ -1416,6 +1471,17 @@ declare const todoActionObject: {
1416
1471
  labelTip: string;
1417
1472
  props: {
1418
1473
  placeholder: string;
1474
+ defaultValue?: undefined;
1475
+ };
1476
+ aliasKey?: undefined;
1477
+ } | {
1478
+ key: string;
1479
+ label: string;
1480
+ type: string;
1481
+ labelTip: string;
1482
+ props: {
1483
+ defaultValue: boolean;
1484
+ placeholder?: undefined;
1419
1485
  };
1420
1486
  aliasKey?: undefined;
1421
1487
  })[];
@@ -1688,6 +1754,7 @@ declare const todoActionObject: {
1688
1754
  type: string;
1689
1755
  }[];
1690
1756
  todoCallbacks: string[];
1757
+ hidden: boolean;
1691
1758
  };
1692
1759
  setCompContentValue: {
1693
1760
  key: string;
@@ -1698,6 +1765,7 @@ declare const todoActionObject: {
1698
1765
  type: string;
1699
1766
  }[];
1700
1767
  todoCallbacks: string[];
1768
+ hidden: boolean;
1701
1769
  };
1702
1770
  setPageSrc: {
1703
1771
  key: string;
@@ -1850,6 +1918,7 @@ declare const todoActionObject: {
1850
1918
  label: string;
1851
1919
  type: string;
1852
1920
  }[];
1921
+ tips: string;
1853
1922
  };
1854
1923
  postObjectData: {
1855
1924
  key: string;
@@ -2014,11 +2083,24 @@ declare const todoActionObject: {
2014
2083
  callSelfFunc: {
2015
2084
  key: string;
2016
2085
  label: string;
2017
- todoOptions: {
2086
+ todoOptions: ({
2018
2087
  key: string;
2019
2088
  label: string;
2020
2089
  type: string;
2021
- }[];
2090
+ props?: undefined;
2091
+ } | {
2092
+ key: string;
2093
+ label: string;
2094
+ type: string;
2095
+ props: {
2096
+ titleLink: {
2097
+ title: string;
2098
+ value: string;
2099
+ key: string;
2100
+ }[];
2101
+ valueType: string;
2102
+ };
2103
+ })[];
2022
2104
  todoCallbacks: string[];
2023
2105
  classification: {
2024
2106
  label: string;
@@ -2028,11 +2110,24 @@ declare const todoActionObject: {
2028
2110
  callParentCustomFunc: {
2029
2111
  key: string;
2030
2112
  label: string;
2031
- todoOptions: {
2113
+ todoOptions: ({
2032
2114
  key: string;
2033
2115
  label: string;
2034
2116
  type: string;
2035
- }[];
2117
+ props?: undefined;
2118
+ } | {
2119
+ key: string;
2120
+ label: string;
2121
+ type: string;
2122
+ props: {
2123
+ titleLink: {
2124
+ title: string;
2125
+ value: string;
2126
+ key: string;
2127
+ }[];
2128
+ valueType: string;
2129
+ };
2130
+ })[];
2036
2131
  todoCallbacks: string[];
2037
2132
  classification: {
2038
2133
  label: string;
@@ -2042,11 +2137,24 @@ declare const todoActionObject: {
2042
2137
  callCustomPageFunc: {
2043
2138
  key: string;
2044
2139
  label: string;
2045
- todoOptions: {
2140
+ todoOptions: ({
2046
2141
  key: string;
2047
2142
  label: string;
2048
2143
  type: string;
2049
- }[];
2144
+ props?: undefined;
2145
+ } | {
2146
+ key: string;
2147
+ label: string;
2148
+ type: string;
2149
+ props: {
2150
+ titleLink: {
2151
+ title: string;
2152
+ value: string;
2153
+ key: string;
2154
+ }[];
2155
+ valueType: string;
2156
+ };
2157
+ })[];
2050
2158
  todoCallbacks: string[];
2051
2159
  classification: {
2052
2160
  label: string;
@@ -2064,12 +2172,45 @@ declare const todoActionObject: {
2064
2172
  props: {
2065
2173
  isRequired: boolean;
2066
2174
  valuePropName: string;
2175
+ options?: undefined;
2176
+ titleLink?: undefined;
2177
+ valueType?: undefined;
2067
2178
  };
2179
+ labelTip?: undefined;
2180
+ defaultValue?: undefined;
2068
2181
  } | {
2069
2182
  key: string;
2070
2183
  label: string;
2071
2184
  type: string;
2072
- props?: undefined;
2185
+ labelTip: string;
2186
+ defaultValue: string;
2187
+ props: {
2188
+ options: {
2189
+ title: string;
2190
+ value: string;
2191
+ }[];
2192
+ isRequired?: undefined;
2193
+ valuePropName?: undefined;
2194
+ titleLink?: undefined;
2195
+ valueType?: undefined;
2196
+ };
2197
+ } | {
2198
+ key: string;
2199
+ label: string;
2200
+ type: string;
2201
+ props: {
2202
+ titleLink: {
2203
+ title: string;
2204
+ value: string;
2205
+ key: string;
2206
+ }[];
2207
+ valueType: string;
2208
+ isRequired?: undefined;
2209
+ valuePropName?: undefined;
2210
+ options?: undefined;
2211
+ };
2212
+ labelTip?: undefined;
2213
+ defaultValue?: undefined;
2073
2214
  })[];
2074
2215
  todoCallbacks: string[];
2075
2216
  classification: {
@@ -2089,6 +2230,22 @@ declare const todoActionObject: {
2089
2230
  valuePropName: string;
2090
2231
  options?: undefined;
2091
2232
  };
2233
+ labelTip?: undefined;
2234
+ defaultValue?: undefined;
2235
+ } | {
2236
+ key: string;
2237
+ label: string;
2238
+ type: string;
2239
+ labelTip: string;
2240
+ defaultValue: string;
2241
+ props: {
2242
+ options: {
2243
+ title: string;
2244
+ value: string;
2245
+ }[];
2246
+ isRequired?: undefined;
2247
+ valuePropName?: undefined;
2248
+ };
2092
2249
  } | {
2093
2250
  key: string;
2094
2251
  label: string;
@@ -2146,6 +2303,8 @@ declare const todoActionObject: {
2146
2303
  props?: undefined;
2147
2304
  })[];
2148
2305
  };
2306
+ labelTip?: undefined;
2307
+ defaultValue?: undefined;
2149
2308
  })[];
2150
2309
  todoCallbacks: string[];
2151
2310
  classification: {
@@ -2206,7 +2365,42 @@ declare const todoActionObject: {
2206
2365
  key: string;
2207
2366
  label: string;
2208
2367
  type: string;
2368
+ labelTip?: undefined;
2369
+ defaultValue?: undefined;
2209
2370
  props?: undefined;
2371
+ } | {
2372
+ key: string;
2373
+ label: string;
2374
+ type: string;
2375
+ labelTip: string;
2376
+ defaultValue: string;
2377
+ props: {
2378
+ options: {
2379
+ title: string;
2380
+ value: string;
2381
+ }[];
2382
+ titleLink?: undefined;
2383
+ valueType?: undefined;
2384
+ isRequired?: undefined;
2385
+ valuePropName?: undefined;
2386
+ };
2387
+ } | {
2388
+ key: string;
2389
+ label: string;
2390
+ type: string;
2391
+ props: {
2392
+ titleLink: {
2393
+ title: string;
2394
+ value: string;
2395
+ key: string;
2396
+ }[];
2397
+ valueType: string;
2398
+ options?: undefined;
2399
+ isRequired?: undefined;
2400
+ valuePropName?: undefined;
2401
+ };
2402
+ labelTip?: undefined;
2403
+ defaultValue?: undefined;
2210
2404
  } | {
2211
2405
  key: string;
2212
2406
  label: string;
@@ -2214,7 +2408,12 @@ declare const todoActionObject: {
2214
2408
  props: {
2215
2409
  isRequired: boolean;
2216
2410
  valuePropName: string;
2411
+ options?: undefined;
2412
+ titleLink?: undefined;
2413
+ valueType?: undefined;
2217
2414
  };
2415
+ labelTip?: undefined;
2416
+ defaultValue?: undefined;
2218
2417
  })[];
2219
2418
  todoCallbacks: string[];
2220
2419
  classification: {
@@ -2308,12 +2507,45 @@ declare const todoActionObject: {
2308
2507
  props: {
2309
2508
  isRequired: boolean;
2310
2509
  valuePropName: string;
2510
+ options?: undefined;
2511
+ titleLink?: undefined;
2512
+ valueType?: undefined;
2311
2513
  };
2514
+ labelTip?: undefined;
2515
+ defaultValue?: undefined;
2312
2516
  } | {
2313
2517
  key: string;
2314
2518
  label: string;
2315
2519
  type: string;
2316
- props?: undefined;
2520
+ labelTip: string;
2521
+ defaultValue: string;
2522
+ props: {
2523
+ options: {
2524
+ title: string;
2525
+ value: string;
2526
+ }[];
2527
+ isRequired?: undefined;
2528
+ valuePropName?: undefined;
2529
+ titleLink?: undefined;
2530
+ valueType?: undefined;
2531
+ };
2532
+ } | {
2533
+ key: string;
2534
+ label: string;
2535
+ type: string;
2536
+ props: {
2537
+ titleLink: {
2538
+ title: string;
2539
+ value: string;
2540
+ key: string;
2541
+ }[];
2542
+ valueType: string;
2543
+ isRequired?: undefined;
2544
+ valuePropName?: undefined;
2545
+ options?: undefined;
2546
+ };
2547
+ labelTip?: undefined;
2548
+ defaultValue?: undefined;
2317
2549
  })[];
2318
2550
  todoCallbacks: string[];
2319
2551
  classification: {
@@ -2363,9 +2595,20 @@ declare const todoActionObject: {
2363
2595
  isRequired: boolean;
2364
2596
  valuePropName: string;
2365
2597
  options: {
2366
- fileUpload: boolean;
2367
2598
  refreshKey: string[];
2368
- serviceTabs: string[];
2599
+ serviceTabs: ({
2600
+ key: string;
2601
+ description: string;
2602
+ filterParams: {
2603
+ fileInputEnabled: string;
2604
+ };
2605
+ fileUpload?: undefined;
2606
+ } | {
2607
+ key: string;
2608
+ fileUpload: boolean;
2609
+ description: string;
2610
+ filterParams?: undefined;
2611
+ })[];
2369
2612
  };
2370
2613
  };
2371
2614
  } | {
@@ -2400,6 +2643,9 @@ declare const todoActionObject: {
2400
2643
  key: string;
2401
2644
  label: string;
2402
2645
  type: string;
2646
+ props: {
2647
+ selectType: string;
2648
+ };
2403
2649
  }[];
2404
2650
  classification: {
2405
2651
  label: string;
@@ -3100,12 +3346,21 @@ declare const todoActionObject: {
3100
3346
  reloadSelectorData: {
3101
3347
  key: string;
3102
3348
  label: string;
3103
- todoOptions: {
3349
+ todoOptions: ({
3104
3350
  key: string;
3105
3351
  aliasKey: string;
3106
3352
  label: string;
3107
3353
  type: string;
3108
- }[];
3354
+ props?: undefined;
3355
+ } | {
3356
+ key: string;
3357
+ aliasKey: string;
3358
+ label: string;
3359
+ type: string;
3360
+ props: {
3361
+ isFillKey: boolean;
3362
+ };
3363
+ })[];
3109
3364
  todoCallbacks: string[];
3110
3365
  };
3111
3366
  setSelectorDisabelItems: {
@@ -3195,12 +3450,100 @@ declare const todoActionObject: {
3195
3450
  callCurrentFunc: {
3196
3451
  key: string;
3197
3452
  label: string;
3198
- todoOptions: {
3453
+ todoOptions: ({
3454
+ key: string;
3455
+ label: string;
3456
+ type: string;
3457
+ props?: undefined;
3458
+ } | {
3199
3459
  key: string;
3200
3460
  label: string;
3201
3461
  type: string;
3462
+ props: {
3463
+ titleLink: {
3464
+ title: string;
3465
+ value: string;
3466
+ key: string;
3467
+ }[];
3468
+ valueType: string;
3469
+ };
3470
+ })[];
3471
+ todoCallbacks: string[];
3472
+ };
3473
+ sysSetFormItemStatus: {
3474
+ key: string;
3475
+ label: string;
3476
+ classification: {
3477
+ label: string;
3478
+ value: string;
3202
3479
  }[];
3480
+ todoOptions: {
3481
+ key: string;
3482
+ type: string;
3483
+ label: string;
3484
+ props: {
3485
+ showAdd: boolean;
3486
+ noRepeatSelect: {
3487
+ key: string;
3488
+ };
3489
+ options: ({
3490
+ key: string;
3491
+ type: string;
3492
+ label: string;
3493
+ description: string;
3494
+ props: {
3495
+ includeType: string[];
3496
+ required: boolean;
3497
+ };
3498
+ } | {
3499
+ key: string;
3500
+ type: string;
3501
+ label: string;
3502
+ description: string;
3503
+ props: {
3504
+ required: boolean;
3505
+ includeType?: undefined;
3506
+ };
3507
+ } | {
3508
+ key: string;
3509
+ type: string;
3510
+ label: string;
3511
+ description: string;
3512
+ props: {
3513
+ includeType?: undefined;
3514
+ required?: undefined;
3515
+ };
3516
+ })[];
3517
+ titlePrefix: string;
3518
+ };
3519
+ hideLabel: boolean;
3520
+ }[];
3521
+ remarks: {
3522
+ label: string;
3523
+ content: string;
3524
+ }[];
3525
+ };
3526
+ customPrintOrExport: {
3527
+ key: string;
3528
+ label: string;
3529
+ todoOptions: ({
3530
+ key: string;
3531
+ label: string;
3532
+ type: string;
3533
+ props?: undefined;
3534
+ } | {
3535
+ key: string;
3536
+ label: string;
3537
+ type: string;
3538
+ props: {
3539
+ isRequired: boolean;
3540
+ };
3541
+ })[];
3203
3542
  todoCallbacks: string[];
3543
+ classification: {
3544
+ label: string;
3545
+ value: string;
3546
+ }[];
3204
3547
  };
3205
3548
  };
3206
3549
  /**