@ibiz-template/web-theme 1.0.31-dev.0 → 1.0.32-dev.0

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 (85) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/index.min.css +1 -1
  3. package/dist/index.system.min.js +1 -1
  4. package/dist/index.system.min.js.map +1 -1
  5. package/es/index.d.ts +4 -1
  6. package/es/index.mjs +10 -1
  7. package/es/theme/index.css +1 -1
  8. package/es/theme/theme/default/default-theme.css +1 -1
  9. package/es/theme/theme/default-dark/default-dark-theme.css +1 -1
  10. package/es/theme/theme/index.css +1 -1
  11. package/lib/index.cjs +11 -2
  12. package/lib/theme/index.css +1 -1
  13. package/lib/theme/theme/default/default-theme.css +1 -1
  14. package/lib/theme/theme/default-dark/default-dark-theme.css +1 -1
  15. package/lib/theme/theme/index.css +1 -1
  16. package/package.json +6 -3
  17. package/src/index.ts +12 -0
  18. package/src/publish/app-index-view-layout-blank-mode.ts +31 -0
  19. package/src/publish/app-index-view-layout-center.ts +28 -0
  20. package/src/publish/app-index-view-layout-top.ts +426 -0
  21. package/src/publish/app-index-view-layout.ts +476 -0
  22. package/src/publish/app-login-view.ts +252 -0
  23. package/src/publish/control-layout/control-layout-model-repository-chart-exp-bar-layout.ts +178 -0
  24. package/src/publish/control-layout/control-layout-model-repository-data-view-exp-bar-layout.ts +180 -0
  25. package/src/publish/control-layout/control-layout-model-repository-grid-exp-bar-layout.ts +179 -0
  26. package/src/publish/control-layout/control-layout-model-repository-list-exp-bar-layout.ts +179 -0
  27. package/src/publish/control-layout/control-layout-model-repository-search-form-layout.ts +130 -0
  28. package/src/publish/control-layout/control-layout-model-repository-tree-exp-bar-layout.ts +179 -0
  29. package/src/publish/index.ts +193 -0
  30. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-calendar-exp-view-layout.ts +98 -0
  31. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-calendar-view-layout.ts +206 -0
  32. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-chart-exp-view-layout.ts +100 -0
  33. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-chart-view-layout.ts +251 -0
  34. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-data-view-exp-view-layout.ts +98 -0
  35. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-data-view-layout.ts +251 -0
  36. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-edit-view-2-layout.ts +275 -0
  37. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-edit-view-3-layout.ts +257 -0
  38. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-edit-view-4-layout.ts +234 -0
  39. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-edit-view-layout.ts +176 -0
  40. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-grid-exp-view-layout.ts +98 -0
  41. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-grid-view-layout.ts +251 -0
  42. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-index-pickup-data-view-layout.ts +28 -0
  43. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-kanban-view-layout.ts +251 -0
  44. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-list-exp-view-layout.ts +98 -0
  45. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-list-view-layout.ts +251 -0
  46. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-map-view-layout.ts +321 -0
  47. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-option-view-layout.ts +228 -0
  48. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-panel-view-layout.ts +176 -0
  49. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-data-view-layout.ts +73 -0
  50. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-grid-view-layout.ts +73 -0
  51. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-tree-view-layout.ts +72 -0
  52. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-view-2-layout.ts +273 -0
  53. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-view-layout.ts +228 -0
  54. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-report-view-layout.ts +221 -0
  55. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout.ts +201 -0
  56. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tree-exp-view-layout.ts +98 -0
  57. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tree-grid-ex-view-layout.ts +250 -0
  58. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tree-grid-view-layout.ts +250 -0
  59. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tree-view-layout.ts +250 -0
  60. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-wizard-view-layout.ts +49 -0
  61. package/src/publish/view-layout-model-repository/view-layout-model-repository-dem-edit-view-9-layout.ts +297 -0
  62. package/src/publish/view-layout-model-repository/view-layout-model-repository-dem-pickup-view-2-layout.ts +414 -0
  63. package/src/publish/view-layout-model-repository/view-layout-model-repository-dem-pickup-view-layout.ts +368 -0
  64. package/src/publish/view-layout-model-repository/view-layout-model-repository-dewf-dyna-action-view-layout.ts +98 -0
  65. package/src/publish/view-layout-model-repository/view-layout-model-repository-dewf-dyna-edit-view-3-layout.ts +257 -0
  66. package/src/publish/view-layout-model-repository/view-layout-model-repository-dewf-dyna-edit-view-layout.ts +175 -0
  67. package/src/publish/view-layout-model-repository/view-layout-model-repository-dewf-dyna-start-view-layout.ts +99 -0
  68. package/src/publish/view-layout-model-repository/view-layout-model-repository-form-pickup-data-view.ts +28 -0
  69. package/src/theme/elements/index.scss +35 -0
  70. package/src/theme/generic/element-plus.scss +452 -0
  71. package/src/theme/generic/index.scss +2 -0
  72. package/src/theme/index.scss +17 -0
  73. package/src/theme/objects/expand/expand.scss +41 -0
  74. package/src/theme/objects/index.scss +3 -0
  75. package/src/theme/objects/state/state.scss +1 -0
  76. package/src/theme/theme/dark/dark-theme.scss +304 -0
  77. package/src/theme/theme/default/default-theme.scss +404 -0
  78. package/src/theme/theme/default-dark/default-dark-theme.scss +403 -0
  79. package/src/theme/theme/index.scss +7 -0
  80. package/src/theme/theme/light/light-theme.scss +337 -0
  81. package/src/theme/tumps/index.scss +1 -0
  82. package/src/theme/var.scss +88 -0
  83. package/src/types.d.ts +1 -0
  84. package/es/theme/theme/omni-oa/omni-oa-theme.css +0 -1
  85. package/lib/theme/theme/omni-oa/omni-oa-theme.css +0 -1
