xframelib 0.5.5 → 0.5.8
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/README.md +51 -2
- package/dist/controls/layoutcontainer/LayoutManager.d.ts +9 -3
- package/dist/controls/layoutcontainer/layout.vue.d.ts +19 -8
- package/dist/controls/vuewindow/window/index.vue.d.ts +1 -0
- package/dist/core/Global.d.ts +1 -25
- package/dist/core/IModel.d.ts +11 -0
- package/dist/core/Init.d.ts +20 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/index.cjs +7 -7
- package/dist/index.css +69 -69
- package/dist/index.js +8 -8
- package/dist/model/Config.d.ts +42 -1
- package/dist/model/Layout.d.ts +12 -4
- package/dist/public/mitm.html +143 -129
- package/dist/utils/H5Tool.d.ts +19 -0
- package/package.json +14 -14
package/dist/index.css
CHANGED
|
@@ -108,75 +108,6 @@
|
|
|
108
108
|
margin-top: 1px;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
.layoutContainer {
|
|
112
|
-
width: 100%;
|
|
113
|
-
height: 100%;
|
|
114
|
-
padding: 0;
|
|
115
|
-
margin: 0;
|
|
116
|
-
--layout-top-height: 77px;
|
|
117
|
-
--layout-left-width: 200px;
|
|
118
|
-
--layout-right-width: 200px;
|
|
119
|
-
--layout-bottom-height: 60px;
|
|
120
|
-
--layout-centerback-backcolor: #020202;
|
|
121
|
-
--layout-top-zindex: 10000;
|
|
122
|
-
--layout-bottom-zindex: 10000;
|
|
123
|
-
--layout-center-zindex: 9999;
|
|
124
|
-
--layout-left-zindex: 10000;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.topContainer {
|
|
128
|
-
position: absolute;
|
|
129
|
-
top: 0px;
|
|
130
|
-
left: 0px;
|
|
131
|
-
width: 100%;
|
|
132
|
-
height: var(--layout-top-height);
|
|
133
|
-
z-index: 1000;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.bottomContainer {
|
|
137
|
-
position: absolute;
|
|
138
|
-
bottom: 0px;
|
|
139
|
-
left: 0px;
|
|
140
|
-
width: 100%;
|
|
141
|
-
height: var(--layout-bottom-height);
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.leftContainer {
|
|
145
|
-
position: absolute;
|
|
146
|
-
top: 0px;
|
|
147
|
-
left: 0px;
|
|
148
|
-
width: var(--layout-left-width);
|
|
149
|
-
height: 100%;
|
|
150
|
-
pointer-events: none;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.rightContainer {
|
|
154
|
-
position: absolute;
|
|
155
|
-
top: 0px;
|
|
156
|
-
right: 0px;
|
|
157
|
-
width: var(--layout-right-width);
|
|
158
|
-
height: 100%;
|
|
159
|
-
pointer-events: none;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.centerdiv {
|
|
163
|
-
position: absolute;
|
|
164
|
-
top: 0px;
|
|
165
|
-
left: 0px;
|
|
166
|
-
bottom: 0px;
|
|
167
|
-
width: 100%;
|
|
168
|
-
background-color: transparent;
|
|
169
|
-
overflow: hidden;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.centerContainer {
|
|
173
|
-
pointer-events: none;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.mainContainer {
|
|
177
|
-
pointer-events: none;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
111
|
.vcp__header {
|
|
181
112
|
display: flex;
|
|
182
113
|
padding: 12px;
|
|
@@ -253,6 +184,75 @@
|
|
|
253
184
|
background-color: var(--bg-color-body);
|
|
254
185
|
}
|
|
255
186
|
|
|
187
|
+
.layoutContainer {
|
|
188
|
+
width: 100%;
|
|
189
|
+
height: 100%;
|
|
190
|
+
padding: 0;
|
|
191
|
+
margin: 0;
|
|
192
|
+
--layout-top-height: 70px;
|
|
193
|
+
--layout-left-width: 200px;
|
|
194
|
+
--layout-right-width: 200px;
|
|
195
|
+
--layout-bottom-height: 60px;
|
|
196
|
+
--layout-centerback-backcolor: #020202;
|
|
197
|
+
--layout-top-zindex: 10000;
|
|
198
|
+
--layout-bottom-zindex: 10000;
|
|
199
|
+
--layout-center-zindex: 9999;
|
|
200
|
+
--layout-left-zindex: 10000;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.topContainer {
|
|
204
|
+
position: absolute;
|
|
205
|
+
top: 0px;
|
|
206
|
+
left: 0px;
|
|
207
|
+
width: 100%;
|
|
208
|
+
height: var(--layout-top-height);
|
|
209
|
+
z-index: 1000;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.bottomContainer {
|
|
213
|
+
position: absolute;
|
|
214
|
+
bottom: 0px;
|
|
215
|
+
left: 0px;
|
|
216
|
+
width: 100%;
|
|
217
|
+
height: var(--layout-bottom-height);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.leftContainer {
|
|
221
|
+
position: absolute;
|
|
222
|
+
top: 0px;
|
|
223
|
+
left: 0px;
|
|
224
|
+
width: var(--layout-left-width);
|
|
225
|
+
height: 100%;
|
|
226
|
+
pointer-events: none;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.rightContainer {
|
|
230
|
+
position: absolute;
|
|
231
|
+
top: 0px;
|
|
232
|
+
right: 0px;
|
|
233
|
+
width: var(--layout-right-width);
|
|
234
|
+
height: 100%;
|
|
235
|
+
pointer-events: none;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.centerdiv {
|
|
239
|
+
position: absolute;
|
|
240
|
+
top: 0px;
|
|
241
|
+
left: 0px;
|
|
242
|
+
bottom: 0px;
|
|
243
|
+
width: 100%;
|
|
244
|
+
background-color: transparent;
|
|
245
|
+
overflow: hidden;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.centerContainer {
|
|
249
|
+
pointer-events: none;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.mainContainer {
|
|
253
|
+
pointer-events: none;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
256
|
.window {
|
|
257
257
|
display: flex;
|
|
258
258
|
flex-flow: column;
|