@instockng/storefront-ui 1.0.71 → 1.0.72
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/hooks/usePageTracking.d.ts +1 -1
- package/dist/hooks/usePageTracking.d.ts.map +1 -1
- package/dist/index100.mjs +179 -2
- package/dist/index101.mjs +50 -31
- package/dist/index102.mjs +69 -43
- package/dist/index143.mjs +1 -1
- package/dist/index144.mjs +1 -1
- package/dist/index145.mjs +5 -5
- package/dist/index147.mjs +2 -2
- package/dist/index149.mjs +2 -2
- package/dist/index151.mjs +1 -1
- package/dist/index153.mjs +8 -8
- package/dist/index154.mjs +8 -8
- package/dist/index167.mjs +2 -2
- package/dist/index168.mjs +1 -1
- package/dist/index173.mjs +2 -2
- package/dist/index175.mjs +1 -1
- package/dist/index181.mjs +1 -1
- package/dist/index187.mjs +1 -1
- package/dist/index188.mjs +1 -1
- package/dist/index192.mjs +1 -1
- package/dist/index198.mjs +1 -1
- package/dist/index200.mjs +1 -1
- package/dist/index209.mjs +2 -2
- package/dist/index211.mjs +1 -1
- package/dist/index212.mjs +1 -1
- package/dist/index220.mjs +2 -2
- package/dist/index221.mjs +96 -25
- package/dist/index222.mjs +2 -2
- package/dist/index224.mjs +37 -2
- package/dist/index225.mjs +2 -2
- package/dist/index227.mjs +1 -1
- package/dist/index229.mjs +1 -1
- package/dist/index230.mjs +1 -1
- package/dist/index231.mjs +2 -2
- package/dist/index233.mjs +2 -2
- package/dist/index234.mjs +2 -2
- package/dist/index235.mjs +2 -108
- package/dist/index237.mjs +2 -2
- package/dist/index238.mjs +2 -2
- package/dist/index239.mjs +2 -4
- package/dist/index240.mjs +1 -1
- package/dist/index241.mjs +3 -3
- package/dist/index246.mjs +12 -2
- package/dist/index247.mjs +5 -2
- package/dist/index248.mjs +33 -12
- package/dist/index249.mjs +31 -5
- package/dist/index250.mjs +27 -32
- package/dist/index251.mjs +58 -28
- package/dist/index252.mjs +2 -28
- package/dist/index253.mjs +4 -61
- package/dist/index254.mjs +2 -2
- package/dist/index256.mjs +2 -2
- package/dist/index257.mjs +2 -18
- package/dist/index258.mjs +13 -42
- package/dist/index259.mjs +47 -2
- package/dist/index260.mjs +2 -2
- package/dist/index261.mjs +2 -2
- package/dist/index262.mjs +2 -2
- package/dist/index263.mjs +2 -91
- package/dist/index264.mjs +91 -2
- package/dist/index272.mjs +1 -1
- package/dist/index4.mjs +25 -24
- package/dist/index54.mjs +17 -17
- package/dist/index55.mjs +2 -2
- package/dist/index6.mjs +7 -7
- package/dist/index74.mjs +1 -1
- package/dist/index83.mjs +2 -235
- package/dist/index84.mjs +34 -6
- package/dist/index85.mjs +39 -130
- package/dist/index86.mjs +229 -62
- package/dist/index87.mjs +5 -86
- package/dist/index88.mjs +131 -26
- package/dist/index89.mjs +67 -8
- package/dist/index90.mjs +83 -71
- package/dist/index91.mjs +28 -3
- package/dist/index92.mjs +9 -2
- package/dist/index93.mjs +70 -78
- package/dist/index94.mjs +3 -53
- package/dist/index95.mjs +2 -6
- package/dist/index96.mjs +82 -4
- package/dist/index97.mjs +51 -176
- package/dist/index98.mjs +6 -53
- package/dist/index99.mjs +5 -69
- package/dist/providers/MetaPixelProvider.d.ts +1 -1
- package/dist/providers/MetaPixelProvider.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/hooks/usePageTracking.ts +3 -3
- package/src/providers/MetaPixelProvider.tsx +4 -3
package/dist/index251.mjs
CHANGED
|
@@ -1,34 +1,64 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
o.setContentType(void 0);
|
|
19
|
-
else if (m.isFunction(i.getHeaders)) {
|
|
20
|
-
const t = i.getHeaders(), u = ["content-type", "content-length"];
|
|
21
|
-
Object.entries(t).forEach(([l, p]) => {
|
|
22
|
-
u.includes(l.toLowerCase()) && o.set(l, p);
|
|
23
|
-
});
|
|
24
|
-
}
|
|
2
|
+
const f = function* (e, t) {
|
|
3
|
+
let n = e.byteLength;
|
|
4
|
+
if (n < t) {
|
|
5
|
+
yield e;
|
|
6
|
+
return;
|
|
7
|
+
}
|
|
8
|
+
let a = 0, r;
|
|
9
|
+
for (; a < n; )
|
|
10
|
+
r = a + t, yield e.slice(a, r), a = r;
|
|
11
|
+
}, w = async function* (e, t) {
|
|
12
|
+
for await (const n of b(e))
|
|
13
|
+
yield* f(n, t);
|
|
14
|
+
}, b = async function* (e) {
|
|
15
|
+
if (e[Symbol.asyncIterator]) {
|
|
16
|
+
yield* e;
|
|
17
|
+
return;
|
|
25
18
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
19
|
+
const t = e.getReader();
|
|
20
|
+
try {
|
|
21
|
+
for (; ; ) {
|
|
22
|
+
const { done: n, value: a } = await t.read();
|
|
23
|
+
if (n)
|
|
24
|
+
break;
|
|
25
|
+
yield a;
|
|
26
|
+
}
|
|
27
|
+
} finally {
|
|
28
|
+
await t.cancel();
|
|
29
29
|
}
|
|
30
|
-
|
|
30
|
+
}, h = (e, t, n, a) => {
|
|
31
|
+
const r = w(e, t);
|
|
32
|
+
let d = 0, o, c = (l) => {
|
|
33
|
+
o || (o = !0, a && a(l));
|
|
34
|
+
};
|
|
35
|
+
return new ReadableStream({
|
|
36
|
+
async pull(l) {
|
|
37
|
+
try {
|
|
38
|
+
const { done: i, value: y } = await r.next();
|
|
39
|
+
if (i) {
|
|
40
|
+
c(), l.close();
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
let s = y.byteLength;
|
|
44
|
+
if (n) {
|
|
45
|
+
let u = d += s;
|
|
46
|
+
n(u);
|
|
47
|
+
}
|
|
48
|
+
l.enqueue(new Uint8Array(y));
|
|
49
|
+
} catch (i) {
|
|
50
|
+
throw c(i), i;
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
cancel(l) {
|
|
54
|
+
return c(l), r.return();
|
|
55
|
+
}
|
|
56
|
+
}, {
|
|
57
|
+
highWaterMark: 2
|
|
58
|
+
});
|
|
31
59
|
};
|
|
32
60
|
export {
|
|
33
|
-
|
|
61
|
+
w as readBytes,
|
|
62
|
+
f as streamChunk,
|
|
63
|
+
h as trackStream
|
|
34
64
|
};
|
package/dist/index252.mjs
CHANGED
|
@@ -1,31 +1,5 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
import s from "./index94.mjs";
|
|
4
|
-
import m from "./index83.mjs";
|
|
5
|
-
const h = (e, t) => {
|
|
6
|
-
const { length: l } = e = e ? e.filter(Boolean) : [];
|
|
7
|
-
if (t || l) {
|
|
8
|
-
let u = new AbortController(), f;
|
|
9
|
-
const n = function(r) {
|
|
10
|
-
if (!f) {
|
|
11
|
-
f = !0, i();
|
|
12
|
-
const o = r instanceof Error ? r : this.reason;
|
|
13
|
-
u.abort(o instanceof s ? o : new a(o instanceof Error ? o.message : o));
|
|
14
|
-
}
|
|
15
|
-
};
|
|
16
|
-
let c = t && setTimeout(() => {
|
|
17
|
-
c = null, n(new s(`timeout ${t} of ms exceeded`, s.ETIMEDOUT));
|
|
18
|
-
}, t);
|
|
19
|
-
const i = () => {
|
|
20
|
-
e && (c && clearTimeout(c), c = null, e.forEach((r) => {
|
|
21
|
-
r.unsubscribe ? r.unsubscribe(n) : r.removeEventListener("abort", n);
|
|
22
|
-
}), e = null);
|
|
23
|
-
};
|
|
24
|
-
e.forEach((r) => r.addEventListener("abort", n));
|
|
25
|
-
const { signal: b } = u;
|
|
26
|
-
return b.unsubscribe = () => m.asap(i), b;
|
|
27
|
-
}
|
|
28
|
-
};
|
|
2
|
+
var e = { exports: {} };
|
|
29
3
|
export {
|
|
30
|
-
|
|
4
|
+
e as __module
|
|
31
5
|
};
|
package/dist/index253.mjs
CHANGED
|
@@ -1,64 +1,7 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
yield e;
|
|
6
|
-
return;
|
|
7
|
-
}
|
|
8
|
-
let a = 0, r;
|
|
9
|
-
for (; a < n; )
|
|
10
|
-
r = a + t, yield e.slice(a, r), a = r;
|
|
11
|
-
}, w = async function* (e, t) {
|
|
12
|
-
for await (const n of b(e))
|
|
13
|
-
yield* f(n, t);
|
|
14
|
-
}, b = async function* (e) {
|
|
15
|
-
if (e[Symbol.asyncIterator]) {
|
|
16
|
-
yield* e;
|
|
17
|
-
return;
|
|
18
|
-
}
|
|
19
|
-
const t = e.getReader();
|
|
20
|
-
try {
|
|
21
|
-
for (; ; ) {
|
|
22
|
-
const { done: n, value: a } = await t.read();
|
|
23
|
-
if (n)
|
|
24
|
-
break;
|
|
25
|
-
yield a;
|
|
26
|
-
}
|
|
27
|
-
} finally {
|
|
28
|
-
await t.cancel();
|
|
29
|
-
}
|
|
30
|
-
}, h = (e, t, n, a) => {
|
|
31
|
-
const r = w(e, t);
|
|
32
|
-
let d = 0, o, c = (l) => {
|
|
33
|
-
o || (o = !0, a && a(l));
|
|
34
|
-
};
|
|
35
|
-
return new ReadableStream({
|
|
36
|
-
async pull(l) {
|
|
37
|
-
try {
|
|
38
|
-
const { done: i, value: y } = await r.next();
|
|
39
|
-
if (i) {
|
|
40
|
-
c(), l.close();
|
|
41
|
-
return;
|
|
42
|
-
}
|
|
43
|
-
let s = y.byteLength;
|
|
44
|
-
if (n) {
|
|
45
|
-
let u = d += s;
|
|
46
|
-
n(u);
|
|
47
|
-
}
|
|
48
|
-
l.enqueue(new Uint8Array(y));
|
|
49
|
-
} catch (i) {
|
|
50
|
-
throw c(i), i;
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
cancel(l) {
|
|
54
|
-
return c(l), r.return();
|
|
55
|
-
}
|
|
56
|
-
}, {
|
|
57
|
-
highWaterMark: 2
|
|
58
|
-
});
|
|
59
|
-
};
|
|
2
|
+
import * as e from "./index265.mjs";
|
|
3
|
+
import { getAugmentedNamespace as r } from "./index68.mjs";
|
|
4
|
+
const o = /* @__PURE__ */ r(e);
|
|
60
5
|
export {
|
|
61
|
-
|
|
62
|
-
f as streamChunk,
|
|
63
|
-
h as trackStream
|
|
6
|
+
o as default
|
|
64
7
|
};
|
package/dist/index254.mjs
CHANGED
package/dist/index256.mjs
CHANGED
package/dist/index257.mjs
CHANGED
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
var u;
|
|
4
|
-
function s() {
|
|
5
|
-
return u ? r : (u = 1, function(n) {
|
|
6
|
-
Object.defineProperty(n, "__esModule", {
|
|
7
|
-
value: !0
|
|
8
|
-
}), Object.defineProperty(n, "ensureLeadingSlash", {
|
|
9
|
-
enumerable: !0,
|
|
10
|
-
get: function() {
|
|
11
|
-
return t;
|
|
12
|
-
}
|
|
13
|
-
});
|
|
14
|
-
function t(e) {
|
|
15
|
-
return e.startsWith("/") ? e : "/" + e;
|
|
16
|
-
}
|
|
17
|
-
}(r), r);
|
|
18
|
-
}
|
|
2
|
+
var a = {};
|
|
19
3
|
export {
|
|
20
|
-
|
|
4
|
+
a as __exports
|
|
21
5
|
};
|
package/dist/index258.mjs
CHANGED
|
@@ -1,50 +1,21 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import { __exports as
|
|
3
|
-
var
|
|
4
|
-
function
|
|
5
|
-
return
|
|
6
|
-
Object.defineProperty(
|
|
2
|
+
import { __exports as r } from "./index273.mjs";
|
|
3
|
+
var u;
|
|
4
|
+
function s() {
|
|
5
|
+
return u ? r : (u = 1, function(n) {
|
|
6
|
+
Object.defineProperty(n, "__esModule", {
|
|
7
7
|
value: !0
|
|
8
|
-
})
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
get: n[t]
|
|
13
|
-
});
|
|
14
|
-
}
|
|
15
|
-
a(i, {
|
|
16
|
-
DEFAULT_SEGMENT_KEY: function() {
|
|
17
|
-
return E;
|
|
18
|
-
},
|
|
19
|
-
PAGE_SEGMENT_KEY: function() {
|
|
20
|
-
return r;
|
|
21
|
-
},
|
|
22
|
-
addSearchParamsIfPageSegment: function() {
|
|
23
|
-
return s;
|
|
24
|
-
},
|
|
25
|
-
isGroupSegment: function() {
|
|
26
|
-
return c;
|
|
27
|
-
},
|
|
28
|
-
isParallelRouteSegment: function() {
|
|
29
|
-
return f;
|
|
8
|
+
}), Object.defineProperty(n, "ensureLeadingSlash", {
|
|
9
|
+
enumerable: !0,
|
|
10
|
+
get: function() {
|
|
11
|
+
return t;
|
|
30
12
|
}
|
|
31
13
|
});
|
|
32
|
-
function
|
|
33
|
-
return e
|
|
34
|
-
}
|
|
35
|
-
function f(e) {
|
|
36
|
-
return e.startsWith("@") && e !== "@children";
|
|
37
|
-
}
|
|
38
|
-
function s(e, n) {
|
|
39
|
-
if (e.includes(r)) {
|
|
40
|
-
const o = JSON.stringify(n);
|
|
41
|
-
return o !== "{}" ? r + "?" + o : r;
|
|
42
|
-
}
|
|
43
|
-
return e;
|
|
14
|
+
function t(e) {
|
|
15
|
+
return e.startsWith("/") ? e : "/" + e;
|
|
44
16
|
}
|
|
45
|
-
|
|
46
|
-
}(u), u);
|
|
17
|
+
}(r), r);
|
|
47
18
|
}
|
|
48
19
|
export {
|
|
49
|
-
|
|
20
|
+
s as __require
|
|
50
21
|
};
|
package/dist/index259.mjs
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
2
|
+
import { __exports as u } from "./index274.mjs";
|
|
3
|
+
var _;
|
|
4
|
+
function g() {
|
|
5
|
+
return _ ? u : (_ = 1, function(i) {
|
|
6
|
+
Object.defineProperty(i, "__esModule", {
|
|
7
|
+
value: !0
|
|
8
|
+
});
|
|
9
|
+
function a(e, n) {
|
|
10
|
+
for (var t in n) Object.defineProperty(e, t, {
|
|
11
|
+
enumerable: !0,
|
|
12
|
+
get: n[t]
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
a(i, {
|
|
16
|
+
DEFAULT_SEGMENT_KEY: function() {
|
|
17
|
+
return E;
|
|
18
|
+
},
|
|
19
|
+
PAGE_SEGMENT_KEY: function() {
|
|
20
|
+
return r;
|
|
21
|
+
},
|
|
22
|
+
addSearchParamsIfPageSegment: function() {
|
|
23
|
+
return s;
|
|
24
|
+
},
|
|
25
|
+
isGroupSegment: function() {
|
|
26
|
+
return c;
|
|
27
|
+
},
|
|
28
|
+
isParallelRouteSegment: function() {
|
|
29
|
+
return f;
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
function c(e) {
|
|
33
|
+
return e[0] === "(" && e.endsWith(")");
|
|
34
|
+
}
|
|
35
|
+
function f(e) {
|
|
36
|
+
return e.startsWith("@") && e !== "@children";
|
|
37
|
+
}
|
|
38
|
+
function s(e, n) {
|
|
39
|
+
if (e.includes(r)) {
|
|
40
|
+
const o = JSON.stringify(n);
|
|
41
|
+
return o !== "{}" ? r + "?" + o : r;
|
|
42
|
+
}
|
|
43
|
+
return e;
|
|
44
|
+
}
|
|
45
|
+
const r = "__PAGE__", E = "__DEFAULT__";
|
|
46
|
+
}(u), u);
|
|
47
|
+
}
|
|
3
48
|
export {
|
|
4
|
-
|
|
49
|
+
g as __require
|
|
5
50
|
};
|
package/dist/index260.mjs
CHANGED
package/dist/index261.mjs
CHANGED
package/dist/index262.mjs
CHANGED
package/dist/index263.mjs
CHANGED
|
@@ -1,94 +1,5 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
var l;
|
|
4
|
-
function T() {
|
|
5
|
-
return l ? c.exports : (l = 1, (() => {
|
|
6
|
-
typeof __nccwpck_require__ < "u" && (__nccwpck_require__.ab = __dirname + "/");
|
|
7
|
-
var m = {};
|
|
8
|
-
(() => {
|
|
9
|
-
var v = m;
|
|
10
|
-
/*!
|
|
11
|
-
* cookie
|
|
12
|
-
* Copyright(c) 2012-2014 Roman Shtylman
|
|
13
|
-
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
14
|
-
* MIT Licensed
|
|
15
|
-
*/
|
|
16
|
-
v.parse = S, v.serialize = x;
|
|
17
|
-
var w = decodeURIComponent, h = encodeURIComponent, y = /; */, f = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;
|
|
18
|
-
function S(i, n) {
|
|
19
|
-
if (typeof i != "string")
|
|
20
|
-
throw new TypeError("argument str must be a string");
|
|
21
|
-
for (var a = {}, e = n || {}, o = i.split(y), s = e.decode || w, r = 0; r < o.length; r++) {
|
|
22
|
-
var t = o[r], p = t.indexOf("=");
|
|
23
|
-
if (!(p < 0)) {
|
|
24
|
-
var d = t.substr(0, p).trim(), u = t.substr(++p, t.length).trim();
|
|
25
|
-
u[0] == '"' && (u = u.slice(1, -1)), a[d] == null && (a[d] = _(u, s));
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
return a;
|
|
29
|
-
}
|
|
30
|
-
function x(i, n, a) {
|
|
31
|
-
var e = a || {}, o = e.encode || h;
|
|
32
|
-
if (typeof o != "function")
|
|
33
|
-
throw new TypeError("option encode is invalid");
|
|
34
|
-
if (!f.test(i))
|
|
35
|
-
throw new TypeError("argument name is invalid");
|
|
36
|
-
var s = o(n);
|
|
37
|
-
if (s && !f.test(s))
|
|
38
|
-
throw new TypeError("argument val is invalid");
|
|
39
|
-
var r = i + "=" + s;
|
|
40
|
-
if (e.maxAge != null) {
|
|
41
|
-
var t = e.maxAge - 0;
|
|
42
|
-
if (isNaN(t) || !isFinite(t))
|
|
43
|
-
throw new TypeError("option maxAge is invalid");
|
|
44
|
-
r += "; Max-Age=" + Math.floor(t);
|
|
45
|
-
}
|
|
46
|
-
if (e.domain) {
|
|
47
|
-
if (!f.test(e.domain))
|
|
48
|
-
throw new TypeError("option domain is invalid");
|
|
49
|
-
r += "; Domain=" + e.domain;
|
|
50
|
-
}
|
|
51
|
-
if (e.path) {
|
|
52
|
-
if (!f.test(e.path))
|
|
53
|
-
throw new TypeError("option path is invalid");
|
|
54
|
-
r += "; Path=" + e.path;
|
|
55
|
-
}
|
|
56
|
-
if (e.expires) {
|
|
57
|
-
if (typeof e.expires.toUTCString != "function")
|
|
58
|
-
throw new TypeError("option expires is invalid");
|
|
59
|
-
r += "; Expires=" + e.expires.toUTCString();
|
|
60
|
-
}
|
|
61
|
-
if (e.httpOnly && (r += "; HttpOnly"), e.secure && (r += "; Secure"), e.sameSite) {
|
|
62
|
-
var p = typeof e.sameSite == "string" ? e.sameSite.toLowerCase() : e.sameSite;
|
|
63
|
-
switch (p) {
|
|
64
|
-
case !0:
|
|
65
|
-
r += "; SameSite=Strict";
|
|
66
|
-
break;
|
|
67
|
-
case "lax":
|
|
68
|
-
r += "; SameSite=Lax";
|
|
69
|
-
break;
|
|
70
|
-
case "strict":
|
|
71
|
-
r += "; SameSite=Strict";
|
|
72
|
-
break;
|
|
73
|
-
case "none":
|
|
74
|
-
r += "; SameSite=None";
|
|
75
|
-
break;
|
|
76
|
-
default:
|
|
77
|
-
throw new TypeError("option sameSite is invalid");
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
return r;
|
|
81
|
-
}
|
|
82
|
-
function _(i, n) {
|
|
83
|
-
try {
|
|
84
|
-
return n(i);
|
|
85
|
-
} catch {
|
|
86
|
-
return i;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
})(), c.exports = m;
|
|
90
|
-
})(), c.exports);
|
|
91
|
-
}
|
|
2
|
+
var e = {};
|
|
92
3
|
export {
|
|
93
|
-
|
|
4
|
+
e as __exports
|
|
94
5
|
};
|
package/dist/index264.mjs
CHANGED
|
@@ -1,5 +1,94 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
2
|
+
import { __module as c } from "./index275.mjs";
|
|
3
|
+
var l;
|
|
4
|
+
function T() {
|
|
5
|
+
return l ? c.exports : (l = 1, (() => {
|
|
6
|
+
typeof __nccwpck_require__ < "u" && (__nccwpck_require__.ab = __dirname + "/");
|
|
7
|
+
var m = {};
|
|
8
|
+
(() => {
|
|
9
|
+
var v = m;
|
|
10
|
+
/*!
|
|
11
|
+
* cookie
|
|
12
|
+
* Copyright(c) 2012-2014 Roman Shtylman
|
|
13
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
14
|
+
* MIT Licensed
|
|
15
|
+
*/
|
|
16
|
+
v.parse = S, v.serialize = x;
|
|
17
|
+
var w = decodeURIComponent, h = encodeURIComponent, y = /; */, f = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;
|
|
18
|
+
function S(i, n) {
|
|
19
|
+
if (typeof i != "string")
|
|
20
|
+
throw new TypeError("argument str must be a string");
|
|
21
|
+
for (var a = {}, e = n || {}, o = i.split(y), s = e.decode || w, r = 0; r < o.length; r++) {
|
|
22
|
+
var t = o[r], p = t.indexOf("=");
|
|
23
|
+
if (!(p < 0)) {
|
|
24
|
+
var d = t.substr(0, p).trim(), u = t.substr(++p, t.length).trim();
|
|
25
|
+
u[0] == '"' && (u = u.slice(1, -1)), a[d] == null && (a[d] = _(u, s));
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
return a;
|
|
29
|
+
}
|
|
30
|
+
function x(i, n, a) {
|
|
31
|
+
var e = a || {}, o = e.encode || h;
|
|
32
|
+
if (typeof o != "function")
|
|
33
|
+
throw new TypeError("option encode is invalid");
|
|
34
|
+
if (!f.test(i))
|
|
35
|
+
throw new TypeError("argument name is invalid");
|
|
36
|
+
var s = o(n);
|
|
37
|
+
if (s && !f.test(s))
|
|
38
|
+
throw new TypeError("argument val is invalid");
|
|
39
|
+
var r = i + "=" + s;
|
|
40
|
+
if (e.maxAge != null) {
|
|
41
|
+
var t = e.maxAge - 0;
|
|
42
|
+
if (isNaN(t) || !isFinite(t))
|
|
43
|
+
throw new TypeError("option maxAge is invalid");
|
|
44
|
+
r += "; Max-Age=" + Math.floor(t);
|
|
45
|
+
}
|
|
46
|
+
if (e.domain) {
|
|
47
|
+
if (!f.test(e.domain))
|
|
48
|
+
throw new TypeError("option domain is invalid");
|
|
49
|
+
r += "; Domain=" + e.domain;
|
|
50
|
+
}
|
|
51
|
+
if (e.path) {
|
|
52
|
+
if (!f.test(e.path))
|
|
53
|
+
throw new TypeError("option path is invalid");
|
|
54
|
+
r += "; Path=" + e.path;
|
|
55
|
+
}
|
|
56
|
+
if (e.expires) {
|
|
57
|
+
if (typeof e.expires.toUTCString != "function")
|
|
58
|
+
throw new TypeError("option expires is invalid");
|
|
59
|
+
r += "; Expires=" + e.expires.toUTCString();
|
|
60
|
+
}
|
|
61
|
+
if (e.httpOnly && (r += "; HttpOnly"), e.secure && (r += "; Secure"), e.sameSite) {
|
|
62
|
+
var p = typeof e.sameSite == "string" ? e.sameSite.toLowerCase() : e.sameSite;
|
|
63
|
+
switch (p) {
|
|
64
|
+
case !0:
|
|
65
|
+
r += "; SameSite=Strict";
|
|
66
|
+
break;
|
|
67
|
+
case "lax":
|
|
68
|
+
r += "; SameSite=Lax";
|
|
69
|
+
break;
|
|
70
|
+
case "strict":
|
|
71
|
+
r += "; SameSite=Strict";
|
|
72
|
+
break;
|
|
73
|
+
case "none":
|
|
74
|
+
r += "; SameSite=None";
|
|
75
|
+
break;
|
|
76
|
+
default:
|
|
77
|
+
throw new TypeError("option sameSite is invalid");
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
return r;
|
|
81
|
+
}
|
|
82
|
+
function _(i, n) {
|
|
83
|
+
try {
|
|
84
|
+
return n(i);
|
|
85
|
+
} catch {
|
|
86
|
+
return i;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
})(), c.exports = m;
|
|
90
|
+
})(), c.exports);
|
|
91
|
+
}
|
|
3
92
|
export {
|
|
4
|
-
|
|
93
|
+
T as __require
|
|
5
94
|
};
|
package/dist/index272.mjs
CHANGED