@lingxiteam/assets 3.2.1-alpha.1 → 3.2.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 (51) 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 +8 -3
  6. package/es/error/errorDisplay/Web/ErrorMsg/index.js +62 -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 +3 -0
  10. package/es/rootConfig/mobile/MobileModal.js +4 -1
  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 +3 -0
  14. package/es/rootConfig/mobile/page.js +4 -1
  15. package/es/rootConfig/pc/Drawer.d.ts +3 -0
  16. package/es/rootConfig/pc/Drawer.js +4 -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 -0
  22. package/es/rootConfig/pc/page.js +4 -1
  23. package/es/rootConfig/todoActionList.d.ts +251 -16
  24. package/es/rootConfig/todoActionList.js +345 -44
  25. package/es/rootConfig/todoOptionList.js +3 -3
  26. package/lib/error/errorDisplay/Mobile/Drawer/Drawer.js +9 -3
  27. package/lib/error/errorDisplay/Mobile/ErrorMsg/index.js +29 -26
  28. package/lib/error/errorDisplay/Mobile/Modal/Modal.js +5 -3
  29. package/lib/error/errorDisplay/Mobile/defaultGlobalConfig.js +9 -1
  30. package/lib/error/errorDisplay/Web/Drawer/Drawer.js +8 -3
  31. package/lib/error/errorDisplay/Web/ErrorMsg/index.js +62 -46
  32. package/lib/error/errorDisplay/Web/defaultGlobalConfig.js +10 -1
  33. package/lib/error/errorDisplay/const.js +33 -9
  34. package/lib/rootConfig/mobile/MobileModal.d.ts +3 -0
  35. package/lib/rootConfig/mobile/MobileModal.js +4 -1
  36. package/lib/rootConfig/mobile/MobilePopover.d.ts +3 -0
  37. package/lib/rootConfig/mobile/MobilePopover.js +4 -1
  38. package/lib/rootConfig/mobile/page.d.ts +3 -0
  39. package/lib/rootConfig/mobile/page.js +4 -1
  40. package/lib/rootConfig/pc/Drawer.d.ts +3 -0
  41. package/lib/rootConfig/pc/Drawer.js +4 -1
  42. package/lib/rootConfig/pc/Modal.d.ts +3 -0
  43. package/lib/rootConfig/pc/Modal.js +4 -1
  44. package/lib/rootConfig/pc/Popover.d.ts +3 -0
  45. package/lib/rootConfig/pc/Popover.js +4 -1
  46. package/lib/rootConfig/pc/page.d.ts +3 -0
  47. package/lib/rootConfig/pc/page.js +4 -1
  48. package/lib/rootConfig/todoActionList.d.ts +251 -16
  49. package/lib/rootConfig/todoActionList.js +345 -44
  50. package/lib/rootConfig/todoOptionList.js +3 -3
  51. package/package.json +1 -1
@@ -678,6 +678,14 @@ declare const todoActionObject: {
678
678
  key: string;
679
679
  label: string;
680
680
  type: string;
681
+ props: {
682
+ titleLink: {
683
+ title: string;
684
+ value: string;
685
+ key: string;
686
+ }[];
687
+ valueType: string;
688
+ };
681
689
  }[];
682
690
  };
683
691
  resetForm: {
@@ -720,6 +728,14 @@ declare const todoActionObject: {
720
728
  key: string;
721
729
  label: string;
722
730
  type: string;
731
+ props: {
732
+ titleLink: {
733
+ title: string;
734
+ value: string;
735
+ key: string;
736
+ }[];
737
+ valueType: string;
738
+ };
723
739
  }[];
724
740
  };
