@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,368 @@
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
+ "caption": "控件占位",
143
+ "itemStyle": "DEFAULT",
144
+ "itemType": "CTRLPOS",
145
+ "layoutPos": {
146
+ "grow": 1,
147
+ "shrink": 1,
148
+ "layout": "FLEX"
149
+ },
150
+ "showCaption": true,
151
+ "id": "pickupviewpanel"
152
+ }
153
+ ],
154
+ "layout": {
155
+ "layout": "FLEX"
156
+ },
157
+ "dataRegionType": "INHERIT",
158
+ "caption": "容器",
159
+ "itemStyle": "DEFAULT",
160
+ "itemType": "CONTAINER",
161
+ "layoutPos": {
162
+ "grow": 1,
163
+ "shrink": 1,
164
+ "layout": "FLEX"
165
+ },
166
+ "id": "container3"
167
+ },
168
+ {
169
+ "panelItems": [
170
+ {
171
+ "actionType": "UIACTION",
172
+ "buttonStyle": "DEFAULT",
173
+ "buttonType": "PANELBUTTON",
174
+ "uiactionId": "addselection",
175
+ "renderMode": "BUTTON",
176
+ "tooltip": "添加选中数据",
177
+ "caption": "添加选中数据",
178
+ "itemStyle": "DEFAULT",
179
+ "itemType": "BUTTON",
180
+ "layoutPos": {
181
+ "shrink": 1,
182
+ "layout": "FLEX",
183
+ "spacingBottom": "OUTERMEDIUM"
184
+ },
185
+ "showCaption": true,
186
+ "id": "button_addselection"
187
+ },
188
+ {
189
+ "actionType": "UIACTION",
190
+ "buttonStyle": "DEFAULT",
191
+ "buttonType": "PANELBUTTON",
192
+ "uiactionId": "addall",
193
+ "renderMode": "BUTTON",
194
+ "tooltip": "添加全部数据",
195
+ "caption": "添加全部数据",
196
+ "itemStyle": "DEFAULT",
197
+ "itemType": "BUTTON",
198
+ "layoutPos": {
199
+ "shrink": 1,
200
+ "layout": "FLEX",
201
+ "spacingBottom": "OUTERMEDIUM"
202
+ },
203
+ "showCaption": true,
204
+ "id": "button_addall"
205
+ },
206
+ {
207
+ "actionType": "UIACTION",
208
+ "buttonStyle": "DEFAULT",
209
+ "buttonType": "PANELBUTTON",
210
+ "uiactionId": "removeall",
211
+ "renderMode": "BUTTON",
212
+ "tooltip": "移除全部数据",
213
+ "caption": "移除全部数据",
214
+ "itemStyle": "DEFAULT",
215
+ "itemType": "BUTTON",
216
+ "layoutPos": {
217
+ "shrink": 1,
218
+ "layout": "FLEX",
219
+ "spacingBottom": "OUTERMEDIUM"
220
+ },
221
+ "showCaption": true,
222
+ "id": "button_removeall"
223
+ },
224
+ {
225
+ "actionType": "UIACTION",
226
+ "buttonStyle": "DEFAULT",
227
+ "buttonType": "PANELBUTTON",
228
+ "uiactionId": "removeselection",
229
+ "renderMode": "BUTTON",
230
+ "tooltip": "移除选中数据",
231
+ "caption": "移除选中数据",
232
+ "itemStyle": "DEFAULT",
233
+ "itemType": "BUTTON",
234
+ "layoutPos": {
235
+ "shrink": 1,
236
+ "layout": "FLEX"
237
+ },
238
+ "showCaption": true,
239
+ "id": "button_removeselection"
240
+ }
241
+ ],
242
+ "layout": {
243
+ "align": "center",
244
+ "dir": "column",
245
+ "layout": "FLEX"
246
+ },
247
+ "dataRegionType": "INHERIT",
248
+ "caption": "容器",
249
+ "itemStyle": "DEFAULT",
250
+ "itemType": "CONTAINER",
251
+ "layoutPos": {
252
+ "shrink": 0,
253
+ "layout": "FLEX",
254
+ "spacingLeft": "OUTERMEDIUM",
255
+ "spacingRight": "OUTERMEDIUM"
256
+ },
257
+ "id": "container4"
258
+ },
259
+ {
260
+ "panelItems": [
261
+ {
262
+ "caption": "列表",
263
+ "itemStyle": "DEFAULT",
264
+ "itemType": "CTRLPOS",
265
+ "layoutPos": {
266
+ "shrink": 1,
267
+ "layout": "FLEX"
268
+ },
269
+ "showCaption": true,
270
+ "id": "simplelist"
271
+ }
272
+ ],
273
+ "layout": {
274
+ "layout": "FLEX"
275
+ },
276
+ "dataRegionType": "INHERIT",
277
+ "caption": "容器",
278
+ "contentWidth": 300,
279
+ "itemStyle": "DEFAULT",
280
+ "itemType": "CONTAINER",
281
+ "layoutPos": {
282
+ "shrink": 0,
283
+ "layout": "FLEX",
284
+ "width": 300,
285
+ "widthMode": "PX"
286
+ },
287
+ "width": 300,
288
+ "id": "container5"
289
+ }
290
+ ],
291
+ "predefinedType": "VIEWCONTENT",
292
+ "layout": {
293
+ "dir": "row",
294
+ "layout": "FLEX"
295
+ },
296
+ "dataRegionType": "INHERIT",
297
+ "caption": "容器",
298
+ "itemStyle": "DEFAULT",
299
+ "itemType": "CONTAINER",
300
+ "layoutPos": {
301
+ "grow": 1,
302
+ "shrink": 1,
303
+ "layout": "FLEX"
304
+ },
305
+ "id": "view_content"
306
+ },
307
+ {
308
+ "panelItems": [
309
+ {
310
+ "actionType": "UIACTION",
311
+ "buttonStyle": "PRIMARY",
312
+ "buttonType": "PANELBUTTON",
313
+ "uiactionId": "ok",
314
+ "renderMode": "BUTTON",
315
+ "tooltip": "确定",
316
+ "caption": "确定",
317
+ "itemStyle": "PRIMARY",
318
+ "itemType": "BUTTON",
319
+ "layoutPos": {
320
+ "shrink": 1,
321
+ "layout": "FLEX"
322
+ },
323
+ "showCaption": true,
324
+ "id": "button_okaction"
325
+ },
326
+ {
327
+ "actionType": "UIACTION",
328
+ "buttonStyle": "INFO",
329
+ "buttonType": "PANELBUTTON",
330
+ "uiactionId": "cancel",
331
+ "renderMode": "BUTTON",
332
+ "tooltip": "取消",
333
+ "caption": "取消",
334
+ "itemStyle": "INFO",
335
+ "itemType": "BUTTON",
336
+ "layoutPos": {
337
+ "shrink": 1,
338
+ "layout": "FLEX"
339
+ },
340
+ "showCaption": true,
341
+ "id": "button_cancelaction"
342
+ }
343
+ ],
344
+ "layout": {
345
+ "dir": "row-reverse",
346
+ "layout": "FLEX",
347
+ "valign": "center"
348
+ },
349
+ "dataRegionType": "INHERIT",
350
+ "caption": "容器",
351
+ "itemStyle": "DEFAULT",
352
+ "itemType": "CONTAINER",
353
+ "layoutPos": {
354
+ "shrink": 0,
355
+ "layout": "FLEX"
356
+ },
357
+ "id": "view_footer"
358
+ }
359
+ ],
360
+ "layoutPanel": true,
361
+ "codeName": "MPickupViewLayout",
362
+ "controlType": "VIEWLAYOUTPANEL",
363
+ "logicName": "多项选择视图布局面板(预置模型)",
364
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
365
+ "controlParam": {},
366
+ "name": "layoutpanel",
367
+ "id": "mpickupviewlayout"
368
+ }
@@ -0,0 +1,98 @@
1
+ export default {
2
+ "layoutMode": "FLEX",
3
+ "layout": {
4
+ "layout": "FLEX"
5
+ },
6
+ "rootPanelItems": [
7
+ {
8
+ "panelItems": [
9
+ {
10
+ "caption": "表单",
11
+ "itemStyle": "DEFAULT",
12
+ "itemType": "CTRLPOS",
13
+ "layoutPos": {
14
+ "shrink": 1,
15
+ "layout": "FLEX"
16
+ },
17
+ "showCaption": true,
18
+ "id": "form"
19
+ }
20
+ ],
21
+ "predefinedType": "VIEWCONTENT",
22
+ "layout": {
23
+ "layout": "FLEX"
24
+ },
25
+ "dataRegionType": "INHERIT",
26
+ "caption": "容器",
27
+ "itemStyle": "DEFAULT",
28
+ "itemType": "CONTAINER",
29
+ "layoutPos": {
30
+ "grow": 1,
31
+ "shrink": 1,
32
+ "layout": "FLEX"
33
+ },
34
+ "id": "view_content"
35
+ },
36
+ {
37
+ "panelItems": [
38
+ {
39
+ "actionType": "UIACTION",
40
+ "buttonStyle": "INFO",
41
+ "buttonType": "PANELBUTTON",
42
+ "uiactionId": "cancel",
43
+ "renderMode": "BUTTON",
44
+ "tooltip": "取消",
45
+ "caption": "取消",
46
+ "itemStyle": "INFO",
47
+ "itemType": "BUTTON",
48
+ "layoutPos": {
49
+ "shrink": 1,
50
+ "layout": "FLEX"
51
+ },
52
+ "showCaption": true,
53
+ "id": "button_cancelaction"
54
+ },
55
+ {
56
+ "actionType": "UIACTION",
57
+ "buttonStyle": "PRIMARY",
58
+ "buttonType": "PANELBUTTON",
59
+ "uiactionId": "ok",
60
+ "renderMode": "BUTTON",
61
+ "tooltip": "确定",
62
+ "caption": "确定",
63
+ "itemStyle": "PRIMARY",
64
+ "itemType": "BUTTON",
65
+ "layoutPos": {
66
+ "shrink": 1,
67
+ "layout": "FLEX",
68
+ "spacingRight": "OUTERMEDIUM"
69
+ },
70
+ "showCaption": true,
71
+ "id": "button_okaction"
72
+ }
73
+ ],
74
+ "layout": {
75
+ "dir": "row-reverse",
76
+ "layout": "FLEX",
77
+ "valign": "center"
78
+ },
79
+ "dataRegionType": "INHERIT",
80
+ "caption": "容器",
81
+ "itemStyle": "DEFAULT",
82
+ "itemType": "CONTAINER",
83
+ "layoutPos": {
84
+ "shrink": 0,
85
+ "layout": "FLEX"
86
+ },
87
+ "id": "view_footer"
88
+ }
89
+ ],
90
+ "layoutPanel": true,
91
+ "codeName": "WFDynaActionViewLayout",
92
+ "controlType": "VIEWLAYOUTPANEL",
93
+ "logicName": "实体工作流动态操作视图布局面板(预置模型)",
94
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
95
+ "controlParam": {},
96
+ "name": "layoutpanel",
97
+ "id": "wfdynaactionviewlayout"
98
+ }