@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,1466 @@
1
+ /**
2
+ * @description: 动作的配置项信息
3
+ * key:配置项的key, 用于dot模板取值
4
+ * label:配置项名称
5
+ * type:配置项交互类型
6
+ * options:配置项数据源
7
+ * visibleFlag:是否显示标志,有值时,则需判断该标志位是否为visibleFlagValue的值,true时才展示
8
+ * visibleFlagValue:用于visibleFlag的判断显示,为hasValue时,表示判断visibleFlag有值即可
9
+ * isRequired:是否必填, 可参照:selectObjectDataSource 配置
10
+ * labelTip:配置项提示语
11
+ * valuePropName:必填时需配置项的取值属性名称。可参照:selectObjectDataSource 配置,因为有些配置项的取值属性名(对应动作节点的 options[valuePropName])与这里的 key 不一致,需要自己指定
12
+ */
13
+ declare const todoOptionList: {
14
+ url: {
15
+ key: string;
16
+ label: string;
17
+ type: string;
18
+ props: {
19
+ isRequired: boolean;
20
+ valuePropName: string;
21
+ };
22
+ };
23
+ sqlServiceCode: {
24
+ key: string;
25
+ label: string;
26
+ type: string;
27
+ };
28
+ sqlServiceFields: {
29
+ key: string;
30
+ label: string;
31
+ type: string;
32
+ };
33
+ target: {
34
+ key: string;
35
+ label: string;
36
+ type: string;
37
+ };
38
+ arelStaticData: {
39
+ key: string;
40
+ label: string;
41
+ type: string;
42
+ props: {
43
+ options: {
44
+ noCustom: boolean;
45
+ };
46
+ };
47
+ };
48
+ zrelStaticData: {
49
+ key: string;
50
+ label: string;
51
+ type: string;
52
+ props: {
53
+ options: {
54
+ noCustom: boolean;
55
+ };
56
+ };
57
+ };
58
+ staticData: {
59
+ key: string;
60
+ label: string;
61
+ type: string;
62
+ };
63
+ custTargetVal: {
64
+ key: string;
65
+ label: string;
66
+ type: string;
67
+ };
68
+ visible: {
69
+ key: string;
70
+ label: string;
71
+ type: string;
72
+ defaultValue: string;
73
+ props: {
74
+ options: {
75
+ title: string;
76
+ value: string;
77
+ }[];
78
+ };
79
+ };
80
+ readonly: {
81
+ key: string;
82
+ label: string;
83
+ type: string;
84
+ defaultValue: string;
85
+ props: {
86
+ options: {
87
+ title: string;
88
+ value: string;
89
+ }[];
90
+ };
91
+ };
92
+ bsSelectType: {
93
+ key: string;
94
+ label: string;
95
+ type: string;
96
+ defaultValue: string;
97
+ props: {
98
+ options: {
99
+ title: string;
100
+ value: string;
101
+ }[];
102
+ };
103
+ };
104
+ editor: {
105
+ key: string;
106
+ label: string;
107
+ type: string;
108
+ props: {
109
+ options: {
110
+ title: string;
111
+ value: boolean;
112
+ }[];
113
+ };
114
+ };
115
+ value: {
116
+ key: string;
117
+ label: string;
118
+ type: string;
119
+ };
120
+ valueArray: {
121
+ key: string;
122
+ label: string;
123
+ type: string;
124
+ };
125
+ startVal: {
126
+ key: string;
127
+ label: string;
128
+ type: string;
129
+ props: {
130
+ placeholder: string;
131
+ };
132
+ };
133
+ endVal: {
134
+ key: string;
135
+ label: string;
136
+ type: string;
137
+ props: {
138
+ placeholder: string;
139
+ };
140
+ };
141
+ loading: {
142
+ key: string;
143
+ label: string;
144
+ type: string;
145
+ props: {
146
+ options: {
147
+ title: string;
148
+ value: boolean;
149
+ }[];
150
+ };
151
+ };
152
+ msgType: {
153
+ key: string;
154
+ label: string;
155
+ type: string;
156
+ defaultValue: string;
157
+ props: {
158
+ options: ({
159
+ title: string;
160
+ value: string;
161
+ terminal?: undefined;
162
+ } | {
163
+ title: string;
164
+ value: string;
165
+ terminal: string[];
166
+ })[];
167
+ };
168
+ };
169
+ duration: {
170
+ key: string;
171
+ label: string;
172
+ type: string;
173
+ props: {
174
+ unit: string;
175
+ };
176
+ };
177
+ swiperIndex: {
178
+ key: string;
179
+ label: string;
180
+ type: string;
181
+ };
182
+ validateType: {
183
+ key: string;
184
+ label: string;
185
+ type: string;
186
+ defaultValue: string;
187
+ props: {
188
+ options: {
189
+ title: string;
190
+ value: string;
191
+ }[];
192
+ };
193
+ };
194
+ validateMsg: {
195
+ key: string;
196
+ label: string;
197
+ type: string;
198
+ props: {
199
+ placeholder: string;
200
+ };
201
+ };
202
+ expType: {
203
+ key: string;
204
+ label: string;
205
+ type: string;
206
+ props: {
207
+ options: {
208
+ title: string;
209
+ value: string;
210
+ }[];
211
+ };
212
+ };
213
+ expFileName: {
214
+ key: string;
215
+ label: string;
216
+ type: string;
217
+ props: {
218
+ placeholder: string;
219
+ };
220
+ };
221
+ modalType: {
222
+ key: string;
223
+ label: string;
224
+ type: string;
225
+ props: {
226
+ options: {
227
+ title: string;
228
+ value: string;
229
+ }[];
230
+ };
231
+ };
232
+ okText: {
233
+ key: string;
234
+ label: string;
235
+ type: string;
236
+ };
237
+ cancelText: {
238
+ key: string;
239
+ label: string;
240
+ type: string;
241
+ visibleFlag: string;
242
+ visibleFlagValue: string[];
243
+ };
244
+ historyType: {
245
+ key: string;
246
+ label: string;
247
+ type: string;
248
+ props: {
249
+ options: {
250
+ title: string;
251
+ value: string;
252
+ }[];
253
+ };
254
+ };
255
+ timerType: {
256
+ key: string;
257
+ label: string;
258
+ type: string;
259
+ props: {
260
+ options: {
261
+ title: string;
262
+ value: string;
263
+ }[];
264
+ };
265
+ };
266
+ title: {
267
+ key: string;
268
+ label: string;
269
+ type: string;
270
+ };
271
+ content: {
272
+ key: string;
273
+ label: string;
274
+ type: string;
275
+ };
276
+ params: {
277
+ key: string;
278
+ label: string;
279
+ type: string;
280
+ };
281
+ setParams: {
282
+ key: string;
283
+ label: string;
284
+ type: string;
285
+ };
286
+ actionType: {
287
+ key: string;
288
+ label: string;
289
+ type: string;
290
+ props: {
291
+ placeholder: string;
292
+ };
293
+ };
294
+ tripleFormId: {
295
+ key: string;
296
+ label: string;
297
+ type: string;
298
+ };
299
+ dataSource: {
300
+ key: string;
301
+ label: string;
302
+ type: string;
303
+ };
304
+ parentKey: {
305
+ key: string;
306
+ label: string;
307
+ type: string;
308
+ };
309
+ dataSourceFileId: {
310
+ key: string;
311
+ label: string;
312
+ type: string;
313
+ labelTip: string;
314
+ };
315
+ labelKey: {
316
+ key: string;
317
+ label: string;
318
+ type: string;
319
+ };
320
+ nodeValueKey: {
321
+ key: string;
322
+ label: string;
323
+ type: string;
324
+ };
325
+ urlValueKey: {
326
+ key: string;
327
+ label: string;
328
+ type: string;
329
+ };
330
+ selectable: {
331
+ key: string;
332
+ label: string;
333
+ type: string;
334
+ labelTip: string;
335
+ };
336
+ childrenKey: {
337
+ key: string;
338
+ label: string;
339
+ type: string;
340
+ labelTip: string;
341
+ };
342
+ selectValueKey: {
343
+ key: string;
344
+ label: string;
345
+ type: string;
346
+ };
347
+ selectLabelKey: {
348
+ key: string;
349
+ label: string;
350
+ type: string;
351
+ };
352
+ selectValueKeyForRC: {
353
+ key: string;
354
+ label: string;
355
+ type: string;
356
+ };
357
+ selectLabelKeyForRC: {
358
+ key: string;
359
+ label: string;
360
+ type: string;
361
+ };
362
+ total: {
363
+ key: string;
364
+ label: string;
365
+ type: string;
366
+ };
367
+ curPage: {
368
+ key: string;
369
+ label: string;
370
+ type: string;
371
+ };
372
+ pathname: {
373
+ key: string;
374
+ label: string;
375
+ type: string;
376
+ };
377
+ dropPathname: {
378
+ key: string;
379
+ label: string;
380
+ type: string;
381
+ };
382
+ searchParams: {
383
+ key: string;
384
+ label: string;
385
+ type: string;
386
+ };
387
+ routerData: {
388
+ key: string;
389
+ label: string;
390
+ type: string;
391
+ };
392
+ modalname: {
393
+ key: string;
394
+ label: string;
395
+ type: string;
396
+ };
397
+ drawerPath: {
398
+ key: string;
399
+ label: string;
400
+ type: string;
401
+ };
402
+ compState: {
403
+ key: string;
404
+ label: string;
405
+ type: string;
406
+ };
407
+ activeTabKey: {
408
+ key: string;
409
+ label: string;
410
+ type: string;
411
+ };
412
+ downloadUrl: {
413
+ key: string;
414
+ label: string;
415
+ type: string;
416
+ };
417
+ uploadProps: {
418
+ key: string;
419
+ label: string;
420
+ type: string;
421
+ };
422
+ inlineeditnow: {
423
+ key: string;
424
+ label: string;
425
+ type: string;
426
+ props: {
427
+ options: {
428
+ title: string;
429
+ value: boolean;
430
+ }[];
431
+ };
432
+ };
433
+ disabled: {
434
+ key: string;
435
+ label: string;
436
+ type: string;
437
+ defaultValue: string;
438
+ props: {
439
+ options: {
440
+ title: string;
441
+ value: string;
442
+ }[];
443
+ };
444
+ };
445
+ required: {
446
+ key: string;
447
+ label: string;
448
+ type: string;
449
+ defaultValue: string;
450
+ props: {
451
+ options: {
452
+ title: string;
453
+ value: string;
454
+ }[];
455
+ };
456
+ };
457
+ colName: {
458
+ key: string;
459
+ label: string;
460
+ type: string;
461
+ };
462
+ colNameForEdit: {
463
+ key: string;
464
+ label: string;
465
+ type: string;
466
+ };
467
+ nodeKey: {
468
+ key: string;
469
+ label: string;
470
+ type: string;
471
+ };
472
+ valueKey: {
473
+ key: string;
474
+ label: string;
475
+ type: string;
476
+ };
477
+ titleKey: {
478
+ key: string;
479
+ label: string;
480
+ type: string;
481
+ };
482
+ stateName: {
483
+ key: string;
484
+ label: string;
485
+ type: string;
486
+ };
487
+ inlineeditrow: {
488
+ key: string;
489
+ label: string;
490
+ type: string;
491
+ };
492
+ stateval: {
493
+ key: string;
494
+ label: string;
495
+ type: string;
496
+ };
497
+ timername: {
498
+ key: string;
499
+ label: string;
500
+ type: string;
501
+ };
502
+ interval: {
503
+ key: string;
504
+ label: string;
505
+ type: string;
506
+ props: {
507
+ unit: string;
508
+ };
509
+ };
510
+ targettimer: {
511
+ key: string;
512
+ label: string;
513
+ type: string;
514
+ };
515
+ customCallback: {
516
+ key: string;
517
+ label: string;
518
+ type: string;
519
+ };
520
+ stepsCurrent: {
521
+ key: string;
522
+ label: string;
523
+ type: string;
524
+ };
525
+ compId: {
526
+ key: string;
527
+ label: string;
528
+ type: string;
529
+ };
530
+ selectComp: {
531
+ key: string;
532
+ label: string;
533
+ type: string;
534
+ };
535
+ fileName: {
536
+ key: string;
537
+ label: string;
538
+ type: string;
539
+ labelTip: string;
540
+ props: {
541
+ placeholder: string;
542
+ };
543
+ };
544
+ loadmoreKey: {
545
+ key: string;
546
+ label: string;
547
+ type: string;
548
+ };
549
+ wechatappId: {
550
+ key: string;
551
+ label: string;
552
+ type: string;
553
+ props: {
554
+ placeholder: string;
555
+ };
556
+ };
557
+ jsonId: {
558
+ key: string;
559
+ label: string;
560
+ type: string;
561
+ };
562
+ fileId: {
563
+ key: string;
564
+ label: string;
565
+ type: string;
566
+ };
567
+ loadMoreTotal: {
568
+ key: string;
569
+ label: string;
570
+ type: string;
571
+ };
572
+ loadMoreData: {
573
+ key: string;
574
+ label: string;
575
+ type: string;
576
+ };
577
+ aliasPageNum: {
578
+ key: string;
579
+ label: string;
580
+ type: string;
581
+ };
582
+ jsBridgeMethod: {
583
+ key: string;
584
+ label: string;
585
+ type: string;
586
+ props: {
587
+ placeholder: string;
588
+ };
589
+ };
590
+ androidWebName: {
591
+ key: string;
592
+ label: string;
593
+ type: string;
594
+ props: {
595
+ placeholder: string;
596
+ };
597
+ };
598
+ androidSuccessFunName: {
599
+ key: string;
600
+ label: string;
601
+ type: string;
602
+ props: {
603
+ placeholder: string;
604
+ };
605
+ };
606
+ iOSSuccessFunName: {
607
+ key: string;
608
+ label: string;
609
+ type: string;
610
+ props: {
611
+ placeholder: string;
612
+ };
613
+ };
614
+ androidFailFunName: {
615
+ key: string;
616
+ label: string;
617
+ type: string;
618
+ props: {
619
+ placeholder: string;
620
+ };
621
+ };
622
+ iOSFailFunName: {
623
+ key: string;
624
+ label: string;
625
+ type: string;
626
+ props: {
627
+ placeholder: string;
628
+ };
629
+ };
630
+ customParams: {
631
+ key: string;
632
+ label: string;
633
+ type: string;
634
+ };
635
+ selectScene: {
636
+ key: string;
637
+ label: string;
638
+ type: string;
639
+ };
640
+ flowUrl: {
641
+ key: string;
642
+ label: string;
643
+ type: string;
644
+ };
645
+ flowType: {
646
+ key: string;
647
+ label: string;
648
+ type: string;
649
+ props: {
650
+ options: {
651
+ title: string;
652
+ value: string;
653
+ }[];
654
+ };
655
+ };
656
+ flowWorkOrderId: {
657
+ key: string;
658
+ label: string;
659
+ type: string;
660
+ };
661
+ flowCode: {
662
+ key: string;
663
+ label: string;
664
+ type: string;
665
+ };
666
+ workOrderType: {
667
+ key: string;
668
+ label: string;
669
+ type: string;
670
+ };
671
+ flowAuditDesc: {
672
+ key: string;
673
+ label: string;
674
+ type: string;
675
+ };
676
+ flowFileId: {
677
+ key: string;
678
+ label: string;
679
+ type: string;
680
+ };
681
+ configDealUserId: {
682
+ key: string;
683
+ label: string;
684
+ type: string;
685
+ };
686
+ flowBtnActionType: {
687
+ key: string;
688
+ label: string;
689
+ type: string;
690
+ };
691
+ flowWorkId: {
692
+ key: string;
693
+ label: string;
694
+ type: string;
695
+ };
696
+ flowTabStepVisible: {
697
+ key: string;
698
+ label: string;
699
+ type: string;
700
+ };
701
+ flowTimelineVisible: {
702
+ key: string;
703
+ label: string;
704
+ type: string;
705
+ };
706
+ flowCustParams: {
707
+ key: string;
708
+ label: string;
709
+ type: string;
710
+ };
711
+ workItemId: {
712
+ key: string;
713
+ label: string;
714
+ type: string;
715
+ };
716
+ flowExtraParams: {
717
+ key: string;
718
+ label: string;
719
+ type: string;
720
+ props: {
721
+ isRequired: boolean;
722
+ };
723
+ };
724
+ diagramType: {
725
+ key: string;
726
+ label: string;
727
+ type: string;
728
+ props: {
729
+ options: {
730
+ title: string;
731
+ value: string;
732
+ }[];
733
+ };
734
+ };
735
+ diagramFlowCode: {
736
+ key: string;
737
+ label: string;
738
+ type: string;
739
+ };
740
+ diagramWorkOrderId: {
741
+ key: string;
742
+ label: string;
743
+ type: string;
744
+ };
745
+ selectServerDataSource: {
746
+ key: string;
747
+ label: string;
748
+ props: {
749
+ options: {
750
+ key: string;
751
+ valueKey: string;
752
+ };
753
+ };
754
+ type: string;
755
+ };
756
+ selectAllDataSource: {
757
+ key: string;
758
+ label: string;
759
+ type: string;
760
+ props: {
761
+ options: {
762
+ key: string;
763
+ valueKey: string;
764
+ markableAction: string[];
765
+ };
766
+ };
767
+ };
768
+ selectCompFunc: {
769
+ key: string;
770
+ label: string;
771
+ type: string;
772
+ };
773
+ setCompParams: {
774
+ key: string;
775
+ label: string;
776
+ type: string;
777
+ };
778
+ dataSourceReloadFilter: {
779
+ key: string;
780
+ label: string;
781
+ type: string;
782
+ };
783
+ dataSourceSetValue: {
784
+ key: string;
785
+ label: string;
786
+ type: string;
787
+ };
788
+ onlySetPatch: {
789
+ key: string;
790
+ label: string;
791
+ type: string;
792
+ props: {
793
+ options: {
794
+ title: string;
795
+ value: boolean;
796
+ }[];
797
+ };
798
+ };
799
+ selectObjectDataSource: {
800
+ key: string;
801
+ label: string;
802
+ type: string;
803
+ props: {
804
+ isRequired: boolean;
805
+ valuePropName: string;
806
+ };
807
+ };
808
+ iframeData: {
809
+ key: string;
810
+ label: string;
811
+ type: string;
812
+ };
813
+ iframeOrigin: {
814
+ key: string;
815
+ label: string;
816
+ type: string;
817
+ };
818
+ rProps: {
819
+ key: string;
820
+ label: string;
821
+ type: string;
822
+ };
823
+ hasEventExtService: {
824
+ key: string;
825
+ label: string;
826
+ type: string;
827
+ props: {
828
+ options: {
829
+ title: string;
830
+ value: string;
831
+ }[];
832
+ };
833
+ };
834
+ eventExtService: {
835
+ key: string;
836
+ label: string;
837
+ type: string;
838
+ };
839
+ tempName: {
840
+ key: string;
841
+ label: string;
842
+ type: string;
843
+ props: {
844
+ placeholder: string;
845
+ };
846
+ };
847
+ busiObjectId: {
848
+ key: string;
849
+ label: string;
850
+ type: string;
851
+ props: {
852
+ isRequired: boolean;
853
+ valuePropName: string;
854
+ };
855
+ };
856
+ busiObjectFilterParams: {
857
+ key: string;
858
+ label: string;
859
+ type: string;
860
+ };
861
+ filterParams: {
862
+ key: string;
863
+ label: string;
864
+ type: string;
865
+ };
866
+ busiObjectFields: {
867
+ key: string;
868
+ label: string;
869
+ type: string;
870
+ props: {
871
+ isRequired: boolean;
872
+ valuePropName: string;
873
+ };
874
+ };
875
+ showOnly: {
876
+ key: string;
877
+ label: string;
878
+ type: string;
879
+ defaultValue: string;
880
+ props: {
881
+ options: {
882
+ title: string;
883
+ value: string;
884
+ }[];
885
+ };
886
+ };
887
+ objectFields: {
888
+ key: string;
889
+ label: string;
890
+ type: string;
891
+ props: {
892
+ isRequired: boolean;
893
+ options: {
894
+ fieldKey: string;
895
+ customKeyMap: {
896
+ fieldData: string;
897
+ attrCode: string;
898
+ attrName: string;
899
+ };
900
+ };
901
+ };
902
+ };
903
+ custFileName: {
904
+ key: string;
905
+ label: string;
906
+ type: string;
907
+ props: {
908
+ isRequired: boolean;
909
+ valuePropName: string;
910
+ };
911
+ };
912
+ custSheetName: {
913
+ key: string;
914
+ label: string;
915
+ type: string;
916
+ };
917
+ className: {
918
+ key: string;
919
+ label: string;
920
+ type: string;
921
+ };
922
+ funcName: {
923
+ key: string;
924
+ label: string;
925
+ type: string;
926
+ };
927
+ funcParams: {
928
+ key: string;
929
+ label: string;
930
+ type: string;
931
+ };
932
+ valueList: {
933
+ key: string;
934
+ label: string;
935
+ type: string;
936
+ };
937
+ customFuncName: {
938
+ key: string;
939
+ label: string;
940
+ type: string;
941
+ };
942
+ customFuncParams: {
943
+ key: string;
944
+ label: string;
945
+ type: string;
946
+ };
947
+ custUrl: {
948
+ key: string;
949
+ label: string;
950
+ type: string;
951
+ isRequired: boolean;
952
+ valuePropName: string;
953
+ options: {
954
+ fileUpload: boolean;
955
+ refreshKey: string[];
956
+ serviceTabs: string[];
957
+ };
958
+ };
959
+ custParams: {
960
+ key: string;
961
+ label: string;
962
+ type: string;
963
+ };
964
+ compToPrint: {
965
+ key: string;
966
+ label: string;
967
+ type: string;
968
+ };
969
+ custTpl: {
970
+ key: string;
971
+ label: string;
972
+ type: string;
973
+ };
974
+ returnType: {
975
+ key: string;
976
+ label: string;
977
+ type: string;
978
+ labelTip: string;
979
+ props: {
980
+ options: {
981
+ title: string;
982
+ value: string;
983
+ }[];
984
+ };
985
+ };
986
+ returnValue: {
987
+ key: string;
988
+ label: string;
989
+ type: string;
990
+ };
991
+ copyText: {
992
+ key: string;
993
+ label: string;
994
+ type: string;
995
+ };
996
+ isPreventDefault: {
997
+ key: string;
998
+ label: string;
999
+ type: string;
1000
+ props: {
1001
+ options: {
1002
+ title: string;
1003
+ value: string;
1004
+ }[];
1005
+ };
1006
+ labelTip: string;
1007
+ };
1008
+ isStopPropagation: {
1009
+ key: string;
1010
+ label: string;
1011
+ type: string;
1012
+ labelTip: string;
1013
+ props: {
1014
+ options: {
1015
+ title: string;
1016
+ value: string;
1017
+ }[];
1018
+ };
1019
+ };
1020
+ payCycle: {
1021
+ key: string;
1022
+ label: string;
1023
+ type: string;
1024
+ };
1025
+ prodCode: {
1026
+ key: string;
1027
+ label: string;
1028
+ type: string;
1029
+ };
1030
+ totalAmount: {
1031
+ key: string;
1032
+ label: string;
1033
+ type: string;
1034
+ };
1035
+ adStartDate: {
1036
+ key: string;
1037
+ label: string;
1038
+ type: string;
1039
+ };
1040
+ adEndDate: {
1041
+ key: string;
1042
+ label: string;
1043
+ type: string;
1044
+ };
1045
+ adList: {
1046
+ key: string;
1047
+ label: string;
1048
+ type: string;
1049
+ };
1050
+ adOperationType: {
1051
+ key: string;
1052
+ label: string;
1053
+ type: string;
1054
+ props: {
1055
+ options: {
1056
+ title: string;
1057
+ value: string;
1058
+ }[];
1059
+ };
1060
+ };
1061
+ adStartDateAfter: {
1062
+ key: string;
1063
+ label: string;
1064
+ type: string;
1065
+ };
1066
+ adTitle: {
1067
+ key: string;
1068
+ label: string;
1069
+ type: string;
1070
+ };
1071
+ adOldList: {
1072
+ key: string;
1073
+ label: string;
1074
+ type: string;
1075
+ };
1076
+ adAfterList: {
1077
+ key: string;
1078
+ label: string;
1079
+ type: string;
1080
+ };
1081
+ payCycleAfter: {
1082
+ key: string;
1083
+ label: string;
1084
+ type: string;
1085
+ };
1086
+ accept: {
1087
+ key: string;
1088
+ label: string;
1089
+ type: string;
1090
+ };
1091
+ custTplUrl: {
1092
+ key: string;
1093
+ label: string;
1094
+ type: string;
1095
+ };
1096
+ name: {
1097
+ key: string;
1098
+ label: string;
1099
+ type: string;
1100
+ props: {
1101
+ placeholder: string;
1102
+ };
1103
+ };
1104
+ icon: {
1105
+ key: string;
1106
+ label: string;
1107
+ type: string;
1108
+ props: {
1109
+ placeholder: string;
1110
+ };
1111
+ };
1112
+ editorCode: {
1113
+ key: string;
1114
+ label: string;
1115
+ type: string;
1116
+ };
1117
+ actionTitle: {
1118
+ key: string;
1119
+ label: string;
1120
+ type: string;
1121
+ props: {
1122
+ placeholder: string;
1123
+ maxLength: number;
1124
+ };
1125
+ };
1126
+ sync: {
1127
+ key: string;
1128
+ label: string;
1129
+ type: string;
1130
+ defaultValue: boolean;
1131
+ props: {
1132
+ options: {
1133
+ title: string;
1134
+ value: boolean;
1135
+ }[];
1136
+ };
1137
+ };
1138
+ setItemKey: {
1139
+ key: string;
1140
+ label: string;
1141
+ type: string;
1142
+ props: {
1143
+ required: boolean;
1144
+ placeholder: string;
1145
+ };
1146
+ };
1147
+ mapKey: {
1148
+ key: string;
1149
+ label: string;
1150
+ type: string;
1151
+ props: {
1152
+ placeholder: string;
1153
+ valuePropName: string;
1154
+ isRequired: boolean;
1155
+ };
1156
+ };
1157
+ locationAlways: {
1158
+ key: string;
1159
+ label: string;
1160
+ type: string;
1161
+ props: {
1162
+ defaultValue: boolean;
1163
+ };
1164
+ };
1165
+ locationOutputType: {
1166
+ key: string;
1167
+ label: string;
1168
+ type: string;
1169
+ defaultValue: string;
1170
+ props: {
1171
+ options: {
1172
+ title: string;
1173
+ value: string;
1174
+ }[];
1175
+ };
1176
+ };
1177
+ appTableData: {
1178
+ key: string;
1179
+ label: string;
1180
+ type: string;
1181
+ };
1182
+ appTableDataSource: {
1183
+ key: string;
1184
+ label: string;
1185
+ type: string;
1186
+ };
1187
+ locationAddress: {
1188
+ key: string;
1189
+ label: string;
1190
+ defaultValue: boolean;
1191
+ type: string;
1192
+ };
1193
+ exportSheet: {
1194
+ key: string;
1195
+ label: string;
1196
+ type: string;
1197
+ props: {
1198
+ valuePropName: string;
1199
+ isRequired: boolean;
1200
+ options: ({
1201
+ key: string;
1202
+ label: string;
1203
+ type: string;
1204
+ props?: undefined;
1205
+ } | {
1206
+ key: string;
1207
+ label: string;
1208
+ type: string;
1209
+ props: {
1210
+ isRequired: boolean;
1211
+ valuePropName: string;
1212
+ options: {
1213
+ refreshKey: string[];
1214
+ hideServiceList: string[];
1215
+ serviceTabs: string[];
1216
+ fieldKey?: undefined;
1217
+ customKeyMap?: undefined;
1218
+ };
1219
+ };
1220
+ } | {
1221
+ key: string;
1222
+ label: string;
1223
+ type: string;
1224
+ props: {
1225
+ isRequired: boolean;
1226
+ options: {
1227
+ fieldKey: string;
1228
+ customKeyMap: {
1229
+ fieldData: string;
1230
+ attrCode: string;
1231
+ attrName: string;
1232
+ };
1233
+ refreshKey?: undefined;
1234
+ hideServiceList?: undefined;
1235
+ serviceTabs?: undefined;
1236
+ };
1237
+ valuePropName?: undefined;
1238
+ };
1239
+ })[];
1240
+ };
1241
+ };
1242
+ serviceData: {
1243
+ key: string;
1244
+ label: string;
1245
+ type: string;
1246
+ props: {
1247
+ isRequired: boolean;
1248
+ valuePropName: string;
1249
+ options: {
1250
+ refreshKey: string[];
1251
+ hideServiceList: string[];
1252
+ serviceTabs: string[];
1253
+ };
1254
+ };
1255
+ };
1256
+ verificationCodeUrl: {
1257
+ key: string;
1258
+ label: string;
1259
+ type: string;
1260
+ };
1261
+ addTransferValue: {
1262
+ key: string;
1263
+ label: string;
1264
+ type: string;
1265
+ props: {
1266
+ placeholder: string;
1267
+ };
1268
+ };
1269
+ removeTransferValue: {
1270
+ key: string;
1271
+ label: string;
1272
+ type: string;
1273
+ props: {
1274
+ placeholder: string;
1275
+ };
1276
+ };
1277
+ defaultOpenKey: {
1278
+ key: string;
1279
+ label: string;
1280
+ type: string;
1281
+ };
1282
+ inlineCollapsed: {
1283
+ key: string;
1284
+ label: string;
1285
+ type: string;
1286
+ props: {
1287
+ options: {
1288
+ title: string;
1289
+ value: string;
1290
+ }[];
1291
+ };
1292
+ };
1293
+ xLineName: {
1294
+ key: string;
1295
+ label: string;
1296
+ type: string;
1297
+ };
1298
+ yLineName: {
1299
+ key: string;
1300
+ label: string;
1301
+ type: string;
1302
+ };
1303
+ lineChartData: {
1304
+ key: string;
1305
+ label: string;
1306
+ type: string;
1307
+ };
1308
+ spCount: {
1309
+ key: string;
1310
+ label: string;
1311
+ type: string;
1312
+ };
1313
+ spTotal: {
1314
+ key: string;
1315
+ label: string;
1316
+ type: string;
1317
+ };
1318
+ spRightNode: {
1319
+ key: string;
1320
+ label: string;
1321
+ type: string;
1322
+ };
1323
+ donutX: {
1324
+ key: string;
1325
+ label: string;
1326
+ type: string;
1327
+ };
1328
+ donutY: {
1329
+ key: string;
1330
+ label: string;
1331
+ type: string;
1332
+ };
1333
+ donutData: {
1334
+ key: string;
1335
+ label: string;
1336
+ type: string;
1337
+ };
1338
+ donutSumText: {
1339
+ key: string;
1340
+ label: string;
1341
+ type: string;
1342
+ };
1343
+ mpData: {
1344
+ key: string;
1345
+ label: string;
1346
+ type: string;
1347
+ props: {
1348
+ placeholder: string;
1349
+ };
1350
+ };
1351
+ gcXName: {
1352
+ key: string;
1353
+ label: string;
1354
+ type: string;
1355
+ };
1356
+ gcLegendParams: {
1357
+ key: string;
1358
+ label: string;
1359
+ type: string;
1360
+ props: {
1361
+ placeholder: string;
1362
+ };
1363
+ };
1364
+ gcData: {
1365
+ key: string;
1366
+ label: string;
1367
+ type: string;
1368
+ props: {
1369
+ placeholder: string;
1370
+ };
1371
+ };
1372
+ scXName: {
1373
+ key: string;
1374
+ label: string;
1375
+ type: string;
1376
+ };
1377
+ scYName: {
1378
+ key: string;
1379
+ label: string;
1380
+ type: string;
1381
+ };
1382
+ scData: {
1383
+ key: string;
1384
+ label: string;
1385
+ type: string;
1386
+ props: {
1387
+ placeholder: string;
1388
+ };
1389
+ };
1390
+ stcXName: {
1391
+ key: string;
1392
+ label: string;
1393
+ type: string;
1394
+ };
1395
+ stcLegendParams: {
1396
+ key: string;
1397
+ label: string;
1398
+ type: string;
1399
+ props: {
1400
+ placeholder: string;
1401
+ };
1402
+ };
1403
+ stcData: {
1404
+ key: string;
1405
+ label: string;
1406
+ type: string;
1407
+ props: {
1408
+ placeholder: string;
1409
+ };
1410
+ };
1411
+ valueMapKey: {
1412
+ key: string;
1413
+ label: string;
1414
+ type: string;
1415
+ };
1416
+ labelMapKey: {
1417
+ key: string;
1418
+ label: string;
1419
+ type: string;
1420
+ };
1421
+ selectDescriptionKey: {
1422
+ key: string;
1423
+ label: string;
1424
+ type: string;
1425
+ };
1426
+ selectDisabledKey: {
1427
+ key: string;
1428
+ label: string;
1429
+ type: string;
1430
+ };
1431
+ setSelectorDisabelItems: {
1432
+ key: string;
1433
+ label: string;
1434
+ type: string;
1435
+ };
1436
+ updateMediaState: {
1437
+ key: string;
1438
+ label: string;
1439
+ type: string;
1440
+ defaultValue: string;
1441
+ props: {
1442
+ options: {
1443
+ title: string;
1444
+ value: string;
1445
+ }[];
1446
+ };
1447
+ };
1448
+ customGroup: {
1449
+ key: string;
1450
+ type: string;
1451
+ label: string;
1452
+ labelTip: string;
1453
+ };
1454
+ exception: {
1455
+ key: string;
1456
+ type: string;
1457
+ label: string;
1458
+ props: {
1459
+ options: {
1460
+ title: string;
1461
+ value: string;
1462
+ }[];
1463
+ };
1464
+ };
1465
+ };
1466
+ export default todoOptionList;