@ibiz-template/vue3-components 0.7.41-alpha.14 → 0.7.41-alpha.16

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 (154) hide show
  1. package/dist/index-U4v1OOOD.js +1 -0
  2. package/dist/index-lFGFvnYE.js +1 -0
  3. package/dist/index-m8q8r8br.js +4 -0
  4. package/dist/index.min.css +1 -1
  5. package/dist/index.system.min.js +1 -1
  6. package/dist/map-chart-3dojS1dZ.js +1 -0
  7. package/dist/{wang-editor-z0RY8bO1.js → wang-editor-_06OYPpu.js} +1 -1
  8. package/dist/{xlsx-util-8Du1A340.js → xlsx-util-FNiwKrqm.js} +1 -1
  9. package/es/common/carousel/carousel.css +1 -1
  10. package/es/common/index.mjs +2 -0
  11. package/es/common/kanben-setting/kanben-setting.css +1 -0
  12. package/es/common/kanben-setting/kanben-setting.d.ts +42 -0
  13. package/es/common/kanben-setting/kanben-setting.mjs +65 -0
  14. package/es/common/map-chart/map-chart.mjs +6 -14
  15. package/es/control/calendar/calendar-util.d.ts +12 -0
  16. package/es/control/calendar/calendar-util.mjs +30 -1
  17. package/es/control/calendar/calendar.css +1 -1
  18. package/es/control/calendar/calendar.d.ts +2 -0
  19. package/es/control/calendar/calendar.mjs +106 -25
  20. package/es/control/calendar/components/calendar-daily/calendar-daily.css +1 -1
  21. package/es/control/calendar/components/calendar-daily/calendar-daily.d.ts +2 -0
  22. package/es/control/calendar/components/calendar-daily/calendar-daily.mjs +66 -16
  23. package/es/control/calendar/components/calendar-daily/index.d.ts +2 -0
  24. package/es/control/calendar/components/calendar-daily/use-calendar-daily.d.ts +3 -1
  25. package/es/control/calendar/components/calendar-daily/use-calendar-daily.mjs +99 -44
  26. package/es/control/calendar/components/calendar-week/calendar-week.css +1 -1
  27. package/es/control/calendar/components/calendar-week/calendar-week.d.ts +6 -0
  28. package/es/control/calendar/components/calendar-week/calendar-week.mjs +74 -38
  29. package/es/control/calendar/components/calendar-week/index.d.ts +6 -0
  30. package/es/control/calendar/components/calendar-week/use-calendar-week.d.ts +12 -1
  31. package/es/control/calendar/components/calendar-week/use-calendar-week.mjs +313 -155
  32. package/es/control/calendar/components/constant/event.d.ts +1 -0
  33. package/es/control/calendar/components/constant/event.mjs +2 -1
  34. package/es/control/calendar/components/constant/index.mjs +1 -1
  35. package/es/control/calendar/components/custom-calendar/custom-calendar.css +1 -1
  36. package/es/control/calendar/components/custom-calendar/custom-calendar.d.ts +2 -0
  37. package/es/control/calendar/components/custom-calendar/custom-calendar.mjs +8 -10
  38. package/es/control/calendar/components/custom-calendar/index.d.ts +2 -0
  39. package/es/control/calendar/components/custom-calendar/use-custom-calendar.mjs +4 -0
  40. package/es/control/calendar/components/interface/calendar-daily.d.ts +1 -0
  41. package/es/control/calendar/components/interface/calendar-daily.mjs +6 -1
  42. package/es/control/calendar/components/interface/calendar-week.d.ts +1 -0
  43. package/es/control/calendar/components/interface/calendar-week.mjs +2 -1
  44. package/es/control/calendar/components/interface/common.d.ts +20 -18
  45. package/es/control/calendar/components/interface/custom-calendar.d.ts +1 -0
  46. package/es/control/calendar/components/interface/custom-calendar.mjs +3 -2
  47. package/es/control/calendar/components/util/index.mjs +1 -1
  48. package/es/control/calendar/components/util/util.d.ts +20 -1
  49. package/es/control/calendar/components/util/util.mjs +10 -2
  50. package/es/control/calendar/index.d.ts +2 -0
  51. package/es/control/data-view/data-view.css +1 -1
  52. package/es/control/data-view/data-view.mjs +42 -13
  53. package/es/control/drbar/drbar.controller.mjs +2 -0
  54. package/es/control/drbar/drbar.mjs +6 -6
  55. package/es/control/drtab/drtab.controller.mjs +2 -0
  56. package/es/control/drtab/drtab.mjs +6 -6
  57. package/es/control/drtab/flow-drtab.css +1 -1
  58. package/es/control/drtab/flow-drtab.mjs +3 -1
  59. package/es/control/form/edit-form/edit-form.mjs +11 -0
  60. package/es/control/form/form-detail/form-item/form-item.mjs +11 -7
  61. package/es/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-grid/repeater-grid.mjs +4 -1
  62. package/es/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-multi-form/repeater-multi-form.mjs +1 -0
  63. package/es/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-single-form/repeater-single-form.d.ts +6 -0
  64. package/es/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-single-form/repeater-single-form.mjs +4 -0
  65. package/es/control/grid/virtualized-table/virtualized-table.css +1 -1
  66. package/es/control/grid/virtualized-table/virtualized-table.mjs +4 -3
  67. package/es/control/grid/virtualized-table/virtualized-table.util.mjs +4 -4
  68. package/es/control/kanban/kanban.css +1 -1
  69. package/es/control/kanban/kanban.mjs +22 -18
  70. package/es/control/kanban/swimlane-kanban/swimlane-kanban.css +1 -0
  71. package/es/control/kanban/{lane-kanban/lane-kanban.d.ts → swimlane-kanban/swimlane-kanban.d.ts} +3 -8
  72. package/es/control/kanban/{lane-kanban/lane-kanban.mjs → swimlane-kanban/swimlane-kanban.mjs} +42 -38
  73. package/es/control/list/list.css +1 -1
  74. package/es/control/list/list.mjs +14 -1
  75. package/es/control/map/map.mjs +1 -1
  76. package/es/control/medit-view-panel/index.d.ts +2 -0
  77. package/es/control/medit-view-panel/medit-view-panel.d.ts +2 -0
  78. package/es/control/medit-view-panel/medit-view-panel.mjs +19 -6
  79. package/es/control/search-bar/search-bar.mjs +1 -1
  80. package/es/editor/span/span/span.mjs +2 -1
  81. package/es/locale/en/index.d.ts +5 -0
  82. package/es/locale/en/index.mjs +6 -1
  83. package/es/locale/zh-CN/index.d.ts +5 -0
  84. package/es/locale/zh-CN/index.mjs +6 -1
  85. package/es/panel-component/app-extend-menu/extend-menu-base/common-extend-menu/common-extend-menu.mjs +20 -5
  86. package/es/panel-component/app-extend-menu/extend-menu-base/extend-button-menu/extend-button-menu.d.ts +1950 -1
  87. package/es/panel-component/app-extend-menu/extend-menu-base/extend-menu-base.util.d.ts +53 -6
  88. package/es/panel-component/app-extend-menu/extend-menu-base/extend-standard-menu/extend-standard-menu.css +1 -0
  89. package/es/panel-component/app-extend-menu/extend-menu-base/extend-standard-menu/extend-standard-menu.d.ts +2031 -0
  90. package/es/panel-component/app-extend-menu/extend-menu-base/extend-standard-menu/extend-standard-menu.mjs +278 -0
  91. package/es/view-engine/index.mjs +4 -0
  92. package/lib/common/carousel/carousel.css +1 -1
  93. package/lib/common/index.cjs +2 -0
  94. package/lib/common/kanben-setting/kanben-setting.cjs +67 -0
  95. package/lib/common/kanben-setting/kanben-setting.css +1 -0
  96. package/lib/common/map-chart/map-chart.cjs +5 -13
  97. package/lib/control/calendar/calendar-util.cjs +30 -0
  98. package/lib/control/calendar/calendar.cjs +104 -23
  99. package/lib/control/calendar/calendar.css +1 -1
  100. package/lib/control/calendar/components/calendar-daily/calendar-daily.cjs +64 -14
  101. package/lib/control/calendar/components/calendar-daily/calendar-daily.css +1 -1
  102. package/lib/control/calendar/components/calendar-daily/use-calendar-daily.cjs +98 -43
  103. package/lib/control/calendar/components/calendar-week/calendar-week.cjs +73 -37
  104. package/lib/control/calendar/components/calendar-week/calendar-week.css +1 -1
  105. package/lib/control/calendar/components/calendar-week/use-calendar-week.cjs +311 -153
  106. package/lib/control/calendar/components/constant/event.cjs +2 -0
  107. package/lib/control/calendar/components/constant/index.cjs +1 -0
  108. package/lib/control/calendar/components/custom-calendar/custom-calendar.cjs +8 -10
  109. package/lib/control/calendar/components/custom-calendar/custom-calendar.css +1 -1
  110. package/lib/control/calendar/components/custom-calendar/use-custom-calendar.cjs +4 -0
  111. package/lib/control/calendar/components/interface/calendar-daily.cjs +6 -1
  112. package/lib/control/calendar/components/interface/calendar-week.cjs +2 -1
  113. package/lib/control/calendar/components/interface/custom-calendar.cjs +2 -1
  114. package/lib/control/calendar/components/util/index.cjs +2 -0
  115. package/lib/control/calendar/components/util/util.cjs +11 -1
  116. package/lib/control/data-view/data-view.cjs +42 -13
  117. package/lib/control/data-view/data-view.css +1 -1
  118. package/lib/control/drbar/drbar.cjs +6 -6
  119. package/lib/control/drbar/drbar.controller.cjs +2 -0
  120. package/lib/control/drtab/drtab.cjs +6 -6
  121. package/lib/control/drtab/drtab.controller.cjs +2 -0
  122. package/lib/control/drtab/flow-drtab.cjs +3 -1
  123. package/lib/control/drtab/flow-drtab.css +1 -1
  124. package/lib/control/form/edit-form/edit-form.cjs +11 -0
  125. package/lib/control/form/form-detail/form-item/form-item.cjs +11 -7
  126. package/lib/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-grid/repeater-grid.cjs +4 -1
  127. package/lib/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-multi-form/repeater-multi-form.cjs +1 -0
  128. package/lib/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-single-form/repeater-single-form.cjs +4 -0
  129. package/lib/control/grid/virtualized-table/virtualized-table.cjs +3 -2
  130. package/lib/control/grid/virtualized-table/virtualized-table.css +1 -1
  131. package/lib/control/grid/virtualized-table/virtualized-table.util.cjs +4 -4
  132. package/lib/control/kanban/kanban.cjs +21 -17
  133. package/lib/control/kanban/kanban.css +1 -1
  134. package/lib/control/kanban/{lane-kanban/lane-kanban.cjs → swimlane-kanban/swimlane-kanban.cjs} +42 -38
  135. package/lib/control/kanban/swimlane-kanban/swimlane-kanban.css +1 -0
  136. package/lib/control/list/list.cjs +14 -1
  137. package/lib/control/list/list.css +1 -1
  138. package/lib/control/map/map.cjs +1 -1
  139. package/lib/control/medit-view-panel/medit-view-panel.cjs +19 -6
  140. package/lib/control/search-bar/search-bar.cjs +1 -1
  141. package/lib/editor/span/span/span.cjs +2 -1
  142. package/lib/locale/en/index.cjs +6 -1
  143. package/lib/locale/zh-CN/index.cjs +6 -1
  144. package/lib/panel-component/app-extend-menu/extend-menu-base/common-extend-menu/common-extend-menu.cjs +20 -5
  145. package/lib/panel-component/app-extend-menu/extend-menu-base/extend-standard-menu/extend-standard-menu.cjs +280 -0
  146. package/lib/panel-component/app-extend-menu/extend-menu-base/extend-standard-menu/extend-standard-menu.css +1 -0
  147. package/lib/view-engine/index.cjs +4 -0
  148. package/package.json +4 -4
  149. package/dist/index-1fHusiqt.js +0 -4
  150. package/dist/index-EYFbyMUF.js +0 -1
  151. package/dist/index-kNUznzXY.js +0 -1
  152. package/dist/map-chart-HL7emT5a.js +0 -1
  153. package/es/control/kanban/lane-kanban/lane-kanban.css +0 -1
  154. package/lib/control/kanban/lane-kanban/lane-kanban.css +0 -1