725
741
  resetCurrentForm: {
@@ -805,23 +821,41 @@ declare const todoActionObject: {
805
821
  reloadRCData: {
806
822
  key: string;
807
823
  label: string;
808
- todoOptions: {
824
+ todoOptions: ({
809
825
  key: string;
810
826
  aliasKey: string;
811
827
  label: string;
812
828
  type: string;
813
- }[];
829
+ props?: undefined;
830
+ } | {
831
+ key: string;
832
+ aliasKey: string;
833
+ label: string;
834
+ type: string;
835
+ props: {
836
+ isFillKey: boolean;
837
+ };
838
+ })[];
814
839
  todoCallbacks: string[];
815
840
  };
816
841
  reloadSelectData: {
817
842
  key: string;
818
843
  label: string;
819
- todoOptions: {
844
+ todoOptions: ({
820
845
  key: string;
821
846
  aliasKey: string;
822
847
  label: string;
823
848
  type: string;
824
- }[];
849
+ props?: undefined;
850
+ } | {
851
+ key: string;
852
+ aliasKey: string;
853
+ label: string;
854
+ type: string;
855
+ props: {
856
+ isFillKey: boolean;
857
+ };
858
+ })[];
825
859
  todoCallbacks: string[];
826
860
  };
827
861
  reloadDescData: {
@@ -842,11 +876,15 @@ declare const todoActionObject: {
842
876
  label: string;
843
877
  aliasKey: string;
844
878
  type: string;
879
+ props?: undefined;
845
880
  labelTip?: undefined;
846
881
  } | {
847
882
  key: string;
848
883
  label: string;
849
884
  type: string;
885
+ props: {
886
+ isFillKey: boolean;
887
+ };
850
888
  aliasKey?: undefined;
851
889
  labelTip?: undefined;
852
890
  } | {
@@ -854,6 +892,9 @@ declare const todoActionObject: {
854
892
  label: string;
855
893
  type: string;
856
894
  labelTip: string;
895
+ props: {
896
+ isFillKey: boolean;
897
+ };
857
898
  aliasKey?: undefined;
858
899
  })[];
859
900
  todoCallbacks: string[];
@@ -866,18 +907,32 @@ declare const todoActionObject: {
866
907
  aliasKey: string;
867
908
  label: string;
868
909
  type: string;
910
+ props?: undefined;
869
911
  labelTip?: undefined;
870
912
  } | {
871
913
  key: string;
872
914
  label: string;
873
915
  type: string;
874
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;
875
927
  labelTip?: undefined;
876
928
  } | {
877
929
  key: string;
878
930
  label: string;
879
931
  type: string;
880
932
  labelTip: string;
933
+ props: {
934
+ isFillKey: boolean;
935
+ };
881
936
  aliasKey?: undefined;
882
937
  })[];
883
938
  todoCallbacks: string[];
@@ -890,11 +945,15 @@ declare const todoActionObject: {
890
945
  aliasKey: string;
891
946
  label: string;
892
947
  type: string;
948
+ props?: undefined;
893
949
  labelTip?: undefined;
894
950
  } | {
895
951
  key: string;
896
952
  label: string;
897
953
  type: string;
954
+ props: {
955
+ isFillKey: boolean;
956
+ };
898
957
  aliasKey?: undefined;
899
958
  labelTip?: undefined;
900
959
  } | {
@@ -902,6 +961,9 @@ declare const todoActionObject: {
902
961
  label: string;
903
962
  type: string;
904
963
  labelTip: string;
964
+ props: {
965
+ isFillKey: boolean;
966
+ };
905
967
  aliasKey?: undefined;
906
968
  })[];
907
969
  todoCallbacks: string[];
@@ -914,18 +976,34 @@ declare const todoActionObject: {
914
976
  aliasKey: string;
915
977
  label: string;
916
978
  type: string;
979
+ props?: undefined;
917
980
  labelTip?: undefined;
918
981
  } | {
919
982
  key: string;
920
983
  label: string;
921
984
  type: string;
985
+ props: {
986
+ isFillKey: boolean;
987
+ };
922
988
  aliasKey?: undefined;
923
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;
924
999
  } | {
925
1000
  key: string;
926
1001
  label: string;
927
1002
  type: string;
928
1003
  labelTip: string;
1004
+ props: {
1005
+ isFillKey: boolean;
1006
+ };
929
1007
  aliasKey?: undefined;
930
1008
  })[];
931
1009
  };
