@ibiz-template/web-theme 3.1.0 → 3.3.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 (30) hide show
  1. package/dist/index.system.min.js +1 -1
  2. package/dist/index.system.min.js.map +1 -1
  3. package/es/publish/app-index-view-layout-no-nav.d.ts +83 -2
  4. package/es/publish/app-index-view-layout-no-nav.mjs +68 -11
  5. package/es/publish/app-index-view-layout-top-nonav.d.ts +42 -9
  6. package/es/publish/app-index-view-layout-top-nonav.mjs +44 -7
  7. package/es/publish/app-index-view-layout-top.d.ts +43 -10
  8. package/es/publish/app-index-view-layout-top.mjs +44 -7
  9. package/es/publish/app-index-view-layout.d.ts +63 -8
  10. package/es/publish/app-index-view-layout.mjs +65 -8
  11. package/es/publish/control-layout/control-layout-model-repository-data-view-layout.d.ts +152 -0
  12. package/es/publish/control-layout/control-layout-model-repository-data-view-layout.mjs +156 -0
  13. package/es/publish/index.mjs +2 -0
  14. package/es/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout-flow.d.ts +113 -0
  15. package/es/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout-flow.mjs +143 -0
  16. package/lib/publish/app-index-view-layout-no-nav.cjs +68 -11
  17. package/lib/publish/app-index-view-layout-top-nonav.cjs +44 -7
  18. package/lib/publish/app-index-view-layout-top.cjs +44 -7
  19. package/lib/publish/app-index-view-layout.cjs +65 -8
  20. package/lib/publish/control-layout/control-layout-model-repository-data-view-layout.cjs +160 -0
  21. package/lib/publish/index.cjs +2 -0
  22. package/lib/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout-flow.cjs +147 -0
  23. package/package.json +1 -1
  24. package/src/publish/app-index-view-layout-no-nav.ts +68 -11
  25. package/src/publish/app-index-view-layout-top-nonav.ts +44 -7
  26. package/src/publish/app-index-view-layout-top.ts +44 -7
  27. package/src/publish/app-index-view-layout.ts +65 -8
  28. package/src/publish/control-layout/control-layout-model-repository-data-view-layout.ts +153 -0
  29. package/src/publish/index.ts +3 -0
  30. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout-flow.ts +140 -0
