ku4web-components 6.4.69 → 6.4.74

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 (212) hide show
  1. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  2. package/dist/cjs/css-shim-3bfdba4f.js +6 -0
  3. package/dist/cjs/dom-8ac1ad03.js +75 -0
  4. package/dist/cjs/index-51b7a610.js +14 -0
  5. package/dist/cjs/index-6d979ba1.js +10 -0
  6. package/dist/cjs/index-a015c727.js +3067 -0
  7. package/dist/cjs/{index-e2a47c3c.js → index-c25cf44f.js} +1 -1
  8. package/dist/cjs/ku4-carousel-controls.cjs.entry.js +2 -2
  9. package/dist/cjs/ku4-carousel-slide.cjs.entry.js +1 -1
  10. package/dist/cjs/ku4-carousel.cjs.entry.js +4 -4
  11. package/dist/cjs/ku4-col.cjs.entry.js +1 -1
  12. package/dist/cjs/ku4-drawer.cjs.entry.js +1 -1
  13. package/dist/cjs/ku4-feature.cjs.entry.js +2 -2
  14. package/dist/cjs/ku4-focus-trap.cjs.entry.js +26 -26
  15. package/dist/cjs/ku4-form.cjs.entry.js +3 -3
  16. package/dist/cjs/ku4-grid.cjs.entry.js +1 -1
  17. package/dist/cjs/ku4-label.cjs.entry.js +2 -2
  18. package/dist/cjs/ku4-mask.cjs.entry.js +2 -2
  19. package/dist/cjs/ku4-modal.cjs.entry.js +3 -3
  20. package/dist/cjs/ku4-panel.cjs.entry.js +1 -1
  21. package/dist/cjs/ku4-preview.cjs.entry.js +43 -14
  22. package/dist/cjs/ku4-tab-list.cjs.entry.js +6 -6
  23. package/dist/cjs/ku4-tab-panel.cjs.entry.js +3 -3
  24. package/dist/cjs/ku4-tab.cjs.entry.js +3 -3
  25. package/dist/cjs/ku4-table.cjs.entry.js +1 -1
  26. package/dist/cjs/ku4-tooltip.cjs.entry.js +2 -2
  27. package/dist/cjs/ku4-validation.cjs.entry.js +2 -2
  28. package/dist/cjs/ku4web-components.cjs.js +98 -7
  29. package/dist/cjs/loader.cjs.js +18 -2
  30. package/dist/cjs/uid-3dd31175.js +11 -0
  31. package/dist/collection/capabilities/a11y/aria.js +26 -0
  32. package/dist/collection/capabilities/angular/index.js +24 -0
  33. package/dist/collection/capabilities/decorators/deprecated.js +20 -0
  34. package/dist/collection/capabilities/decorators/index.js +3 -0
  35. package/dist/collection/capabilities/decorators/memoize.js +7 -0
  36. package/dist/collection/capabilities/dom/isFocusable.js +7 -0
  37. package/dist/collection/capabilities/dom/queryFocusable.js +2 -0
  38. package/dist/collection/capabilities/identity/uid.js +6 -0
  39. package/dist/collection/capabilities/mask/index.js +5 -0
  40. package/dist/collection/capabilities/mask/patterns/date.js +40 -0
  41. package/dist/collection/capabilities/mask/patterns/index.js +7 -0
  42. package/dist/collection/capabilities/react/index.js +25 -0
  43. package/dist/collection/capabilities/testing/html.js +14 -0
  44. package/dist/collection/capabilities/testing/styles.js +14 -0
  45. package/dist/collection/capabilities/vue/index.js +28 -0
  46. package/dist/collection/capabilities/vue3/index.js +26 -0
  47. package/dist/collection/collection-manifest.json +31 -0
  48. package/dist/collection/components/ku4-carousel/ku4-carousel.css +221 -0
  49. package/dist/collection/components/ku4-carousel/ku4-carousel.js +360 -0
  50. package/dist/collection/components/ku4-carousel-controls/ku4-carousel-controls.css +32 -0
  51. package/dist/collection/components/ku4-carousel-controls/ku4-carousel-controls.js +106 -0
  52. package/dist/collection/components/ku4-carousel-slide/ku4-carousel-slide.css +3 -0
  53. package/dist/collection/components/ku4-carousel-slide/ku4-carousel-slide.js +140 -0
  54. package/dist/collection/components/ku4-col/ku4-col.css +601 -0
  55. package/dist/collection/components/ku4-col/ku4-col.js +288 -0
  56. package/dist/collection/components/ku4-drawer/ku4-drawer.css +56 -0
  57. package/dist/collection/components/ku4-drawer/ku4-drawer.js +163 -0
  58. package/dist/collection/components/ku4-feature/ku4-feature.js +70 -0
  59. package/dist/collection/components/ku4-focus-trap/ku4-focus-trap.css +3 -0
  60. package/dist/collection/components/ku4-focus-trap/ku4-focus-trap.js +441 -0
  61. package/dist/collection/components/ku4-form/ku4-form.js +202 -0
  62. package/dist/collection/components/ku4-grid/ku4-grid.css +751 -0
  63. package/dist/collection/components/ku4-grid/ku4-grid.js +408 -0
  64. package/dist/collection/components/ku4-label/ku4-label.css +36 -0
  65. package/dist/collection/components/ku4-label/ku4-label.js +115 -0
  66. package/dist/collection/components/ku4-mask/ku4-mask.css +3 -0
  67. package/dist/collection/components/ku4-mask/ku4-mask.js +437 -0
  68. package/dist/collection/components/ku4-modal/ku4-modal.css +85 -0
  69. package/dist/collection/components/ku4-modal/ku4-modal.js +186 -0
  70. package/dist/collection/components/ku4-panel/ku4-panel.css +14 -0
  71. package/dist/collection/components/ku4-panel/ku4-panel.js +119 -0
  72. package/dist/collection/components/ku4-preview/ku4-preview.css +23 -0
  73. package/dist/collection/components/ku4-preview/ku4-preview.js +266 -0
  74. package/dist/collection/components/ku4-tab/ku4-tab.css +82 -0
  75. package/dist/collection/components/ku4-tab/ku4-tab.js +191 -0
  76. package/dist/collection/components/ku4-tab-list/ku4-tab-list.css +6 -0
  77. package/dist/collection/components/ku4-tab-list/ku4-tab-list.js +118 -0
  78. package/dist/collection/components/ku4-tab-panel/ku4-tab-panel.css +26 -0
  79. package/dist/collection/components/ku4-tab-panel/ku4-tab-panel.js +166 -0
  80. package/dist/collection/components/ku4-table/ku4-table.css +116 -0
  81. package/dist/collection/components/ku4-table/ku4-table.js +120 -0
  82. package/dist/collection/components/ku4-tooltip/ku4-tooltip.css +56 -0
  83. package/dist/collection/components/ku4-tooltip/ku4-tooltip.js +274 -0
  84. package/dist/collection/components/ku4-validation/ku4-validation.css +19 -0
  85. package/dist/collection/components/ku4-validation/ku4-validation.js +364 -0
  86. package/dist/collection/components/ku4-validation/validate.js +14 -0
  87. package/dist/collection/index.js +1 -0
  88. package/dist/collection/security.js +27 -0
  89. package/dist/esm/app-globals-0f993ce5.js +3 -0
  90. package/dist/esm/css-shim-20dbffa5.js +4 -0
  91. package/dist/esm/dom-c5ed0ba5.js +73 -0
  92. package/dist/esm/{index-a39e08fb.js → index-12aee218.js} +1 -1
  93. package/dist/esm/index-40000e6d.js +3 -0
  94. package/dist/esm/index-80439f22.js +3031 -0
  95. package/dist/esm/index-89916128.js +3 -0
  96. package/dist/esm/ku4-carousel-controls.entry.js +2 -2
  97. package/dist/esm/ku4-carousel-slide.entry.js +1 -1
  98. package/dist/esm/ku4-carousel.entry.js +4 -4
  99. package/dist/esm/ku4-col.entry.js +1 -1
  100. package/dist/esm/ku4-drawer.entry.js +1 -1
  101. package/dist/esm/ku4-feature.entry.js +2 -2
  102. package/dist/esm/ku4-focus-trap.entry.js +3 -3
  103. package/dist/esm/ku4-form.entry.js +3 -3
  104. package/dist/esm/ku4-grid.entry.js +1 -1
  105. package/dist/esm/ku4-label.entry.js +2 -2
  106. package/dist/esm/ku4-mask.entry.js +2 -2
  107. package/dist/esm/ku4-modal.entry.js +3 -3
  108. package/dist/esm/ku4-panel.entry.js +1 -1
  109. package/dist/esm/ku4-preview.entry.js +35 -6
  110. package/dist/esm/ku4-tab-list.entry.js +6 -6
  111. package/dist/esm/ku4-tab-panel.entry.js +3 -3
  112. package/dist/esm/ku4-tab.entry.js +3 -3
  113. package/dist/esm/ku4-table.entry.js +1 -1
  114. package/dist/esm/ku4-tooltip.entry.js +2 -2
  115. package/dist/esm/ku4-validation.entry.js +2 -2
  116. package/dist/esm/ku4web-components.js +98 -7
  117. package/dist/esm/loader.js +18 -2
  118. package/dist/esm/uid-5355229f.js +9 -0
  119. package/dist/esm-es5/{index-a39e08fb.js → index-12aee218.js} +1 -1
  120. package/dist/esm-es5/ku4-carousel.entry.js +1 -1
  121. package/dist/esm-es5/ku4-focus-trap.entry.js +1 -1
  122. package/dist/esm-es5/ku4-form.entry.js +1 -1
  123. package/dist/esm-es5/ku4-modal.entry.js +1 -1
  124. package/dist/esm-es5/ku4-preview.entry.js +1 -1
  125. package/dist/esm-es5/ku4-tab-list.entry.js +1 -1
  126. package/dist/esm-es5/ku4web-components.js +1 -1
  127. package/dist/esm-es5/loader.js +1 -1
  128. package/dist/index.js +1 -1
  129. package/dist/ku4web-components/app-globals-0f993ce5.js +3 -0
  130. package/dist/ku4web-components/app-globals-497eb362.system.js +1 -0
  131. package/dist/ku4web-components/css-shim-20dbffa5.js +4 -0
  132. package/dist/ku4web-components/css-shim-856c55de.system.js +1 -0
  133. package/dist/ku4web-components/dom-938307ec.system.js +21 -0
  134. package/dist/ku4web-components/dom-c5ed0ba5.js +73 -0
  135. package/dist/ku4web-components/index-3127d7f7.system.js +1 -0
  136. package/dist/ku4web-components/index-40000e6d.js +3 -0
  137. package/dist/ku4web-components/index-79de9846.system.js +1 -0
  138. package/dist/ku4web-components/index-80439f22.js +3031 -0
  139. package/dist/ku4web-components/index-89916128.js +3 -0
  140. package/dist/ku4web-components/index-c39e9986.system.js +1 -0
  141. package/dist/ku4web-components/index.esm.js +1 -0
  142. package/dist/ku4web-components/index.system.js +1 -0
  143. package/dist/ku4web-components/ku4-carousel-controls.entry.js +83 -0
  144. package/dist/ku4web-components/ku4-carousel-controls.system.entry.js +1 -0
  145. package/dist/ku4web-components/ku4-carousel-slide.entry.js +47 -0
  146. package/dist/ku4web-components/ku4-carousel-slide.system.entry.js +1 -0
  147. package/dist/ku4web-components/ku4-carousel.entry.js +166 -0
  148. package/dist/ku4web-components/ku4-carousel.system.entry.js +1 -0
  149. package/dist/ku4web-components/ku4-col.entry.js +75 -0
  150. package/dist/ku4web-components/ku4-col.system.entry.js +1 -0
  151. package/dist/ku4web-components/ku4-drawer.entry.js +35 -0
  152. package/dist/ku4web-components/ku4-drawer.system.entry.js +1 -0
  153. package/dist/ku4web-components/ku4-feature.entry.js +29 -0
  154. package/dist/ku4web-components/ku4-feature.system.entry.js +1 -0
  155. package/dist/ku4web-components/ku4-focus-trap.entry.js +323 -0
  156. package/dist/ku4web-components/ku4-focus-trap.system.entry.js +1 -0
  157. package/dist/ku4web-components/ku4-form.entry.js +105 -0
  158. package/dist/ku4web-components/ku4-form.system.entry.js +1 -0
  159. package/dist/ku4web-components/ku4-grid.entry.js +108 -0
  160. package/dist/ku4web-components/ku4-grid.system.entry.js +1 -0
  161. package/dist/ku4web-components/ku4-label.entry.js +70 -0
  162. package/dist/ku4web-components/ku4-label.system.entry.js +1 -0
  163. package/dist/ku4web-components/ku4-mask.entry.js +321 -0
  164. package/dist/ku4web-components/ku4-mask.system.entry.js +1 -0
  165. package/dist/ku4web-components/ku4-modal.entry.js +71 -0
  166. package/dist/ku4web-components/ku4-modal.system.entry.js +1 -0
  167. package/dist/ku4web-components/ku4-panel.entry.js +49 -0
  168. package/dist/ku4web-components/ku4-panel.system.entry.js +1 -0
  169. package/dist/ku4web-components/ku4-preview.entry.js +128 -0
  170. package/dist/ku4web-components/ku4-preview.system.entry.js +1 -0
  171. package/dist/ku4web-components/ku4-tab-list.entry.js +76 -0
  172. package/dist/ku4web-components/ku4-tab-list.system.entry.js +1 -0
  173. package/dist/ku4web-components/ku4-tab-panel.entry.js +72 -0
  174. package/dist/ku4web-components/ku4-tab-panel.system.entry.js +1 -0
  175. package/dist/ku4web-components/ku4-tab.entry.js +63 -0
  176. package/dist/ku4web-components/ku4-tab.system.entry.js +1 -0
  177. package/dist/ku4web-components/ku4-table.entry.js +79 -0
  178. package/dist/ku4web-components/ku4-table.system.entry.js +1 -0
  179. package/dist/ku4web-components/ku4-tooltip.entry.js +120 -0
  180. package/dist/ku4web-components/ku4-tooltip.system.entry.js +1 -0
  181. package/dist/ku4web-components/ku4-validation.entry.js +162 -0
  182. package/dist/ku4web-components/ku4-validation.system.entry.js +1 -0
  183. package/dist/ku4web-components/ku4web-components.css +299 -1
  184. package/dist/ku4web-components/ku4web-components.esm.js +125 -1
  185. package/dist/ku4web-components/ku4web-components.js +1 -1
  186. package/dist/ku4web-components/ku4web-components.system.js +1 -0
  187. package/dist/ku4web-components/p-0e3f81f0.system.entry.js +1 -0
  188. package/dist/ku4web-components/p-2c017d37.system.js +1 -1
  189. package/dist/ku4web-components/{p-85ce378f.system.entry.js → p-2d668be8.system.entry.js} +1 -1
  190. package/dist/ku4web-components/{p-ebc796ca.entry.js → p-34e1be7b.entry.js} +1 -1
  191. package/dist/ku4web-components/{p-b313124a.entry.js → p-38a24a64.entry.js} +1 -1
  192. package/dist/ku4web-components/{p-08ec498e.js → p-3d59c1fe.js} +1 -1
  193. package/dist/ku4web-components/p-4b272a58.entry.js +1 -0
  194. package/dist/ku4web-components/{p-e1964f6b.system.entry.js → p-5cab8007.system.entry.js} +1 -1
  195. package/dist/ku4web-components/{p-43683726.system.entry.js → p-6f236a8a.system.entry.js} +1 -1
  196. package/dist/ku4web-components/{p-31fd55e7.system.entry.js → p-73d78335.system.entry.js} +1 -1
  197. package/dist/ku4web-components/{p-52147373.system.js → p-86284ed4.system.js} +1 -1
  198. package/dist/ku4web-components/{p-479439e6.entry.js → p-90a37025.entry.js} +1 -1
  199. package/dist/ku4web-components/{p-54c18ac5.system.entry.js → p-9b46e89b.system.entry.js} +1 -1
  200. package/dist/ku4web-components/{p-6e505024.entry.js → p-a2805805.entry.js} +1 -1
  201. package/dist/ku4web-components/p-f311c0be.entry.js +1 -0
  202. package/dist/ku4web-components/shadow-css-8c625855.js +388 -0
  203. package/dist/ku4web-components/shadow-css-d573707f.system.js +13 -0
  204. package/dist/ku4web-components/uid-5355229f.js +9 -0
  205. package/dist/ku4web-components/uid-93975202.system.js +1 -0
  206. package/dist/types/components/ku4-preview/ku4-preview.d.ts +5 -0
  207. package/dist/types/components/ku4-tab-list/ku4-tab-list.d.ts +2 -2
  208. package/dist/types/components.d.ts +8 -0
  209. package/package.json +20 -20
  210. package/dist/ku4web-components/p-05a75a47.entry.js +0 -1
  211. package/dist/ku4web-components/p-b625e0a4.entry.js +0 -1
  212. package/dist/ku4web-components/p-fd02ffa2.system.entry.js +0 -1
