@thednp/shorty 2.0.0-alpha17 → 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 +2 -2
  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 +189 -4
  25. package/dist/shorty.js +1 -1
  26. package/dist/shorty.js.map +1 -1
  27. package/dist/shorty.mjs +147 -136
  28. package/dist/shorty.mjs.map +1 -1
  29. package/dts.config.ts +0 -0
  30. package/package.json +23 -18
  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 +2 -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 +0 -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,4 +1,4 @@
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", Me = "aria-valuemax", Ne = "aria-valuenow", ke = "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", Mt = "pointerleave", Nt = "pointermove", kt = "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 = {
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
4
  abort: q,
@@ -33,9 +33,9 @@ const pe = "aria-checked", me = "aria-description", fe = "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,
@@ -101,7 +101,7 @@ const pe = "aria-checked", me = "aria-description", fe = "aria-describedby", ge
101
101
  // 93
102
102
  ScrollLock: "ScrollLock"
103
103
  // 145
104
- }, We = "Alt", Re = "ArrowDown", Qe = "ArrowUp", je = "ArrowLeft", qe = "ArrowRight", Ge = "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", Ut = "animationDuration", Wt = "animationDelay", F = "animationName", D = "animationend", Rt = "transitionDuration", Qt = "transitionDelay", C = "transitionend", U = "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", me = "aria-description", fe = "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", mn = "tabindex", jt = navigator.userAgentData, A = jt, { userAgent: qt } = navigator, S = qt, z = /iPhone|iPad|iPod|Android/i;
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
131
  let O = !1;
132
132
  A ? O = A.brands.some((t) => z.test(t.brand)) : O = z.test(S);
