@ibiz-template/web-theme 1.1.13 → 1.1.14
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.
- package/CHANGELOG.md +6 -0
- package/dist/index.system.min.js +1 -1
- package/dist/index.system.min.js.map +1 -1
- package/es/publish/view-layout-model-repository/view-layout-model-repository-de-tab-search-view-view-layout.d.ts +35 -2
- package/es/publish/view-layout-model-repository/view-layout-model-repository-de-tab-search-view-view-layout.mjs +25 -1
- package/lib/publish/view-layout-model-repository/view-layout-model-repository-de-tab-search-view-view-layout.cjs +25 -1
- package/package.json +1 -1
- package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tab-search-view-view-layout.ts +25 -1
|
@@ -81,19 +81,44 @@ declare const _default: {
|
|
|
81
81
|
id: string;
|
|
82
82
|
} | {
|
|
83
83
|
panelItems: ({
|
|
84
|
-
panelItems: {
|
|
84
|
+
panelItems: ({
|
|
85
85
|
caption: string;
|
|
86
86
|
itemStyle: string;
|
|
87
87
|
itemType: string;
|
|
88
88
|
layoutPos: {
|
|
89
|
+
grow: number;
|
|
89
90
|
shrink: number;
|
|
90
91
|
layout: string;
|
|
91
92
|
};
|
|
92
93
|
showCaption: boolean;
|
|
93
94
|
id: string;
|
|
94
|
-
|
|
95
|
+
rawItem?: undefined;
|
|
96
|
+
} | {
|
|
97
|
+
rawItem: {
|
|
98
|
+
halign: string;
|
|
99
|
+
valign: string;
|
|
100
|
+
wrapMode: string;
|
|
101
|
+
contentType: string;
|
|
102
|
+
predefinedType: string;
|
|
103
|
+
id: string;
|
|
104
|
+
};
|
|
105
|
+
caption: string;
|
|
106
|
+
itemStyle: string;
|
|
107
|
+
itemType: string;
|
|
108
|
+
layoutPos: {
|
|
109
|
+
shrink: number;
|
|
110
|
+
layout: string;
|
|
111
|
+
grow?: undefined;
|
|
112
|
+
};
|
|
113
|
+
showCaption: boolean;
|
|
114
|
+
id: string;
|
|
115
|
+
})[];
|
|
116
|
+
predefinedType: string;
|
|
95
117
|
layout: {
|
|
118
|
+
align: string;
|
|
119
|
+
dir: string;
|
|
96
120
|
layout: string;
|
|
121
|
+
valign: string;
|
|
97
122
|
};
|
|
98
123
|
dataRegionType: string;
|
|
99
124
|
caption: string;
|
|
@@ -123,6 +148,9 @@ declare const _default: {
|
|
|
123
148
|
}[];
|
|
124
149
|
layout: {
|
|
125
150
|
layout: string;
|
|
151
|
+
align?: undefined;
|
|
152
|
+
dir?: undefined;
|
|
153
|
+
valign?: undefined;
|
|
126
154
|
};
|
|
127
155
|
dataRegionType: string;
|
|
128
156
|
caption: string;
|
|
@@ -136,6 +164,7 @@ declare const _default: {
|
|
|
136
164
|
grow?: undefined;
|
|
137
165
|
};
|
|
138
166
|
id: string;
|
|
167
|
+
predefinedType?: undefined;
|
|
139
168
|
contentHeight?: undefined;
|
|
140
169
|
height?: undefined;
|
|
141
170
|
} | {
|
|
@@ -157,6 +186,9 @@ declare const _default: {
|
|
|
157
186
|
}[];
|
|
158
187
|
layout: {
|
|
159
188
|
layout: string;
|
|
189
|
+
align?: undefined;
|
|
190
|
+
dir?: undefined;
|
|
191
|
+
valign?: undefined;
|
|
160
192
|
};
|
|
161
193
|
dataRegionType: string;
|
|
162
194
|
caption: string;
|
|
@@ -170,6 +202,7 @@ declare const _default: {
|
|
|
170
202
|
heightMode?: undefined;
|
|
171
203
|
};
|
|
172
204
|
id: string;
|
|
205
|
+
predefinedType?: undefined;
|
|
173
206
|
contentHeight?: undefined;
|
|
174
207
|
height?: undefined;
|
|
175
208
|
})[];
|
|
@@ -144,15 +144,39 @@ var DETABSEARCHVIEW = {
|
|
|
144
144
|
"itemStyle": "DEFAULT",
|
|
145
145
|
"itemType": "CTRLPOS",
|
|
146
146
|
"layoutPos": {
|
|
147
|
+
"grow": 1,
|
|
147
148
|
"shrink": 1,
|
|
148
149
|
"layout": "FLEX"
|
|
149
150
|
},
|
|
150
151
|
"showCaption": true,
|
|
151
152
|
"id": "tabexppanel"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"rawItem": {
|
|
156
|
+
"halign": "LEFT",
|
|
157
|
+
"valign": "MIDDLE",
|
|
158
|
+
"wrapMode": "NOWRAP",
|
|
159
|
+
"contentType": "RAW",
|
|
160
|
+
"predefinedType": "TELEPORT_PLACEHOLDER",
|
|
161
|
+
"id": "tabtoolbar"
|
|
162
|
+
},
|
|
163
|
+
"caption": "teleport\u5360\u4F4D",
|
|
164
|
+
"itemStyle": "DEFAULT",
|
|
165
|
+
"itemType": "RAWITEM",
|
|
166
|
+
"layoutPos": {
|
|
167
|
+
"shrink": 1,
|
|
168
|
+
"layout": "FLEX"
|
|
169
|
+
},
|
|
170
|
+
"showCaption": true,
|
|
171
|
+
"id": "tabtoolbar"
|
|
152
172
|
}
|
|
153
173
|
],
|
|
174
|
+
"predefinedType": "TABS",
|
|
154
175
|
"layout": {
|
|
155
|
-
"
|
|
176
|
+
"align": "space-between",
|
|
177
|
+
"dir": "row",
|
|
178
|
+
"layout": "FLEX",
|
|
179
|
+
"valign": "center"
|
|
156
180
|
},
|
|
157
181
|
"dataRegionType": "INHERIT",
|
|
158
182
|
"caption": "\u5BB9\u5668",
|
|
@@ -148,15 +148,39 @@ var DETABSEARCHVIEW = {
|
|
|
148
148
|
"itemStyle": "DEFAULT",
|
|
149
149
|
"itemType": "CTRLPOS",
|
|
150
150
|
"layoutPos": {
|
|
151
|
+
"grow": 1,
|
|
151
152
|
"shrink": 1,
|
|
152
153
|
"layout": "FLEX"
|
|
153
154
|
},
|
|
154
155
|
"showCaption": true,
|
|
155
156
|
"id": "tabexppanel"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"rawItem": {
|
|
160
|
+
"halign": "LEFT",
|
|
161
|
+
"valign": "MIDDLE",
|
|
162
|
+
"wrapMode": "NOWRAP",
|
|
163
|
+
"contentType": "RAW",
|
|
164
|
+
"predefinedType": "TELEPORT_PLACEHOLDER",
|
|
165
|
+
"id": "tabtoolbar"
|
|
166
|
+
},
|
|
167
|
+
"caption": "teleport\u5360\u4F4D",
|
|
168
|
+
"itemStyle": "DEFAULT",
|
|
169
|
+
"itemType": "RAWITEM",
|
|
170
|
+
"layoutPos": {
|
|
171
|
+
"shrink": 1,
|
|
172
|
+
"layout": "FLEX"
|
|
173
|
+
},
|
|
174
|
+
"showCaption": true,
|
|
175
|
+
"id": "tabtoolbar"
|
|
156
176
|
}
|
|
157
177
|
],
|
|
178
|
+
"predefinedType": "TABS",
|
|
158
179
|
"layout": {
|
|
159
|
-
"
|
|
180
|
+
"align": "space-between",
|
|
181
|
+
"dir": "row",
|
|
182
|
+
"layout": "FLEX",
|
|
183
|
+
"valign": "center"
|
|
160
184
|
},
|
|
161
185
|
"dataRegionType": "INHERIT",
|
|
162
186
|
"caption": "\u5BB9\u5668",
|
package/package.json
CHANGED
|
@@ -143,15 +143,39 @@ export default {
|
|
|
143
143
|
"itemStyle": "DEFAULT",
|
|
144
144
|
"itemType": "CTRLPOS",
|
|
145
145
|
"layoutPos": {
|
|
146
|
+
"grow": 1,
|
|
146
147
|
"shrink": 1,
|
|
147
148
|
"layout": "FLEX"
|
|
148
149
|
},
|
|
149
150
|
"showCaption": true,
|
|
150
151
|
"id": "tabexppanel"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"rawItem": {
|
|
155
|
+
"halign": "LEFT",
|
|
156
|
+
"valign": "MIDDLE",
|
|
157
|
+
"wrapMode": "NOWRAP",
|
|
158
|
+
"contentType": "RAW",
|
|
159
|
+
"predefinedType": "TELEPORT_PLACEHOLDER",
|
|
160
|
+
"id": "tabtoolbar"
|
|
161
|
+
},
|
|
162
|
+
"caption": "teleport占位",
|
|
163
|
+
"itemStyle": "DEFAULT",
|
|
164
|
+
"itemType": "RAWITEM",
|
|
165
|
+
"layoutPos": {
|
|
166
|
+
"shrink": 1,
|
|
167
|
+
"layout": "FLEX"
|
|
168
|
+
},
|
|
169
|
+
"showCaption": true,
|
|
170
|
+
"id": "tabtoolbar"
|
|
151
171
|
}
|
|
152
172
|
],
|
|
173
|
+
"predefinedType": "TABS",
|
|
153
174
|
"layout": {
|
|
154
|
-
"
|
|
175
|
+
"align": "space-between",
|
|
176
|
+
"dir": "row",
|
|
177
|
+
"layout": "FLEX",
|
|
178
|
+
"valign": "center"
|
|
155
179
|
},
|
|
156
180
|
"dataRegionType": "INHERIT",
|
|
157
181
|
"caption": "容器",
|