xframelib 0.4.3 → 0.4.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 +5 -0
- package/dist/core/SysEvents.d.ts +7 -0
- package/dist/hprose/ProxyClient.d.ts +20 -3
- package/dist/index.cjs +3 -8
- package/dist/index.css +69 -69
- package/dist/index.js +3 -8
- package/dist/model/Token.d.ts +4 -0
- package/dist/public/mitm.html +166 -0
- package/dist/public/sw.js +128 -0
- package/dist/utils/AxiosHelper.d.ts +12 -5
- package/dist/utils/BigFileDownload.d.ts +13 -2
- package/package.json +2 -1
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
|
.vcpg {
|
|
181
112
|
border: 1px solid var(--border-color);
|
|
182
113
|
border-radius: 4px;
|
|
@@ -296,6 +227,75 @@
|
|
|
296
227
|
transition: 0.2s;
|
|
297
228
|
}
|
|
298
229
|
|
|
230
|
+
.layoutContainer {
|
|
231
|
+
width: 100%;
|
|
232
|
+
height: 100%;
|
|
233
|
+
padding: 0;
|
|
234
|
+
margin: 0;
|
|
235
|
+
--layout-top-height: 77px;
|
|
236
|
+
--layout-left-width: 200px;
|
|
237
|
+
--layout-right-width: 200px;
|
|
238
|
+
--layout-bottom-height: 60px;
|
|
239
|
+
--layout-centerback-backcolor: #020202;
|
|
240
|
+
--layout-top-zindex: 10000;
|
|
241
|
+
--layout-bottom-zindex: 10000;
|
|
242
|
+
--layout-center-zindex: 9999;
|
|
243
|
+
--layout-left-zindex: 10000;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.topContainer {
|
|
247
|
+
position: absolute;
|
|
248
|
+
top: 0px;
|
|
249
|
+
left: 0px;
|
|
250
|
+
width: 100%;
|
|
251
|
+
height: var(--layout-top-height);
|
|
252
|
+
z-index: 1000;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.bottomContainer {
|
|
256
|
+
position: absolute;
|
|
257
|
+
bottom: 0px;
|
|
258
|
+
left: 0px;
|
|
259
|
+
width: 100%;
|
|
260
|
+
height: var(--layout-bottom-height);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.leftContainer {
|
|
264
|
+
position: absolute;
|
|
265
|
+
top: 0px;
|
|
266
|
+
left: 0px;
|
|
267
|
+
width: var(--layout-left-width);
|
|
268
|
+
height: 100%;
|
|
269
|
+
pointer-events: none;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.rightContainer {
|
|
273
|
+
position: absolute;
|
|
274
|
+
top: 0px;
|
|
275
|
+
right: 0px;
|
|
276
|
+
width: var(--layout-right-width);
|
|
277
|
+
height: 100%;
|
|
278
|
+
pointer-events: none;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.centerdiv {
|
|
282
|
+
position: absolute;
|
|
283
|
+
top: 0px;
|
|
284
|
+
left: 0px;
|
|
285
|
+
bottom: 0px;
|
|
286
|
+
width: 100%;
|
|
287
|
+
background-color: transparent;
|
|
288
|
+
overflow: hidden;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.centerContainer {
|
|
292
|
+
pointer-events: none;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.mainContainer {
|
|
296
|
+
pointer-events: none;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
299
|
.btn {
|
|
300
300
|
background-color: transparent;
|
|
301
301
|
border: none;
|