@@ -41,7 +41,1956 @@ export declare const ExtendButtonMenu: import("vue").DefineComponent<{
41
41
  value?: string | undefined;
42
42
  label?: string | undefined;
43
43
  parentId?: string | undefined;
44
- children?: any[] | undefined;
44
+ children?: {
45
+ level: number;
46
+ value?: string | undefined;
47
+ label?: string | undefined;
48
+ parentId?: string | undefined;
49
+ children?: any[] | undefined;
50
+ appMenuItemState?: number | undefined;
51
+ counterId?: string | undefined;
52
+ cssStyle?: string | undefined;
53
+ data?: string | undefined;
54
+ dynaClass?: string | undefined;
55
+ informTag?: string | undefined;
56
+ informTag2?: string | undefined;
57
+ appFuncId?: string | undefined;
58
+ appMenuItems?: {
59
+ appMenuItemState?: number | undefined;
60
+ counterId?: string | undefined;
61
+ cssStyle?: string | undefined;
62
+ data?: string | undefined;
63
+ dynaClass?: string | undefined;
64
+ informTag?: string | undefined;
65
+ informTag2?: string | undefined;
66
+ appFuncId?: string | undefined;
67
+ appMenuItems?: any[] | undefined;
68
+ sysCss?: {
69
+ codeName?: string | undefined;
70
+ cssName?: string | undefined;
71
+ cssStyle?: string | undefined;
72
+ designCssStyle?: string | undefined;
73
+ appId: string;
74
+ id?: string | undefined;
75
+ name?: string | undefined;
76
+ userParam?: Record<string, string> | undefined;
77
+ modelId?: string | undefined;
78
+ modelType?: string | undefined;
79
+ } | undefined;
80
+ sysImage?: {
81
+ codeName?: string | undefined;
82
+ cssClass?: string | undefined;
83
+ cssClassX?: string | undefined;
84
+ glyph?: string | undefined;
85
+ height?: number | undefined;
86
+ imagePath?: string | undefined;
87
+ imagePathX?: string | undefined;
88
+ rawContent?: string | undefined;
89
+ width?: number | undefined;
90
+ appId: string;
91
+ id?: string | undefined;
92
+ name?: string | undefined;
93
+ userParam?: Record<string, string> | undefined;
94
+ modelId?: string | undefined;
95
+ modelType?: string | undefined;
96
+ } | undefined;
97
+ sysPFPluginId?: string | undefined;
98
+ predefinedType?: string | undefined;
99
+ predefinedTypeParam?: string | undefined;
100
+ titleBarCloseMode?: number | undefined;
101
+ disableClose?: boolean | undefined;
102
+ hideSideBar?: boolean | undefined;
103
+ openDefault?: boolean | undefined;
104
+ spanMode?: boolean | undefined;
105
+ valid?: boolean | undefined;
106
+ accUserMode?: number | undefined;
107
+ accessKey?: string | undefined;
108
+ capLanguageRes?: {
109
+ defaultContent?: string | undefined;
110
+ lanResTag?: string | undefined;
111
+ lanResType?: string | undefined;
112
+ refFlag?: boolean | undefined;
113
+ appId: string;
114
+ id?: string | undefined;
115
+ name?: string | undefined;
116
+ codeName?: string | undefined;
117
+ userParam?: Record<string, string> | undefined;
118
+ modelId?: string | undefined;
119
+ modelType?: string | undefined;
120
+ } | undefined;
121
+ caption?: string | undefined;
122
+ itemType?: string | undefined;
123
+ tooltip?: string | undefined;
124
+ tooltipLanguageRes?: {
125
+ defaultContent?: string | undefined;
126
+ lanResTag?: string | undefined;
127
+ lanResType?: string | undefined;
128
+ refFlag?: boolean | undefined;
129
+ appId: string;
130
+ id?: string | undefined;
131
+ name?: string | undefined;
132
+ codeName?: string | undefined;
133
+ userParam?: Record<string, string> | undefined;
134
+ modelId?: string | undefined;
135
+ modelType?: string | undefined;
136
+ } | undefined;
137
+ expanded?: boolean | undefined;
138
+ hidden?: boolean | undefined;
139
+ controlAttributes?: {
140
+ attrName?: string | undefined;
141
+ attrValue?: string | undefined;
142
+ appId: string;
143
+ id?: string | undefined;
144
+ name?: string | undefined;
145
+ codeName?: string | undefined;
146
+ userParam?: Record<string, string> | undefined;
147
+ modelId?: string | undefined;
148
+ modelType?: string | undefined;
149
+ }[] | undefined;
150
+ controlLogics?: {
151
+ attrName?: string | undefined;
152
+ eventArg?: string | undefined;
153
+ eventArg2?: string | undefined;
154
+ eventNames?: string | undefined;
155
+ itemName?: string | undefined;
156
+ logicTag?: string | undefined;
157
+ logicType?: string | undefined;
158
+ appDEUIActionId?: string | undefined;
159
+ appDEUILogicId?: string | undefined;
160
+ appDataEntityId?: string | undefined;
161
+ appUILogicId?: string | undefined;
162
+ appViewEngineId?: string | undefined;
163
+ appViewLogicId?: string | undefined;
164
+ scriptCode?: string | undefined;
165
+ timer?: number | undefined;
166
+ triggerType?: string | undefined;
167
+ appId: string;
168
+ id?: string | undefined;
169
+ name?: string | undefined;
170
+ codeName?: string | undefined;
171
+ userParam?: Record<string, string> | undefined;
172
+ modelId?: string | undefined;
173
+ modelType?: string | undefined;
174
+ }[] | undefined;
175
+ controlRenders?: {
176
+ layoutPanelModel?: string | undefined;
177
+ layoutPanel?: {
178
+ codeName?: string | undefined;
179
+ dataMode?: number | undefined;
180
+ dataName?: string | undefined;
181
+ dataTimer?: number | undefined;
182
+ getControlAction?: {
183
+ adappDELogicId?: string | undefined;
184
+ actionDesc?: string | undefined;
185
+ appDEMethodId?: string | undefined;
186
+ appDataEntityId?: string | undefined;
187
+ timeout?: number | undefined;
188
+ appId: string;
189
+ id?: string | undefined;
190
+ name?: string | undefined;
191
+ codeName?: string | undefined;
192
+ userParam?: Record<string, string> | undefined;
193
+ modelId?: string | undefined;
194
+ modelType?: string | undefined;
195
+ } | undefined;
196
+ layoutMode?: string | undefined;
197
+ panelStyle?: string | undefined;
198
+ panelWidth?: number | undefined;
199
+ rootPanelItems?: {
200
+ capLanguageRes?: {
201
+ defaultContent?: string | undefined;
202
+ lanResTag?: string | undefined;
203
+ lanResType?: string | undefined;
204
+ refFlag?: boolean | undefined;
205
+ appId: string;
206
+ id?: string | undefined;
207
+ name?: string | undefined;
208
+ codeName?: string | undefined;
209
+ userParam?: Record<string, string> | undefined;
210
+ modelId?: string | undefined;
211
+ modelType?: string | undefined;
212
+ } | undefined;
213
+ caption?: string | undefined;
214
+ contentHeight?: number | undefined;
215
+ contentWidth?: number | undefined;
216
+ cssStyle?: string | undefined;
217
+ dynaClass?: string | undefined;
218
+ height?: number | undefined;
219
+ itemStyle?: string | undefined;
220
+ itemType?: string | undefined;
221
+ labelCssStyle?: string | undefined;
222
+ labelDynaClass?: string | undefined;
223
+ labelSysCss?: {
224
+ codeName?: string | undefined;
225
+ cssName?: string | undefined;
226
+ cssStyle?: string | undefined;
227
+ designCssStyle?: string | undefined;
228
+ appId: string;
229
+ id?: string | undefined;
230
+ name?: string | undefined;
231
+ userParam?: Record<string, string> | undefined;
232
+ modelId?: string | undefined;
233
+ modelType?: string | undefined;
234
+ } | undefined;
235
+ layout?: {
236
+ layout?: string | undefined;
237
+ appId: string;
238
+ id?: string | undefined;
239
+ name?: string | undefined;
240
+ codeName?: string | undefined;
241
+ userParam?: Record<string, string> | undefined;
242
+ modelId?: string | undefined;
243
+ modelType?: string | undefined;
244
+ } | undefined;
245
+ layoutPos?: {
246
+ halignSelf?: string | undefined;
247
+ height?: number | undefined;
248
+ heightMode?: string | undefined;
249
+ layout?: string | undefined;
250
+ spacingBottom?: string | undefined;
251
+ spacingLeft?: string | undefined;
252
+ spacingRight?: string | undefined;
253
+ spacingTop?: string | undefined;
254
+ valignSelf?: string | undefined;
255
+ width?: number | undefined;
256
+ widthMode?: string | undefined;
257
+ appId: string;
258
+ id?: string | undefined;
259
+ name?: string | undefined;
260
+ codeName?: string | undefined;
261
+ userParam?: Record<string, string> | undefined;
262
+ modelId?: string | undefined;
263
+ modelType?: string | undefined;
264
+ } | undefined;
265
+ panelItemGroupLogics?: {
266
+ logicCat?: string | undefined;
267
+ relatedItemNames?: string[] | undefined;
268
+ groupOP?: string | undefined;
269
+ panelItemLogics?: {
270
+ logicCat?: string | undefined;
271
+ logicType?: string | undefined;
272
+ appId: string;
273
+ id?: string | undefined;
274
+ name?: string | undefined;
275
+ codeName?: string | undefined;
276
+ userParam?: Record<string, string> | undefined;
277
+ modelId?: string | undefined;
278
+ modelType?: string | undefined;
279
+ }[] | undefined;
280
+ notMode?: boolean | undefined;
281
+ logicType?: string | undefined;
282
+ appId: string;
283
+ id?: string | undefined;
284
+ name?: string | undefined;
285
+ codeName?: string | undefined;
286
+ userParam?: Record<string, string> | undefined;
287
+ modelId?: string | undefined;
288
+ modelType?: string | undefined;
289
+ }[] | undefined;
290
+ sysCss?: {
291
+ codeName?: string | undefined;
292
+ cssName?: string | undefined;
293
+ cssStyle?: string | undefined;
294
+ designCssStyle?: string | undefined;
295
+ appId: string;
296
+ id?: string | undefined;
297
+ name?: string | undefined;
298
+ userParam?: Record<string, string> | undefined;
299
+ modelId?: string | undefined;
300
+ modelType?: string | undefined;
301
+ } | undefined;
302
+ sysImage?: {
303
+ codeName?: string | undefined;
304
+ cssClass?: string | undefined;
305
+ cssClassX?: string | undefined;
306
+ glyph?: string | undefined;
307
+ height?: number | undefined;
308
+ imagePath?: string | undefined;
309
+ imagePathX?: string | undefined;
310
+ rawContent?: string | undefined;
311
+ width?: number | undefined;
312
+ appId: string;
313
+ id?: string | undefined;
314
+ name?: string | undefined;
315
+ userParam?: Record<string, string> | undefined;
316
+ modelId?: string | undefined;
317
+ modelType?: string | undefined;
318
+ } | undefined;
319
+ sysPFPluginId?: string | undefined;
320
+ width?: number | undefined;
321
+ showCaption?: boolean | undefined;
322
+ controlAttributes?: {
323
+ attrName?: string | undefined;
324
+ attrValue?: string | undefined;
325
+ appId: string;
326
+ id?: string | undefined;
327
+ name?: string | undefined;
328
+ codeName?: string | undefined;
329
+ userParam?: Record<string, string> | undefined;
330
+ modelId?: string | undefined;
331
+ modelType?: string | undefined;
332
+ }[] | undefined;
333
+ controlLogics?: {
334
+ attrName?: string | undefined;
335
+ eventArg?: string | undefined;
336
+ eventArg2?: string | undefined;
337
+ eventNames?: string | undefined;
338
+ itemName?: string | undefined;
339
+ logicTag?: string | undefined;
340
+ logicType?: string | undefined;
341
+ appDEUIActionId?: string | undefined;
342
+ appDEUILogicId?: string | undefined;
343
+ appDataEntityId?: string | undefined;
344
+ appUILogicId?: string | undefined;
345
+ appViewEngineId?: string | undefined;
346
+ appViewLogicId?: string | undefined;
347
+ scriptCode?: string | undefined;
348
+ timer?: number | undefined;
349
+ triggerType?: string | undefined;
350
+ appId: string;
351
+ id?: string | undefined;
352
+ name?: string | undefined;
353
+ codeName?: string | undefined;
354
+ userParam?: Record<string, string> | undefined;
355
+ modelId?: string | undefined;
356
+ modelType?: string | undefined;
357
+ }[] | undefined;
358
+ controlRenders?: any[] | undefined;
359
+ appId: string;
360
+ id?: string | undefined;
361
+ name?: string | undefined;
362
+ codeName?: string | undefined;
363
+ userParam?: Record<string, string> | undefined;
364
+ modelId?: string | undefined;
365
+ modelType?: string | undefined;
366
+ }[] | undefined;
367
+ layoutPanel?: boolean | undefined;
368
+ mobilePanel?: boolean | undefined;
369
+ controlStyle?: string | undefined;
370
+ controlType?: string | undefined;
371
+ dynaSysMode?: number | undefined;
372
+ height?: number | undefined;
373
+ logicName?: string | undefined;
374
+ appDataEntityId?: string | undefined;
375
+ controlAttributes?: {
376
+ attrName?: string | undefined;
377
+ attrValue?: string | undefined;
378
+ appId: string;
379
+ id?: string | undefined;
380
+ name?: string | undefined;
381
+ codeName?: string | undefined;
382
+ userParam?: Record<string, string> | undefined;
383
+ modelId?: string | undefined;
384
+ modelType?: string | undefined;
385
+ }[] | undefined;
386
+ controlLogics?: {
387
+ attrName?: string | undefined;
388
+ eventArg?: string | undefined;
389
+ eventArg2?: string | undefined;
390
+ eventNames?: string | undefined;
391
+ itemName?: string | undefined;
392
+ logicTag?: string | undefined;
393
+ logicType?: string | undefined;
394
+ appDEUIActionId?: string | undefined;
395
+ appDEUILogicId?: string | undefined;
396
+ appDataEntityId?: string | undefined;
397
+ appUILogicId?: string | undefined;
398
+ appViewEngineId?: string | undefined;
399
+ appViewLogicId?: string | undefined;
400
+ scriptCode?: string | undefined;
401
+ timer?: number | undefined;
402
+ triggerType?: string | undefined;
403
+ appId: string;
404
+ id?: string | undefined;
405
+ name?: string | undefined;
406
+ codeName?: string | undefined;
407
+ userParam?: Record<string, string> | undefined;
408
+ modelId?: string | undefined;
409
+ modelType?: string | undefined;
410
+ }[] | undefined;
411
+ controlParam?: {
412
+ ctrlParams?: {
413
+ [x: string]: any;
414
+ [x: symbol]: any;
415
+ constructor: Function;
416
+ toString: () => string;
417
+ toLocaleString: () => string;
418
+ valueOf: () => Object;
419
+ hasOwnProperty: (v: PropertyKey) => boolean;
420
+ isPrototypeOf: (v: Object) => boolean;
421
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
422
+ } | undefined;
423
+ appId: string;
424
+ id?: string | undefined;
425
+ name?: string | undefined;
426
+ codeName?: string | undefined;
427
+ userParam?: Record<string, string> | undefined;
428
+ modelId?: string | undefined;
429
+ modelType?: string | undefined;
430
+ } | undefined;
431
+ controlRenders?: any[] | undefined;
432
+ ctrlMsg?: {
433
+ codeName?: string | undefined;
434
+ msgModel?: string | undefined;
435
+ ctrlMsgItems?: {
436
+ content?: string | undefined;
437
+ contentLanguageRes?: {
438
+ defaultContent?: string | undefined;
439
+ lanResTag?: string | undefined;
440
+ lanResType?: string | undefined;
441
+ refFlag?: boolean | undefined;
442
+ appId: string;
443
+ id?: string | undefined;
444
+ name?: string | undefined;
445
+ codeName?: string | undefined;
446
+ userParam?: Record<string, string> | undefined;
447
+ modelId?: string | undefined;
448
+ modelType?: string | undefined;
449
+ } | undefined;
450
+ timeout?: number | undefined;
451
+ appId: string;
452
+ id?: string | undefined;
453
+ name?: string | undefined;
454
+ codeName?: string | undefined;
455
+ userParam?: Record<string, string> | undefined;
456
+ modelId?: string | undefined;
457
+ modelType?: string | undefined;
458
+ }[] | undefined;
459
+ appId: string;
460
+ id?: string | undefined;
461
+ name?: string | undefined;
462
+ userParam?: Record<string, string> | undefined;
463
+ modelId?: string | undefined;
464
+ modelType?: string | undefined;
465
+ } | undefined;
466
+ sysCss?: {
467
+ codeName?: string | undefined;
468
+ cssName?: string | undefined;
469
+ cssStyle?: string | undefined;
470
+ designCssStyle?: string | undefined;
471
+ appId: string;
472
+ id?: string | undefined;
473
+ name?: string | undefined;
474
+ userParam?: Record<string, string> | undefined;
475
+ modelId?: string | undefined;
476
+ modelType?: string | undefined;
477
+ } | undefined;
478
+ sysPFPluginId?: string | undefined;
479
+ priority?: number | undefined;
480
+ user2ControlAction?: {
481
+ adappDELogicId?: string | undefined;
482
+ actionDesc?: string | undefined;
483
+ appDEMethodId?: string | undefined;
484
+ appDataEntityId?: string | undefined;
485
+ timeout?: number | undefined;
486
+ appId: string;
487
+ id?: string | undefined;
488
+ name?: string | undefined;
489
+ codeName?: string | undefined;
490
+ userParam?: Record<string, string> | undefined;
491
+ modelId?: string | undefined;
492
+ modelType?: string | undefined;
493
+ } | undefined;
494
+ userControlAction?: {
495
+ adappDELogicId?: string | undefined;
496
+ actionDesc?: string | undefined;
497
+ appDEMethodId?: string | undefined;
498
+ appDataEntityId?: string | undefined;
499
+ timeout?: number | undefined;
500
+ appId: string;
501
+ id?: string | undefined;
502
+ name?: string | undefined;
503
+ codeName?: string | undefined;
504
+ userParam?: Record<string, string> | undefined;
505
+ modelId?: string | undefined;
506
+ modelType?: string | undefined;
507
+ } | undefined;
508
+ width?: number | undefined;
509
+ appId: string;
510
+ id?: string | undefined;
511
+ name?: string | undefined;
512
+ userParam?: Record<string, string> | undefined;
513
+ modelId?: string | undefined;
514
+ modelType?: string | undefined;
515
+ appCounterRefs?: {
516
+ appCounter?: {
517
+ getAppDEActionId?: string | undefined;
518
+ getAppDEDataSetId?: string | undefined;
519
+ appDataEntityId?: string | undefined;
520
+ codeName?: string | undefined;
521
+ counterData?: string | undefined;
522
+ counterData2?: string | undefined;
523
+ counterType?: string | undefined;
524
+ customCond?: string | undefined;
525
+ counterId?: string | undefined;
526
+ sysPFPluginId?: string | undefined;
527
+ timer?: number | undefined;
528
+ uniqueTag?: string | undefined;
529
+ navigateContexts?: {
530
+ desc?: string | undefined;
531
+ key?: string | undefined;
532
+ value?: string | undefined;
533
+ rawValue?: boolean | undefined;
534
+ appId: string;
535
+ id?: string | undefined;
536
+ name?: string | undefined;
537
+ codeName?: string | undefined;
538
+ userParam?: Record<string, string> | undefined;
539
+ modelId?: string | undefined;
540
+ modelType?: string | undefined;
541
+ }[] | undefined;
542
+ navigateParams?: {
543
+ desc?: string | undefined;
544
+ key?: string | undefined;
545
+ value?: string | undefined;
546
+ rawValue?: boolean | undefined;
547
+ appId: string;
548
+ id?: string | undefined;
549
+ name?: string | undefined;
550
+ codeName?: string | undefined;
551
+ userParam?: Record<string, string> | undefined;
552
+ modelId?: string | undefined;
553
+ modelType?: string | undefined;
554
+ }[] | undefined;
555
+ appId: string;
556
+ id?: string | undefined;
557
+ name?: string | undefined;
558
+ userParam?: Record<string, string> | undefined;
559
+ modelId?: string | undefined;
560
+ modelType?: string | undefined;
561
+ } | undefined;
562
+ refMode?: {
563
+ [x: string]: any;
564
+ [x: symbol]: any;
565
+ constructor: Function;
566
+ toString: () => string;
567
+ toLocaleString: () => string;
568
+ valueOf: () => Object;
569
+ hasOwnProperty: (v: PropertyKey) => boolean;
570
+ isPrototypeOf: (v: Object) => boolean;
571
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
572
+ } | undefined;
573
+ tag?: string | undefined;
574
+ uniqueTag?: string | undefined;
575
+ appId: string;
576
+ id?: string | undefined;
577
+ name?: string | undefined;
578
+ codeName?: string | undefined;
579
+ userParam?: Record<string, string> | undefined;
580
+ modelId?: string | undefined;
581
+ modelType?: string | undefined;
582
+ }[] | undefined;
583
+ appViewEngines?: {
584
+ engineCat?: string | undefined;
585
+ engineType?: string | undefined;
586
+ params?: {
587
+ paramType?: string | undefined;
588
+ value?: {
589
+ [x: string]: any;
590
+ [x: symbol]: any;
591
+ constructor: Function;
592
+ toString: () => string;
593
+ toLocaleString: () => string;
594
+ valueOf: () => Object;
595
+ hasOwnProperty: (v: PropertyKey) => boolean;
596
+ isPrototypeOf: (v: Object) => boolean;
597
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
598
+ } | undefined;
599
+ appId: string;
600
+ id?: string | undefined;
601
+ name?: string | undefined;
602
+ codeName?: string | undefined;
603
+ userParam?: Record<string, string> | undefined;
604
+ modelId?: string | undefined;
605
+ modelType?: string | undefined;
606
+ }[] | undefined;
607
+ appId: string;
608
+ id?: string | undefined;
609
+ name?: string | undefined;
610
+ codeName?: string | undefined;
611
+ userParam?: Record<string, string> | undefined;
612
+ modelId?: string | undefined;
613
+ modelType?: string | undefined;
614
+ }[] | undefined;
615
+ appViewLogics?: {
616
+ builtinAppUILogic?: {
617
+ appDEUILogicId?: string | undefined;
618
+ appDataEntityId?: string | undefined;
619
+ appUILogicRefViews?: {
620
+ openMode?: string | undefined;
621
+ refMode?: string | undefined;
622
+ refAppViewId?: string | undefined;
623
+ navigateContexts?: {
624
+ desc?: string | undefined;
625
+ key?: string | undefined;
626
+ value?: string | undefined;
627
+ rawValue?: boolean | undefined;
628
+ appId: string;
629
+ id?: string | undefined;
630
+ name?: string | undefined;
631
+ codeName?: string | undefined;
632
+ userParam?: Record<string, string> | undefined;
633
+ modelId?: string | undefined;
634
+ modelType?: string | undefined;
635
+ }[] | undefined;
636
+ navigateParams?: {
637
+ desc?: string | undefined;
638
+ key?: string | undefined;
639
+ value?: string | undefined;
640
+ rawValue?: boolean | undefined;
641
+ appId: string;
642
+ id?: string | undefined;
643
+ name?: string | undefined;
644
+ codeName?: string | undefined;
645
+ userParam?: Record<string, string> | undefined;
646
+ modelId?: string | undefined;
647
+ modelType?: string | undefined;
648
+ }[] | undefined;
649
+ appId: string;
650
+ id?: string | undefined;
651
+ name?: string | undefined;
652
+ codeName?: string | undefined;
653
+ userParam?: Record<string, string> | undefined;
654
+ modelId?: string | undefined;
655
+ modelType?: string | undefined;
656
+ }[] | undefined;
657
+ sysPFPluginId?: string | undefined;
658
+ viewLogicType?: string | undefined;
659
+ builtinLogic?: boolean | undefined;
660
+ codeName?: string | undefined;
661
+ logicType?: string | undefined;
662
+ viewLogicStyle?: string | undefined;
663
+ appId: string;
664
+ id?: string | undefined;
665
+ name?: string | undefined;
666
+ userParam?: Record<string, string> | undefined;
667
+ modelId?: string | undefined;
668
+ modelType?: string | undefined;
669
+ } | undefined;
670
+ attrName?: string | undefined;
671
+ eventArg?: string | undefined;
672
+ eventArg2?: string | undefined;
673
+ eventNames?: string | undefined;
674
+ itemName?: string | undefined;
675
+ logicParam?: string | undefined;
676
+ logicParam2?: string | undefined;
677
+ logicTrigger?: string | undefined;
678
+ logicType?: string | undefined;
679
+ owner?: {
680
+ [x: string]: any;
681
+ [x: symbol]: any;
682
+ constructor: Function;
683
+ toString: () => string;
684
+ toLocaleString: () => string;
685
+ valueOf: () => Object;
686
+ hasOwnProperty: (v: PropertyKey) => boolean;
687
+ isPrototypeOf: (v: Object) => boolean;
688
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
689
+ } | undefined;
690
+ appDEUIActionId?: string | undefined;
691
+ appDEUILogicId?: string | undefined;
692
+ appDataEntityId?: string | undefined;
693
+ appUILogicId?: string | undefined;
694
+ appViewEngineId?: string | undefined;
695
+ appViewLogicId?: string | undefined;
696
+ sysPFPluginId?: string | undefined;
697
+ ctrlName?: string | undefined;
698
+ scriptCode?: string | undefined;
699
+ timer?: number | undefined;
700
+ builtinLogic?: boolean | undefined;
701
+ appId: string;
702
+ id?: string | undefined;
703
+ name?: string | undefined;
704
+ codeName?: string | undefined;
705
+ userParam?: Record<string, string> | undefined;
706
+ modelId?: string | undefined;
707
+ modelType?: string | undefined;
708
+ }[] | undefined;
709
+ appViewRefs?: {
710
+ height?: number | undefined;
711
+ openMode?: string | undefined;
712
+ owner?: {
713
+ [x: string]: any;
714
+ [x: symbol]: any;
715
+ constructor: Function;
716
+ toString: () => string;
717
+ toLocaleString: () => string;
718
+ valueOf: () => Object;
719
+ hasOwnProperty: (v: PropertyKey) => boolean;
720
+ isPrototypeOf: (v: Object) => boolean;
721
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
722
+ } | undefined;
723
+ parentDataJO?: {
724
+ [x: string]: any;
725
+ [x: symbol]: any;
726
+ constructor: Function;
727
+ toString: () => string;
728
+ toLocaleString: () => string;
729
+ valueOf: () => Object;
730
+ hasOwnProperty: (v: PropertyKey) => boolean;
731
+ isPrototypeOf: (v: Object) => boolean;
732
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
733
+ } | undefined;
734
+ realOpenMode?: string | undefined;
735
+ realTitle?: string | undefined;
736
+ realTitleLanguageRes?: {
737
+ defaultContent?: string | undefined;
738
+ lanResTag?: string | undefined;
739
+ lanResType?: string | undefined;
740
+ refFlag?: boolean | undefined;
741
+ appId: string;
742
+ id?: string | undefined;
743
+ name?: string | undefined;
744
+ codeName?: string | undefined;
745
+ userParam?: Record<string, string> | undefined;
746
+ modelId?: string | undefined;
747
+ modelType?: string | undefined;
748
+ } | undefined;
749
+ refAppViewId?: string | undefined;
750
+ viewParamJO?: {
751
+ [x: string]: any;
752
+ [x: symbol]: any;
753
+ constructor: Function;
754
+ toString: () => string;
755
+ toLocaleString: () => string;
756
+ valueOf: () => Object;
757
+ hasOwnProperty: (v: PropertyKey) => boolean;
758
+ isPrototypeOf: (v: Object) => boolean;
759
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
760
+ } | undefined;
761
+ width?: number | undefined;
762
+ navigateContexts?: {
763
+ desc?: string | undefined;
764
+ key?: string | undefined;
765
+ value?: string | undefined;
766
+ rawValue?: boolean | undefined;
767
+ appId: string;
768
+ id?: string | undefined;
769
+ name?: string | undefined;
770
+ codeName?: string | undefined;
771
+ userParam?: Record<string, string> | undefined;
772
+ modelId?: string | undefined;
773
+ modelType?: string | undefined;
774
+ }[] | undefined;
775
+ navigateParams?: {
776
+ desc?: string | undefined;
777
+ key?: string | undefined;
778
+ value?: string | undefined;
779
+ rawValue?: boolean | undefined;
780
+ appId: string;
781
+ id?: string | undefined;
782
+ name?: string | undefined;
783
+ codeName?: string | undefined;
784
+ userParam?: Record<string, string> | undefined;
785
+ modelId?: string | undefined;
786
+ modelType?: string | undefined;
787
+ }[] | undefined;
788
+ appId: string;
789
+ id?: string | undefined;
790
+ name?: string | undefined;
791
+ codeName?: string | undefined;
792
+ userParam?: Record<string, string> | undefined;
793
+ modelId?: string | undefined;
794
+ modelType?: string | undefined;
795
+ }[] | undefined;
796
+ controls?: {
797
+ codeName?: string | undefined;
798
+ controlStyle?: string | undefined;
799
+ controlType?: string | undefined;
800
+ dynaSysMode?: number | undefined;
801
+ height?: number | undefined;
802
+ logicName?: string | undefined;
803
+ appDataEntityId?: string | undefined;
804
+ controlAttributes?: {
805
+ attrName?: string | undefined;
806
+ attrValue?: string | undefined;
807
+ appId: string;
808
+ id?: string | undefined;
809
+ name?: string | undefined;
810
+ codeName?: string | undefined;
811
+ userParam?: Record<string, string> | undefined;
812
+ modelId?: string | undefined;
813
+ modelType?: string | undefined;
814
+ }[] | undefined;
815
+ controlLogics?: {
816
+ attrName?: string | undefined;
817
+ eventArg?: string | undefined;
818
+ eventArg2?: string | undefined;
819
+ eventNames?: string | undefined;
820
+ itemName?: string | undefined;
821
+ logicTag?: string | undefined;
822
+ logicType?: string | undefined;
823
+ appDEUIActionId?: string | undefined;
824
+ appDEUILogicId?: string | undefined;
825
+ appDataEntityId?: string | undefined;
826
+ appUILogicId?: string | undefined;
827
+ appViewEngineId?: string | undefined;
828
+ appViewLogicId?: string | undefined;
829
+ scriptCode?: string | undefined;
830
+ timer?: number | undefined;
831
+ triggerType?: string | undefined;
832
+ appId: string;
833
+ id?: string | undefined;
834
+ name?: string | undefined;
835
+ codeName?: string | undefined;
836
+ userParam?: Record<string, string> | undefined;
837
+ modelId?: string | undefined;
838
+ modelType?: string | undefined;
839
+ }[] | undefined;
840
+ controlParam?: {
841
+ ctrlParams?: {
842
+ [x: string]: any;
843
+ [x: symbol]: any;
844
+ constructor: Function;
845
+ toString: () => string;
846
+ toLocaleString: () => string;
847
+ valueOf: () => Object;
848
+ hasOwnProperty: (v: PropertyKey) => boolean;
849
+ isPrototypeOf: (v: Object) => boolean;
850
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
851
+ } | undefined;
852
+ appId: string;
853
+ id?: string | undefined;
854
+ name?: string | undefined;
855
+ codeName?: string | undefined;
856
+ userParam?: Record<string, string> | undefined;
857
+ modelId?: string | undefined;
858
+ modelType?: string | undefined;
859
+ } | undefined;
860
+ controlRenders?: any[] | undefined;
861
+ ctrlMsg?: {
862
+ codeName?: string | undefined;
863
+ msgModel?: string | undefined;
864
+ ctrlMsgItems?: {
865
+ content?: string | undefined;
866
+ contentLanguageRes?: {
867
+ defaultContent?: string | undefined;
868
+ lanResTag?: string | undefined;
869
+ lanResType?: string | undefined;
870
+ refFlag?: boolean | undefined;
871
+ appId: string;
872
+ id?: string | undefined;
873
+ name?: string | undefined;
874
+ codeName?: string | undefined;
875
+ userParam?: Record<string, string> | undefined;
876
+ modelId?: string | undefined;
877
+ modelType?: string | undefined;
878
+ } | undefined;
879
+ timeout?: number | undefined;
880
+ appId: string;
881
+ id?: string | undefined;
882
+ name?: string | undefined;
883
+ codeName?: string | undefined;
884
+ userParam?: Record<string, string> | undefined;
885
+ modelId?: string | undefined;
886
+ modelType?: string | undefined;
887
+ }[] | undefined;
888
+ appId: string;
889
+ id?: string | undefined;
890
+ name?: string | undefined;
891
+ userParam?: Record<string, string> | undefined;
892
+ modelId?: string | undefined;
893
+ modelType?: string | undefined;
894
+ } | undefined;
895
+ sysCss?: {
896
+ codeName?: string | undefined;
897
+ cssName?: string | undefined;
898
+ cssStyle?: string | undefined;
899
+ designCssStyle?: string | undefined;
900
+ appId: string;
901
+ id?: string | undefined;
902
+ name?: string | undefined;
903
+ userParam?: Record<string, string> | undefined;
904
+ modelId?: string | undefined;
905
+ modelType?: string | undefined;
906
+ } | undefined;
907
+ sysPFPluginId?: string | undefined;
908
+ priority?: number | undefined;
909
+ user2ControlAction?: {
910
+ adappDELogicId?: string | undefined;
911
+ actionDesc?: string | undefined;
912
+ appDEMethodId?: string | undefined;
913
+ appDataEntityId?: string | undefined;
914
+ timeout?: number | undefined;
915
+ appId: string;
916
+ id?: string | undefined;
917
+ name?: string | undefined;
918
+ codeName?: string | undefined;
919
+ userParam?: Record<string, string> | undefined;
920
+ modelId?: string | undefined;
921
+ modelType?: string | undefined;
922
+ } | undefined;
923
+ userControlAction?: {
924
+ adappDELogicId?: string | undefined;
925
+ actionDesc?: string | undefined;
926
+ appDEMethodId?: string | undefined;
927
+ appDataEntityId?: string | undefined;
928
+ timeout?: number | undefined;
929
+ appId: string;
930
+ id?: string | undefined;
931
+ name?: string | undefined;
932
+ codeName?: string | undefined;
933
+ userParam?: Record<string, string> | undefined;
934
+ modelId?: string | undefined;
935
+ modelType?: string | undefined;
936
+ } | undefined;
937
+ width?: number | undefined;
938
+ appId: string;
939
+ id?: string | undefined;
940
+ name?: string | undefined;
941
+ userParam?: Record<string, string> | undefined;
942
+ modelId?: string | undefined;
943
+ modelType?: string | undefined;
944
+ }[] | undefined;
945
+ layout?: {
946
+ layout?: string | undefined;
947
+ appId: string;
948
+ id?: string | undefined;
949
+ name?: string | undefined;
950
+ codeName?: string | undefined;
951
+ userParam?: Record<string, string> | undefined;
952
+ modelId?: string | undefined;
953
+ modelType?: string | undefined;
954
+ } | undefined;
955
+ } | undefined;
956
+ sysPFPluginId?: string | undefined;
957
+ renderName?: string | undefined;
958
+ renderType?: string | undefined;
959
+ appId: string;
960
+ id?: string | undefined;
961
+ name?: string | undefined;
962
+ codeName?: string | undefined;
963
+ userParam?: Record<string, string> | undefined;
964
+ modelId?: string | undefined;
965
+ modelType?: string | undefined;
966
+ }[] | undefined;
967
+ appId: string;
968
+ id?: string | undefined;
969
+ name?: string | undefined;
970
+ codeName?: string | undefined;
971
+ userParam?: Record<string, string> | undefined;
972
+ modelId?: string | undefined;
973
+ modelType?: string | undefined;
974
+ layout?: {
975
+ layout?: string | undefined;
976
+ appId: string;
977
+ id?: string | undefined;
978
+ name?: string | undefined;
979
+ codeName?: string | undefined;
980
+ userParam?: Record<string, string> | undefined;
981
+ modelId?: string | undefined;
982
+ modelType?: string | undefined;
983
+ } | undefined;
984
+ layoutPos?: {
985
+ halignSelf?: string | undefined;
986
+ height?: number | undefined;
987
+ heightMode?: string | undefined;
988
+ layout?: string | undefined;
989
+ spacingBottom?: string | undefined;
990
+ spacingLeft?: string | undefined;
991
+ spacingRight?: string | undefined;
992
+ spacingTop?: string | undefined;
993
+ valignSelf?: string | undefined;
994
+ width?: number | undefined;
995
+ widthMode?: string | undefined;
996
+ appId: string;
997
+ id?: string | undefined;
998
+ name?: string | undefined;
999
+ codeName?: string | undefined;
1000
+ userParam?: Record<string, string> | undefined;
1001
+ modelId?: string | undefined;
1002
+ modelType?: string | undefined;
1003
+ } | undefined;
1004
+ navigateContexts?: {
1005
+ desc?: string | undefined;
1006
+ key?: string | undefined;
1007
+ value?: string | undefined;
1008
+ rawValue?: boolean | undefined;
1009
+ appId: string;
1010
+ id?: string | undefined;
1011
+ name?: string | undefined;
1012
+ codeName?: string | undefined;
1013
+ userParam?: Record<string, string> | undefined;
1014
+ modelId?: string | undefined;
1015
+ modelType?: string | undefined;
1016
+ }[] | undefined;
1017
+ navigateParams?: {
1018
+ desc?: string | undefined;
1019
+ key?: string | undefined;
1020
+ value?: string | undefined;
1021
+ rawValue?: boolean | undefined;
1022
+ appId: string;
1023
+ id?: string | undefined;
1024
+ name?: string | undefined;
1025
+ codeName?: string | undefined;
1026
+ userParam?: Record<string, string> | undefined;
1027
+ modelId?: string | undefined;
1028
+ modelType?: string | undefined;
1029
+ }[] | undefined;
1030
+ }[] | undefined;
1031
+ sysCss?: {
1032
+ codeName?: string | undefined;
1033
+ cssName?: string | undefined;
1034
+ cssStyle?: string | undefined;
1035
+ designCssStyle?: string | undefined;
1036
+ appId: string;
1037
+ id?: string | undefined;
1038
+ name?: string | undefined;
1039
+ userParam?: Record<string, string> | undefined;
1040
+ modelId?: string | undefined;
1041
+ modelType?: string | undefined;
1042
+ } | undefined;
1043
+ sysImage?: {
1044
+ codeName?: string | undefined;
1045
+ cssClass?: string | undefined;
1046
+ cssClassX?: string | undefined;
1047
+ glyph?: string | undefined;
1048
+ height?: number | undefined;
1049
+ imagePath?: string | undefined;
1050
+ imagePathX?: string | undefined;
1051
+ rawContent?: string | undefined;
1052
+ width?: number | undefined;
1053
+ appId: string;
1054
+ id?: string | undefined;
1055
+ name?: string | undefined;
1056
+ userParam?: Record<string, string> | undefined;
1057
+ modelId?: string | undefined;
1058
+ modelType?: string | undefined;
1059
+ } | undefined;
1060
+ sysPFPluginId?: string | undefined;
1061
+ predefinedType?: string | undefined;
1062
+ predefinedTypeParam?: string | undefined;
1063
+ titleBarCloseMode?: number | undefined;
1064
+ disableClose?: boolean | undefined;
1065
+ hideSideBar?: boolean | undefined;
1066
+ openDefault?: boolean | undefined;
1067
+ spanMode?: boolean | undefined;
1068
+ valid?: boolean | undefined;
1069
+ accUserMode?: number | undefined;
1070
+ accessKey?: string | undefined;
1071
+ capLanguageRes?: {
1072
+ defaultContent?: string | undefined;
1073
+ lanResTag?: string | undefined;
1074
+ lanResType?: string | undefined;
1075
+ refFlag?: boolean | undefined;
1076
+ appId: string;
1077
+ id?: string | undefined;
1078
+ name?: string | undefined;
1079
+ codeName?: string | undefined;
1080
+ userParam?: Record<string, string> | undefined;
1081
+ modelId?: string | undefined;
1082
+ modelType?: string | undefined;
1083
+ } | undefined;
1084
+ caption?: string | undefined;
1085
+ itemType?: string | undefined;
1086
+ tooltip?: string | undefined;
1087
+ tooltipLanguageRes?: {
1088
+ defaultContent?: string | undefined;
1089
+ lanResTag?: string | undefined;
1090
+ lanResType?: string | undefined;
1091
+ refFlag?: boolean | undefined;
1092
+ appId: string;
1093
+ id?: string | undefined;
1094
+ name?: string | undefined;
1095
+ codeName?: string | undefined;
1096
+ userParam?: Record<string, string> | undefined;
1097
+ modelId?: string | undefined;
1098
+ modelType?: string | undefined;
1099
+ } | undefined;
1100
+ expanded?: boolean | undefined;
1101
+ hidden?: boolean | undefined;
1102
+ controlAttributes?: {
1103
+ attrName?: string | undefined;
1104
+ attrValue?: string | undefined;
1105
+ appId: string;
1106
+ id?: string | undefined;
1107
+ name?: string | undefined;
1108
+ codeName?: string | undefined;
1109
+ userParam?: Record<string, string> | undefined;
1110
+ modelId?: string | undefined;
1111
+ modelType?: string | undefined;
1112
+ }[] | undefined;
1113
+ controlLogics?: {
1114
+ attrName?: string | undefined;
1115
+ eventArg?: string | undefined;
1116
+ eventArg2?: string | undefined;
1117
+ eventNames?: string | undefined;
1118
+ itemName?: string | undefined;
1119
+ logicTag?: string | undefined;
1120
+ logicType?: string | undefined;
1121
+ appDEUIActionId?: string | undefined;
1122
+ appDEUILogicId?: string | undefined;
1123
+ appDataEntityId?: string | undefined;
1124
+ appUILogicId?: string | undefined;
1125
+ appViewEngineId?: string | undefined;
1126
+ appViewLogicId?: string | undefined;
1127
+ scriptCode?: string | undefined;
1128
+ timer?: number | undefined;
1129
+ triggerType?: string | undefined;
1130
+ appId: string;
1131
+ id?: string | undefined;
1132
+ name?: string | undefined;
1133
+ codeName?: string | undefined;
1134
+ userParam?: Record<string, string> | undefined;
1135
+ modelId?: string | undefined;
1136
+ modelType?: string | undefined;
1137
+ }[] | undefined;
1138
+ controlRenders?: {
1139
+ layoutPanelModel?: string | undefined;
1140
+ layoutPanel?: {
1141
+ codeName?: string | undefined;
1142
+ dataMode?: number | undefined;
1143
+ dataName?: string | undefined;
1144
+ dataTimer?: number | undefined;
1145
+ getControlAction?: {
1146
+ adappDELogicId?: string | undefined;
1147
+ actionDesc?: string | undefined;
1148
+ appDEMethodId?: string | undefined;
1149
+ appDataEntityId?: string | undefined;
1150
+ timeout?: number | undefined;
1151
+ appId: string;
1152
+ id?: string | undefined;
1153
+ name?: string | undefined;
1154
+ codeName?: string | undefined;
1155
+ userParam?: Record<string, string> | undefined;
1156
+ modelId?: string | undefined;
1157
+ modelType?: string | undefined;
1158
+ } | undefined;
1159
+ layoutMode?: string | undefined;
1160
+ panelStyle?: string | undefined;
1161
+ panelWidth?: number | undefined;
1162
+ rootPanelItems?: {
1163
+ capLanguageRes?: {
1164
+ defaultContent?: string | undefined;
1165
+ lanResTag?: string | undefined;
1166
+ lanResType?: string | undefined;
1167
+ refFlag?: boolean | undefined;
1168
+ appId: string;
1169
+ id?: string | undefined;
1170
+ name?: string | undefined;
1171
+ codeName?: string | undefined;
1172
+ userParam?: Record<string, string> | undefined;
1173
+ modelId?: string | undefined;
1174
+ modelType?: string | undefined;
1175
+ } | undefined;
1176
+ caption?: string | undefined;
1177
+ contentHeight?: number | undefined;
1178
+ contentWidth?: number | undefined;
1179
+ cssStyle?: string | undefined;
1180
+ dynaClass?: string | undefined;
1181
+ height?: number | undefined;
1182
+ itemStyle?: string | undefined;
1183
+ itemType?: string | undefined;
1184
+ labelCssStyle?: string | undefined;
1185
+ labelDynaClass?: string | undefined;
1186
+ labelSysCss?: {
1187
+ codeName?: string | undefined;
1188
+ cssName?: string | undefined;
1189
+ cssStyle?: string | undefined;
1190
+ designCssStyle?: string | undefined;
1191
+ appId: string;
1192
+ id?: string | undefined;
1193
+ name?: string | undefined;
1194
+ userParam?: Record<string, string> | undefined;
1195
+ modelId?: string | undefined;
1196
+ modelType?: string | undefined;
1197
+ } | undefined;
1198
+ layout?: {
1199
+ layout?: string | undefined;
1200
+ appId: string;
1201
+ id?: string | undefined;
1202
+ name?: string | undefined;
1203
+ codeName?: string | undefined;
1204
+ userParam?: Record<string, string> | undefined;
1205
+ modelId?: string | undefined;
1206
+ modelType?: string | undefined;
1207
+ } | undefined;
1208
+ layoutPos?: {
1209
+ halignSelf?: string | undefined;
1210
+ height?: number | undefined;
1211
+ heightMode?: string | undefined;
1212
+ layout?: string | undefined;
1213
+ spacingBottom?: string | undefined;
1214
+ spacingLeft?: string | undefined;
1215
+ spacingRight?: string | undefined;
1216
+ spacingTop?: string | undefined;
1217
+ valignSelf?: string | undefined;
1218
+ width?: number | undefined;
1219
+ widthMode?: string | undefined;
1220
+ appId: string;
1221
+ id?: string | undefined;
1222
+ name?: string | undefined;
1223
+ codeName?: string | undefined;
1224
+ userParam?: Record<string, string> | undefined;
1225
+ modelId?: string | undefined;
1226
+ modelType?: string | undefined;
1227
+ } | undefined;
1228
+ panelItemGroupLogics?: {
1229
+ logicCat?: string | undefined;
1230
+ relatedItemNames?: string[] | undefined;
1231
+ groupOP?: string | undefined;
1232
+ panelItemLogics?: {
1233
+ logicCat?: string | undefined;
1234
+ logicType?: string | undefined;
1235
+ appId: string;
1236
+ id?: string | undefined;
1237
+ name?: string | undefined;
1238
+ codeName?: string | undefined;
1239
+ userParam?: Record<string, string> | undefined;
1240
+ modelId?: string | undefined;
1241
+ modelType?: string | undefined;
1242
+ }[] | undefined;
1243
+ notMode?: boolean | undefined;
1244
+ logicType?: string | undefined;
1245
+ appId: string;
1246
+ id?: string | undefined;
1247
+ name?: string | undefined;
1248
+ codeName?: string | undefined;
1249
+ userParam?: Record<string, string> | undefined;
1250
+ modelId?: string | undefined;
1251
+ modelType?: string | undefined;
1252
+ }[] | undefined;
1253
+ sysCss?: {
1254
+ codeName?: string | undefined;
1255
+ cssName?: string | undefined;
1256
+ cssStyle?: string | undefined;
1257
+ designCssStyle?: string | undefined;
1258
+ appId: string;
1259
+ id?: string | undefined;
1260
+ name?: string | undefined;
1261
+ userParam?: Record<string, string> | undefined;
1262
+ modelId?: string | undefined;
1263
+ modelType?: string | undefined;
1264
+ } | undefined;
1265
+ sysImage?: {
1266
+ codeName?: string | undefined;
1267
+ cssClass?: string | undefined;
1268
+ cssClassX?: string | undefined;
1269
+ glyph?: string | undefined;
1270
+ height?: number | undefined;
1271
+ imagePath?: string | undefined;
1272
+ imagePathX?: string | undefined;
1273
+ rawContent?: string | undefined;
1274
+ width?: number | undefined;
1275
+ appId: string;
1276
+ id?: string | undefined;
1277
+ name?: string | undefined;
1278
+ userParam?: Record<string, string> | undefined;
1279
+ modelId?: string | undefined;
1280
+ modelType?: string | undefined;
1281
+ } | undefined;
1282
+ sysPFPluginId?: string | undefined;
1283
+ width?: number | undefined;
1284
+ showCaption?: boolean | undefined;
1285
+ controlAttributes?: {
1286
+ attrName?: string | undefined;
1287
+ attrValue?: string | undefined;
1288
+ appId: string;
1289
+ id?: string | undefined;
1290
+ name?: string | undefined;
1291
+ codeName?: string | undefined;
1292
+ userParam?: Record<string, string> | undefined;
1293
+ modelId?: string | undefined;
1294
+ modelType?: string | undefined;
1295
+ }[] | undefined;
1296
+ controlLogics?: {
1297
+ attrName?: string | undefined;
1298
+ eventArg?: string | undefined;
1299
+ eventArg2?: string | undefined;
1300
+ eventNames?: string | undefined;
1301
+ itemName?: string | undefined;
1302
+ logicTag?: string | undefined;
1303
+ logicType?: string | undefined;
1304
+ appDEUIActionId?: string | undefined;
1305
+ appDEUILogicId?: string | undefined;
1306
+ appDataEntityId?: string | undefined;
1307
+ appUILogicId?: string | undefined;
1308
+ appViewEngineId?: string | undefined;
1309
+ appViewLogicId?: string | undefined;
1310
+ scriptCode?: string | undefined;
1311
+ timer?: number | undefined;
1312
+ triggerType?: string | undefined;
1313
+ appId: string;
1314
+ id?: string | undefined;
1315
+ name?: string | undefined;
1316
+ codeName?: string | undefined;
1317
+ userParam?: Record<string, string> | undefined;
1318
+ modelId?: string | undefined;
1319
+ modelType?: string | undefined;
1320
+ }[] | undefined;
1321
+ controlRenders?: any[] | undefined;
1322
+ appId: string;
1323
+ id?: string | undefined;
1324
+ name?: string | undefined;
1325
+ codeName?: string | undefined;
1326
+ userParam?: Record<string, string> | undefined;
1327
+ modelId?: string | undefined;
1328
+ modelType?: string | undefined;
1329
+ }[] | undefined;
1330
+ layoutPanel?: boolean | undefined;
1331
+ mobilePanel?: boolean | undefined;
1332
+ controlStyle?: string | undefined;
1333
+ controlType?: string | undefined;
1334
+ dynaSysMode?: number | undefined;
1335
+ height?: number | undefined;
1336
+ logicName?: string | undefined;
1337
+ appDataEntityId?: string | undefined;
1338
+ controlAttributes?: {
1339
+ attrName?: string | undefined;
1340
+ attrValue?: string | undefined;
1341
+ appId: string;
1342
+ id?: string | undefined;
1343
+ name?: string | undefined;
1344
+ codeName?: string | undefined;
1345
+ userParam?: Record<string, string> | undefined;
1346
+ modelId?: string | undefined;
1347
+ modelType?: string | undefined;
1348
+ }[] | undefined;
1349
+ controlLogics?: {
1350
+ attrName?: string | undefined;
1351
+ eventArg?: string | undefined;
1352
+ eventArg2?: string | undefined;
1353
+ eventNames?: string | undefined;
1354
+ itemName?: string | undefined;
1355
+ logicTag?: string | undefined;
1356
+ logicType?: string | undefined;
1357
+ appDEUIActionId?: string | undefined;
1358
+ appDEUILogicId?: string | undefined;
1359
+ appDataEntityId?: string | undefined;
1360
+ appUILogicId?: string | undefined;
1361
+ appViewEngineId?: string | undefined;
1362
+ appViewLogicId?: string | undefined;
1363
+ scriptCode?: string | undefined;
1364
+ timer?: number | undefined;
1365
+ triggerType?: string | undefined;
1366
+ appId: string;
1367
+ id?: string | undefined;
1368
+ name?: string | undefined;
1369
+ codeName?: string | undefined;
1370
+ userParam?: Record<string, string> | undefined;
1371
+ modelId?: string | undefined;
1372
+ modelType?: string | undefined;
1373
+ }[] | undefined;
1374
+ controlParam?: {
1375
+ ctrlParams?: {
1376
+ [x: string]: any;
1377
+ [x: symbol]: any;
1378
+ constructor: Function;
1379
+ toString: () => string;
1380
+ toLocaleString: () => string;
1381
+ valueOf: () => Object;
1382
+ hasOwnProperty: (v: PropertyKey) => boolean;
1383
+ isPrototypeOf: (v: Object) => boolean;
1384
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1385
+ } | undefined;
1386
+ appId: string;
1387
+ id?: string | undefined;
1388
+ name?: string | undefined;
1389
+ codeName?: string | undefined;
1390
+ userParam?: Record<string, string> | undefined;
1391
+ modelId?: string | undefined;
1392
+ modelType?: string | undefined;
1393
+ } | undefined;
1394
+ controlRenders?: any[] | undefined;
1395
+ ctrlMsg?: {
1396
+ codeName?: string | undefined;
1397
+ msgModel?: string | undefined;
1398
+ ctrlMsgItems?: {
1399
+ content?: string | undefined;
1400
+ contentLanguageRes?: {
1401
+ defaultContent?: string | undefined;
1402
+ lanResTag?: string | undefined;
1403
+ lanResType?: string | undefined;
1404
+ refFlag?: boolean | undefined;
1405
+ appId: string;
1406
+ id?: string | undefined;
1407
+ name?: string | undefined;
1408
+ codeName?: string | undefined;
1409
+ userParam?: Record<string, string> | undefined;
1410
+ modelId?: string | undefined;
1411
+ modelType?: string | undefined;
1412
+ } | undefined;
1413
+ timeout?: number | undefined;
1414
+ appId: string;
1415
+ id?: string | undefined;
1416
+ name?: string | undefined;
1417
+ codeName?: string | undefined;
1418
+ userParam?: Record<string, string> | undefined;
1419
+ modelId?: string | undefined;
1420
+ modelType?: string | undefined;
1421
+ }[] | undefined;
1422
+ appId: string;
1423
+ id?: string | undefined;
1424
+ name?: string | undefined;
1425
+ userParam?: Record<string, string> | undefined;
1426
+ modelId?: string | undefined;
1427
+ modelType?: string | undefined;
1428
+ } | undefined;
1429
+ sysCss?: {
1430
+ codeName?: string | undefined;
1431
+ cssName?: string | undefined;
1432
+ cssStyle?: string | undefined;
1433
+ designCssStyle?: string | undefined;
1434
+ appId: string;
1435
+ id?: string | undefined;
1436
+ name?: string | undefined;
1437
+ userParam?: Record<string, string> | undefined;
1438
+ modelId?: string | undefined;
1439
+ modelType?: string | undefined;
1440
+ } | undefined;
1441
+ sysPFPluginId?: string | undefined;
1442
+ priority?: number | undefined;
1443
+ user2ControlAction?: {
1444
+ adappDELogicId?: string | undefined;
1445
+ actionDesc?: string | undefined;
1446
+ appDEMethodId?: string | undefined;
1447
+ appDataEntityId?: string | undefined;
1448
+ timeout?: number | undefined;
1449
+ appId: string;
1450
+ id?: string | undefined;
1451
+ name?: string | undefined;
1452
+ codeName?: string | undefined;
1453
+ userParam?: Record<string, string> | undefined;
1454
+ modelId?: string | undefined;
1455
+ modelType?: string | undefined;
1456
+ } | undefined;
1457
+ userControlAction?: {
1458
+ adappDELogicId?: string | undefined;
1459
+ actionDesc?: string | undefined;
1460
+ appDEMethodId?: string | undefined;
1461
+ appDataEntityId?: string | undefined;
1462
+ timeout?: number | undefined;
1463
+ appId: string;
1464
+ id?: string | undefined;
1465
+ name?: string | undefined;
1466
+ codeName?: string | undefined;
1467
+ userParam?: Record<string, string> | undefined;
1468
+ modelId?: string | undefined;
1469
+ modelType?: string | undefined;
1470
+ } | undefined;
1471
+ width?: number | undefined;
1472
+ appId: string;
1473
+ id?: string | undefined;
1474
+ name?: string | undefined;
1475
+ userParam?: Record<string, string> | undefined;
1476
+ modelId?: string | undefined;
1477
+ modelType?: string | undefined;
1478
+ appCounterRefs?: {
1479
+ appCounter?: {
1480
+ getAppDEActionId?: string | undefined;
1481
+ getAppDEDataSetId?: string | undefined;
1482
+ appDataEntityId?: string | undefined;
1483
+ codeName?: string | undefined;
1484
+ counterData?: string | undefined;
1485
+ counterData2?: string | undefined;
1486
+ counterType?: string | undefined;
1487
+ customCond?: string | undefined;
1488
+ counterId?: string | undefined;
1489
+ sysPFPluginId?: string | undefined;
1490
+ timer?: number | undefined;
1491
+ uniqueTag?: string | undefined;
1492
+ navigateContexts?: {
1493
+ desc?: string | undefined;
1494
+ key?: string | undefined;
1495
+ value?: string | undefined;
1496
+ rawValue?: boolean | undefined;
1497
+ appId: string;
1498
+ id?: string | undefined;
1499
+ name?: string | undefined;
1500
+ codeName?: string | undefined;
1501
+ userParam?: Record<string, string> | undefined;
1502
+ modelId?: string | undefined;
1503
+ modelType?: string | undefined;
1504
+ }[] | undefined;
1505
+ navigateParams?: {
1506
+ desc?: string | undefined;
1507
+ key?: string | undefined;
1508
+ value?: string | undefined;
1509
+ rawValue?: boolean | undefined;
1510
+ appId: string;
1511
+ id?: string | undefined;
1512
+ name?: string | undefined;
1513
+ codeName?: string | undefined;
1514
+ userParam?: Record<string, string> | undefined;
1515
+ modelId?: string | undefined;
1516
+ modelType?: string | undefined;
1517
+ }[] | undefined;
1518
+ appId: string;
1519
+ id?: string | undefined;
1520
+ name?: string | undefined;
1521
+ userParam?: Record<string, string> | undefined;
1522
+ modelId?: string | undefined;
1523
+ modelType?: string | undefined;
1524
+ } | undefined;
1525
+ refMode?: {
1526
+ [x: string]: any;
1527
+ [x: symbol]: any;
1528
+ constructor: Function;
1529
+ toString: () => string;
1530
+ toLocaleString: () => string;
1531
+ valueOf: () => Object;
1532
+ hasOwnProperty: (v: PropertyKey) => boolean;
1533
+ isPrototypeOf: (v: Object) => boolean;
1534
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1535
+ } | undefined;
1536
+ tag?: string | undefined;
1537
+ uniqueTag?: string | undefined;
1538
+ appId: string;
1539
+ id?: string | undefined;
1540
+ name?: string | undefined;
1541
+ codeName?: string | undefined;
1542
+ userParam?: Record<string, string> | undefined;
1543
+ modelId?: string | undefined;
1544
+ modelType?: string | undefined;
1545
+ }[] | undefined;
1546
+ appViewEngines?: {
1547
+ engineCat?: string | undefined;
1548
+ engineType?: string | undefined;
1549
+ params?: {
1550
+ paramType?: string | undefined;
1551
+ value?: {
1552
+ [x: string]: any;
1553
+ [x: symbol]: any;
1554
+ constructor: Function;
1555
+ toString: () => string;
1556
+ toLocaleString: () => string;
1557
+ valueOf: () => Object;
1558
+ hasOwnProperty: (v: PropertyKey) => boolean;
1559
+ isPrototypeOf: (v: Object) => boolean;
1560
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1561
+ } | undefined;
1562
+ appId: string;
1563
+ id?: string | undefined;
1564
+ name?: string | undefined;
1565
+ codeName?: string | undefined;
1566
+ userParam?: Record<string, string> | undefined;
1567
+ modelId?: string | undefined;
1568
+ modelType?: string | undefined;
1569
+ }[] | undefined;
1570
+ appId: string;
1571
+ id?: string | undefined;
1572
+ name?: string | undefined;
1573
+ codeName?: string | undefined;
1574
+ userParam?: Record<string, string> | undefined;
1575
+ modelId?: string | undefined;
1576
+ modelType?: string | undefined;
1577
+ }[] | undefined;
1578
+ appViewLogics?: {
1579
+ builtinAppUILogic?: {
1580
+ appDEUILogicId?: string | undefined;
1581
+ appDataEntityId?: string | undefined;
1582
+ appUILogicRefViews?: {
1583
+ openMode?: string | undefined;
1584
+ refMode?: string | undefined;
1585
+ refAppViewId?: string | undefined;
1586
+ navigateContexts?: {
1587
+ desc?: string | undefined;
1588
+ key?: string | undefined;
1589
+ value?: string | undefined;
1590
+ rawValue?: boolean | undefined;
1591
+ appId: string;
1592
+ id?: string | undefined;
1593
+ name?: string | undefined;
1594
+ codeName?: string | undefined;
1595
+ userParam?: Record<string, string> | undefined;
1596
+ modelId?: string | undefined;
1597
+ modelType?: string | undefined;
1598
+ }[] | undefined;
1599
+ navigateParams?: {
1600
+ desc?: string | undefined;
1601
+ key?: string | undefined;
1602
+ value?: string | undefined;
1603
+ rawValue?: boolean | undefined;
1604
+ appId: string;
1605
+ id?: string | undefined;
1606
+ name?: string | undefined;
1607
+ codeName?: string | undefined;
1608
+ userParam?: Record<string, string> | undefined;
1609
+ modelId?: string | undefined;
1610
+ modelType?: string | undefined;
1611
+ }[] | undefined;
1612
+ appId: string;
1613
+ id?: string | undefined;
1614
+ name?: string | undefined;
1615
+ codeName?: string | undefined;
1616
+ userParam?: Record<string, string> | undefined;
1617
+ modelId?: string | undefined;
1618
+ modelType?: string | undefined;
1619
+ }[] | undefined;
1620
+ sysPFPluginId?: string | undefined;
1621
+ viewLogicType?: string | undefined;
1622
+ builtinLogic?: boolean | undefined;
1623
+ codeName?: string | undefined;
1624
+ logicType?: string | undefined;
1625
+ viewLogicStyle?: string | undefined;
1626
+ appId: string;
1627
+ id?: string | undefined;
1628
+ name?: string | undefined;
1629
+ userParam?: Record<string, string> | undefined;
1630
+ modelId?: string | undefined;
1631
+ modelType?: string | undefined;
1632
+ } | undefined;
1633
+ attrName?: string | undefined;
1634
+ eventArg?: string | undefined;
1635
+ eventArg2?: string | undefined;
1636
+ eventNames?: string | undefined;
1637
+ itemName?: string | undefined;
1638
+ logicParam?: string | undefined;
1639
+ logicParam2?: string | undefined;
1640
+ logicTrigger?: string | undefined;
1641
+ logicType?: string | undefined;
1642
+ owner?: {
1643
+ [x: string]: any;
1644
+ [x: symbol]: any;
1645
+ constructor: Function;
1646
+ toString: () => string;
1647
+ toLocaleString: () => string;
1648
+ valueOf: () => Object;
1649
+ hasOwnProperty: (v: PropertyKey) => boolean;
1650
+ isPrototypeOf: (v: Object) => boolean;
1651
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1652
+ } | undefined;
1653
+ appDEUIActionId?: string | undefined;
1654
+ appDEUILogicId?: string | undefined;
1655
+ appDataEntityId?: string | undefined;
1656
+ appUILogicId?: string | undefined;
1657
+ appViewEngineId?: string | undefined;
1658
+ appViewLogicId?: string | undefined;
1659
+ sysPFPluginId?: string | undefined;
1660
+ ctrlName?: string | undefined;
1661
+ scriptCode?: string | undefined;
1662
+ timer?: number | undefined;
1663
+ builtinLogic?: boolean | undefined;
1664
+ appId: string;
1665
+ id?: string | undefined;
1666
+ name?: string | undefined;
1667
+ codeName?: string | undefined;
1668
+ userParam?: Record<string, string> | undefined;
1669
+ modelId?: string | undefined;
1670
+ modelType?: string | undefined;
1671
+ }[] | undefined;
1672
+ appViewRefs?: {
1673
+ height?: number | undefined;
1674
+ openMode?: string | undefined;
1675
+ owner?: {
1676
+ [x: string]: any;
1677
+ [x: symbol]: any;
1678
+ constructor: Function;
1679
+ toString: () => string;
1680
+ toLocaleString: () => string;
1681
+ valueOf: () => Object;
1682
+ hasOwnProperty: (v: PropertyKey) => boolean;
1683
+ isPrototypeOf: (v: Object) => boolean;
1684
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1685
+ } | undefined;
1686
+ parentDataJO?: {
1687
+ [x: string]: any;
1688
+ [x: symbol]: any;
1689
+ constructor: Function;
1690
+ toString: () => string;
1691
+ toLocaleString: () => string;
1692
+ valueOf: () => Object;
1693
+ hasOwnProperty: (v: PropertyKey) => boolean;
1694
+ isPrototypeOf: (v: Object) => boolean;
1695
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1696
+ } | undefined;
1697
+ realOpenMode?: string | undefined;
1698
+ realTitle?: string | undefined;
1699
+ realTitleLanguageRes?: {
1700
+ defaultContent?: string | undefined;
1701
+ lanResTag?: string | undefined;
1702
+ lanResType?: string | undefined;
1703
+ refFlag?: boolean | undefined;
1704
+ appId: string;
1705
+ id?: string | undefined;
1706
+ name?: string | undefined;
1707
+ codeName?: string | undefined;
1708
+ userParam?: Record<string, string> | undefined;
1709
+ modelId?: string | undefined;
1710
+ modelType?: string | undefined;
1711
+ } | undefined;
1712
+ refAppViewId?: string | undefined;
1713
+ viewParamJO?: {
1714
+ [x: string]: any;
1715
+ [x: symbol]: any;
1716
+ constructor: Function;
1717
+ toString: () => string;
1718
+ toLocaleString: () => string;
1719
+ valueOf: () => Object;
1720
+ hasOwnProperty: (v: PropertyKey) => boolean;
1721
+ isPrototypeOf: (v: Object) => boolean;
1722
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1723
+ } | undefined;
1724
+ width?: number | undefined;
1725
+ navigateContexts?: {
1726
+ desc?: string | undefined;
1727
+ key?: string | undefined;
1728
+ value?: string | undefined;
1729
+ rawValue?: boolean | undefined;
1730
+ appId: string;
1731
+ id?: string | undefined;
1732
+ name?: string | undefined;
1733
+ codeName?: string | undefined;
1734
+ userParam?: Record<string, string> | undefined;
1735
+ modelId?: string | undefined;
1736
+ modelType?: string | undefined;
1737
+ }[] | undefined;
1738
+ navigateParams?: {
1739
+ desc?: string | undefined;
1740
+ key?: string | undefined;
1741
+ value?: string | undefined;
1742
+ rawValue?: boolean | undefined;
1743
+ appId: string;
1744
+ id?: string | undefined;
1745
+ name?: string | undefined;
1746
+ codeName?: string | undefined;
1747
+ userParam?: Record<string, string> | undefined;
1748
+ modelId?: string | undefined;
1749
+ modelType?: string | undefined;
1750
+ }[] | undefined;
1751
+ appId: string;
1752
+ id?: string | undefined;
1753
+ name?: string | undefined;
1754
+ codeName?: string | undefined;
1755
+ userParam?: Record<string, string> | undefined;
1756
+ modelId?: string | undefined;
1757
+ modelType?: string | undefined;
1758
+ }[] | undefined;
1759
+ controls?: {
1760
+ codeName?: string | undefined;
1761
+ controlStyle?: string | undefined;
1762
+ controlType?: string | undefined;
1763
+ dynaSysMode?: number | undefined;
1764
+ height?: number | undefined;
1765
+ logicName?: string | undefined;
1766
+ appDataEntityId?: string | undefined;
1767
+ controlAttributes?: {
1768
+ attrName?: string | undefined;
1769
+ attrValue?: string | undefined;
1770
+ appId: string;
1771
+ id?: string | undefined;
1772
+ name?: string | undefined;
1773
+ codeName?: string | undefined;
1774
+ userParam?: Record<string, string> | undefined;
1775
+ modelId?: string | undefined;
1776
+ modelType?: string | undefined;
1777
+ }[] | undefined;
1778
+ controlLogics?: {
1779
+ attrName?: string | undefined;
1780
+ eventArg?: string | undefined;
1781
+ eventArg2?: string | undefined;
1782
+ eventNames?: string | undefined;
1783
+ itemName?: string | undefined;
1784
+ logicTag?: string | undefined;
1785
+ logicType?: string | undefined;
1786
+ appDEUIActionId?: string | undefined;
1787
+ appDEUILogicId?: string | undefined;
1788
+ appDataEntityId?: string | undefined;
1789
+ appUILogicId?: string | undefined;
1790
+ appViewEngineId?: string | undefined;
1791
+ appViewLogicId?: string | undefined;
1792
+ scriptCode?: string | undefined;
1793
+ timer?: number | undefined;
1794
+ triggerType?: string | undefined;
1795
+ appId: string;
1796
+ id?: string | undefined;
1797
+ name?: string | undefined;
1798
+ codeName?: string | undefined;
1799
+ userParam?: Record<string, string> | undefined;
1800
+ modelId?: string | undefined;
1801
+ modelType?: string | undefined;
1802
+ }[] | undefined;
1803
+ controlParam?: {
1804
+ ctrlParams?: {
1805
+ [x: string]: any;
1806
+ [x: symbol]: any;
1807
+ constructor: Function;
1808
+ toString: () => string;
1809
+ toLocaleString: () => string;
1810
+ valueOf: () => Object;
1811
+ hasOwnProperty: (v: PropertyKey) => boolean;
1812
+ isPrototypeOf: (v: Object) => boolean;
1813
+ propertyIsEnumerable: (v: PropertyKey) => boolean;
1814
+ } | undefined;
1815
+ appId: string;
1816
+ id?: string | undefined;
1817
+ name?: string | undefined;
1818
+ codeName?: string | undefined;
1819
+ userParam?: Record<string, string> | undefined;
1820
+ modelId?: string | undefined;
1821
+ modelType?: string | undefined;
1822
+ } | undefined;
1823
+ controlRenders?: any[] | undefined;
1824
+ ctrlMsg?: {
1825
+ codeName?: string | undefined;
1826
+ msgModel?: string | undefined;
1827
+ ctrlMsgItems?: {
1828
+ content?: string | undefined;
1829
+ contentLanguageRes?: {
1830
+ defaultContent?: string | undefined;
1831
+ lanResTag?: string | undefined;
1832
+ lanResType?: string | undefined;
1833
+ refFlag?: boolean | undefined;
1834
+ appId: string;
1835
+ id?: string | undefined;
1836
+ name?: string | undefined;
1837
+ codeName?: string | undefined;
1838
+ userParam?: Record<string, string> | undefined;
1839
+ modelId?: string | undefined;
1840
+ modelType?: string | undefined;
1841
+ } | undefined;
1842
+ timeout?: number | undefined;
1843
+ appId: string;
1844
+ id?: string | undefined;
1845
+ name?: string | undefined;
1846
+ codeName?: string | undefined;
1847
+ userParam?: Record<string, string> | undefined;
1848
+ modelId?: string | undefined;
1849
+ modelType?: string | undefined;
1850
+ }[] | undefined;
1851
+ appId: string;
1852
+ id?: string | undefined;
1853
+ name?: string | undefined;
1854
+ userParam?: Record<string, string> | undefined;
1855
+ modelId?: string | undefined;
1856
+ modelType?: string | undefined;
1857
+ } | undefined;
1858
+ sysCss?: {
1859
+ codeName?: string | undefined;
1860
+ cssName?: string | undefined;
1861
+ cssStyle?: string | undefined;
1862
+ designCssStyle?: string | undefined;
1863
+ appId: string;
1864
+ id?: string | undefined;
1865
+ name?: string | undefined;
1866
+ userParam?: Record<string, string> | undefined;
1867
+ modelId?: string | undefined;
1868
+ modelType?: string | undefined;
1869
+ } | undefined;
1870
+ sysPFPluginId?: string | undefined;
1871
+ priority?: number | undefined;
1872
+ user2ControlAction?: {
1873
+ adappDELogicId?: string | undefined;
1874
+ actionDesc?: string | undefined;
1875
+ appDEMethodId?: string | undefined;
1876
+ appDataEntityId?: string | undefined;
1877
+ timeout?: number | undefined;
1878
+ appId: string;
1879
+ id?: string | undefined;
1880
+ name?: string | undefined;
1881
+ codeName?: string | undefined;
1882
+ userParam?: Record<string, string> | undefined;
1883
+ modelId?: string | undefined;
1884
+ modelType?: string | undefined;
1885
+ } | undefined;
1886
+ userControlAction?: {
1887
+ adappDELogicId?: string | undefined;
1888
+ actionDesc?: string | undefined;
1889
+ appDEMethodId?: string | undefined;
1890
+ appDataEntityId?: string | undefined;
1891
+ timeout?: number | undefined;
1892
+ appId: string;
1893
+ id?: string | undefined;
1894
+ name?: string | undefined;
1895
+ codeName?: string | undefined;
1896
+ userParam?: Record<string, string> | undefined;
1897
+ modelId?: string | undefined;
1898
+ modelType?: string | undefined;
1899
+ } | undefined;
1900
+ width?: number | undefined;
1901
+ appId: string;
1902
+ id?: string | undefined;
1903
+ name?: string | undefined;
1904
+ userParam?: Record<string, string> | undefined;
1905
+ modelId?: string | undefined;
1906
+ modelType?: string | undefined;
1907
+ }[] | undefined;
1908
+ layout?: {
1909
+ layout?: string | undefined;
1910
+ appId: string;
1911
+ id?: string | undefined;
1912
+ name?: string | undefined;
1913
+ codeName?: string | undefined;
1914
+ userParam?: Record<string, string> | undefined;
1915
+ modelId?: string | undefined;
1916
+ modelType?: string | undefined;
1917
+ } | undefined;
1918
+ } | undefined;
1919
+ sysPFPluginId?: string | undefined;
1920
+ renderName?: string | undefined;
1921
+ renderType?: string | undefined;
1922
+ appId: string;
1923
+ id?: string | undefined;
1924
+ name?: string | undefined;
1925
+ codeName?: string | undefined;
1926
+ userParam?: Record<string, string> | undefined;
1927
+ modelId?: string | undefined;
1928
+ modelType?: string | undefined;
1929
+ }[] | undefined;
1930
+ appId: string;
1931
+ id?: string | undefined;
1932
+ name?: string | undefined;
1933
+ codeName?: string | undefined;
1934
+ userParam?: Record<string, string> | undefined;
1935
+ modelId?: string | undefined;
1936
+ modelType?: string | undefined;
1937
+ layout?: {
1938
+ layout?: string | undefined;
1939
+ appId: string;
1940
+ id?: string | undefined;
1941
+ name?: string | undefined;
1942
+ codeName?: string | undefined;
1943
+ userParam?: Record<string, string> | undefined;
1944
+ modelId?: string | undefined;
1945
+ modelType?: string | undefined;
1946
+ } | undefined;
1947
+ layoutPos?: {
1948
+ halignSelf?: string | undefined;
1949
+ height?: number | undefined;
1950
+ heightMode?: string | undefined;
1951
+ layout?: string | undefined;
1952
+ spacingBottom?: string | undefined;
1953
+ spacingLeft?: string | undefined;
1954
+ spacingRight?: string | undefined;
1955
+ spacingTop?: string | undefined;
1956
+ valignSelf?: string | undefined;
1957
+ width?: number | undefined;
1958
+ widthMode?: string | undefined;
1959
+ appId: string;
1960
+ id?: string | undefined;
1961
+ name?: string | undefined;
1962
+ codeName?: string | undefined;
1963
+ userParam?: Record<string, string> | undefined;
1964
+ modelId?: string | undefined;
1965
+ modelType?: string | undefined;
1966
+ } | undefined;
1967
+ navigateContexts?: {
1968
+ desc?: string | undefined;
1969
+ key?: string | undefined;
1970
+ value?: string | undefined;
1971
+ rawValue?: boolean | undefined;
1972
+ appId: string;
1973
+ id?: string | undefined;
1974
+ name?: string | undefined;
1975
+ codeName?: string | undefined;
1976
+ userParam?: Record<string, string> | undefined;
1977
+ modelId?: string | undefined;
1978
+ modelType?: string | undefined;
1979
+ }[] | undefined;
1980
+ navigateParams?: {
1981
+ desc?: string | undefined;
1982
+ key?: string | undefined;
1983
+ value?: string | undefined;
1984
+ rawValue?: boolean | undefined;
1985
+ appId: string;
1986
+ id?: string | undefined;
1987
+ name?: string | undefined;
1988
+ codeName?: string | undefined;
1989
+ userParam?: Record<string, string> | undefined;
1990
+ modelId?: string | undefined;
1991
+ modelType?: string | undefined;
1992
+ }[] | undefined;
1993
+ }[] | undefined;
45
1994
  appMenuItemState?: number | undefined;
46
1995
  counterId?: string | undefined;
47
1996
  cssStyle?: string | undefined;