133
- const fn = O, x = /(iPhone|iPod|iPad)/, gn = A ? A.brands.some((t) => x.test(t.brand)) : (
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), Gt = (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 fn = O, 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
- Gt(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 fn = O, 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), On = (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
- }, Ln = (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(), L = {
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.
@@ -207,27 +217,27 @@ const fn = O, x = /(iPhone|iPod|iPad)/, gn = A ? A.brands.some((t) => x.test(t.b
207
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) => L.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) => {
@@ -248,7 +258,7 @@ const fn = O, 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) {
@@ -284,7 +294,7 @@ const fn = O, x = /(iPhone|iPod|iPad)/, gn = A ? A.brands.some((t) => x.test(t.b
284
294
  /* istanbul ignore next */
285
295
  0
286
296
  ) : s;
287
- }, Fn = (t, e) => {
297
+ }, Un = (t, e) => {
288
298
  let n = 0;
289
299
  const o = new Event(C), s = ne(t), r = ee(t);
290
300
  if (s) {
@@ -296,7 +306,7 @@ const fn = O, 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
- }, Un = (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
311
  return w(r).forEach(([c, m]) => {
302
312
  const y = o && typeof c == "string" && c.includes(o) ? c.replace(o, "").replace(/[A-Z]/g, (j) => oe(j)) : c;
@@ -306,22 +316,22 @@ const fn = O, x = /(iPhone|iPod|iPad)/, gn = A ? A.brands.some((t) => x.test(t.b
306
316
  }), w(e).forEach(([c, m]) => {
307
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
- }, jn = (t, e) => v(t) && (Object.hasOwn(t, e) || e in t), qn = (t) => Object.keys(t), Gn = (t) => Object.values(t), Jn = (t) => Object.fromEntries(t), Kn = (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
- }, Xn = { passive: !0 }, Yn = (t) => t.offsetHeight, Zn = (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, f = /* @__PURE__ */ new Map(), $n = {
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
  *
@@ -359,7 +369,7 @@ const fn = O, x = /(iPhone|iPod|iPad)/, gn = A ? A.brands.some((t) => x.test(t.b
359
369
  const n = f.get(t);
360
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)) {
@@ -382,10 +392,10 @@ const fn = O, 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
- }, to = (t) => d(t).body, T = (t) => d(t).documentElement, eo = (t) => d(t).head, no = (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, oo = (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
- }, so = (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
- }, co = (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, ro = (t) => i(t) && t.nodeName === "CANVAS" || !1, ue = (t) => u(t) && !!t.shadowRoot || !1, ao = (t) => i(t) && [1, 2, 3, 4, 5, 6, 7, 8].some((e) => t.nodeType === e) || !1, io = (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
- }, uo = (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
- }, lo = (t) => ie(t) && t.every(u) || !1, po = (t) => typeof t == "function" || !1, mo = (t) => v(t) && t.constructor.name === "HTMLCollection" || !1, fo = (t) => u(t) && t.tagName === "IMG" || !1, go = (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,27 +449,27 @@ const b = /* @__PURE__ */ new Map(), ae = (t, e) => {
439
449
  return !1;
440
450
  }
441
451
  return !0;
442
- }, vo = (t) => v(t) && t.constructor.name === "WeakMap" || !1, Eo = (t) => i(t) && ["SVG", "Image", "Video", "Canvas"].some((e) => t.constructor.name.includes(e)) || !1, bo = (t) => v(t) && t.constructor.name === "NodeList" || !1, ho = (t) => T(t).dir === "rtl", yo = (t) => i(t) && t.constructor.name.includes("SVG") || !1, wo = (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, Ao = (t, e) => u(t) ? t : (i(e) ? e : d()).querySelector(t), de = (t, e) => (i(e) ? e : d()).getElementsByTagName(t), So = (t) => [...de("*", t)].filter(ue), Mo = (t, e) => d(e).getElementById(t) || null, No = (t, e) => (i(e) ? e : d()).querySelectorAll(t), ko = (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
- ), To = (t, e) => t.matches(e), Do = "2.0.0alpha17";
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
460
  L as Data,
451
- Un as Float32ArrayFrom,
452
- Wn as Float64ArrayFrom,
453
- k as ObjectAssign,
461
+ Wn as Float32ArrayFrom,
462
+ Rn as Float64ArrayFrom,
463
+ M as ObjectAssign,
454
464
  w as ObjectEntries,
455
- Jn as ObjectFromEntries,
456
- jn as ObjectHasOwn,
457
- qn as ObjectKeys,
458
- Gn as ObjectValues,
459
- $n as Timer,
465
+ Kn as ObjectFromEntries,
466
+ qn as ObjectHasOwn,
467
+ Gn as ObjectKeys,
468
+ Jn as ObjectValues,
469
+ _n as Timer,
460
470
  q as abortEvent,
461
- On as addClass,
462
- cn as addEventListener,
471
+ Ln as addClass,
472
+ rn as addEventListener,
463
473
  Wt as animationDelay,
464
474
  Ut as animationDuration,
465
475
  D as animationEndEvent,
@@ -475,34 +485,34 @@ export {
475
485
  ye as ariaModal,
476
486
  we as ariaPressed,
477
487
  Ae as ariaSelected,
478
- Me as ariaValueMax,
488
+ Ne as ariaValueMax,
479
489
  Se as ariaValueMin,
480
- Ne as ariaValueNow,
481
- ke as ariaValueText,
490
+ ke as ariaValueNow,
491
+ Me as ariaValueText,
482
492
  G as beforeunloadEvent,
483
- an as bezierEasings,
493
+ un as bezierEasings,
484
494
  J as blurEvent,
485
495
  K as changeEvent,
486
496
  le as closest,
487
497
  X as contextmenuEvent,
488
- Kn as createCustomEvent,
498
+ Xn as createCustomEvent,
489
499
  Zt as createElement,
490
500
  $t as createElementNS,
491
501
  Q as dispatchEvent,
492
- Hn as distinct,
493
- zn as documentBody,
494
- xn as documentElement,
495
- M as documentHead,
502
+ Pn as distinct,
503
+ xn as documentBody,
504
+ Vn as documentElement,
505
+ N as documentHead,
496
506
  De as dragEvent,
497
507
  ze as dragendEvent,
498
508
  Oe as dragenterEvent,
499
509
  Le as dragleaveEvent,
500
510
  Ie as dragoverEvent,
501
511
  Ce as dragstartEvent,
502
- Pn as emulateAnimationEnd,
503
- Fn as emulateTransitionEnd,
512
+ Fn as emulateAnimationEnd,
513
+ Un as emulateTransitionEnd,
504
514
  Z as errorEvent,
505
- Rn as focus,
515
+ Qn as focus,
506
516
  $ as focusEvent,
507
517
  Fe as focusEvents,
508
518
  _ as focusinEvent,
@@ -511,59 +521,59 @@ export {
511
521
  nt as gestureendEvent,
512
522
  ot as gesturestartEvent,
513
523
  Yt as getAttribute,
514
- Sn as getAttributeNS,
524
+ Nn as getAttributeNS,
515
525
  h as getBoundingClientRect,
516
- So as getCustomElements,
526
+ No as getCustomElements,
517
527
  d as getDocument,
518
- to as getDocumentBody,
528
+ eo as getDocumentBody,
519
529
  T as getDocumentElement,
520
- eo as getDocumentHead,
530
+ no as getDocumentHead,
521
531
  _t as getElementAnimationDelay,
522
532
  te as getElementAnimationDuration,
523
- Mo as getElementById,
533
+ ko as getElementById,
524
534
  g as getElementStyle,
525
535
  ee as getElementTransitionDelay,
526
536
  ne as getElementTransitionDuration,
527
- ko as getElementsByClassName,
537
+ To as getElementsByClassName,
528
538
  de as getElementsByTagName,
529
- Bn as getInstance,
530
- no as getNodeScroll,
531
- oo as getParentNode,
532
- so as getRectRelativeToOffsetParent,
539
+ Hn as getInstance,
540
+ oo as getNodeScroll,
541
+ so as getParentNode,
542
+ co as getRectRelativeToOffsetParent,
533
543
  ae as getUID,
534
- co as getWindow,
535
- Mn as hasAttribute,
536
- Nn as hasAttributeNS,
537
- In as hasClass,
538
- gn as isApple,
544
+ ro as getWindow,
545
+ kn as hasAttribute,
546
+ Mn as hasAttributeNS,
547
+ zn as hasClass,
548
+ vn as isApple,
539
549
  ie as isArray,
540
- ro as isCanvas,
550
+ ao as isCanvas,
541
551
  ue as isCustomElement,
542
552
  R as isDocument,
543
- ao as isElement,
544
- io as isElementInScrollRange,
545
- uo as isElementInViewport,
546
- lo as isElementsArray,
547
- vn as isFirefox,
548
- po as isFunction,
549
- mo 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,
550
560
  u as isHTMLElement,
551
- fo as isHTMLImageElement,
552
- go as isJSON,
561
+ go as isHTMLImageElement,
562
+ vo as isJSON,
553
563
  I as isMap,
554
- Eo as isMedia,
555
- fn as isMobile,
564
+ bo as isMedia,
565
+ gn as isMobile,
556
566
  i as isNode,
557
- bo as isNodeList,
567
+ ho as isNodeList,
558
568
  se as isNumber,
559
569
  v as isObject,
560
- ho as isRTL,
561
- yo as isSVGElement,
570
+ yo as isRTL,
571
+ wo as isSVGElement,
562
572
  re as isScaledElement,
563
573
  ce as isShadowRoot,
564
- N as isString,
565
- wo as isTableElement,
566
- vo as isWeakMap,
574
+ k as isString,
575
+ Ao as isTableElement,
576
+ Eo as isWeakMap,
567
577
  W as isWindow,
568
578
  We as keyAlt,
569
579
  Re as keyArrowDown,
@@ -575,21 +585,22 @@ export {
575
585
  Ke as keyControl,
576
586
  Xe as keyDelete,
577
587
  Ye as keyEnter,
578
- Ze as keyEscape,
579
- $e as keyInsert,
580
- _e as keyMeta,
581
- tn as keyPause,
582
- en as keyScrollLock,
583
- nn as keyShift,
584
- on as keySpace,
585
- sn as keyTab,
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,
586
597
  Ue as keyboardEventKeys,
587
598
  st as keydownEvent,
588
599
  ct as keypressEvent,
589
600
  rt as keyupEvent,
590
601
  at as loadEvent,
591
602
  xe as loadstartEvent,
592
- To as matches,
603
+ Do as matches,
593
604
  Be as mouseClickEvents,
594
605
  He as mouseHoverEvents,
595
606
  Ve as mouseSwipeEvents,
@@ -608,49 +619,49 @@ export {
608
619
  yt as moveEvent,
609
620
  Te as nativeEvents,
610
621
  Xt as noop,
611
- Qn as normalizeOptions,
622
+ jn as normalizeOptions,
612
623
  V as normalizeValue,
613
624
  Jt as off,
614
- un as offsetHeight,
615
- ln as offsetWidth,
625
+ ln as offsetHeight,
626
+ dn as offsetWidth,
616
627
  Gt as on,
617
628
  Kt as one,
618
629
  wt as orientationchangeEvent,
619
- Xn as passiveHandler,
630
+ Yn as passiveHandler,
620
631
  At as pointercancelEvent,
621
632
  St as pointerdownEvent,
622
- Mt as pointerleaveEvent,
623
- Nt as pointermoveEvent,
624
- kt as pointerupEvent,
625
- Ao as querySelector,
626
- No as querySelectorAll,
633
+ Nt as pointerleaveEvent,
634
+ kt as pointermoveEvent,
635
+ Mt as pointerupEvent,
636
+ So as querySelector,
637
+ Mo as querySelectorAll,
627
638
  Tt as readystatechangeEvent,
628
- Yn as reflow,
629
- Dn as removeAttribute,
630
- Cn as removeAttributeNS,
631
- Ln as removeClass,
632
- rn as removeEventListener,
639
+ Zn as reflow,
640
+ Cn as removeAttribute,
641
+ On as removeAttributeNS,
642
+ In as removeClass,
643
+ an as removeEventListener,
633
644
  Dt as resetEvent,
634
645
  Ct as resizeEvent,
635
646
  zt as scrollEvent,
636
- dn as scrollHeight,
637
- pn as scrollWidth,
647
+ pn as scrollHeight,
648
+ mn as scrollWidth,
638
649
  Ot as selectEvent,
639
650
  Lt as selectendEvent,
640
651
  It as selectstartEvent,
641
- kn as setAttribute,
642
- Tn as setAttributeNS,
643
- Zn as setElementStyle,
652
+ Tn as setAttribute,
653
+ Dn as setAttributeNS,
654
+ $n as setElementStyle,
644
655
  xt as submitEvent,
645
- En as support3DTransform,
646
- wn as supportAnimation,
647
- bn as supportPassive,
648
- yn as supportTouch,
649
- hn as supportTransform,
650
- An as supportTransition,
651
- mn as tabindex,
656
+ bn as support3DTransform,
657
+ An as supportAnimation,
658
+ hn as supportPassive,
659
+ wn as supportTouch,
660
+ yn as supportTransform,
661
+ Sn as supportTransition,
662
+ fn as tabindex,
652
663
  oe as toLowerCase,
653
- _n as toUpperCase,
664
+ to as toUpperCase,
654
665
  Pe as touchEvents,
655
666
  Ht as touchcancelEvent,
656
667
  Pt as touchendEvent,
@@ -663,6 +674,6 @@ export {
663
674
  Ft as unloadEvent,
664
675
  S as userAgent,
665
676
  A as userAgentData,
666
- Do as version
677
+ Co as version
667
678
  };
668
679
  //# sourceMappingURL=shorty.mjs.map