ku4web-components 6.4.80 → 6.4.81

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 (280) hide show
  1. package/angular/index.js +1 -1
  2. package/angular/index.mjs +1 -1
  3. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  4. package/dist/cjs/css-shim-aaf4fec9.js +6 -0
  5. package/dist/cjs/dom-14886762.js +75 -0
  6. package/dist/cjs/index-652a3cbf.js +14 -0
  7. package/dist/cjs/index-8e9e8864.js +3093 -0
  8. package/dist/cjs/{index-1e13241e.js → index-a9159bd6.js} +1 -1
  9. package/dist/cjs/index-c904eb3a.js +10 -0
  10. package/dist/cjs/{index-da3ed39d.js → index-f78c109e.js} +1 -1
  11. package/dist/cjs/ku4-carousel-controls.cjs.entry.js +10 -4
  12. package/dist/cjs/ku4-carousel-slide.cjs.entry.js +1 -1
  13. package/dist/cjs/ku4-carousel.cjs.entry.js +3 -3
  14. package/dist/cjs/ku4-col.cjs.entry.js +1 -1
  15. package/dist/cjs/ku4-drawer.cjs.entry.js +1 -1
  16. package/dist/cjs/ku4-feature.cjs.entry.js +2 -2
  17. package/dist/cjs/ku4-focus-trap.cjs.entry.js +26 -26
  18. package/dist/cjs/ku4-form.cjs.entry.js +3 -3
  19. package/dist/cjs/ku4-grid.cjs.entry.js +1 -1
  20. package/dist/cjs/ku4-label.cjs.entry.js +2 -2
  21. package/dist/cjs/ku4-mask.cjs.entry.js +2 -2
  22. package/dist/cjs/ku4-modal.cjs.entry.js +3 -3
  23. package/dist/cjs/ku4-panel.cjs.entry.js +1 -1
  24. package/dist/cjs/ku4-preview.cjs.entry.js +43 -14
  25. package/dist/cjs/ku4-tab-list.cjs.entry.js +4 -4
  26. package/dist/cjs/ku4-tab-panel.cjs.entry.js +3 -3
  27. package/dist/cjs/ku4-tab.cjs.entry.js +3 -3
  28. package/dist/cjs/ku4-table.cjs.entry.js +1 -1
  29. package/dist/cjs/ku4-tooltip.cjs.entry.js +2 -2
  30. package/dist/cjs/ku4-validation.cjs.entry.js +2 -2
  31. package/dist/cjs/ku4web-components.cjs.js +103 -8
  32. package/dist/cjs/loader.cjs.js +19 -3
  33. package/dist/cjs/{shadow-css-8940f82d.js → shadow-css-c44ea13a.js} +1 -1
  34. package/dist/cjs/{uid-d6942c42.js → uid-97baaecc.js} +1 -1
  35. package/dist/cjs/uid-eb3bec28.js +11 -0
  36. package/dist/collection/capabilities/a11y/aria.js +26 -0
  37. package/dist/collection/capabilities/angular/index.js +24 -0
  38. package/dist/collection/capabilities/decorators/deprecated.js +20 -0
  39. package/dist/collection/capabilities/decorators/index.js +3 -0
  40. package/dist/collection/capabilities/decorators/memoize.js +7 -0
  41. package/dist/collection/capabilities/dom/isFocusable.js +7 -0
  42. package/dist/collection/capabilities/dom/queryFocusable.js +2 -0
  43. package/dist/collection/capabilities/identity/uid.js +6 -0
  44. package/dist/collection/capabilities/mask/index.js +5 -0
  45. package/dist/collection/capabilities/mask/patterns/date.js +40 -0
  46. package/dist/collection/capabilities/mask/patterns/index.js +7 -0
  47. package/dist/collection/capabilities/react/index.js +25 -0
  48. package/dist/collection/capabilities/testing/html.js +14 -0
  49. package/dist/collection/capabilities/testing/styles.js +14 -0
  50. package/dist/collection/capabilities/vue/index.js +28 -0
  51. package/dist/collection/capabilities/vue3/index.js +26 -0
  52. package/dist/collection/collection-manifest.json +31 -0
  53. package/dist/collection/components/ku4-carousel/ku4-carousel.css +221 -0
  54. package/dist/collection/components/ku4-carousel/ku4-carousel.js +362 -0
  55. package/dist/collection/components/ku4-carousel-controls/ku4-carousel-controls.css +32 -0
  56. package/dist/collection/components/ku4-carousel-controls/ku4-carousel-controls.js +112 -0
  57. package/dist/collection/components/ku4-carousel-slide/ku4-carousel-slide.css +3 -0
  58. package/dist/collection/components/ku4-carousel-slide/ku4-carousel-slide.js +159 -0
  59. package/dist/collection/components/ku4-col/ku4-col.css +601 -0
  60. package/dist/collection/components/ku4-col/ku4-col.js +288 -0
  61. package/dist/collection/components/ku4-drawer/ku4-drawer.css +56 -0
  62. package/dist/collection/components/ku4-drawer/ku4-drawer.js +163 -0
  63. package/dist/collection/components/ku4-feature/ku4-feature.js +70 -0
  64. package/dist/collection/components/ku4-focus-trap/ku4-focus-trap.css +3 -0
  65. package/dist/collection/components/ku4-focus-trap/ku4-focus-trap.js +441 -0
  66. package/dist/collection/components/ku4-form/ku4-form.js +225 -0
  67. package/dist/collection/components/ku4-grid/ku4-grid.css +751 -0
  68. package/dist/collection/components/ku4-grid/ku4-grid.js +408 -0
  69. package/dist/collection/components/ku4-label/ku4-label.css +36 -0
  70. package/dist/collection/components/ku4-label/ku4-label.js +115 -0
  71. package/dist/collection/components/ku4-mask/ku4-mask.css +3 -0
  72. package/dist/collection/components/ku4-mask/ku4-mask.js +458 -0
  73. package/dist/collection/components/ku4-modal/ku4-modal.css +85 -0
  74. package/dist/collection/components/ku4-modal/ku4-modal.js +208 -0
  75. package/dist/collection/components/ku4-panel/ku4-panel.css +14 -0
  76. package/dist/collection/components/ku4-panel/ku4-panel.js +119 -0
  77. package/dist/collection/components/ku4-preview/ku4-preview.css +23 -0
  78. package/dist/collection/components/ku4-preview/ku4-preview.js +266 -0
  79. package/dist/collection/components/ku4-tab/ku4-tab.css +82 -0
  80. package/dist/collection/components/ku4-tab/ku4-tab.js +191 -0
  81. package/dist/collection/components/ku4-tab-list/ku4-tab-list.css +6 -0
  82. package/dist/collection/components/ku4-tab-list/ku4-tab-list.js +118 -0
  83. package/dist/collection/components/ku4-tab-panel/ku4-tab-panel.css +26 -0
  84. package/dist/collection/components/ku4-tab-panel/ku4-tab-panel.js +166 -0
  85. package/dist/collection/components/ku4-table/ku4-table.css +116 -0
  86. package/dist/collection/components/ku4-table/ku4-table.js +120 -0
  87. package/dist/collection/components/ku4-tooltip/ku4-tooltip.css +56 -0
  88. package/dist/collection/components/ku4-tooltip/ku4-tooltip.js +274 -0
  89. package/dist/collection/components/ku4-validation/ku4-validation.css +19 -0
  90. package/dist/collection/components/ku4-validation/ku4-validation.js +364 -0
  91. package/dist/collection/components/ku4-validation/validate.js +14 -0
  92. package/dist/collection/index.js +1 -0
  93. package/dist/collection/security.js +27 -0
  94. package/dist/esm/app-globals-0f993ce5.js +3 -0
  95. package/dist/esm/css-shim-091f949f.js +4 -0
  96. package/dist/esm/dom-a385e381.js +73 -0
  97. package/dist/esm/{index-9e3af5f4.js → index-26cde78a.js} +1 -1
  98. package/dist/esm/index-3e1e5aa3.js +3 -0
  99. package/dist/esm/index-516c5188.js +3057 -0
  100. package/dist/esm/index-7ff6e718.js +3 -0
  101. package/dist/esm/{index-20c3926d.js → index-bdb0771a.js} +1 -1
  102. package/dist/esm/ku4-carousel-controls.entry.js +10 -4
  103. package/dist/esm/ku4-carousel-slide.entry.js +1 -1
  104. package/dist/esm/ku4-carousel.entry.js +3 -3
  105. package/dist/esm/ku4-col.entry.js +1 -1
  106. package/dist/esm/ku4-drawer.entry.js +1 -1
  107. package/dist/esm/ku4-feature.entry.js +2 -2
  108. package/dist/esm/ku4-focus-trap.entry.js +3 -3
  109. package/dist/esm/ku4-form.entry.js +3 -3
  110. package/dist/esm/ku4-grid.entry.js +1 -1
  111. package/dist/esm/ku4-label.entry.js +2 -2
  112. package/dist/esm/ku4-mask.entry.js +2 -2
  113. package/dist/esm/ku4-modal.entry.js +3 -3
  114. package/dist/esm/ku4-panel.entry.js +1 -1
  115. package/dist/esm/ku4-preview.entry.js +34 -5
  116. package/dist/esm/ku4-tab-list.entry.js +4 -4
  117. package/dist/esm/ku4-tab-panel.entry.js +3 -3
  118. package/dist/esm/ku4-tab.entry.js +3 -3
  119. package/dist/esm/ku4-table.entry.js +1 -1
  120. package/dist/esm/ku4-tooltip.entry.js +2 -2
  121. package/dist/esm/ku4-validation.entry.js +2 -2
  122. package/dist/esm/ku4web-components.js +103 -8
  123. package/dist/esm/loader.js +19 -3
  124. package/dist/esm/{shadow-css-5d2d01ce.js → shadow-css-ef431969.js} +1 -1
  125. package/dist/esm/{uid-15f8c937.js → uid-1ec3509b.js} +1 -1
  126. package/dist/esm/uid-9dbd7ad0.js +9 -0
  127. package/dist/esm-es5/{index-9e3af5f4.js → index-26cde78a.js} +1 -1
  128. package/dist/esm-es5/{index-20c3926d.js → index-bdb0771a.js} +1 -1
  129. package/dist/esm-es5/ku4-carousel-controls.entry.js +1 -1
  130. package/dist/esm-es5/ku4-carousel-slide.entry.js +1 -1
  131. package/dist/esm-es5/ku4-carousel.entry.js +1 -1
  132. package/dist/esm-es5/ku4-col.entry.js +1 -1
  133. package/dist/esm-es5/ku4-drawer.entry.js +1 -1
  134. package/dist/esm-es5/ku4-feature.entry.js +1 -1
  135. package/dist/esm-es5/ku4-focus-trap.entry.js +1 -1
  136. package/dist/esm-es5/ku4-form.entry.js +1 -1
  137. package/dist/esm-es5/ku4-grid.entry.js +1 -1
  138. package/dist/esm-es5/ku4-label.entry.js +1 -1
  139. package/dist/esm-es5/ku4-mask.entry.js +1 -1
  140. package/dist/esm-es5/ku4-modal.entry.js +1 -1
  141. package/dist/esm-es5/ku4-panel.entry.js +1 -1
  142. package/dist/esm-es5/ku4-preview.entry.js +1 -1
  143. package/dist/esm-es5/ku4-tab-list.entry.js +1 -1
  144. package/dist/esm-es5/ku4-tab-panel.entry.js +1 -1
  145. package/dist/esm-es5/ku4-tab.entry.js +1 -1
  146. package/dist/esm-es5/ku4-table.entry.js +1 -1
  147. package/dist/esm-es5/ku4-tooltip.entry.js +1 -1
  148. package/dist/esm-es5/ku4-validation.entry.js +1 -1
  149. package/dist/esm-es5/ku4web-components.js +1 -1
  150. package/dist/esm-es5/loader.js +1 -1
  151. package/dist/esm-es5/{shadow-css-5d2d01ce.js → shadow-css-ef431969.js} +0 -0
  152. package/dist/esm-es5/uid-1ec3509b.js +1 -0
  153. package/dist/index.js +1 -1
  154. package/dist/ku4web-components/app-globals-0f993ce5.js +3 -0
  155. package/dist/ku4web-components/app-globals-497eb362.system.js +1 -0
  156. package/dist/ku4web-components/css-shim-091f949f.js +4 -0
  157. package/dist/ku4web-components/css-shim-c5bffe6b.system.js +1 -0
  158. package/dist/ku4web-components/dom-99eb7b76.system.js +21 -0
  159. package/dist/ku4web-components/dom-a385e381.js +73 -0
  160. package/dist/ku4web-components/index-380cbe3a.system.js +1 -0
  161. package/dist/ku4web-components/index-3e1e5aa3.js +3 -0
  162. package/dist/ku4web-components/index-516c5188.js +3057 -0
  163. package/dist/ku4web-components/index-7d482e8a.system.js +1 -0
  164. package/dist/ku4web-components/index-7ff6e718.js +3 -0
  165. package/dist/ku4web-components/index-fd0c89d0.system.js +1 -0
  166. package/dist/ku4web-components/index.esm.js +1 -0
  167. package/dist/ku4web-components/index.system.js +1 -0
  168. package/dist/ku4web-components/ku4-carousel-controls.entry.js +89 -0
  169. package/dist/ku4web-components/ku4-carousel-controls.system.entry.js +1 -0
  170. package/dist/ku4web-components/ku4-carousel-slide.entry.js +47 -0
  171. package/dist/ku4web-components/ku4-carousel-slide.system.entry.js +1 -0
  172. package/dist/ku4web-components/ku4-carousel.entry.js +168 -0
  173. package/dist/ku4web-components/ku4-carousel.system.entry.js +1 -0
  174. package/dist/ku4web-components/ku4-col.entry.js +75 -0
  175. package/dist/ku4web-components/ku4-col.system.entry.js +1 -0
  176. package/dist/ku4web-components/ku4-drawer.entry.js +35 -0
  177. package/dist/ku4web-components/ku4-drawer.system.entry.js +1 -0
  178. package/dist/ku4web-components/ku4-feature.entry.js +29 -0
  179. package/dist/ku4web-components/ku4-feature.system.entry.js +1 -0
  180. package/dist/ku4web-components/ku4-focus-trap.entry.js +323 -0
  181. package/dist/ku4web-components/ku4-focus-trap.system.entry.js +1 -0
  182. package/dist/ku4web-components/ku4-form.entry.js +112 -0
  183. package/dist/ku4web-components/ku4-form.system.entry.js +1 -0
  184. package/dist/ku4web-components/ku4-grid.entry.js +108 -0
  185. package/dist/ku4web-components/ku4-grid.system.entry.js +1 -0
  186. package/dist/ku4web-components/ku4-label.entry.js +70 -0
  187. package/dist/ku4web-components/ku4-label.system.entry.js +1 -0
  188. package/dist/ku4web-components/ku4-mask.entry.js +342 -0
  189. package/dist/ku4web-components/ku4-mask.system.entry.js +1 -0
  190. package/dist/ku4web-components/ku4-modal.entry.js +75 -0
  191. package/dist/ku4web-components/ku4-modal.system.entry.js +1 -0
  192. package/dist/ku4web-components/ku4-panel.entry.js +49 -0
  193. package/dist/ku4web-components/ku4-panel.system.entry.js +1 -0
  194. package/dist/ku4web-components/ku4-preview.entry.js +128 -0
  195. package/dist/ku4web-components/ku4-preview.system.entry.js +1 -0
  196. package/dist/ku4web-components/ku4-tab-list.entry.js +76 -0
  197. package/dist/ku4web-components/ku4-tab-list.system.entry.js +1 -0
  198. package/dist/ku4web-components/ku4-tab-panel.entry.js +72 -0
  199. package/dist/ku4web-components/ku4-tab-panel.system.entry.js +1 -0
  200. package/dist/ku4web-components/ku4-tab.entry.js +63 -0
  201. package/dist/ku4web-components/ku4-tab.system.entry.js +1 -0
  202. package/dist/ku4web-components/ku4-table.entry.js +79 -0
  203. package/dist/ku4web-components/ku4-table.system.entry.js +1 -0
  204. package/dist/ku4web-components/ku4-tooltip.entry.js +120 -0
  205. package/dist/ku4web-components/ku4-tooltip.system.entry.js +1 -0
  206. package/dist/ku4web-components/ku4-validation.entry.js +162 -0
  207. package/dist/ku4web-components/ku4-validation.system.entry.js +1 -0
  208. package/dist/ku4web-components/ku4web-components.css +299 -1
  209. package/dist/ku4web-components/ku4web-components.esm.js +129 -1
  210. package/dist/ku4web-components/ku4web-components.js +1 -1
  211. package/dist/ku4web-components/ku4web-components.system.js +1 -0
  212. package/dist/ku4web-components/p-019be0a7.entry.js +1 -0
  213. package/dist/ku4web-components/{p-8f480cb5.system.entry.js → p-01ae9e4c.system.entry.js} +1 -1
  214. package/dist/ku4web-components/{p-02e342f7.system.entry.js → p-03d6fb35.system.entry.js} +1 -1
  215. package/dist/ku4web-components/{p-3c182b2f.entry.js → p-0c05c4ad.entry.js} +1 -1
  216. package/dist/ku4web-components/{p-04948520.system.entry.js → p-0cc659d9.system.entry.js} +1 -1
  217. package/dist/ku4web-components/{p-2aac6c90.js → p-0ded083e.js} +1 -1
  218. package/dist/ku4web-components/{p-761b2cbc.system.entry.js → p-0e222607.system.entry.js} +1 -1
  219. package/dist/ku4web-components/p-17d548db.js +1 -0
  220. package/dist/ku4web-components/{p-c1068ffa.js → p-189cde73.js} +1 -1
  221. package/dist/ku4web-components/{p-2f2d74dc.system.entry.js → p-2300b0b7.system.entry.js} +1 -1
  222. package/dist/ku4web-components/{p-8faad87d.entry.js → p-25ca27d4.entry.js} +1 -1
  223. package/dist/ku4web-components/{p-f1cc1b2d.entry.js → p-2a6d5089.entry.js} +1 -1
  224. package/dist/ku4web-components/{p-9c0d71af.system.entry.js → p-341081d6.system.entry.js} +1 -1
  225. package/dist/ku4web-components/{p-e4ff1c36.entry.js → p-55d15007.entry.js} +1 -1
  226. package/dist/ku4web-components/{p-d6ec34c3.entry.js → p-57ec7c89.entry.js} +1 -1
  227. package/dist/ku4web-components/{p-15ee8b8e.system.entry.js → p-5d6cf40f.system.entry.js} +1 -1
  228. package/dist/ku4web-components/{p-01debe28.system.entry.js → p-5eb48119.system.entry.js} +1 -1
  229. package/dist/ku4web-components/{p-67adc5b1.system.entry.js → p-64bcfdeb.system.entry.js} +1 -1
  230. package/dist/ku4web-components/{p-71d57b8b.system.js → p-6bf18c7c.system.js} +0 -0
  231. package/dist/ku4web-components/{p-0eb73a0f.system.entry.js → p-6c5699e3.system.entry.js} +1 -1
  232. package/dist/ku4web-components/{p-840704e4.entry.js → p-6d63d17d.entry.js} +1 -1
  233. package/dist/ku4web-components/{p-f06bf0ae.entry.js → p-6f47f245.entry.js} +1 -1
  234. package/dist/ku4web-components/{p-b4488a7d.system.entry.js → p-75161edb.system.entry.js} +1 -1
  235. package/dist/ku4web-components/{p-0e010c10.system.entry.js → p-801fab11.system.entry.js} +1 -1
  236. package/dist/ku4web-components/{p-0f8708f8.entry.js → p-8c0cb5c1.entry.js} +1 -1
  237. package/dist/ku4web-components/{p-2edd35f8.system.entry.js → p-92bc6bf1.system.entry.js} +1 -1
  238. package/dist/ku4web-components/{p-7273db60.entry.js → p-94dd5fad.entry.js} +1 -1
  239. package/dist/ku4web-components/{p-660ebd19.entry.js → p-993123b6.entry.js} +1 -1
  240. package/dist/ku4web-components/{p-c50540ec.system.entry.js → p-9f1bc248.system.entry.js} +1 -1
  241. package/dist/ku4web-components/{p-f6455ab3.js → p-b10887b2.js} +0 -0
  242. package/dist/ku4web-components/{p-a5c7f5f7.system.entry.js → p-b3bdc458.system.entry.js} +1 -1
  243. package/dist/ku4web-components/{p-d360c64a.entry.js → p-b60c60e4.entry.js} +1 -1
  244. package/dist/ku4web-components/{p-0785fc39.system.js → p-c3293202.system.js} +1 -1
  245. package/dist/ku4web-components/{p-7a47027b.entry.js → p-c459bbb7.entry.js} +1 -1
  246. package/dist/ku4web-components/{p-90c37394.entry.js → p-c62c66be.entry.js} +1 -1
  247. package/dist/ku4web-components/{p-c19fd841.entry.js → p-c646a177.entry.js} +1 -1
  248. package/dist/ku4web-components/{p-8e2fca0b.system.entry.js → p-ca547c71.system.entry.js} +1 -1
  249. package/dist/ku4web-components/{p-ce6eddc3.system.entry.js → p-d6f80a73.system.entry.js} +1 -1
  250. package/dist/ku4web-components/p-db3040f3.system.js +1 -0
  251. package/dist/ku4web-components/{p-19a8c0f6.system.entry.js → p-db493d59.system.entry.js} +1 -1
  252. package/dist/ku4web-components/{p-77f1853c.entry.js → p-dc35b1af.entry.js} +1 -1
  253. package/dist/ku4web-components/p-deb02b56.entry.js +1 -0
  254. package/dist/ku4web-components/{p-3874127d.entry.js → p-df1544c7.entry.js} +1 -1
  255. package/dist/ku4web-components/{p-22eed87f.entry.js → p-e10de631.entry.js} +1 -1
  256. package/dist/ku4web-components/{p-8d9eb18b.system.entry.js → p-e29d66a7.system.entry.js} +1 -1
  257. package/dist/ku4web-components/{p-f0b1c07c.system.js → p-e2ae0504.system.js} +1 -1
  258. package/dist/ku4web-components/p-e641f14e.system.js +1 -0
  259. package/dist/ku4web-components/{p-adddaeef.entry.js → p-e6937d21.entry.js} +1 -1
  260. package/dist/ku4web-components/{p-232787a5.system.entry.js → p-f0e309a9.system.entry.js} +1 -1
  261. package/dist/ku4web-components/shadow-css-27708fdd.system.js +13 -0
  262. package/dist/ku4web-components/shadow-css-ef431969.js +388 -0
  263. package/dist/ku4web-components/uid-9dbd7ad0.js +9 -0
  264. package/dist/ku4web-components/uid-fb867945.system.js +1 -0
  265. package/dist/types/components/ku4-carousel-controls/ku4-carousel-controls.d.ts +1 -0
  266. package/dist/types/components/ku4-carousel-slide/ku4-carousel-slide.d.ts +6 -0
  267. package/dist/types/components.d.ts +8 -0
  268. package/package.json +15 -15
  269. package/react/index.js +1 -1
  270. package/react/index.mjs +1 -1
  271. package/vue/index.js +1 -1
  272. package/vue/index.mjs +1 -1
  273. package/vue3/index.js +1 -1
  274. package/vue3/index.mjs +1 -1
  275. package/dist/esm-es5/uid-15f8c937.js +0 -1
  276. package/dist/ku4web-components/p-b590da20.entry.js +0 -1
  277. package/dist/ku4web-components/p-be7890a1.system.js +0 -1
  278. package/dist/ku4web-components/p-cbbb4b1b.js +0 -1
  279. package/dist/ku4web-components/p-eb58b04b.system.js +0 -1
  280. package/dist/ku4web-components/p-eb6882c8.entry.js +0 -1