@@ -0,0 +1,414 @@
1
+ export default {
2
+ "layoutMode": "FLEX",
3
+ "layout": {
4
+ "layout": "FLEX"
5
+ },
6
+ "rootPanelItems": [
7
+ {
8
+ "panelItems": [
9
+ {
10
+ "panelItems": [
11
+ {
12
+ "panelItems": [
13
+ {
14
+ "panelItems": [
15
+ {
16
+ "caption": "页面标题",
17
+ "itemStyle": "DEFAULT",
18
+ "itemType": "CTRLPOS",
19
+ "layoutPos": {
20
+ "shrink": 1,
21
+ "layout": "FLEX"
22
+ },
23
+ "showCaption": true,
24
+ "id": "captionbar"
25
+ }
26
+ ],
27
+ "layout": {
28
+ "align": "center",
29
+ "layout": "FLEX"
30
+ },
31
+ "dataRegionType": "INHERIT",
32
+ "caption": "容器",
33
+ "itemStyle": "DEFAULT",
34
+ "itemType": "CONTAINER",
35
+ "layoutPos": {
36
+ "shrink": 1,
37
+ "heightMode": "FULL",
38
+ "layout": "FLEX"
39
+ },
40
+ "id": "view_captionbar"
41
+ }
42
+ ],
43
+ "layout": {
44
+ "layout": "FLEX"
45
+ },
46
+ "dataRegionType": "INHERIT",
47
+ "caption": "容器",
48
+ "itemStyle": "DEFAULT",
49
+ "itemType": "CONTAINER",
50
+ "layoutPos": {
51
+ "shrink": 1,
52
+ "heightMode": "FULL",
53
+ "layout": "FLEX"
54
+ },
55
+ "id": "view_header_left"
56
+ },
57
+ {
58
+ "panelItems": [
59
+ {
60
+ "panelItems": [
61
+ {
62
+ "caption": "工具栏",
63
+ "itemStyle": "DEFAULT",
64
+ "itemType": "CTRLPOS",
65
+ "layoutPos": {
66
+ "shrink": 1,
67
+ "layout": "FLEX"
68
+ },
69
+ "showCaption": true,
70
+ "id": "toolbar"
71
+ }
72
+ ],
73
+ "layout": {
74
+ "align": "center",
75
+ "layout": "FLEX"
76
+ },
77
+ "dataRegionType": "INHERIT",
78
+ "caption": "容器",
79
+ "itemStyle": "DEFAULT",
80
+ "itemType": "CONTAINER",
81
+ "layoutPos": {
82
+ "shrink": 1,
83
+ "heightMode": "FULL",
84
+ "layout": "FLEX"
85
+ },
86
+ "id": "view_toolbar"
87
+ }
88
+ ],
89
+ "layout": {
90
+ "layout": "FLEX"
91
+ },
92
+ "dataRegionType": "INHERIT",
93
+ "caption": "容器",
94
+ "itemStyle": "DEFAULT",
95
+ "itemType": "CONTAINER",
96
+ "layoutPos": {
97
+ "shrink": 1,
98
+ "heightMode": "FULL",
99
+ "layout": "FLEX"
100
+ },
101
+ "id": "view_header_right"
102
+ }
103
+ ],
104
+ "predefinedType": "VIEWHEADER",
105
+ "layout": {
106
+ "align": "space-between",
107
+ "dir": "row",
108
+ "layout": "FLEX",
109
+ "valign": "center"
110
+ },
111
+ "dataRegionType": "INHERIT",
112
+ "caption": "容器",
113
+ "itemStyle": "DEFAULT",
114
+ "itemType": "CONTAINER",
115
+ "layoutPos": {
116
+ "shrink": 0,
117
+ "layout": "FLEX"
118
+ },
119
+ "id": "view_header"
120
+ }
121
+ ],
122
+ "predefinedType": "PANELPART",
123
+ "layout": {
124
+ "layout": "FLEX"
125
+ },
126
+ "dataRegionType": "INHERIT",
127
+ "caption": "引用布局面板",
128
+ "itemStyle": "DEFAULT",
129
+ "itemType": "CONTAINER",
130
+ "layoutPos": {
131
+ "shrink": 1,
132
+ "layout": "FLEX"
133
+ },
134
+ "showCaption": true,
135
+ "id": "panelpart"
136
+ },
137
+ {
138
+ "panelItems": [
139
+ {
140
+ "panelItems": [
141
+ {
142
+ "panelItems": [
143
+ {
144
+ "caption": "树导航栏",
145
+ "itemStyle": "DEFAULT",
146
+ "itemType": "CTRLPOS",
147
+ "layoutPos": {
148
+ "shrink": 1,
149
+ "layout": "FLEX"
150
+ },
151
+ "showCaption": true,
152
+ "id": "treeexpbar"
153
+ }
154
+ ],
155
+ "layout": {
156
+ "layout": "FLEX"
157
+ },
158
+ "dataRegionType": "INHERIT",
159
+ "caption": "容器",
160
+ "itemStyle": "DEFAULT",
161
+ "itemType": "CONTAINER",
162
+ "layoutPos": {
163
+ "shrink": 0,
164
+ "layout": "FLEX"
165
+ },
166
+ "id": "container6"
167
+ },
168
+ {
169
+ "panelItems": [
170
+ {
171
+ "caption": "控件占位",
172
+ "itemStyle": "DEFAULT",
173
+ "itemType": "CTRLPOS",
174
+ "layoutPos": {
175
+ "grow": 1,
176
+ "shrink": 1,
177
+ "layout": "FLEX"
178
+ },
179
+ "showCaption": true,
180
+ "id": "pickupviewpanel"
181
+ }
182
+ ],
183
+ "predefinedType": "VIEWCONTENT",
184
+ "layout": {
185
+ "layout": "FLEX"
186
+ },
187
+ "dataRegionType": "INHERIT",
188
+ "caption": "容器",
189
+ "itemStyle": "DEFAULT",
190
+ "itemType": "CONTAINER",
191
+ "layoutPos": {
192
+ "grow": 1,
193
+ "shrink": 1,
194
+ "layout": "FLEX"
195
+ },
196
+ "id": "container7"
197
+ }
198
+ ],
199
+ "layout": {
200
+ "dir": "row",
201
+ "layout": "FLEX"
202
+ },
203
+ "dataRegionType": "INHERIT",
204
+ "caption": "容器",
205
+ "itemStyle": "DEFAULT",
206
+ "itemType": "CONTAINER",
207
+ "layoutPos": {
208
+ "grow": 1,
209
+ "shrink": 1,
210
+ "layout": "FLEX"
211
+ },
212
+ "id": "container3"
213
+ },
214
+ {
215
+ "panelItems": [
216
+ {
217
+ "actionType": "UIACTION",
218
+ "buttonStyle": "DEFAULT",
219
+ "buttonType": "PANELBUTTON",
220
+ "uiactionId": "addselection",
221
+ "renderMode": "BUTTON",
222
+ "tooltip": "添加选中数据",
223
+ "caption": "添加选中数据",
224
+ "itemStyle": "DEFAULT",
225
+ "itemType": "BUTTON",
226
+ "layoutPos": {
227
+ "shrink": 1,
228
+ "layout": "FLEX",
229
+ "spacingBottom": "OUTERMEDIUM"
230
+ },
231
+ "showCaption": true,
232
+ "id": "button_addselection"
233
+ },
234
+ {
235
+ "actionType": "UIACTION",
236
+ "buttonStyle": "DEFAULT",
237
+ "buttonType": "PANELBUTTON",
238
+ "uiactionId": "addall",
239
+ "renderMode": "BUTTON",
240
+ "tooltip": "添加全部数据",
241
+ "caption": "添加全部数据",
242
+ "itemStyle": "DEFAULT",
243
+ "itemType": "BUTTON",
244
+ "layoutPos": {
245
+ "shrink": 1,
246
+ "layout": "FLEX",
247
+ "spacingBottom": "OUTERMEDIUM"
248
+ },
249
+ "showCaption": true,
250
+ "id": "button_addall"
251
+ },
252
+ {
253
+ "actionType": "UIACTION",
254
+ "buttonStyle": "DEFAULT",
255
+ "buttonType": "PANELBUTTON",
256
+ "uiactionId": "removeall",
257
+ "renderMode": "BUTTON",
258
+ "tooltip": "移除全部数据",
259
+ "caption": "移除全部数据",
260
+ "itemStyle": "DEFAULT",
261
+ "itemType": "BUTTON",
262
+ "layoutPos": {
263
+ "shrink": 1,
264
+ "layout": "FLEX",
265
+ "spacingBottom": "OUTERMEDIUM"
266
+ },
267
+ "showCaption": true,
268
+ "id": "button_removeall"
269
+ },
270
+ {
271
+ "actionType": "UIACTION",
272
+ "buttonStyle": "DEFAULT",
273
+ "buttonType": "PANELBUTTON",
274
+ "uiactionId": "removeselection",
275
+ "renderMode": "BUTTON",
276
+ "tooltip": "移除选中数据",
277
+ "caption": "移除选中数据",
278
+ "itemStyle": "DEFAULT",
279
+ "itemType": "BUTTON",
280
+ "layoutPos": {
281
+ "shrink": 1,
282
+ "layout": "FLEX"
283
+ },
284
+ "showCaption": true,
285
+ "id": "button_removeselection"
286
+ }
287
+ ],
288
+ "layout": {
289
+ "align": "center",
290
+ "dir": "column",
291
+ "layout": "FLEX"
292
+ },
293
+ "dataRegionType": "INHERIT",
294
+ "caption": "容器",
295
+ "itemStyle": "DEFAULT",
296
+ "itemType": "CONTAINER",
297
+ "layoutPos": {
298
+ "shrink": 0,
299
+ "layout": "FLEX",
300
+ "spacingLeft": "OUTERMEDIUM",
301
+ "spacingRight": "OUTERMEDIUM"
302
+ },
303
+ "id": "container4"
304
+ },
305
+ {
306
+ "panelItems": [
307
+ {
308
+ "caption": "列表",
309
+ "itemStyle": "DEFAULT",
310
+ "itemType": "CTRLPOS",
311
+ "layoutPos": {
312
+ "shrink": 1,
313
+ "layout": "FLEX"
314
+ },
315
+ "showCaption": true,
316
+ "id": "simplelist"
317
+ }
318
+ ],
319
+ "layout": {
320
+ "layout": "FLEX"
321
+ },
322
+ "dataRegionType": "INHERIT",
323
+ "caption": "容器",
324
+ "contentWidth": 300,
325
+ "itemStyle": "DEFAULT",
326
+ "itemType": "CONTAINER",
327
+ "layoutPos": {
328
+ "shrink": 0,
329
+ "layout": "FLEX",
330
+ "width": 300,
331
+ "widthMode": "PX"
332
+ },
333
+ "width": 300,
334
+ "id": "container5"
335
+ }
336
+ ],
337
+ "predefinedType": "VIEWCONTENT",
338
+ "layout": {
339
+ "dir": "row",
340
+ "layout": "FLEX"
341
+ },
342
+ "dataRegionType": "INHERIT",
343
+ "caption": "容器",
344
+ "itemStyle": "DEFAULT",
345
+ "itemType": "CONTAINER",
346
+ "layoutPos": {
347
+ "grow": 1,
348
+ "shrink": 1,
349
+ "layout": "FLEX"
350
+ },
351
+ "id": "view_content"
352
+ },
353
+ {
354
+ "panelItems": [
355
+ {
356
+ "actionType": "UIACTION",
357
+ "buttonStyle": "PRIMARY",
358
+ "buttonType": "PANELBUTTON",
359
+ "uiactionId": "ok",
360
+ "renderMode": "BUTTON",
361
+ "tooltip": "确定",
362
+ "caption": "确定",
363
+ "itemStyle": "PRIMARY",
364
+ "itemType": "BUTTON",
365
+ "layoutPos": {
366
+ "shrink": 1,
367
+ "layout": "FLEX"
368
+ },
369
+ "showCaption": true,
370
+ "id": "button_okaction"
371
+ },
372
+ {
373
+ "actionType": "UIACTION",
374
+ "buttonStyle": "INFO",
375
+ "buttonType": "PANELBUTTON",
376
+ "uiactionId": "cancel",
377
+ "renderMode": "BUTTON",
378
+ "tooltip": "取消",
379
+ "caption": "取消",
380
+ "itemStyle": "INFO",
381
+ "itemType": "BUTTON",
382
+ "layoutPos": {
383
+ "shrink": 1,
384
+ "layout": "FLEX"
385
+ },
386
+ "showCaption": true,
387
+ "id": "button_cancelaction"
388
+ }
389
+ ],
390
+ "layout": {
391
+ "dir": "row-reverse",
392
+ "layout": "FLEX",
393
+ "valign": "center"
394
+ },
395
+ "dataRegionType": "INHERIT",
396
+ "caption": "容器",
397
+ "itemStyle": "DEFAULT",
398
+ "itemType": "CONTAINER",
399
+ "layoutPos": {
400
+ "shrink": 0,
401
+ "layout": "FLEX"
402
+ },
403
+ "id": "view_footer"
404
+ }
405
+ ],
406
+ "layoutPanel": true,
407
+ "codeName": "MPickupView2Layout",
408
+ "controlType": "VIEWLAYOUTPANEL",
409
+ "logicName": "多项选择视图(左右关系)布局面板(预置模型)",
410
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
411
+ "controlParam": {},
412
+ "name": "layoutpanel",
413
+ "id": "mpickupview2layout"
414
+ }