@updog/data-editor 0.1.56 → 0.1.57
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/LICENSE +8 -9
- package/{encoding-DUtZMwy0.js → encoding-DEo41qNz.js} +26 -7
- package/index.css +1 -1
- package/index.d.ts +1 -0
- package/index.js +1543 -1522
- package/package.json +1 -1
- package/parsers-UOoRgXk2.js +63 -0
- package/{sheetWorkerSource.generated-FdsWe6Di.js → sheetWorkerSource.generated-BRh0-P0M.js} +1 -1
- package/parsers-5PN17pZs.js +0 -63
package/LICENSE
CHANGED
|
@@ -32,11 +32,10 @@ Copyright (c) 2026 Updog Software Solutions FZCO. All rights reserved.
|
|
|
32
32
|
self-hosted, internal, staging on custom domains, and
|
|
33
33
|
VPN-protected environments — is considered Production Use.
|
|
34
34
|
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
the User's Application is served.
|
|
35
|
+
"Domain" A distinct, publicly accessible hostname through which the
|
|
36
|
+
User's Application is served. Each subdomain is a separate
|
|
37
|
+
Domain. A hostname and its "www." equivalent are treated as
|
|
38
|
+
a single Domain.
|
|
40
39
|
|
|
41
40
|
"Application" Software developed by the User that integrates the Software.
|
|
42
41
|
|
|
@@ -109,10 +108,10 @@ Software for any Production Use. This includes, without limitation:
|
|
|
109
108
|
- Self-hosted infrastructure
|
|
110
109
|
- Any environment accessible to end users outside of Section 3
|
|
111
110
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
111
|
+
Domains are licensed under the User's active subscription and may be attached
|
|
112
|
+
to a License Key through the Console. A License Key may have any number of
|
|
113
|
+
Domains attached, including none. Each account includes one additional Domain
|
|
114
|
+
at no charge.
|
|
116
115
|
|
|
117
116
|
To obtain a License Key, visit: https://updog.tech
|
|
118
117
|
|
|
@@ -49,16 +49,35 @@ var t = /[\u200B-\u200D\uFEFF\u2060]/g, n = /[\u00A0\u202F]/g, r = (e) => e.repl
|
|
|
49
49
|
if (u(t)) return "utf-8";
|
|
50
50
|
let n = e(t);
|
|
51
51
|
return n ? d(n) : "windows-1252";
|
|
52
|
-
}, p =
|
|
52
|
+
}, p = (e) => new Promise((t, n) => {
|
|
53
53
|
let r = new FileReader();
|
|
54
54
|
r.onload = () => t(r.result), r.onerror = () => n(r.error), r.readAsArrayBuffer(e);
|
|
55
|
-
}), h =
|
|
56
|
-
|
|
55
|
+
}), m = 64 * 1024, h = 1024 * 1024, g = (e) => {
|
|
56
|
+
try {
|
|
57
|
+
return new TextDecoder(e);
|
|
58
|
+
} catch {
|
|
59
|
+
return new TextDecoder("windows-1252");
|
|
60
|
+
}
|
|
61
|
+
}, _ = (e) => {
|
|
62
|
+
for (let t = 0; t < e.length; t++) if (e[t] > 127) return t;
|
|
63
|
+
return -1;
|
|
64
|
+
}, v = (e) => {
|
|
65
|
+
let t = _(e), n = t < 0 ? 0 : Math.max(0, t - 1024);
|
|
66
|
+
return f(e.subarray(n, n + h));
|
|
67
|
+
}, y = async (e) => {
|
|
68
|
+
let t = new Uint8Array(await p(e)), n = t.subarray(0, m), r = i(t), a = r ? r.encoding : f(n), o = null;
|
|
69
|
+
if (a === "utf-8") try {
|
|
70
|
+
o = new TextDecoder("utf-8", { fatal: !0 }).decode(t);
|
|
71
|
+
} catch {
|
|
72
|
+
a = v(t);
|
|
73
|
+
}
|
|
74
|
+
o ??= g(a).decode(t);
|
|
75
|
+
let s = l(o.slice(0, m));
|
|
57
76
|
return {
|
|
77
|
+
text: o,
|
|
58
78
|
encoding: a,
|
|
59
|
-
delimiter:
|
|
60
|
-
bomLength: o
|
|
79
|
+
delimiter: s
|
|
61
80
|
};
|
|
62
|
-
},
|
|
81
|
+
}, b = /^sep=.$/i, x = (e, t) => e.length > 0 && b.test(e[0].join(t)) ? e.slice(1) : e;
|
|
63
82
|
//#endregion
|
|
64
|
-
export {
|
|
83
|
+
export { y as n, r, x as t };
|