@@ -937,11 +1015,24 @@ declare const todoActionObject: {
937
1015
  aliasKey: string;
938
1016
  label: string;
939
1017
  type: string;
1018
+ props?: undefined;
1019
+ labelTip?: undefined;
1020
+ } | {
1021
+ key: string;
1022
+ aliasKey: string;
1023
+ label: string;
1024
+ type: string;
1025
+ props: {
1026
+ isFillKey: boolean;
1027
+ };
940
1028
  labelTip?: undefined;
941
1029
  } | {
942
1030
  key: string;
943
1031
  label: string;
944
1032
  type: string;
1033
+ props: {
1034
+ isFillKey: boolean;
1035
+ };
945
1036
  labelTip: string;
946
1037
  aliasKey?: undefined;
947
1038
  })[];
@@ -1052,6 +1143,14 @@ declare const todoActionObject: {
1052
1143
  key: string;
1053
1144
  label: string;
1054
1145
  type: string;
1146
+ props: {
1147
+ titleLink: {
1148
+ title: string;
1149
+ value: string;
1150
+ key: string;
1151
+ }[];
1152
+ valueType: string;
1153
+ };
1055
1154
  }[];
1056
1155
  };
1057
1156
  delTableRow: {
@@ -1210,11 +1309,15 @@ declare const todoActionObject: {
1210
1309
  label: string;
1211
1310
  type: string;
1212
1311
  aliasKey?: undefined;
1312
+ props?: undefined;
1213
1313
  } | {
1214
1314
  key: string;
1215
1315
  label: string;
1216
1316
  type: string;
1217
1317
  aliasKey: string;
1318
+ props: {
1319
+ isFillKey: boolean;
1320
+ };
1218
1321
  })[];
1219
1322
  todoCallbacks: string[];
1220
1323
  initClose: boolean;
