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