@lingxiteam/assets 1.0.11 → 1.0.12

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 (137) hide show
  1. package/es/dealDsl/preprocess/common.js +27 -16
  2. package/es/error/errorDisplay/Web/Drawer/Drawer.less +31 -0
  3. package/es/error/errorDisplay/Web/Drawer/index.js +12 -4
  4. package/es/error/errorDisplay/Web/ErrorMsg/index.js +27 -4
  5. package/es/error/errorDisplay/Web/Notification/index.js +22 -11
  6. package/es/rootConfig/mobile/BusiComp.js +1 -1
  7. package/es/rootConfig/mobile/MobileModal.js +1 -1
  8. package/es/rootConfig/mobile/MobilePopover.js +1 -1
  9. package/es/rootConfig/pc/BusiComp.js +1 -1
  10. package/es/rootConfig/pc/Drawer.js +1 -1
  11. package/es/rootConfig/pc/Modal.js +1 -1
  12. package/es/rootConfig/pc/Popover.js +1 -1
  13. package/es/rootConfig/todoActionList.js +1 -1
  14. package/es/rootConfig/todoOptionList.js +1 -1
  15. package/es/theme/bin/cucc/theme.js +275 -0
  16. package/es/theme/bin/cucc/theme.less +272 -0
  17. package/es/theme/bin/cucc/theme.scss +272 -0
  18. package/es/theme/bin/default/theme.js +275 -0
  19. package/es/theme/bin/default/theme.less +272 -0
  20. package/es/theme/bin/default/theme.scss +272 -0
  21. package/es/theme/build.js +42 -0
  22. package/es/theme/src/cucc/index.js +131 -0
  23. package/es/theme/src/default/index.js +131 -0
  24. package/es/theme/utils/colorPaletteMixin.js +59 -0
  25. package/es/theme/utils/px2Num.js +12 -0
  26. package/es/theme/utils/renderColors.js +16 -0
  27. package/lib/IconSvg/index.d.ts +6 -0
  28. package/lib/IconSvg/index.js +30 -0
  29. package/lib/dealDsl/PropType.d.ts +7 -0
  30. package/lib/dealDsl/PropType.js +5 -0
  31. package/lib/dealDsl/events/actionObj.d.ts +3 -0
  32. package/lib/dealDsl/events/actionObj.js +13 -0
  33. package/lib/dealDsl/events/index.d.ts +6 -0
  34. package/lib/dealDsl/events/index.js +21 -0
  35. package/lib/dealDsl/index.d.ts +2 -0
  36. package/lib/dealDsl/index.js +31 -0
  37. package/lib/dealDsl/preprocess/common.d.ts +9 -0
  38. package/lib/dealDsl/preprocess/common.js +277 -0
  39. package/lib/dealDsl/preprocess/editor.d.ts +9 -0
  40. package/lib/dealDsl/preprocess/editor.js +28 -0
  41. package/lib/dealDsl/preprocess/engine.d.ts +9 -0
  42. package/lib/dealDsl/preprocess/engine.js +26 -0
  43. package/lib/dealDsl/preprocessDSL.d.ts +21 -0
  44. package/lib/dealDsl/preprocessDSL.js +88 -0
  45. package/lib/dealDsl/utils/index.d.ts +13 -0
  46. package/lib/dealDsl/utils/index.js +29 -0
  47. package/lib/error/errorCatch/index.js +48 -0
  48. package/lib/error/errorDisplay/Mobile/Drawer/Drawer.js +115 -0
  49. package/lib/error/errorDisplay/Mobile/Drawer/Drawer.less +201 -0
  50. package/lib/error/errorDisplay/Mobile/Drawer/index.js +140 -0
  51. package/lib/error/errorDisplay/Mobile/ErrorMsg/index.js +207 -0
  52. package/lib/error/errorDisplay/Mobile/Modal/Modal.js +53 -0
  53. package/lib/error/errorDisplay/Mobile/Modal/Modal.less +146 -0
  54. package/lib/error/errorDisplay/Mobile/Modal/index.js +127 -0
  55. package/lib/error/errorDisplay/Mobile/defaultGlobalConfig.js +21 -0
  56. package/lib/error/errorDisplay/SVGstring.js +18 -0
  57. package/lib/error/errorDisplay/Web/Drawer/Drawer.js +274 -0
  58. package/lib/error/errorDisplay/Web/Drawer/Drawer.less +420 -0
  59. package/lib/error/errorDisplay/Web/Drawer/DrawerConnect.js +213 -0
  60. package/lib/error/errorDisplay/Web/Drawer/index.js +142 -0
  61. package/lib/error/errorDisplay/Web/ErrorMsg/index.js +301 -0
  62. package/lib/error/errorDisplay/Web/Notification/Notice.js +161 -0
  63. package/lib/error/errorDisplay/Web/Notification/Notification.js +149 -0
  64. package/lib/error/errorDisplay/Web/Notification/Notification.less +137 -0
  65. package/lib/error/errorDisplay/Web/Notification/index.js +104 -0
  66. package/lib/error/errorDisplay/Web/defaultGlobalConfig.js +29 -0
  67. package/lib/error/errorDisplay/animation.less +112 -0
  68. package/lib/error/errorDisplay/compUtils.js +52 -0
  69. package/lib/error/errorDisplay/const.js +83 -0
  70. package/lib/error/errorDisplay/http.js +103 -0
  71. package/lib/error/errorDisplay/variables.less +1 -0
  72. package/lib/error/index.js +34 -0
  73. package/lib/images/ico-back.png +0 -0
  74. package/lib/index.d.ts +9 -0
  75. package/lib/rootConfig/index.d.ts +5 -0
  76. package/lib/rootConfig/index.js +28 -0
  77. package/lib/rootConfig/mobile/BusiComp.d.ts +66 -0
  78. package/lib/rootConfig/mobile/BusiComp.js +88 -0
  79. package/lib/rootConfig/mobile/MobileModal.d.ts +114 -0
  80. package/lib/rootConfig/mobile/MobileModal.js +140 -0
  81. package/lib/rootConfig/mobile/MobilePopover.d.ts +81 -0
  82. package/lib/rootConfig/mobile/MobilePopover.js +89 -0
  83. package/lib/rootConfig/mobile/index.d.ts +4 -0
  84. package/lib/rootConfig/mobile/index.js +34 -0
  85. package/lib/rootConfig/mobile/page.d.ts +157 -0
  86. package/lib/rootConfig/mobile/page.js +161 -0
  87. package/lib/rootConfig/pc/BusiComp.d.ts +66 -0
  88. package/lib/rootConfig/pc/BusiComp.js +88 -0
  89. package/lib/rootConfig/pc/Drawer.d.ts +150 -0
  90. package/lib/rootConfig/pc/Drawer.js +203 -0
  91. package/lib/rootConfig/pc/Modal.d.ts +160 -0
  92. package/lib/rootConfig/pc/Modal.js +195 -0
  93. package/lib/rootConfig/pc/Popover.d.ts +90 -0
  94. package/lib/rootConfig/pc/Popover.js +104 -0
  95. package/lib/rootConfig/pc/index.d.ts +5 -0
  96. package/lib/rootConfig/pc/index.js +41 -0
  97. package/lib/rootConfig/pc/page.d.ts +146 -0
  98. package/lib/rootConfig/pc/page.js +153 -0
  99. package/lib/rootConfig/todoActionList.d.ts +3082 -0
  100. package/lib/rootConfig/todoActionList.js +3600 -0
  101. package/lib/rootConfig/todoOptionList.d.ts +1466 -0
  102. package/lib/rootConfig/todoOptionList.js +1685 -0
  103. package/lib/security/const.d.ts +22 -0
  104. package/lib/security/const.js +38 -0
  105. package/lib/security/encipher/aes.d.ts +2 -0
  106. package/lib/security/encipher/aes.js +35 -0
  107. package/lib/security/encipher/des.d.ts +2 -0
  108. package/lib/security/encipher/des.js +34 -0
  109. package/lib/security/encipher/rsa.d.ts +2 -0
  110. package/lib/security/encipher/rsa.js +26 -0
  111. package/lib/security/encipher/sign.d.ts +6 -0
  112. package/lib/security/encipher/sign.js +102 -0
  113. package/lib/security/fetch.d.ts +9 -0
  114. package/lib/security/fetch.js +212 -0
  115. package/lib/security/httpEncryption.js +83 -0
  116. package/lib/security/index.d.ts +39 -0
  117. package/lib/security/index.js +29 -0
  118. package/lib/svg/check.svg +10 -0
  119. package/lib/svg/normal-check.svg +10 -0
  120. package/lib/svg/webViewError.svg +40 -0
  121. package/lib/theme/bin/cucc/theme.js +277 -0
  122. package/lib/theme/bin/cucc/theme.less +272 -0
  123. package/lib/theme/bin/cucc/theme.scss +272 -0
  124. package/lib/theme/bin/default/theme.js +277 -0
  125. package/lib/theme/bin/default/theme.less +272 -0
  126. package/lib/theme/bin/default/theme.scss +272 -0
  127. package/lib/theme/build.js +44 -0
  128. package/lib/theme/src/cucc/index.js +133 -0
  129. package/lib/theme/src/default/index.js +133 -0
  130. package/lib/theme/utils/colorPaletteMixin.js +61 -0
  131. package/lib/theme/utils/px2Num.js +14 -0
  132. package/lib/theme/utils/renderColors.js +18 -0
  133. package/lib/utils/img.d.ts +1 -0
  134. package/lib/utils/img.js +10 -0
  135. package/lib/utils/url.d.ts +16 -0
  136. package/lib/utils/url.js +111 -0
  137. package/package.json +6 -3
