@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.
Files changed (260) hide show
  1. package/.eslintrc.cjs +0 -0
  2. package/.lgtm.yml +0 -0
  3. package/.prettierrc.json +0 -0
  4. package/LICENSE +0 -0
  5. package/README.md +4 -4
  6. package/cypress/e2e/att.cy.ts +0 -0
  7. package/cypress/e2e/boolean.cy.ts +0 -0
  8. package/cypress/e2e/class.cy.ts +0 -0
  9. package/cypress/e2e/event.cy.ts +0 -0
  10. package/cypress/e2e/get.cy.ts +0 -0
  11. package/cypress/e2e/is.cy.ts +0 -0
  12. package/cypress/e2e/misc.cy.ts +0 -0
  13. package/cypress/e2e/selectors.cy.ts +0 -0
  14. package/cypress/fixtures/custom-elem.js +0 -0
  15. package/cypress/plugins/esbuild-istanbul.ts +0 -0
  16. package/cypress/plugins/tsCompile.ts +0 -0
  17. package/cypress/support/commands.ts +0 -0
  18. package/cypress/support/e2e.ts +0 -0
  19. package/cypress/support/index.js +0 -0
  20. package/cypress/test.html +0 -0
  21. package/cypress.config.ts +0 -0
  22. package/dist/shorty.cjs +1 -1
  23. package/dist/shorty.cjs.map +1 -1
  24. package/dist/shorty.d.ts +200 -4
  25. package/dist/shorty.js +1 -1
  26. package/dist/shorty.js.map +1 -1
  27. package/dist/shorty.mjs +191 -179
  28. package/dist/shorty.mjs.map +1 -1
  29. package/dts.config.ts +0 -0
  30. package/package.json +71 -66
  31. package/src/attr/getAttribute.ts +0 -0
  32. package/src/attr/getAttributeNS.ts +0 -0
  33. package/src/attr/hasAttribute.ts +0 -0
  34. package/src/attr/hasAttributeNS.ts +0 -0
  35. package/src/attr/removeAttribute.ts +0 -0
  36. package/src/attr/removeAttributeNS.ts +0 -0
  37. package/src/attr/setAttribute.ts +0 -0
  38. package/src/attr/setAttributeNS.ts +0 -0
  39. package/src/blocks/documentBody.ts +0 -0
  40. package/src/blocks/documentElement.ts +0 -0
  41. package/src/blocks/documentHead.ts +0 -0
  42. package/src/boolean/isApple.ts +0 -0
  43. package/src/boolean/isFirefox.ts +0 -0
  44. package/src/boolean/isMobile.ts +0 -0
  45. package/src/boolean/support3DTransform.ts +0 -0
  46. package/src/boolean/supportAnimation.ts +0 -0
  47. package/src/boolean/supportPassive.ts +0 -0
  48. package/src/boolean/supportTouch.ts +0 -0
  49. package/src/boolean/supportTransform.ts +0 -0
  50. package/src/boolean/supportTransition.ts +0 -0
  51. package/src/class/addClass.ts +0 -0
  52. package/src/class/hasClass.ts +0 -0
  53. package/src/class/removeClass.ts +0 -0
  54. package/src/event/off.ts +6 -4
  55. package/src/event/on.ts +6 -4
  56. package/src/event/one.ts +26 -8
  57. package/src/get/getBoundingClientRect.ts +0 -0
  58. package/src/get/getDocument.ts +0 -0
  59. package/src/get/getDocumentBody.ts +0 -0
  60. package/src/get/getDocumentElement.ts +0 -0
  61. package/src/get/getDocumentHead.ts +0 -0
  62. package/src/get/getElementAnimationDelay.ts +0 -0
  63. package/src/get/getElementAnimationDuration.ts +0 -0
  64. package/src/get/getElementStyle.ts +0 -0
  65. package/src/get/getElementTransitionDelay.ts +0 -0
  66. package/src/get/getElementTransitionDuration.ts +0 -0
  67. package/src/get/getNodeScroll.ts +0 -0
  68. package/src/get/getParentNode.ts +0 -0
  69. package/src/get/getRectRelativeToOffsetParent.ts +0 -0
  70. package/src/get/getUID.ts +0 -0
  71. package/src/get/getWindow.ts +0 -0
  72. package/src/index.ts +4 -0
  73. package/src/interface/boundingClientRect.d.ts +0 -0
  74. package/src/interface/css4Declaration.d.ts +0 -0
  75. package/src/interface/customElement.d.ts +0 -0
  76. package/src/interface/event.d.ts +337 -0
  77. package/src/interface/navigatorUA.d.ts +0 -0
  78. package/src/interface/offsetRect.d.ts +0 -0
  79. package/src/interface/originalEvent.d.ts +0 -0
  80. package/src/is/isArray.ts +0 -0
  81. package/src/is/isCanvas.ts +0 -0
  82. package/src/is/isCustomElement.ts +0 -0
  83. package/src/is/isDocument.ts +0 -0
  84. package/src/is/isElement.ts +0 -0
  85. package/src/is/isElementInScrollRange.ts +0 -0
  86. package/src/is/isElementInViewport.ts +0 -0
  87. package/src/is/isElementsArray.ts +0 -0
  88. package/src/is/isFunction.ts +0 -0
  89. package/src/is/isHTMLCollection.ts +0 -0
  90. package/src/is/isHTMLElement.ts +0 -0
  91. package/src/is/isHTMLImageElement.ts +0 -0
  92. package/src/is/isJSON.ts +0 -0
  93. package/src/is/isMap.ts +0 -0
  94. package/src/is/isMedia.ts +0 -0
  95. package/src/is/isNode.ts +0 -0
  96. package/src/is/isNodeList.ts +0 -0
  97. package/src/is/isNumber.ts +0 -0
  98. package/src/is/isObject.ts +0 -0
  99. package/src/is/isRTL.ts +0 -0
  100. package/src/is/isSVGElement.ts +0 -0
  101. package/src/is/isScaledElement.ts +0 -0
  102. package/src/is/isShadowRoot.ts +0 -0
  103. package/src/is/isString.ts +0 -0
  104. package/src/is/isTableElement.ts +0 -0
  105. package/src/is/isWeakMap.ts +0 -0
  106. package/src/is/isWindow.ts +0 -0
  107. package/src/misc/ArrayFrom.ts +0 -0
  108. package/src/misc/Float32ArrayFrom.ts +0 -0
  109. package/src/misc/Float64ArrayFrom.ts +0 -0
  110. package/src/misc/ObjectAssign.ts +0 -0
  111. package/src/misc/ObjectEntries.ts +0 -0
  112. package/src/misc/ObjectFromEntries.ts +11 -0
  113. package/src/misc/ObjectHasOwn.ts +0 -0
  114. package/src/misc/ObjectKeys.ts +0 -0
  115. package/src/misc/ObjectValues.ts +0 -0
  116. package/src/misc/createCustomEvent.ts +0 -0
  117. package/src/misc/createElement.ts +0 -0
  118. package/src/misc/createElementNS.ts +0 -0
  119. package/src/misc/data.ts +0 -0
  120. package/src/misc/dispatchEvent.ts +0 -0
  121. package/src/misc/distinct.ts +0 -0
  122. package/src/misc/emulateAnimationEnd.ts +0 -0
  123. package/src/misc/emulateTransitionEnd.ts +0 -0
  124. package/src/misc/focus.ts +0 -0
  125. package/src/misc/getInstance.ts +0 -0
  126. package/src/misc/noop.ts +0 -0
  127. package/src/misc/normalizeOptions.ts +0 -0
  128. package/src/misc/normalizeValue.ts +0 -0
  129. package/src/misc/passiveHandler.ts +0 -0
  130. package/src/misc/reflow.ts +0 -0
  131. package/src/misc/setElementStyle.ts +0 -0
  132. package/src/misc/timer.ts +0 -0
  133. package/src/misc/toLowerCase.ts +0 -0
  134. package/src/misc/toUpperCase.ts +0 -0
  135. package/src/selectors/closest.ts +0 -0
  136. package/src/selectors/getCustomElements.ts +0 -0
  137. package/src/selectors/getElementById.ts +0 -0
  138. package/src/selectors/getElementsByClassName.ts +0 -0
  139. package/src/selectors/getElementsByTagName.ts +0 -0
  140. package/src/selectors/matches.ts +0 -0
  141. package/src/selectors/querySelector.ts +0 -0
  142. package/src/selectors/querySelectorAll.ts +0 -0
  143. package/src/strings/DOMContentLoadedEvent.ts +0 -0
  144. package/src/strings/DOMMouseScrollEvent.ts +0 -0
  145. package/src/strings/abortEvent.ts +0 -0
  146. package/src/strings/addEventListener.ts +0 -0
  147. package/src/strings/animationDelay.ts +0 -0
  148. package/src/strings/animationDuration.ts +0 -0
  149. package/src/strings/animationEndEvent.ts +0 -0
  150. package/src/strings/animationName.ts +0 -0
  151. package/src/strings/ariaChecked.ts +0 -0
  152. package/src/strings/ariaDescribedBy.ts +0 -0
  153. package/src/strings/ariaDescription.ts +0 -0
  154. package/src/strings/ariaExpanded.ts +0 -0
  155. package/src/strings/ariaHasPopup.ts +0 -0
  156. package/src/strings/ariaHidden.ts +0 -0
  157. package/src/strings/ariaLabel.ts +0 -0
  158. package/src/strings/ariaLabelledBy.ts +0 -0
  159. package/src/strings/ariaModal.ts +0 -0
  160. package/src/strings/ariaPressed.ts +0 -0
  161. package/src/strings/ariaSelected.ts +0 -0
  162. package/src/strings/ariaValueMax.ts +0 -0
  163. package/src/strings/ariaValueMin.ts +0 -0
  164. package/src/strings/ariaValueNow.ts +0 -0
  165. package/src/strings/ariaValueText.ts +0 -0
  166. package/src/strings/beforeunloadEvent.ts +0 -0
  167. package/src/strings/bezierEasings.ts +0 -0
  168. package/src/strings/blurEvent.ts +0 -0
  169. package/src/strings/changeEvent.ts +0 -0
  170. package/src/strings/contextmenuEvent.ts +0 -0
  171. package/src/strings/dragEvent.ts +0 -0
  172. package/src/strings/dragendEvent.ts +0 -0
  173. package/src/strings/dragenterEvent.ts +0 -0
  174. package/src/strings/dragleaveEvent.ts +0 -0
  175. package/src/strings/dragoverEvent.ts +0 -0
  176. package/src/strings/dragstartEvent.ts +0 -0
  177. package/src/strings/errorEvent.ts +0 -0
  178. package/src/strings/focusEvent.ts +0 -0
  179. package/src/strings/focusEvents.ts +0 -0
  180. package/src/strings/focusinEvent.ts +0 -0
  181. package/src/strings/focusoutEvent.ts +0 -0
  182. package/src/strings/gesturechangeEvent.ts +0 -0
  183. package/src/strings/gestureendEvent.ts +0 -0
  184. package/src/strings/gesturestartEvent.ts +0 -0
  185. package/src/strings/keyAlt.ts +0 -0
  186. package/src/strings/keyArrowDown.ts +0 -0
  187. package/src/strings/keyArrowLeft.ts +0 -0
  188. package/src/strings/keyArrowRight.ts +0 -0
  189. package/src/strings/keyArrowUp.ts +0 -0
  190. package/src/strings/keyBackspace.ts +0 -0
  191. package/src/strings/keyCapsLock.ts +0 -0
  192. package/src/strings/keyControl.ts +0 -0
  193. package/src/strings/keyDelete.ts +0 -0
  194. package/src/strings/keyEnter.ts +0 -0
  195. package/src/strings/keyEscape.ts +0 -0
  196. package/src/strings/keyInsert.ts +0 -0
  197. package/src/strings/keyMeta.ts +0 -0
  198. package/src/strings/keyNumpadEnter.ts +7 -0
  199. package/src/strings/keyPause.ts +0 -0
  200. package/src/strings/keyScrollLock.ts +0 -0
  201. package/src/strings/keyShift.ts +0 -0
  202. package/src/strings/keySpace.ts +0 -0
  203. package/src/strings/keyTab.ts +0 -0
  204. package/src/strings/keyboardEventKeys.ts +0 -0
  205. package/src/strings/keydownEvent.ts +0 -0
  206. package/src/strings/keypressEvent.ts +0 -0
  207. package/src/strings/keyupEvent.ts +0 -0
  208. package/src/strings/loadEvent.ts +0 -0
  209. package/src/strings/loadstartEvent.ts +0 -0
  210. package/src/strings/mouseClickEvents.ts +0 -0
  211. package/src/strings/mouseHoverEvents.ts +0 -0
  212. package/src/strings/mouseSwipeEvents.ts +0 -0
  213. package/src/strings/mouseclickEvent.ts +0 -0
  214. package/src/strings/mousedblclickEvent.ts +0 -0
  215. package/src/strings/mousedownEvent.ts +0 -0
  216. package/src/strings/mouseenterEvent.ts +0 -0
  217. package/src/strings/mousehoverEvent.ts +0 -0
  218. package/src/strings/mouseinEvent.ts +0 -0
  219. package/src/strings/mouseleaveEvent.ts +0 -0
  220. package/src/strings/mousemoveEvent.ts +0 -0
  221. package/src/strings/mouseoutEvent.ts +0 -0
  222. package/src/strings/mouseoverEvent.ts +0 -0
  223. package/src/strings/mouseupEvent.ts +0 -0
  224. package/src/strings/mousewheelEvent.ts +0 -0
  225. package/src/strings/moveEvent.ts +0 -0
  226. package/src/strings/nativeEvents.ts +0 -0
  227. package/src/strings/offsetHeight.ts +0 -0
  228. package/src/strings/offsetWidth.ts +0 -0
  229. package/src/strings/orientationchangeEvent.ts +0 -0
  230. package/src/strings/pointercancelEvent.ts +0 -0
  231. package/src/strings/pointerdownEvent.ts +0 -0
  232. package/src/strings/pointerleaveEvent.ts +0 -0
  233. package/src/strings/pointermoveEvent.ts +0 -0
  234. package/src/strings/pointerupEvent.ts +0 -0
  235. package/src/strings/readystatechangeEvent.ts +0 -0
  236. package/src/strings/removeEventListener.ts +0 -0
  237. package/src/strings/resetEvent.ts +0 -0
  238. package/src/strings/resizeEvent.ts +0 -0
  239. package/src/strings/scrollEvent.ts +0 -0
  240. package/src/strings/scrollHeight.ts +0 -0
  241. package/src/strings/scrollWidth.ts +0 -0
  242. package/src/strings/selectEvent.ts +0 -0
  243. package/src/strings/selectendEvent.ts +0 -0
  244. package/src/strings/selectstartEvent.ts +0 -0
  245. package/src/strings/submitEvent.ts +0 -0
  246. package/src/strings/tabindex.ts +0 -0
  247. package/src/strings/touchEvents.ts +0 -0
  248. package/src/strings/touchcancelEvent.ts +0 -0
  249. package/src/strings/touchendEvent.ts +0 -0
  250. package/src/strings/touchmoveEvent.ts +0 -0
  251. package/src/strings/touchstartEvent.ts +0 -0
  252. package/src/strings/transitionDelay.ts +0 -0
  253. package/src/strings/transitionDuration.ts +0 -0
  254. package/src/strings/transitionEndEvent.ts +0 -0
  255. package/src/strings/transitionProperty.ts +0 -0
  256. package/src/strings/unloadEvent.ts +0 -0
  257. package/src/strings/userAgent.ts +0 -0
  258. package/src/strings/userAgentData.ts +0 -0
  259. package/tsconfig.json +1 -1
  260. package/vite.config.ts +0 -0
