@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,426 @@
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": "app_content"
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
+ "id": "app_apptitle"
88
+ },
89
+ "caption": "应用标题",
90
+ "itemStyle": "DEFAULT",
91
+ "itemType": "RAWITEM",
92
+ "layoutPos": {
93
+ "shrink": 0,
94
+ "layout": "FLEX"
95
+ },
96
+ "showCaption": true,
97
+ "id": "app_apptitle"
98
+ },
99
+ {
100
+ "caption": "首页菜单",
101
+ "itemStyle": "DEFAULT",
102
+ "itemType": "CTRLPOS",
103
+ "layoutPos": {
104
+ "shrink": 1,
105
+ "layout": "FLEX"
106
+ },
107
+ "showCaption": true,
108
+ "id": "appmenu"
109
+ },
110
+ {
111
+ "panelItems": [
112
+ {
113
+ "panelItems": [
114
+ {
115
+ "rawItem": {
116
+ "caption": "文本内容",
117
+ "halign": "LEFT",
118
+ "renderMode": "TEXT",
119
+ "valign": "MIDDLE",
120
+ "wrapMode": "NOWRAP",
121
+ "contentType": "RAW",
122
+ "predefinedType": "INDEX_VIEW_SEARCH",
123
+ "id": "index_view_search"
124
+ },
125
+ "caption": "文本",
126
+ "itemStyle": "DEFAULT",
127
+ "itemType": "RAWITEM",
128
+ "layoutPos": {
129
+ "shrink": 1,
130
+ "layout": "FLEX"
131
+ },
132
+ "showCaption": true,
133
+ "id": "index_view_search"
134
+ }
135
+ ],
136
+ "layout": {
137
+ "align": "center",
138
+ "layout": "FLEX",
139
+ "valign": "center"
140
+ },
141
+ "dataRegionType": "INHERIT",
142
+ "caption": "容器",
143
+ "itemStyle": "DEFAULT",
144
+ "itemType": "CONTAINER",
145
+ "layoutPos": {
146
+ "shrink": 1,
147
+ "heightMode": "FULL",
148
+ "layout": "FLEX"
149
+ },
150
+ "id": "container3"
151
+ },
152
+ {
153
+ "panelItems": [
154
+ {
155
+ "panelItems": [
156
+ {
157
+ "actionType": "NONE",
158
+ "buttonStyle": "DEFAULT",
159
+ "buttonType": "PANELBUTTON",
160
+ "renderMode": "BUTTON",
161
+ "tooltip": "按钮",
162
+ "uiactionTarget": "NONE",
163
+ "caption": "按钮",
164
+ "itemStyle": "DEFAULT",
165
+ "itemType": "BUTTON",
166
+ "layoutPos": {
167
+ "shrink": 1,
168
+ "layout": "FLEX"
169
+ },
170
+ "sysImage": {
171
+ "imagePath": "svg/message.svg",
172
+ "imagePathX": "svg/message.svg"
173
+ },
174
+ "id": "button_calluilogic"
175
+ }
176
+ ],
177
+ "layout": {
178
+ "layout": "FLEX"
179
+ },
180
+ "dataRegionType": "INHERIT",
181
+ "caption": "容器",
182
+ "itemStyle": "DEFAULT",
183
+ "itemType": "CONTAINER",
184
+ "layoutPos": {
185
+ "shrink": 1,
186
+ "layout": "FLEX"
187
+ },
188
+ "id": "container4"
189
+ },
190
+ {
191
+ "panelItems": [
192
+ {
193
+ "actionType": "NONE",
194
+ "buttonStyle": "DEFAULT",
195
+ "buttonType": "PANELBUTTON",
196
+ "renderMode": "BUTTON",
197
+ "tooltip": "按钮",
198
+ "uiactionTarget": "NONE",
199
+ "caption": "按钮",
200
+ "itemStyle": "DEFAULT",
201
+ "itemType": "BUTTON",
202
+ "layoutPos": {
203
+ "shrink": 1,
204
+ "layout": "FLEX"
205
+ },
206
+ "sysImage": {
207
+ "imagePath": "svg/setting.svg",
208
+ "imagePathX": "svg/setting.svg"
209
+ },
210
+ "id": "button_calluilogic1"
211
+ }
212
+ ],
213
+ "layout": {
214
+ "layout": "FLEX"
215
+ },
216
+ "dataRegionType": "INHERIT",
217
+ "caption": "容器",
218
+ "itemStyle": "DEFAULT",
219
+ "itemType": "CONTAINER",
220
+ "layoutPos": {
221
+ "shrink": 1,
222
+ "layout": "FLEX"
223
+ },
224
+ "id": "container5"
225
+ },
226
+ {
227
+ "panelItems": [
228
+ {
229
+ "actionType": "NONE",
230
+ "buttonStyle": "DEFAULT",
231
+ "buttonType": "PANELBUTTON",
232
+ "renderMode": "BUTTON",
233
+ "tooltip": "按钮",
234
+ "uiactionTarget": "NONE",
235
+ "caption": "按钮",
236
+ "itemStyle": "DEFAULT",
237
+ "itemType": "BUTTON",
238
+ "layoutPos": {
239
+ "shrink": 1,
240
+ "layout": "FLEX"
241
+ },
242
+ "sysImage": {
243
+ "imagePath": "svg/helper.svg",
244
+ "imagePathX": "svg/helper.svg"
245
+ },
246
+ "id": "button_calluilogic2"
247
+ }
248
+ ],
249
+ "layout": {
250
+ "layout": "FLEX"
251
+ },
252
+ "dataRegionType": "INHERIT",
253
+ "caption": "容器",
254
+ "itemStyle": "DEFAULT",
255
+ "itemType": "CONTAINER",
256
+ "layoutPos": {
257
+ "shrink": 1,
258
+ "layout": "FLEX"
259
+ },
260
+ "id": "container6"
261
+ },
262
+ {
263
+ "panelItems": [
264
+ {
265
+ "actionType": "NONE",
266
+ "buttonStyle": "DEFAULT",
267
+ "buttonType": "PANELBUTTON",
268
+ "renderMode": "BUTTON",
269
+ "tooltip": "按钮",
270
+ "uiactionTarget": "NONE",
271
+ "caption": "按钮",
272
+ "itemStyle": "DEFAULT",
273
+ "itemType": "BUTTON",
274
+ "layoutPos": {
275
+ "shrink": 1,
276
+ "layout": "FLEX"
277
+ },
278
+ "sysImage": {
279
+ "imagePath": "svg/custom-workbench.svg",
280
+ "imagePathX": "svg/custom-workbench.svg"
281
+ },
282
+ "id": "button_calluilogic3"
283
+ }
284
+ ],
285
+ "layout": {
286
+ "layout": "FLEX"
287
+ },
288
+ "dataRegionType": "INHERIT",
289
+ "caption": "容器",
290
+ "itemStyle": "DEFAULT",
291
+ "itemType": "CONTAINER",
292
+ "layoutPos": {
293
+ "shrink": 1,
294
+ "layout": "FLEX"
295
+ },
296
+ "id": "container7"
297
+ }
298
+ ],
299
+ "layout": {
300
+ "align": "center",
301
+ "dir": "row",
302
+ "layout": "FLEX",
303
+ "valign": "center"
304
+ },
305
+ "dataRegionType": "INHERIT",
306
+ "caption": "容器",
307
+ "itemStyle": "DEFAULT",
308
+ "itemType": "CONTAINER",
309
+ "layoutPos": {
310
+ "shrink": 1,
311
+ "heightMode": "FULL",
312
+ "layout": "FLEX"
313
+ },
314
+ "id": "indextopactions"
315
+ },
316
+ {
317
+ "panelItems": [
318
+ {
319
+ "rawItem": {
320
+ "predefinedType": "AUTH_USERINFO",
321
+ "id": "auth_userinfo"
322
+ },
323
+ "caption": "用户信息",
324
+ "itemStyle": "DEFAULT",
325
+ "itemType": "RAWITEM",
326
+ "layoutPos": {
327
+ "shrink": 1,
328
+ "layout": "FLEX"
329
+ },
330
+ "showCaption": true,
331
+ "id": "auth_userinfo"
332
+ }
333
+ ],
334
+ "layout": {
335
+ "align": "center",
336
+ "layout": "FLEX",
337
+ "valign": "center"
338
+ },
339
+ "dataRegionType": "INHERIT",
340
+ "caption": "容器",
341
+ "itemStyle": "DEFAULT",
342
+ "itemType": "CONTAINER",
343
+ "layoutPos": {
344
+ "shrink": 1,
345
+ "heightMode": "FULL",
346
+ "layout": "FLEX"
347
+ },
348
+ "id": "container1"
349
+ }
350
+ ],
351
+ "layout": {
352
+ "dir": "row",
353
+ "layout": "FLEX"
354
+ },
355
+ "dataRegionType": "INHERIT",
356
+ "caption": "容器",
357
+ "itemStyle": "DEFAULT",
358
+ "itemType": "CONTAINER",
359
+ "layoutPos": {
360
+ "shrink": 0,
361
+ "layout": "FLEX"
362
+ },
363
+ "id": "container"
364
+ }
365
+ ],
366
+ "predefinedType": "AppHeader",
367
+ "layout": {
368
+ "align": "space-between",
369
+ "dir": "row",
370
+ "layout": "FLEX"
371
+ },
372
+ "dataRegionType": "INHERIT",
373
+ "caption": "容器",
374
+ "itemStyle": "DEFAULT",
375
+ "itemType": "CONTAINER",
376
+ "layoutPos": {
377
+ "layoutPos": "CENTER",
378
+ "heightMode": "FULL",
379
+ "layout": "BORDER"
380
+ },
381
+ "id": "app_header"
382
+ }
383
+ ],
384
+ "predefinedType": "CONTAINER_SCROLL_HEADER",
385
+ "layout": {
386
+ "layout": "BORDER"
387
+ },
388
+ "dataRegionType": "INHERIT",
389
+ "caption": "面板容器",
390
+ "contentHeight": 56,
391
+ "height": 56,
392
+ "itemStyle": "DEFAULT",
393
+ "itemType": "CONTAINER",
394
+ "layoutPos": {
395
+ "layoutPos": "NORTH",
396
+ "height": 56,
397
+ "heightMode": "PX",
398
+ "layout": "BORDER"
399
+ },
400
+ "showCaption": true,
401
+ "id": "container_scroll_header"
402
+ }
403
+ ],
404
+ "predefinedType": "CONTAINER_SCROLL",
405
+ "layout": {
406
+ "layout": "BORDER"
407
+ },
408
+ "dataRegionType": "INHERIT",
409
+ "caption": "滚动条容器",
410
+ "itemStyle": "DEFAULT",
411
+ "itemType": "CONTAINER",
412
+ "layoutPos": {
413
+ "shrink": 1,
414
+ "layout": "FLEX"
415
+ },
416
+ "id": "container_scroll1"
417
+ }
418
+ ],
419
+ "layoutPanel": true,
420
+ "codeName": "IndexViewLayout_TOP",
421
+ "controlType": "VIEWLAYOUTPANEL",
422
+ "logicName": "应用首页视图布局_上方菜单(预置模型)",
423
+ "controlParam": {},
424
+ "name": "layoutpanel",
425
+ "id": "indexviewlayout_top"
426
+ }