@@ -86,9 +86,90 @@ declare const _default: {
86
86
  id: string;
87
87
  actionGroupExtractMode?: undefined;
88
88
  panelItems?: undefined;
89
- predefinedType?: undefined;
90
89
  layout?: undefined;
91
90
  dataRegionType?: undefined;
91
+ predefinedType?: undefined;
92
+ } | {
93
+ actionGroupExtractMode: string;
94
+ panelItems: ({
95
+ rawItem: {
96
+ contentType: string;
97
+ predefinedType: string;
98
+ rawItemHeight: number;
99
+ rawItemWidth: number;
100
+ id: string;
101
+ };
102
+ caption: string;
103
+ contentHeight: number;
104
+ contentWidth: number;
105
+ height: number;
106
+ itemStyle: string;
107
+ itemType: string;
108
+ layoutPos: {
109
+ shrink: number;
110
+ halignSelf: string;
111
+ height: number;
112
+ heightMode: string;
113
+ layout: string;
114
+ spacingLeft: string;
115
+ width: number;
116
+ widthMode: string;
117
+ };
118
+ width: number;
119
+ showCaption: boolean;
120
+ id: string;
121
+ } | {
122
+ rawItem: {
123
+ predefinedType: string;
124
+ rawItemHeight: number;
125
+ rawItemWidth: number;
126
+ id: string;
127
+ contentType?: undefined;
128
+ };
129
+ caption: string;
130
+ contentHeight: number;
131
+ contentWidth: number;
132
+ height: number;
133
+ itemStyle: string;
134
+ itemType: string;
135
+ layoutPos: {
136
+ shrink: number;
137
+ height: number;
138
+ heightMode: string;
139
+ layout: string;
140
+ width: number;
141
+ widthMode: string;
142
+ halignSelf?: undefined;
143
+ spacingLeft?: undefined;
144
+ };
145
+ width: number;
146
+ showCaption: boolean;
147
+ id: string;
148
+ })[];
149
+ layout: {
150
+ align: string;
151
+ dir: string;
152
+ layout: string;
153
+ valign: string;
154
+ };
155
+ dataRegionType: string;
156
+ caption: string;
157
+ contentHeight: number;
158
+ height: number;
159
+ itemStyle: string;
160
+ itemType: string;
161
+ layoutPos: {
162
+ shrink: number;
163
+ height: number;
164
+ heightMode: string;
165
+ layout: string;
166
+ widthMode: string;
167
+ grow?: undefined;
168
+ };
169
+ id: string;
170
+ rawItem?: undefined;
171
+ showCaption?: undefined;
172
+ predefinedType?: undefined;
92
173
  } | {
93
174
  actionGroupExtractMode: string;
94
175
  panelItems: ({
@@ -282,9 +363,9 @@ declare const _default: {
282
363
  height?: undefined;
283
364
  actionGroupExtractMode?: undefined;
284
365
  panelItems?: undefined;
285
- predefinedType?: undefined;
286
366
  layout?: undefined;
287
367
  dataRegionType?: undefined;
368
+ predefinedType?: undefined;
288
369
  })[];
289
370
  predefinedType: string;
290
371
  layout: {
@@ -94,25 +94,82 @@ var AppIndexViewLayout_NO_NAV = {
94
94
  "id": "app_apptitle"
95
95
  },
96
96
  {
97
- "rawItem": {
98
- "predefinedType": "AUTH_USERINFO",
99
- "rawItemHeight": 68,
100
- "id": "auth_userinfo"
97
+ "actionGroupExtractMode": "ITEM",
98
+ "panelItems": [
99
+ {
100
+ "rawItem": {
101
+ "contentType": "USER",
102
+ "predefinedType": "APP_SWITCH",
103
+ "rawItemHeight": 36,
104
+ "rawItemWidth": 20,
105
+ "id": "app_switch"
106
+ },
107
+ "caption": "\u5E94\u7528\u5207\u6362\u5668",
108
+ "contentHeight": 36,
109
+ "contentWidth": 20,
110
+ "height": 36,
111
+ "itemStyle": "DEFAULT",
112
+ "itemType": "RAWITEM",
113
+ "layoutPos": {
114
+ "shrink": 0,
115
+ "halignSelf": "CENTER",
116
+ "height": 36,
117
+ "heightMode": "PX",
118
+ "layout": "FLEX",
119
+ "spacingLeft": "INNERLARGE",
120
+ "width": 20,
121
+ "widthMode": "PERCENTAGE"
122
+ },
123
+ "width": 20,
124
+ "showCaption": true,
125
+ "id": "app_switch"
126
+ },
127
+ {
128
+ "rawItem": {
129
+ "predefinedType": "AUTH_USERINFO",
130
+ "rawItemHeight": 72,
131
+ "rawItemWidth": 80,
132
+ "id": "auth_userinfo"
133
+ },
134
+ "caption": "\u7528\u6237\u4FE1\u606F",
135
+ "contentHeight": 72,
136
+ "contentWidth": 80,
137
+ "height": 72,
138
+ "itemStyle": "DEFAULT",
139
+ "itemType": "RAWITEM",
140
+ "layoutPos": {
141
+ "shrink": 0,
142
+ "height": 72,
143
+ "heightMode": "PX",
144
+ "layout": "FLEX",
145
+ "width": 80,
146
+ "widthMode": "PERCENTAGE"
147
+ },
148
+ "width": 80,
149
+ "showCaption": true,
150
+ "id": "auth_userinfo"
151
+ }
152
+ ],
153
+ "layout": {
154
+ "align": "space-between",
155
+ "dir": "row",
156
+ "layout": "FLEX",
157
+ "valign": "center"
101
158
  },
102
- "caption": "\u7528\u6237\u4FE1\u606F",
103
- "contentHeight": 68,
104
- "height": 68,
159
+ "dataRegionType": "INHERIT",
160
+ "caption": "\u5BB9\u5668",
161
+ "contentHeight": 72,
162
+ "height": 72,
105
163
  "itemStyle": "DEFAULT",
106
- "itemType": "RAWITEM",
164
+ "itemType": "CONTAINER",
107
165
  "layoutPos": {
108
166
  "shrink": 0,
109
- "height": 68,
167
+ "height": 72,
110
168
  "heightMode": "PX",
111
169
  "layout": "FLEX",
112
170
  "widthMode": "FULL"
113
171
  },
114
- "showCaption": true,
115
- "id": "auth_userinfo"
172
+ "id": "container6"
116
173
  },
117
174
  {
118
175
  "actionGroupExtractMode": "ITEM",
@@ -67,10 +67,47 @@ declare const _default: {
67
67
  panelItems: {
68
68
  actionGroupExtractMode: string;
69
69
  panelItems: ({
70
- rawItem: {
71
- predefinedType: string;
70
+ actionGroupExtractMode: string;
71
+ panelItems: ({
72
+ rawItem: {
73
+ contentType: string;
74
+ predefinedType: string;
75
+ id: string;
76
+ };
77
+ caption: string;
78
+ itemStyle: string;
79
+ itemType: string;
80
+ layoutPos: {
81
+ shrink: number;
82
+ layout: string;
83
+ spacingLeft: string;
84
+ };
85
+ showCaption: boolean;
72
86
  id: string;
87
+ } | {
88
+ rawItem: {
89
+ predefinedType: string;
90
+ id: string;
91
+ contentType?: undefined;
92
+ };
93
+ caption: string;
94
+ itemStyle: string;
95
+ itemType: string;
96
+ layoutPos: {
97
+ shrink: number;
98
+ layout: string;
99
+ spacingLeft?: undefined;
100
+ };
101
+ showCaption: boolean;
102
+ id: string;
103
+ })[];
104
+ layout: {
105
+ align: string;
106
+ dir: string;
107
+ layout: string;
108
+ valign: string;
73
109
  };
110
+ dataRegionType: string;
74
111
  caption: string;
75
112
  itemStyle: string;
76
113
  itemType: string;
@@ -78,12 +115,8 @@ declare const _default: {
78
115
  shrink: number;
79
116
  layout: string;
80
117
  };
81
- showCaption: boolean;
82
118
  id: string;
83
- actionGroupExtractMode?: undefined;
84
- panelItems?: undefined;
85
- layout?: undefined;
86
- dataRegionType?: undefined;
119
+ showCaption?: undefined;
87
120
  } | {
88
121
  caption: string;
89
122
  itemStyle: string;
@@ -94,7 +127,6 @@ declare const _default: {
94
127
  };
95
128
  showCaption: boolean;
96
129
  id: string;
97
- rawItem?: undefined;
98
130
  actionGroupExtractMode?: undefined;
99
131
  panelItems?: undefined;
100
132
  layout?: undefined;
@@ -297,6 +329,8 @@ declare const _default: {
297
329
  layout: {
298
330
  dir: string;
299
331
  layout: string;
332
+ align?: undefined;
333
+ valign?: undefined;
300
334
  };
301
335
  dataRegionType: string;
302
336
  caption: string;
@@ -307,7 +341,6 @@ declare const _default: {
307
341
  layout: string;
308
342
  };
309
343
  id: string;
310
- rawItem?: undefined;
311
344
  showCaption?: undefined;
312
345
  })[];
313
346
  predefinedType: string;
@@ -73,19 +73,56 @@ var AppIndexViewLayout_TOP_NO_NAV = {
73
73
  "actionGroupExtractMode": "ITEM",
74
74
  "panelItems": [
75
75
  {
76
- "rawItem": {
77
- "predefinedType": "APP_APPTITLE",
78
- "id": "app_apptitle"
76
+ "actionGroupExtractMode": "ITEM",
77
+ "panelItems": [
78
+ {
79
+ "rawItem": {
80
+ "contentType": "USER",
81
+ "predefinedType": "APP_SWITCH",
82
+ "id": "app_switch"
83
+ },
84
+ "caption": "\u5E94\u7528\u5207\u6362\u5668",
85
+ "itemStyle": "DEFAULT",
86
+ "itemType": "RAWITEM",
87
+ "layoutPos": {
88
+ "shrink": 0,
89
+ "layout": "FLEX",
90
+ "spacingLeft": "INNERLARGE"
91
+ },
92
+ "showCaption": true,
93
+ "id": "app_switch"
94
+ },
95
+ {
96
+ "rawItem": {
97
+ "predefinedType": "APP_APPTITLE",
98
+ "id": "app_apptitle"
99
+ },
100
+ "caption": "\u5E94\u7528\u6807\u9898",
101
+ "itemStyle": "DEFAULT",
102
+ "itemType": "RAWITEM",
103
+ "layoutPos": {
104
+ "shrink": 0,
105
+ "layout": "FLEX"
106
+ },
107
+ "showCaption": true,
108
+ "id": "app_apptitle"
109
+ }
110
+ ],
111
+ "layout": {
112
+ "align": "flex-start",
113
+ "dir": "row",
114
+ "layout": "FLEX",
115
+ "valign": "center"
79
116
  },
80
- "caption": "\u5E94\u7528\u6807\u9898",
117
+ "dataRegionType": "INHERIT",
118
+ "caption": "\u5BB9\u5668",
81
119
  "itemStyle": "DEFAULT",
82
- "itemType": "RAWITEM",
120
+ "itemType": "CONTAINER",
83
121
  "layoutPos": {
84
122
  "shrink": 0,
85
123
  "layout": "FLEX"
86
124
  },
87
- "showCaption": true,
88
- "id": "app_apptitle"
125
+ "id": "container2"
89
126
  },
90
127
  {
91
128
  "caption": "\u9996\u9875\u83DC\u5355",
@@ -82,10 +82,47 @@ declare const _default: {
82
82
  panelItems: {
83
83
  actionGroupExtractMode: string;
84
84
  panelItems: ({
85
- rawItem: {
86
- predefinedType: string;
85
+ actionGroupExtractMode: string;
86
+ panelItems: ({
87
+ rawItem: {
88
+ contentType: string;
89
+ predefinedType: string;
90
+ id: string;
91
+ };
92
+ caption: string;
93
+ itemStyle: string;
94
+ itemType: string;
95
+ layoutPos: {
96
+ shrink: number;
97
+ layout: string;
98
+ spacingLeft: string;
99
+ };
100
+ showCaption: boolean;
87
101
  id: string;
102
+ } | {
103
+ rawItem: {
104
+ predefinedType: string;
105
+ id: string;
106
+ contentType?: undefined;
107
+ };
108
+ caption: string;
109
+ itemStyle: string;
110
+ itemType: string;
111
+ layoutPos: {
112
+ shrink: number;
113
+ layout: string;
114
+ spacingLeft?: undefined;
115
+ };
116
+ showCaption: boolean;
117
+ id: string;
118
+ })[];
119
+ layout: {
120
+ align: string;
121
+ dir: string;
122
+ layout: string;
123
+ valign: string;
88
124
  };
125
+ dataRegionType: string;
89
126
  caption: string;
90
127
  itemStyle: string;
91
128
  itemType: string;
@@ -95,14 +132,10 @@ declare const _default: {
95
132
  height?: undefined;
96
133
  heightMode?: undefined;
97
134
  };
98
- showCaption: boolean;
99
135
  id: string;
100
136
  contentHeight?: undefined;
101
137
  height?: undefined;
102
- actionGroupExtractMode?: undefined;
103
- panelItems?: undefined;
104
- layout?: undefined;
105
- dataRegionType?: undefined;
138
+ showCaption?: undefined;
106
139
  } | {
107
140
  caption: string;
108
141
  contentHeight: number;
@@ -117,7 +150,6 @@ declare const _default: {
117
150
  };
118
151
  showCaption: boolean;
119
152
  id: string;
120
- rawItem?: undefined;
121
153
  actionGroupExtractMode?: undefined;
122
154
  panelItems?: undefined;
123
155
  layout?: undefined;
@@ -320,6 +352,8 @@ declare const _default: {
320
352
  layout: {
321
353
  dir: string;
322
354
  layout: string;
355
+ align?: undefined;
356
+ valign?: undefined;
323
357
  };
324
358
  dataRegionType: string;
325
359
  caption: string;
@@ -332,10 +366,9 @@ declare const _default: {
332
366
  heightMode?: undefined;
333
367
  };
334
368
  id: string;
335
- rawItem?: undefined;
336
- showCaption?: undefined;
337
369
  contentHeight?: undefined;
338
370
  height?: undefined;
371
+ showCaption?: undefined;
339
372
  })[];
340
373
  predefinedType: string;
341
374
  layout: {
@@ -88,19 +88,56 @@ var AppIndexViewLayout_TOP = {
88
88
  "actionGroupExtractMode": "ITEM",
89
89
  "panelItems": [
90
90
  {
91
- "rawItem": {
92
- "predefinedType": "APP_APPTITLE",
93
- "id": "app_apptitle"
91
+ "actionGroupExtractMode": "ITEM",
92
+ "panelItems": [
93
+ {
94
+ "rawItem": {
95
+ "contentType": "USER",
96
+ "predefinedType": "APP_SWITCH",
97
+ "id": "app_switch"
98
+ },
99
+ "caption": "\u5E94\u7528\u5207\u6362\u5668",
100
+ "itemStyle": "DEFAULT",
101
+ "itemType": "RAWITEM",
102
+ "layoutPos": {
103
+ "shrink": 0,
104
+ "layout": "FLEX",
105
+ "spacingLeft": "INNERLARGE"
106
+ },
107
+ "showCaption": true,
108
+ "id": "app_switch"
109
+ },
110
+ {
111
+ "rawItem": {
112
+ "predefinedType": "APP_APPTITLE",
113
+ "id": "app_apptitle"
114
+ },
115
+ "caption": "\u5E94\u7528\u6807\u9898",
116
+ "itemStyle": "DEFAULT",
117
+ "itemType": "RAWITEM",
118
+ "layoutPos": {
119
+ "shrink": 0,
120
+ "layout": "FLEX"
121
+ },
122
+ "showCaption": true,
123
+ "id": "app_apptitle"
124
+ }
125
+ ],
126
+ "layout": {
127
+ "align": "flex-start",
128
+ "dir": "row",
129
+ "layout": "FLEX",
130
+ "valign": "center"
94
131
  },
95
- "caption": "\u5E94\u7528\u6807\u9898",
132
+ "dataRegionType": "INHERIT",
133
+ "caption": "\u5BB9\u5668",
96
134
  "itemStyle": "DEFAULT",
97
- "itemType": "RAWITEM",
135
+ "itemType": "CONTAINER",
98
136
  "layoutPos": {
99
137
  "shrink": 0,
100
138
  "layout": "FLEX"
101
139
  },
102
- "showCaption": true,
103
- "id": "app_apptitle"
140
+ "id": "container2"
104
141
  },
105
142
  {
106
143
  "caption": "\u9996\u9875\u83DC\u5355",
@@ -106,11 +106,69 @@ declare const _default: {
106
106
  dataRegionType?: undefined;
107
107
  predefinedType?: undefined;
108
108
  } | {
109
- rawItem: {
110
- predefinedType: string;
111
- rawItemHeight: number;
109
+ actionGroupExtractMode: string;
110
+ panelItems: ({
111
+ rawItem: {
112
+ contentType: string;
113
+ predefinedType: string;
114
+ rawItemHeight: number;
115
+ rawItemWidth: number;
116
+ id: string;
117
+ };
118
+ caption: string;
119
+ contentHeight: number;
120
+ contentWidth: number;
121
+ height: number;
122
+ itemStyle: string;
123
+ itemType: string;
124
+ layoutPos: {
125
+ shrink: number;
126
+ halignSelf: string;
127
+ height: number;
128
+ heightMode: string;
129
+ layout: string;
130
+ spacingLeft: string;
131
+ width: number;
132
+ widthMode: string;
133
+ };
134
+ width: number;
135
+ showCaption: boolean;
112
136
  id: string;
137
+ } | {
138
+ rawItem: {
139
+ predefinedType: string;
140
+ rawItemHeight: number;
141
+ rawItemWidth: number;
142
+ id: string;
143
+ contentType?: undefined;
144
+ };
145
+ caption: string;
146
+ contentHeight: number;
147
+ contentWidth: number;
148
+ height: number;
149
+ itemStyle: string;
150
+ itemType: string;
151
+ layoutPos: {
152
+ shrink: number;
153
+ height: number;
154
+ heightMode: string;
155
+ layout: string;
156
+ width: number;
157
+ widthMode: string;
158
+ halignSelf?: undefined;
159
+ spacingLeft?: undefined;
160
+ };
161
+ width: number;
162
+ showCaption: boolean;
163
+ id: string;
164
+ })[];
165
+ layout: {
166
+ align: string;
167
+ dir: string;
168
+ layout: string;
169
+ valign: string;
113
170
  };
171
+ dataRegionType: string;
114
172
  caption: string;
115
173
  contentHeight: number;
116
174
  height: number;
@@ -125,12 +183,9 @@ declare const _default: {
125
183
  spacingBottom?: undefined;
126
184
  grow?: undefined;
127
185
  };
128
- showCaption: boolean;
129
186
  id: string;
130
- actionGroupExtractMode?: undefined;
131
- panelItems?: undefined;
132
- layout?: undefined;
133
- dataRegionType?: undefined;
187
+ rawItem?: undefined;
188
+ showCaption?: undefined;
134
189
  predefinedType?: undefined;
135
190
  } | {
136
191
  actionGroupExtractMode: string;