@thednp/shorty 2.0.0-alpha11 → 2.0.0-alpha13
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 +3 -3
- package/cypress/e2e/misc.cy.ts +28 -5
- package/dist/shorty.cjs +1 -1
- package/dist/shorty.cjs.map +1 -1
- package/dist/shorty.d.ts +4 -1
- package/dist/shorty.js +1 -1
- package/dist/shorty.js.map +1 -1
- package/dist/shorty.mjs +318 -320
- package/dist/shorty.mjs.map +1 -1
- package/package.json +3 -4
- package/src/index.ts +3 -0
- package/src/misc/createElement.ts +2 -8
- package/src/misc/createElementNS.ts +4 -9
- package/src/misc/data.ts +1 -0
- package/tsconfig.json +3 -2
package/dist/shorty.mjs
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
const
|
|
2
|
-
DOMContentLoaded:
|
|
3
|
-
DOMMouseScroll:
|
|
4
|
-
abort:
|
|
5
|
-
beforeunload:
|
|
6
|
-
blur:
|
|
7
|
-
change:
|
|
8
|
-
click:
|
|
9
|
-
contextmenu:
|
|
10
|
-
dblclick:
|
|
11
|
-
error:
|
|
12
|
-
focus:
|
|
13
|
-
focusin:
|
|
14
|
-
focusout:
|
|
15
|
-
gesturechange:
|
|
16
|
-
gestureend:
|
|
17
|
-
gesturestart:
|
|
18
|
-
hover:
|
|
19
|
-
keydown:
|
|
20
|
-
keypress:
|
|
21
|
-
keyup:
|
|
22
|
-
load:
|
|
23
|
-
mousedown:
|
|
24
|
-
mousemove:
|
|
25
|
-
mousein:
|
|
26
|
-
mouseout:
|
|
27
|
-
mouseenter:
|
|
28
|
-
mouseleave:
|
|
29
|
-
mouseover:
|
|
30
|
-
mouseup:
|
|
31
|
-
mousewheel:
|
|
32
|
-
move:
|
|
33
|
-
orientationchange:
|
|
34
|
-
pointercancel:
|
|
35
|
-
pointerdown:
|
|
36
|
-
pointerleave:
|
|
37
|
-
pointermove:
|
|
38
|
-
pointerup:
|
|
39
|
-
readystatechange:
|
|
40
|
-
reset:
|
|
41
|
-
resize:
|
|
42
|
-
scroll:
|
|
43
|
-
select:
|
|
44
|
-
selectend:
|
|
45
|
-
selectstart:
|
|
46
|
-
submit:
|
|
47
|
-
touchcancel:
|
|
48
|
-
touchend:
|
|
49
|
-
touchmove:
|
|
50
|
-
touchstart:
|
|
51
|
-
unload:
|
|
52
|
-
},
|
|
1
|
+
const pe = "aria-checked", fe = "aria-description", me = "aria-describedby", ge = "aria-expanded", ve = "aria-haspopup", Ee = "aria-hidden", be = "aria-label", he = "aria-labelledby", ye = "aria-modal", we = "aria-pressed", Ae = "aria-selected", Se = "aria-valuemin", Me = "aria-valuemax", Ne = "aria-valuenow", ke = "aria-valuetext", G = "abort", j = "beforeunload", J = "blur", K = "change", X = "contextmenu", P = "DOMContentLoaded", Y = "DOMMouseScroll", Z = "error", $ = "focus", _ = "focusin", tt = "focusout", et = "gesturechange", nt = "gestureend", ot = "gesturestart", st = "keydown", ct = "keypress", rt = "keyup", at = "load", it = "click", ut = "dblclick", lt = "mousedown", dt = "mouseup", pt = "hover", ft = "mouseenter", mt = "mouseleave", gt = "mousein", vt = "mouseout", Et = "mouseover", bt = "mousemove", ht = "mousewheel", yt = "move", wt = "orientationchange", At = "pointercancel", St = "pointerdown", Mt = "pointerleave", Nt = "pointermove", kt = "pointerup", Tt = "readystatechange", Dt = "reset", Ct = "resize", Lt = "select", Ot = "selectend", It = "selectstart", zt = "scroll", xt = "submit", Vt = "touchstart", Bt = "touchmove", Ht = "touchcancel", Pt = "touchend", Ut = "unload", Te = {
|
|
2
|
+
DOMContentLoaded: P,
|
|
3
|
+
DOMMouseScroll: Y,
|
|
4
|
+
abort: G,
|
|
5
|
+
beforeunload: j,
|
|
6
|
+
blur: J,
|
|
7
|
+
change: K,
|
|
8
|
+
click: it,
|
|
9
|
+
contextmenu: X,
|
|
10
|
+
dblclick: ut,
|
|
11
|
+
error: Z,
|
|
12
|
+
focus: $,
|
|
13
|
+
focusin: _,
|
|
14
|
+
focusout: tt,
|
|
15
|
+
gesturechange: et,
|
|
16
|
+
gestureend: nt,
|
|
17
|
+
gesturestart: ot,
|
|
18
|
+
hover: pt,
|
|
19
|
+
keydown: st,
|
|
20
|
+
keypress: ct,
|
|
21
|
+
keyup: rt,
|
|
22
|
+
load: at,
|
|
23
|
+
mousedown: lt,
|
|
24
|
+
mousemove: bt,
|
|
25
|
+
mousein: gt,
|
|
26
|
+
mouseout: vt,
|
|
27
|
+
mouseenter: ft,
|
|
28
|
+
mouseleave: mt,
|
|
29
|
+
mouseover: Et,
|
|
30
|
+
mouseup: dt,
|
|
31
|
+
mousewheel: ht,
|
|
32
|
+
move: yt,
|
|
33
|
+
orientationchange: wt,
|
|
34
|
+
pointercancel: At,
|
|
35
|
+
pointerdown: St,
|
|
36
|
+
pointerleave: Mt,
|
|
37
|
+
pointermove: Nt,
|
|
38
|
+
pointerup: kt,
|
|
39
|
+
readystatechange: Tt,
|
|
40
|
+
reset: Dt,
|
|
41
|
+
resize: Ct,
|
|
42
|
+
scroll: zt,
|
|
43
|
+
select: Lt,
|
|
44
|
+
selectend: Ot,
|
|
45
|
+
selectstart: It,
|
|
46
|
+
submit: xt,
|
|
47
|
+
touchcancel: Ht,
|
|
48
|
+
touchend: Pt,
|
|
49
|
+
touchmove: Bt,
|
|
50
|
+
touchstart: Vt,
|
|
51
|
+
unload: Ut
|
|
52
|
+
}, De = "drag", Ce = "dragstart", Le = "dragenter", Oe = "dragleave", Ie = "dragover", ze = "dragend", xe = "loadstart", Ve = {
|
|
53
53
|
start: "mousedown",
|
|
54
54
|
end: "mouseup",
|
|
55
55
|
move: "mousemove",
|
|
56
56
|
cancel: "mouseleave"
|
|
57
|
-
},
|
|
57
|
+
}, Be = { down: "mousedown", up: "mouseup" }, He = "onmouseleave" in document ? ["mouseenter", "mouseleave"] : (
|
|
58
58
|
/* istanbul ignore next */
|
|
59
59
|
["mouseover", "mouseout"]
|
|
60
|
-
),
|
|
60
|
+
), Pe = {
|
|
61
61
|
start: "touchstart",
|
|
62
62
|
end: "touchend",
|
|
63
63
|
move: "touchmove",
|
|
64
64
|
cancel: "touchcancel"
|
|
65
|
-
},
|
|
65
|
+
}, Ue = { in: "focusin", out: "focusout" }, Fe = {
|
|
66
66
|
Backspace: "Backspace",
|
|
67
67
|
// 8
|
|
68
68
|
Tab: "Tab",
|
|
@@ -101,7 +101,7 @@ const fe = "aria-checked", me = "aria-description", ge = "aria-describedby", ve
|
|
|
101
101
|
// 93
|
|
102
102
|
ScrollLock: "ScrollLock"
|
|
103
103
|
// 145
|
|
104
|
-
},
|
|
104
|
+
}, We = "Alt", Re = "ArrowDown", Qe = "ArrowUp", qe = "ArrowLeft", Ge = "ArrowRight", je = "Backspace", Je = "CapsLock", Ke = "Control", Xe = "Delete", Ye = "Enter", Ze = "Escape", $e = "Insert", _e = "Meta", tn = "Pause", en = "ScrollLock", nn = "Shift", on = "Space", sn = "Tab", Ft = "animationDuration", Wt = "animationDelay", U = "animationName", D = "animationend", Rt = "transitionDuration", Qt = "transitionDelay", C = "transitionend", F = "transitionProperty", cn = "addEventListener", rn = "removeEventListener", an = {
|
|
105
105
|
linear: "linear",
|
|
106
106
|
easingSinusoidalIn: "cubic-bezier(0.47,0,0.745,0.715)",
|
|
107
107
|
easingSinusoidalOut: "cubic-bezier(0.39,0.575,0.565,1)",
|
|
@@ -127,43 +127,44 @@ const fe = "aria-checked", me = "aria-description", ge = "aria-describedby", ve
|
|
|
127
127
|
easingBackIn: "cubic-bezier(0.6,-0.28,0.735,0.045)",
|
|
128
128
|
easingBackOut: "cubic-bezier(0.175,0.885,0.32,1.275)",
|
|
129
129
|
easingBackInOut: "cubic-bezier(0.68,-0.55,0.265,1.55)"
|
|
130
|
-
},
|
|
131
|
-
let
|
|
132
|
-
|
|
133
|
-
const
|
|
130
|
+
}, un = "offsetHeight", ln = "offsetWidth", dn = "scrollHeight", pn = "scrollWidth", fn = "tabindex", qt = navigator.userAgentData, A = qt, { userAgent: Gt } = navigator, S = Gt, z = /iPhone|iPad|iPod|Android/i;
|
|
131
|
+
let L = !1;
|
|
132
|
+
A ? L = A.brands.some((t) => z.test(t.brand)) : L = z.test(S);
|
|
133
|
+
const mn = L, x = /(iPhone|iPod|iPad)/, gn = A ? A.brands.some((t) => x.test(t.brand)) : (
|
|
134
134
|
/* istanbul ignore next */
|
|
135
|
-
|
|
136
|
-
),
|
|
135
|
+
x.test(S)
|
|
136
|
+
), vn = S ? S.includes("Firefox") : (
|
|
137
137
|
/* istanbul ignore next */
|
|
138
138
|
!1
|
|
139
|
-
), { head:
|
|
139
|
+
), { head: M } = document, En = ["webkitPerspective", "perspective"].some((t) => t in M.style), jt = (t, e, n, o) => {
|
|
140
140
|
const s = o || !1;
|
|
141
141
|
t.addEventListener(e, n, s);
|
|
142
|
-
},
|
|
142
|
+
}, Jt = (t, e, n, o) => {
|
|
143
143
|
const s = o || !1;
|
|
144
144
|
t.removeEventListener(e, n, s);
|
|
145
|
-
},
|
|
146
|
-
const s = (
|
|
147
|
-
(
|
|
145
|
+
}, Kt = (t, e, n, o) => {
|
|
146
|
+
const s = (r) => {
|
|
147
|
+
(r.target === t || r.currentTarget === t) && (n.apply(t, [r]), Jt(t, e, s, o));
|
|
148
148
|
};
|
|
149
|
-
|
|
150
|
-
},
|
|
151
|
-
},
|
|
149
|
+
jt(t, e, s, o);
|
|
150
|
+
}, Xt = () => {
|
|
151
|
+
}, bn = (() => {
|
|
152
152
|
let t = !1;
|
|
153
153
|
try {
|
|
154
154
|
const e = Object.defineProperty({}, "passive", {
|
|
155
155
|
get: () => (t = !0, t)
|
|
156
156
|
});
|
|
157
|
-
|
|
157
|
+
Kt(document, P, Xt, e);
|
|
158
158
|
} catch {
|
|
159
159
|
}
|
|
160
160
|
return t;
|
|
161
|
-
})(),
|
|
162
|
-
"msMaxTouchPoints" in navigator,
|
|
161
|
+
})(), hn = ["webkitTransform", "transform"].some((t) => t in M.style), yn = "ontouchstart" in window || /* istanbul ignore next */
|
|
162
|
+
"msMaxTouchPoints" in navigator, wn = ["webkitAnimation", "animation"].some((t) => t in M.style), An = ["webkitTransition", "transition"].some((t) => t in M.style), Yt = (t, e) => t.getAttribute(e), Sn = (t, e, n) => e.getAttributeNS(t, n), Mn = (t, e) => t.hasAttribute(e), Nn = (t, e, n) => e.hasAttributeNS(t, n), kn = (t, e, n) => t.setAttribute(e, n), Tn = (t, e, n, o) => e.setAttributeNS(t, n, o), Dn = (t, e) => t.removeAttribute(e), Cn = (t, e, n) => e.removeAttributeNS(t, n), Ln = (t, ...e) => {
|
|
163
163
|
t.classList.add(...e);
|
|
164
164
|
}, On = (t, ...e) => {
|
|
165
165
|
t.classList.remove(...e);
|
|
166
|
-
}, In = (t, e) => t.classList.contains(e), { body: zn } = document, { documentElement: xn } = document, Vn = (t) => Array.from(t),
|
|
166
|
+
}, In = (t, e) => t.classList.contains(e), { body: zn } = document, { documentElement: xn } = document, Vn = (t) => Array.from(t), v = (t) => t != null && typeof t == "object" || !1, i = (t) => v(t) && typeof t.nodeType == "number" && [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11].some((e) => t.nodeType === e) || !1, u = (t) => i(t) && t.nodeType === 1 || !1, E = /* @__PURE__ */ new Map(), O = {
|
|
167
|
+
data: E,
|
|
167
168
|
/**
|
|
168
169
|
* Sets web components data.
|
|
169
170
|
*
|
|
@@ -174,7 +175,7 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
174
175
|
set: (t, e, n) => {
|
|
175
176
|
if (!u(t))
|
|
176
177
|
return;
|
|
177
|
-
|
|
178
|
+
E.has(e) || E.set(e, /* @__PURE__ */ new Map()), E.get(e).set(t, n);
|
|
178
179
|
},
|
|
179
180
|
/**
|
|
180
181
|
* Returns all instances for specified component.
|
|
@@ -182,7 +183,7 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
182
183
|
* @param component the component's name or a unique key
|
|
183
184
|
* @returns all the component instances
|
|
184
185
|
*/
|
|
185
|
-
getAllFor: (t) =>
|
|
186
|
+
getAllFor: (t) => E.get(t) || null,
|
|
186
187
|
/**
|
|
187
188
|
* Returns the instance associated with the target.
|
|
188
189
|
*
|
|
@@ -193,7 +194,7 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
193
194
|
get: (t, e) => {
|
|
194
195
|
if (!u(t) || !e)
|
|
195
196
|
return null;
|
|
196
|
-
const n =
|
|
197
|
+
const n = O.getAllFor(e);
|
|
197
198
|
return t && n && n.get(t) || null;
|
|
198
199
|
},
|
|
199
200
|
/**
|
|
@@ -203,38 +204,34 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
203
204
|
* @param component the component's name or a unique key
|
|
204
205
|
*/
|
|
205
206
|
remove: (t, e) => {
|
|
206
|
-
const n =
|
|
207
|
-
!n || !u(t) || (n.delete(t), n.size === 0 &&
|
|
207
|
+
const n = O.getAllFor(e);
|
|
208
|
+
!n || !u(t) || (n.delete(t), n.size === 0 && E.delete(e));
|
|
208
209
|
}
|
|
209
|
-
}, Bn = (t, e) =>
|
|
210
|
+
}, Bn = (t, e) => O.get(t, e), N = (t) => typeof t == "string" || !1, W = (t) => v(t) && t.constructor.name === "Window" || !1, R = (t) => i(t) && t.nodeType === 9 || !1, d = (t) => W(t) ? t.document : R(t) ? t : i(t) ? t.ownerDocument : window.document, k = (t, ...e) => Object.assign(t, ...e), Zt = (t) => {
|
|
210
211
|
if (!t)
|
|
211
212
|
return;
|
|
212
|
-
if (
|
|
213
|
+
if (N(t))
|
|
213
214
|
return d().createElement(t);
|
|
214
|
-
const { tagName: e } = t, n =
|
|
215
|
+
const { tagName: e } = t, n = Zt(e);
|
|
215
216
|
if (!n)
|
|
216
217
|
return;
|
|
217
218
|
const o = { ...t };
|
|
218
|
-
return delete o.tagName,
|
|
219
|
-
|
|
220
|
-
}), n;
|
|
221
|
-
}, _t = (t, e) => {
|
|
219
|
+
return delete o.tagName, k(n, o);
|
|
220
|
+
}, $t = (t, e) => {
|
|
222
221
|
if (!t || !e)
|
|
223
222
|
return;
|
|
224
|
-
if (
|
|
223
|
+
if (N(e))
|
|
225
224
|
return d().createElementNS(t, e);
|
|
226
|
-
const { tagName: n } = e, o =
|
|
225
|
+
const { tagName: n } = e, o = $t(t, n);
|
|
227
226
|
if (!o)
|
|
228
227
|
return;
|
|
229
228
|
const s = { ...e };
|
|
230
|
-
return delete s.tagName,
|
|
231
|
-
|
|
232
|
-
}), o;
|
|
233
|
-
}, Q = (t, e) => t.dispatchEvent(e), Hn = (t, e, n) => n.indexOf(t) === e, v = (t, e) => {
|
|
229
|
+
return delete s.tagName, k(o, s);
|
|
230
|
+
}, Q = (t, e) => t.dispatchEvent(e), Hn = (t, e, n) => n.indexOf(t) === e, g = (t, e) => {
|
|
234
231
|
const n = getComputedStyle(t), o = e.replace("webkit", "Webkit").replace(/([A-Z])/g, "-$1").toLowerCase();
|
|
235
232
|
return n.getPropertyValue(o);
|
|
236
|
-
},
|
|
237
|
-
const e =
|
|
233
|
+
}, _t = (t) => {
|
|
234
|
+
const e = g(t, U), n = g(t, Wt), o = n.includes("ms") ? (
|
|
238
235
|
/* istanbul ignore next */
|
|
239
236
|
1
|
|
240
237
|
) : 1e3, s = e && e !== "none" ? parseFloat(n) * o : 0;
|
|
@@ -242,8 +239,8 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
242
239
|
/* istanbul ignore next */
|
|
243
240
|
0
|
|
244
241
|
) : s;
|
|
245
|
-
},
|
|
246
|
-
const e =
|
|
242
|
+
}, te = (t) => {
|
|
243
|
+
const e = g(t, U), n = g(t, Ft), o = n.includes("ms") ? (
|
|
247
244
|
/* istanbul ignore next */
|
|
248
245
|
1
|
|
249
246
|
) : 1e3, s = e && e !== "none" ? parseFloat(n) * o : 0;
|
|
@@ -253,18 +250,18 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
253
250
|
) : s;
|
|
254
251
|
}, Pn = (t, e) => {
|
|
255
252
|
let n = 0;
|
|
256
|
-
const o = new Event(
|
|
253
|
+
const o = new Event(D), s = te(t), r = _t(t);
|
|
257
254
|
if (s) {
|
|
258
255
|
const a = (l) => {
|
|
259
|
-
l.target === t && (e.apply(t, [l]), t.removeEventListener(
|
|
256
|
+
l.target === t && (e.apply(t, [l]), t.removeEventListener(D, a), n = 1);
|
|
260
257
|
};
|
|
261
|
-
t.addEventListener(
|
|
258
|
+
t.addEventListener(D, a), setTimeout(() => {
|
|
262
259
|
n || Q(t, o);
|
|
263
|
-
}, s +
|
|
260
|
+
}, s + r + 17);
|
|
264
261
|
} else
|
|
265
262
|
e.apply(t, [o]);
|
|
266
|
-
},
|
|
267
|
-
const e =
|
|
263
|
+
}, ee = (t) => {
|
|
264
|
+
const e = g(t, F), n = g(t, Qt), o = n.includes("ms") ? (
|
|
268
265
|
/* istanbul ignore next */
|
|
269
266
|
1
|
|
270
267
|
) : 1e3, s = e && e !== "none" ? parseFloat(n) * o : (
|
|
@@ -275,8 +272,8 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
275
272
|
/* istanbul ignore next */
|
|
276
273
|
0
|
|
277
274
|
) : s;
|
|
278
|
-
},
|
|
279
|
-
const e =
|
|
275
|
+
}, ne = (t) => {
|
|
276
|
+
const e = g(t, F), n = g(t, Rt), o = n.includes("ms") ? (
|
|
280
277
|
/* istanbul ignore next */
|
|
281
278
|
1
|
|
282
279
|
) : 1e3, s = e && e !== "none" ? parseFloat(n) * o : (
|
|
@@ -289,42 +286,42 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
289
286
|
) : s;
|
|
290
287
|
}, Un = (t, e) => {
|
|
291
288
|
let n = 0;
|
|
292
|
-
const o = new Event(
|
|
289
|
+
const o = new Event(C), s = ne(t), r = ee(t);
|
|
293
290
|
if (s) {
|
|
294
291
|
const a = (l) => {
|
|
295
|
-
l.target === t && (e.apply(t, [l]), t.removeEventListener(
|
|
292
|
+
l.target === t && (e.apply(t, [l]), t.removeEventListener(C, a), n = 1);
|
|
296
293
|
};
|
|
297
|
-
t.addEventListener(
|
|
294
|
+
t.addEventListener(C, a), setTimeout(() => {
|
|
298
295
|
n || Q(t, o);
|
|
299
|
-
}, s +
|
|
296
|
+
}, s + r + 17);
|
|
300
297
|
} else
|
|
301
298
|
e.apply(t, [o]);
|
|
302
|
-
}, Fn = (t) => Float32Array.from(Array.from(t)), Wn = (t) => Float64Array.from(Array.from(t)), Rn = (t, e) => t.focus(e),
|
|
303
|
-
const s = { ...n },
|
|
304
|
-
return
|
|
305
|
-
const
|
|
306
|
-
l[
|
|
307
|
-
}),
|
|
308
|
-
s[
|
|
309
|
-
}),
|
|
310
|
-
|
|
299
|
+
}, Fn = (t) => Float32Array.from(Array.from(t)), Wn = (t) => Float64Array.from(Array.from(t)), Rn = (t, e) => t.focus(e), V = (t) => ["true", !0].includes(t) ? !0 : ["false", !1].includes(t) ? !1 : ["null", "", null, void 0].includes(t) ? null : t !== "" && !Number.isNaN(+t) ? +t : t, w = (t) => Object.entries(t), oe = (t) => t.toLowerCase(), Qn = (t, e, n, o) => {
|
|
300
|
+
const s = { ...n }, r = { ...t.dataset }, a = { ...e }, l = {}, p = "title";
|
|
301
|
+
return w(r).forEach(([c, f]) => {
|
|
302
|
+
const y = o && typeof c == "string" && c.includes(o) ? c.replace(o, "").replace(/[A-Z]/g, (q) => oe(q)) : c;
|
|
303
|
+
l[y] = V(f);
|
|
304
|
+
}), w(s).forEach(([c, f]) => {
|
|
305
|
+
s[c] = V(f);
|
|
306
|
+
}), w(e).forEach(([c, f]) => {
|
|
307
|
+
c in s ? a[c] = s[c] : c in l ? a[c] = l[c] : a[c] = c === p ? Yt(t, p) : f;
|
|
311
308
|
}), a;
|
|
312
|
-
},
|
|
309
|
+
}, qn = (t, e) => v(t) && (Object.hasOwn(t, e) || e in t), Gn = (t) => Object.keys(t), jn = (t) => Object.values(t), Jn = (t, e) => {
|
|
313
310
|
const n = new CustomEvent(t, {
|
|
314
311
|
cancelable: !0,
|
|
315
312
|
bubbles: !0
|
|
316
313
|
});
|
|
317
|
-
return
|
|
314
|
+
return v(e) && k(n, e), n;
|
|
318
315
|
}, Kn = { passive: !0 }, Xn = (t) => t.offsetHeight, Yn = (t, e) => {
|
|
319
|
-
|
|
320
|
-
if (o &&
|
|
316
|
+
w(e).forEach(([n, o]) => {
|
|
317
|
+
if (o && N(n) && n.includes("--"))
|
|
321
318
|
t.style.setProperty(n, o);
|
|
322
319
|
else {
|
|
323
320
|
const s = {};
|
|
324
|
-
s[n] = o,
|
|
321
|
+
s[n] = o, k(t.style, s);
|
|
325
322
|
}
|
|
326
323
|
});
|
|
327
|
-
},
|
|
324
|
+
}, I = (t) => v(t) && t.constructor.name === "Map" || !1, se = (t) => typeof t == "number" || !1, m = /* @__PURE__ */ new Map(), Zn = {
|
|
328
325
|
/**
|
|
329
326
|
* Sets a new timeout timer for an element, or element -> key association.
|
|
330
327
|
*
|
|
@@ -347,8 +344,8 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
347
344
|
if (!u(t))
|
|
348
345
|
return null;
|
|
349
346
|
const n = m.get(t);
|
|
350
|
-
return e && n &&
|
|
351
|
-
null :
|
|
347
|
+
return e && n && I(n) ? n.get(e) || /* istanbul ignore next */
|
|
348
|
+
null : se(n) ? n : null;
|
|
352
349
|
},
|
|
353
350
|
/**
|
|
354
351
|
* Clears the element's timer.
|
|
@@ -360,81 +357,81 @@ const gn = C, z = /(iPhone|iPod|iPad)/, vn = S ? S.brands.some((t) => z.test(t.b
|
|
|
360
357
|
if (!u(t))
|
|
361
358
|
return;
|
|
362
359
|
const n = m.get(t);
|
|
363
|
-
e && e.length &&
|
|
360
|
+
e && e.length && I(n) ? (clearTimeout(n.get(e)), n.delete(e), n.size === 0 && m.delete(t)) : (clearTimeout(n), m.delete(t));
|
|
364
361
|
}
|
|
365
|
-
}, $n = (t) => t.toUpperCase(),
|
|
366
|
-
const { width: n, height: o, top: s, right:
|
|
367
|
-
let p = 1,
|
|
362
|
+
}, $n = (t) => t.toUpperCase(), h = (t, e) => {
|
|
363
|
+
const { width: n, height: o, top: s, right: r, bottom: a, left: l } = t.getBoundingClientRect();
|
|
364
|
+
let p = 1, c = 1;
|
|
368
365
|
if (e && u(t)) {
|
|
369
|
-
const { offsetWidth: f, offsetHeight:
|
|
366
|
+
const { offsetWidth: f, offsetHeight: y } = t;
|
|
370
367
|
p = f > 0 ? Math.round(n) / f : (
|
|
371
368
|
/* istanbul ignore next */
|
|
372
369
|
1
|
|
373
|
-
),
|
|
370
|
+
), c = y > 0 ? Math.round(o) / y : (
|
|
374
371
|
/* istanbul ignore next */
|
|
375
372
|
1
|
|
376
373
|
);
|
|
377
374
|
}
|
|
378
375
|
return {
|
|
379
376
|
width: n / p,
|
|
380
|
-
height: o /
|
|
381
|
-
top: s /
|
|
382
|
-
right:
|
|
383
|
-
bottom: a /
|
|
377
|
+
height: o / c,
|
|
378
|
+
top: s / c,
|
|
379
|
+
right: r / p,
|
|
380
|
+
bottom: a / c,
|
|
384
381
|
left: l / p,
|
|
385
382
|
x: l / p,
|
|
386
|
-
y: s /
|
|
383
|
+
y: s / c
|
|
387
384
|
};
|
|
388
|
-
}, _n = (t) => d(t).body,
|
|
385
|
+
}, _n = (t) => d(t).body, T = (t) => d(t).documentElement, to = (t) => d(t).head, eo = (t) => {
|
|
389
386
|
const e = W(t), n = e ? t.scrollX : t.scrollLeft, o = e ? t.scrollY : t.scrollTop;
|
|
390
387
|
return { x: n, y: o };
|
|
391
|
-
},
|
|
388
|
+
}, ce = (t) => i(t) && t.constructor.name === "ShadowRoot" || !1, no = (t) => t.nodeName === "HTML" ? t : u(t) && t.assignedSlot || // step into the shadow DOM of the parent of a slotted node
|
|
392
389
|
i(t) && t.parentNode || // DOM Element detected
|
|
393
|
-
|
|
394
|
-
|
|
390
|
+
ce(t) && t.host || // ShadowRoot detected
|
|
391
|
+
T(t), re = (t) => {
|
|
395
392
|
if (!u(t))
|
|
396
393
|
return !1;
|
|
397
|
-
const { width: e, height: n } =
|
|
394
|
+
const { width: e, height: n } = h(t), { offsetWidth: o, offsetHeight: s } = t;
|
|
398
395
|
return Math.round(e) !== o || Math.round(n) !== s;
|
|
399
396
|
}, oo = (t, e, n) => {
|
|
400
|
-
const o = u(e), s =
|
|
397
|
+
const o = u(e), s = h(t, o && re(e)), r = { x: 0, y: 0 };
|
|
401
398
|
if (o) {
|
|
402
|
-
const a =
|
|
403
|
-
|
|
399
|
+
const a = h(e, !0);
|
|
400
|
+
r.x = a.x + e.clientLeft, r.y = a.y + e.clientTop;
|
|
404
401
|
}
|
|
405
402
|
return {
|
|
406
|
-
x: s.left + n.x -
|
|
407
|
-
y: s.top + n.y -
|
|
403
|
+
x: s.left + n.x - r.x,
|
|
404
|
+
y: s.top + n.y - r.y,
|
|
408
405
|
width: s.width,
|
|
409
406
|
height: s.height
|
|
410
407
|
};
|
|
411
408
|
};
|
|
412
|
-
let
|
|
413
|
-
const b = /* @__PURE__ */ new Map(),
|
|
414
|
-
let n = e ?
|
|
409
|
+
let B = 0, H = 0;
|
|
410
|
+
const b = /* @__PURE__ */ new Map(), ae = (t, e) => {
|
|
411
|
+
let n = e ? B : H;
|
|
415
412
|
if (e) {
|
|
416
|
-
const o =
|
|
417
|
-
b.has(o) || b.set(o, s),
|
|
413
|
+
const o = ae(t), s = b.get(o) || /* @__PURE__ */ new Map();
|
|
414
|
+
b.has(o) || b.set(o, s), I(s) && !s.has(e) ? (s.set(e, n), B += 1) : n = s.get(e);
|
|
418
415
|
} else {
|
|
419
416
|
const o = t.id || t;
|
|
420
|
-
b.has(o) ? n = b.get(o) : (b.set(o, n),
|
|
417
|
+
b.has(o) ? n = b.get(o) : (b.set(o, n), H += 1);
|
|
421
418
|
}
|
|
422
419
|
return n;
|
|
423
420
|
}, so = (t) => {
|
|
424
421
|
var e;
|
|
425
422
|
return t ? R(t) ? t.defaultView : i(t) ? (e = t == null ? void 0 : t.ownerDocument) == null ? void 0 : e.defaultView : t : window;
|
|
426
|
-
},
|
|
423
|
+
}, ie = (t) => Array.isArray(t) || !1, co = (t) => i(t) && t.nodeName === "CANVAS" || !1, ue = (t) => u(t) && !!t.shadowRoot || !1, ro = (t) => i(t) && [1, 2, 3, 4, 5, 6, 7, 8].some((e) => t.nodeType === e) || !1, ao = (t) => {
|
|
427
424
|
if (!i(t))
|
|
428
425
|
return !1;
|
|
429
|
-
const { top: e, bottom: n } =
|
|
426
|
+
const { top: e, bottom: n } = h(t), { clientHeight: o } = T(t);
|
|
430
427
|
return e <= o && n >= 0;
|
|
431
428
|
}, io = (t) => {
|
|
432
429
|
if (!i(t))
|
|
433
430
|
return !1;
|
|
434
|
-
const { clientWidth: e, clientHeight: n } =
|
|
435
|
-
return o >= 0 && s >= 0 &&
|
|
436
|
-
}, uo = (t) =>
|
|
437
|
-
if (!
|
|
431
|
+
const { clientWidth: e, clientHeight: n } = T(t), { top: o, left: s, bottom: r, right: a } = h(t, !0);
|
|
432
|
+
return o >= 0 && s >= 0 && r <= n && a <= e;
|
|
433
|
+
}, uo = (t) => ie(t) && t.every(u) || !1, lo = (t) => typeof t == "function" || !1, po = (t) => v(t) && t.constructor.name === "HTMLCollection" || !1, fo = (t) => u(t) && t.tagName === "IMG" || !1, mo = (t) => {
|
|
434
|
+
if (!N(t))
|
|
438
435
|
return !1;
|
|
439
436
|
try {
|
|
440
437
|
JSON.parse(t);
|
|
@@ -442,228 +439,229 @@ const b = /* @__PURE__ */ new Map(), ie = (t, e) => {
|
|
|
442
439
|
return !1;
|
|
443
440
|
}
|
|
444
441
|
return !0;
|
|
445
|
-
}, go = (t) =>
|
|
446
|
-
|
|
442
|
+
}, go = (t) => v(t) && t.constructor.name === "WeakMap" || !1, vo = (t) => i(t) && ["SVG", "Image", "Video", "Canvas"].some((e) => t.constructor.name.includes(e)) || !1, Eo = (t) => v(t) && t.constructor.name === "NodeList" || !1, bo = (t) => T(t).dir === "rtl", ho = (t) => i(t) && t.constructor.name.includes("SVG") || !1, yo = (t) => i(t) && ["TABLE", "TD", "TH"].includes(t.nodeName) || !1, le = (t, e) => t ? t.closest(e) || // break out of `ShadowRoot`
|
|
443
|
+
le(t.getRootNode().host, e) : null, wo = (t, e) => u(t) ? t : (i(e) ? e : d()).querySelector(t), de = (t, e) => (i(e) ? e : d()).getElementsByTagName(t), Ao = (t) => [...de("*", t)].filter(ue), So = (t, e) => d(e).getElementById(t) || null, Mo = (t, e) => (i(e) ? e : d()).querySelectorAll(t), No = (t, e) => (e && i(e) ? e : d()).getElementsByClassName(
|
|
447
444
|
t
|
|
448
|
-
), ko = (t, e) => t.matches(e);
|
|
445
|
+
), ko = (t, e) => t.matches(e), To = "2.0.0alpha13";
|
|
449
446
|
export {
|
|
450
447
|
Vn as ArrayFrom,
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
448
|
+
P as DOMContentLoadedEvent,
|
|
449
|
+
Y as DOMMouseScrollEvent,
|
|
450
|
+
O as Data,
|
|
454
451
|
Fn as Float32ArrayFrom,
|
|
455
452
|
Wn as Float64ArrayFrom,
|
|
456
|
-
|
|
457
|
-
|
|
453
|
+
k as ObjectAssign,
|
|
454
|
+
w as ObjectEntries,
|
|
458
455
|
qn as ObjectHasOwn,
|
|
459
456
|
Gn as ObjectKeys,
|
|
460
457
|
jn as ObjectValues,
|
|
461
458
|
Zn as Timer,
|
|
462
|
-
|
|
459
|
+
G as abortEvent,
|
|
463
460
|
Ln as addClass,
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
461
|
+
cn as addEventListener,
|
|
462
|
+
Wt as animationDelay,
|
|
463
|
+
Ft as animationDuration,
|
|
464
|
+
D as animationEndEvent,
|
|
465
|
+
U as animationName,
|
|
466
|
+
pe as ariaChecked,
|
|
467
|
+
me as ariaDescribedBy,
|
|
468
|
+
fe as ariaDescription,
|
|
469
|
+
ge as ariaExpanded,
|
|
470
|
+
ve as ariaHasPopup,
|
|
471
|
+
Ee as ariaHidden,
|
|
472
|
+
be as ariaLabel,
|
|
473
|
+
he as ariaLabelledBy,
|
|
474
|
+
ye as ariaModal,
|
|
475
|
+
we as ariaPressed,
|
|
476
|
+
Ae as ariaSelected,
|
|
477
|
+
Me as ariaValueMax,
|
|
478
|
+
Se as ariaValueMin,
|
|
479
|
+
Ne as ariaValueNow,
|
|
480
|
+
ke as ariaValueText,
|
|
481
|
+
j as beforeunloadEvent,
|
|
482
|
+
an as bezierEasings,
|
|
483
|
+
J as blurEvent,
|
|
484
|
+
K as changeEvent,
|
|
485
|
+
le as closest,
|
|
486
|
+
X as contextmenuEvent,
|
|
490
487
|
Jn as createCustomEvent,
|
|
491
|
-
|
|
492
|
-
|
|
488
|
+
Zt as createElement,
|
|
489
|
+
$t as createElementNS,
|
|
493
490
|
Q as dispatchEvent,
|
|
494
491
|
Hn as distinct,
|
|
495
492
|
zn as documentBody,
|
|
496
493
|
xn as documentElement,
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
494
|
+
M as documentHead,
|
|
495
|
+
De as dragEvent,
|
|
496
|
+
ze as dragendEvent,
|
|
497
|
+
Le as dragenterEvent,
|
|
498
|
+
Oe as dragleaveEvent,
|
|
499
|
+
Ie as dragoverEvent,
|
|
500
|
+
Ce as dragstartEvent,
|
|
504
501
|
Pn as emulateAnimationEnd,
|
|
505
502
|
Un as emulateTransitionEnd,
|
|
506
|
-
|
|
503
|
+
Z as errorEvent,
|
|
507
504
|
Rn as focus,
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
505
|
+
$ as focusEvent,
|
|
506
|
+
Ue as focusEvents,
|
|
507
|
+
_ as focusinEvent,
|
|
508
|
+
tt as focusoutEvent,
|
|
509
|
+
et as gesturechangeEvent,
|
|
510
|
+
nt as gestureendEvent,
|
|
511
|
+
ot as gesturestartEvent,
|
|
512
|
+
Yt as getAttribute,
|
|
513
|
+
Sn as getAttributeNS,
|
|
514
|
+
h as getBoundingClientRect,
|
|
518
515
|
Ao as getCustomElements,
|
|
519
516
|
d as getDocument,
|
|
520
517
|
_n as getDocumentBody,
|
|
521
|
-
|
|
518
|
+
T as getDocumentElement,
|
|
522
519
|
to as getDocumentHead,
|
|
523
|
-
|
|
524
|
-
|
|
520
|
+
_t as getElementAnimationDelay,
|
|
521
|
+
te as getElementAnimationDuration,
|
|
525
522
|
So as getElementById,
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
523
|
+
g as getElementStyle,
|
|
524
|
+
ee as getElementTransitionDelay,
|
|
525
|
+
ne as getElementTransitionDuration,
|
|
529
526
|
No as getElementsByClassName,
|
|
530
|
-
|
|
527
|
+
de as getElementsByTagName,
|
|
531
528
|
Bn as getInstance,
|
|
532
529
|
eo as getNodeScroll,
|
|
533
530
|
no as getParentNode,
|
|
534
531
|
oo as getRectRelativeToOffsetParent,
|
|
535
|
-
|
|
532
|
+
ae as getUID,
|
|
536
533
|
so as getWindow,
|
|
537
|
-
|
|
538
|
-
|
|
534
|
+
Mn as hasAttribute,
|
|
535
|
+
Nn as hasAttributeNS,
|
|
539
536
|
In as hasClass,
|
|
540
|
-
|
|
541
|
-
|
|
537
|
+
gn as isApple,
|
|
538
|
+
ie as isArray,
|
|
542
539
|
co as isCanvas,
|
|
543
|
-
|
|
540
|
+
ue as isCustomElement,
|
|
544
541
|
R as isDocument,
|
|
545
542
|
ro as isElement,
|
|
546
543
|
ao as isElementInScrollRange,
|
|
547
544
|
io as isElementInViewport,
|
|
548
545
|
uo as isElementsArray,
|
|
549
|
-
|
|
546
|
+
vn as isFirefox,
|
|
550
547
|
lo as isFunction,
|
|
551
548
|
po as isHTMLCollection,
|
|
552
549
|
u as isHTMLElement,
|
|
553
550
|
fo as isHTMLImageElement,
|
|
554
551
|
mo as isJSON,
|
|
555
|
-
|
|
552
|
+
I as isMap,
|
|
556
553
|
vo as isMedia,
|
|
557
|
-
|
|
554
|
+
mn as isMobile,
|
|
558
555
|
i as isNode,
|
|
559
556
|
Eo as isNodeList,
|
|
560
|
-
|
|
561
|
-
|
|
557
|
+
se as isNumber,
|
|
558
|
+
v as isObject,
|
|
562
559
|
bo as isRTL,
|
|
563
560
|
ho as isSVGElement,
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
561
|
+
re as isScaledElement,
|
|
562
|
+
ce as isShadowRoot,
|
|
563
|
+
N as isString,
|
|
567
564
|
yo as isTableElement,
|
|
568
565
|
go as isWeakMap,
|
|
569
566
|
W as isWindow,
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
567
|
+
We as keyAlt,
|
|
568
|
+
Re as keyArrowDown,
|
|
569
|
+
qe as keyArrowLeft,
|
|
570
|
+
Ge as keyArrowRight,
|
|
571
|
+
Qe as keyArrowUp,
|
|
572
|
+
je as keyBackspace,
|
|
573
|
+
Je as keyCapsLock,
|
|
574
|
+
Ke as keyControl,
|
|
575
|
+
Xe as keyDelete,
|
|
576
|
+
Ye as keyEnter,
|
|
577
|
+
Ze as keyEscape,
|
|
578
|
+
$e as keyInsert,
|
|
579
|
+
_e as keyMeta,
|
|
580
|
+
tn as keyPause,
|
|
581
|
+
en as keyScrollLock,
|
|
582
|
+
nn as keyShift,
|
|
583
|
+
on as keySpace,
|
|
584
|
+
sn as keyTab,
|
|
585
|
+
Fe as keyboardEventKeys,
|
|
586
|
+
st as keydownEvent,
|
|
587
|
+
ct as keypressEvent,
|
|
588
|
+
rt as keyupEvent,
|
|
589
|
+
at as loadEvent,
|
|
590
|
+
xe as loadstartEvent,
|
|
594
591
|
ko as matches,
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
592
|
+
Be as mouseClickEvents,
|
|
593
|
+
He as mouseHoverEvents,
|
|
594
|
+
Ve as mouseSwipeEvents,
|
|
595
|
+
it as mouseclickEvent,
|
|
596
|
+
ut as mousedblclickEvent,
|
|
597
|
+
lt as mousedownEvent,
|
|
598
|
+
ft as mouseenterEvent,
|
|
599
|
+
pt as mousehoverEvent,
|
|
600
|
+
gt as mouseinEvent,
|
|
601
|
+
mt as mouseleaveEvent,
|
|
602
|
+
bt as mousemoveEvent,
|
|
603
|
+
vt as mouseoutEvent,
|
|
604
|
+
Et as mouseoverEvent,
|
|
605
|
+
dt as mouseupEvent,
|
|
606
|
+
ht as mousewheelEvent,
|
|
607
|
+
yt as moveEvent,
|
|
608
|
+
Te as nativeEvents,
|
|
609
|
+
Xt as noop,
|
|
613
610
|
Qn as normalizeOptions,
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
611
|
+
V as normalizeValue,
|
|
612
|
+
Jt as off,
|
|
613
|
+
un as offsetHeight,
|
|
614
|
+
ln as offsetWidth,
|
|
615
|
+
jt as on,
|
|
616
|
+
Kt as one,
|
|
617
|
+
wt as orientationchangeEvent,
|
|
621
618
|
Kn as passiveHandler,
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
619
|
+
At as pointercancelEvent,
|
|
620
|
+
St as pointerdownEvent,
|
|
621
|
+
Mt as pointerleaveEvent,
|
|
622
|
+
Nt as pointermoveEvent,
|
|
623
|
+
kt as pointerupEvent,
|
|
627
624
|
wo as querySelector,
|
|
628
625
|
Mo as querySelectorAll,
|
|
629
|
-
|
|
626
|
+
Tt as readystatechangeEvent,
|
|
630
627
|
Xn as reflow,
|
|
631
628
|
Dn as removeAttribute,
|
|
632
629
|
Cn as removeAttributeNS,
|
|
633
630
|
On as removeClass,
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
631
|
+
rn as removeEventListener,
|
|
632
|
+
Dt as resetEvent,
|
|
633
|
+
Ct as resizeEvent,
|
|
634
|
+
zt as scrollEvent,
|
|
635
|
+
dn as scrollHeight,
|
|
636
|
+
pn as scrollWidth,
|
|
637
|
+
Lt as selectEvent,
|
|
638
|
+
Ot as selectendEvent,
|
|
639
|
+
It as selectstartEvent,
|
|
640
|
+
kn as setAttribute,
|
|
644
641
|
Tn as setAttributeNS,
|
|
645
642
|
Yn as setElementStyle,
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
643
|
+
xt as submitEvent,
|
|
644
|
+
En as support3DTransform,
|
|
645
|
+
wn as supportAnimation,
|
|
646
|
+
bn as supportPassive,
|
|
647
|
+
yn as supportTouch,
|
|
648
|
+
hn as supportTransform,
|
|
649
|
+
An as supportTransition,
|
|
650
|
+
fn as tabindex,
|
|
651
|
+
oe as toLowerCase,
|
|
655
652
|
$n as toUpperCase,
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
653
|
+
Pe as touchEvents,
|
|
654
|
+
Ht as touchcancelEvent,
|
|
655
|
+
Pt as touchendEvent,
|
|
656
|
+
Bt as touchmoveEvent,
|
|
657
|
+
Vt as touchstartEvent,
|
|
658
|
+
Qt as transitionDelay,
|
|
659
|
+
Rt as transitionDuration,
|
|
660
|
+
C as transitionEndEvent,
|
|
661
|
+
F as transitionProperty,
|
|
662
|
+
Ut as unloadEvent,
|
|
663
|
+
S as userAgent,
|
|
664
|
+
A as userAgentData,
|
|
665
|
+
To as version
|
|
668
666
|
};
|
|
669
667
|
//# sourceMappingURL=shorty.mjs.map
|