xframelib 0.4.2 → 0.4.7
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/controls/vuewindow/index.d.ts +2 -2
- package/dist/controls/vuewindow/style.d.ts +34 -1
- 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 +3 -4
- package/dist/index.js +3 -8
- package/dist/model/Layout.d.ts +39 -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 +13 -13
package/dist/index.css
CHANGED
|
@@ -223,6 +223,7 @@
|
|
|
223
223
|
left: 0px;
|
|
224
224
|
width: var(--layout-left-width);
|
|
225
225
|
height: 100%;
|
|
226
|
+
pointer-events: none;
|
|
226
227
|
}
|
|
227
228
|
|
|
228
229
|
.rightContainer {
|
|
@@ -231,6 +232,7 @@
|
|
|
231
232
|
right: 0px;
|
|
232
233
|
width: var(--layout-right-width);
|
|
233
234
|
height: 100%;
|
|
235
|
+
pointer-events: none;
|
|
234
236
|
}
|
|
235
237
|
|
|
236
238
|
.centerdiv {
|
|
@@ -240,10 +242,7 @@
|
|
|
240
242
|
bottom: 0px;
|
|
241
243
|
width: 100%;
|
|
242
244
|
background-color: transparent;
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
.backContainer {
|
|
246
|
-
background-color: var(--layout-centerback-backcolor);
|
|
245
|
+
overflow: hidden;
|
|
247
246
|
}
|
|
248
247
|
|
|
249
248
|
.centerContainer {
|