@ibiz-template/web-theme 1.0.26 → 1.0.27
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 +10 -0
- package/dist/index.system.min.js +1 -1
- package/dist/index.system.min.js.map +1 -1
- package/es/publish/app-index-view-layout.d.ts +49 -2
- package/es/publish/app-index-view-layout.mjs +13 -17
- package/es/publish/index.mjs +2 -0
- package/es/publish/view-layout-model-repository/view-layout-model-repository-de-map-view-layout.d.ts +285 -0
- package/es/publish/view-layout-model-repository/view-layout-model-repository-de-map-view-layout.mjs +324 -0
- package/lib/publish/app-index-view-layout.cjs +13 -17
- package/lib/publish/index.cjs +2 -0
- package/lib/publish/view-layout-model-repository/view-layout-model-repository-de-map-view-layout.cjs +328 -0
- package/package.json +1 -1
|
@@ -99,7 +99,54 @@ declare const _default: {
|
|
|
99
99
|
layout?: undefined;
|
|
100
100
|
dataRegionType?: undefined;
|
|
101
101
|
} | {
|
|
102
|
-
panelItems: {
|
|
102
|
+
panelItems: ({
|
|
103
|
+
panelItems: {
|
|
104
|
+
rawItem: {
|
|
105
|
+
sysImage: {
|
|
106
|
+
imagePath: string;
|
|
107
|
+
imagePathX: string;
|
|
108
|
+
};
|
|
109
|
+
contentType: string;
|
|
110
|
+
predefinedType: string;
|
|
111
|
+
id: string;
|
|
112
|
+
};
|
|
113
|
+
caption: string;
|
|
114
|
+
itemStyle: string;
|
|
115
|
+
itemType: string;
|
|
116
|
+
layoutPos: {
|
|
117
|
+
shrink: number;
|
|
118
|
+
heightMode: string;
|
|
119
|
+
layout: string;
|
|
120
|
+
widthMode: string;
|
|
121
|
+
};
|
|
122
|
+
sysImage: {
|
|
123
|
+
imagePath: string;
|
|
124
|
+
imagePathX: string;
|
|
125
|
+
};
|
|
126
|
+
showCaption: boolean;
|
|
127
|
+
id: string;
|
|
128
|
+
}[];
|
|
129
|
+
layout: {
|
|
130
|
+
layout: string;
|
|
131
|
+
};
|
|
132
|
+
dataRegionType: string;
|
|
133
|
+
caption: string;
|
|
134
|
+
contentHeight: number;
|
|
135
|
+
contentWidth: number;
|
|
136
|
+
height: number;
|
|
137
|
+
itemStyle: string;
|
|
138
|
+
itemType: string;
|
|
139
|
+
layoutPos: {
|
|
140
|
+
shrink: number;
|
|
141
|
+
height: number;
|
|
142
|
+
heightMode: string;
|
|
143
|
+
layout: string;
|
|
144
|
+
width: number;
|
|
145
|
+
widthMode: string;
|
|
146
|
+
};
|
|
147
|
+
width: number;
|
|
148
|
+
id: string;
|
|
149
|
+
} | {
|
|
103
150
|
panelItems: {
|
|
104
151
|
actionType: string;
|
|
105
152
|
buttonHeight: number;
|
|
@@ -150,7 +197,7 @@ declare const _default: {
|
|
|
150
197
|
};
|
|
151
198
|
width: number;
|
|
152
199
|
id: string;
|
|
153
|
-
}[];
|
|
200
|
+
})[];
|
|
154
201
|
predefinedType: string;
|
|
155
202
|
layout: {
|
|
156
203
|
align: string;
|
|
@@ -129,34 +129,30 @@ var AppIndexViewLayout = {
|
|
|
129
129
|
{
|
|
130
130
|
"panelItems": [
|
|
131
131
|
{
|
|
132
|
-
"
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
"
|
|
142
|
-
"contentWidth": 48,
|
|
143
|
-
"height": 48,
|
|
132
|
+
"rawItem": {
|
|
133
|
+
"sysImage": {
|
|
134
|
+
"imagePath": "svg/message.svg",
|
|
135
|
+
"imagePathX": "svg/message.svg"
|
|
136
|
+
},
|
|
137
|
+
"contentType": "IMAGE",
|
|
138
|
+
"predefinedType": "USERMESSAGE",
|
|
139
|
+
"id": "usermessage"
|
|
140
|
+
},
|
|
141
|
+
"caption": "\u6D88\u606F\u901A\u77E5",
|
|
144
142
|
"itemStyle": "DEFAULT",
|
|
145
|
-
"itemType": "
|
|
143
|
+
"itemType": "RAWITEM",
|
|
146
144
|
"layoutPos": {
|
|
147
145
|
"shrink": 1,
|
|
148
|
-
"height": 48,
|
|
149
146
|
"heightMode": "FULL",
|
|
150
147
|
"layout": "FLEX",
|
|
151
|
-
"width": 48,
|
|
152
148
|
"widthMode": "FULL"
|
|
153
149
|
},
|
|
154
150
|
"sysImage": {
|
|
155
151
|
"imagePath": "svg/message.svg",
|
|
156
152
|
"imagePathX": "svg/message.svg"
|
|
157
153
|
},
|
|
158
|
-
"
|
|
159
|
-
"id": "
|
|
154
|
+
"showCaption": true,
|
|
155
|
+
"id": "usermessage"
|
|
160
156
|
}
|
|
161
157
|
],
|
|
162
158
|
"layout": {
|
package/es/publish/index.mjs
CHANGED
|
@@ -40,6 +40,7 @@ import DETreeGridExView from './view-layout-model-repository/view-layout-model-r
|
|
|
40
40
|
import DETreeGridView from './view-layout-model-repository/view-layout-model-repository-de-tree-grid-view-layout.mjs';
|
|
41
41
|
import DEMEditView9 from './view-layout-model-repository/view-layout-model-repository-dem-edit-view-9-layout.mjs';
|
|
42
42
|
import DEChartExpView from './view-layout-model-repository/view-layout-model-repository-de-chart-exp-view-layout.mjs';
|
|
43
|
+
import DEMAPVIEW from './view-layout-model-repository/view-layout-model-repository-de-map-view-layout.mjs';
|
|
43
44
|
import GridExpBar from './control-layout/control-layout-model-repository-grid-exp-bar-layout.mjs';
|
|
44
45
|
import ListExpBar from './control-layout/control-layout-model-repository-list-exp-bar-layout.mjs';
|
|
45
46
|
import DataViewExpBar from './control-layout/control-layout-model-repository-data-view-exp-bar-layout.mjs';
|
|
@@ -99,6 +100,7 @@ function install(callBack) {
|
|
|
99
100
|
callBack("DETREEGRIDVIEW_DEFAULT", DETreeGridView);
|
|
100
101
|
callBack("DEMEDITVIEW9_DEFAULT", DEMEditView9);
|
|
101
102
|
callBack("DECHARTEXPVIEW_DEFAULT", DEChartExpView);
|
|
103
|
+
callBack("DEMAPVIEW_DEFAULT", DEMAPVIEW);
|
|
102
104
|
callBack("GRIDEXPBAR_DEFAULT", GridExpBar);
|
|
103
105
|
callBack("LISTEXPBAR_DEFAULT", ListExpBar);
|
|
104
106
|
callBack("DATAVIEWEXPBAR_DEFAULT", DataViewExpBar);
|
package/es/publish/view-layout-model-repository/view-layout-model-repository-de-map-view-layout.d.ts
ADDED
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
viewProxyMode: boolean;
|
|
3
|
+
layoutMode: string;
|
|
4
|
+
layout: {
|
|
5
|
+
layout: string;
|
|
6
|
+
};
|
|
7
|
+
rootPanelItems: ({
|
|
8
|
+
panelItems: {
|
|
9
|
+
panelItems: ({
|
|
10
|
+
panelItems: {
|
|
11
|
+
panelItems: {
|
|
12
|
+
caption: string;
|
|
13
|
+
itemStyle: string;
|
|
14
|
+
itemType: string;
|
|
15
|
+
layoutPos: {
|
|
16
|
+
shrink: number;
|
|
17
|
+
layout: string;
|
|
18
|
+
};
|
|
19
|
+
showCaption: boolean;
|
|
20
|
+
id: string;
|
|
21
|
+
}[];
|
|
22
|
+
layout: {
|
|
23
|
+
align: string;
|
|
24
|
+
layout: string;
|
|
25
|
+
};
|
|
26
|
+
dataRegionType: string;
|
|
27
|
+
caption: string;
|
|
28
|
+
itemStyle: string;
|
|
29
|
+
itemType: string;
|
|
30
|
+
layoutPos: {
|
|
31
|
+
shrink: number;
|
|
32
|
+
heightMode: string;
|
|
33
|
+
layout: string;
|
|
34
|
+
};
|
|
35
|
+
id: string;
|
|
36
|
+
}[];
|
|
37
|
+
layout: {
|
|
38
|
+
layout: string;
|
|
39
|
+
dir?: undefined;
|
|
40
|
+
};
|
|
41
|
+
dataRegionType: string;
|
|
42
|
+
caption: string;
|
|
43
|
+
itemStyle: string;
|
|
44
|
+
itemType: string;
|
|
45
|
+
layoutPos: {
|
|
46
|
+
shrink: number;
|
|
47
|
+
heightMode: string;
|
|
48
|
+
layout: string;
|
|
49
|
+
};
|
|
50
|
+
id: string;
|
|
51
|
+
} | {
|
|
52
|
+
panelItems: {
|
|
53
|
+
panelItems: {
|
|
54
|
+
caption: string;
|
|
55
|
+
itemStyle: string;
|
|
56
|
+
itemType: string;
|
|
57
|
+
layoutPos: {
|
|
58
|
+
shrink: number;
|
|
59
|
+
layout: string;
|
|
60
|
+
};
|
|
61
|
+
showCaption: boolean;
|
|
62
|
+
id: string;
|
|
63
|
+
}[];
|
|
64
|
+
layout: {
|
|
65
|
+
align: string;
|
|
66
|
+
layout: string;
|
|
67
|
+
};
|
|
68
|
+
dataRegionType: string;
|
|
69
|
+
caption: string;
|
|
70
|
+
itemStyle: string;
|
|
71
|
+
itemType: string;
|
|
72
|
+
layoutPos: {
|
|
73
|
+
shrink: number;
|
|
74
|
+
heightMode: string;
|
|
75
|
+
layout: string;
|
|
76
|
+
};
|
|
77
|
+
id: string;
|
|
78
|
+
}[];
|
|
79
|
+
layout: {
|
|
80
|
+
dir: string;
|
|
81
|
+
layout: string;
|
|
82
|
+
};
|
|
83
|
+
dataRegionType: string;
|
|
84
|
+
caption: string;
|
|
85
|
+
itemStyle: string;
|
|
86
|
+
itemType: string;
|
|
87
|
+
layoutPos: {
|
|
88
|
+
shrink: number;
|
|
89
|
+
heightMode: string;
|
|
90
|
+
layout: string;
|
|
91
|
+
};
|
|
92
|
+
id: string;
|
|
93
|
+
})[];
|
|
94
|
+
predefinedType: string;
|
|
95
|
+
layout: {
|
|
96
|
+
align: string;
|
|
97
|
+
dir: string;
|
|
98
|
+
layout: string;
|
|
99
|
+
valign: string;
|
|
100
|
+
};
|
|
101
|
+
dataRegionType: string;
|
|
102
|
+
caption: string;
|
|
103
|
+
itemStyle: string;
|
|
104
|
+
itemType: string;
|
|
105
|
+
layoutPos: {
|
|
106
|
+
shrink: number;
|
|
107
|
+
layout: string;
|
|
108
|
+
};
|
|
109
|
+
id: string;
|
|
110
|
+
}[];
|
|
111
|
+
predefinedType: string;
|
|
112
|
+
layout: {
|
|
113
|
+
layout: string;
|
|
114
|
+
};
|
|
115
|
+
dataRegionType: string;
|
|
116
|
+
caption: string;
|
|
117
|
+
itemStyle: string;
|
|
118
|
+
itemType: string;
|
|
119
|
+
layoutPos: {
|
|
120
|
+
shrink: number;
|
|
121
|
+
layout: string;
|
|
122
|
+
grow?: undefined;
|
|
123
|
+
};
|
|
124
|
+
showCaption: boolean;
|
|
125
|
+
id: string;
|
|
126
|
+
} | {
|
|
127
|
+
panelItems: {
|
|
128
|
+
panelItems: {
|
|
129
|
+
caption: string;
|
|
130
|
+
itemStyle: string;
|
|
131
|
+
itemType: string;
|
|
132
|
+
layoutPos: {
|
|
133
|
+
shrink: number;
|
|
134
|
+
layout: string;
|
|
135
|
+
};
|
|
136
|
+
showCaption: boolean;
|
|
137
|
+
id: string;
|
|
138
|
+
}[];
|
|
139
|
+
layout: {
|
|
140
|
+
dir: string;
|
|
141
|
+
layout: string;
|
|
142
|
+
};
|
|
143
|
+
dataRegionType: string;
|
|
144
|
+
itemStyle: string;
|
|
145
|
+
itemType: string;
|
|
146
|
+
layoutPos: {
|
|
147
|
+
shrink: number;
|
|
148
|
+
layout: string;
|
|
149
|
+
};
|
|
150
|
+
id: string;
|
|
151
|
+
}[];
|
|
152
|
+
predefinedType: string;
|
|
153
|
+
layout: {
|
|
154
|
+
layout: string;
|
|
155
|
+
};
|
|
156
|
+
dataRegionType: string;
|
|
157
|
+
caption: string;
|
|
158
|
+
itemStyle: string;
|
|
159
|
+
itemType: string;
|
|
160
|
+
layoutPos: {
|
|
161
|
+
shrink: number;
|
|
162
|
+
layout: string;
|
|
163
|
+
grow?: undefined;
|
|
164
|
+
};
|
|
165
|
+
showCaption: boolean;
|
|
166
|
+
id: string;
|
|
167
|
+
} | {
|
|
168
|
+
panelItems: {
|
|
169
|
+
caption: string;
|
|
170
|
+
itemStyle: string;
|
|
171
|
+
itemType: string;
|
|
172
|
+
layoutPos: {
|
|
173
|
+
grow: number;
|
|
174
|
+
shrink: number;
|
|
175
|
+
layout: string;
|
|
176
|
+
};
|
|
177
|
+
showCaption: boolean;
|
|
178
|
+
id: string;
|
|
179
|
+
}[];
|
|
180
|
+
predefinedType: string;
|
|
181
|
+
layout: {
|
|
182
|
+
layout: string;
|
|
183
|
+
};
|
|
184
|
+
dataRegionType: string;
|
|
185
|
+
caption: string;
|
|
186
|
+
itemStyle: string;
|
|
187
|
+
itemType: string;
|
|
188
|
+
layoutPos: {
|
|
189
|
+
grow: number;
|
|
190
|
+
shrink: number;
|
|
191
|
+
layout: string;
|
|
192
|
+
};
|
|
193
|
+
id: string;
|
|
194
|
+
showCaption?: undefined;
|
|
195
|
+
})[];
|
|
196
|
+
layoutPanel: boolean;
|
|
197
|
+
appViewLogics: ({
|
|
198
|
+
logicTrigger: string;
|
|
199
|
+
logicType: string;
|
|
200
|
+
builtinAppUILogic: {
|
|
201
|
+
actionAfterWizard: string;
|
|
202
|
+
builtinLogic: boolean;
|
|
203
|
+
logicType: string;
|
|
204
|
+
viewLogicType: string;
|
|
205
|
+
id: string;
|
|
206
|
+
editMode?: undefined;
|
|
207
|
+
};
|
|
208
|
+
builtinLogic: boolean;
|
|
209
|
+
id: string;
|
|
210
|
+
} | {
|
|
211
|
+
logicTrigger: string;
|
|
212
|
+
logicType: string;
|
|
213
|
+
builtinAppUILogic: {
|
|
214
|
+
editMode: boolean;
|
|
215
|
+
builtinLogic: boolean;
|
|
216
|
+
logicType: string;
|
|
217
|
+
viewLogicType: string;
|
|
218
|
+
id: string;
|
|
219
|
+
actionAfterWizard?: undefined;
|
|
220
|
+
};
|
|
221
|
+
builtinLogic: boolean;
|
|
222
|
+
id: string;
|
|
223
|
+
})[];
|
|
224
|
+
controls: ({
|
|
225
|
+
legendPos: string;
|
|
226
|
+
autoLoad: boolean;
|
|
227
|
+
showBusyIndicator: boolean;
|
|
228
|
+
codeName: string;
|
|
229
|
+
controlType: string;
|
|
230
|
+
logicName: string;
|
|
231
|
+
appDataEntityId: string;
|
|
232
|
+
controlParam: {
|
|
233
|
+
id: string;
|
|
234
|
+
};
|
|
235
|
+
name: string;
|
|
236
|
+
id: string;
|
|
237
|
+
capLanguageRes?: undefined;
|
|
238
|
+
caption?: undefined;
|
|
239
|
+
} | {
|
|
240
|
+
controlType: string;
|
|
241
|
+
appDataEntityId: string;
|
|
242
|
+
controlParam: {
|
|
243
|
+
id: string;
|
|
244
|
+
};
|
|
245
|
+
id: string;
|
|
246
|
+
legendPos?: undefined;
|
|
247
|
+
autoLoad?: undefined;
|
|
248
|
+
showBusyIndicator?: undefined;
|
|
249
|
+
codeName?: undefined;
|
|
250
|
+
logicName?: undefined;
|
|
251
|
+
name?: undefined;
|
|
252
|
+
capLanguageRes?: undefined;
|
|
253
|
+
caption?: undefined;
|
|
254
|
+
} | {
|
|
255
|
+
capLanguageRes: {
|
|
256
|
+
defaultContent: string;
|
|
257
|
+
lanResTag: string;
|
|
258
|
+
lanResType: string;
|
|
259
|
+
refFlag: boolean;
|
|
260
|
+
name: string;
|
|
261
|
+
id: string;
|
|
262
|
+
};
|
|
263
|
+
caption: string;
|
|
264
|
+
codeName: string;
|
|
265
|
+
controlType: string;
|
|
266
|
+
appDataEntityId: string;
|
|
267
|
+
controlParam: {
|
|
268
|
+
id?: undefined;
|
|
269
|
+
};
|
|
270
|
+
name: string;
|
|
271
|
+
id: string;
|
|
272
|
+
legendPos?: undefined;
|
|
273
|
+
autoLoad?: undefined;
|
|
274
|
+
showBusyIndicator?: undefined;
|
|
275
|
+
logicName?: undefined;
|
|
276
|
+
})[];
|
|
277
|
+
codeName: string;
|
|
278
|
+
controlType: string;
|
|
279
|
+
logicName: string;
|
|
280
|
+
appDataEntityId: string;
|
|
281
|
+
controlParam: {};
|
|
282
|
+
name: string;
|
|
283
|
+
id: string;
|
|
284
|
+
};
|
|
285
|
+
export default _default;
|