@@ -1 +1 @@
1
- class t{static isNull(t){return null===t}static isEmpty(e){return t.isString(e)&&""===e||t.isArray(e)&&e.length<1||t.isObjectLiteral(e)&&Object.keys(e).length<1}static isUndefined(t){return void 0===t}static isZero(t){return 0===t}static exists(e){return!(t.isUndefined(e)||t.isNull(e))}static isNullOrEmpty(e){return!t.exists(e)||t.isEmpty(e)}static isArray(t){return Array.isArray(t)}static isBool(t){return"boolean"==typeof t}static isTrue(e){return t.isBool(e)&&!0===e}static isFalse(e){return t.isBool(e)&&!1===e}static isDate(t){return t instanceof Date}static isNumber(t){return("number"==typeof t||t instanceof Number)&&!isNaN(t)}static isEven(t){return this.isNumber(t)&&!this.isZero(t)&&t%2==0}static isOdd(t){return this.isNumber(t)&&!this.isZero(t)&&!this.isEven(t)}static isString(t){return"string"==typeof t||t instanceof String}static isFunction(t){return t instanceof Function}static isAsyncFunction(e){try{return"AsyncFunction"===Object.getPrototypeOf(e).constructor.name||t.isFunction(e)&&/^async/.test(e.toString())||t.isFunction(e().then)}catch(e){return!1}}static isPromise(t){return t instanceof Promise}static isObject(e){return t.exists(e)&&"object"==typeof e&&!(t.isBool(e)||t.isNumber(e)||t.isDate(e)||t.isArray(e)||t.isString(e)||t.isFunction(e))}static isObjectLiteral(e){return t.isObject(e)&&e.constructor==={}.constructor}static isTruthy(e){return!t.isFalsy(e)}static isFalsy(e){return t.isZero(e)||t.isFalse(e)||t.isNullOrEmpty(e)||isNaN(e)}}function e(...t){return"".concat(...t)}function n(t,...e){return e.reduce(((t,e,n)=>t.replace(new RegExp(`\\{${n}\\}`,"g"),e&&e.toString?e.toString():e)),t)}function r(t){return i(s(t))}function i(e){return t.exists(e)&&t.isFunction(e.replace)?e.replace(/^[\s\n]*/,""):e}function s(e){return t.exists(e)&&t.isFunction(e.replace)?e.replace(/[\s\n]*$/,""):e}function u(t,e){try{return t()}catch{return e}}let a;Object.freeze({__proto__:null,build:e,chunk:function(e,n=0){if(!t.isString(e)||Number.isNaN(n)||n<0)return[];if(n<e.length){let t=0;const r=n||e.length,i=[];for(;t<e.length;)i.push(e.slice(t,t+r)),t+=r;return i}return[e]},format:n,trim:r,trimStart:i,trimEnd:s,capitalize:function(t=""){return(t||"").charAt(0).toUpperCase()+(t||"").slice(1).toLowerCase()},mask:function(e,n,r="_"){return t.isFunction(n)?n(e):t.isString(n)&&e.split("").reduce(((t,e)=>t.replace(new RegExp(r),e)),n)},unmask:function(e,n,r="_"){const i=new RegExp(r);return t.isFunction(n)?n(e):t.isString(n)&&e.split("").reduce(((t,e,r)=>!i.test(e)&&i.test(n.charAt(r))?t+e:t),"")}}),u.async=async(t,e)=>{try{return await t()}catch{return e}};class o{constructor(t,e,n){if(e<1||e>12)throw new Error("Invalid month at Assert.DayPoint");if(n<1||n>c(e,t))throw new Error("Invalid date at DayPoint");this._value=arguments.length>=3?new Date(t,e-1,n):new Date,this._day=this._value.getDay(),this._date=n,this._month=e,this._year=t}get value(){return this._value}get day(){return this._day}get date(){return this._date}get month(){return this._month}get year(){return this._year}get shortYear(){const t=this._year.toString();return parseInt(t.substr(t.length-2))}get isWeekday(){const t=this._day;return t>0&&t<6}get isWeekend(){return!this.isWeekday}get isLeapYear(){return h(this._year)}get nextDay(){return l(this,1,0,0)}get prevDay(){return l(this,-1,0,0)}get nextMonth(){return l(this,0,1,0)}get prevMonth(){return l(this,0,-1,0)}get nextYear(){return l(this,0,0,1)}get prevYear(){return l(this,0,0,-1)}get firstDayOfMonth(){return new o(this._year,this._month,1)}get lastDayOfMonth(){return new o(this._year,this._month,c(this._month,this._year))}add(t,e,n){function r(t,e,n){let r=t,i=e;for(;i--;)r=r[n];return r}const{abs:i}=Math,s=i(t),u=i(n),a=i(e),o=n<0?"prevDay":"nextDay",c=e<0?"prevMonth":"nextMonth";return r(r(r(this,s,t<0?"prevYear":"nextYear"),a,c),u,o)}isBefore(t){return!(this.isAfter(t)||this.equals(t))}isAfter(t){const e=this._year,n=t.year,r=this._month,i=t.month;return e>n||e===n&&r>i||e===n&&r===i&&this._date>t.date}equals(t){return this._year===t.year&&this._month===t.month&&this._date===t.date}toString(t="mm/dd/yyyy"){const e=/y{3,}/i.test(t)?this._year:this.shortYear,r=this._month,i=this._date,s=/m{2}/i.test(t)&&r<10?"0{1}":"{1}",u=/d{2}/i.test(t)&&i<10?"0{2}":"{2}";return n(t.replace(/y+/gi,"{0}").replace(/m+/gi,s).replace(/d+/gi,u),e,r,i)}toDate(){return this._value}toJson(){return this._value.toJSON()}static canParse(e){return t.isString(e)||t.isNumber(e)||t.isDate(e)?!isNaN(new Date(e).valueOf()):e instanceof o}static parse(e){if(e instanceof o)return e;let i=t.isString(e)?r(e).replace(/T\d{2}:\d{2}:\d{2}(.\d+)?Z/,""):e;if(/^\d{4}-\d{1,2}-\d{1,2}$/.test(i)){const t=i.split("-"),[e]=t;t.push(e),t.shift(),i=t.join("/")}const s=new Date(i);if(!t.exists(i)||Number.isNaN(s.valueOf()))throw new Error(n("Cannot parse value= {0}",i));return new o(s.getFullYear(),s.getMonth()+1,s.getDate())}static tryParse(t){return u((()=>o.parse(t)),null)}static assumeNow(t){a=o.parse(t)}static get today(){return a||o.parse(new Date)}}function c(e,n){return 2===e?h(n)?29:28:e<8&&t.isEven(e)||e>7&&t.isOdd(e)?30:31}function h(t){const n=t.toString().split(/\B/);return parseFloat(e(n[n.length-2],n[n.length-1]))%4==0}function l(t,e,n,r){const i=t.month,s=t.year,u=t.date,a=n,h=r;let l=u+e,d=i+a,w=s+h;if(u+e>c(i,s)&&(l=1,d=i+a+1),u+e<1){const e=t.prevMonth;l=c(e.month,e.year),d=i+a-1}return d>12&&(d=1,w=s+h+1),d<1&&(d=12,w=s+h-1),new o(w,d,l)}function d(t,e=0){const n=Math.pow(10,-e);return Math.round(parseFloat((t*n).toFixed(Math.abs(e))))/n}function w(t,e=0){return d(t+5*Math.pow(10,e-1),e)}function y(t,e=0){return 0===t?0:d(t-5*Math.pow(10,e-1),e)}function f(t){const e=(t,n=0,r=1)=>0<t?e(--t,r,n+r):n;return e(t)}function m(t){let e=0,n=1,r=0;for(;t>1;)r=e,e=n,n+=r,t--;return t<1?e:n}Object.freeze({__proto__:null,random:function(t=0,e=1){return Math.random()*(e-t)+t},round:d,roundUp:w,roundDown:y,roundTowardZero:function(t,e=0){return t<0?w(t,e):y(t,e)},gcd:function t(e,n){return 0===n?Math.abs(e):t(n,e%n)},fib:f,fib2:m,fibArray:function(t){return Array(t).fill(0).map((()=>f(--t))).reverse()},fib2Array:function(t){return Array(t).fill(0).map((()=>m(--t))).reverse()},tryParseInt:function(t,e=0){const n=parseInt(t);return Number.isNaN(n)?e:n},tryParseFloat:function(t,e=0){const n=parseFloat(t);return Number.isNaN(n)?e:n}});class p{constructor(e=0,n=0){if(!t.isNumber(e)||!t.isNumber(n))throw new Error("Coord requires numeric x and y values");this._x=e,this._y=n}get x(){return this._x}get y(){return this._y}get value(){return{x:this.x,y:this.y}}get half(){return this.divide(new p(2,2))}get abs(){return new p(Math.abs(this.x),Math.abs(this.y))}equals(t){return this.x===t.x&&this.y===t.y}add(t){return new p(this.x+t.x,this.y+t.y)}subtract(t){return new p(this.x-t.x,this.y-t.y)}multiply(t){return new p(this.x*t.x,this.y*t.y)}divide(t){return new p(this.x/t.x,this.y/t.y)}round(t=0){return new p(d(this.x,t),d(this.y,t))}toString(){return`(${this.x},${this.y})`}static canParse(e){return t.isArray(e)?!(Number.isNaN(e[0])||Number.isNaN(e[1])):t.isObjectLiteral(e)&&"x"in e&&"y"in e?!(Number.isNaN(e.x)||Number.isNaN(e.y)):e instanceof p}static parse(e){return t.exists(e)?e instanceof p?e:t.isArray(e)?new p(e[0],e[1]):t.isObjectLiteral(e)&&t.exists(e.x)&&t.exists(e.y)?new p(e.x,e.y):null:null}static tryParse(t){return u((()=>p.parse(t)),null)}}class g extends p{constructor(t=0,e=0){super(t,e),this._lengthSquared=Math.pow(t,2)+Math.pow(e,2),this._magnitude=Math.sqrt(this._lengthSquared),this._unitNormalX=0===t&&0===e?0:t/this._magnitude,this._unitNormalY=0===t&&0===e?0:e/this._magnitude}get magnitude(){return this._magnitude}get isZero(){return 0===this.x&&0===this.y}get normal(){return new g(this._unitNormalX,this._unitNormalY)}get invert(){return new g(-this.x,-this.y)}get norm(){return new g(Math.abs(this.x),Math.abs(this.y))}get perpendicular(){return new g(-this.y,this.x)}equals(t){return t instanceof g&&this.x===t.x&&this.y===t.y}add(t){return t instanceof g?new g(this.x+t.x,this.y+t.y):null}dot(t){return t instanceof g?this.x*t.x+this.y*t.y:null}perpendicularAtTo(t){if(!(t instanceof g))return null;const e=t.add(this.projectionOfOnto(t).invert);return new g(e.x,e.y)}projectionOfOnto(t){if(!(t instanceof g))return null;const e=t.normal.scale(this.dot(t.normal));return new g(e.x,e.y)}scale(t){return new g(this.x*t,this.y*t)}unitNormalDot(t){return t instanceof g?this.normal.x*t.normal.x+this.normal.y*t.normal.y:null}reflect(t){if(!(t instanceof g))return null;if(t.isZero)return this;const e=t.normal;return this.add(e.scale(2*e.dot(this)).invert)}round(t=0){return new g(d(this.x,t),d(this.y,t))}}class b extends p{constructor(t,e){super(t,e)}isAbove(t){return this.y<t.y}isBelow(t){return this.y>t.y}isLeftOf(t){return this.x<t.x}isRightOf(t){return this.x>t.x}distanceFrom(t){return new g(this.x-t.x,this.y-t.y)}distanceTo(t){return this.distanceFrom(t).invert}static canParse(t){return t instanceof b||p.canParse(t)}static parse(t){if(t instanceof b)return t;const e=p.parse(t);return new b(e.x,e.y)}static tryParse(t){return u((()=>b.parse(t)),null)}}function K(){return Math.random().toString().substr(2)}function v(){return function t(e){return e?(e^16*Math.random()>>e/4).toString(16):([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,t)}()}var M=Object.freeze({__proto__:null,uid:K,uuid:v,suid:function(){return Symbol(K())},suuid:function(){return Symbol(v())}});Object.freeze({__proto__:null,pattern:t=>t.toString().replace(/(^\/)|(\/$)/g,"").replace(/\\/g,"\\"),escape:t=>t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),alpha:/^[A-z]+$/,alphaNumeric:/^[A-z0-9]+$/,base64:/^[A-z0-9=]+$/,dataUrl:/^\s*data:([a-z]+\/[a-z0-9+-]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,[a-z0-9!$&',()*+;=._~:@/?%\s-]*\s*$/i,email:/^\w+([.\w-]+)?@\w+([.\w-]+)?\.[A-Za-z0-9]{2,}$/,empty:/^$/,numeric:/^-?[0-9]+$/,script:/(<script[A-z0-9\n\s\t\r.={([\])}'",;!&|$/#:<>*?+\u0000-\u0037\u00C2\u00A0\u2122-]*?<\/script>)/,uid:/^\d{14,}$/i,url:/^(https?:\/\/)?[^{}\\:]+\.[A-z0-9]{2,12}(\/[^?\s]+)*\/?(\?([^=?#]+=[^=?#]*(&[^=?#]+=[^=?#]*)*(#.*)?)?)?$/,uuid:/^[{(]?[0-9A-F]{8}[-]?([0-9A-F]{4}[-]?){3}[0-9A-F]{12}[)}]?$/i}),M.uid(),o.today.nextYear.toDate();class ${static get orientation(){const{screen:t}=window,e=(t.orientation||{}).type||t.mozOrientation||t.msOrientation,n=window.orientation;return e===$.landscapePrimary||90===n?$.landscapePrimary:e===$.landscapeSecondary||-90===n?$.landscapeSecondary:e===$.portraitPrimary||0===n?$.portraitPrimary:e===$.portraitSecondary||180===n?$.portraitSecondary:void 0}static get landscapePrimary(){return"landscape-primary"}static get landscapeSecondary(){return"landscape-secondary"}static get portraitPrimary(){return"portrait-primary"}static get portraitSecondary(){return"portrait-secondary"}static get isMobile(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(window.navigator.userAgent)}}const A=new Set,x=new Set;let N,S,P,D=!1,O=!1,_=!1,k=!1;class E{static get scrollbarWidth(){return window.innerWidth-document.documentElement.clientWidth}static get isScrollPrevented(){return t.exists(E.scrollY)}static preventScroll(){try{A.forEach((t=>t()))}catch(t){}E.position=document.body.style.position,E.offsetY=document.body.style.top,E.offsetX=document.body.style.left,E.width=document.body.style.width,E.height=document.body.style.height,E.documentWidth=document.documentElement.style.width,E.documentWidth=document.documentElement.style.width,E.documentHeight=document.documentElement.style.height,E.overflowY=document.documentElement.style.overflowY,E.scrollX=window.scrollX||window.pageXOffset,E.scrollY=window.scrollY||window.pageYOffset;const{scrollbarWidth:t}=E;document.body.style.position="fixed",document.body.style.left=`-${E.scrollX}px`,document.body.style.top=`calc(-${E.scrollY}px - ${window.getComputedStyle(document.body)["padding-top"]} - ${window.getComputedStyle(document.body)["margin-top"]})`,document.body.style.width=`calc(100vw - ${t}px - ${window.getComputedStyle(document.body)["padding-left"]} - ${window.getComputedStyle(document.body)["padding-right"]} - ${window.getComputedStyle(document.body)["margin-left"]} - ${window.getComputedStyle(document.body)["margin-right"]})`,document.documentElement.style.width="100wh",document.documentElement.style.height="100vh",document.documentElement.style.overflowY=t&&"scroll"}static resumeScroll(){try{x.forEach((t=>t()))}catch(e){}document.body.style.position=E.position,document.body.style.top=E.offsetY,document.body.style.left=E.offsetX,document.body.style.width=E.width,document.body.style.height=E.height,document.documentElement.style.width=E.documentWidth,document.documentElement.style.height=E.documentHeight,document.documentElement.style.overflowY=E.overflowY,window.scrollTo(E.scrollX,E.scrollY),E.position=null,E.offsetY=null,E.offsetX=null,E.width=null,E.height=null,E.documentWidth=null,E.documentHeight=null,E.overflowY=null,E.scrollX=null,E.scrollY=null}static onPreventScroll(t){A.add(t)}static onResumeScroll(t){x.add(t)}static get scroll(){return N||(N=new z,S=window.pageYOffset,P=window.pageXOffset,D=!1,O=!1,_=!1,k=!1,window.addEventListener("unload",(()=>N.unload()))),N}}const F=()=>{const t=window.pageYOffset,e=window.pageXOffset;D=t>S,O=t<S,k=e>P,_=e<P,S=t||window.pageYOffset,P=e||window.pageXOffset};class z{constructor(){document.addEventListener("scroll",F,{passive:!0})}get down(){return D}get up(){return O}get left(){return _}get right(){return k}unload(){document.removeEventListener("scroll",F),D=!1,O=!1,_=!1,k=!1,S=window.pageYOffset,P=window.pageXOffset,N=null}}class j{static mute(e){return!!t.exists(e)&&(t.isFunction(e.preventDefault)&&e.preventDefault(),t.isFunction(e.stopPropagation)&&e.stopPropagation(),t.isFunction(e.stopImmediatePropagation)&&e.stopImmediatePropagation(),t.exists(e.cancelBubble)&&(e.cancelBubble=!0),!1)}}const T=t=>new window.FormData(t),B=e=>{const n={};try{T(e).forEach(((e,r)=>{const i=n[r];t.isArray(i)?n[r].push(e):n[r]=t.exists(i)?[n[r],e]:e}))}catch(t){[...e.elements].forEach((t=>{const{name:e,type:r,value:i,files:s}=t;if("file"===r)n[e]=s[0];else if("checkbox"===r||"radio"===r)t.checked&&(n[e]=i);else if(t.multiple){const r=[];t.querySelectorAll("option").forEach((t=>t.selected&&r.push(t.value))),n[e]=r.length<2?r[0]:r}else n[e]=i}))}return n};var R={read:B,readData:T,readJson:t=>JSON.stringify(B(t)),write:(e,n)=>{e.querySelectorAll("input, textarea").forEach((e=>{t.exists(n[e.name])&&("checkbox"===e.type||"radio"===e.type?e.checked=n[e.name]===e.value:e.value=n[e.name])})),e.querySelectorAll("select").forEach((e=>{t.isArray(n[e.name])?[...e.options].forEach((t=>{t.selected=n[e.name].indexOf(t.value)>=0})):t.exists(n[e.name])&&(e.value=n[e.name])}))}};class Y{constructor(t,e,n={}){this.key=t,this.msKey=e||t,this.altKey=n.altKey||!1,this.ctrlKey=n.ctrlKey||!1,this.metaKey=n.metaKey||!1,this.shiftKey=n.shiftKey||!1}get alt(){const{key:t,msKey:e,ctrlKey:n,metaKey:r,shiftKey:i}=this;return new Y(t,e,{altKey:!0,ctrlKey:n,metaKey:r,shiftKey:i})}get ctrl(){const{key:t,msKey:e,altKey:n,metaKey:r,shiftKey:i}=this;return new Y(t,e,{altKey:n,ctrlKey:!0,metaKey:r,shiftKey:i})}get meta(){const{key:t,msKey:e,altKey:n,ctrlKey:r,shiftKey:i}=this;return new Y(t,e,{altKey:n,ctrlKey:r,metaKey:!0,shiftKey:i})}get shift(){const{key:t,msKey:e,altKey:n,ctrlKey:r,metaKey:i}=this;return new Y(t,e,{altKey:n,ctrlKey:r,metaKey:i,shiftKey:!0})}equals(t){return t instanceof Y&&this.altKey===t.altKey&&this.ctrlKey===t.ctrlKey&&this.metaKey===t.metaKey&&this.shiftKey===t.shiftKey&&(this.key===t.key||this.msKey===t.msKey)}didFire(t){const{code:e,key:n,altKey:r,ctrlKey:i,metaKey:s,shiftKey:u}=t,a="Dead"===n?e:n;return t&&("ANY"===this.key||this.equals(new Y(a,a,{altKey:r,ctrlKey:i,metaKey:s,shiftKey:u})))}static get press(){return"keypress"}static get down(){return"keydown"}static get up(){return"keyup"}static get any(){return new Y("ANY")}static get esc(){return new Y("Escape","Esc")}static get enter(){return new Y("Enter")}static get space(){return new Y(" ","Spacebar")}static get tab(){return new Y("Tab")}static get left(){return new Y("ArrowLeft","Left")}static get right(){return new Y("ArrowRight","Right")}}class I{constructor(t,e=0){this.didTouchStart=this.didTouchStart.bind(this),this.didTouchEnd=this.didTouchEnd.bind(this),this.didTouchMove=this.didTouchMove.bind(this),t.addEventListener("touchstart",this.didTouchStart,{capture:!1,passive:!0}),t.addEventListener("touchend",this.didTouchEnd,{capture:!1,passive:!0}),t.addEventListener("touchmove",this.didTouchMove,{capture:!1,passive:!0}),this.element=t,this.tolerance=e,this.didSwipeLeft=()=>{},this.didSwipeRight=()=>{},this.didMove=()=>{}}onLeft(t){return this.didSwipeLeft=t,this}onRight(t){return this.didSwipeRight=t,this}onMove(t){return this.didMove=t,this}destroy(){const{element:t}=this;return t.removeEventListener("touchstart",this.didTouchStart,!1),t.removeEventListener("touchend",this.didTouchEnd,!1),t.removeEventListener("touchmove",this.didTouchMove,!1),this}didTouchStart({touches:[t]}){this.touchStartPoint=new b(t.pageX,t.pageY)}didTouchEnd(t){const[e]=t.changedTouches,{touchStartPoint:n}=this,r=new b(e.pageX,e.pageY);r.isLeftOf(n)&&Math.abs(r.distanceFrom(n).x)>this.tolerance&&this.didSwipeLeft(t),r.isRightOf(n)&&Math.abs(r.distanceFrom(n).x)>this.tolerance&&this.didSwipeRight(t)}didTouchMove(t){const[e]=t.touches,{touchStartPoint:n}=this,r=new b(e.pageX,e.pageY);this.didMove({distance:r.distanceFrom(n),up:r.isAbove(n),down:r.isBelow(n),left:r.isLeftOf(n),right:r.isRightOf(n)})}}export{E as D,j as E,Y as K,I as S,$ as a,R as i}
1
+ class t{static isNull(t){return null===t}static isEmpty(e){return t.isString(e)&&""===e||t.isArray(e)&&e.length<1||t.isObjectLiteral(e)&&Object.keys(e).length<1}static isUndefined(t){return void 0===t}static isZero(t){return 0===t}static exists(e){return!(t.isUndefined(e)||t.isNull(e))}static isNullOrEmpty(e){return!t.exists(e)||t.isEmpty(e)}static isArray(t){return Array.isArray(t)}static isBool(t){return"boolean"==typeof t}static isTrue(e){return t.isBool(e)&&!0===e}static isFalse(e){return t.isBool(e)&&!1===e}static isDate(t){return t instanceof Date}static isNumber(t){return("number"==typeof t||t instanceof Number)&&!isNaN(t)}static isEven(t){return this.isNumber(t)&&!this.isZero(t)&&t%2==0}static isOdd(t){return this.isNumber(t)&&!this.isZero(t)&&!this.isEven(t)}static isString(t){return"string"==typeof t||t instanceof String}static isFunction(t){return t instanceof Function}static isAsyncFunction(e){try{return"AsyncFunction"===Object.getPrototypeOf(e).constructor.name||t.isFunction(e)&&/^async/.test(e.toString())||t.isFunction(e().then)}catch(e){return!1}}static isPromise(t){return t instanceof Promise}static isObject(e){return t.exists(e)&&"object"==typeof e&&!(t.isBool(e)||t.isNumber(e)||t.isDate(e)||t.isArray(e)||t.isString(e)||t.isFunction(e))}static isObjectLiteral(e){return t.isObject(e)&&e.constructor==={}.constructor}static isTruthy(e){return!t.isFalsy(e)}static isFalsy(e){return t.isZero(e)||t.isFalse(e)||t.isNullOrEmpty(e)||isNaN(e)}}function e(...t){return"".concat(...t)}function n(t,...e){return e.reduce(((t,e,n)=>t.replace(new RegExp(`\\{${n}\\}`,"g"),e&&e.toString?e.toString():e)),t)}function r(t){return i(s(t))}function i(e){return t.exists(e)&&t.isFunction(e.replace)?e.replace(/^[\s\n]*/,""):e}function s(e){return t.exists(e)&&t.isFunction(e.replace)?e.replace(/[\s\n]*$/,""):e}function u(t,e){try{return t()}catch{return e}}let a;Object.freeze({__proto__:null,build:e,chunk:function(e,n=0){if(!t.isString(e)||Number.isNaN(n)||n<0)return[];if(n<e.length){let t=0;const r=n||e.length,i=[];for(;t<e.length;)i.push(e.slice(t,t+r)),t+=r;return i}return[e]},format:n,trim:r,trimStart:i,trimEnd:s,capitalize:function(t=""){return(t||"").charAt(0).toUpperCase()+(t||"").slice(1).toLowerCase()},mask:function(e,n,r="_"){return t.isFunction(n)?n(e):t.isString(n)&&e.split("").reduce(((t,e)=>t.replace(new RegExp(r),e)),n)},unmask:function(e,n,r="_"){const i=new RegExp(r);return t.isFunction(n)?n(e):t.isString(n)&&e.split("").reduce(((t,e,r)=>!i.test(e)&&i.test(n.charAt(r))?t+e:t),"")}}),u.async=async(t,e)=>{try{return await t()}catch{return e}};class o{constructor(t,e,n){if(e<1||e>12)throw new Error("Invalid month at Assert.DayPoint");if(n<1||n>c(e,t))throw new Error("Invalid date at DayPoint");this._value=arguments.length>=3?new Date(t,e-1,n):new Date,this._day=this._value.getDay(),this._date=n,this._month=e,this._year=t}get value(){return this._value}get day(){return this._day}get date(){return this._date}get month(){return this._month}get year(){return this._year}get shortYear(){const t=this._year.toString();return parseInt(t.substr(t.length-2))}get isWeekday(){const t=this._day;return t>0&&t<6}get isWeekend(){return!this.isWeekday}get isLeapYear(){return h(this._year)}get nextDay(){return l(this,1,0,0)}get prevDay(){return l(this,-1,0,0)}get nextMonth(){return l(this,0,1,0)}get prevMonth(){return l(this,0,-1,0)}get nextYear(){return l(this,0,0,1)}get prevYear(){return l(this,0,0,-1)}get firstDayOfMonth(){return new o(this._year,this._month,1)}get lastDayOfMonth(){return new o(this._year,this._month,c(this._month,this._year))}add(t,e,n){function r(t,e,n){let r=t,i=e;for(;i--;)r=r[n];return r}const{abs:i}=Math,s=i(t),u=i(n),a=i(e),o=n<0?"prevDay":"nextDay",c=e<0?"prevMonth":"nextMonth";return r(r(r(this,s,t<0?"prevYear":"nextYear"),a,c),u,o)}isBefore(t){return!(this.isAfter(t)||this.equals(t))}isAfter(t){const e=this._year,n=t.year,r=this._month,i=t.month;return e>n||e===n&&r>i||e===n&&r===i&&this._date>t.date}equals(t){return this._year===t.year&&this._month===t.month&&this._date===t.date}toString(t="mm/dd/yyyy"){const e=/y{3,}/i.test(t)?this._year:this.shortYear,r=this._month,i=this._date,s=/m{2}/i.test(t)&&r<10?"0{1}":"{1}",u=/d{2}/i.test(t)&&i<10?"0{2}":"{2}";return n(t.replace(/y+/gi,"{0}").replace(/m+/gi,s).replace(/d+/gi,u),e,r,i)}toDate(){return this._value}toJson(){return this._value.toJSON()}static canParse(e){return t.isString(e)||t.isNumber(e)||t.isDate(e)?!isNaN(new Date(e).valueOf()):e instanceof o}static parse(e){if(e instanceof o)return e;let i=t.isString(e)?r(e).replace(/T\d{2}:\d{2}:\d{2}(.\d+)?Z/,""):e;if(/^\d{4}-\d{1,2}-\d{1,2}$/.test(i)){const t=i.split("-"),[e]=t;t.push(e),t.shift(),i=t.join("/")}const s=new Date(i);if(!t.exists(i)||Number.isNaN(s.valueOf()))throw new Error(n("Cannot parse value= {0}",i));return new o(s.getFullYear(),s.getMonth()+1,s.getDate())}static tryParse(t){return u((()=>o.parse(t)),null)}static assumeNow(t){a=o.parse(t)}static get today(){return a||o.parse(new Date)}}function c(e,n){return 2===e?h(n)?29:28:e<8&&t.isEven(e)||e>7&&t.isOdd(e)?30:31}function h(t){const n=t.toString().split(/\B/);return parseFloat(e(n[n.length-2],n[n.length-1]))%4==0}function l(t,e,n,r){const i=t.month,s=t.year,u=t.date,a=n,h=r;let l=u+e,d=i+a,w=s+h;if(u+e>c(i,s)&&(l=1,d=i+a+1),u+e<1){const e=t.prevMonth;l=c(e.month,e.year),d=i+a-1}return d>12&&(d=1,w=s+h+1),d<1&&(d=12,w=s+h-1),new o(w,d,l)}function d(t,e=0){const n=Math.pow(10,-e);return Math.round(parseFloat((t*n).toFixed(Math.abs(e))))/n}function w(t,e=0){return d(t+5*Math.pow(10,e-1),e)}function y(t,e=0){return 0===t?0:d(t-5*Math.pow(10,e-1),e)}function f(t){const e=(t,n=0,r=1)=>0<t?e(--t,r,n+r):n;return e(t)}function m(t){let e=0,n=1,r=0;for(;t>1;)r=e,e=n,n+=r,t--;return t<1?e:n}Object.freeze({__proto__:null,random:function(t=0,e=1){return Math.random()*(e-t)+t},round:d,roundUp:w,roundDown:y,roundTowardZero:function(t,e=0){return t<0?w(t,e):y(t,e)},gcd:function t(e,n){return 0===n?Math.abs(e):t(n,e%n)},fib:f,fib2:m,fibArray:function(t){return Array(t).fill(0).map((()=>f(--t))).reverse()},fib2Array:function(t){return Array(t).fill(0).map((()=>m(--t))).reverse()},tryParseInt:function(t,e=0){const n=parseInt(t);return Number.isNaN(n)?e:n},tryParseFloat:function(t,e=0){const n=parseFloat(t);return Number.isNaN(n)?e:n}});class p{constructor(e=0,n=0){if(!t.isNumber(e)||!t.isNumber(n))throw new Error("Coord requires numeric x and y values");this._x=e,this._y=n}get x(){return this._x}get y(){return this._y}get value(){return{x:this.x,y:this.y}}get half(){return this.divide(new p(2,2))}get abs(){return new p(Math.abs(this.x),Math.abs(this.y))}equals(t){return this.x===t.x&&this.y===t.y}add(t){return new p(this.x+t.x,this.y+t.y)}subtract(t){return new p(this.x-t.x,this.y-t.y)}multiply(t){return new p(this.x*t.x,this.y*t.y)}divide(t){return new p(this.x/t.x,this.y/t.y)}round(t=0){return new p(d(this.x,t),d(this.y,t))}toString(){return`(${this.x},${this.y})`}static canParse(e){return t.isArray(e)?!(Number.isNaN(e[0])||Number.isNaN(e[1])):t.isObjectLiteral(e)&&"x"in e&&"y"in e?!(Number.isNaN(e.x)||Number.isNaN(e.y)):e instanceof p}static parse(e){return t.exists(e)?e instanceof p?e:t.isArray(e)?new p(e[0],e[1]):t.isObjectLiteral(e)&&t.exists(e.x)&&t.exists(e.y)?new p(e.x,e.y):null:null}static tryParse(t){return u((()=>p.parse(t)),null)}}class g extends p{constructor(t=0,e=0){super(t,e),this._lengthSquared=Math.pow(t,2)+Math.pow(e,2),this._magnitude=Math.sqrt(this._lengthSquared),this._unitNormalX=0===t&&0===e?0:t/this._magnitude,this._unitNormalY=0===t&&0===e?0:e/this._magnitude}get magnitude(){return this._magnitude}get isZero(){return 0===this.x&&0===this.y}get normal(){return new g(this._unitNormalX,this._unitNormalY)}get invert(){return new g(-this.x,-this.y)}get norm(){return new g(Math.abs(this.x),Math.abs(this.y))}get perpendicular(){return new g(-this.y,this.x)}equals(t){return t instanceof g&&this.x===t.x&&this.y===t.y}add(t){return t instanceof g?new g(this.x+t.x,this.y+t.y):null}dot(t){return t instanceof g?this.x*t.x+this.y*t.y:null}perpendicularAtTo(t){if(!(t instanceof g))return null;const e=t.add(this.projectionOfOnto(t).invert);return new g(e.x,e.y)}projectionOfOnto(t){if(!(t instanceof g))return null;const e=t.normal.scale(this.dot(t.normal));return new g(e.x,e.y)}scale(t){return new g(this.x*t,this.y*t)}unitNormalDot(t){return t instanceof g?this.normal.x*t.normal.x+this.normal.y*t.normal.y:null}reflect(t){if(!(t instanceof g))return null;if(t.isZero)return this;const e=t.normal;return this.add(e.scale(2*e.dot(this)).invert)}round(t=0){return new g(d(this.x,t),d(this.y,t))}}class b extends p{constructor(t,e){super(t,e)}isAbove(t){return this.y<t.y}isBelow(t){return this.y>t.y}isLeftOf(t){return this.x<t.x}isRightOf(t){return this.x>t.x}distanceFrom(t){return new g(this.x-t.x,this.y-t.y)}distanceTo(t){return this.distanceFrom(t).invert}static canParse(t){return t instanceof b||p.canParse(t)}static parse(t){if(t instanceof b)return t;const e=p.parse(t);return new b(e.x,e.y)}static tryParse(t){return u((()=>b.parse(t)),null)}}function K(){return Math.random().toString().substr(2)}function v(){return function t(e){return e?(e^16*Math.random()>>e/4).toString(16):([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,t)}()}var M=Object.freeze({__proto__:null,uid:K,uuid:v,suid:function(){return Symbol(K())},suuid:function(){return Symbol(v())}});Object.freeze({__proto__:null,pattern:t=>t.toString().replace(/(^\/)|(\/$)/g,"").replace(/\\/g,"\\"),escape:t=>t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),alpha:/^[A-z]+$/,alphaNumeric:/^[A-z0-9]+$/,base64:/^[A-z0-9=]+$/,dataUrl:/^\s*data:([a-z]+\/[a-z0-9+-]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,[a-z0-9!$&',()*+;=._~:@/?%\s-]*\s*$/i,email:/^\w+([.\w-]+)?@\w+([.\w-]+)?\.[A-Za-z0-9]{2,}$/,empty:/^$/,numeric:/^-?[0-9]+$/,script:/(<script[A-z0-9\n\s\t\r.={([\])}'",;!&|$/#:<>*?+\u0000-\u0037\u00C2\u00A0\u2122-]*?<\/script>)/,uid:/^\d{14,}$/i,url:/^(https?:\/\/)?[^{}\\:]+\.[A-z0-9]{2,12}(\/[^?\s]+)*\/?(\?([^=?#]+=[^=?#]*(&[^=?#]+=[^=?#]*)*(#.*)?)?)?$/,uuid:/^[{(]?[0-9A-F]{8}[-]?([0-9A-F]{4}[-]?){3}[0-9A-F]{12}[)}]?$/i}),M.uid(),o.today.nextYear.toDate();class ${static get orientation(){const{screen:t}=window,e=(t.orientation||{}).type||t.mozOrientation||t.msOrientation,n=window.orientation;return e===$.landscapePrimary||90===n?$.landscapePrimary:e===$.landscapeSecondary||-90===n?$.landscapeSecondary:e===$.portraitPrimary||0===n?$.portraitPrimary:e===$.portraitSecondary||180===n?$.portraitSecondary:void 0}static get landscapePrimary(){return"landscape-primary"}static get landscapeSecondary(){return"landscape-secondary"}static get portraitPrimary(){return"portrait-primary"}static get portraitSecondary(){return"portrait-secondary"}static get isMobile(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(window.navigator.userAgent)}}const A=new Set,N=new Set;let S,x,P,D=!1,O=!1,_=!1,k=!1;class E{static get scrollbarWidth(){return window.innerWidth-document.documentElement.clientWidth}static get isScrollPrevented(){return t.exists(E.scrollY)}static preventScroll(){try{A.forEach((t=>t()))}catch(t){}E.position=document.body.style.position,E.offsetY=document.body.style.top,E.offsetX=document.body.style.left,E.width=document.body.style.width,E.height=document.body.style.height,E.documentWidth=document.documentElement.style.width,E.documentWidth=document.documentElement.style.width,E.documentHeight=document.documentElement.style.height,E.overflowY=document.documentElement.style.overflowY,E.scrollX=window.scrollX||window.pageXOffset,E.scrollY=window.scrollY||window.pageYOffset;const{scrollbarWidth:t}=E;document.body.style.position="fixed",document.body.style.left=`-${E.scrollX}px`,document.body.style.top=`calc(-${E.scrollY}px - ${window.getComputedStyle(document.body)["padding-top"]} - ${window.getComputedStyle(document.body)["margin-top"]})`,document.body.style.width=`calc(100vw - ${t}px - ${window.getComputedStyle(document.body)["padding-left"]} - ${window.getComputedStyle(document.body)["padding-right"]} - ${window.getComputedStyle(document.body)["margin-left"]} - ${window.getComputedStyle(document.body)["margin-right"]})`,document.documentElement.style.width="100wh",document.documentElement.style.height="100vh",document.documentElement.style.overflowY=t&&"scroll"}static resumeScroll(){try{N.forEach((t=>t()))}catch(e){}document.body.style.position=E.position,document.body.style.top=E.offsetY,document.body.style.left=E.offsetX,document.body.style.width=E.width,document.body.style.height=E.height,document.documentElement.style.width=E.documentWidth,document.documentElement.style.height=E.documentHeight,document.documentElement.style.overflowY=E.overflowY,window.scrollTo(E.scrollX,E.scrollY),E.position=null,E.offsetY=null,E.offsetX=null,E.width=null,E.height=null,E.documentWidth=null,E.documentHeight=null,E.overflowY=null,E.scrollX=null,E.scrollY=null}static onPreventScroll(t){A.add(t)}static onResumeScroll(t){N.add(t)}static get scroll(){return S||(S=new z,x=window.pageYOffset,P=window.pageXOffset,D=!1,O=!1,_=!1,k=!1,window.addEventListener("unload",(()=>S.unload()))),S}}const F=()=>{const t=window.pageYOffset,e=window.pageXOffset;D=t>x,O=t<x,k=e>P,_=e<P,x=t||window.pageYOffset,P=e||window.pageXOffset};class z{constructor(){document.addEventListener("scroll",F,{passive:!0})}get down(){return D}get up(){return O}get left(){return _}get right(){return k}unload(){document.removeEventListener("scroll",F),D=!1,O=!1,_=!1,k=!1,x=window.pageYOffset,P=window.pageXOffset,S=null}}class j{static mute(e){return!!t.exists(e)&&(t.isFunction(e.preventDefault)&&e.preventDefault(),t.isFunction(e.stopPropagation)&&e.stopPropagation(),t.isFunction(e.stopImmediatePropagation)&&e.stopImmediatePropagation(),t.exists(e.cancelBubble)&&(e.cancelBubble=!0),!1)}}const T=t=>new window.FormData(t),B=e=>{const n={};try{T(e).forEach(((e,r)=>{const i=n[r];t.isArray(i)?n[r].push(e):n[r]=t.exists(i)?[n[r],e]:e}))}catch(t){[...e.elements].forEach((t=>{const{name:e,type:r,value:i,files:s}=t;if("file"===r)n[e]=s[0];else if("checkbox"===r||"radio"===r)t.checked&&(n[e]=i);else if(t.multiple){const r=[];t.querySelectorAll("option").forEach((t=>t.selected&&r.push(t.value))),n[e]=r.length<2?r[0]:r}else n[e]=i}))}return n};var R={read:B,readData:T,readJson:t=>JSON.stringify(B(t)),write:(e,n)=>{[...e.elements].forEach((e=>{/^select$/i.test(e.nodeName)?t.isArray(n[e.name])?[...e.options].forEach((t=>{t.selected=n[e.name].indexOf(t.value)>=0})):t.exists(n[e.name])&&(e.value=n[e.name]):t.exists(n[e.name])&&("checkbox"===e.type||"radio"===e.type?e.checked=n[e.name]===e.value:e.value=n[e.name])}))}};class Y{constructor(t,e,n={}){this.key=t,this.msKey=e||t,this.altKey=n.altKey||!1,this.ctrlKey=n.ctrlKey||!1,this.metaKey=n.metaKey||!1,this.shiftKey=n.shiftKey||!1}get alt(){const{key:t,msKey:e,ctrlKey:n,metaKey:r,shiftKey:i}=this;return new Y(t,e,{altKey:!0,ctrlKey:n,metaKey:r,shiftKey:i})}get ctrl(){const{key:t,msKey:e,altKey:n,metaKey:r,shiftKey:i}=this;return new Y(t,e,{altKey:n,ctrlKey:!0,metaKey:r,shiftKey:i})}get meta(){const{key:t,msKey:e,altKey:n,ctrlKey:r,shiftKey:i}=this;return new Y(t,e,{altKey:n,ctrlKey:r,metaKey:!0,shiftKey:i})}get shift(){const{key:t,msKey:e,altKey:n,ctrlKey:r,metaKey:i}=this;return new Y(t,e,{altKey:n,ctrlKey:r,metaKey:i,shiftKey:!0})}equals(t){return t instanceof Y&&this.altKey===t.altKey&&this.ctrlKey===t.ctrlKey&&this.metaKey===t.metaKey&&this.shiftKey===t.shiftKey&&(this.key===t.key||this.msKey===t.msKey)}didFire(t){const{code:e,key:n,altKey:r,ctrlKey:i,metaKey:s,shiftKey:u}=t,a="Dead"===n?e:n;return t&&("ANY"===this.key||this.equals(new Y(a,a,{altKey:r,ctrlKey:i,metaKey:s,shiftKey:u})))}static get press(){return"keypress"}static get down(){return"keydown"}static get up(){return"keyup"}static get any(){return new Y("ANY")}static get esc(){return new Y("Escape","Esc")}static get enter(){return new Y("Enter")}static get space(){return new Y(" ","Spacebar")}static get tab(){return new Y("Tab")}static get left(){return new Y("ArrowLeft","Left")}static get right(){return new Y("ArrowRight","Right")}}class I{constructor(t,e=0){this.didTouchStart=this.didTouchStart.bind(this),this.didTouchEnd=this.didTouchEnd.bind(this),this.didTouchMove=this.didTouchMove.bind(this),t.addEventListener("touchstart",this.didTouchStart,{capture:!1,passive:!0}),t.addEventListener("touchend",this.didTouchEnd,{capture:!1,passive:!0}),t.addEventListener("touchmove",this.didTouchMove,{capture:!1,passive:!0}),this.element=t,this.tolerance=e,this.didSwipeLeft=()=>{},this.didSwipeRight=()=>{},this.didMove=()=>{}}onLeft(t){return this.didSwipeLeft=t,this}onRight(t){return this.didSwipeRight=t,this}onMove(t){return this.didMove=t,this}destroy(){const{element:t}=this;return t.removeEventListener("touchstart",this.didTouchStart,!1),t.removeEventListener("touchend",this.didTouchEnd,!1),t.removeEventListener("touchmove",this.didTouchMove,!1),this}didTouchStart({touches:[t]}){this.touchStartPoint=new b(t.pageX,t.pageY)}didTouchEnd(t){const[e]=t.changedTouches,{touchStartPoint:n}=this,r=new b(e.pageX,e.pageY);r.isLeftOf(n)&&Math.abs(r.distanceFrom(n).x)>this.tolerance&&this.didSwipeLeft(t),r.isRightOf(n)&&Math.abs(r.distanceFrom(n).x)>this.tolerance&&this.didSwipeRight(t)}didTouchMove(t){const[e]=t.touches,{touchStartPoint:n}=this,r=new b(e.pageX,e.pageY);this.didMove({distance:r.distanceFrom(n),up:r.isAbove(n),down:r.isBelow(n),left:r.isLeftOf(n),right:r.isRightOf(n)})}}export{E as D,j as E,Y as K,I as S,$ as a,R as i}
@@ -0,0 +1 @@
1
+ import{r as t,h as s,H as e,g as r}from"./p-fbb5312d.js";import{K as i}from"./p-3d59c1fe.js";import{u as a}from"./p-cbbb4b1b.js";import"./p-c1068ffa.js";let o=class{constructor(s){t(this,s)}handleTabClick({target:t}){this.tabs.includes(t)&&this.open(t)}handleTabKeyUp({target:t,detail:s}){this.tabs.includes(t)&&(i.left.didFire(s)&&this.open(this.previous(t)),i.right.didFire(s)&&this.open(this.next(t)))}async open(t){return this.reset().select(t)}select(t){return t.select(),this}deselect(t){return t.deselect(),this}reset(){return this.tabs.forEach((t=>this.deselect(t))),this}previous(t){const{tabs:s,tabs:{length:e}}=this,r=s.indexOf(t)-1;return s[r>-1?r:e-1]}next(t){const{tabs:s,tabs:{length:e}}=this,r=s.indexOf(t)+1;return s[r<e?r:0]}componentDidRender(){const t=[],s=[];[].slice.call(this.host.children).forEach((e=>{"KU4-TAB"===e.tagName&&t.push(e),"KU4-TAB-PANEL"===e.tagName&&s.push(e)})),this.tabs=t,this.tabs.forEach(((t,e)=>t.connect(s[e])))}render(){return s(e,{id:this.host.id||a(),role:"tablist","aria-owns":this.host.id||a()},s("slot",null))}get host(){return r(this)}};o.style=":host{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}";export{o as ku4_tab_list}