package/dist/shorty.mjs CHANGED
@@ -1,8 +1,8 @@
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 = {
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: G,
5
- beforeunload: j,
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: ft,
28
- mouseleave: mt,
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: Mt,
37
- pointermove: Nt,
38
- pointerup: kt,
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: Lt,
44
- selectend: Ot,
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: Ut
52
- }, De = "drag", Ce = "dragstart", Le = "dragenter", Oe = "dragleave", Ie = "dragover", ze = "dragend", xe = "loadstart", Ve = {
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
- }, Ue = { in: "focusin", out: "focusout" }, Fe = {
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", 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 = {
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
- }, 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)) : (
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
- ), vn = S ? S.includes("Firefox") : (
136
+ ), En = S ? S.includes("Firefox") : (
137
137
  /* istanbul ignore next */
138
138
  !1
139
- ), { head: M } = document, En = ["webkitPerspective", "perspective"].some((t) => t in M.style), jt = (t, e, n, o) => {
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(t, e, s, o));
147
+ (r.target === t || r.currentTarget === t) && (n.apply(t, [r]), Jt(
148
+ t,
149
+ e,
150
+ s,
151
+ o
152
+ ));
148
153
  };
149
- jt(t, e, s, o);
154
+ Gt(
155
+ t,
156
+ e,
157
+ s,
158
+ o
159
+ );
150
160
  }, Xt = () => {
151
- }, bn = (() => {
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
- })(), 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) => {
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
- }, On = (t, ...e) => {
174
+ }, In = (t, ...e) => {
165
175
  t.classList.remove(...e);
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 = {
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 = O.getAllFor(e);
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 = O.getAllFor(e);
217
+ const n = L.getAllFor(e);
208
218
  !n || !u(t) || (n.delete(t), n.size === 0 && E.delete(e));
209
219
  }
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) => {
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 (N(t))
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, k(n, o);
229
+ return delete o.tagName, M(n, o);
220
230
  }, $t = (t, e) => {
221
231
  if (!t || !e)
222
232
  return;
223
- if (N(e))
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, k(o, s);
230
- }, Q = (t, e) => t.dispatchEvent(e), Hn = (t, e, n) => n.indexOf(t) === e, g = (t, 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, U), n = g(t, Wt), o = n.includes("ms") ? (
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, U), n = g(t, Ft), o = n.includes("ms") ? (
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
- }, Pn = (t, e) => {
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, F), n = g(t, Qt), o = n.includes("ms") ? (
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, F), n = g(t, Rt), o = n.includes("ms") ? (
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
- }, 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) => {
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, 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
+ 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), jn = (t) => Object.values(t), Jn = (t, e) => {
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) && k(n, e), n;
315
- }, Kn = { passive: !0 }, Xn = (t) => t.offsetHeight, Yn = (t, e) => {
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 && N(n) && n.includes("--"))
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, k(t.style, s);
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, m = /* @__PURE__ */ new Map(), Zn = {
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 ? (m.has(t) || m.set(t, /* @__PURE__ */ new Map()), m.get(t).set(o, setTimeout(e, n))) : m.set(t, setTimeout(e, n)));
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 = m.get(t);
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 = m.get(t);
360
- e && e.length && I(n) ? (clearTimeout(n.get(e)), n.delete(e), n.size === 0 && m.delete(t)) : (clearTimeout(n), m.delete(t));
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
- }, $n = (t) => t.toUpperCase(), h = (t, e) => {
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: f, offsetHeight: y } = t;
367
- p = f > 0 ? Math.round(n) / f : (
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
- }, _n = (t) => d(t).body, T = (t) => d(t).documentElement, to = (t) => d(t).head, eo = (t) => {
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, no = (t) => t.nodeName === "HTML" ? t : u(t) && t.assignedSlot || // step into the shadow DOM of the parent of a slotted node
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
- }, oo = (t, e, n) => {
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
- }, so = (t) => {
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, 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) => {
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
- }, io = (t) => {
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
- }, 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))
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
- }, 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(
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
- ), ko = (t, e) => t.matches(e), To = "2.0.0alpha16";
455
+ ), Do = (t, e) => t.matches(e), Co = "2.0.0alpha18";
446
456
  export {
447
- Vn as ArrayFrom,
457
+ Bn as ArrayFrom,
448
458
  P as DOMContentLoadedEvent,
449
459
  Y as DOMMouseScrollEvent,
450
- O as Data,
451
- Fn as Float32ArrayFrom,
452
- Wn as Float64ArrayFrom,
453
- k as ObjectAssign,
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
- jn as ObjectValues,
458
- Zn as Timer,
459
- G as abortEvent,
468
+ Jn as ObjectValues,
469
+ _n as Timer,
470
+ q as abortEvent,
460
471
  Ln as addClass,
461
- cn as addEventListener,
472
+ rn as addEventListener,
462
473
  Wt as animationDelay,
463
- Ft as animationDuration,
474
+ Ut as animationDuration,
464
475
  D as animationEndEvent,
465
- U as animationName,
476
+ F as animationName,
466
477
  pe as ariaChecked,
467
- me as ariaDescribedBy,
468
- fe as ariaDescription,
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
- Me as ariaValueMax,
488
+ Ne as ariaValueMax,
478
489
  Se as ariaValueMin,
479
- Ne as ariaValueNow,
480
- ke as ariaValueText,
481
- j as beforeunloadEvent,
482
- an as bezierEasings,
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
- Jn as createCustomEvent,
498
+ Xn as createCustomEvent,
488
499
  Zt as createElement,
489
500
  $t as createElementNS,
490
501
  Q as dispatchEvent,
491
- Hn as distinct,
492
- zn as documentBody,
493
- xn as documentElement,
494
- M as documentHead,
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
- Le as dragenterEvent,
498
- Oe as dragleaveEvent,
508
+ Oe as dragenterEvent,
509
+ Le as dragleaveEvent,
499
510
  Ie as dragoverEvent,
500
511
  Ce as dragstartEvent,
501
- Pn as emulateAnimationEnd,
512
+ Fn as emulateAnimationEnd,
502
513
  Un as emulateTransitionEnd,
503
514
  Z as errorEvent,
504
- Rn as focus,
515
+ Qn as focus,
505
516
  $ as focusEvent,
506
- Ue as focusEvents,
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
- Sn as getAttributeNS,
524
+ Nn as getAttributeNS,
514
525
  h as getBoundingClientRect,
515
- Ao as getCustomElements,
526
+ No as getCustomElements,
516
527
  d as getDocument,
517
- _n as getDocumentBody,
528
+ eo as getDocumentBody,
518
529
  T as getDocumentElement,
519
- to as getDocumentHead,
530
+ no as getDocumentHead,
520
531
  _t as getElementAnimationDelay,
521
532
  te as getElementAnimationDuration,
522
- So as getElementById,
533
+ ko as getElementById,
523
534
  g as getElementStyle,
524
535
  ee as getElementTransitionDelay,
525
536
  ne as getElementTransitionDuration,
526
- No as getElementsByClassName,
537
+ To as getElementsByClassName,
527
538
  de as getElementsByTagName,
528
- Bn as getInstance,
529
- eo as getNodeScroll,
530
- no as getParentNode,
531
- oo as getRectRelativeToOffsetParent,
539
+ Hn as getInstance,
540
+ oo as getNodeScroll,
541
+ so as getParentNode,
542
+ co as getRectRelativeToOffsetParent,
532
543
  ae as getUID,
533
- so as getWindow,
534
- Mn as hasAttribute,
535
- Nn as hasAttributeNS,
536
- In as hasClass,
537
- gn as isApple,
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
- co as isCanvas,
550
+ ao as isCanvas,
540
551
  ue as isCustomElement,
541
552
  R as isDocument,
542
- ro as isElement,
543
- ao as isElementInScrollRange,
544
- io as isElementInViewport,
545
- uo as isElementsArray,
546
- vn as isFirefox,
547
- lo as isFunction,
548
- po as isHTMLCollection,
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
- fo as isHTMLImageElement,
551
- mo as isJSON,
561
+ go as isHTMLImageElement,
562
+ vo as isJSON,
552
563
  I as isMap,
553
- vo as isMedia,
554
- mn as isMobile,
564
+ bo as isMedia,
565
+ gn as isMobile,
555
566
  i as isNode,
556
- Eo as isNodeList,
567
+ ho as isNodeList,
557
568
  se as isNumber,
558
569
  v as isObject,
559
- bo as isRTL,
560
- ho as isSVGElement,
570
+ yo as isRTL,
571
+ wo as isSVGElement,
561
572
  re as isScaledElement,
562
573
  ce as isShadowRoot,
563
- N as isString,
564
- yo as isTableElement,
565
- go as isWeakMap,
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
- qe as keyArrowLeft,
570
- Ge as keyArrowRight,
580
+ je as keyArrowLeft,
581
+ qe as keyArrowRight,
571
582
  Qe as keyArrowUp,
572
- je as keyBackspace,
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
- 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,
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
- ko as matches,
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
- ft as mouseenterEvent,
610
+ mt as mouseenterEvent,
599
611
  pt as mousehoverEvent,
600
612
  gt as mouseinEvent,
601
- mt as mouseleaveEvent,
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
- Qn as normalizeOptions,
622
+ jn as normalizeOptions,
611
623
  V as normalizeValue,
612
624
  Jt as off,
613
- un as offsetHeight,
614
- ln as offsetWidth,
615
- jt as on,
625
+ ln as offsetHeight,
626
+ dn as offsetWidth,
627
+ Gt as on,
616
628
  Kt as one,
617
629
  wt as orientationchangeEvent,
618
- Kn as passiveHandler,
630
+ Yn as passiveHandler,
619
631
  At as pointercancelEvent,
620
632
  St as pointerdownEvent,
621
- Mt as pointerleaveEvent,
622
- Nt as pointermoveEvent,
623
- kt as pointerupEvent,
624
- wo as querySelector,
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
- Xn as reflow,
628
- Dn as removeAttribute,
629
- Cn as removeAttributeNS,
630
- On as removeClass,
631
- rn as removeEventListener,
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
- dn as scrollHeight,
636
- pn as scrollWidth,
637
- Lt as selectEvent,
638
- Ot as selectendEvent,
647
+ pn as scrollHeight,
648
+ mn as scrollWidth,
649
+ Ot as selectEvent,
650
+ Lt as selectendEvent,
639
651
  It as selectstartEvent,
640
- kn as setAttribute,
641
- Tn as setAttributeNS,
642
- Yn as setElementStyle,
652
+ Tn as setAttribute,
653
+ Dn as setAttributeNS,
654
+ $n as setElementStyle,
643
655
  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,
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
- $n as toUpperCase,
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
- F as transitionProperty,
662
- Ut as unloadEvent,
673
+ U as transitionProperty,
674
+ Ft as unloadEvent,
663
675
  S as userAgent,
664
676
  A as userAgentData,
665
- To as version
677
+ Co as version
666
678
  };
667
679
  //# sourceMappingURL=shorty.mjs.map