@@ -0,0 +1,3082 @@
1
+ declare const todoActionObject: {
2
+ showMessage: {
3
+ key: string;
4
+ label: string;
5
+ todoOptions: ({
6
+ key: string;
7
+ label: string;
8
+ type: string;
9
+ defaultValue: string;
10
+ props: {
11
+ options: ({
12
+ title: string;
13
+ value: string;
14
+ terminal?: undefined;
15
+ } | {
16
+ title: string;
17
+ value: string;
18
+ terminal: string[];
19
+ })[];
20
+ unit?: undefined;
21
+ };
22
+ } | {
23
+ key: string;
24
+ label: string;
25
+ type: string;
26
+ defaultValue?: undefined;
27
+ props?: undefined;
28
+ } | {
29
+ key: string;
30
+ label: string;
31
+ type: string;
32
+ props: {
33
+ unit: string;
34
+ options?: undefined;
35
+ };
36
+ defaultValue?: undefined;
37
+ })[];
38
+ classification: {
39
+ label: string;
40
+ value: string;
41
+ }[];
42
+ tips: string;
43
+ };
44
+ hideMessage: {
45
+ key: string;
46
+ label: string;
47
+ classification: {
48
+ label: string;
49
+ value: string;
50
+ }[];
51
+ };
52
+ apiRequest: {
53
+ key: string;
54
+ label: string;
55
+ todoOptions: ({
56
+ key: string;
57
+ label: string;
58
+ type: string;
59
+ props: {
60
+ placeholder: string;
61
+ maxLength: number;
62
+ options?: undefined;
63
+ isRequired?: undefined;
64
+ valuePropName?: undefined;
65
+ };
66
+ defaultValue?: undefined;
67
+ } | {
68
+ key: string;
69
+ label: string;
70
+ type: string;
71
+ defaultValue: boolean;
72
+ props: {
73
+ options: {
74
+ title: string;
75
+ value: boolean;
76
+ }[];
77
+ placeholder?: undefined;
78
+ maxLength?: undefined;
79
+ isRequired?: undefined;
80
+ valuePropName?: undefined;
81
+ };
82
+ } | {
83
+ key: string;
84
+ label: string;
85
+ type: string;
86
+ props: {
87
+ isRequired: boolean;
88
+ valuePropName: string;
89
+ placeholder?: undefined;
90
+ maxLength?: undefined;
91
+ options?: undefined;
92
+ };
93
+ defaultValue?: undefined;
94
+ } | {
95
+ key: string;
96
+ label: string;
97
+ type: string;
98
+ props?: undefined;
99
+ defaultValue?: undefined;
100
+ })[];
101
+ todoCallbacks: string[];
102
+ classification: {
103
+ label: string;
104
+ value: string;
105
+ }[];
106
+ };
107
+ JSBridge: {
108
+ key: string;
109
+ label: string;
110
+ todoOptions: ({
111
+ key: string;
112
+ label: string;
113
+ type: string;
114
+ props: {
115
+ placeholder: string;
116
+ };
117
+ } | {
118
+ key: string;
119
+ label: string;
120
+ type: string;
121
+ props?: undefined;
122
+ })[];
123
+ todoCallbacks: string[];
124
+ classification: {
125
+ label: string;
126
+ value: string;
127
+ }[];
128
+ };
129
+ apiRequestByFlow: {
130
+ key: string;
131
+ label: string;
132
+ todoOptions: ({
133
+ key: string;
134
+ label: string;
135
+ type: string;
136
+ defaultValue: boolean;
137
+ props: {
138
+ options: {
139
+ title: string;
140
+ value: boolean;
141
+ }[];
142
+ };
143
+ aliasKey?: undefined;
144
+ } | {
145
+ key: string;
146
+ label: string;
147
+ type: string;
148
+ defaultValue?: undefined;
149
+ props?: undefined;
150
+ aliasKey?: undefined;
151
+ } | {
152
+ key: string;
153
+ label: string;
154
+ type: string;
155
+ props: {
156
+ options: {
157
+ title: string;
158
+ value: string;
159
+ }[];
160
+ };
161
+ defaultValue?: undefined;
162
+ aliasKey?: undefined;
163
+ } | {
164
+ key: string;
165
+ aliasKey: string;
166
+ label: string;
167
+ type: string;
168
+ defaultValue?: undefined;
169
+ props?: undefined;
170
+ })[];
171
+ todoCallbacks: string[];
172
+ classification: {
173
+ label: string;
174
+ value: string;
175
+ }[];
176
+ };
177
+ openFlowPage: {
178
+ key: string;
179
+ label: string;
180
+ todoOptions: {
181
+ key: string;
182
+ label: string;
183
+ type: string;
184
+ }[];
185
+ todoCallbacks: string[];
186
+ classification: {
187
+ label: string;
188
+ value: string;
189
+ }[];
190
+ };
191
+ rollbackFlow: {
192
+ key: string;
193
+ label: string;
194
+ todoOptions: {
195
+ key: string;
196
+ label: string;
197
+ type: string;
198
+ props: {
199
+ isRequired: boolean;
200
+ };
201
+ }[];
202
+ todoCallbacks: string[];
203
+ classification: {
204
+ label: string;
205
+ value: string;
206
+ }[];
207
+ };
208
+ openFlowDiagram: {
209
+ key: string;
210
+ label: string;
211
+ todoOptions: ({
212
+ key: string;
213
+ label: string;
214
+ type: string;
215
+ props: {
216
+ options: {
217
+ title: string;
218
+ value: string;
219
+ }[];
220
+ };
221
+ } | {
222
+ key: string;
223
+ label: string;
224
+ type: string;
225
+ props?: undefined;
226
+ })[];
227
+ classification: {
228
+ label: string;
229
+ value: string;
230
+ }[];
231
+ };
232
+ console: {
233
+ key: string;
234
+ label: string;
235
+ todoOptions: {
236
+ key: string;
237
+ label: string;
238
+ aliasKey: string;
239
+ type: string;
240
+ }[];
241
+ classification: {
242
+ label: string;
243
+ value: string;
244
+ }[];
245
+ };
246
+ sysSetVisible: {
247
+ key: string;
248
+ label: string;
249
+ todoOptions: ({
250
+ key: string;
251
+ label: string;
252
+ type: string;
253
+ defaultValue: string;
254
+ props: {
255
+ options: {
256
+ title: string;
257
+ value: string;
258
+ }[];
259
+ };
260
+ aliasKey?: undefined;
261
+ } | {
262
+ key: string;
263
+ label: string;
264
+ type: string;
265
+ aliasKey: string;
266
+ defaultValue?: undefined;
267
+ props?: undefined;
268
+ })[];
269
+ classification: {
270
+ label: string;
271
+ value: string;
272
+ }[];
273
+ };
274
+ sysSetValue: {
275
+ key: string;
276
+ label: string;
277
+ todoOptions: ({
278
+ key: string;
279
+ label: string;
280
+ type: string;
281
+ aliasKey: string;
282
+ } | {
283
+ key: string;
284
+ label: string;
285
+ type: string;
286
+ aliasKey?: undefined;
287
+ })[];
288
+ todoCallbacks: string[];
289
+ classification: {
290
+ label: string;
291
+ value: string;
292
+ }[];
293
+ initClose: boolean;
294
+ };
295
+ sysSetDisable: {
296
+ key: string;
297
+ label: string;
298
+ todoOptions: ({
299
+ key: string;
300
+ label: string;
301
+ type: string;
302
+ defaultValue: string;
303
+ props: {
304
+ options: {
305
+ title: string;
306
+ value: string;
307
+ }[];
308
+ };
309
+ aliasKey?: undefined;
310
+ } | {
311
+ key: string;
312
+ label: string;
313
+ type: string;
314
+ aliasKey: string;
315
+ defaultValue?: undefined;
316
+ props?: undefined;
317
+ })[];
318
+ classification: {
319
+ label: string;
320
+ value: string;
321
+ }[];
322
+ };
323
+ sysSetRequired: {
324
+ key: string;
325
+ label: string;
326
+ todoOptions: ({
327
+ key: string;
328
+ label: string;
329
+ type: string;
330
+ defaultValue: string;
331
+ props: {
332
+ options: {
333
+ title: string;
334
+ value: string;
335
+ }[];
336
+ };
337
+ aliasKey?: undefined;
338
+ } | {
339
+ key: string;
340
+ label: string;
341
+ type: string;
342
+ aliasKey: string;
343
+ defaultValue?: undefined;
344
+ props?: undefined;
345
+ })[];
346
+ classification: {
347
+ label: string;
348
+ value: string;
349
+ }[];
350
+ };
351
+ showModal: {
352
+ key: string;
353
+ label: string;
354
+ todoOptions: ({
355
+ key: string;
356
+ label: string;
357
+ type: string;
358
+ aliasKey: string;
359
+ props: {
360
+ options: {
361
+ title: string;
362
+ value: string;
363
+ }[];
364
+ };
365
+ visibleFlag?: undefined;
366
+ visibleFlagValue?: undefined;
367
+ } | {
368
+ key: string;
369
+ label: string;
370
+ type: string;
371
+ aliasKey?: undefined;
372
+ props?: undefined;
373
+ visibleFlag?: undefined;
374
+ visibleFlagValue?: undefined;
375
+ } | {
376
+ key: string;
377
+ label: string;
378
+ type: string;
379
+ visibleFlag: string;
380
+ visibleFlagValue: string[];
381
+ aliasKey?: undefined;
382
+ props?: undefined;
383
+ })[];
384
+ todoCallbacks: string[];
385
+ classification: {
386
+ label: string;
387
+ value: string;
388
+ }[];
389
+ };
390
+ showCustomModal: {
391
+ key: string;
392
+ label: string;
393
+ todoOptions: {
394
+ key: string;
395
+ label: string;
396
+ type: string;
397
+ }[];
398
+ todoCallbacks: string[];
399
+ classification: {
400
+ label: string;
401
+ value: string;
402
+ }[];
403
+ };
404
+ showAppCustomModal: {
405
+ key: string;
406
+ label: string;
407
+ todoOptions: {
408
+ key: string;
409
+ label: string;
410
+ type: string;
411
+ }[];
412
+ todoCallbacks: string[];
413
+ classification: {
414
+ label: string;
415
+ value: string;
416
+ }[];
417
+ tips: string;
418
+ };
419
+ showDrawer: {
420
+ key: string;
421
+ label: string;
422
+ todoOptions: {
423
+ key: string;
424
+ label: string;
425
+ type: string;
426
+ }[];
427
+ todoCallbacks: string[];
428
+ classification: {
429
+ label: string;
430
+ value: string;
431
+ }[];
432
+ tips: string;
433
+ };
434
+ setPublicState: {
435
+ key: string;
436
+ label: string;
437
+ todoOptions: {
438
+ key: string;
439
+ label: string;
440
+ type: string;
441
+ }[];
442
+ };
443
+ getPublicState: {
444
+ key: string;
445
+ label: string;
446
+ todoOptions: {
447
+ key: string;
448
+ label: string;
449
+ type: string;
450
+ }[];
451
+ todoCallbacks: string[];
452
+ classification: {
453
+ label: string;
454
+ value: string;
455
+ }[];
456
+ };
457
+ historyPush: {
458
+ key: string;
459
+ label: string;
460
+ todoOptions: ({
461
+ key: string;
462
+ label: string;
463
+ type: string;
464
+ aliasKey?: undefined;
465
+ } | {
466
+ key: string;
467
+ aliasKey: string;
468
+ label: string;
469
+ type: string;
470
+ })[];
471
+ };
472
+ historyReplace: {
473
+ key: string;
474
+ label: string;
475
+ todoOptions: ({
476
+ key: string;
477
+ label: string;
478
+ type: string;
479
+ aliasKey?: undefined;
480
+ } | {
481
+ key: string;
482
+ aliasKey: string;
483
+ label: string;
484
+ type: string;
485
+ })[];
486
+ };
487
+ history: {
488
+ key: string;
489
+ label: string;
490
+ todoOptions: ({
491
+ key: string;
492
+ aliasKey: string;
493
+ label: string;
494
+ type: string;
495
+ props: {
496
+ options: {
497
+ title: string;
498
+ value: string;
499
+ }[];
500
+ };
501
+ } | {
502
+ key: string;
503
+ label: string;
504
+ type: string;
505
+ aliasKey?: undefined;
506
+ props?: undefined;
507
+ } | {
508
+ key: string;
509
+ aliasKey: string;
510
+ label: string;
511
+ type: string;
512
+ props?: undefined;
513
+ })[];
514
+ classification: {
515
+ label: string;
516
+ value: string;
517
+ }[];
518
+ };
519
+ dropPageByCatch: {
520
+ key: string;
521
+ label: string;
522
+ todoOptions: {
523
+ key: string;
524
+ label: string;
525
+ type: string;
526
+ }[];
527
+ classification: {
528
+ label: string;
529
+ value: string;
530
+ }[];
531
+ };
532
+ historyGoBack: {
533
+ key: string;
534
+ label: string;
535
+ todoOptions: {
536
+ key: string;
537
+ label: string;
538
+ type: string;
539
+ }[];
540
+ classification: {
541
+ label: string;
542
+ value: string;
543
+ }[];
544
+ };
545
+ setCustomState: {
546
+ key: string;
547
+ label: string;
548
+ todoOptions: {
549
+ key: string;
550
+ label: string;
551
+ type: string;
552
+ }[];
553
+ classification: {
554
+ label: string;
555
+ value: string;
556
+ }[];
557
+ };
558
+ getCustomState: {
559
+ key: string;
560
+ label: string;
561
+ todoOptions: {
562
+ key: string;
563
+ label: string;
564
+ type: string;
565
+ }[];
566
+ todoCallbacks: string[];
567
+ classification: {
568
+ label: string;
569
+ value: string;
570
+ }[];
571
+ };
572
+ setStatesByKeyAndValue: {
573
+ key: string;
574
+ label: string;
575
+ todoOptions: {
576
+ key: string;
577
+ label: string;
578
+ type: string;
579
+ }[];
580
+ classification: {
581
+ label: string;
582
+ value: string;
583
+ }[];
584
+ };
585
+ getStatesByKey: {
586
+ key: string;
587
+ label: string;
588
+ todoOptions: {
589
+ key: string;
590
+ label: string;
591
+ type: string;
592
+ }[];
593
+ todoCallbacks: string[];
594
+ classification: {
595
+ label: string;
596
+ value: string;
597
+ }[];
598
+ };
599
+ setCompNestedState: {
600
+ key: string;
601
+ label: string;
602
+ todoOptions: {
603
+ key: string;
604
+ label: string;
605
+ type: string;
606
+ }[];
607
+ classification: {
608
+ label: string;
609
+ value: string;
610
+ }[];
611
+ };
612
+ getCompNestedState: {
613
+ key: string;
614
+ label: string;
615
+ todoOptions: {
616
+ key: string;
617
+ label: string;
618
+ type: string;
619
+ }[];
620
+ todoCallbacks: string[];
621
+ classification: {
622
+ label: string;
623
+ value: string;
624
+ }[];
625
+ };
626
+ okCallbackData: {
627
+ key: string;
628
+ label: string;
629
+ todoOptions: {
630
+ key: string;
631
+ aliasKey: string;
632
+ label: string;
633
+ type: string;
634
+ }[];
635
+ classification: {
636
+ label: string;
637
+ value: string;
638
+ }[];
639
+ };
640
+ closeModal: {
641
+ key: string;
642
+ label: string;
643
+ todoOptions: never[];
644
+ classification: {
645
+ label: string;
646
+ value: string;
647
+ }[];
648
+ };
649
+ validateForm: {
650
+ key: string;
651
+ label: string;
652
+ todoCallbacks: string[];
653
+ };
654
+ getFormValue: {
655
+ key: string;
656
+ label: string;
657
+ todoCallbacks: string[];
658
+ };
659
+ setFormValues: {
660
+ key: string;
661
+ label: string;
662
+ todoOptions: {
663
+ key: string;
664
+ label: string;
665
+ type: string;
666
+ }[];
667
+ };
668
+ resetForm: {
669
+ key: string;
670
+ label: string;
671
+ };
672
+ setTripleFormAction: {
673
+ key: string;
674
+ label: string;
675
+ todoOptions: ({
676
+ key: string;
677
+ label: string;
678
+ type: string;
679
+ props: {
680
+ placeholder: string;
681
+ };
682
+ aliasKey?: undefined;
683
+ } | {
684
+ key: string;
685
+ aliasKey: string;
686
+ label: string;
687
+ type: string;
688
+ props?: undefined;
689
+ })[];
690
+ };
691
+ validateCurrentForm: {
692
+ key: string;
693
+ label: string;
694
+ todoCallbacks: string[];
695
+ };
696
+ getCurrentFormValues: {
697
+ key: string;
698
+ label: string;
699
+ todoCallbacks: string[];
700
+ };
701
+ setCurrentFormValues: {
702
+ key: string;
703
+ label: string;
704
+ todoOptions: {
705
+ key: string;
706
+ label: string;
707
+ type: string;
708
+ }[];
709
+ };
710
+ resetCurrentForm: {
711
+ key: string;
712
+ label: string;
713
+ };
714
+ validateAllForm: {
715
+ key: string;
716
+ label: string;
717
+ todoCallbacks: string[];
718
+ classification: {
719
+ label: string;
720
+ value: string;
721
+ }[];
722
+ };
723
+ getAllFormValues: {
724
+ key: string;
725
+ label: string;
726
+ todoCallbacks: string[];
727
+ classification: {
728
+ label: string;
729
+ value: string;
730
+ }[];
731
+ };
732
+ resetAllForm: {
733
+ key: string;
734
+ label: string;
735
+ classification: {
736
+ label: string;
737
+ value: string;
738
+ }[];
739
+ };
740
+ validateGridViewForms: {
741
+ key: string;
742
+ label: string;
743
+ todoCallbacks: string[];
744
+ };
745
+ getGridViewFormValues: {
746
+ key: string;
747
+ label: string;
748
+ todoCallbacks: string[];
749
+ };
750
+ reloadTableData: {
751
+ key: string;
752
+ label: string;
753
+ todoOptions: ({
754
+ key: string;
755
+ aliasKey: string;
756
+ label: string;
757
+ type: string;
758
+ } | {
759
+ key: string;
760
+ label: string;
761
+ type: string;
762
+ aliasKey?: undefined;
763
+ })[];
764
+ todoCallbacks: string[];
765
+ };
766
+ reloadColServiceData: {
767
+ key: string;
768
+ label: string;
769
+ todoOptions: ({
770
+ key: string;
771
+ label: string;
772
+ type: string;
773
+ aliasKey?: undefined;
774
+ } | {
775
+ key: string;
776
+ aliasKey: string;
777
+ label: string;
778
+ type: string;
779
+ })[];
780
+ };
781
+ reloadColServiceDataForEdit: {
782
+ key: string;
783
+ label: string;
784
+ todoOptions: {
785
+ key: string;
786
+ label: string;
787
+ type: string;
788
+ }[];
789
+ };
790
+ reloadRCData: {
791
+ key: string;
792
+ label: string;
793
+ todoOptions: {
794
+ key: string;
795
+ aliasKey: string;
796
+ label: string;
797
+ type: string;
798
+ }[];
799
+ todoCallbacks: string[];
800
+ };
801
+ reloadSelectData: {
802
+ key: string;
803
+ label: string;
804
+ todoOptions: {
805
+ key: string;
806
+ aliasKey: string;
807
+ label: string;
808
+ type: string;
809
+ }[];
810
+ todoCallbacks: string[];
811
+ };
812
+ reloadDescData: {
813
+ key: string;
814
+ label: string;
815
+ todoOptions: {
816
+ key: string;
817
+ aliasKey: string;
818
+ label: string;
819
+ type: string;
820
+ }[];
821
+ };
822
+ reloadData: {
823
+ key: string;
824
+ label: string;
825
+ todoOptions: ({
826
+ key: string;
827
+ label: string;
828
+ aliasKey: string;
829
+ type: string;
830
+ labelTip?: undefined;
831
+ } | {
832
+ key: string;
833
+ label: string;
834
+ type: string;
835
+ aliasKey?: undefined;
836
+ labelTip?: undefined;
837
+ } | {
838
+ key: string;
839
+ label: string;
840
+ type: string;
841
+ labelTip: string;
842
+ aliasKey?: undefined;
843
+ })[];
844
+ todoCallbacks: string[];
845
+ };
846
+ reloadChildData: {
847
+ key: string;
848
+ label: string;
849
+ todoOptions: ({
850
+ key: string;
851
+ aliasKey: string;
852
+ label: string;
853
+ type: string;
854
+ labelTip?: undefined;
855
+ } | {
856
+ key: string;
857
+ label: string;
858
+ type: string;
859
+ aliasKey?: undefined;
860
+ labelTip?: undefined;
861
+ } | {
862
+ key: string;
863
+ label: string;
864
+ type: string;
865
+ labelTip: string;
866
+ aliasKey?: undefined;
867
+ })[];
868
+ todoCallbacks: string[];
869
+ };
870
+ reloadMenuData: {
871
+ key: string;
872
+ label: string;
873
+ todoOptions: ({
874
+ key: string;
875
+ aliasKey: string;
876
+ label: string;
877
+ type: string;
878
+ labelTip?: undefined;
879
+ } | {
880
+ key: string;
881
+ label: string;
882
+ type: string;
883
+ aliasKey?: undefined;
884
+ labelTip?: undefined;
885
+ } | {
886
+ key: string;
887
+ label: string;
888
+ type: string;
889
+ labelTip: string;
890
+ aliasKey?: undefined;
891
+ })[];
892
+ todoCallbacks: string[];
893
+ };
894
+ appendTreeNode: {
895
+ key: string;
896
+ label: string;
897
+ todoOptions: ({
898
+ key: string;
899
+ aliasKey: string;
900
+ label: string;
901
+ type: string;
902
+ labelTip?: undefined;
903
+ } | {
904
+ key: string;
905
+ label: string;
906
+ type: string;
907
+ aliasKey?: undefined;
908
+ labelTip?: undefined;
909
+ } | {
910
+ key: string;
911
+ label: string;
912
+ type: string;
913
+ labelTip: string;
914
+ aliasKey?: undefined;
915
+ })[];
916
+ };
917
+ appendMenuNodeData: {
918
+ key: string;
919
+ label: string;
920
+ todoOptions: ({
921
+ key: string;
922
+ aliasKey: string;
923
+ label: string;
924
+ type: string;
925
+ labelTip?: undefined;
926
+ } | {
927
+ key: string;
928
+ label: string;
929
+ type: string;
930
+ labelTip: string;
931
+ aliasKey?: undefined;
932
+ })[];
933
+ todoCallbacks: string[];
934
+ };
935
+ getTreeSelectedKey: {
936
+ key: string;
937
+ label: string;
938
+ todoCallbacks: string[];
939
+ };
940
+ getSelectedData: {
941
+ key: string;
942
+ label: string;
943
+ todoCallbacks: string[];
944
+ };
945
+ setTreeSelectedKey: {
946
+ key: string;
947
+ label: string;
948
+ todoOptions: {
949
+ key: string;
950
+ label: string;
951
+ type: string;
952
+ }[];
953
+ todoCallbacks: string[];
954
+ };
955
+ clearTreeSelectedKey: {
956
+ key: string;
957
+ label: string;
958
+ };
959
+ getTreeEditingKey: {
960
+ key: string;
961
+ label: string;
962
+ todoCallbacks: string[];
963
+ };
964
+ getCheckedKey: {
965
+ key: string;
966
+ label: string;
967
+ todoCallbacks: string[];
968
+ };
969
+ setCheckedKey: {
970
+ key: string;
971
+ label: string;
972
+ todoOptions: {
973
+ key: string;
974
+ label: string;
975
+ type: string;
976
+ }[];
977
+ todoCallbacks: string[];
978
+ };
979
+ clearTreeCheckedKey: {
980
+ key: string;
981
+ label: string;
982
+ };
983
+ setSelectAll: {
984
+ key: string;
985
+ label: string;
986
+ todoCallbacks: string[];
987
+ };
988
+ getTableSelected: {
989
+ key: string;
990
+ label: string;
991
+ todoCallbacks: string[];
992
+ };
993
+ getTableSelectedKey: {
994
+ key: string;
995
+ label: string;
996
+ todoCallbacks: string[];
997
+ };
998
+ getTableCurrentPageSelected: {
999
+ key: string;
1000
+ label: string;
1001
+ todoCallbacks: string[];
1002
+ };
1003
+ getTableCurrentPageSelectedKey: {
1004
+ key: string;
1005
+ label: string;
1006
+ todoCallbacks: string[];
1007
+ };
1008
+ getTableData: {
1009
+ key: string;
1010
+ label: string;
1011
+ todoCallbacks: string[];
1012
+ };
1013
+ getPageNum: {
1014
+ key: string;
1015
+ label: string;
1016
+ todoCallbacks: string[];
1017
+ };
1018
+ addTableRow: {
1019
+ key: string;
1020
+ label: string;
1021
+ todoOptions: {
1022
+ key: string;
1023
+ label: string;
1024
+ type: string;
1025
+ props: {
1026
+ options: {
1027
+ title: string;
1028
+ value: boolean;
1029
+ }[];
1030
+ };
1031
+ }[];
1032
+ };
1033
+ addTableRowData: {
1034
+ key: string;
1035
+ label: string;
1036
+ todoOptions: {
1037
+ key: string;
1038
+ label: string;
1039
+ type: string;
1040
+ }[];
1041
+ };
1042
+ delTableRow: {
1043
+ key: string;
1044
+ label: string;
1045
+ todoOptions: {
1046
+ key: string;
1047
+ label: string;
1048
+ type: string;
1049
+ }[];
1050
+ };
1051
+ setSelectedRowKeys: {
1052
+ key: string;
1053
+ label: string;
1054
+ todoOptions: {
1055
+ key: string;
1056
+ label: string;
1057
+ type: string;
1058
+ }[];
1059
+ todoCallbacks: string[];
1060
+ };
1061
+ clearTableSelected: {
1062
+ key: string;
1063
+ label: string;
1064
+ };
1065
+ setActiveTabPane: {
1066
+ key: string;
1067
+ label: string;
1068
+ todoOptions: {
1069
+ key: string;
1070
+ label: string;
1071
+ type: string;
1072
+ }[];
1073
+ };
1074
+ setDisable: {
1075
+ key: string;
1076
+ label: string;
1077
+ todoOptions: ({
1078
+ key: string;
1079
+ label: string;
1080
+ type: string;
1081
+ defaultValue: string;
1082
+ props: {
1083
+ options: {
1084
+ title: string;
1085
+ value: string;
1086
+ }[];
1087
+ };
1088
+ } | {
1089
+ key: string;
1090
+ label: string;
1091
+ type: string;
1092
+ defaultValue?: undefined;
1093
+ props?: undefined;
1094
+ })[];
1095
+ };
1096
+ setRequired: {
1097
+ key: string;
1098
+ label: string;
1099
+ todoOptions: ({
1100
+ key: string;
1101
+ label: string;
1102
+ type: string;
1103
+ defaultValue: string;
1104
+ props: {
1105
+ options: {
1106
+ title: string;
1107
+ value: string;
1108
+ }[];
1109
+ };
1110
+ aliasKey?: undefined;
1111
+ } | {
1112
+ key: string;
1113
+ label: string;
1114
+ type: string;
1115
+ aliasKey: string;
1116
+ defaultValue?: undefined;
1117
+ props?: undefined;
1118
+ })[];
1119
+ };
1120
+ setVisible: {
1121
+ key: string;
1122
+ label: string;
1123
+ todoOptions: ({
1124
+ key: string;
1125
+ label: string;
1126
+ type: string;
1127
+ defaultValue: string;
1128
+ props: {
1129
+ options: {
1130
+ title: string;
1131
+ value: string;
1132
+ }[];
1133
+ };
1134
+ aliasKey?: undefined;
1135
+ } | {
1136
+ key: string;
1137
+ label: string;
1138
+ type: string;
1139
+ aliasKey: string;
1140
+ defaultValue?: undefined;
1141
+ props?: undefined;
1142
+ })[];
1143
+ };
1144
+ setLoading: {
1145
+ key: string;
1146
+ label: string;
1147
+ todoOptions: {
1148
+ key: string;
1149
+ label: string;
1150
+ type: string;
1151
+ props: {
1152
+ options: {
1153
+ title: string;
1154
+ value: boolean;
1155
+ }[];
1156
+ };
1157
+ }[];
1158
+ };
1159
+ setValue: {
1160
+ key: string;
1161
+ label: string;
1162
+ todoOptions: ({
1163
+ key: string;
1164
+ label: string;
1165
+ type: string;
1166
+ aliasKey: string;
1167
+ } | {
1168
+ key: string;
1169
+ label: string;
1170
+ type: string;
1171
+ aliasKey?: undefined;
1172
+ })[];
1173
+ todoCallbacks: string[];
1174
+ initClose: boolean;
1175
+ };
1176
+ setModalSelectValue: {
1177
+ key: string;
1178
+ label: string;
1179
+ todoOptions: ({
1180
+ key: string;
1181
+ label: string;
1182
+ type: string;
1183
+ aliasKey?: undefined;
1184
+ } | {
1185
+ key: string;
1186
+ label: string;
1187
+ type: string;
1188
+ aliasKey: string;
1189
+ })[];
1190
+ todoCallbacks: string[];
1191
+ initClose: boolean;
1192
+ };
1193
+ setBadgeValue: {
1194
+ key: string;
1195
+ label: string;
1196
+ todoOptions: {
1197
+ key: string;
1198
+ label: string;
1199
+ type: string;
1200
+ }[];
1201
+ todoCallbacks: string[];
1202
+ };
1203
+ getValue: {
1204
+ key: string;
1205
+ label: string;
1206
+ todoCallbacks: string[];
1207
+ };
1208
+ reloadOptions: {
1209
+ key: string;
1210
+ label: string;
1211
+ };
1212
+ clearOptions: {
1213
+ key: string;
1214
+ label: string;
1215
+ };
1216
+ clearValue: {
1217
+ key: string;
1218
+ label: string;
1219
+ todoOptions: never[];
1220
+ };
1221
+ triggerRelDataSource: {
1222
+ key: string;
1223
+ label: string;
1224
+ todoOptions: ({
1225
+ key: string;
1226
+ label: string;
1227
+ type: string;
1228
+ props?: undefined;
1229
+ } | {
1230
+ key: string;
1231
+ label: string;
1232
+ type: string;
1233
+ props: {
1234
+ options: {
1235
+ noCustom: boolean;
1236
+ };
1237
+ };
1238
+ })[];
1239
+ };
1240
+ triggerMobileRelDataSource: {
1241
+ key: string;
1242
+ label: string;
1243
+ todoOptions: ({
1244
+ key: string;
1245
+ label: string;
1246
+ type: string;
1247
+ props?: undefined;
1248
+ } | {
1249
+ key: string;
1250
+ label: string;
1251
+ type: string;
1252
+ props: {
1253
+ options: {
1254
+ noCustom: boolean;
1255
+ };
1256
+ };
1257
+ })[];
1258
+ };
1259
+ validateMsg: {
1260
+ key: string;
1261
+ label: string;
1262
+ todoOptions: ({
1263
+ key: string;
1264
+ aliasKey: string;
1265
+ label: string;
1266
+ type: string;
1267
+ defaultValue: string;
1268
+ props: {
1269
+ options: {
1270
+ title: string;
1271
+ value: string;
1272
+ }[];
1273
+ placeholder?: undefined;
1274
+ };
1275
+ } | {
1276
+ key: string;
1277
+ label: string;
1278
+ type: string;
1279
+ aliasKey: string;
1280
+ props: {
1281
+ placeholder: string;
1282
+ options?: undefined;
1283
+ };
1284
+ defaultValue?: undefined;
1285
+ })[];
1286
+ };
1287
+ editInlineRow: {
1288
+ key: string;
1289
+ label: string;
1290
+ todoOptions: {
1291
+ key: string;
1292
+ label: string;
1293
+ type: string;
1294
+ }[];
1295
+ };
1296
+ saveInlineRow: {
1297
+ key: string;
1298
+ label: string;
1299
+ todoOptions: never[];
1300
+ };
1301
+ restoreInlineRow: {
1302
+ key: string;
1303
+ label: string;
1304
+ todoOptions: never[];
1305
+ };
1306
+ setDownloadResponse: {
1307
+ key: string;
1308
+ label: string;
1309
+ todoOptions: {
1310
+ key: string;
1311
+ label: string;
1312
+ type: string;
1313
+ }[];
1314
+ classification: {
1315
+ label: string;
1316
+ value: string;
1317
+ }[];
1318
+ };
1319
+ saveBlobFile: {
1320
+ key: string;
1321
+ label: string;
1322
+ todoOptions: ({
1323
+ key: string;
1324
+ aliasKey: string;
1325
+ label: string;
1326
+ type: string;
1327
+ labelTip?: undefined;
1328
+ props?: undefined;
1329
+ } | {
1330
+ key: string;
1331
+ label: string;
1332
+ type: string;
1333
+ labelTip: string;
1334
+ props: {
1335
+ placeholder: string;
1336
+ };
1337
+ aliasKey?: undefined;
1338
+ })[];
1339
+ classification: {
1340
+ label: string;
1341
+ value: string;
1342
+ }[];
1343
+ };
1344
+ downloadByFileId: {
1345
+ key: string;
1346
+ label: string;
1347
+ todoOptions: ({
1348
+ key: string;
1349
+ aliasKey: string;
1350
+ label: string;
1351
+ type: string;
1352
+ labelTip: string;
1353
+ props?: undefined;
1354
+ } | {
1355
+ key: string;
1356
+ label: string;
1357
+ type: string;
1358
+ labelTip: string;
1359
+ props: {
1360
+ placeholder: string;
1361
+ };
1362
+ aliasKey?: undefined;
1363
+ })[];
1364
+ classification: {
1365
+ label: string;
1366
+ value: string;
1367
+ }[];
1368
+ };
1369
+ setUploadProps: {
1370
+ key: string;
1371
+ label: string;
1372
+ todoOptions: ({
1373
+ key: string;
1374
+ label: string;
1375
+ type: string;
1376
+ props: {
1377
+ isRequired: boolean;
1378
+ valuePropName: string;
1379
+ };
1380
+ } | {
1381
+ key: string;
1382
+ label: string;
1383
+ type: string;
1384
+ props?: undefined;
1385
+ })[];
1386
+ };
1387
+ setUploadChange: {
1388
+ key: string;
1389
+ label: string;
1390
+ todoOptions: {
1391
+ key: string;
1392
+ label: string;
1393
+ type: string;
1394
+ props: {
1395
+ isRequired: boolean;
1396
+ valuePropName: string;
1397
+ };
1398
+ }[];
1399
+ todoCallbacks: string[];
1400
+ };
1401
+ setTimeout: {
1402
+ key: string;
1403
+ label: string;
1404
+ todoOptions: ({
1405
+ key: string;
1406
+ label: string;
1407
+ type: string;
1408
+ props?: undefined;
1409
+ } | {
1410
+ key: string;
1411
+ label: string;
1412
+ type: string;
1413
+ props: {
1414
+ unit: string;
1415
+ };
1416
+ })[];
1417
+ todoCallbacks: string[];
1418
+ classification: {
1419
+ label: string;
1420
+ value: string;
1421
+ }[];
1422
+ };
1423
+ setInterval: {
1424
+ key: string;
1425
+ label: string;
1426
+ todoOptions: ({
1427
+ key: string;
1428
+ label: string;
1429
+ type: string;
1430
+ props?: undefined;
1431
+ } | {
1432
+ key: string;
1433
+ label: string;
1434
+ type: string;
1435
+ props: {
1436
+ unit: string;
1437
+ };
1438
+ })[];
1439
+ todoCallbacks: string[];
1440
+ };
1441
+ setTimer: {
1442
+ key: string;
1443
+ label: string;
1444
+ todoOptions: ({
1445
+ key: string;
1446
+ aliasKey: string;
1447
+ label: string;
1448
+ type: string;
1449
+ props: {
1450
+ options: {
1451
+ title: string;
1452
+ value: string;
1453
+ }[];
1454
+ unit?: undefined;
1455
+ };
1456
+ } | {
1457
+ key: string;
1458
+ label: string;
1459
+ type: string;
1460
+ aliasKey?: undefined;
1461
+ props?: undefined;
1462
+ } | {
1463
+ key: string;
1464
+ label: string;
1465
+ type: string;
1466
+ props: {
1467
+ unit: string;
1468
+ options?: undefined;
1469
+ };
1470
+ aliasKey?: undefined;
1471
+ })[];
1472
+ todoCallbacks: string[];
1473
+ classification: {
1474
+ label: string;
1475
+ value: string;
1476
+ }[];
1477
+ };
1478
+ clearTimer: {
1479
+ key: string;
1480
+ label: string;
1481
+ todoOptions: {
1482
+ key: string;
1483
+ label: string;
1484
+ type: string;
1485
+ }[];
1486
+ classification: {
1487
+ label: string;
1488
+ value: string;
1489
+ }[];
1490
+ };
1491
+ clearData: {
1492
+ key: string;
1493
+ label: string;
1494
+ };
1495
+ setCompState: {
1496
+ key: string;
1497
+ label: string;
1498
+ todoOptions: {
1499
+ key: string;
1500
+ label: string;
1501
+ type: string;
1502
+ }[];
1503
+ };
1504
+ setStepsCurrentValue: {
1505
+ key: string;
1506
+ label: string;
1507
+ todoOptions: {
1508
+ key: string;
1509
+ aliasKey: string;
1510
+ label: string;
1511
+ type: string;
1512
+ }[];
1513
+ todoCallbacks: string[];
1514
+ };
1515
+ getStepsCurrentValue: {
1516
+ key: string;
1517
+ label: string;
1518
+ todoCallbacks: string[];
1519
+ };
1520
+ refreshLoadMore: {
1521
+ key: string;
1522
+ label: string;
1523
+ todoOptions: {
1524
+ key: string;
1525
+ label: string;
1526
+ type: string;
1527
+ }[];
1528
+ };
1529
+ setDynamicFormValues: {
1530
+ key: string;
1531
+ label: string;
1532
+ todoOptions: {
1533
+ key: string;
1534
+ label: string;
1535
+ type: string;
1536
+ }[];
1537
+ };
1538
+ clearDynamicFormValues: {
1539
+ key: string;
1540
+ label: string;
1541
+ };
1542
+ validateAllAppForm: {
1543
+ key: string;
1544
+ label: string;
1545
+ todoCallbacks: string[];
1546
+ classification: {
1547
+ label: string;
1548
+ value: string;
1549
+ }[];
1550
+ };
1551
+ setCompFileId: {
1552
+ key: string;
1553
+ label: string;
1554
+ todoOptions: {
1555
+ key: string;
1556
+ label: string;
1557
+ type: string;
1558
+ }[];
1559
+ };
1560
+ loadMoreRequest: {
1561
+ key: string;
1562
+ label: string;
1563
+ todoOptions: ({
1564
+ key: string;
1565
+ label: string;
1566
+ type: string;
1567
+ props: {
1568
+ isRequired: boolean;
1569
+ valuePropName: string;
1570
+ };
1571
+ aliasKey?: undefined;
1572
+ } | {
1573
+ key: string;
1574
+ label: string;
1575
+ type: string;
1576
+ props?: undefined;
1577
+ aliasKey?: undefined;
1578
+ } | {
1579
+ key: string;
1580
+ label: string;
1581
+ type: string;
1582
+ aliasKey: string;
1583
+ props?: undefined;
1584
+ })[];
1585
+ todoCallbacks: string[];
1586
+ };
1587
+ loadMoreDataSource: {
1588
+ key: string;
1589
+ label: string;
1590
+ todoOptions: {
1591
+ key: string;
1592
+ aliasKey: string;
1593
+ label: string;
1594
+ type: string;
1595
+ }[];
1596
+ };
1597
+ dFormSubmit: {
1598
+ key: string;
1599
+ label: string;
1600
+ todoCallbacks: string[];
1601
+ };
1602
+ dFormGetFieldsValue: {
1603
+ key: string;
1604
+ label: string;
1605
+ todoCallbacks: string[];
1606
+ };
1607
+ dFormAllDisabled: {
1608
+ key: string;
1609
+ label: string;
1610
+ todoOptions: {
1611
+ key: string;
1612
+ label: string;
1613
+ type: string;
1614
+ props: {
1615
+ options: {
1616
+ title: string;
1617
+ value: boolean;
1618
+ }[];
1619
+ };
1620
+ }[];
1621
+ todoCallbacks: string[];
1622
+ };
1623
+ setCompChildrenValue: {
1624
+ key: string;
1625
+ label: string;
1626
+ todoOptions: {
1627
+ key: string;
1628
+ label: string;
1629
+ type: string;
1630
+ }[];
1631
+ todoCallbacks: string[];
1632
+ };
1633
+ setCompContentValue: {
1634
+ key: string;
1635
+ label: string;
1636
+ todoOptions: {
1637
+ key: string;
1638
+ label: string;
1639
+ type: string;
1640
+ }[];
1641
+ todoCallbacks: string[];
1642
+ };
1643
+ setPageSrc: {
1644
+ key: string;
1645
+ label: string;
1646
+ todoOptions: {
1647
+ key: string;
1648
+ label: string;
1649
+ type: string;
1650
+ }[];
1651
+ };
1652
+ setSrc: {
1653
+ key: string;
1654
+ label: string;
1655
+ todoOptions: {
1656
+ key: string;
1657
+ label: string;
1658
+ type: string;
1659
+ }[];
1660
+ todoCallbacks: string[];
1661
+ };
1662
+ setRangeValue: {
1663
+ key: string;
1664
+ label: string;
1665
+ todoOptions: {
1666
+ key: string;
1667
+ label: string;
1668
+ type: string;
1669
+ props: {
1670
+ placeholder: string;
1671
+ };
1672
+ }[];
1673
+ todoCallbacks: string[];
1674
+ };
1675
+ pushScenePage: {
1676
+ key: string;
1677
+ label: string;
1678
+ todoOptions: {
1679
+ key: string;
1680
+ aliasKey: string;
1681
+ label: string;
1682
+ type: string;
1683
+ }[];
1684
+ classification: {
1685
+ label: string;
1686
+ value: string;
1687
+ }[];
1688
+ };
1689
+ reloadDataSource: {
1690
+ key: string;
1691
+ label: string;
1692
+ todoOptions: ({
1693
+ key: string;
1694
+ label: string;
1695
+ props: {
1696
+ options: {
1697
+ key: string;
1698
+ valueKey: string;
1699
+ };
1700
+ };
1701
+ type: string;
1702
+ } | {
1703
+ key: string;
1704
+ label: string;
1705
+ type: string;
1706
+ props?: undefined;
1707
+ })[];
1708
+ todoCallbacks: string[];
1709
+ classification: {
1710
+ label: string;
1711
+ value: string;
1712
+ }[];
1713
+ };
1714
+ setDataSource: {
1715
+ key: string;
1716
+ label: string;
1717
+ todoOptions: ({
1718
+ key: string;
1719
+ label: string;
1720
+ type: string;
1721
+ props: {
1722
+ options: {
1723
+ key: string;
1724
+ valueKey: string;
1725
+ markableAction: string[];
1726
+ };
1727
+ };
1728
+ } | {
1729
+ key: string;
1730
+ label: string;
1731
+ type: string;
1732
+ props?: undefined;
1733
+ } | {
1734
+ key: string;
1735
+ label: string;
1736
+ type: string;
1737
+ props: {
1738
+ options: {
1739
+ title: string;
1740
+ value: boolean;
1741
+ }[];
1742
+ };
1743
+ })[];
1744
+ todoCallbacks: string[];
1745
+ classification: {
1746
+ label: string;
1747
+ value: string;
1748
+ }[];
1749
+ initClose: boolean;
1750
+ };
1751
+ resetDataSource: {
1752
+ key: string;
1753
+ label: string;
1754
+ todoOptions: {
1755
+ key: string;
1756
+ label: string;
1757
+ type: string;
1758
+ props: {
1759
+ options: {
1760
+ key: string;
1761
+ valueKey: string;
1762
+ markableAction: string[];
1763
+ };
1764
+ };
1765
+ }[];
1766
+ todoCallbacks: string[];
1767
+ classification: {
1768
+ label: string;
1769
+ value: string;
1770
+ }[];
1771
+ };
1772
+ sendMessageIframe: {
1773
+ key: string;
1774
+ label: string;
1775
+ todoOptions: {
1776
+ key: string;
1777
+ label: string;
1778
+ type: string;
1779
+ }[];
1780
+ };
1781
+ postObjectData: {
1782
+ key: string;
1783
+ label: string;
1784
+ todoOptions: ({
1785
+ key: string;
1786
+ label: string;
1787
+ type: string;
1788
+ defaultValue: boolean;
1789
+ props: {
1790
+ options: {
1791
+ title: string;
1792
+ value: boolean;
1793
+ }[];
1794
+ isRequired?: undefined;
1795
+ valuePropName?: undefined;
1796
+ };
1797
+ } | {
1798
+ key: string;
1799
+ label: string;
1800
+ type: string;
1801
+ props: {
1802
+ isRequired: boolean;
1803
+ valuePropName: string;
1804
+ options?: undefined;
1805
+ };
1806
+ defaultValue?: undefined;
1807
+ } | {
1808
+ key: string;
1809
+ label: string;
1810
+ type: string;
1811
+ props: {
1812
+ options: {
1813
+ title: string;
1814
+ value: string;
1815
+ }[];
1816
+ isRequired?: undefined;
1817
+ valuePropName?: undefined;
1818
+ };
1819
+ defaultValue?: undefined;
1820
+ } | {
1821
+ key: string;
1822
+ label: string;
1823
+ type: string;
1824
+ defaultValue?: undefined;
1825
+ props?: undefined;
1826
+ })[];
1827
+ todoCallbacks: string[];
1828
+ classification: {
1829
+ label: string;
1830
+ value: string;
1831
+ }[];
1832
+ };
1833
+ postParentMessage: {
1834
+ key: string;
1835
+ label: string;
1836
+ todoOptions: {
1837
+ key: string;
1838
+ label: string;
1839
+ type: string;
1840
+ }[];
1841
+ classification: {
1842
+ label: string;
1843
+ value: string;
1844
+ }[];
1845
+ };
1846
+ callFuncComp: {
1847
+ key: string;
1848
+ label: string;
1849
+ todoOptions: ({
1850
+ key: string;
1851
+ label: string;
1852
+ type: string;
1853
+ aliasKey?: undefined;
1854
+ } | {
1855
+ key: string;
1856
+ aliasKey: string;
1857
+ label: string;
1858
+ type: string;
1859
+ })[];
1860
+ todoCallbacks: string[];
1861
+ classification: {
1862
+ label: string;
1863
+ value: string;
1864
+ }[];
1865
+ };
1866
+ addEventListenerParentMessage: {
1867
+ key: string;
1868
+ label: string;
1869
+ todoCallbacks: string[];
1870
+ classification: {
1871
+ label: string;
1872
+ value: string;
1873
+ }[];
1874
+ };
1875
+ setRemoteCompProps: {
1876
+ key: string;
1877
+ label: string;
1878
+ todoOptions: {
1879
+ key: string;
1880
+ label: string;
1881
+ type: string;
1882
+ }[];
1883
+ };
1884
+ setSubTabsData: {
1885
+ key: string;
1886
+ label: string;
1887
+ todoOptions: {
1888
+ key: string;
1889
+ aliasKey: string;
1890
+ label: string;
1891
+ type: string;
1892
+ }[];
1893
+ todoCallbacks: string[];
1894
+ };
1895
+ setTabsData: {
1896
+ key: string;
1897
+ label: string;
1898
+ todoOptions: {
1899
+ key: string;
1900
+ aliasKey: string;
1901
+ label: string;
1902
+ type: string;
1903
+ }[];
1904
+ todoCallbacks: string[];
1905
+ };
1906
+ setHref: {
1907
+ key: string;
1908
+ label: string;
1909
+ todoOptions: {
1910
+ key: string;
1911
+ label: string;
1912
+ type: string;
1913
+ }[];
1914
+ };
1915
+ setData: {
1916
+ key: string;
1917
+ label: string;
1918
+ todoOptions: {
1919
+ key: string;
1920
+ label: string;
1921
+ type: string;
1922
+ }[];
1923
+ todoCallbacks: string[];
1924
+ };
1925
+ callFishParentFunc: {
1926
+ key: string;
1927
+ label: string;
1928
+ todoOptions: {
1929
+ key: string;
1930
+ label: string;
1931
+ type: string;
1932
+ }[];
1933
+ todoCallbacks: string[];
1934
+ classification: {
1935
+ label: string;
1936
+ value: string;
1937
+ }[];
1938
+ tips: string;
1939
+ };
1940
+ callSelfFunc: {
1941
+ key: string;
1942
+ label: string;
1943
+ todoOptions: {
1944
+ key: string;
1945
+ label: string;
1946
+ type: string;
1947
+ }[];
1948
+ todoCallbacks: string[];
1949
+ classification: {
1950
+ label: string;
1951
+ value: string;
1952
+ }[];
1953
+ };
1954
+ callParentCustomFunc: {
1955
+ key: string;
1956
+ label: string;
1957
+ todoOptions: {
1958
+ key: string;
1959
+ label: string;
1960
+ type: string;
1961
+ }[];
1962
+ todoCallbacks: string[];
1963
+ classification: {
1964
+ label: string;
1965
+ value: string;
1966
+ }[];
1967
+ };
1968
+ callCustomPageFunc: {
1969
+ key: string;
1970
+ label: string;
1971
+ todoOptions: {
1972
+ key: string;
1973
+ label: string;
1974
+ type: string;
1975
+ }[];
1976
+ todoCallbacks: string[];
1977
+ classification: {
1978
+ label: string;
1979
+ value: string;
1980
+ }[];
1981
+ tips: string;
1982
+ };
1983
+ exportBusiObjectData: {
1984
+ key: string;
1985
+ label: string;
1986
+ todoOptions: ({
1987
+ key: string;
1988
+ label: string;
1989
+ type: string;
1990
+ props: {
1991
+ isRequired: boolean;
1992
+ valuePropName: string;
1993
+ };
1994
+ } | {
1995
+ key: string;
1996
+ label: string;
1997
+ type: string;
1998
+ props?: undefined;
1999
+ })[];
2000
+ todoCallbacks: string[];
2001
+ classification: {
2002
+ label: string;
2003
+ value: string;
2004
+ }[];
2005
+ };
2006
+ exportCustomData: {
2007
+ key: string;
2008
+ label: string;
2009
+ todoOptions: ({
2010
+ key: string;
2011
+ label: string;
2012
+ type: string;
2013
+ props: {
2014
+ isRequired: boolean;
2015
+ valuePropName: string;
2016
+ options?: undefined;
2017
+ };
2018
+ } | {
2019
+ key: string;
2020
+ label: string;
2021
+ type: string;
2022
+ props: {
2023
+ valuePropName: string;
2024
+ isRequired: boolean;
2025
+ options: ({
2026
+ key: string;
2027
+ label: string;
2028
+ type: string;
2029
+ props?: undefined;
2030
+ labelTip?: undefined;
2031
+ } | {
2032
+ key: string;
2033
+ label: string;
2034
+ type: string;
2035
+ props: {
2036
+ isRequired: boolean;
2037
+ valuePropName: string;
2038
+ options: {
2039
+ refreshKey: string[];
2040
+ hideServiceList: string[];
2041
+ serviceTabs: string[];
2042
+ fieldKey?: undefined;
2043
+ customKeyMap?: undefined;
2044
+ };
2045
+ };
2046
+ labelTip?: undefined;
2047
+ } | {
2048
+ key: string;
2049
+ label: string;
2050
+ type: string;
2051
+ props: {
2052
+ isRequired: boolean;
2053
+ options: {
2054
+ fieldKey: string;
2055
+ customKeyMap: {
2056
+ fieldData: string;
2057
+ attrCode: string;
2058
+ attrName: string;
2059
+ };
2060
+ refreshKey?: undefined;
2061
+ hideServiceList?: undefined;
2062
+ serviceTabs?: undefined;
2063
+ };
2064
+ valuePropName?: undefined;
2065
+ };
2066
+ labelTip?: undefined;
2067
+ } | {
2068
+ key: string;
2069
+ type: string;
2070
+ label: string;
2071
+ labelTip: string;
2072
+ props?: undefined;
2073
+ })[];
2074
+ };
2075
+ })[];
2076
+ todoCallbacks: string[];
2077
+ classification: {
2078
+ label: string;
2079
+ value: string;
2080
+ }[];
2081
+ };
2082
+ importBusiObjectData: {
2083
+ key: string;
2084
+ label: string;
2085
+ todoOptions: ({
2086
+ key: string;
2087
+ aliasKey: string;
2088
+ label: string;
2089
+ type: string;
2090
+ props: {
2091
+ placeholder: string;
2092
+ isRequired?: undefined;
2093
+ valuePropName?: undefined;
2094
+ options?: undefined;
2095
+ };
2096
+ } | {
2097
+ key: string;
2098
+ label: string;
2099
+ type: string;
2100
+ props: {
2101
+ isRequired: boolean;
2102
+ valuePropName: string;
2103
+ placeholder?: undefined;
2104
+ options?: undefined;
2105
+ };
2106
+ aliasKey?: undefined;
2107
+ } | {
2108
+ key: string;
2109
+ type: string;
2110
+ label: string;
2111
+ props: {
2112
+ options: {
2113
+ title: string;
2114
+ value: string;
2115
+ }[];
2116
+ placeholder?: undefined;
2117
+ isRequired?: undefined;
2118
+ valuePropName?: undefined;
2119
+ };
2120
+ aliasKey?: undefined;
2121
+ })[];
2122
+ todoCallbacks: string[];
2123
+ classification: {
2124
+ label: string;
2125
+ value: string;
2126
+ }[];
2127
+ };
2128
+ exportSQLServiceData: {
2129
+ key: string;
2130
+ label: string;
2131
+ todoOptions: ({
2132
+ key: string;
2133
+ label: string;
2134
+ type: string;
2135
+ props?: undefined;
2136
+ } | {
2137
+ key: string;
2138
+ label: string;
2139
+ type: string;
2140
+ props: {
2141
+ isRequired: boolean;
2142
+ valuePropName: string;
2143
+ };
2144
+ })[];
2145
+ todoCallbacks: string[];
2146
+ classification: {
2147
+ label: string;
2148
+ value: string;
2149
+ }[];
2150
+ };
2151
+ importCustomBusiObjectData: {
2152
+ key: string;
2153
+ label: string;
2154
+ todoOptions: ({
2155
+ key: string;
2156
+ aliasKey: string;
2157
+ label: string;
2158
+ type: string;
2159
+ props: {
2160
+ placeholder: string;
2161
+ isRequired?: undefined;
2162
+ valuePropName?: undefined;
2163
+ options?: undefined;
2164
+ };
2165
+ defaultValue?: undefined;
2166
+ labelTip?: undefined;
2167
+ } | {
2168
+ key: string;
2169
+ label: string;
2170
+ type: string;
2171
+ props: {
2172
+ isRequired: boolean;
2173
+ valuePropName: string;
2174
+ placeholder?: undefined;
2175
+ options?: undefined;
2176
+ };
2177
+ aliasKey?: undefined;
2178
+ defaultValue?: undefined;
2179
+ labelTip?: undefined;
2180
+ } | {
2181
+ key: string;
2182
+ label: string;
2183
+ type: string;
2184
+ defaultValue: string;
2185
+ props: {
2186
+ options: {
2187
+ title: string;
2188
+ value: string;
2189
+ }[];
2190
+ placeholder?: undefined;
2191
+ isRequired?: undefined;
2192
+ valuePropName?: undefined;
2193
+ };
2194
+ aliasKey?: undefined;
2195
+ labelTip?: undefined;
2196
+ } | {
2197
+ key: string;
2198
+ type: string;
2199
+ label: string;
2200
+ labelTip: string;
2201
+ aliasKey?: undefined;
2202
+ props?: undefined;
2203
+ defaultValue?: undefined;
2204
+ } | {
2205
+ key: string;
2206
+ type: string;
2207
+ label: string;
2208
+ props: {
2209
+ options: {
2210
+ title: string;
2211
+ value: string;
2212
+ }[];
2213
+ placeholder?: undefined;
2214
+ isRequired?: undefined;
2215
+ valuePropName?: undefined;
2216
+ };
2217
+ aliasKey?: undefined;
2218
+ defaultValue?: undefined;
2219
+ labelTip?: undefined;
2220
+ })[];
2221
+ todoCallbacks: string[];
2222
+ classification: {
2223
+ label: string;
2224
+ value: string;
2225
+ }[];
2226
+ };
2227
+ exportCustomBusiObjectData: {
2228
+ key: string;
2229
+ label: string;
2230
+ todoOptions: ({
2231
+ key: string;
2232
+ label: string;
2233
+ type: string;
2234
+ props: {
2235
+ isRequired: boolean;
2236
+ valuePropName: string;
2237
+ };
2238
+ } | {
2239
+ key: string;
2240
+ label: string;
2241
+ type: string;
2242
+ props?: undefined;
2243
+ })[];
2244
+ todoCallbacks: string[];
2245
+ classification: {
2246
+ label: string;
2247
+ value: string;
2248
+ }[];
2249
+ };
2250
+ exportPage: {
2251
+ key: string;
2252
+ label: string;
2253
+ todoOptions: ({
2254
+ key: string;
2255
+ aliasKey: string;
2256
+ label: string;
2257
+ type: string;
2258
+ props: {
2259
+ placeholder: string;
2260
+ options?: undefined;
2261
+ };
2262
+ } | {
2263
+ key: string;
2264
+ aliasKey: string;
2265
+ label: string;
2266
+ type: string;
2267
+ props: {
2268
+ options: {
2269
+ title: string;
2270
+ value: string;
2271
+ }[];
2272
+ placeholder?: undefined;
2273
+ };
2274
+ })[];
2275
+ todoCallbacks: string[];
2276
+ classification: {
2277
+ label: string;
2278
+ value: string;
2279
+ }[];
2280
+ };
2281
+ importCustomData: {
2282
+ key: string;
2283
+ label: string;
2284
+ todoOptions: {
2285
+ key: string;
2286
+ label: string;
2287
+ type: string;
2288
+ }[];
2289
+ todoCallbacks: string[];
2290
+ classification: {
2291
+ label: string;
2292
+ value: string;
2293
+ }[];
2294
+ };
2295
+ previewFile: {
2296
+ key: string;
2297
+ label: string;
2298
+ todoOptions: {
2299
+ key: string;
2300
+ label: string;
2301
+ type: string;
2302
+ }[];
2303
+ classification: {
2304
+ label: string;
2305
+ value: string;
2306
+ }[];
2307
+ };
2308
+ print: {
2309
+ key: string;
2310
+ label: string;
2311
+ todoOptions: {
2312
+ key: string;
2313
+ label: string;
2314
+ type: string;
2315
+ }[];
2316
+ classification: {
2317
+ label: string;
2318
+ value: string;
2319
+ }[];
2320
+ };
2321
+ return: {
2322
+ key: string;
2323
+ label: string;
2324
+ todoOptions: ({
2325
+ key: string;
2326
+ label: string;
2327
+ type: string;
2328
+ labelTip: string;
2329
+ props: {
2330
+ options: {
2331
+ title: string;
2332
+ value: string;
2333
+ }[];
2334
+ };
2335
+ } | {
2336
+ key: string;
2337
+ label: string;
2338
+ type: string;
2339
+ labelTip?: undefined;
2340
+ props?: undefined;
2341
+ })[];
2342
+ classification: {
2343
+ label: string;
2344
+ value: string;
2345
+ }[];
2346
+ };
2347
+ copyToClipboard: {
2348
+ key: string;
2349
+ label: string;
2350
+ todoOptions: {
2351
+ key: string;
2352
+ label: string;
2353
+ type: string;
2354
+ }[];
2355
+ };
2356
+ getBlockSelectValues: {
2357
+ key: string;
2358
+ label: string;
2359
+ todoCallbacks: string[];
2360
+ };
2361
+ setBlockSelectData: {
2362
+ key: string;
2363
+ label: string;
2364
+ todoOptions: {
2365
+ key: string;
2366
+ label: string;
2367
+ type: string;
2368
+ }[];
2369
+ todoCallbacks: string[];
2370
+ };
2371
+ setBlockSelectSelectedData: {
2372
+ key: string;
2373
+ label: string;
2374
+ todoOptions: ({
2375
+ key: string;
2376
+ aliasKey: string;
2377
+ label: string;
2378
+ type: string;
2379
+ defaultValue: string;
2380
+ props: {
2381
+ options: {
2382
+ title: string;
2383
+ value: string;
2384
+ }[];
2385
+ };
2386
+ } | {
2387
+ key: string;
2388
+ label: string;
2389
+ type: string;
2390
+ aliasKey?: undefined;
2391
+ defaultValue?: undefined;
2392
+ props?: undefined;
2393
+ })[];
2394
+ todoCallbacks: string[];
2395
+ };
2396
+ setBlockSelectHiddenData: {
2397
+ key: string;
2398
+ label: string;
2399
+ todoOptions: ({
2400
+ key: string;
2401
+ label: string;
2402
+ type: string;
2403
+ defaultValue: string;
2404
+ props: {
2405
+ options: {
2406
+ title: string;
2407
+ value: string;
2408
+ }[];
2409
+ };
2410
+ aliasKey?: undefined;
2411
+ } | {
2412
+ key: string;
2413
+ aliasKey: string;
2414
+ label: string;
2415
+ type: string;
2416
+ defaultValue: string;
2417
+ props: {
2418
+ options: {
2419
+ title: string;
2420
+ value: string;
2421
+ }[];
2422
+ };
2423
+ } | {
2424
+ key: string;
2425
+ label: string;
2426
+ type: string;
2427
+ defaultValue?: undefined;
2428
+ props?: undefined;
2429
+ aliasKey?: undefined;
2430
+ })[];
2431
+ todoCallbacks: string[];
2432
+ };
2433
+ setBlockSelectStateData: {
2434
+ key: string;
2435
+ label: string;
2436
+ todoOptions: ({
2437
+ key: string;
2438
+ label: string;
2439
+ type: string;
2440
+ defaultValue: string;
2441
+ props: {
2442
+ options: {
2443
+ title: string;
2444
+ value: string;
2445
+ }[];
2446
+ };
2447
+ aliasKey?: undefined;
2448
+ } | {
2449
+ key: string;
2450
+ aliasKey: string;
2451
+ label: string;
2452
+ type: string;
2453
+ defaultValue: string;
2454
+ props: {
2455
+ options: {
2456
+ title: string;
2457
+ value: string;
2458
+ }[];
2459
+ };
2460
+ } | {
2461
+ key: string;
2462
+ label: string;
2463
+ type: string;
2464
+ defaultValue?: undefined;
2465
+ props?: undefined;
2466
+ aliasKey?: undefined;
2467
+ })[];
2468
+ todoCallbacks: string[];
2469
+ };
2470
+ accountDivide: {
2471
+ key: string;
2472
+ label: string;
2473
+ todoOptions: ({
2474
+ key: string;
2475
+ label: string;
2476
+ type: string;
2477
+ props?: undefined;
2478
+ } | {
2479
+ key: string;
2480
+ label: string;
2481
+ type: string;
2482
+ props: {
2483
+ options: {
2484
+ title: string;
2485
+ value: string;
2486
+ }[];
2487
+ };
2488
+ })[];
2489
+ todoCallbacks: string[];
2490
+ classification: {
2491
+ label: string;
2492
+ value: string;
2493
+ }[];
2494
+ };
2495
+ reloadGanttData: {
2496
+ key: string;
2497
+ label: string;
2498
+ todoOptions: {
2499
+ key: string;
2500
+ aliasKey: string;
2501
+ label: string;
2502
+ type: string;
2503
+ }[];
2504
+ };
2505
+ value: {
2506
+ key: string;
2507
+ label: string;
2508
+ todoCallbacks: string[];
2509
+ };
2510
+ clearMobileValue: {
2511
+ key: string;
2512
+ label: string;
2513
+ };
2514
+ setMobileValue: {
2515
+ key: string;
2516
+ label: string;
2517
+ todoOptions: ({
2518
+ key: string;
2519
+ aliasKey: string;
2520
+ label: string;
2521
+ type: string;
2522
+ } | {
2523
+ key: string;
2524
+ label: string;
2525
+ type: string;
2526
+ aliasKey?: undefined;
2527
+ })[];
2528
+ todoCallbacks: string[];
2529
+ initClose: boolean;
2530
+ };
2531
+ setMobileFormDisabled: {
2532
+ key: string;
2533
+ label: string;
2534
+ todoCallbacks: string[];
2535
+ };
2536
+ setMobileFormEditor: {
2537
+ key: string;
2538
+ label: string;
2539
+ todoCallbacks: string[];
2540
+ };
2541
+ setEditor: {
2542
+ key: string;
2543
+ label: string;
2544
+ todoCallbacks: string[];
2545
+ };
2546
+ setMobileFormVisible: {
2547
+ key: string;
2548
+ label: string;
2549
+ todoOptions: {
2550
+ key: string;
2551
+ label: string;
2552
+ type: string;
2553
+ defaultValue: string;
2554
+ props: {
2555
+ options: {
2556
+ title: string;
2557
+ value: string;
2558
+ }[];
2559
+ };
2560
+ }[];
2561
+ todoCallbacks: string[];
2562
+ };
2563
+ setFormItemDataSource: {
2564
+ key: string;
2565
+ label: string;
2566
+ todoOptions: {
2567
+ key: string;
2568
+ aliasKey: string;
2569
+ label: string;
2570
+ type: string;
2571
+ }[];
2572
+ todoCallbacks: string[];
2573
+ };
2574
+ getFormItemValue: {
2575
+ key: string;
2576
+ label: string;
2577
+ todoCallbacks: string[];
2578
+ };
2579
+ addDebugger: {
2580
+ key: string;
2581
+ label: string;
2582
+ classification: {
2583
+ label: string;
2584
+ value: string;
2585
+ }[];
2586
+ };
2587
+ reload: {
2588
+ key: string;
2589
+ label: string;
2590
+ classification: {
2591
+ label: string;
2592
+ value: string;
2593
+ }[];
2594
+ };
2595
+ switchAppTabs: {
2596
+ key: string;
2597
+ label: string;
2598
+ todoOptions: {
2599
+ key: string;
2600
+ label: string;
2601
+ type: string;
2602
+ }[];
2603
+ todoCallbacks: string[];
2604
+ };
2605
+ changeContent: {
2606
+ key: string;
2607
+ label: string;
2608
+ todoOptions: {
2609
+ key: string;
2610
+ label: string;
2611
+ type: string;
2612
+ props: {
2613
+ placeholder: string;
2614
+ };
2615
+ }[];
2616
+ };
2617
+ getDformStatus: {
2618
+ key: string;
2619
+ label: string;
2620
+ todoCallbacks: string[];
2621
+ };
2622
+ customActionCode: {
2623
+ key: string;
2624
+ label: string;
2625
+ todoOptions: ({
2626
+ key: string;
2627
+ label: string;
2628
+ type: string;
2629
+ props: {
2630
+ placeholder: string;
2631
+ maxLength: number;
2632
+ };
2633
+ } | {
2634
+ key: string;
2635
+ label: string;
2636
+ type: string;
2637
+ props?: undefined;
2638
+ })[];
2639
+ todoCallbacks: string[];
2640
+ classification: {
2641
+ label: string;
2642
+ value: string;
2643
+ }[];
2644
+ tips: string;
2645
+ };
2646
+ getItemFromLocalStorage: {
2647
+ key: string;
2648
+ label: string;
2649
+ todoOptions: {
2650
+ key: string;
2651
+ aliasKey: string;
2652
+ label: string;
2653
+ type: string;
2654
+ }[];
2655
+ todoCallbacks: string[];
2656
+ classification: {
2657
+ label: string;
2658
+ value: string;
2659
+ }[];
2660
+ };
2661
+ setItemToLocalStorage: {
2662
+ key: string;
2663
+ label: string;
2664
+ todoOptions: ({
2665
+ key: string;
2666
+ aliasKey: string;
2667
+ label: string;
2668
+ type: string;
2669
+ props: {
2670
+ required: boolean;
2671
+ placeholder: string;
2672
+ };
2673
+ } | {
2674
+ key: string;
2675
+ label: string;
2676
+ type: string;
2677
+ aliasKey?: undefined;
2678
+ props?: undefined;
2679
+ })[];
2680
+ classification: {
2681
+ label: string;
2682
+ value: string;
2683
+ }[];
2684
+ };
2685
+ prev: {
2686
+ key: string;
2687
+ label: string;
2688
+ };
2689
+ next: {
2690
+ key: string;
2691
+ label: string;
2692
+ };
2693
+ goTo: {
2694
+ key: string;
2695
+ label: string;
2696
+ todoOptions: {
2697
+ key: string;
2698
+ label: string;
2699
+ type: string;
2700
+ }[];
2701
+ };
2702
+ getLocalLocation: {
2703
+ key: string;
2704
+ label: string;
2705
+ todoOptions: ({
2706
+ key: string;
2707
+ label: string;
2708
+ type: string;
2709
+ props: {
2710
+ placeholder: string;
2711
+ valuePropName: string;
2712
+ isRequired: boolean;
2713
+ defaultValue?: undefined;
2714
+ options?: undefined;
2715
+ };
2716
+ defaultValue?: undefined;
2717
+ } | {
2718
+ key: string;
2719
+ label: string;
2720
+ type: string;
2721
+ props: {
2722
+ defaultValue: boolean;
2723
+ placeholder?: undefined;
2724
+ valuePropName?: undefined;
2725
+ isRequired?: undefined;
2726
+ options?: undefined;
2727
+ };
2728
+ defaultValue?: undefined;
2729
+ } | {
2730
+ key: string;
2731
+ label: string;
2732
+ type: string;
2733
+ defaultValue: string;
2734
+ props: {
2735
+ options: {
2736
+ title: string;
2737
+ value: string;
2738
+ }[];
2739
+ placeholder?: undefined;
2740
+ valuePropName?: undefined;
2741
+ isRequired?: undefined;
2742
+ defaultValue?: undefined;
2743
+ };
2744
+ } | {
2745
+ key: string;
2746
+ label: string;
2747
+ defaultValue: boolean;
2748
+ type: string;
2749
+ props?: undefined;
2750
+ })[];
2751
+ todoCallbacks: string[];
2752
+ classification: {
2753
+ label: string;
2754
+ value: string;
2755
+ }[];
2756
+ };
2757
+ validateTableData: {
2758
+ key: string;
2759
+ label: string;
2760
+ todoCallbacks: string[];
2761
+ };
2762
+ validateTableRowData: {
2763
+ key: string;
2764
+ label: string;
2765
+ todoCallbacks: string[];
2766
+ };
2767
+ reloadAppTableData: {
2768
+ key: string;
2769
+ label: string;
2770
+ todoOptions: {
2771
+ key: string;
2772
+ label: string;
2773
+ type: string;
2774
+ }[];
2775
+ todoCallbacks: never[];
2776
+ };
2777
+ getAppTableData: {
2778
+ key: string;
2779
+ label: string;
2780
+ todoCallbacks: string[];
2781
+ };
2782
+ startVerificationCodeCountdown: {
2783
+ key: string;
2784
+ label: string;
2785
+ todoCallbacks: string[];
2786
+ };
2787
+ resetVerificationCodeCountdown: {
2788
+ key: string;
2789
+ label: string;
2790
+ todoCallbacks: string[];
2791
+ };
2792
+ setVerificationCodeImageUrl: {
2793
+ key: string;
2794
+ label: string;
2795
+ todoOptions: {
2796
+ key: string;
2797
+ label: string;
2798
+ type: string;
2799
+ }[];
2800
+ todoCallbacks: string[];
2801
+ };
2802
+ removeTransferKeys: {
2803
+ key: string;
2804
+ label: string;
2805
+ todoOptions: {
2806
+ key: string;
2807
+ aliasKey: string;
2808
+ label: string;
2809
+ type: string;
2810
+ props: {
2811
+ placeholder: string;
2812
+ };
2813
+ }[];
2814
+ todoCallbacks: string[];
2815
+ };
2816
+ addTransferKeys: {
2817
+ key: string;
2818
+ label: string;
2819
+ todoOptions: {
2820
+ key: string;
2821
+ aliasKey: string;
2822
+ label: string;
2823
+ type: string;
2824
+ props: {
2825
+ placeholder: string;
2826
+ };
2827
+ }[];
2828
+ todoCallbacks: string[];
2829
+ };
2830
+ setTransferLeftTitle: {
2831
+ key: string;
2832
+ label: string;
2833
+ todoOptions: {
2834
+ key: string;
2835
+ label: string;
2836
+ type: string;
2837
+ }[];
2838
+ todoCallbacks: string[];
2839
+ };
2840
+ setTransferRightTitle: {
2841
+ key: string;
2842
+ label: string;
2843
+ todoOptions: {
2844
+ key: string;
2845
+ label: string;
2846
+ type: string;
2847
+ }[];
2848
+ todoCallbacks: string[];
2849
+ };
2850
+ loadLineChartData: {
2851
+ key: string;
2852
+ label: string;
2853
+ todoOptions: {
2854
+ key: string;
2855
+ label: string;
2856
+ type: string;
2857
+ }[];
2858
+ };
2859
+ loadSingleProgressData: {
2860
+ key: string;
2861
+ label: string;
2862
+ todoOptions: {
2863
+ key: string;
2864
+ label: string;
2865
+ type: string;
2866
+ }[];
2867
+ };
2868
+ loadDonutChartData: {
2869
+ key: string;
2870
+ label: string;
2871
+ todoOptions: {
2872
+ key: string;
2873
+ label: string;
2874
+ type: string;
2875
+ }[];
2876
+ };
2877
+ loadMultipleProgressData: {
2878
+ key: string;
2879
+ label: string;
2880
+ todoOptions: {
2881
+ key: string;
2882
+ label: string;
2883
+ type: string;
2884
+ props: {
2885
+ placeholder: string;
2886
+ };
2887
+ }[];
2888
+ };
2889
+ loadGroupColumnData: {
2890
+ key: string;
2891
+ label: string;
2892
+ todoOptions: ({
2893
+ key: string;
2894
+ label: string;
2895
+ type: string;
2896
+ props?: undefined;
2897
+ } | {
2898
+ key: string;
2899
+ label: string;
2900
+ type: string;
2901
+ props: {
2902
+ placeholder: string;
2903
+ };
2904
+ })[];
2905
+ };
2906
+ loadSmallColumnarData: {
2907
+ key: string;
2908
+ label: string;
2909
+ todoOptions: ({
2910
+ key: string;
2911
+ label: string;
2912
+ type: string;
2913
+ props?: undefined;
2914
+ } | {
2915
+ key: string;
2916
+ label: string;
2917
+ type: string;
2918
+ props: {
2919
+ placeholder: string;
2920
+ };
2921
+ })[];
2922
+ };
2923
+ loadStackColumnData: {
2924
+ key: string;
2925
+ label: string;
2926
+ todoOptions: ({
2927
+ key: string;
2928
+ label: string;
2929
+ type: string;
2930
+ props?: undefined;
2931
+ } | {
2932
+ key: string;
2933
+ label: string;
2934
+ type: string;
2935
+ props: {
2936
+ placeholder: string;
2937
+ };
2938
+ })[];
2939
+ };
2940
+ setMenuOpenKey: {
2941
+ key: string;
2942
+ label: string;
2943
+ todoOptions: {
2944
+ key: string;
2945
+ label: string;
2946
+ type: string;
2947
+ }[];
2948
+ };
2949
+ clearMenuOpenKey: {
2950
+ key: string;
2951
+ label: string;
2952
+ };
2953
+ setInlineCollapsed: {
2954
+ key: string;
2955
+ label: string;
2956
+ todoOptions: {
2957
+ key: string;
2958
+ label: string;
2959
+ type: string;
2960
+ props: {
2961
+ options: {
2962
+ title: string;
2963
+ value: string;
2964
+ }[];
2965
+ };
2966
+ }[];
2967
+ };
2968
+ reloadTransferData: {
2969
+ key: string;
2970
+ label: string;
2971
+ todoOptions: {
2972
+ key: string;
2973
+ label: string;
2974
+ type: string;
2975
+ aliasKey: string;
2976
+ }[];
2977
+ todoCallbacks: string[];
2978
+ };
2979
+ getLoopListValues: {
2980
+ key: string;
2981
+ label: string;
2982
+ todoCallbacks: string[];
2983
+ };
2984
+ setSelectAllValues: {
2985
+ key: string;
2986
+ label: string;
2987
+ todoCallbacks: string[];
2988
+ };
2989
+ setExpandedKey: {
2990
+ key: string;
2991
+ label: string;
2992
+ todoOptions: {
2993
+ key: string;
2994
+ label: string;
2995
+ type: string;
2996
+ }[];
2997
+ };
2998
+ closeExpandedKey: {
2999
+ key: string;
3000
+ label: string;
3001
+ todoOptions: {
3002
+ key: string;
3003
+ label: string;
3004
+ type: string;
3005
+ }[];
3006
+ };
3007
+ reloadSelectorData: {
3008
+ key: string;
3009
+ label: string;
3010
+ todoOptions: {
3011
+ key: string;
3012
+ aliasKey: string;
3013
+ label: string;
3014
+ type: string;
3015
+ }[];
3016
+ todoCallbacks: string[];
3017
+ };
3018
+ setSelectorDisabelItems: {
3019
+ key: string;
3020
+ label: string;
3021
+ todoOptions: {
3022
+ key: string;
3023
+ aliasKey: string;
3024
+ label: string;
3025
+ type: string;
3026
+ }[];
3027
+ todoCallbacks: string[];
3028
+ };
3029
+ swipeNext: {
3030
+ key: string;
3031
+ label: string;
3032
+ todoCallbacks: string[];
3033
+ };
3034
+ swipePrev: {
3035
+ key: string;
3036
+ label: string;
3037
+ todoCallbacks: string[];
3038
+ };
3039
+ swipeTo: {
3040
+ key: string;
3041
+ label: string;
3042
+ todoOptions: {
3043
+ key: string;
3044
+ label: string;
3045
+ type: string;
3046
+ }[];
3047
+ todoCallbacks: string[];
3048
+ };
3049
+ refreshPictureVerifyCode: {
3050
+ key: string;
3051
+ label: string;
3052
+ todoCallbacks: string[];
3053
+ };
3054
+ mediaControl: {
3055
+ key: string;
3056
+ label: string;
3057
+ todoOptions: {
3058
+ key: string;
3059
+ label: string;
3060
+ type: string;
3061
+ defaultValue: string;
3062
+ props: {
3063
+ options: {
3064
+ title: string;
3065
+ value: string;
3066
+ }[];
3067
+ };
3068
+ }[];
3069
+ };
3070
+ };
3071
+ /**
3072
+ * 通过数组key获取对应的动作
3073
+ * @param keys
3074
+ * @returns
3075
+ */
3076
+ export declare const getTodoActionListByKey: (keys: string[]) => any[];
3077
+ /**
3078
+ * 获取系统级别的动作列表
3079
+ * @returns
3080
+ */
3081
+ export declare const getSystemTodoActionList: (terminal: 'pc' | 'mobile') => any[];
3082
+ export default todoActionObject;