@@ -1980,11 +2083,24 @@ declare const todoActionObject: {
1980
2083
  callSelfFunc: {
1981
2084
  key: string;
1982
2085
  label: string;
1983
- todoOptions: {
2086
+ todoOptions: ({
1984
2087
  key: string;
1985
2088
  label: string;
1986
2089
  type: string;
1987
- }[];
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
+ })[];
1988
2104
  todoCallbacks: string[];
1989
2105
  classification: {
1990
2106
  label: string;
@@ -1994,11 +2110,24 @@ declare const todoActionObject: {
1994
2110
  callParentCustomFunc: {
1995
2111
  key: string;
1996
2112
  label: string;
1997
- todoOptions: {
2113
+ todoOptions: ({
1998
2114
  key: string;
1999
2115
  label: string;
2000
2116
  type: string;
2001
- }[];
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
+ })[];
2002
2131
  todoCallbacks: string[];
2003
2132
  classification: {
2004
2133
  label: string;
@@ -2008,11 +2137,24 @@ declare const todoActionObject: {
2008
2137
  callCustomPageFunc: {
2009
2138
  key: string;
2010
2139
  label: string;
2011
- todoOptions: {
2140
+ todoOptions: ({
2012
2141
  key: string;
2013
2142
  label: string;
2014
2143
  type: string;
2015
- }[];
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
+ })[];
2016
2158
  todoCallbacks: string[];
2017
2159
  classification: {
2018
2160
  label: string;
@@ -2031,6 +2173,8 @@ declare const todoActionObject: {
2031
2173
  isRequired: boolean;
2032
2174
  valuePropName: string;
2033
2175
  options?: undefined;
2176
+ titleLink?: undefined;
2177
+ valueType?: undefined;
2034
2178
  };
2035
2179
  labelTip?: undefined;
2036
2180
  defaultValue?: undefined;
@@ -2047,12 +2191,24 @@ declare const todoActionObject: {
2047
2191
  }[];
2048
2192
  isRequired?: undefined;
2049
2193
  valuePropName?: undefined;
2194
+ titleLink?: undefined;
2195
+ valueType?: undefined;
2050
2196
  };
2051
2197
  } | {
2052
2198
  key: string;
2053
2199
  label: string;
2054
2200
  type: string;
2055
- props?: undefined;
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
+ };
2056
2212
  labelTip?: undefined;
2057
2213
  defaultValue?: undefined;
2058
2214
  })[];
@@ -2223,9 +2379,28 @@ declare const todoActionObject: {
2223
2379
  title: string;
2224
2380
  value: string;
2225
2381
  }[];
2382
+ titleLink?: undefined;
2383
+ valueType?: undefined;
2226
2384
  isRequired?: undefined;
2227
2385
  valuePropName?: undefined;
2228
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;
2229
2404
  } | {
2230
2405
  key: string;
2231
2406
  label: string;
@@ -2234,6 +2409,8 @@ declare const todoActionObject: {
2234
2409
  isRequired: boolean;
2235
2410
  valuePropName: string;
2236
2411
  options?: undefined;
2412
+ titleLink?: undefined;
2413
+ valueType?: undefined;
2237
2414
  };
2238
2415
  labelTip?: undefined;
2239
2416
  defaultValue?: undefined;
@@ -2331,6 +2508,8 @@ declare const todoActionObject: {
2331
2508
  isRequired: boolean;
2332
2509
  valuePropName: string;
2333
2510
  options?: undefined;
2511
+ titleLink?: undefined;
2512
+ valueType?: undefined;
2334
2513
  };
2335
2514
  labelTip?: undefined;
2336
2515
  defaultValue?: undefined;
@@ -2347,12 +2526,24 @@ declare const todoActionObject: {
2347
2526
  }[];
2348
2527
  isRequired?: undefined;
2349
2528
  valuePropName?: undefined;
2529
+ titleLink?: undefined;
2530
+ valueType?: undefined;
2350
2531
  };
2351
2532
  } | {
2352
2533
  key: string;
2353
2534
  label: string;
2354
2535
  type: string;
2355
- props?: undefined;
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
+ };
2356
2547
  labelTip?: undefined;
2357
2548
  defaultValue?: undefined;
2358
2549
  })[];
@@ -3152,12 +3343,21 @@ declare const todoActionObject: {
3152
3343
  reloadSelectorData: {
3153
3344
  key: string;
3154
3345
  label: string;
3155
- todoOptions: {
3346
+ todoOptions: ({
3156
3347
  key: string;
3157
3348
  aliasKey: string;
3158
3349
  label: string;
3159
3350
  type: string;
3160
- }[];
3351
+ props?: undefined;
3352
+ } | {
3353
+ key: string;
3354
+ aliasKey: string;
3355
+ label: string;
3356
+ type: string;
3357
+ props: {
3358
+ isFillKey: boolean;
3359
+ };
3360
+ })[];
3161
3361
  todoCallbacks: string[];
3162
3362
  };
3163
3363
  setSelectorDisabelItems: {
@@ -3247,11 +3447,24 @@ declare const todoActionObject: {
3247
3447
  callCurrentFunc: {
3248
3448
  key: string;
3249
3449
  label: string;
3250
- todoOptions: {
3450
+ todoOptions: ({
3251
3451
  key: string;
3252
3452
  label: string;
3253
3453
  type: string;
3254
- }[];
3454
+ props?: undefined;
3455
+ } | {
3456
+ key: string;
3457
+ label: string;
3458
+ type: string;
3459
+ props: {
3460
+ titleLink: {
3461
+ title: string;
3462
+ value: string;
3463
+ key: string;
3464
+ }[];
3465
+ valueType: string;
3466
+ };
3467
+ })[];
3255
3468
  todoCallbacks: string[];
3256
3469
  };
3257
3470
  sysSetFormItemStatus: {
@@ -3307,6 +3520,28 @@ declare const todoActionObject: {
3307
3520
  content: string;
3308
3521
  }[];
3309
3522
  };
3523
+ customPrintOrExport: {
3524
+ key: string;
3525
+ label: string;
3526
+ todoOptions: ({
3527
+ key: string;
3528
+ label: string;
3529
+ type: string;
3530
+ props?: undefined;
3531
+ } | {
3532
+ key: string;
3533
+ label: string;
3534
+ type: string;
3535
+ props: {
3536
+ isRequired: boolean;
3537
+ };
3538
+ })[];
3539
+ todoCallbacks: string[];
3540
+ classification: {
3541
+ label: string;
3542
+ value: string;
3543
+ }[];
3544
+ };
3310
3545
  };
3311
3546
  /**
3312
3547
  * 通过数组key获取对应的动作