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
@@ -0,0 +1,3 @@
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(t){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 r(t,...e){return e.reduce(((t,e,r)=>t.replace(new RegExp(`\\{${r}\\}`,"g"),e&&e.toString?e.toString():e)),t)}function i(t){return s(n(t))}function s(e){return t.exists(e)&&t.isFunction(e.replace)?e.replace(/^[\s\n]*/,""):e}function n(e){return t.exists(e)&&t.isFunction(e.replace)?e.replace(/[\s\n]*$/,""):e}var a=Object.freeze({__proto__:null,build:e,chunk:function(e,r=0){if(!t.isString(e)||Number.isNaN(r)||r<0)return [];if(r<e.length){let t=0;const i=r||e.length,s=[];for(;t<e.length;)s.push(e.slice(t,t+i)),t+=i;return s}return [e]},format:r,trim:i,trimStart:s,trimEnd:n,capitalize:function(t=""){return (t||"").charAt(0).toUpperCase()+(t||"").slice(1).toLowerCase()},mask:function(e,r,i="_"){return t.isFunction(r)?r(e):t.isString(r)&&e.split("").reduce(((t,e)=>t.replace(new RegExp(i),e)),r)},unmask:function(e,r,i="_"){const s=new RegExp(i);return t.isFunction(r)?r(e):t.isString(r)&&e.split("").reduce(((t,e,i)=>!s.test(e)&&s.test(r.charAt(i))?t+e:t),"")}});class u{constructor(t="",e="",r=""){this._first=t||"",this._middle=e||"",this._last=r||"";}get first(){return this._first}get middle(){return this._middle}get last(){return this._last}get full(){const e=t.isNullOrEmpty(this.middle)?"F L":"F M L";return i(this.toString(e).replace(/\s+/," "))}get initials(){const e=t.isNullOrEmpty(this.middle)?"f.l.":"f.m.l.";return i(this.toString(e).replace(/\s{2,}/,""))}equals(e){return t.exists(e)&&e.first===this.first&&e.middle===this.middle&&e.last===this.last}toString(e){const r=this.first.charAt(0),i=this.middle.charAt(0),s=this.last.charAt(0);return t.isNullOrEmpty(e)?this.full:e.replace(/([FfMmLl])/g,"{$1}").replace("{F}",this.first).replace("{M}",this.middle).replace("{L}",this.last).replace("{f}",r).replace("{m}",i).replace("{l}",s)}}var o=t=>t.reduce(((t,e)=>(t.includes(e)||t.push(e),t)),[]);class c{constructor(t){this._list=t,this._head=0;}get isEmpty(){return this.length<1}get index(){return this._head}get length(){return this._list.length}get current(){return this._list[this._head]}get next(){const{length:t}=this;let{_head:e}=this;return this._head=e++<t-1?e:0,this.current}get prev(){const{length:t}=this;let{_head:e}=this;return this._head=--e<0?t-1:e,this.current}get peekNext(){const{_head:t,length:e}=this;return this._list[t+1<e?t+1:0]}get peekPrev(){const{_head:t,length:e}=this;return this._list[t-1<0?e-1:t-1]}}function h(t,e){try{return t()}catch{return e}}let l;h.async=async(t,e)=>{try{return await t()}catch{return e}};class d{constructor(t,e,r){if(e<1||e>12)throw new Error("Invalid month at Assert.DayPoint");if(r<1||r>y(e,t))throw new Error("Invalid date at DayPoint");this._value=arguments.length>=3?new Date(t,e-1,r):new Date,this._day=this._value.getDay(),this._date=r,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 f(this._year)}get nextDay(){return p(this,1,0,0)}get prevDay(){return p(this,-1,0,0)}get nextMonth(){return p(this,0,1,0)}get prevMonth(){return p(this,0,-1,0)}get nextYear(){return p(this,0,0,1)}get prevYear(){return p(this,0,0,-1)}get firstDayOfMonth(){return new d(this._year,this._month,1)}get lastDayOfMonth(){return new d(this._year,this._month,y(this._month,this._year))}add(t,e,r){function i(t,e,r){let i=t,s=e;for(;s--;)i=i[r];return i}const{abs:s}=Math,n=s(t),a=s(r),u=s(e),o=r<0?"prevDay":"nextDay",c=e<0?"prevMonth":"nextMonth";return i(i(i(this,n,t<0?"prevYear":"nextYear"),u,c),a,o)}isBefore(t){return !(this.isAfter(t)||this.equals(t))}isAfter(t){const e=this._year,r=t.year,i=this._month,s=t.month;return e>r||(e===r&&i>s||e===r&&i===s&&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,i=this._month,s=this._date,n=/m{2}/i.test(t)&&i<10?"0{1}":"{1}",a=/d{2}/i.test(t)&&s<10?"0{2}":"{2}";return r(t.replace(/y+/gi,"{0}").replace(/m+/gi,n).replace(/d+/gi,a),e,i,s)}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 d}static parse(e){if(e instanceof d)return e;let s=t.isString(e)?i(e).replace(/T\d{2}:\d{2}:\d{2}(.\d+)?Z/,""):e;if(/^\d{4}-\d{1,2}-\d{1,2}$/.test(s)){const t=s.split("-"),[e]=t;t.push(e),t.shift(),s=t.join("/");}const n=new Date(s);if(!t.exists(s)||Number.isNaN(n.valueOf()))throw new Error(r("Cannot parse value= {0}",s));return new d(n.getFullYear(),n.getMonth()+1,n.getDate())}static tryParse(t){return h((()=>d.parse(t)),null)}static assumeNow(t){l=d.parse(t);}static get today(){return l||d.parse(new Date)}}function y(e,r){return 2===e?f(r)?29:28:e<8&&t.isEven(e)||e>7&&t.isOdd(e)?30:31}function f(t){const r=t.toString().split(/\B/);return parseFloat(e(r[r.length-2],r[r.length-1]))%4==0}function p(t,e,r,i){const s=t.month,n=t.year,a=t.date,u=r,o=i;let c=a+e,h=s+u,l=n+o;if(a+e>y(s,n)&&(c=1,h=s+u+1),a+e<1){const e=t.prevMonth;c=y(e.month,e.year),h=s+u-1;}return h>12&&(h=1,l=n+o+1),h<1&&(h=12,l=n+o-1),new d(l,h,c)}function m(t,e=0){const r=Math.pow(10,-e);return Math.round(parseFloat((t*r).toFixed(Math.abs(e))))/r}function g(t,e=0){return m(t+5*Math.pow(10,e-1),e)}function _(t,e=0){if(0===t)return 0;return m(t-5*Math.pow(10,e-1),e)}function w(t,e=0){return t<0?g(t,e):_(t,e)}function x(t){const e=(t,r=0,i=1)=>0<t?e(--t,i,r+i):r;return e(t)}function v(t){let e=0,r=1,i=0;for(;t>1;)i=e,e=r,r+=i,t--;return t<1?e:r}function b(t,e=0){const r=parseInt(t);return Number.isNaN(r)?e:r}var N=Object.freeze({__proto__:null,random:function(t=0,e=1){return Math.random()*(e-t)+t},round:m,roundUp:g,roundDown:_,roundTowardZero:w,gcd:function t(e,r){return 0===r?Math.abs(e):t(r,e%r)},fib:x,fib2:v,fibArray:function(t){return Array(t).fill(0).map((()=>x(--t))).reverse()},fib2Array:function(t){return Array(t).fill(0).map((()=>v(--t))).reverse()},tryParseInt:b,tryParseFloat:function(t,e=0){const r=parseFloat(t);return Number.isNaN(r)?e:r}});class A{constructor(e=0,r){if(!t.isNumber(e))throw new Error("Money requires valid numeric amount.");const i=w(e);this._cents=/\./.test(e)?parseFloat(e.toString().replace(/\d+\./,".")):0,this._dollars=i,this._currency=r||"$",this._value=e;}get cents(){return this._cents}get dollars(){return this._dollars}get currency(){return this._currency}get value(){return this._value}add(t){return S(this,t),new A(this.value+t.value,this.currency)}subtract(t){return S(this,t),new A(this.value-t.value,this.currency)}multiply(e){if(!t.isNumber(e))throw new Error(`Invalid factor ${e}`);return new A(this.value*e,this.currency)}divide(e){if(!t.isNumber(e))throw new Error(`Invalid divisor ${e}`);return new A(this.value/e,this.currency)}equals(t){return this.isOfCurrency(t)&&this.value===t.value}isGreaterThan(t){return S(this,t),this.value>t.value}isLessThan(t){return S(this,t),this.value<t.value}get nearestWhole(){return new A(m(this.value,0),this.currency)}get nearestDollar(){return this.nearestWhole}round(t=-2){return new A(m(this.value,t),this.currency)}roundDown(t=-2){return new A(_(this.value,t),this.currency)}roundUp(t=-2){return new A(g(this.value,t),this.currency)}exchange(t,e){return new A(this.multiply(t).value,e)}isOfCurrency(t){return this.currency===t.currency}toString(t="d.c2",e){const[,r,i]=/d(.)c(\d+)/.exec(t),s=e||{".":",",",":"."}[r],n=function(t,e){if(0===t)return "0";const r=t.toString().replace(/[^\d]/,"").split(/\B/);let i=0;return r.reverse().reduce(((t,r)=>(i>0&&!(i%3)&&(t.push(e),i=0),t.push(r),i++,t)),[]).reverse().join("").replace(/[^\d]$/,"")}(this.dollars,s||","),a=function(t,e){const r=t.toString().replace(/[^\d]|0\./g,""),i="0".repeat(e);return `${r}${i}`.slice(0,e)}(this.cents,b(i,2)),u=`${this.currency}${n}${r}${a}`;return this.value<0?`(${u})`:u}static zero(t){return new A(0,t)}static isMoney(t){return t instanceof A}static canParse(t){try{return A.parse(t),!0}catch(t){return !1}}static parse(e){if(t.isNumber(e))return new A(e);let r=e;if(/,\d{2}$/.test(e)){const t=e.split(","),i=t.pop();r=`${t.join().replace(/\./g,",")}.${i}`;}const i=/(\(.*\))|(-)/.test(r),s=i?1:0,n=r.match(/[^\d.,-]/g),a=t.isArray(n)?n[s]:null,u=parseFloat(r.replace(/[^\d.]/g,""));return new A(i?-u:u,a)}static tryParse(t){return h((()=>A.parse(t)),null)}}function S(t,e){if(!t.isOfCurrency(e))throw new Error(`Invalid operation on non-conforming currencies. ${t.currency} !== ${e.currency}`)}class ${constructor(e=0,r=0){if(!t.isNumber(e)||!t.isNumber(r))throw new Error("Coord requires numeric x and y values");this._x=e,this._y=r;}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 $(2,2))}get abs(){return new $(Math.abs(this.x),Math.abs(this.y))}equals(t){return this.x===t.x&&this.y===t.y}add(t){return new $(this.x+t.x,this.y+t.y)}subtract(t){return new $(this.x-t.x,this.y-t.y)}multiply(t){return new $(this.x*t.x,this.y*t.y)}divide(t){return new $(this.x/t.x,this.y/t.y)}round(t=0){return new $(m(this.x,t),m(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 $}static parse(e){return t.exists(e)?e instanceof $?e:t.isArray(e)?new $(e[0],e[1]):t.isObjectLiteral(e)&&t.exists(e.x)&&t.exists(e.y)?new $(e.x,e.y):null:null}static tryParse(t){return h((()=>$.parse(t)),null)}}class F extends ${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 F(this._unitNormalX,this._unitNormalY)}get invert(){return new F(-this.x,-this.y)}get norm(){return new F(Math.abs(this.x),Math.abs(this.y))}get perpendicular(){return new F(-this.y,this.x)}equals(t){return t instanceof F&&this.x===t.x&&this.y===t.y}add(t){return t instanceof F?new F(this.x+t.x,this.y+t.y):null}dot(t){return t instanceof F?this.x*t.x+this.y*t.y:null}perpendicularAtTo(t){if(!(t instanceof F))return null;const e=t.add(this.projectionOfOnto(t).invert);return new F(e.x,e.y)}projectionOfOnto(t){if(!(t instanceof F))return null;const e=t.normal.scale(this.dot(t.normal));return new F(e.x,e.y)}scale(t){return new F(this.x*t,this.y*t)}unitNormalDot(t){return t instanceof F?this.normal.x*t.normal.x+this.normal.y*t.normal.y:null}reflect(t){if(!(t instanceof F))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 F(m(this.x,t),m(this.y,t))}}class O extends ${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 F(this.x-t.x,this.y-t.y)}distanceTo(t){return this.distanceFrom(t).invert}static canParse(t){return t instanceof O||$.canParse(t)}static parse(t){if(t instanceof O)return t;const e=$.parse(t);return new O(e.x,e.y)}static tryParse(t){return h((()=>O.parse(t)),null)}}class M{constructor(t=0,e=0,r=0,i=0){this.origin=new O(t,e),this.dimensions=new $(r,i),this.diagonal=O.parse(this.origin.add(this.dimensions)),this.center=this.diagonal.half;}contains(t){return this.origin.isAbove(t)&&this.origin.isLeftOf(t)&&this.diagonal.isRightOf(t)&&this.diagonal.isBelow(t)}aspectToFit(t){const e=this.dimensions,r=t.dimensions,i=r.x,s=r.y;let n=e.x,a=e.y;return n>a&&0!==n?(a*=i/n,n=i,a>s&&(a=s,n*=a/e.y)):a>s&&(n*=s/a,a=s),new M(this.origin.x,this.origin.y,n,a)}}class B{constructor(){if(this.constructor===B)throw new Error("Cannot instantiate abstract class: AbstractSpecification")}and(t){return new E(this,t)}or(t){return new D(this,t)}xor(t){return new I(this,t)}not(t){return new P(this,t)}isSatisfiedBy(){throw new Error("Abstract method must be implemented.")}}class E extends B{constructor(t,e){super(),this._specificationA=t,this._specificationB=e;}isSatisfiedBy(t){return this._specificationA.isSatisfiedBy(t)&&this._specificationB.isSatisfiedBy(t)}}class D extends B{constructor(t,e){super(),this._specificationA=t,this._specificationB=e;}isSatisfiedBy(t){return this._specificationA.isSatisfiedBy(t)||this._specificationB.isSatisfiedBy(t)}}class I extends B{constructor(t,e){super(),this._specificationA=t,this._specificationB=e;}isSatisfiedBy(t){return !this._specificationA.isSatisfiedBy(t)!=!this._specificationB.isSatisfiedBy(t)}}class P extends B{constructor(t){super(),this._specification=t;}isSatisfiedBy(t){return !this._specification.isSatisfiedBy(t)}}class T{constructor(){if(this.constructor===T)throw new Error("Cannot instantiate abstract class.")}execute(){throw new Error("Abstract method must be implemented.")}}var j=(t,e,r=!1)=>{let i;return (...s)=>{const n=r&&!i;clearTimeout(i),i=setTimeout((()=>{i=null,r||t(...s);}),e),n&&t(...s);}},z=(e,r)=>t.isPromise(e)||t.isAsyncFunction(e)?t.isFunction(e.then)?e.then((t=>t&&r())):e().then((t=>t&&r())):t.isFunction(e)&&e?e()&&r():t.isTrue(e)&&r();class L{constructor(t){this._milliseconds=t;}get isRunning(){return t.exists(this._intervalId)}onInterval(t){return this.clear(),this._didInterval=t,this}start(){return this.clear(),this._intervalId=setInterval((()=>{this._didInterval();}),this._milliseconds),this}clear(){return clearInterval(this._intervalId),this._intervalId=null,this}}var q=t=>setTimeout(t,0);class C{constructor(t){this._milliseconds=t;}get isRunning(){return t.exists(this._timeoutId)}onTimeout(t){return this.clear(),this._didTimeout=t,this}start(){return this.clear(),this._timeoutId=setTimeout((()=>{this._didTimeout();}),this._milliseconds),this}clear(){return clearTimeout(this._timeoutId),this._timeoutId=null,this}}var Y=t=>new Promise((e=>setTimeout(e,t)));function k(){return Math.random().toString().substr(2)}function Z(){return function t(e){return e?(e^16*Math.random()>>e/4).toString(16):([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,t)}()}var R=Object.freeze({__proto__:null,uid:k,uuid:Z,suid:function(){return Symbol(k())},suuid:function(){return Symbol(Z())}});var U=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});
2
+
3
+ export { C, L, M, R, Y, a, c, j, o, t };
@@ -0,0 +1 @@
1
+ var __extends=this&&this.__extends||function(){var e=function(t,n){e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n))e[n]=t[n]};return e(t,n)};return function(t,n){if(typeof n!=="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}();var __assign=this&&this.__assign||function(){__assign=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++){t=arguments[n];for(var o in t)if(Object.prototype.hasOwnProperty.call(t,o))e[o]=t[o]}return e};return __assign.apply(this,arguments)};var __awaiter=this&&this.__awaiter||function(e,t,n,r){function o(e){return e instanceof n?e:new n((function(t){t(e)}))}return new(n||(n=Promise))((function(n,i){function a(e){try{s(r.next(e))}catch(t){i(t)}}function u(e){try{s(r["throw"](e))}catch(t){i(t)}}function s(e){e.done?n(e.value):o(e.value).then(a,u)}s((r=r.apply(e,t||[])).next())}))};var __generator=this&&this.__generator||function(e,t){var n={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},r,o,i,a;return a={next:u(0),throw:u(1),return:u(2)},typeof Symbol==="function"&&(a[Symbol.iterator]=function(){return this}),a;function u(e){return function(t){return s([e,t])}}function s(a){if(r)throw new TypeError("Generator is already executing.");while(n)try{if(r=1,o&&(i=a[0]&2?o["return"]:a[0]?o["throw"]||((i=o["return"])&&i.call(o),0):o.next)&&!(i=i.call(o,a[1])).done)return i;if(o=0,i)a=[a[0]&2,i.value];switch(a[0]){case 0:case 1:i=a;break;case 4:n.label++;return{value:a[1],done:false};case 5:n.label++;o=a[1];a=[0];continue;case 7:a=n.ops.pop();n.trys.pop();continue;default:if(!(i=n.trys,i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){n=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){n.label=a[1];break}if(a[0]===6&&n.label<i[1]){n.label=i[1];i=a;break}if(i&&n.label<i[2]){n.label=i[2];n.ops.push(a);break}if(i[2])n.ops.pop();n.trys.pop();continue}a=t.call(e,n)}catch(u){a=[6,u];o=0}finally{r=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:true}}};var __spreadArray=this&&this.__spreadArray||function(e,t){for(var n=0,r=t.length,o=e.length;n<r;n++,o++)e[o]=t[n];return e};System.register([],(function(exports){"use strict";return{execute:function(){var _this=this;var t=function(){function e(){}e.isNull=function(e){return null===e};e.isEmpty=function(t){return e.isString(t)&&""===t||e.isArray(t)&&t.length<1||e.isObjectLiteral(t)&&Object.keys(t).length<1};e.isUndefined=function(e){return void 0===e};e.isZero=function(e){return 0===e};e.exists=function(t){return!(e.isUndefined(t)||e.isNull(t))};e.isNullOrEmpty=function(t){return!e.exists(t)||e.isEmpty(t)};e.isArray=function(e){return Array.isArray(e)};e.isBool=function(e){return"boolean"==typeof e};e.isTrue=function(t){return e.isBool(t)&&!0===t};e.isFalse=function(t){return e.isBool(t)&&!1===t};e.isDate=function(e){return e instanceof Date};e.isNumber=function(e){return("number"==typeof e||e instanceof Number)&&!isNaN(e)};e.isEven=function(e){return this.isNumber(e)&&!this.isZero(e)&&e%2==0};e.isOdd=function(e){return this.isNumber(e)&&!this.isZero(e)&&!this.isEven(e)};e.isString=function(e){return"string"==typeof e||e instanceof String};e.isFunction=function(e){return e instanceof Function};e.isAsyncFunction=function(t){try{return"AsyncFunction"===Object.getPrototypeOf(t).constructor.name||e.isFunction(t)&&/^async/.test(t.toString())||e.isFunction(t().then)}catch(t){return!1}};e.isPromise=function(e){return e instanceof Promise};e.isObject=function(t){return e.exists(t)&&"object"==typeof t&&!(e.isBool(t)||e.isNumber(t)||e.isDate(t)||e.isArray(t)||e.isString(t)||e.isFunction(t))};e.isObjectLiteral=function(t){return e.isObject(t)&&t.constructor==={}.constructor};e.isTruthy=function(t){return!e.isFalsy(t)};e.isFalsy=function(t){return e.isZero(t)||e.isFalse(t)||e.isNullOrEmpty(t)||isNaN(t)};return e}();function e(){var e=[];for(var t=0;t<arguments.length;t++){e[t]=arguments[t]}return"".concat.apply("",e)}function r(e){var t=[];for(var n=1;n<arguments.length;n++){t[n-1]=arguments[n]}return t.reduce((function(e,t,n){return e.replace(new RegExp("\\{"+n+"\\}","g"),t&&t.toString?t.toString():t)}),e)}function i(e){return s(n(e))}function s(e){return t.exists(e)&&t.isFunction(e.replace)?e.replace(/^[\s\n]*/,""):e}function n(e){return t.exists(e)&&t.isFunction(e.replace)?e.replace(/[\s\n]*$/,""):e}var a=Object.freeze({__proto__:null,build:e,chunk:function(e,n){if(n===void 0){n=0}if(!t.isString(e)||Number.isNaN(n)||n<0)return[];if(n<e.length){var r=0;var o=n||e.length,i=[];for(;r<e.length;)i.push(e.slice(r,r+o)),r+=o;return i}return[e]},format:r,trim:i,trimStart:s,trimEnd:n,capitalize:function(e){if(e===void 0){e=""}return(e||"").charAt(0).toUpperCase()+(e||"").slice(1).toLowerCase()},mask:function(e,n,r){if(r===void 0){r="_"}return t.isFunction(n)?n(e):t.isString(n)&&e.split("").reduce((function(e,t){return e.replace(new RegExp(r),t)}),n)},unmask:function(e,n,r){if(r===void 0){r="_"}var o=new RegExp(r);return t.isFunction(n)?n(e):t.isString(n)&&e.split("").reduce((function(e,t,r){return!o.test(t)&&o.test(n.charAt(r))?e+t:e}),"")}});function h(e,t){try{return e()}catch(n){return t}}var l;h.async=function(e,t){return __awaiter(_this,void 0,void 0,(function(){var n;return __generator(this,(function(r){switch(r.label){case 0:r.trys.push([0,2,,3]);return[4,e()];case 1:return[2,r.sent()];case 2:n=r.sent();return[2,t];case 3:return[2]}}))}))};var d=function(){function e(e,t,n){if(t<1||t>12)throw new Error("Invalid month at Assert.DayPoint");if(n<1||n>y(t,e))throw new Error("Invalid date at DayPoint");this._value=arguments.length>=3?new Date(e,t-1,n):new Date,this._day=this._value.getDay(),this._date=n,this._month=t,this._year=e}Object.defineProperty(e.prototype,"value",{get:function(){return this._value},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"day",{get:function(){return this._day},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"date",{get:function(){return this._date},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"month",{get:function(){return this._month},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"year",{get:function(){return this._year},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"shortYear",{get:function(){var e=this._year.toString();return parseInt(e.substr(e.length-2))},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"isWeekday",{get:function(){var e=this._day;return e>0&&e<6},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"isWeekend",{get:function(){return!this.isWeekday},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"isLeapYear",{get:function(){return f(this._year)},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"nextDay",{get:function(){return p(this,1,0,0)},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"prevDay",{get:function(){return p(this,-1,0,0)},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"nextMonth",{get:function(){return p(this,0,1,0)},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"prevMonth",{get:function(){return p(this,0,-1,0)},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"nextYear",{get:function(){return p(this,0,0,1)},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"prevYear",{get:function(){return p(this,0,0,-1)},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"firstDayOfMonth",{get:function(){return new e(this._year,this._month,1)},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"lastDayOfMonth",{get:function(){return new e(this._year,this._month,y(this._month,this._year))},enumerable:false,configurable:true});e.prototype.add=function(e,t,n){function r(e,t,n){var r=e,o=t;for(;o--;)r=r[n];return r}var o=Math.abs,i=o(e),a=o(n),u=o(t),s=n<0?"prevDay":"nextDay",c=t<0?"prevMonth":"nextMonth";return r(r(r(this,i,e<0?"prevYear":"nextYear"),u,c),a,s)};e.prototype.isBefore=function(e){return!(this.isAfter(e)||this.equals(e))};e.prototype.isAfter=function(e){var t=this._year,n=e.year,r=this._month,o=e.month;return t>n||t===n&&r>o||t===n&&r===o&&this._date>e.date};e.prototype.equals=function(e){return this._year===e.year&&this._month===e.month&&this._date===e.date};e.prototype.toString=function(e){if(e===void 0){e="mm/dd/yyyy"}var t=/y{3,}/i.test(e)?this._year:this.shortYear,n=this._month,o=this._date,i=/m{2}/i.test(e)&&n<10?"0{1}":"{1}",a=/d{2}/i.test(e)&&o<10?"0{2}":"{2}";return r(e.replace(/y+/gi,"{0}").replace(/m+/gi,i).replace(/d+/gi,a),t,n,o)};e.prototype.toDate=function(){return this._value};e.prototype.toJson=function(){return this._value.toJSON()};e.canParse=function(n){return t.isString(n)||t.isNumber(n)||t.isDate(n)?!isNaN(new Date(n).valueOf()):n instanceof e};e.parse=function(n){if(n instanceof e)return n;var o=t.isString(n)?i(n).replace(/T\d{2}:\d{2}:\d{2}(.\d+)?Z/,""):n;if(/^\d{4}-\d{1,2}-\d{1,2}$/.test(o)){var a=o.split("-"),u=a[0];a.push(u),a.shift(),o=a.join("/")}var s=new Date(o);if(!t.exists(o)||Number.isNaN(s.valueOf()))throw new Error(r("Cannot parse value= {0}",o));return new e(s.getFullYear(),s.getMonth()+1,s.getDate())};e.tryParse=function(t){return h((function(){return e.parse(t)}),null)};e.assumeNow=function(t){l=e.parse(t)};Object.defineProperty(e,"today",{get:function(){return l||e.parse(new Date)},enumerable:false,configurable:true});return e}();function y(e,n){return 2===e?f(n)?29:28:e<8&&t.isEven(e)||e>7&&t.isOdd(e)?30:31}function f(t){var n=t.toString().split(/\B/);return parseFloat(e(n[n.length-2],n[n.length-1]))%4==0}function p(e,t,n,r){var o=e.month,i=e.year,a=e.date,u=n,s=r;var c=a+t,l=o+u,f=i+s;if(a+t>y(o,i)&&(c=1,l=o+u+1),a+t<1){var p=e.prevMonth;c=y(p.month,p.year),l=o+u-1}return l>12&&(l=1,f=i+s+1),l<1&&(l=12,f=i+s-1),new d(f,l,c)}function m(e,t){if(t===void 0){t=0}var n=Math.pow(10,-t);return Math.round(parseFloat((e*n).toFixed(Math.abs(t))))/n}function g(e,t){if(t===void 0){t=0}return m(e+5*Math.pow(10,t-1),t)}function _(e,t){if(t===void 0){t=0}return 0===e?0:m(e-5*Math.pow(10,t-1),t)}function w(e,t){if(t===void 0){t=0}return e<0?g(e,t):_(e,t)}function x(e){var t=function(e,n,r){if(n===void 0){n=0}if(r===void 0){r=1}return 0<e?t(--e,r,n+r):n};return t(e)}function v(e){var t=0,n=1,r=0;for(;e>1;)r=t,t=n,n+=r,e--;return e<1?t:n}function b(e,t){if(t===void 0){t=0}var n=parseInt(e);return Number.isNaN(n)?t:n}var N=Object.freeze({__proto__:null,random:function(e,t){if(e===void 0){e=0}if(t===void 0){t=1}return Math.random()*(t-e)+e},round:m,roundUp:g,roundDown:_,roundTowardZero:w,gcd:function e(t,n){return 0===n?Math.abs(t):e(n,t%n)},fib:x,fib2:v,fibArray:function(e){return Array(e).fill(0).map((function(){return x(--e)})).reverse()},fib2Array:function(e){return Array(e).fill(0).map((function(){return v(--e)})).reverse()},tryParseInt:b,tryParseFloat:function(e,t){if(t===void 0){t=0}var n=parseFloat(e);return Number.isNaN(n)?t:n}});var $=function(){function e(e,n){if(e===void 0){e=0}if(n===void 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}Object.defineProperty(e.prototype,"x",{get:function(){return this._x},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"y",{get:function(){return this._y},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"value",{get:function(){return{x:this.x,y:this.y}},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"half",{get:function(){return this.divide(new e(2,2))},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"abs",{get:function(){return new e(Math.abs(this.x),Math.abs(this.y))},enumerable:false,configurable:true});e.prototype.equals=function(e){return this.x===e.x&&this.y===e.y};e.prototype.add=function(t){return new e(this.x+t.x,this.y+t.y)};e.prototype.subtract=function(t){return new e(this.x-t.x,this.y-t.y)};e.prototype.multiply=function(t){return new e(this.x*t.x,this.y*t.y)};e.prototype.divide=function(t){return new e(this.x/t.x,this.y/t.y)};e.prototype.round=function(t){if(t===void 0){t=0}return new e(m(this.x,t),m(this.y,t))};e.prototype.toString=function(){return"("+this.x+","+this.y+")"};e.canParse=function(n){return t.isArray(n)?!(Number.isNaN(n[0])||Number.isNaN(n[1])):t.isObjectLiteral(n)&&"x"in n&&"y"in n?!(Number.isNaN(n.x)||Number.isNaN(n.y)):n instanceof e};e.parse=function(n){return t.exists(n)?n instanceof e?n:t.isArray(n)?new e(n[0],n[1]):t.isObjectLiteral(n)&&t.exists(n.x)&&t.exists(n.y)?new e(n.x,n.y):null:null};e.tryParse=function(t){return h((function(){return e.parse(t)}),null)};return e}();var F=function(e){__extends(t,e);function t(t,n){if(t===void 0){t=0}if(n===void 0){n=0}var r=this;r=e.call(this,t,n)||this,r._lengthSquared=Math.pow(t,2)+Math.pow(n,2),r._magnitude=Math.sqrt(r._lengthSquared),r._unitNormalX=0===t&&0===n?0:t/r._magnitude,r._unitNormalY=0===t&&0===n?0:n/r._magnitude;return r}Object.defineProperty(t.prototype,"magnitude",{get:function(){return this._magnitude},enumerable:false,configurable:true});Object.defineProperty(t.prototype,"isZero",{get:function(){return 0===this.x&&0===this.y},enumerable:false,configurable:true});Object.defineProperty(t.prototype,"normal",{get:function(){return new t(this._unitNormalX,this._unitNormalY)},enumerable:false,configurable:true});Object.defineProperty(t.prototype,"invert",{get:function(){return new t(-this.x,-this.y)},enumerable:false,configurable:true});Object.defineProperty(t.prototype,"norm",{get:function(){return new t(Math.abs(this.x),Math.abs(this.y))},enumerable:false,configurable:true});Object.defineProperty(t.prototype,"perpendicular",{get:function(){return new t(-this.y,this.x)},enumerable:false,configurable:true});t.prototype.equals=function(e){return e instanceof t&&this.x===e.x&&this.y===e.y};t.prototype.add=function(e){return e instanceof t?new t(this.x+e.x,this.y+e.y):null};t.prototype.dot=function(e){return e instanceof t?this.x*e.x+this.y*e.y:null};t.prototype.perpendicularAtTo=function(e){if(!(e instanceof t))return null;var n=e.add(this.projectionOfOnto(e).invert);return new t(n.x,n.y)};t.prototype.projectionOfOnto=function(e){if(!(e instanceof t))return null;var n=e.normal.scale(this.dot(e.normal));return new t(n.x,n.y)};t.prototype.scale=function(e){return new t(this.x*e,this.y*e)};t.prototype.unitNormalDot=function(e){return e instanceof t?this.normal.x*e.normal.x+this.normal.y*e.normal.y:null};t.prototype.reflect=function(e){if(!(e instanceof t))return null;if(e.isZero)return this;var n=e.normal;return this.add(n.scale(2*n.dot(this)).invert)};t.prototype.round=function(e){if(e===void 0){e=0}return new t(m(this.x,e),m(this.y,e))};return t}($);var O=function(e){__extends(t,e);function t(t,n){return e.call(this,t,n)||this}t.prototype.isAbove=function(e){return this.y<e.y};t.prototype.isBelow=function(e){return this.y>e.y};t.prototype.isLeftOf=function(e){return this.x<e.x};t.prototype.isRightOf=function(e){return this.x>e.x};t.prototype.distanceFrom=function(e){return new F(this.x-e.x,this.y-e.y)};t.prototype.distanceTo=function(e){return this.distanceFrom(e).invert};t.canParse=function(e){return e instanceof t||$.canParse(e)};t.parse=function(e){if(e instanceof t)return e;var n=$.parse(e);return new t(n.x,n.y)};t.tryParse=function(e){return h((function(){return t.parse(e)}),null)};return t}($);function k(){return Math.random().toString().substr(2)}function Z(){return function e(t){return t?(t^16*Math.random()>>t/4).toString(16):([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,e)}()}var R=Object.freeze({__proto__:null,uid:k,uuid:Z,suid:function(){return Symbol(k())},suuid:function(){return Symbol(Z())}});Object.freeze({__proto__:null,pattern:function(e){return e.toString().replace(/(^\/)|(\/$)/g,"").replace(/\\/g,"\\")},escape:function(e){return e.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});var Cookie=function(){function e(){}e.serialize=function(e,n){if(n===void 0){n=defaultParams}try{if(t.isUndefined(e))throw new Error;var r=Object.assign(defaultParams,n),o=r.name,i=r.expires,u=r.path,s=r.domain,c=r.secure,l=kvPair(o,e),f=d.canParse(i)?kvPair("; expires",d.parse(i).toDate().toGMTString()):"",p=u?kvPair("; path",u.split("/").map((function(e){return encodeURIComponent(e)})).join("/")):"",h=s?kvPair("; domain",encodeURIComponent(s)):"";return l+f+p+h+(c?"; secure":"")}catch(t){throw new Error(a.format("Cannot serialize {0}",e))}};e.deserialize=function(e){try{return read$1(e)[1]}catch(t){throw new Error(a.format("Cannot deserialize {0}",e))}};e.read=function(e){try{var n=read$1(e),r=n[0],o=n[1];return{name:r,value:o}}catch(t){throw new Error(a.format("Cannot read {0}",e))}};return e}();var defaultParams={name:R.uid(),expires:d.today.nextYear.toDate(),path:"/",domain:null,secure:!1},kvPair=function(e,t){return e+"="+t},read$1=function(e){return/;/.test(e)?e.substring(0,e.search(";")).split("="):e.split("=")};var Device=function(){function e(){}Object.defineProperty(e,"orientation",{get:function(){var t=window.screen,n=(t.orientation||{}).type||t.mozOrientation||t.msOrientation,r=window.orientation;return n===e.landscapePrimary||90===r?e.landscapePrimary:n===e.landscapeSecondary||-90===r?e.landscapeSecondary:n===e.portraitPrimary||0===r?e.portraitPrimary:n===e.portraitSecondary||180===r?e.portraitSecondary:void 0},enumerable:false,configurable:true});Object.defineProperty(e,"landscapePrimary",{get:function(){return"landscape-primary"},enumerable:false,configurable:true});Object.defineProperty(e,"landscapeSecondary",{get:function(){return"landscape-secondary"},enumerable:false,configurable:true});Object.defineProperty(e,"portraitPrimary",{get:function(){return"portrait-primary"},enumerable:false,configurable:true});Object.defineProperty(e,"portraitSecondary",{get:function(){return"portrait-secondary"},enumerable:false,configurable:true});Object.defineProperty(e,"isMobile",{get:function(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(window.navigator.userAgent)},enumerable:false,configurable:true});return e}();exports("a",Device);var onPreventScroll=new Set,onResumeScroll=new Set;var scroll,lastPageYOffset,lastPageXOffset,scrollIsDown=!1,scrollIsUp=!1,scrollIsLeft=!1,scrollIsRight=!1;var Document=function(){function n(){}Object.defineProperty(n,"scrollbarWidth",{get:function(){return window.innerWidth-document.documentElement.clientWidth},enumerable:false,configurable:true});Object.defineProperty(n,"isScrollPrevented",{get:function(){return t.exists(n.scrollY)},enumerable:false,configurable:true});n.preventScroll=function(){try{onPreventScroll.forEach((function(e){return e()}))}catch(e){}n.position=document.body.style.position,n.offsetY=document.body.style.top,n.offsetX=document.body.style.left,n.width=document.body.style.width,n.height=document.body.style.height,n.documentWidth=document.documentElement.style.width,n.documentWidth=document.documentElement.style.width,n.documentHeight=document.documentElement.style.height,n.overflowY=document.documentElement.style.overflowY,n.scrollX=window.scrollX||window.pageXOffset,n.scrollY=window.scrollY||window.pageYOffset;var e=n.scrollbarWidth;document.body.style.position="fixed",document.body.style.left="-"+n.scrollX+"px",document.body.style.top="calc(-"+n.scrollY+"px - "+window.getComputedStyle(document.body)["padding-top"]+" - "+window.getComputedStyle(document.body)["margin-top"]+")",document.body.style.width="calc(100vw - "+e+"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=e&&"scroll"};n.resumeScroll=function(){try{onResumeScroll.forEach((function(e){return e()}))}catch(e){}document.body.style.position=n.position,document.body.style.top=n.offsetY,document.body.style.left=n.offsetX,document.body.style.width=n.width,document.body.style.height=n.height,document.documentElement.style.width=n.documentWidth,document.documentElement.style.height=n.documentHeight,document.documentElement.style.overflowY=n.overflowY,window.scrollTo(n.scrollX,n.scrollY),n.position=null,n.offsetY=null,n.offsetX=null,n.width=null,n.height=null,n.documentWidth=null,n.documentHeight=null,n.overflowY=null,n.scrollX=null,n.scrollY=null};n.onPreventScroll=function(e){onPreventScroll.add(e)};n.onResumeScroll=function(e){onResumeScroll.add(e)};Object.defineProperty(n,"scroll",{get:function(){return scroll||(scroll=new Scroll,lastPageYOffset=window.pageYOffset,lastPageXOffset=window.pageXOffset,scrollIsDown=!1,scrollIsUp=!1,scrollIsLeft=!1,scrollIsRight=!1,window.addEventListener("unload",(function(){return scroll.unload()}))),scroll},enumerable:false,configurable:true});return n}();exports("D",Document);var updateScrollValue=function(){var e=window.pageYOffset,t=window.pageXOffset;scrollIsDown=e>lastPageYOffset,scrollIsUp=e<lastPageYOffset,scrollIsRight=t>lastPageXOffset,scrollIsLeft=t<lastPageXOffset,lastPageYOffset=e||window.pageYOffset,lastPageXOffset=t||window.pageXOffset};var Scroll=function(){function e(){document.addEventListener("scroll",updateScrollValue,{passive:!0})}Object.defineProperty(e.prototype,"down",{get:function(){return scrollIsDown},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"up",{get:function(){return scrollIsUp},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"left",{get:function(){return scrollIsLeft},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"right",{get:function(){return scrollIsRight},enumerable:false,configurable:true});e.prototype.unload=function(){document.removeEventListener("scroll",updateScrollValue),scrollIsDown=!1,scrollIsUp=!1,scrollIsLeft=!1,scrollIsRight=!1,lastPageYOffset=window.pageYOffset,lastPageXOffset=window.pageXOffset,scroll=null};return e}();function encodeBase64(e,n){if(n===void 0){n=!1}if(!t.isString(e))throw new Error("Cannot encode non-string values.");var r=window.btoa(e);return n?r.replace(/=/g,""):r}function decodeBase64(e){if(!t.isString(e))throw new Error("Cannot encode non-string values.");return window.atob(e)}function encodeUtf8(e){if(!t.isString(e))throw new Error("Cannot encode non-string values.");return decodeURIComponent(encodeURIComponent(e))}function decodeUtf8(e){if(!t.isString(e))throw new Error("Cannot decode non-string values.");return decodeURIComponent(encodeURIComponent(e))}var Json=function(){function Json(){}Json.serialize=function(e){if(t.isFunction(e))return;if(!t.exists(e))return e;if(!t.isArray(e)&&!t.isObject(e))return e.toString();var n=t.isArray(e)?"[{0}]":"{{0}}",r=[];return Object.keys(e).forEach((function(n){var o=e[n];if(t.isUndefined(o))return;var i=t.isNumber(o)?o:t.isDate(o)?'"'+d.parse(o).toJson()+'"':t.isString(o)?'"'+serializeString(o)+'"':Json.serialize(o);r[r.length]=(t.isObject(e)&&!t.isArray(e)?'"'+n+'":':"")+i})),a.format(n,r)};Json.deserialize=function(e){return/function|(=$)/i.test(e)?e:Json.deserialize_unsafe(e)};Json.deserialize_unsafe=function(value){try{var result_1=t.isString(value)?eval("("+deserializeString(value)+")"):value;return t.exists(result_1)?t.isNullOrEmpty(result_1.tagName)&&(t.isObject(result_1)||t.isArray(result_1))?(Object.keys(result_1).forEach((function(e){var n=result_1[e];(t.isObject(n)||t.isArray(n))&&(result_1[e]=Json.deserialize(n)),/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/.test(n)&&d.canParse(n)&&(result_1[e]=d.parse(n).toDate())})),result_1):/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/.test(result_1)?d.parse(result_1).toDate():result_1:result_1}catch(e){throw new Error(a.format("Cannot deserialize {0}",value))}};Json.encode=function(e,t){if(t===void 0){t=!1}try{return encodeBase64(Json.serialize(e),t)}catch(t){throw new Error(a.format("Cannot encode {0}",e))}};Json.decode=function(e){try{return Json.deserialize(decodeBase64(e))}catch(t){throw new Error(a.format("Cannot decode {0}",e))}};return Json}();function serializeString(e){return e.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\//g,"/").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t")}function deserializeString(e){return e.replace(/\\\//g,"/").replace(/\\\\f/g,"\\f").replace(/\\\\n/g,"\\n").replace(/\\\\r/g,"\\r").replace(/\\\\t/g,"\\t")}var QueryString=function(){function e(){}e.serialize=function(e){try{var n="";return Object.keys(e).forEach((function(r){var o=e[r],i=t.isDate(o)?d.parse(o).toJson():o;n+=a.format("&{0}={1}",encodeURIComponent(r),encodeURIComponent(Json.serialize(i)))})),n.replace(/^&/,"")}catch(t){throw new Error(a.format("Cannot serialize {0}",e))}};e.deserialize=function(e){if(/\??[^\s"'<>]+=[^\s"'<>]+/.test(e)){var t=e.replace(/.*\?/,"").split("&"),n={};return t.forEach((function(e){var t=e.split("="),r=t[0],o=t[1],i=/^null$|^true$|^false$|^\d+(\.\d+?)?$|^\[.*]$|^{.*}$/.test(o)?o:'"'+o+'"';n[decodeURIComponent(r)]=Json.deserialize(decodeURIComponent(i))})),n}};return e}();var worker=function(e){var t=e.toString(),n=t.indexOf("{")+1,r=t.lastIndexOf("}"),o=/(=>)/.test(t)&&!/{/gm.test(t)?t.replace("=>","=> {")+"}":t.substring(n,r),i=new self.Blob([o],{type:"text/javascript"});return new Worker(URL.createObjectURL(i))},connection=function(){var e=self.indexedDB||self.mozIndexedDB||self.webkitIndexedDB||self.msIndexedDB;function t(t){if(!/^[A-z][A-z0-9]*$/.test(t))throw new Error("Invalid collection name. Must be alphanumeric and begin with an alpha character");return new Promise((function(n,r){try{var o=e.open(t);o.onerror=function(){r(new Error("Error opening IndexedDB."))},o.onupgradeneeded=function(e){e.target.result.createObjectStore(t,{autoIncrement:!1})},o.onsuccess=function(){n(o.result)}}catch(e){r(e)}}))}onmessage=function(e){var n=e.data[0],r=e.data[1],o=e.data[2];try{"read"===n&&function(e){return t(e).then((function(t){return new Promise((function(n,r){var o=t.transaction([e],"readonly").objectStore(e).get(1);o.onsuccess=function(e){t.close(),n(e.target.result)},o.onerror=function(){t.close(),r(o.error)}}))}))}(r).then((function(e){return postMessage([n,r,e])})).catch((function(e){return postMessage(["error",e.message])})),"write"===n&&function(e,n){return t(e).then((function(t){return new Promise((function(r,o){var i=t.transaction([e],"readwrite").objectStore(e).put(n,1);i.onsuccess=function(e){t.close(),r(e.target.result)},i.onerror=function(){t.close(),o(i.error)}}))}))}(r,o).then((function(e){return postMessage([n,r,e])})).catch((function(e){return postMessage(["error",e.message])})),"remove"===n&&function(e){return t(e).then((function(t){return new Promise((function(n,r){var o=t.transaction([e],"readwrite").objectStore(e).delete(1);o.onsuccess=function(e){t.close(),n(e.target.result)},o.onerror=function(){t.close(),r(o.error)}}))}))}(r).then((function(e){return postMessage([n,r,e])})).catch((function(e){return postMessage(["error",e.message])})),"drop"===n&&function(e){return t(e).then((function(t){return t.onversionchange=function(){return t.close()},new Promise((function(t,n){var r=indexedDB.deleteDatabase(e);r.onsuccess=function(){t(!0)},r.onerror=function(){n(r.error)},r.onblocked=function(){n(r.error)}}))}))}(r).then((function(e){return postMessage([n,r,e])})).catch((function(e){return postMessage(["error",e.message])}))}catch(e){postMessage(["error",e.message])}}};var validCollection=/^[A-z]+$/;var connectionThread;var Store=function(){function e(){}Object.defineProperty(e,"connected",{get:function(){return t.exists(connectionThread)},enumerable:false,configurable:true});e.connect=function(){try{return e.connected||(connectionThread=worker(connection)),e}catch(t){throw new Error("Store could not connect.")}};e.disconnect=function(){try{if(e.connected)return connectionThread.terminate(),connectionThread=null,e}catch(t){throw new Error("Store could not be disconnected.")}};e.read=function(e){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(n){return[2,new Promise((function(n,r){if(validCollection.test(e))if(t.exists(connectionThread)){var o=function(t){var i=t.data,a=i[0],u=i[1],s=i[2];"error"===a&&u===e&&(r(new Error(s)),connectionThread.removeEventListener("message",o)),"read"===a&&u===e&&(n(s),connectionThread.removeEventListener("message",o))};connectionThread.addEventListener("message",o),connectionThread.postMessage(["read",e])}else r(new Error("Cannot read disconnected Store."));else r(new Error("Invalid collection name must contain only alpha characters."))}))]}))}))};e.write=function(e,n){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(r){return[2,new Promise((function(r,o){if(validCollection.test(e))if(t.exists(connectionThread)){var i=function(t){var n=t.data,a=n[0],u=n[1],s=n[2];"error"===a&&u===e&&(o(new Error(s)),connectionThread.removeEventListener("message",i)),"write"===a&&u===e&&(r(s),connectionThread.removeEventListener("message",i))};connectionThread.addEventListener("message",i),connectionThread.postMessage(["write",e,n])}else o(Error("Cannot write disconnected Store."));else o(new Error("Invalid collection name must contain only alpha characters."))}))]}))}))};e.remove=function(e){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(n){return[2,new Promise((function(n,r){if(validCollection.test(e))if(t.exists(connectionThread)){var o=function(t){var i=t.data,a=i[0],u=i[1],s=i[2];"error"===a&&u===e&&(r(new Error(s)),connectionThread.removeEventListener("message",o)),"remove"===a&&u===e&&(n(s),connectionThread.removeEventListener("message",o))};connectionThread.addEventListener("message",o),connectionThread.postMessage(["remove",e])}else r(Error("Cannot write disconnected Store."));else r(new Error("Invalid collection name must contain only alpha characters."))}))]}))}))};e.delete=function(e){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(n){return[2,new Promise((function(n,r){if(!t.isNullOrEmpty(e)&&validCollection.test(e))if(t.exists(connectionThread)){var o=function(t){var i=t.data,a=i[0],u=i[1],s=i[2];"error"===a&&u===e&&(r(new Error(s)),connectionThread.removeEventListener("message",o)),"drop"===a&&u===e&&(n(s),connectionThread.removeEventListener("message",o))};connectionThread.addEventListener("message",o),connectionThread.postMessage(["drop",e])}else r(Error("Cannot drop disconnected Store."));else r(new Error("Invalid collection name must contain only alpha characters."))}))]}))}))};e.save=function(){return __awaiter(this,void 0,void 0,(function(){var e;return __generator(this,(function(t){switch(t.label){case 0:t.trys.push([0,2,,3]);return[4,navigator.storage.persist()];case 1:return[2,t.sent()];case 2:e=t.sent();return[2,!1];case 3:return[2]}}))}))};e.estimate=function(){return __awaiter(this,void 0,void 0,(function(){var e,t,n,r,o,i,a;return __generator(this,(function(u){switch(u.label){case 0:u.trys.push([0,2,,3]);e=navigator.storage||navigator.webkitPersistentStorage;return[4,e.estimate()];case 1:t=u.sent()||{},n=t.quota,r=n===void 0?NaN:n,o=t.usage,i=o===void 0?NaN:o;return[2,{quota:r,usage:i,free:N.roundUp((r-i)/r*100,-4)+"%",used:N.roundUp(i/r*100,-4)+"%"}];case 2:a=u.sent();return[2,{}];case 3:return[2]}}))}))};e.saved=function(){return __awaiter(this,void 0,void 0,(function(){var e;return __generator(this,(function(t){switch(t.label){case 0:t.trys.push([0,2,,3]);return[4,navigator.storage.persisted()];case 1:return[2,t.sent()];case 2:e=t.sent();return[2,!1];case 3:return[2]}}))}))};return e}();var Dto=function(){function e(e,n){if(e===void 0){e={}}if(!t.isArray(e)&&!t.isObject(e))throw new TypeError("Dto value must be Array or object literal");this._value=e,this._name=n}Object.defineProperty(e.prototype,"value",{get:function(){return t.isArray(this._value)?__spreadArray([],this._value):__assign({},this._value)},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"name",{get:function(){return this._name},set:function(e){this._name=e},enumerable:false,configurable:true});e.prototype.read=function(e){return t.exists(e)?!t.isArray(this._value)||t.isNumber(e)?this._value[e]:void 0:this.value};e.prototype.remove=function(e){return t.isString(e)&&t.exists(e)&&delete this._value[e],t.isFunction(e)&&this._value.splice(this._value.findIndex(e),1),this};e.prototype.write=function(e,n){return t.isNullOrEmpty(e)||(t.isArray(this._value)?(t.isUndefined(n)&&this._value.push(e),t.isNumber(e)&&(this._value[e]=n)):this._value[e]=n),this};e.prototype.update=function(e){var n=Object.assign(this.value,e);return this._value=t.isArray(this._value)?Object.values(n):n,this};e.prototype.clear=function(){return this._value=t.isArray(this._value)?[]:{},this};e.prototype.save=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(e){switch(e.label){case 0:Store.connect();return[4,Store.write(this.name,this.encode(!0,!0))];case 1:e.sent();return[4,Store.save()];case 2:return[2,e.sent()]}}))}))};e.prototype.saveAs=function(e){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(t){switch(t.label){case 0:this.name=e,Store.connect();return[4,Store.delete(this.name)];case 1:return[2,(t.sent(),this.save())]}}))}))};e.prototype.delete=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(e){switch(e.label){case 0:Store.connect();return[4,Store.delete(this.name)];case 1:return[2,(e.sent(),this)]}}))}))};e.prototype.encode=function(e,t){if(e===void 0){e=!1}if(t===void 0){t=!1}var n=Json.serialize(this._value);return encodeBase64(t?encodeURIComponent(n):n,e)};e.decode=function(t,n){var r=decodeBase64(t),o=decodeURIComponent(r);return new e(Json.deserialize(o),n)};e.prototype.toFormData=function(){var e=this.value,t=new window.FormData;return Object.keys(e).forEach((function(n){return t.append(n,e[n])})),t};e.prototype.toJson=function(){return Json.serialize(this._value)};e.prototype.toQueryString=function(){return QueryString.serialize(this._value)};e.parseFormData=function(t){var n={};for(var r=0,o=t.entries();r<o.length;r++){var i=o[r],a=i[0],u=i[1];n[a]=u}return new e(n)};e.parseJson=function(t){return new e(Json.deserialize(t))};e.parseJwt=function(n){try{var r=n.split("."),o=r[1];return new e(JSON.parse(window.atob(o)))}catch(t){throw new SyntaxError("Cannot parseJwt: "+n)}};e.parseQueryString=function(t){return new e(QueryString.deserialize(t))};e.load=function(t){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(n){return[2,(Store.connect(),Store.read(t).then((function(r){try{return e.decode(r,t)}catch(n){return}})).catch((function(){})))]}))}))};return e}();var Event=function(){function e(){}e.mute=function(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)};return e}();exports("E",Event);var readData=function(e){return new window.FormData(e)},read=function(e){var n={};try{readData(e).forEach((function(e,r){var o=n[r];t.isArray(o)?n[r].push(e):t.exists(o)?n[r]=[n[r],e]:n[r]=e}))}catch(t){__spreadArray([],e.elements).forEach((function(e){var t=e.name,r=e.type,o=e.value,i=e.files;if("file"===r)n[t]=i[0];else if("checkbox"===r||"radio"===r)e.checked&&(n[t]=o);else if(e.multiple){var a=[];e.querySelectorAll("option").forEach((function(e){return e.selected&&a.push(e.value)})),n[t]=a.length<2?a[0]:a}else n[t]=o}))}return n},readJson=function(e){return JSON.stringify(read(e))},write=function(e,n){__spreadArray([],e.elements).forEach((function(e){/^select$/i.test(e.nodeName)?t.isArray(n[e.name])?__spreadArray([],e.options).forEach((function(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])}))};var index=exports("i",{read:read,readData:readData,readJson:readJson,write:write});var Key=function(){function e(e,t,n){if(n===void 0){n={}}this.key=e,this.msKey=t||e,this.altKey=n.altKey||!1,this.ctrlKey=n.ctrlKey||!1,this.metaKey=n.metaKey||!1,this.shiftKey=n.shiftKey||!1}Object.defineProperty(e.prototype,"alt",{get:function(){var t=this,n=t.key,r=t.msKey,o=t.ctrlKey,i=t.metaKey,a=t.shiftKey;return new e(n,r,{altKey:!0,ctrlKey:o,metaKey:i,shiftKey:a})},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"ctrl",{get:function(){var t=this,n=t.key,r=t.msKey,o=t.altKey,i=t.metaKey,a=t.shiftKey;return new e(n,r,{altKey:o,ctrlKey:!0,metaKey:i,shiftKey:a})},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"meta",{get:function(){var t=this,n=t.key,r=t.msKey,o=t.altKey,i=t.ctrlKey,a=t.shiftKey;return new e(n,r,{altKey:o,ctrlKey:i,metaKey:!0,shiftKey:a})},enumerable:false,configurable:true});Object.defineProperty(e.prototype,"shift",{get:function(){var t=this,n=t.key,r=t.msKey,o=t.altKey,i=t.ctrlKey,a=t.metaKey;return new e(n,r,{altKey:o,ctrlKey:i,metaKey:a,shiftKey:!0})},enumerable:false,configurable:true});e.prototype.equals=function(t){return t instanceof e&&this.altKey===t.altKey&&this.ctrlKey===t.ctrlKey&&this.metaKey===t.metaKey&&this.shiftKey===t.shiftKey&&(this.key===t.key||this.msKey===t.msKey)};e.prototype.didFire=function(t){var n=t.code,r=t.key,o=t.altKey,i=t.ctrlKey,a=t.metaKey,u=t.shiftKey,s="Dead"===r?n:r;return t&&("ANY"===this.key||this.equals(new e(s,s,{altKey:o,ctrlKey:i,metaKey:a,shiftKey:u})))};Object.defineProperty(e,"press",{get:function(){return"keypress"},enumerable:false,configurable:true});Object.defineProperty(e,"down",{get:function(){return"keydown"},enumerable:false,configurable:true});Object.defineProperty(e,"up",{get:function(){return"keyup"},enumerable:false,configurable:true});Object.defineProperty(e,"any",{get:function(){return new e("ANY")},enumerable:false,configurable:true});Object.defineProperty(e,"esc",{get:function(){return new e("Escape","Esc")},enumerable:false,configurable:true});Object.defineProperty(e,"enter",{get:function(){return new e("Enter")},enumerable:false,configurable:true});Object.defineProperty(e,"space",{get:function(){return new e(" ","Spacebar")},enumerable:false,configurable:true});Object.defineProperty(e,"tab",{get:function(){return new e("Tab")},enumerable:false,configurable:true});Object.defineProperty(e,"left",{get:function(){return new e("ArrowLeft","Left")},enumerable:false,configurable:true});Object.defineProperty(e,"right",{get:function(){return new e("ArrowRight","Right")},enumerable:false,configurable:true});return e}();exports("K",Key);var Keyboard=function(){function e(){}e.on=function(e,t,n,r){var o=function(e){return t.didFire(e)?n(e,t):null};return window.addEventListener(e,o,r),{unsubscribe:function(){window.removeEventListener(e,o)}}};e.onKeyPress=function(t,n,r){return e.on(Key.press,t,n,r)};e.onKeyDown=function(t,n,r){return e.on(Key.down,t,n,r)};e.onKeyUp=function(t,n,r){return e.on(Key.up,t,n,r)};return e}();var Swipe=function(){function e(e,t){if(t===void 0){t=0}this.didTouchStart=this.didTouchStart.bind(this),this.didTouchEnd=this.didTouchEnd.bind(this),this.didTouchMove=this.didTouchMove.bind(this),e.addEventListener("touchstart",this.didTouchStart,{capture:!1,passive:!0}),e.addEventListener("touchend",this.didTouchEnd,{capture:!1,passive:!0}),e.addEventListener("touchmove",this.didTouchMove,{capture:!1,passive:!0}),this.element=e,this.tolerance=t,this.didSwipeLeft=function(){},this.didSwipeRight=function(){},this.didMove=function(){}}e.prototype.onLeft=function(e){return this.didSwipeLeft=e,this};e.prototype.onRight=function(e){return this.didSwipeRight=e,this};e.prototype.onMove=function(e){return this.didMove=e,this};e.prototype.destroy=function(){var e=this.element;return e.removeEventListener("touchstart",this.didTouchStart,!1),e.removeEventListener("touchend",this.didTouchEnd,!1),e.removeEventListener("touchmove",this.didTouchMove,!1),this};e.prototype.didTouchStart=function(e){var t=e.touches[0];this.touchStartPoint=new O(t.pageX,t.pageY)};e.prototype.didTouchEnd=function(e){var t=e.changedTouches[0],n=this.touchStartPoint,r=new O(t.pageX,t.pageY);r.isLeftOf(n)&&Math.abs(r.distanceFrom(n).x)>this.tolerance&&this.didSwipeLeft(e),r.isRightOf(n)&&Math.abs(r.distanceFrom(n).x)>this.tolerance&&this.didSwipeRight(e)};e.prototype.didTouchMove=function(e){var t=e.touches[0],n=this.touchStartPoint,r=new O(t.pageX,t.pageY);this.didMove({distance:r.distanceFrom(n),up:r.isAbove(n),down:r.isBelow(n),left:r.isLeftOf(n),right:r.isRightOf(n)})};return e}();exports("S",Swipe)}}}));
@@ -0,0 +1 @@
1
+
@@ -0,0 +1 @@
1
+ System.register([],(function(){"use strict";return{execute:function(){}}}));
@@ -0,0 +1,83 @@
1
+ import { r as registerInstance, h, g as getElement } from './index-80439f22.js';
2
+ import { t } from './index-89916128.js';
3
+
4
+ const ku4CarouselControlsCss = ":host{position:relative;display:block}input[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;width:20px;height:20px;margin:0;padding:0;border:solid 1px #888;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:middle}input[type=radio]:checked:after{content:\"\";position:absolute;top:2px;left:2px;width:14px;height:14px;margin:0;padding:0;border:solid 1px #888;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;background-color:#333}";
5
+
6
+ let Ku4CarouselControls = class {
7
+ constructor(hostRef) {
8
+ registerInstance(this, hostRef);
9
+ this.carousel = document.getElementById(this.for);
10
+ this.handleSlide = this.handleSlide.bind(this);
11
+ this.handleChange = this.handleChange.bind(this);
12
+ }
13
+ get controls() {
14
+ return [].slice.call(this.host.children);
15
+ }
16
+ handleSlide(e) {
17
+ this.controls.forEach((control) => {
18
+ control.removeAttribute('current');
19
+ control.checked = false;
20
+ });
21
+ try {
22
+ const current = this.controls[e.detail - 1];
23
+ current.setAttribute('current', e.detail);
24
+ current.checked = true;
25
+ }
26
+ catch (e) {
27
+ /* Fail silently */
28
+ }
29
+ }
30
+ async handleChange(e) {
31
+ const { carousel, controls } = this;
32
+ const n = parseInt(e.target.getAttribute('slide'));
33
+ const slide = isNaN(n) ? controls.indexOf(e.target) + 1 : n;
34
+ await carousel.slideTo(slide);
35
+ try {
36
+ e.target.setAttribute('current', slide);
37
+ }
38
+ catch (e) {
39
+ /* Fail silently */
40
+ }
41
+ }
42
+ componentWillLoad() {
43
+ const { carousel, controls } = this;
44
+ try {
45
+ carousel.addEventListener('slide', this.handleSlide);
46
+ controls.forEach((control, i) => {
47
+ if (i === 0) {
48
+ control.setAttribute('current', i + 1);
49
+ }
50
+ if (control.nodeName === 'INPUT') {
51
+ control.addEventListener('change', this.handleChange);
52
+ }
53
+ else {
54
+ control.addEventListener('keyup', this.handleChange);
55
+ control.addEventListener('mouseup', this.handleChange);
56
+ control.addEventListener('touchstart', this.handleChange);
57
+ }
58
+ });
59
+ }
60
+ catch (e) {
61
+ if (!t.exists(carousel)) {
62
+ throw new ReferenceError('ku4-carousel-controls must connect to a ku4-carousel.');
63
+ }
64
+ }
65
+ }
66
+ disconnectedCallback() {
67
+ const { carousel, controls } = this;
68
+ carousel.removeEventListener('slide', this.handleSlide);
69
+ controls.forEach((control) => {
70
+ control.removeEventListener('change', this.handleChange);
71
+ control.removeEventListener('keyup', this.handleChange);
72
+ control.removeEventListener('mouseup', this.handleChange);
73
+ control.removeEventListener('touchstart', this.handleChange);
74
+ });
75
+ }
76
+ render() {
77
+ return h("slot", null);
78
+ }
79
+ get host() { return getElement(this); }
80
+ };
81
+ Ku4CarouselControls.style = ku4CarouselControlsCss;
82
+
83
+ export { Ku4CarouselControls as ku4_carousel_controls };
@@ -0,0 +1 @@
1
+ var __awaiter=this&&this.__awaiter||function(e,t,n,r){function o(e){return e instanceof n?e:new n((function(t){t(e)}))}return new(n||(n=Promise))((function(n,i){function a(e){try{c(r.next(e))}catch(t){i(t)}}function s(e){try{c(r["throw"](e))}catch(t){i(t)}}function c(e){e.done?n(e.value):o(e.value).then(a,s)}c((r=r.apply(e,t||[])).next())}))};var __generator=this&&this.__generator||function(e,t){var n={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},r,o,i,a;return a={next:s(0),throw:s(1),return:s(2)},typeof Symbol==="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(e){return function(t){return c([e,t])}}function c(a){if(r)throw new TypeError("Generator is already executing.");while(n)try{if(r=1,o&&(i=a[0]&2?o["return"]:a[0]?o["throw"]||((i=o["return"])&&i.call(o),0):o.next)&&!(i=i.call(o,a[1])).done)return i;if(o=0,i)a=[a[0]&2,i.value];switch(a[0]){case 0:case 1:i=a;break;case 4:n.label++;return{value:a[1],done:false};case 5:n.label++;o=a[1];a=[0];continue;case 7:a=n.ops.pop();n.trys.pop();continue;default:if(!(i=n.trys,i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){n=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){n.label=a[1];break}if(a[0]===6&&n.label<i[1]){n.label=i[1];i=a;break}if(i&&n.label<i[2]){n.label=i[2];n.ops.push(a);break}if(i[2])n.ops.pop();n.trys.pop();continue}a=t.call(e,n)}catch(s){a=[6,s];o=0}finally{r=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:true}}};System.register(["./index-79de9846.system.js","./index-3127d7f7.system.js"],(function(e){"use strict";var t,n,r,o;return{setters:[function(e){t=e.r;n=e.h;r=e.g},function(e){o=e.t}],execute:function(){var i=':host{position:relative;display:block}input[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;width:20px;height:20px;margin:0;padding:0;border:solid 1px #888;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:middle}input[type=radio]:checked:after{content:"";position:absolute;top:2px;left:2px;width:14px;height:14px;margin:0;padding:0;border:solid 1px #888;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;background-color:#333}';var a=e("ku4_carousel_controls",function(){function e(e){t(this,e);this.carousel=document.getElementById(this.for);this.handleSlide=this.handleSlide.bind(this);this.handleChange=this.handleChange.bind(this)}Object.defineProperty(e.prototype,"controls",{get:function(){return[].slice.call(this.host.children)},enumerable:false,configurable:true});e.prototype.handleSlide=function(e){this.controls.forEach((function(e){e.removeAttribute("current");e.checked=false}));try{var t=this.controls[e.detail-1];t.setAttribute("current",e.detail);t.checked=true}catch(e){}};e.prototype.handleChange=function(e){return __awaiter(this,void 0,void 0,(function(){var t,n,r,o,i;return __generator(this,(function(a){switch(a.label){case 0:t=this,n=t.carousel,r=t.controls;o=parseInt(e.target.getAttribute("slide"));i=isNaN(o)?r.indexOf(e.target)+1:o;return[4,n.slideTo(i)];case 1:a.sent();try{e.target.setAttribute("current",i)}catch(e){}return[2]}}))}))};e.prototype.componentWillLoad=function(){var e=this;var t=this,n=t.carousel,r=t.controls;try{n.addEventListener("slide",this.handleSlide);r.forEach((function(t,n){if(n===0){t.setAttribute("current",n+1)}if(t.nodeName==="INPUT"){t.addEventListener("change",e.handleChange)}else{t.addEventListener("keyup",e.handleChange);t.addEventListener("mouseup",e.handleChange);t.addEventListener("touchstart",e.handleChange)}}))}catch(i){if(!o.exists(n)){throw new ReferenceError("ku4-carousel-controls must connect to a ku4-carousel.")}}};e.prototype.disconnectedCallback=function(){var e=this;var t=this,n=t.carousel,r=t.controls;n.removeEventListener("slide",this.handleSlide);r.forEach((function(t){t.removeEventListener("change",e.handleChange);t.removeEventListener("keyup",e.handleChange);t.removeEventListener("mouseup",e.handleChange);t.removeEventListener("touchstart",e.handleChange)}))};e.prototype.render=function(){return n("slot",null)};Object.defineProperty(e.prototype,"host",{get:function(){return r(this)},enumerable:false,configurable:true});return e}());a.style=i}}}));
@@ -0,0 +1,47 @@
1
+ import { r as registerInstance, h, f as Host } from './index-80439f22.js';
2
+
3
+ const ku4CarouselSlideCss = ":host{overflow-x:hidden}";
4
+
5
+ let Ku4CarouselSlide = class {
6
+ constructor(hostRef) {
7
+ registerInstance(this, hostRef);
8
+ this.classList = '';
9
+ }
10
+ /**
11
+ * Move this slide in to view.
12
+ * @param {string} direction - Direction to move.
13
+ */
14
+ async slideIn(direction) {
15
+ this.active = true;
16
+ this.classList = `active ${direction}`;
17
+ }
18
+ /**
19
+ * Move this slide out of view.
20
+ * @param {string} direction - Direction to move.
21
+ */
22
+ async slideOut(direction) {
23
+ this.active = false;
24
+ this.classList = `inactive ${direction}`;
25
+ }
26
+ /**
27
+ * Set this slide to active.
28
+ */
29
+ async activate() {
30
+ this.active = true;
31
+ this.classList = 'active';
32
+ }
33
+ /**
34
+ * Set this slide to inactive.
35
+ */
36
+ async deactivate() {
37
+ this.active = false;
38
+ this.classList = '';
39
+ }
40
+ render() {
41
+ const { active, classList } = this;
42
+ return (h(Host, { class: `${classList}`, "aria-hidden": active ? 'false' : 'true', "aria-roledescription": "slide" }, h("slot", null)));
43
+ }
44
+ };
45
+ Ku4CarouselSlide.style = ku4CarouselSlideCss;
46
+
47
+ export { Ku4CarouselSlide as ku4_carousel_slide };
@@ -0,0 +1 @@
1
+ var __awaiter=this&&this.__awaiter||function(t,e,n,r){function i(t){return t instanceof n?t:new n((function(e){e(t)}))}return new(n||(n=Promise))((function(n,o){function a(t){try{u(r.next(t))}catch(e){o(e)}}function s(t){try{u(r["throw"](t))}catch(e){o(e)}}function u(t){t.done?n(t.value):i(t.value).then(a,s)}u((r=r.apply(t,e||[])).next())}))};var __generator=this&&this.__generator||function(t,e){var n={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,i,o,a;return a={next:s(0),throw:s(1),return:s(2)},typeof Symbol==="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(t){return function(e){return u([t,e])}}function u(a){if(r)throw new TypeError("Generator is already executing.");while(n)try{if(r=1,i&&(o=a[0]&2?i["return"]:a[0]?i["throw"]||((o=i["return"])&&o.call(i),0):i.next)&&!(o=o.call(i,a[1])).done)return o;if(i=0,o)a=[a[0]&2,o.value];switch(a[0]){case 0:case 1:o=a;break;case 4:n.label++;return{value:a[1],done:false};case 5:n.label++;i=a[1];a=[0];continue;case 7:a=n.ops.pop();n.trys.pop();continue;default:if(!(o=n.trys,o=o.length>0&&o[o.length-1])&&(a[0]===6||a[0]===2)){n=0;continue}if(a[0]===3&&(!o||a[1]>o[0]&&a[1]<o[3])){n.label=a[1];break}if(a[0]===6&&n.label<o[1]){n.label=o[1];o=a;break}if(o&&n.label<o[2]){n.label=o[2];n.ops.push(a);break}if(o[2])n.ops.pop();n.trys.pop();continue}a=e.call(t,n)}catch(s){a=[6,s];i=0}finally{r=o=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:true}}};System.register(["./index-79de9846.system.js"],(function(t){"use strict";var e,n,r;return{setters:[function(t){e=t.r;n=t.h;r=t.f}],execute:function(){var i=":host{overflow-x:hidden}";var o=t("ku4_carousel_slide",function(){function t(t){e(this,t);this.classList=""}t.prototype.slideIn=function(t){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(e){this.active=true;this.classList="active "+t;return[2]}))}))};t.prototype.slideOut=function(t){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(e){this.active=false;this.classList="inactive "+t;return[2]}))}))};t.prototype.activate=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(t){this.active=true;this.classList="active";return[2]}))}))};t.prototype.deactivate=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(t){this.active=false;this.classList="";return[2]}))}))};t.prototype.render=function(){var t=this,e=t.active,i=t.classList;return n(r,{class:""+i,"aria-hidden":e?"false":"true","aria-roledescription":"slide"},n("slot",null))};return t}());o.style=i}}}));
@@ -0,0 +1,166 @@
1
+ import { r as registerInstance, e as createEvent, h, f as Host, g as getElement } from './index-80439f22.js';
2
+ import { L, Y, c } from './index-89916128.js';
3
+ import { S as Swipe } from './index-40000e6d.js';
4
+
5
+ const ku4CarouselCss = "@-webkit-keyframes ku4-carousel-enter-left{0%{top:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0}100%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}}@keyframes ku4-carousel-enter-left{0%{top:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0}100%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}}@-webkit-keyframes ku4-carousel-enter-right{0%{top:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0}100%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}}@keyframes ku4-carousel-enter-right{0%{top:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0}100%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}}@-webkit-keyframes ku4-carousel-exit-left{0%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}100%{top:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0}}@keyframes ku4-carousel-exit-left{0%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}100%{top:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0}}@-webkit-keyframes ku4-carousel-exit-right{0%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}100%{top:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0}}@keyframes ku4-carousel-exit-right{0%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}100%{top:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0}}:host{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;overflow:hidden;background-color:var(--ku4-carousel-background-color, #fff)}.slide-container{position:relative;width:100%;height:100%;overflow:hidden}.controls .next,.controls .prev{position:absolute;display:var(--ku4-carousel-controls-display, block);top:var(--ku4-carousel-controls-top, 0);border:var(--ku4-carousel-controls-border, none);background-color:var(--ku4-carousel-controls-background-color, #fff);font-family:var(--ku4-carousel-controls-font-family, Helvetica, Arial, sans-serif);font-weight:var(--ku4-carousel-controls-font-weight, 400);font-size:var(--ku4-carousel-controls-font-size, 8px);line-height:var(--ku4-carousel-controls-line-height, 12px);opacity:var(--ku4-carousel-controls-opacity, 0.2);z-index:var(--ku4-carousel-controls-z-index, 2)}.controls .next:focus,.controls .prev:focus{background-color:var(--ku4-carousel-controls-focus-background-color, transparent);outline:var(--ku4-carousel-controls-focus-outline, none);opacity:var(--ku4-carousel-controls-focus-opacity, 0.2)}.controls .next:hover,.controls .prev:hover{background-color:var(--ku4-carousel-controls-hover-background-color, transparent);opacity:var(--ku4-carousel-controls-hover-opacity, 1)}.controls .next{right:0;width:var(--ku4-carousel-controls-next-width, 40px);height:var(--ku4-carousel-controls-next-height, 100%);background-image:var(--ku4-carousel-controls-next-background-image);background-repeat:var(--ku4-carousel-controls-next-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-next-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-next-background-position-y, 50%);background-size:var(--ku4-carousel-controls-next-background-size, 100% 100%)}.controls .next:focus{background-image:var(--ku4-carousel-controls-next-focus-background-image);background-repeat:var(--ku4-carousel-controls-next-focus-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-next-focus-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-next-focus-background-position-y, 50%);background-size:var(--ku4-carousel-controls-next-focus-background-size, 100% 100%)}.controls .next:hover{background-image:var(--ku4-carousel-controls-next-hover-background-image);background-repeat:var(--ku4-carousel-controls-next-hover-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-next-hover-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-next-hover-background-position-y, 50%);background-size:var(--ku4-carousel-controls-next-hover-background-size, 100% 100%)}.controls .prev{left:0;width:var(--ku4-carousel-controls-next-width, 40px);height:var(--ku4-carousel-controls-next-height, 100%);background-image:var(--ku4-carousel-controls-previous-background-image);background-repeat:var(--ku4-carousel-controls-previous-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-previous-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-previous-background-position-y, 50%);background-size:var(--ku4-carousel-controls-previous-background-size, 100% 100%)}.controls .prev:focus{background-image:var(--ku4-carousel-controls-previous-focus-background-image);background-repeat:var(--ku4-carousel-controls-previous-focus-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-previous-focus-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-previous-focus-background-position-y, 50%);background-size:var(--ku4-carousel-controls-previous-focus-background-size, 100% 100%)}.controls .prev:hover{background-image:var(--ku4-carousel-controls-previous-hover-background-image);background-repeat:var(--ku4-carousel-controls-previous-hover-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-previous-hover-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-previous-hover-background-position-y, 50%);background-size:var(--ku4-carousel-controls-previous-hover-background-size, 100% 100%)}.pages{position:absolute;display:var(--ku4-carousel-pages-display, block);top:var(--ku4-carousel-pages-top, auto);bottom:var(--ku4-carousel-pages-bottom, 4px);width:var(--ku4-carousel-pages-width, auto);height:var(--ku4-carousel-pages-height, 20px);background-color:var(--ku4-carousel-pages-background-color, transparent);opacity:var(--ku4-carousel-pages-opacity, 0.5);text-align:center;z-index:3}.pages-text{display:inline-block;padding:var(--ku4-carousel-pages-text-padding, 4px);font-family:var(--ku4-carousel-pages-text-font-family, Helvetica, Arial, sans-serif);font-weight:var(--ku4-carousel-pages-text-font-weight, 600);font-size:var(--ku4-carousel-pages-text-font-size, 14px);line-height:var(--ku4-carousel-pages-text-line-height, 16px);color:var(--ku4-carousel-pages-text-color, #aaa)}::slotted(*){position:absolute;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;top:0;left:-100%;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}::slotted(.inactive){position:absolute;height:100%;left:0}::slotted(.inactive.prev){-webkit-animation-name:var(--ku4-carousel-animation-inactive-previous-name, ku4-carousel-exit-right);animation-name:var(--ku4-carousel-animation-inactive-previous-name, ku4-carousel-exit-right);-webkit-animation-duration:var(--ku4-carousel-animation-duration, 0.4s);animation-duration:var(--ku4-carousel-animation-duration, 0.4s);-webkit-animation-timing-function:var(--ku4-carousel-animation-timing-function);animation-timing-function:var(--ku4-carousel-animation-timing-function);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}::slotted(.inactive.next){-webkit-animation-name:var(--ku4-carousel-animation-inactive-next-name, ku4-carousel-exit-left);animation-name:var(--ku4-carousel-animation-inactive-next-name, ku4-carousel-exit-left);-webkit-animation-duration:var(--ku4-carousel-animation-duration, 0.4s);animation-duration:var(--ku4-carousel-animation-duration, 0.4s);-webkit-animation-timing-function:var(--ku4-carousel-animation-timing-function);animation-timing-function:var(--ku4-carousel-animation-timing-function);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}::slotted(.active){position:relative;top:0;left:0;width:auto;height:100%;z-index:1}::slotted(.active.prev){-webkit-animation-name:var(--ku4-carousel-animation-active-previous-name, ku4-carousel-enter-left);animation-name:var(--ku4-carousel-animation-active-previous-name, ku4-carousel-enter-left);-webkit-animation-duration:var(--ku4-carousel-animation-duration, 0.4s);animation-duration:var(--ku4-carousel-animation-duration, 0.4s);-webkit-animation-timing-function:var(--ku4-carousel-animation-timing-function, ease);animation-timing-function:var(--ku4-carousel-animation-timing-function, ease);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}::slotted(.active.next){-webkit-animation-name:var(--ku4-carousel-animation-active-next-name, ku4-carousel-enter-right);animation-name:var(--ku4-carousel-animation-active-next-name, ku4-carousel-enter-right);-webkit-animation-duration:var(--ku4-carousel-animation-duration, 0.4s);animation-duration:var(--ku4-carousel-animation-duration, 0.4s);-webkit-animation-timing-function:var(--ku4-carousel-animation-timing-function, ease);animation-timing-function:var(--ku4-carousel-animation-timing-function, ease);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@media (hover: hover){.controls:hover{background-color:var(--ku4-carousel-controls-focus-background-color, #fff)}}";
6
+
7
+ let Ku4Carousel = class {
8
+ constructor(hostRef) {
9
+ registerInstance(this, hostRef);
10
+ this.didSlide = createEvent(this, "slide", 7);
11
+ /**
12
+ * Sets the distance, in pixels, a touch must travel
13
+ * before activating a swipe.
14
+ */
15
+ this.swipeTolerance = 44;
16
+ /**
17
+ * Will start this carousel in auto scroll mode
18
+ */
19
+ this.auto = false;
20
+ /**
21
+ * Prevents touch swiping
22
+ */
23
+ this.noSwipe = false;
24
+ /**
25
+ * Delay in millisecond between slide changes
26
+ * when running in auto
27
+ */
28
+ this.delay = 8000;
29
+ this.interval = new L(this.delay).onInterval(() => {
30
+ if (this.host.isConnected) {
31
+ this.display('next');
32
+ }
33
+ else {
34
+ this.disconnectedCallback();
35
+ }
36
+ });
37
+ this.handleMouse = this.handleMouse.bind(this);
38
+ }
39
+ /**
40
+ * Display the next ku4-carousel-slide
41
+ */
42
+ async next() {
43
+ if (!this.hasSlides) {
44
+ return this;
45
+ }
46
+ await this.pause();
47
+ return this.display('next');
48
+ }
49
+ /**
50
+ * Display the previous ku4-carousel-slide
51
+ */
52
+ async previous() {
53
+ if (!this.hasSlides) {
54
+ return this;
55
+ }
56
+ await this.pause();
57
+ return this.display('prev');
58
+ }
59
+ /**
60
+ * Slide to the slide number specified.
61
+ * @param {number} number - Slide number to slide to.
62
+ */
63
+ async slideTo(number) {
64
+ await this.pause();
65
+ if (!(number === this.currentSlideNumber || number < 1 || this.rolodex.length < number)) {
66
+ const move = number - this.currentSlideNumber;
67
+ const slide = move < 0 ? 'prev' : 'next';
68
+ let count = Math.abs(move);
69
+ while (0 < --count) {
70
+ await Y(10).then(() => this.rolodex[slide]);
71
+ }
72
+ this.display(slide);
73
+ }
74
+ }
75
+ /**
76
+ * Pause auto slide change
77
+ */
78
+ async pause() {
79
+ this.interval.clear();
80
+ }
81
+ /**
82
+ * Start auto slide change
83
+ */
84
+ async play() {
85
+ const { auto, interval } = this;
86
+ auto && interval.start();
87
+ }
88
+ get hasSlides() {
89
+ return this.rolodex && (this.rolodex.length > 1);
90
+ }
91
+ get currentSlideNumber() {
92
+ const { rolodex } = this;
93
+ return rolodex && (rolodex.isEmpty ? 0 : rolodex.index + 1);
94
+ }
95
+ display(slide) {
96
+ const { previous, current } = this.slideState;
97
+ const next = this.rolodex[slide];
98
+ if (previous) {
99
+ previous.deactivate();
100
+ }
101
+ current.slideOut(slide);
102
+ next.slideIn(slide);
103
+ this.slideState = {
104
+ previous: current,
105
+ current: next,
106
+ };
107
+ this.didSlide.emit(this.currentSlideNumber);
108
+ return this;
109
+ }
110
+ handleMouse(e) {
111
+ if (!this.host.contains(e.relatedTarget)) {
112
+ this.play();
113
+ }
114
+ }
115
+ componentWillLoad() {
116
+ if (!this.noSwipe) {
117
+ this.swipe = new Swipe(this.host, this.swipeTolerance)
118
+ .onLeft(() => this.next())
119
+ .onRight(() => this.previous());
120
+ }
121
+ let slides;
122
+ try {
123
+ slides = this.host.querySelectorAll(':scope > ku4-carousel-slide');
124
+ }
125
+ catch (e) {
126
+ slides = [].slice.call(this.host.querySelectorAll('ku4-carousel-slide'))
127
+ .reduce((acc, item) => {
128
+ if (item.parentNode === this.host) {
129
+ acc.push(item);
130
+ }
131
+ return acc;
132
+ }, []);
133
+ }
134
+ this.rolodex = new c(slides);
135
+ (this.rolodex.current &&
136
+ this.rolodex.current.activate) &&
137
+ this.rolodex.current.activate();
138
+ this.slideState = { current: this.rolodex.current };
139
+ if (this.auto) {
140
+ this.host.addEventListener('mouseout', this.handleMouse);
141
+ this.play();
142
+ }
143
+ }
144
+ connectedCallback() {
145
+ if (this.swipe) {
146
+ this.swipe.destroy();
147
+ }
148
+ this.host.removeEventListener('mouseout', this.handleMouse);
149
+ this.interval.clear();
150
+ }
151
+ disconnectedCallback() {
152
+ if (this.swipe) {
153
+ this.swipe.destroy();
154
+ }
155
+ this.host.removeEventListener('mouseout', this.handleMouse);
156
+ this.interval.clear();
157
+ }
158
+ render() {
159
+ const { hasSlides, currentSlideNumber = 1 } = this;
160
+ return (h(Host, { "aria-roledescription": "carousel", current: currentSlideNumber }, hasSlides && (h("section", { class: "controls" }, h("button", { type: "button", class: "prev", onClick: () => this.previous(), "aria-label": "previous slide" }), h("button", { type: "button", class: "next", onClick: () => this.next(), "aria-label": "next slide" }))), h("section", { class: "slide-container", "aria-live": "polite" }, h("slot", null)), hasSlides && (h("section", { class: "pages" }, h("span", { class: "pages-text" }, `${currentSlideNumber} of ${this.rolodex.length}`)))));
161
+ }
162
+ get host() { return getElement(this); }
163
+ };
164
+ Ku4Carousel.style = ku4CarouselCss;
165
+
166
+ export { Ku4Carousel as ku4_carousel };
@@ -0,0 +1 @@
1
+ var __awaiter=this&&this.__awaiter||function(t,o,e,r){function a(t){return t instanceof e?t:new e((function(o){o(t)}))}return new(e||(e=Promise))((function(e,n){function i(t){try{u(r.next(t))}catch(o){n(o)}}function s(t){try{u(r["throw"](t))}catch(o){n(o)}}function u(t){t.done?e(t.value):a(t.value).then(i,s)}u((r=r.apply(t,o||[])).next())}))};var __generator=this&&this.__generator||function(t,o){var e={label:0,sent:function(){if(n[0]&1)throw n[1];return n[1]},trys:[],ops:[]},r,a,n,i;return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol==="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(t){return function(o){return u([t,o])}}function u(i){if(r)throw new TypeError("Generator is already executing.");while(e)try{if(r=1,a&&(n=i[0]&2?a["return"]:i[0]?a["throw"]||((n=a["return"])&&n.call(a),0):a.next)&&!(n=n.call(a,i[1])).done)return n;if(a=0,n)i=[i[0]&2,n.value];switch(i[0]){case 0:case 1:n=i;break;case 4:e.label++;return{value:i[1],done:false};case 5:e.label++;a=i[1];i=[0];continue;case 7:i=e.ops.pop();e.trys.pop();continue;default:if(!(n=e.trys,n=n.length>0&&n[n.length-1])&&(i[0]===6||i[0]===2)){e=0;continue}if(i[0]===3&&(!n||i[1]>n[0]&&i[1]<n[3])){e.label=i[1];break}if(i[0]===6&&e.label<n[1]){e.label=n[1];n=i;break}if(n&&e.label<n[2]){e.label=n[2];e.ops.push(i);break}if(n[2])e.ops.pop();e.trys.pop();continue}i=o.call(t,e)}catch(s){i=[6,s];a=0}finally{r=n=0}if(i[0]&5)throw i[1];return{value:i[0]?i[1]:void 0,done:true}}};System.register(["./index-79de9846.system.js","./index-3127d7f7.system.js","./index-c39e9986.system.js"],(function(t){"use strict";var o,e,r,a,n,i,s,u,c;return{setters:[function(t){o=t.r;e=t.e;r=t.h;a=t.f;n=t.g},function(t){i=t.L;s=t.Y;u=t.c},function(t){c=t.S}],execute:function(){var l="@-webkit-keyframes ku4-carousel-enter-left{0%{top:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0}100%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}}@keyframes ku4-carousel-enter-left{0%{top:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0}100%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}}@-webkit-keyframes ku4-carousel-enter-right{0%{top:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0}100%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}}@keyframes ku4-carousel-enter-right{0%{top:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0}100%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}}@-webkit-keyframes ku4-carousel-exit-left{0%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}100%{top:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0}}@keyframes ku4-carousel-exit-left{0%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}100%{top:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0}}@-webkit-keyframes ku4-carousel-exit-right{0%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}100%{top:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0}}@keyframes ku4-carousel-exit-right{0%{top:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);opacity:1}100%{top:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0}}:host{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;overflow:hidden;background-color:var(--ku4-carousel-background-color, #fff)}.slide-container{position:relative;width:100%;height:100%;overflow:hidden}.controls .next,.controls .prev{position:absolute;display:var(--ku4-carousel-controls-display, block);top:var(--ku4-carousel-controls-top, 0);border:var(--ku4-carousel-controls-border, none);background-color:var(--ku4-carousel-controls-background-color, #fff);font-family:var(--ku4-carousel-controls-font-family, Helvetica, Arial, sans-serif);font-weight:var(--ku4-carousel-controls-font-weight, 400);font-size:var(--ku4-carousel-controls-font-size, 8px);line-height:var(--ku4-carousel-controls-line-height, 12px);opacity:var(--ku4-carousel-controls-opacity, 0.2);z-index:var(--ku4-carousel-controls-z-index, 2)}.controls .next:focus,.controls .prev:focus{background-color:var(--ku4-carousel-controls-focus-background-color, transparent);outline:var(--ku4-carousel-controls-focus-outline, none);opacity:var(--ku4-carousel-controls-focus-opacity, 0.2)}.controls .next:hover,.controls .prev:hover{background-color:var(--ku4-carousel-controls-hover-background-color, transparent);opacity:var(--ku4-carousel-controls-hover-opacity, 1)}.controls .next{right:0;width:var(--ku4-carousel-controls-next-width, 40px);height:var(--ku4-carousel-controls-next-height, 100%);background-image:var(--ku4-carousel-controls-next-background-image);background-repeat:var(--ku4-carousel-controls-next-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-next-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-next-background-position-y, 50%);background-size:var(--ku4-carousel-controls-next-background-size, 100% 100%)}.controls .next:focus{background-image:var(--ku4-carousel-controls-next-focus-background-image);background-repeat:var(--ku4-carousel-controls-next-focus-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-next-focus-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-next-focus-background-position-y, 50%);background-size:var(--ku4-carousel-controls-next-focus-background-size, 100% 100%)}.controls .next:hover{background-image:var(--ku4-carousel-controls-next-hover-background-image);background-repeat:var(--ku4-carousel-controls-next-hover-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-next-hover-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-next-hover-background-position-y, 50%);background-size:var(--ku4-carousel-controls-next-hover-background-size, 100% 100%)}.controls .prev{left:0;width:var(--ku4-carousel-controls-next-width, 40px);height:var(--ku4-carousel-controls-next-height, 100%);background-image:var(--ku4-carousel-controls-previous-background-image);background-repeat:var(--ku4-carousel-controls-previous-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-previous-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-previous-background-position-y, 50%);background-size:var(--ku4-carousel-controls-previous-background-size, 100% 100%)}.controls .prev:focus{background-image:var(--ku4-carousel-controls-previous-focus-background-image);background-repeat:var(--ku4-carousel-controls-previous-focus-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-previous-focus-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-previous-focus-background-position-y, 50%);background-size:var(--ku4-carousel-controls-previous-focus-background-size, 100% 100%)}.controls .prev:hover{background-image:var(--ku4-carousel-controls-previous-hover-background-image);background-repeat:var(--ku4-carousel-controls-previous-hover-background-repeat, no-repeat);background-position-x:var(--ku4-carousel-controls-previous-hover-background-position-x, 0);background-position-y:var(--ku4-carousel-controls-previous-hover-background-position-y, 50%);background-size:var(--ku4-carousel-controls-previous-hover-background-size, 100% 100%)}.pages{position:absolute;display:var(--ku4-carousel-pages-display, block);top:var(--ku4-carousel-pages-top, auto);bottom:var(--ku4-carousel-pages-bottom, 4px);width:var(--ku4-carousel-pages-width, auto);height:var(--ku4-carousel-pages-height, 20px);background-color:var(--ku4-carousel-pages-background-color, transparent);opacity:var(--ku4-carousel-pages-opacity, 0.5);text-align:center;z-index:3}.pages-text{display:inline-block;padding:var(--ku4-carousel-pages-text-padding, 4px);font-family:var(--ku4-carousel-pages-text-font-family, Helvetica, Arial, sans-serif);font-weight:var(--ku4-carousel-pages-text-font-weight, 600);font-size:var(--ku4-carousel-pages-text-font-size, 14px);line-height:var(--ku4-carousel-pages-text-line-height, 16px);color:var(--ku4-carousel-pages-text-color, #aaa)}::slotted(*){position:absolute;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;top:0;left:-100%;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}::slotted(.inactive){position:absolute;height:100%;left:0}::slotted(.inactive.prev){-webkit-animation-name:var(--ku4-carousel-animation-inactive-previous-name, ku4-carousel-exit-right);animation-name:var(--ku4-carousel-animation-inactive-previous-name, ku4-carousel-exit-right);-webkit-animation-duration:var(--ku4-carousel-animation-duration, 0.4s);animation-duration:var(--ku4-carousel-animation-duration, 0.4s);-webkit-animation-timing-function:var(--ku4-carousel-animation-timing-function);animation-timing-function:var(--ku4-carousel-animation-timing-function);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}::slotted(.inactive.next){-webkit-animation-name:var(--ku4-carousel-animation-inactive-next-name, ku4-carousel-exit-left);animation-name:var(--ku4-carousel-animation-inactive-next-name, ku4-carousel-exit-left);-webkit-animation-duration:var(--ku4-carousel-animation-duration, 0.4s);animation-duration:var(--ku4-carousel-animation-duration, 0.4s);-webkit-animation-timing-function:var(--ku4-carousel-animation-timing-function);animation-timing-function:var(--ku4-carousel-animation-timing-function);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}::slotted(.active){position:relative;top:0;left:0;width:auto;height:100%;z-index:1}::slotted(.active.prev){-webkit-animation-name:var(--ku4-carousel-animation-active-previous-name, ku4-carousel-enter-left);animation-name:var(--ku4-carousel-animation-active-previous-name, ku4-carousel-enter-left);-webkit-animation-duration:var(--ku4-carousel-animation-duration, 0.4s);animation-duration:var(--ku4-carousel-animation-duration, 0.4s);-webkit-animation-timing-function:var(--ku4-carousel-animation-timing-function, ease);animation-timing-function:var(--ku4-carousel-animation-timing-function, ease);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}::slotted(.active.next){-webkit-animation-name:var(--ku4-carousel-animation-active-next-name, ku4-carousel-enter-right);animation-name:var(--ku4-carousel-animation-active-next-name, ku4-carousel-enter-right);-webkit-animation-duration:var(--ku4-carousel-animation-duration, 0.4s);animation-duration:var(--ku4-carousel-animation-duration, 0.4s);-webkit-animation-timing-function:var(--ku4-carousel-animation-timing-function, ease);animation-timing-function:var(--ku4-carousel-animation-timing-function, ease);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@media (hover: hover){.controls:hover{background-color:var(--ku4-carousel-controls-focus-background-color, #fff)}}";var d=t("ku4_carousel",function(){function t(t){var r=this;o(this,t);this.didSlide=e(this,"slide",7);this.swipeTolerance=44;this.auto=false;this.noSwipe=false;this.delay=8e3;this.interval=new i(this.delay).onInterval((function(){if(r.host.isConnected){r.display("next")}else{r.disconnectedCallback()}}));this.handleMouse=this.handleMouse.bind(this)}t.prototype.next=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(t){switch(t.label){case 0:if(!this.hasSlides){return[2,this]}return[4,this.pause()];case 1:t.sent();return[2,this.display("next")]}}))}))};t.prototype.previous=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(t){switch(t.label){case 0:if(!this.hasSlides){return[2,this]}return[4,this.pause()];case 1:t.sent();return[2,this.display("prev")]}}))}))};t.prototype.slideTo=function(t){return __awaiter(this,void 0,void 0,(function(){var o,e,r;var a=this;return __generator(this,(function(n){switch(n.label){case 0:return[4,this.pause()];case 1:n.sent();if(!!(t===this.currentSlideNumber||t<1||this.rolodex.length<t))return[3,5];o=t-this.currentSlideNumber;e=o<0?"prev":"next";r=Math.abs(o);n.label=2;case 2:if(!(0<--r))return[3,4];return[4,s(10).then((function(){return a.rolodex[e]}))];case 3:n.sent();return[3,2];case 4:this.display(e);n.label=5;case 5:return[2]}}))}))};t.prototype.pause=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(t){this.interval.clear();return[2]}))}))};t.prototype.play=function(){return __awaiter(this,void 0,void 0,(function(){var t,o,e;return __generator(this,(function(r){t=this,o=t.auto,e=t.interval;o&&e.start();return[2]}))}))};Object.defineProperty(t.prototype,"hasSlides",{get:function(){return this.rolodex&&this.rolodex.length>1},enumerable:false,configurable:true});Object.defineProperty(t.prototype,"currentSlideNumber",{get:function(){var t=this.rolodex;return t&&(t.isEmpty?0:t.index+1)},enumerable:false,configurable:true});t.prototype.display=function(t){var o=this.slideState,e=o.previous,r=o.current;var a=this.rolodex[t];if(e){e.deactivate()}r.slideOut(t);a.slideIn(t);this.slideState={previous:r,current:a};this.didSlide.emit(this.currentSlideNumber);return this};t.prototype.handleMouse=function(t){if(!this.host.contains(t.relatedTarget)){this.play()}};t.prototype.componentWillLoad=function(){var t=this;if(!this.noSwipe){this.swipe=new c(this.host,this.swipeTolerance).onLeft((function(){return t.next()})).onRight((function(){return t.previous()}))}var o;try{o=this.host.querySelectorAll(":scope > ku4-carousel-slide")}catch(e){o=[].slice.call(this.host.querySelectorAll("ku4-carousel-slide")).reduce((function(o,e){if(e.parentNode===t.host){o.push(e)}return o}),[])}this.rolodex=new u(o);this.rolodex.current&&this.rolodex.current.activate&&this.rolodex.current.activate();this.slideState={current:this.rolodex.current};if(this.auto){this.host.addEventListener("mouseout",this.handleMouse);this.play()}};t.prototype.connectedCallback=function(){if(this.swipe){this.swipe.destroy()}this.host.removeEventListener("mouseout",this.handleMouse);this.interval.clear()};t.prototype.disconnectedCallback=function(){if(this.swipe){this.swipe.destroy()}this.host.removeEventListener("mouseout",this.handleMouse);this.interval.clear()};t.prototype.render=function(){var t=this;var o=this,e=o.hasSlides,n=o.currentSlideNumber,i=n===void 0?1:n;return r(a,{"aria-roledescription":"carousel",current:i},e&&r("section",{class:"controls"},r("button",{type:"button",class:"prev",onClick:function(){return t.previous()},"aria-label":"previous slide"}),r("button",{type:"button",class:"next",onClick:function(){return t.next()},"aria-label":"next slide"})),r("section",{class:"slide-container","aria-live":"polite"},r("slot",null)),e&&r("section",{class:"pages"},r("span",{class:"pages-text"},i+" of "+this.rolodex.length)))};Object.defineProperty(t.prototype,"host",{get:function(){return n(this)},enumerable:false,configurable:true});return t}());d.style=l}}}));
@@ -0,0 +1,75 @@
1
+ import { r as registerInstance, h, f as Host } from './index-80439f22.js';
2
+
3
+ const ku4ColCss = ":host{position:relative;display:block}@media only screen and (min-width: 1px){:host(.start-xs-0){grid-column-start:1}:host(.start-xs-1){grid-column-start:2}:host(.start-xs-2){grid-column-start:3}:host(.start-xs-3){grid-column-start:4}:host(.start-xs-4){grid-column-start:5}:host(.start-xs-5){grid-column-start:6}:host(.start-xs-6){grid-column-start:7}:host(.start-xs-7){grid-column-start:8}:host(.start-xs-8){grid-column-start:9}:host(.start-xs-9){grid-column-start:10}:host(.start-xs-10){grid-column-start:11}:host(.start-xs-11){grid-column-start:12}:host(.start-xs-12){grid-column-start:13}:host(.span-xs-1){grid-column-end:span 1}:host(.span-xs-2){grid-column-end:span 2}:host(.span-xs-3){grid-column-end:span 3}:host(.span-xs-4){grid-column-end:span 4}:host(.span-xs-5){grid-column-end:span 5}:host(.span-xs-6){grid-column-end:span 6}:host(.span-xs-7){grid-column-end:span 7}:host(.span-xs-8){grid-column-end:span 8}:host(.span-xs-9){grid-column-end:span 9}:host(.span-xs-10){grid-column-end:span 10}:host(.span-xs-11){grid-column-end:span 11}:host(.span-xs-12){grid-column-end:span 12}:host(.order-xs-1){-ms-flex-order:1;order:1}:host(.order-xs-2){-ms-flex-order:2;order:2}:host(.order-xs-3){-ms-flex-order:3;order:3}:host(.order-xs-4){-ms-flex-order:4;order:4}:host(.order-xs-5){-ms-flex-order:5;order:5}:host(.order-xs-6){-ms-flex-order:6;order:6}:host(.order-xs-7){-ms-flex-order:7;order:7}:host(.order-xs-8){-ms-flex-order:8;order:8}:host(.order-xs-9){-ms-flex-order:9;order:9}:host(.order-xs-10){-ms-flex-order:10;order:10}:host(.order-xs-11){-ms-flex-order:11;order:11}:host(.order-xs-12){-ms-flex-order:12;order:12}}@media only screen and (min-width: 768px){:host(.start-sm-0){grid-column-start:1}:host(.start-sm-1){grid-column-start:2}:host(.start-sm-2){grid-column-start:3}:host(.start-sm-3){grid-column-start:4}:host(.start-sm-4){grid-column-start:5}:host(.start-sm-5){grid-column-start:6}:host(.start-sm-6){grid-column-start:7}:host(.start-sm-7){grid-column-start:8}:host(.start-sm-8){grid-column-start:9}:host(.start-sm-9){grid-column-start:10}:host(.start-sm-10){grid-column-start:11}:host(.start-sm-11){grid-column-start:12}:host(.start-sm-12){grid-column-start:13}:host(.span-sm-1){grid-column-end:span 1}:host(.span-sm-2){grid-column-end:span 2}:host(.span-sm-3){grid-column-end:span 3}:host(.span-sm-4){grid-column-end:span 4}:host(.span-sm-5){grid-column-end:span 5}:host(.span-sm-6){grid-column-end:span 6}:host(.span-sm-7){grid-column-end:span 7}:host(.span-sm-8){grid-column-end:span 8}:host(.span-sm-9){grid-column-end:span 9}:host(.span-sm-10){grid-column-end:span 10}:host(.span-sm-11){grid-column-end:span 11}:host(.span-sm-12){grid-column-end:span 12}:host(.order-sm-1){-ms-flex-order:1;order:1}:host(.order-sm-2){-ms-flex-order:2;order:2}:host(.order-sm-3){-ms-flex-order:3;order:3}:host(.order-sm-4){-ms-flex-order:4;order:4}:host(.order-sm-5){-ms-flex-order:5;order:5}:host(.order-sm-6){-ms-flex-order:6;order:6}:host(.order-sm-7){-ms-flex-order:7;order:7}:host(.order-sm-8){-ms-flex-order:8;order:8}:host(.order-sm-9){-ms-flex-order:9;order:9}:host(.order-sm-10){-ms-flex-order:10;order:10}:host(.order-sm-11){-ms-flex-order:11;order:11}:host(.order-sm-12){-ms-flex-order:12;order:12}}@media only screen and (min-width: 992px){:host(.start-md-0){grid-column-start:1}:host(.start-md-1){grid-column-start:2}:host(.start-md-2){grid-column-start:3}:host(.start-md-3){grid-column-start:4}:host(.start-md-4){grid-column-start:5}:host(.start-md-5){grid-column-start:6}:host(.start-md-6){grid-column-start:7}:host(.start-md-7){grid-column-start:8}:host(.start-md-8){grid-column-start:9}:host(.start-md-9){grid-column-start:10}:host(.start-md-10){grid-column-start:11}:host(.start-md-11){grid-column-start:12}:host(.start-md-12){grid-column-start:13}:host(.span-md-1){grid-column-end:span 1}:host(.span-md-2){grid-column-end:span 2}:host(.span-md-3){grid-column-end:span 3}:host(.span-md-4){grid-column-end:span 4}:host(.span-md-5){grid-column-end:span 5}:host(.span-md-6){grid-column-end:span 6}:host(.span-md-7){grid-column-end:span 7}:host(.span-md-8){grid-column-end:span 8}:host(.span-md-9){grid-column-end:span 9}:host(.span-md-10){grid-column-end:span 10}:host(.span-md-11){grid-column-end:span 11}:host(.span-md-12){grid-column-end:span 12}:host(.order-md-1){-ms-flex-order:1;order:1}:host(.order-md-2){-ms-flex-order:2;order:2}:host(.order-md-3){-ms-flex-order:3;order:3}:host(.order-md-4){-ms-flex-order:4;order:4}:host(.order-md-5){-ms-flex-order:5;order:5}:host(.order-md-6){-ms-flex-order:6;order:6}:host(.order-md-7){-ms-flex-order:7;order:7}:host(.order-md-8){-ms-flex-order:8;order:8}:host(.order-md-9){-ms-flex-order:9;order:9}:host(.order-md-10){-ms-flex-order:10;order:10}:host(.order-md-11){-ms-flex-order:11;order:11}:host(.order-md-12){-ms-flex-order:12;order:12}}@media only screen and (min-width: 1200px){:host(.start-lg-0){grid-column-start:1}:host(.start-lg-1){grid-column-start:2}:host(.start-lg-2){grid-column-start:3}:host(.start-lg-3){grid-column-start:4}:host(.start-lg-4){grid-column-start:5}:host(.start-lg-5){grid-column-start:6}:host(.start-lg-6){grid-column-start:7}:host(.start-lg-7){grid-column-start:8}:host(.start-lg-8){grid-column-start:9}:host(.start-lg-9){grid-column-start:10}:host(.start-lg-10){grid-column-start:11}:host(.start-lg-11){grid-column-start:12}:host(.start-lg-12){grid-column-start:13}:host(.span-lg-1){grid-column-end:span 1}:host(.span-lg-2){grid-column-end:span 2}:host(.span-lg-3){grid-column-end:span 3}:host(.span-lg-4){grid-column-end:span 4}:host(.span-lg-5){grid-column-end:span 5}:host(.span-lg-6){grid-column-end:span 6}:host(.span-lg-7){grid-column-end:span 7}:host(.span-lg-8){grid-column-end:span 8}:host(.span-lg-9){grid-column-end:span 9}:host(.span-lg-10){grid-column-end:span 10}:host(.span-lg-11){grid-column-end:span 11}:host(.span-lg-12){grid-column-end:span 12}:host(.order-lg-1){-ms-flex-order:1;order:1}:host(.order-lg-2){-ms-flex-order:2;order:2}:host(.order-lg-3){-ms-flex-order:3;order:3}:host(.order-lg-4){-ms-flex-order:4;order:4}:host(.order-lg-5){-ms-flex-order:5;order:5}:host(.order-lg-6){-ms-flex-order:6;order:6}:host(.order-lg-7){-ms-flex-order:7;order:7}:host(.order-lg-8){-ms-flex-order:8;order:8}:host(.order-lg-9){-ms-flex-order:9;order:9}:host(.order-lg-10){-ms-flex-order:10;order:10}:host(.order-lg-11){-ms-flex-order:11;order:11}:host(.order-lg-12){-ms-flex-order:12;order:12}}";
4
+
5
+ let Ku4Col = class {
6
+ constructor(hostRef) {
7
+ registerInstance(this, hostRef);
8
+ /**
9
+ * Start position of column at extra-small (optional).
10
+ */
11
+ this.startXs = 0;
12
+ /**
13
+ * Number of columns to span left and right at extra-small (optional).
14
+ */
15
+ this.spanXs = 1;
16
+ }
17
+ get startClass() {
18
+ const { startXs, startSm, startMd, startLg } = this;
19
+ const value = [];
20
+ if (startXs && !Number.isNaN(startXs)) {
21
+ value.push(`start-xs-${startXs}`);
22
+ }
23
+ if (startSm && !Number.isNaN(startSm)) {
24
+ value.push(`start-sm-${startSm}`);
25
+ }
26
+ if (startMd && !Number.isNaN(startMd)) {
27
+ value.push(`start-md-${startMd}`);
28
+ }
29
+ if (startLg && !Number.isNaN(startLg)) {
30
+ value.push(`start-lg-${startLg}`);
31
+ }
32
+ return value.join(' ');
33
+ }
34
+ get spanClass() {
35
+ const { spanXs, spanSm, spanMd, spanLg } = this;
36
+ const value = [];
37
+ if (spanXs && !Number.isNaN(spanXs)) {
38
+ value.push(`span-xs-${spanXs}`);
39
+ }
40
+ if (spanSm && !Number.isNaN(spanSm)) {
41
+ value.push(`span-sm-${spanSm}`);
42
+ }
43
+ if (spanMd && !Number.isNaN(spanMd)) {
44
+ value.push(`span-md-${spanMd}`);
45
+ }
46
+ if (spanLg && !Number.isNaN(spanLg)) {
47
+ value.push(`span-lg-${spanLg}`);
48
+ }
49
+ return value.join(' ');
50
+ }
51
+ get orderClass() {
52
+ const { orderXs, orderSm, orderMd, orderLg } = this;
53
+ const value = [];
54
+ if (orderXs && !Number.isNaN(orderXs)) {
55
+ value.push(`order-xs-${orderXs}`);
56
+ }
57
+ if (orderSm && !Number.isNaN(orderSm)) {
58
+ value.push(`order-sm-${orderSm}`);
59
+ }
60
+ if (orderMd && !Number.isNaN(orderMd)) {
61
+ value.push(`order-md-${orderMd}`);
62
+ }
63
+ if (orderLg && !Number.isNaN(orderLg)) {
64
+ value.push(`order-lg-${orderLg}`);
65
+ }
66
+ return value.join(' ');
67
+ }
68
+ render() {
69
+ const { startClass, spanClass, orderClass } = this;
70
+ return (h(Host, { class: `${startClass} ${spanClass} ${orderClass}` }, h("slot", null)));
71
+ }
72
+ };
73
+ Ku4Col.style = ku4ColCss;
74
+
75
+ export { Ku4Col as ku4_col };