xframelib 1.1.7 → 1.1.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/dist/assets/{worker-iconv-BhEK22Ps.js → worker-iconv-DdzFBDtV.js} +5 -3
- package/dist/assets/{worker-webcache-B3DZa32n.js → worker-webcache-mElrmAWA.js} +1 -4
- package/dist/controls/xwindow/XWindow.vue.d.ts +2 -2
- package/dist/index.cjs +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +1 -1
- package/dist/permission/right.d.ts +2 -4
- package/dist/plugins/NavigatorPlugin.d.ts +1 -0
- package/dist/utils/Storage.d.ts +2 -0
- package/dist/workers/index.d.ts +8 -5
- package/package.json +88 -77
|
@@ -1357,7 +1357,7 @@ for (var I, x, k, C, M, U, j, N, P, D, F = a((e) => {
|
|
|
1357
1357
|
type: "_utf32",
|
|
1358
1358
|
isLE: !1
|
|
1359
1359
|
}, e.ucs4le = "utf32le", e.ucs4be = "utf32be", r.prototype.encoder = n, r.prototype.decoder = i, n.prototype.write = function(e) {
|
|
1360
|
-
for (var r = t.from(e, "ucs2"), n = t.alloc(2 * r.length), i = this.isLE ? n.writeUInt32LE : n.writeUInt32BE, o = 0, s = 0; s < r.length; s += 2) {
|
|
1360
|
+
for (var r = t.from(e, "ucs2"), n = t.alloc(2 * r.length + 4), i = this.isLE ? n.writeUInt32LE : n.writeUInt32BE, o = 0, s = 0; s < r.length; s += 2) {
|
|
1361
1361
|
var a = r.readUInt16LE(s), c = a >= 55296 && a < 56320, f = a >= 56320 && a < 57344;
|
|
1362
1362
|
if (this.highSurrogate) {
|
|
1363
1363
|
if (!c && f) {
|
|
@@ -1380,13 +1380,13 @@ for (var I, x, k, C, M, U, j, N, P, D, F = a((e) => {
|
|
|
1380
1380
|
var r = 0, n = 0, i = t.alloc(e.length + 4), s = 0, a = this.isLE, c = this.overflow, f = this.badChar;
|
|
1381
1381
|
if (c.length > 0) {
|
|
1382
1382
|
for (; r < e.length && c.length < 4; r++) c.push(e[r]);
|
|
1383
|
-
4 === c.length && (n = a ? c[
|
|
1383
|
+
4 === c.length && (n = a ? c[0] | c[1] << 8 | c[2] << 16 | c[3] << 24 : c[3] | c[2] << 8 | c[1] << 16 | c[0] << 24, c.length = 0, s = o(i, s, n, f));
|
|
1384
1384
|
}
|
|
1385
1385
|
for (; r < e.length - 3; r += 4) s = o(i, s, n = a ? e[r] | e[r + 1] << 8 | e[r + 2] << 16 | e[r + 3] << 24 : e[r + 3] | e[r + 2] << 8 | e[r + 1] << 16 | e[r] << 24, f);
|
|
1386
1386
|
for (; r < e.length; r++) c.push(e[r]);
|
|
1387
1387
|
return i.slice(0, s).toString("ucs2");
|
|
1388
1388
|
}, i.prototype.end = function() {
|
|
1389
|
-
this.overflow.length = 0;
|
|
1389
|
+
if (0 !== this.overflow.length) return this.overflow.length = 0, String.fromCharCode(this.badChar);
|
|
1390
1390
|
}, e.utf32 = s, e.ucs4 = "utf32", s.prototype.encoder = a, s.prototype.decoder = c, a.prototype.write = function(e) {
|
|
1391
1391
|
return this.encoder.write(e);
|
|
1392
1392
|
}, a.prototype.end = function() {
|
|
@@ -1672,6 +1672,8 @@ for (var I, x, k, C, M, U, j, N, P, D, F = a((e) => {
|
|
|
1672
1672
|
elot928: "iso88597",
|
|
1673
1673
|
hebrew: "iso88598",
|
|
1674
1674
|
hebrew8: "iso88598",
|
|
1675
|
+
iso88598i: "iso88598",
|
|
1676
|
+
iso88598e: "iso88598",
|
|
1675
1677
|
turkish: "iso88599",
|
|
1676
1678
|
turkish8: "iso88599",
|
|
1677
1679
|
thai: "iso885911",
|
|
@@ -922,10 +922,7 @@ async function L(t, e, i = "") {
|
|
|
922
922
|
}
|
|
923
923
|
async function G(t, e = "") {
|
|
924
924
|
const i = await M(e);
|
|
925
|
-
if (i)
|
|
926
|
-
const e = C.get(t, i);
|
|
927
|
-
return console.log("666000", t, e), e;
|
|
928
|
-
}
|
|
925
|
+
if (i) return C.get(t, i);
|
|
929
926
|
}
|
|
930
927
|
async function U(t, e = "") {
|
|
931
928
|
const i = await M(e);
|
|
@@ -63,7 +63,7 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
63
63
|
default: string;
|
|
64
64
|
};
|
|
65
65
|
tag: {
|
|
66
|
-
type: (StringConstructor |
|
|
66
|
+
type: (StringConstructor | ArrayConstructor | ObjectConstructor | NumberConstructor)[];
|
|
67
67
|
default: string;
|
|
68
68
|
};
|
|
69
69
|
right: {
|
|
@@ -139,7 +139,7 @@ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
139
139
|
default: string;
|
|
140
140
|
};
|
|
141
141
|
tag: {
|
|
142
|
-
type: (StringConstructor |
|
|
142
|
+
type: (StringConstructor | ArrayConstructor | ObjectConstructor | NumberConstructor)[];
|
|
143
143
|
default: string;
|
|
144
144
|
};
|
|
145
145
|
right: {
|