@@ -0,0 +1,31 @@
1
+ {
2
+ "entries": [
3
+ "./components/ku4-carousel/ku4-carousel.js",
4
+ "./components/ku4-carousel-controls/ku4-carousel-controls.js",
5
+ "./components/ku4-carousel-slide/ku4-carousel-slide.js",
6
+ "./components/ku4-col/ku4-col.js",
7
+ "./components/ku4-drawer/ku4-drawer.js",
8
+ "./components/ku4-feature/ku4-feature.js",
9
+ "./components/ku4-focus-trap/ku4-focus-trap.js",
10
+ "./components/ku4-form/ku4-form.js",
11
+ "./components/ku4-grid/ku4-grid.js",
12
+ "./components/ku4-label/ku4-label.js",
13
+ "./components/ku4-mask/ku4-mask.js",
14
+ "./components/ku4-modal/ku4-modal.js",
15
+ "./components/ku4-panel/ku4-panel.js",
16
+ "./components/ku4-preview/ku4-preview.js",
17
+ "./components/ku4-tab/ku4-tab.js",
18
+ "./components/ku4-tab-list/ku4-tab-list.js",
19
+ "./components/ku4-tab-panel/ku4-tab-panel.js",
20
+ "./components/ku4-table/ku4-table.js",
21
+ "./components/ku4-tooltip/ku4-tooltip.js",
22
+ "./components/ku4-validation/ku4-validation.js"
23
+ ],
24
+ "compiler": {
25
+ "name": "@stencil/core",
26
+ "version": "2.14.2",
27
+ "typescriptVersion": "4.5.4"
28
+ },
29
+ "collections": [],
30
+ "bundles": []
31
+ }
@@ -0,0 +1,221 @@
1
+ @keyframes ku4-carousel-enter-left {
2
+ 0% {
3
+ top: 0;
4
+ transform: translate3d(-100%, 0, 0);
5
+ opacity: 0;
6
+ }
7
+ 100% {
8
+ top: 0;
9
+ transform: translate3d(0, 0, 0);
10
+ opacity: 1;
11
+ }
12
+ }
13
+ @keyframes ku4-carousel-enter-right {
14
+ 0% {
15
+ top: 0;
16
+ transform: translate3d(100%, 0, 0);
17
+ opacity: 0;
18
+ }
19
+ 100% {
20
+ top: 0;
21
+ transform: translate3d(0, 0, 0);
22
+ opacity: 1;
23
+ }
24
+ }
25
+ @keyframes ku4-carousel-exit-left {
26
+ 0% {
27
+ top: 0;
28
+ transform: translate3d(0, 0, 0);
29
+ opacity: 1;
30
+ }
31
+ 100% {
32
+ top: 0;
33
+ transform: translate3d(-100%, 0, 0);
34
+ opacity: 0;
35
+ }
36
+ }
37
+ @keyframes ku4-carousel-exit-right {
38
+ 0% {
39
+ top: 0;
40
+ transform: translate3d(0, 0, 0);
41
+ opacity: 1;
42
+ }
43
+ 100% {
44
+ top: 0;
45
+ transform: translate3d(100%, 0, 0);
46
+ opacity: 0;
47
+ }
48
+ }
49
+ :host {
50
+ position: relative;
51
+ display: flex;
52
+ flex-direction: column;
53
+ align-items: center;
54
+ overflow: hidden;
55
+ background-color: var(--ku4-carousel-background-color, #fff);
56
+ }
57
+
58
+ .slide-container {
59
+ position: relative;
60
+ width: 100%;
61
+ height: 100%;
62
+ overflow: hidden;
63
+ }
64
+
65
+ .controls .next,
66
+ .controls .prev {
67
+ position: absolute;
68
+ display: var(--ku4-carousel-controls-display, block);
69
+ top: var(--ku4-carousel-controls-top, 0);
70
+ border: var(--ku4-carousel-controls-border, none);
71
+ background-color: var(--ku4-carousel-controls-background-color, #fff);
72
+ font-family: var(--ku4-carousel-controls-font-family, Helvetica, Arial, sans-serif);
73
+ font-weight: var(--ku4-carousel-controls-font-weight, 400);
74
+ font-size: var(--ku4-carousel-controls-font-size, 8px);
75
+ line-height: var(--ku4-carousel-controls-line-height, 12px);
76
+ opacity: var(--ku4-carousel-controls-opacity, 0.2);
77
+ z-index: var(--ku4-carousel-controls-z-index, 2);
78
+ }
79
+ .controls .next:focus,
80
+ .controls .prev:focus {
81
+ background-color: var(--ku4-carousel-controls-focus-background-color, transparent);
82
+ outline: var(--ku4-carousel-controls-focus-outline, none);
83
+ opacity: var(--ku4-carousel-controls-focus-opacity, 0.2);
84
+ }
85
+ .controls .next:hover,
86
+ .controls .prev:hover {
87
+ background-color: var(--ku4-carousel-controls-hover-background-color, transparent);
88
+ opacity: var(--ku4-carousel-controls-hover-opacity, 1);
89
+ }
90
+
91
+ .controls .next {
92
+ right: 0;
93
+ width: var(--ku4-carousel-controls-next-width, 40px);
94
+ height: var(--ku4-carousel-controls-next-height, 100%);
95
+ background-image: var(--ku4-carousel-controls-next-background-image);
96
+ background-repeat: var(--ku4-carousel-controls-next-background-repeat, no-repeat);
97
+ background-position-x: var(--ku4-carousel-controls-next-background-position-x, 0);
98
+ background-position-y: var(--ku4-carousel-controls-next-background-position-y, 50%);
99
+ background-size: var(--ku4-carousel-controls-next-background-size, 100% 100%);
100
+ }
101
+ .controls .next:focus {
102
+ background-image: var(--ku4-carousel-controls-next-focus-background-image);
103
+ background-repeat: var(--ku4-carousel-controls-next-focus-background-repeat, no-repeat);
104
+ background-position-x: var(--ku4-carousel-controls-next-focus-background-position-x, 0);
105
+ background-position-y: var(--ku4-carousel-controls-next-focus-background-position-y, 50%);
106
+ background-size: var(--ku4-carousel-controls-next-focus-background-size, 100% 100%);
107
+ }
108
+ .controls .next:hover {
109
+ background-image: var(--ku4-carousel-controls-next-hover-background-image);
110
+ background-repeat: var(--ku4-carousel-controls-next-hover-background-repeat, no-repeat);
111
+ background-position-x: var(--ku4-carousel-controls-next-hover-background-position-x, 0);
112
+ background-position-y: var(--ku4-carousel-controls-next-hover-background-position-y, 50%);
113
+ background-size: var(--ku4-carousel-controls-next-hover-background-size, 100% 100%);
114
+ }
115
+
116
+ .controls .prev {
117
+ left: 0;
118
+ width: var(--ku4-carousel-controls-next-width, 40px);
119
+ height: var(--ku4-carousel-controls-next-height, 100%);
120
+ background-image: var(--ku4-carousel-controls-previous-background-image);
121
+ background-repeat: var(--ku4-carousel-controls-previous-background-repeat, no-repeat);
122
+ background-position-x: var(--ku4-carousel-controls-previous-background-position-x, 0);
123
+ background-position-y: var(--ku4-carousel-controls-previous-background-position-y, 50%);
124
+ background-size: var(--ku4-carousel-controls-previous-background-size, 100% 100%);
125
+ }
126
+ .controls .prev:focus {
127
+ background-image: var(--ku4-carousel-controls-previous-focus-background-image);
128
+ background-repeat: var(--ku4-carousel-controls-previous-focus-background-repeat, no-repeat);
129
+ background-position-x: var(--ku4-carousel-controls-previous-focus-background-position-x, 0);
130
+ background-position-y: var(--ku4-carousel-controls-previous-focus-background-position-y, 50%);
131
+ background-size: var(--ku4-carousel-controls-previous-focus-background-size, 100% 100%);
132
+ }
133
+ .controls .prev:hover {
134
+ background-image: var(--ku4-carousel-controls-previous-hover-background-image);
135
+ background-repeat: var(--ku4-carousel-controls-previous-hover-background-repeat, no-repeat);
136
+ background-position-x: var(--ku4-carousel-controls-previous-hover-background-position-x, 0);
137
+ background-position-y: var(--ku4-carousel-controls-previous-hover-background-position-y, 50%);
138
+ background-size: var(--ku4-carousel-controls-previous-hover-background-size, 100% 100%);
139
+ }
140
+
141
+ .pages {
142
+ position: absolute;
143
+ display: var(--ku4-carousel-pages-display, block);
144
+ top: var(--ku4-carousel-pages-top, auto);
145
+ bottom: var(--ku4-carousel-pages-bottom, 4px);
146
+ width: var(--ku4-carousel-pages-width, auto);
147
+ height: var(--ku4-carousel-pages-height, 20px);
148
+ background-color: var(--ku4-carousel-pages-background-color, transparent);
149
+ opacity: var(--ku4-carousel-pages-opacity, 0.5);
150
+ text-align: center;
151
+ z-index: 3;
152
+ }
153
+
154
+ .pages-text {
155
+ display: inline-block;
156
+ padding: var(--ku4-carousel-pages-text-padding, 4px);
157
+ font-family: var(--ku4-carousel-pages-text-font-family, Helvetica, Arial, sans-serif);
158
+ font-weight: var(--ku4-carousel-pages-text-font-weight, 600);
159
+ font-size: var(--ku4-carousel-pages-text-font-size, 14px);
160
+ line-height: var(--ku4-carousel-pages-text-line-height, 16px);
161
+ color: var(--ku4-carousel-pages-text-color, #aaa);
162
+ }
163
+
164
+ ::slotted(*) {
165
+ position: absolute;
166
+ display: flex;
167
+ flex-direction: column;
168
+ top: 0;
169
+ left: -100%;
170
+ width: 100%;
171
+ box-sizing: border-box;
172
+ }
173
+
174
+ ::slotted(.inactive) {
175
+ position: absolute;
176
+ height: 100%;
177
+ left: 0;
178
+ }
179
+
180
+ ::slotted(.inactive.prev) {
181
+ animation-name: var(--ku4-carousel-animation-inactive-previous-name, ku4-carousel-exit-right);
182
+ animation-duration: var(--ku4-carousel-animation-duration, 0.4s);
183
+ animation-timing-function: var(--ku4-carousel-animation-timing-function);
184
+ animation-fill-mode: forwards;
185
+ }
186
+
187
+ ::slotted(.inactive.next) {
188
+ animation-name: var(--ku4-carousel-animation-inactive-next-name, ku4-carousel-exit-left);
189
+ animation-duration: var(--ku4-carousel-animation-duration, 0.4s);
190
+ animation-timing-function: var(--ku4-carousel-animation-timing-function);
191
+ animation-fill-mode: forwards;
192
+ }
193
+
194
+ ::slotted(.active) {
195
+ position: relative;
196
+ top: 0;
197
+ left: 0;
198
+ width: auto;
199
+ height: 100%;
200
+ z-index: 1;
201
+ }
202
+
203
+ ::slotted(.active.prev) {
204
+ animation-name: var(--ku4-carousel-animation-active-previous-name, ku4-carousel-enter-left);
205
+ animation-duration: var(--ku4-carousel-animation-duration, 0.4s);
206
+ animation-timing-function: var(--ku4-carousel-animation-timing-function, ease);
207
+ animation-fill-mode: forwards;
208
+ }
209
+
210
+ ::slotted(.active.next) {
211
+ animation-name: var(--ku4-carousel-animation-active-next-name, ku4-carousel-enter-right);
212
+ animation-duration: var(--ku4-carousel-animation-duration, 0.4s);
213
+ animation-timing-function: var(--ku4-carousel-animation-timing-function, ease);
214
+ animation-fill-mode: forwards;
215
+ }
216
+
217
+ @media (hover: hover) {
218
+ .controls:hover {
219
+ background-color: var(--ku4-carousel-controls-focus-background-color, #fff);
220
+ }
221
+ }
@@ -0,0 +1,362 @@
1
+ import { Component, Host, Prop, State, Method, Element, h, Event } from '@stencil/core';
2
+ import { Rolodex, Interval, wait } from 'ku4es-kernel';
3
+ import { Swipe } from 'ku4es-ui-kernel';
4
+ /**
5
+ * @description ku4-carousel
6
+ */
7
+ export class Ku4Carousel {
8
+ constructor() {
9
+ /**
10
+ * Sets the distance, in pixels, a touch must travel
11
+ * before activating a swipe.
12
+ */
13
+ this.swipeTolerance = 44;
14
+ /**
15
+ * Will start this carousel in auto scroll mode
16
+ */
17
+ this.auto = false;
18
+ /**
19
+ * Prevents touch swiping
20
+ */
21
+ this.noSwipe = false;
22
+ /**
23
+ * Delay in millisecond between slide changes
24
+ * when running in auto
25
+ */
26
+ this.delay = 8000;
27
+ this.interval = new Interval(this.delay).onInterval(() => {
28
+ if (this.host.isConnected) {
29
+ this.display('next');
30
+ }
31
+ else {
32
+ this.disconnectedCallback();
33
+ }
34
+ });
35
+ this.handleMouse = this.handleMouse.bind(this);
36
+ }
37
+ /**
38
+ * Display the next ku4-carousel-slide
39
+ */
40
+ async next() {
41
+ if (!this.hasSlides) {
42
+ return this;
43
+ }
44
+ await this.pause();
45
+ return this.display('next');
46
+ }
47
+ /**
48
+ * Display the previous ku4-carousel-slide
49
+ */
50
+ async previous() {
51
+ if (!this.hasSlides) {
52
+ return this;
53
+ }
54
+ await this.pause();
55
+ return this.display('prev');
56
+ }
57
+ /**
58
+ * Slide to the slide number specified.
59
+ * @param {number} number - Slide number to slide to.
60
+ */
61
+ async slideTo(number) {
62
+ await this.pause();
63
+ if (!(number === this.currentSlideNumber || number < 1 || this.rolodex.length < number)) {
64
+ const move = number - this.currentSlideNumber;
65
+ const slide = move < 0 ? 'prev' : 'next';
66
+ let count = Math.abs(move);
67
+ while (0 < --count) {
68
+ await wait(10).then(() => this.rolodex[slide]);
69
+ }
70
+ this.display(slide);
71
+ }
72
+ }
73
+ /**
74
+ * Pause auto slide change
75
+ */
76
+ async pause() {
77
+ this.interval.clear();
78
+ }
79
+ /**
80
+ * Start auto slide change
81
+ */
82
+ async play() {
83
+ const { auto, interval } = this;
84
+ auto && interval.start();
85
+ }
86
+ get hasSlides() {
87
+ return this.rolodex && (this.rolodex.length > 1);
88
+ }
89
+ get currentSlideNumber() {
90
+ const { rolodex } = this;
91
+ return rolodex && (rolodex.isEmpty ? 0 : rolodex.index + 1);
92
+ }
93
+ display(slide) {
94
+ window.requestAnimationFrame(() => {
95
+ const { previous, current } = this.slideState;
96
+ const next = this.rolodex[slide];
97
+ if (previous) {
98
+ previous.deactivate();
99
+ }
100
+ current.slideOut(slide);
101
+ next.slideIn(slide);
102
+ this.slideState = {
103
+ previous: current,
104
+ current: next,
105
+ };
106
+ this.didSlide.emit(this.currentSlideNumber);
107
+ });
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 Rolodex(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 },
161
+ hasSlides && (h("section", { class: "controls" },
162
+ h("button", { type: "button", class: "prev", onClick: () => this.previous(), "aria-label": "previous slide" }),
163
+ h("button", { type: "button", class: "next", onClick: () => this.next(), "aria-label": "next slide" }))),
164
+ h("section", { class: "slide-container", "aria-live": "polite" },
165
+ h("slot", null)),
166
+ hasSlides && (h("section", { class: "pages" },
167
+ h("span", { class: "pages-text" }, `${currentSlideNumber} of ${this.rolodex.length}`)))));
168
+ }
169
+ static get is() { return "ku4-carousel"; }
170
+ static get encapsulation() { return "shadow"; }
171
+ static get originalStyleUrls() { return {
172
+ "$": ["ku4-carousel.scss"]
173
+ }; }
174
+ static get styleUrls() { return {
175
+ "$": ["ku4-carousel.css"]
176
+ }; }
177
+ static get properties() { return {
178
+ "swipeTolerance": {
179
+ "type": "number",
180
+ "mutable": false,
181
+ "complexType": {
182
+ "original": "number",
183
+ "resolved": "number",
184
+ "references": {}
185
+ },
186
+ "required": false,
187
+ "optional": false,
188
+ "docs": {
189
+ "tags": [],
190
+ "text": "Sets the distance, in pixels, a touch must travel\nbefore activating a swipe."
191
+ },
192
+ "attribute": "swipe-tolerance",
193
+ "reflect": false,
194
+ "defaultValue": "44"
195
+ },
196
+ "auto": {
197
+ "type": "boolean",
198
+ "mutable": false,
199
+ "complexType": {
200
+ "original": "boolean",
201
+ "resolved": "boolean",
202
+ "references": {}
203
+ },
204
+ "required": false,
205
+ "optional": false,
206
+ "docs": {
207
+ "tags": [],
208
+ "text": "Will start this carousel in auto scroll mode"
209
+ },
210
+ "attribute": "auto",
211
+ "reflect": false,
212
+ "defaultValue": "false"
213
+ },
214
+ "noSwipe": {
215
+ "type": "boolean",
216
+ "mutable": false,
217
+ "complexType": {
218
+ "original": "boolean",
219
+ "resolved": "boolean",
220
+ "references": {}
221
+ },
222
+ "required": false,
223
+ "optional": false,
224
+ "docs": {
225
+ "tags": [],
226
+ "text": "Prevents touch swiping"
227
+ },
228
+ "attribute": "no-swipe",
229
+ "reflect": false,
230
+ "defaultValue": "false"
231
+ },
232
+ "delay": {
233
+ "type": "number",
234
+ "mutable": false,
235
+ "complexType": {
236
+ "original": "number",
237
+ "resolved": "number",
238
+ "references": {}
239
+ },
240
+ "required": false,
241
+ "optional": false,
242
+ "docs": {
243
+ "tags": [],
244
+ "text": "Delay in millisecond between slide changes\nwhen running in auto"
245
+ },
246
+ "attribute": "delay",
247
+ "reflect": false,
248
+ "defaultValue": "8000"
249
+ }
250
+ }; }
251
+ static get states() { return {
252
+ "slideState": {}
253
+ }; }
254
+ static get events() { return [{
255
+ "method": "didSlide",
256
+ "name": "slide",
257
+ "bubbles": true,
258
+ "cancelable": true,
259
+ "composed": true,
260
+ "docs": {
261
+ "tags": [],
262
+ "text": "Event fired when slide changes"
263
+ },
264
+ "complexType": {
265
+ "original": "any",
266
+ "resolved": "any",
267
+ "references": {}
268
+ }
269
+ }]; }
270
+ static get methods() { return {
271
+ "next": {
272
+ "complexType": {
273
+ "signature": "() => Promise<this>",
274
+ "parameters": [],
275
+ "references": {
276
+ "Promise": {
277
+ "location": "global"
278
+ }
279
+ },
280
+ "return": "Promise<this>"
281
+ },
282
+ "docs": {
283
+ "text": "Display the next ku4-carousel-slide",
284
+ "tags": []
285
+ }
286
+ },
287
+ "previous": {
288
+ "complexType": {
289
+ "signature": "() => Promise<this>",
290
+ "parameters": [],
291
+ "references": {
292
+ "Promise": {
293
+ "location": "global"
294
+ }
295
+ },
296
+ "return": "Promise<this>"
297
+ },
298
+ "docs": {
299
+ "text": "Display the previous ku4-carousel-slide",
300
+ "tags": []
301
+ }
302
+ },
303
+ "slideTo": {
304
+ "complexType": {
305
+ "signature": "(number: any) => Promise<void>",
306
+ "parameters": [{
307
+ "tags": [{
308
+ "name": "param",
309
+ "text": "number - Slide number to slide to."
310
+ }],
311
+ "text": "- Slide number to slide to."
312
+ }],
313
+ "references": {
314
+ "Promise": {
315
+ "location": "global"
316
+ }
317
+ },
318
+ "return": "Promise<void>"
319
+ },
320
+ "docs": {
321
+ "text": "Slide to the slide number specified.",
322
+ "tags": [{
323
+ "name": "param",
324
+ "text": "number - Slide number to slide to."
325
+ }]
326
+ }
327
+ },
328
+ "pause": {
329
+ "complexType": {
330
+ "signature": "() => Promise<void>",
331
+ "parameters": [],
332
+ "references": {
333
+ "Promise": {
334
+ "location": "global"
335
+ }
336
+ },
337
+ "return": "Promise<void>"
338
+ },
339
+ "docs": {
340
+ "text": "Pause auto slide change",
341
+ "tags": []
342
+ }
343
+ },
344
+ "play": {
345
+ "complexType": {
346
+ "signature": "() => Promise<void>",
347
+ "parameters": [],
348
+ "references": {
349
+ "Promise": {
350
+ "location": "global"
351
+ }
352
+ },
353
+ "return": "Promise<void>"
354
+ },
355
+ "docs": {
356
+ "text": "Start auto slide change",
357
+ "tags": []
358
+ }
359
+ }
360
+ }; }
361
+ static get elementRef() { return "host"; }
362
+ }
@@ -0,0 +1,32 @@
1
+ :host {
2
+ position: relative;
3
+ display: block;
4
+ }
5
+
6
+ input[type=radio] {
7
+ appearance: none;
8
+ position: relative;
9
+ width: 20px;
10
+ height: 20px;
11
+ margin: 0;
12
+ padding: 0;
13
+ border: solid 1px #888;
14
+ border-radius: 50%;
15
+ box-sizing: border-box;
16
+ vertical-align: middle;
17
+ }
18
+ input[type=radio]:checked:after {
19
+ content: "";
20
+ position: absolute;
21
+ top: 2px;
22
+ left: 2px;
23
+ width: 14px;
24
+ height: 14px;
25
+ margin: 0;
26
+ padding: 0;
27
+ border: solid 1px #888;
28
+ border-radius: 50%;
29
+ box-sizing: border-box;
30
+ text-align: center;
31
+ background-color: #333;
32
+ }