@ibiz-template/web-theme 1.0.31 → 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,476 @@
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
+ "rawItem": {
15
+ "predefinedType": "NAV_TABS",
16
+ "id": "nav_tabs"
17
+ },
18
+ "caption": "标签页导航栏",
19
+ "itemStyle": "DEFAULT",
20
+ "itemType": "RAWITEM",
21
+ "layoutPos": {
22
+ "shrink": 0,
23
+ "layout": "FLEX"
24
+ },
25
+ "showCaption": true,
26
+ "id": "nav_tabs"
27
+ },
28
+ {
29
+ "rawItem": {
30
+ "predefinedType": "NAV_POS_INDEX",
31
+ "id": "nav_pos_index"
32
+ },
33
+ "caption": "导航区占位",
34
+ "itemStyle": "DEFAULT",
35
+ "itemType": "RAWITEM",
36
+ "layoutPos": {
37
+ "grow": 1,
38
+ "shrink": 1,
39
+ "layout": "FLEX"
40
+ },
41
+ "showCaption": true,
42
+ "id": "nav_pos_index"
43
+ }
44
+ ],
45
+ "layout": {
46
+ "layout": "FLEX"
47
+ },
48
+ "dataRegionType": "INHERIT",
49
+ "caption": "容器",
50
+ "contentHeight": 100,
51
+ "itemStyle": "DEFAULT",
52
+ "itemType": "CONTAINER",
53
+ "layoutPos": {
54
+ "layoutPos": "CENTER",
55
+ "height": 100,
56
+ "heightMode": "PERCENTAGE",
57
+ "layout": "BORDER"
58
+ },
59
+ "id": "container4"
60
+ }
61
+ ],
62
+ "predefinedType": "CONTAINER_SCROLL_MAIN",
63
+ "layout": {
64
+ "layout": "BORDER"
65
+ },
66
+ "dataRegionType": "INHERIT",
67
+ "caption": "面板容器",
68
+ "contentWidth": 100,
69
+ "itemStyle": "DEFAULT",
70
+ "itemType": "CONTAINER",
71
+ "layoutPos": {
72
+ "layoutPos": "CENTER",
73
+ "layout": "BORDER",
74
+ "width": 100,
75
+ "widthMode": "PERCENTAGE"
76
+ },
77
+ "showCaption": true,
78
+ "id": "container_scroll_main"
79
+ },
80
+ {
81
+ "panelItems": [
82
+ {
83
+ "panelItems": [
84
+ {
85
+ "rawItem": {
86
+ "predefinedType": "APP_APPTITLE",
87
+ "rawItemHeight": 90,
88
+ "id": "app_apptitle"
89
+ },
90
+ "caption": "应用标题",
91
+ "contentHeight": 90,
92
+ "height": 90,
93
+ "itemStyle": "DEFAULT",
94
+ "itemType": "RAWITEM",
95
+ "layoutPos": {
96
+ "shrink": 0,
97
+ "height": 90,
98
+ "heightMode": "PX",
99
+ "layout": "FLEX",
100
+ "widthMode": "FULL"
101
+ },
102
+ "showCaption": true,
103
+ "id": "app_apptitle"
104
+ },
105
+ {
106
+ "rawItem": {
107
+ "predefinedType": "AUTH_USERINFO",
108
+ "rawItemHeight": 68,
109
+ "id": "auth_userinfo"
110
+ },
111
+ "caption": "用户信息",
112
+ "contentHeight": 68,
113
+ "height": 68,
114
+ "itemStyle": "DEFAULT",
115
+ "itemType": "RAWITEM",
116
+ "layoutPos": {
117
+ "shrink": 0,
118
+ "height": 68,
119
+ "heightMode": "PX",
120
+ "layout": "FLEX",
121
+ "widthMode": "FULL"
122
+ },
123
+ "showCaption": true,
124
+ "id": "auth_userinfo"
125
+ },
126
+ {
127
+ "panelItems": [
128
+ {
129
+ "panelItems": [
130
+ {
131
+ "rawItem": {
132
+ "sysImage": {
133
+ "imagePath": "svg/message.svg",
134
+ "imagePathX": "svg/message.svg"
135
+ },
136
+ "contentType": "IMAGE",
137
+ "predefinedType": "USERMESSAGE",
138
+ "id": "usermessage"
139
+ },
140
+ "caption": "消息通知",
141
+ "itemStyle": "DEFAULT",
142
+ "itemType": "RAWITEM",
143
+ "layoutPos": {
144
+ "shrink": 1,
145
+ "heightMode": "FULL",
146
+ "layout": "FLEX",
147
+ "widthMode": "FULL"
148
+ },
149
+ "sysImage": {
150
+ "imagePath": "svg/message.svg",
151
+ "imagePathX": "svg/message.svg"
152
+ },
153
+ "showCaption": true,
154
+ "id": "usermessage"
155
+ }
156
+ ],
157
+ "layout": {
158
+ "layout": "FLEX"
159
+ },
160
+ "dataRegionType": "INHERIT",
161
+ "caption": "容器",
162
+ "contentHeight": 48,
163
+ "contentWidth": 48,
164
+ "height": 48,
165
+ "itemStyle": "DEFAULT",
166
+ "itemType": "CONTAINER",
167
+ "layoutPos": {
168
+ "shrink": 1,
169
+ "height": 48,
170
+ "heightMode": "PX",
171
+ "layout": "FLEX",
172
+ "width": 48,
173
+ "widthMode": "PX"
174
+ },
175
+ "width": 48,
176
+ "id": "container1"
177
+ },
178
+ {
179
+ "panelItems": [
180
+ {
181
+ "actionType": "NONE",
182
+ "buttonHeight": 48,
183
+ "buttonStyle": "DEFAULT",
184
+ "buttonType": "PANELBUTTON",
185
+ "buttonWidth": 48,
186
+ "renderMode": "BUTTON",
187
+ "tooltip": "按钮",
188
+ "uiactionTarget": "NONE",
189
+ "caption": "按钮",
190
+ "contentHeight": 48,
191
+ "contentWidth": 48,
192
+ "height": 48,
193
+ "itemStyle": "DEFAULT",
194
+ "itemType": "BUTTON",
195
+ "layoutPos": {
196
+ "shrink": 1,
197
+ "height": 48,
198
+ "heightMode": "FULL",
199
+ "layout": "FLEX",
200
+ "width": 48,
201
+ "widthMode": "FULL"
202
+ },
203
+ "sysImage": {
204
+ "imagePath": "svg/setting.svg",
205
+ "imagePathX": "svg/setting.svg"
206
+ },
207
+ "width": 48,
208
+ "id": "button_calluilogic1"
209
+ }
210
+ ],
211
+ "layout": {
212
+ "layout": "FLEX"
213
+ },
214
+ "dataRegionType": "INHERIT",
215
+ "caption": "容器",
216
+ "contentHeight": 48,
217
+ "contentWidth": 48,
218
+ "height": 48,
219
+ "itemStyle": "DEFAULT",
220
+ "itemType": "CONTAINER",
221
+ "layoutPos": {
222
+ "shrink": 1,
223
+ "height": 48,
224
+ "heightMode": "PX",
225
+ "layout": "FLEX",
226
+ "width": 48,
227
+ "widthMode": "PX"
228
+ },
229
+ "width": 48,
230
+ "id": "container2"
231
+ },
232
+ {
233
+ "panelItems": [
234
+ {
235
+ "actionType": "NONE",
236
+ "buttonHeight": 48,
237
+ "buttonStyle": "DEFAULT",
238
+ "buttonType": "PANELBUTTON",
239
+ "buttonWidth": 48,
240
+ "renderMode": "BUTTON",
241
+ "tooltip": "按钮",
242
+ "uiactionTarget": "NONE",
243
+ "caption": "按钮",
244
+ "contentHeight": 48,
245
+ "contentWidth": 48,
246
+ "height": 48,
247
+ "itemStyle": "DEFAULT",
248
+ "itemType": "BUTTON",
249
+ "layoutPos": {
250
+ "shrink": 1,
251
+ "height": 48,
252
+ "heightMode": "FULL",
253
+ "layout": "FLEX",
254
+ "width": 48,
255
+ "widthMode": "FULL"
256
+ },
257
+ "sysImage": {
258
+ "imagePath": "svg/helper.svg",
259
+ "imagePathX": "svg/helper.svg"
260
+ },
261
+ "width": 48,
262
+ "id": "button_calluilogic2"
263
+ }
264
+ ],
265
+ "layout": {
266
+ "layout": "FLEX"
267
+ },
268
+ "dataRegionType": "INHERIT",
269
+ "caption": "容器",
270
+ "contentHeight": 48,
271
+ "contentWidth": 48,
272
+ "height": 48,
273
+ "itemStyle": "DEFAULT",
274
+ "itemType": "CONTAINER",
275
+ "layoutPos": {
276
+ "shrink": 1,
277
+ "height": 48,
278
+ "heightMode": "PX",
279
+ "layout": "FLEX",
280
+ "width": 48,
281
+ "widthMode": "PX"
282
+ },
283
+ "width": 48,
284
+ "id": "container3"
285
+ },
286
+ {
287
+ "panelItems": [
288
+ {
289
+ "actionType": "NONE",
290
+ "buttonHeight": 48,
291
+ "buttonStyle": "DEFAULT",
292
+ "buttonType": "PANELBUTTON",
293
+ "buttonWidth": 48,
294
+ "renderMode": "BUTTON",
295
+ "tooltip": "按钮",
296
+ "uiactionTarget": "NONE",
297
+ "caption": "按钮",
298
+ "contentHeight": 48,
299
+ "contentWidth": 48,
300
+ "height": 48,
301
+ "itemStyle": "DEFAULT",
302
+ "itemType": "BUTTON",
303
+ "layoutPos": {
304
+ "shrink": 1,
305
+ "height": 48,
306
+ "heightMode": "FULL",
307
+ "layout": "FLEX",
308
+ "width": 48,
309
+ "widthMode": "FULL"
310
+ },
311
+ "sysImage": {
312
+ "imagePath": "svg/custom-workbench.svg",
313
+ "imagePathX": "svg/custom-workbench.svg"
314
+ },
315
+ "width": 48,
316
+ "id": "button_calluilogic3"
317
+ }
318
+ ],
319
+ "layout": {
320
+ "layout": "FLEX"
321
+ },
322
+ "dataRegionType": "INHERIT",
323
+ "caption": "容器",
324
+ "contentHeight": 48,
325
+ "contentWidth": 48,
326
+ "height": 48,
327
+ "itemStyle": "DEFAULT",
328
+ "itemType": "CONTAINER",
329
+ "layoutPos": {
330
+ "shrink": 1,
331
+ "height": 48,
332
+ "heightMode": "PX",
333
+ "layout": "FLEX",
334
+ "width": 48,
335
+ "widthMode": "PX"
336
+ },
337
+ "width": 48,
338
+ "id": "container5"
339
+ }
340
+ ],
341
+ "predefinedType": "INDEX_ACTIONS",
342
+ "layout": {
343
+ "align": "space-around",
344
+ "dir": "row",
345
+ "layout": "FLEX",
346
+ "valign": "center"
347
+ },
348
+ "dataRegionType": "INHERIT",
349
+ "caption": "容器",
350
+ "itemStyle": "DEFAULT",
351
+ "itemType": "CONTAINER",
352
+ "layoutPos": {
353
+ "shrink": 0,
354
+ "layout": "FLEX",
355
+ "widthMode": "FULL"
356
+ },
357
+ "id": "indexactions"
358
+ },
359
+ {
360
+ "panelItems": [
361
+ {
362
+ "rawItem": {
363
+ "caption": "文本内容",
364
+ "halign": "LEFT",
365
+ "renderMode": "TEXT",
366
+ "valign": "MIDDLE",
367
+ "wrapMode": "NOWRAP",
368
+ "contentType": "RAW",
369
+ "predefinedType": "INDEX_VIEW_SEARCH",
370
+ "id": "index_view_search"
371
+ },
372
+ "caption": "搜索栏",
373
+ "itemStyle": "DEFAULT",
374
+ "itemType": "RAWITEM",
375
+ "layoutPos": {
376
+ "shrink": 1,
377
+ "layout": "FLEX"
378
+ },
379
+ "showCaption": true,
380
+ "id": "index_view_search"
381
+ }
382
+ ],
383
+ "layout": {
384
+ "align": "center",
385
+ "layout": "FLEX",
386
+ "valign": "center"
387
+ },
388
+ "dataRegionType": "INHERIT",
389
+ "caption": "容器",
390
+ "contentHeight": 52,
391
+ "height": 52,
392
+ "itemStyle": "DEFAULT",
393
+ "itemType": "CONTAINER",
394
+ "layoutPos": {
395
+ "shrink": 0,
396
+ "height": 52,
397
+ "heightMode": "PX",
398
+ "layout": "FLEX",
399
+ "widthMode": "FULL"
400
+ },
401
+ "id": "container"
402
+ },
403
+ {
404
+ "caption": "首页菜单",
405
+ "itemStyle": "DEFAULT",
406
+ "itemType": "CTRLPOS",
407
+ "layoutPos": {
408
+ "grow": 1,
409
+ "shrink": 1,
410
+ "layout": "FLEX",
411
+ "widthMode": "FULL"
412
+ },
413
+ "showCaption": true,
414
+ "id": "appmenu"
415
+ }
416
+ ],
417
+ "predefinedType": "AppHeader",
418
+ "layout": {
419
+ "dir": "column",
420
+ "layout": "FLEX"
421
+ },
422
+ "dataRegionType": "INHERIT",
423
+ "caption": "容器",
424
+ "itemStyle": "DEFAULT",
425
+ "itemType": "CONTAINER",
426
+ "layoutPos": {
427
+ "layoutPos": "CENTER",
428
+ "heightMode": "FULL",
429
+ "layout": "BORDER"
430
+ },
431
+ "id": "app_header"
432
+ }
433
+ ],
434
+ "predefinedType": "CONTAINER_SCROLL_LEFT",
435
+ "layout": {
436
+ "layout": "BORDER"
437
+ },
438
+ "dataRegionType": "INHERIT",
439
+ "caption": "面板容器",
440
+ "contentWidth": 256,
441
+ "itemStyle": "DEFAULT",
442
+ "itemType": "CONTAINER",
443
+ "layoutPos": {
444
+ "layoutPos": "WEST",
445
+ "layout": "BORDER",
446
+ "width": 256,
447
+ "widthMode": "PX"
448
+ },
449
+ "width": 256,
450
+ "showCaption": true,
451
+ "id": "container_scroll_left"
452
+ }
453
+ ],
454
+ "predefinedType": "CONTAINER_SCROLL",
455
+ "layout": {
456
+ "layout": "BORDER"
457
+ },
458
+ "dataRegionType": "INHERIT",
459
+ "caption": "滚动条容器",
460
+ "itemStyle": "DEFAULT",
461
+ "itemType": "CONTAINER",
462
+ "layoutPos": {
463
+ "shrink": 1,
464
+ "layout": "FLEX"
465
+ },
466
+ "id": "container_scroll1"
467
+ }
468
+ ],
469
+ "layoutPanel": true,
470
+ "codeName": "IndexViewLayout",
471
+ "controlType": "VIEWLAYOUTPANEL",
472
+ "logicName": "应用首页视图布局(预置模型)",
473
+ "controlParam": {},
474
+ "name": "layoutpanel",
475
+ "id": "indexviewlayout"
476
+ }