ku4web-components 6.5.5 → 6.5.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (259) 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-f1391d35.js +6 -0
  5. package/dist/cjs/dom-5345ed9a.js +75 -0
  6. package/dist/cjs/index-065185f8.js +3093 -0
  7. package/dist/cjs/index-16f16ed9.js +14 -0
  8. package/dist/cjs/index-1a439af7.js +14 -0
  9. package/dist/cjs/index-436596bf.js +10 -0
  10. package/dist/cjs/index-49d3746b.js +10 -0
  11. package/dist/cjs/ku4-carousel-controls.cjs.entry.js +2 -2
  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 +3 -3
  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 +101 -6
  32. package/dist/cjs/loader.cjs.js +17 -1
  33. package/dist/cjs/{uid-d533dbb1.js → uid-7f3954c8.js} +1 -1
  34. package/dist/cjs/uid-a1348ea5.js +11 -0
  35. package/dist/collection/capabilities/a11y/aria.js +26 -0
  36. package/dist/collection/capabilities/angular/index.js +24 -0
  37. package/dist/collection/capabilities/decorators/deprecated.js +20 -0
  38. package/dist/collection/capabilities/decorators/index.js +3 -0
  39. package/dist/collection/capabilities/decorators/memoize.js +7 -0
  40. package/dist/collection/capabilities/dom/isFocusable.js +7 -0
  41. package/dist/collection/capabilities/dom/queryFocusable.js +2 -0
  42. package/dist/collection/capabilities/identity/uid.js +6 -0
  43. package/dist/collection/capabilities/mask/index.js +5 -0
  44. package/dist/collection/capabilities/mask/patterns/date.js +40 -0
  45. package/dist/collection/capabilities/mask/patterns/index.js +7 -0
  46. package/dist/collection/capabilities/react/index.js +25 -0
  47. package/dist/collection/capabilities/testing/html.js +14 -0
  48. package/dist/collection/capabilities/testing/styles.js +14 -0
  49. package/dist/collection/capabilities/vue/index.js +28 -0
  50. package/dist/collection/capabilities/vue3/index.js +26 -0
  51. package/dist/collection/collection-manifest.json +31 -0
  52. package/dist/collection/components/ku4-carousel/ku4-carousel.css +221 -0
  53. package/dist/collection/components/ku4-carousel/ku4-carousel.js +369 -0
  54. package/dist/collection/components/ku4-carousel-controls/ku4-carousel-controls.css +32 -0
  55. package/dist/collection/components/ku4-carousel-controls/ku4-carousel-controls.js +112 -0
  56. package/dist/collection/components/ku4-carousel-slide/ku4-carousel-slide.css +3 -0
  57. package/dist/collection/components/ku4-carousel-slide/ku4-carousel-slide.js +159 -0
  58. package/dist/collection/components/ku4-col/ku4-col.css +601 -0
  59. package/dist/collection/components/ku4-col/ku4-col.js +288 -0
  60. package/dist/collection/components/ku4-drawer/ku4-drawer.css +56 -0
  61. package/dist/collection/components/ku4-drawer/ku4-drawer.js +163 -0
  62. package/dist/collection/components/ku4-feature/ku4-feature.js +70 -0
  63. package/dist/collection/components/ku4-focus-trap/ku4-focus-trap.css +3 -0
  64. package/dist/collection/components/ku4-focus-trap/ku4-focus-trap.js +441 -0
  65. package/dist/collection/components/ku4-form/ku4-form.js +265 -0
  66. package/dist/collection/components/ku4-grid/ku4-grid.css +751 -0
  67. package/dist/collection/components/ku4-grid/ku4-grid.js +408 -0
  68. package/dist/collection/components/ku4-label/ku4-label.css +36 -0
  69. package/dist/collection/components/ku4-label/ku4-label.js +115 -0
  70. package/dist/collection/components/ku4-mask/ku4-mask.css +3 -0
  71. package/dist/collection/components/ku4-mask/ku4-mask.js +459 -0
  72. package/dist/collection/components/ku4-modal/ku4-modal.css +85 -0
  73. package/dist/collection/components/ku4-modal/ku4-modal.js +231 -0
  74. package/dist/collection/components/ku4-panel/ku4-panel.css +14 -0
  75. package/dist/collection/components/ku4-panel/ku4-panel.js +119 -0
  76. package/dist/collection/components/ku4-preview/ku4-preview.css +23 -0
  77. package/dist/collection/components/ku4-preview/ku4-preview.js +266 -0
  78. package/dist/collection/components/ku4-tab/ku4-tab.css +82 -0
  79. package/dist/collection/components/ku4-tab/ku4-tab.js +191 -0
  80. package/dist/collection/components/ku4-tab-list/ku4-tab-list.css +6 -0
  81. package/dist/collection/components/ku4-tab-list/ku4-tab-list.js +118 -0
  82. package/dist/collection/components/ku4-tab-panel/ku4-tab-panel.css +26 -0
  83. package/dist/collection/components/ku4-tab-panel/ku4-tab-panel.js +166 -0
  84. package/dist/collection/components/ku4-table/ku4-table.css +116 -0
  85. package/dist/collection/components/ku4-table/ku4-table.js +120 -0
  86. package/dist/collection/components/ku4-tooltip/ku4-tooltip.css +56 -0
  87. package/dist/collection/components/ku4-tooltip/ku4-tooltip.js +274 -0
  88. package/dist/collection/components/ku4-validation/ku4-validation.css +19 -0
  89. package/dist/collection/components/ku4-validation/ku4-validation.js +364 -0
  90. package/dist/collection/components/ku4-validation/validate.js +14 -0
  91. package/dist/collection/index.js +1 -0
  92. package/dist/collection/security.js +27 -0
  93. package/dist/esm/app-globals-0f993ce5.js +3 -0
  94. package/dist/esm/css-shim-10e6e2ae.js +4 -0
  95. package/dist/esm/dom-7cd9cf71.js +73 -0
  96. package/dist/esm/index-5448a818.js +3 -0
  97. package/dist/esm/index-6cfd87e4.js +3 -0
  98. package/dist/esm/index-77bdf1f1.js +3 -0
  99. package/dist/esm/index-a02dcfc8.js +3057 -0
  100. package/dist/esm/index-aa119486.js +3 -0
  101. package/dist/esm/ku4-carousel-controls.entry.js +2 -2
  102. package/dist/esm/ku4-carousel-slide.entry.js +1 -1
  103. package/dist/esm/ku4-carousel.entry.js +3 -3
  104. package/dist/esm/ku4-col.entry.js +1 -1
  105. package/dist/esm/ku4-drawer.entry.js +1 -1
  106. package/dist/esm/ku4-feature.entry.js +2 -2
  107. package/dist/esm/ku4-focus-trap.entry.js +3 -3
  108. package/dist/esm/ku4-form.entry.js +3 -3
  109. package/dist/esm/ku4-grid.entry.js +1 -1
  110. package/dist/esm/ku4-label.entry.js +2 -2
  111. package/dist/esm/ku4-mask.entry.js +3 -3
  112. package/dist/esm/ku4-modal.entry.js +3 -3
  113. package/dist/esm/ku4-panel.entry.js +1 -1
  114. package/dist/esm/ku4-preview.entry.js +34 -5
  115. package/dist/esm/ku4-tab-list.entry.js +4 -4
  116. package/dist/esm/ku4-tab-panel.entry.js +3 -3
  117. package/dist/esm/ku4-tab.entry.js +3 -3
  118. package/dist/esm/ku4-table.entry.js +1 -1
  119. package/dist/esm/ku4-tooltip.entry.js +2 -2
  120. package/dist/esm/ku4-validation.entry.js +2 -2
  121. package/dist/esm/ku4web-components.js +101 -6
  122. package/dist/esm/loader.js +17 -1
  123. package/dist/esm/uid-3716c2c4.js +9 -0
  124. package/dist/esm/{uid-fbebccfd.js → uid-d593801c.js} +1 -1
  125. package/dist/esm-es5/index-5448a818.js +1 -0
  126. package/dist/esm-es5/index-77bdf1f1.js +1 -0
  127. package/dist/esm-es5/ku4-carousel-controls.entry.js +1 -1
  128. package/dist/esm-es5/ku4-carousel.entry.js +1 -1
  129. package/dist/esm-es5/ku4-feature.entry.js +1 -1
  130. package/dist/esm-es5/ku4-focus-trap.entry.js +1 -1
  131. package/dist/esm-es5/ku4-form.entry.js +1 -1
  132. package/dist/esm-es5/ku4-label.entry.js +1 -1
  133. package/dist/esm-es5/ku4-mask.entry.js +1 -1
  134. package/dist/esm-es5/ku4-modal.entry.js +1 -1
  135. package/dist/esm-es5/ku4-preview.entry.js +1 -1
  136. package/dist/esm-es5/ku4-tab-list.entry.js +1 -1
  137. package/dist/esm-es5/ku4-tab-panel.entry.js +1 -1
  138. package/dist/esm-es5/ku4-tab.entry.js +1 -1
  139. package/dist/esm-es5/ku4-tooltip.entry.js +1 -1
  140. package/dist/esm-es5/ku4-validation.entry.js +1 -1
  141. package/dist/esm-es5/uid-d593801c.js +1 -0
  142. package/dist/index.js +1 -1
  143. package/dist/ku4web-components/app-globals-0f993ce5.js +3 -0
  144. package/dist/ku4web-components/app-globals-497eb362.system.js +1 -0
  145. package/dist/ku4web-components/css-shim-10e6e2ae.js +4 -0
  146. package/dist/ku4web-components/css-shim-c8dd4551.system.js +1 -0
  147. package/dist/ku4web-components/dom-67d1e45e.system.js +21 -0
  148. package/dist/ku4web-components/dom-7cd9cf71.js +73 -0
  149. package/dist/ku4web-components/index-1c93827a.system.js +1 -0
  150. package/dist/ku4web-components/index-29f2b09f.system.js +1 -0
  151. package/dist/ku4web-components/index-5d0cb00d.system.js +1 -0
  152. package/dist/ku4web-components/index-6cfd87e4.js +3 -0
  153. package/dist/ku4web-components/index-a02dcfc8.js +3057 -0
  154. package/dist/ku4web-components/index-aa119486.js +3 -0
  155. package/dist/ku4web-components/index.esm.js +1 -0
  156. package/dist/ku4web-components/index.system.js +1 -0
  157. package/dist/ku4web-components/ku4-carousel-controls.entry.js +89 -0
  158. package/dist/ku4web-components/ku4-carousel-controls.system.entry.js +1 -0
  159. package/dist/ku4web-components/ku4-carousel-slide.entry.js +47 -0
  160. package/dist/ku4web-components/ku4-carousel-slide.system.entry.js +1 -0
  161. package/dist/ku4web-components/ku4-carousel.entry.js +175 -0
  162. package/dist/ku4web-components/ku4-carousel.system.entry.js +1 -0
  163. package/dist/ku4web-components/ku4-col.entry.js +75 -0
  164. package/dist/ku4web-components/ku4-col.system.entry.js +1 -0
  165. package/dist/ku4web-components/ku4-drawer.entry.js +35 -0
  166. package/dist/ku4web-components/ku4-drawer.system.entry.js +1 -0
  167. package/dist/ku4web-components/ku4-feature.entry.js +29 -0
  168. package/dist/ku4web-components/ku4-feature.system.entry.js +1 -0
  169. package/dist/ku4web-components/ku4-focus-trap.entry.js +323 -0
  170. package/dist/ku4web-components/ku4-focus-trap.system.entry.js +1 -0
  171. package/dist/ku4web-components/ku4-form.entry.js +120 -0
  172. package/dist/ku4web-components/ku4-form.system.entry.js +1 -0
  173. package/dist/ku4web-components/ku4-grid.entry.js +108 -0
  174. package/dist/ku4web-components/ku4-grid.system.entry.js +1 -0
  175. package/dist/ku4web-components/ku4-label.entry.js +70 -0
  176. package/dist/ku4web-components/ku4-label.system.entry.js +1 -0
  177. package/dist/ku4web-components/ku4-mask.entry.js +343 -0
  178. package/dist/ku4web-components/ku4-mask.system.entry.js +1 -0
  179. package/dist/ku4web-components/ku4-modal.entry.js +80 -0
  180. package/dist/ku4web-components/ku4-modal.system.entry.js +1 -0
  181. package/dist/ku4web-components/ku4-panel.entry.js +49 -0
  182. package/dist/ku4web-components/ku4-panel.system.entry.js +1 -0
  183. package/dist/ku4web-components/ku4-preview.entry.js +128 -0
  184. package/dist/ku4web-components/ku4-preview.system.entry.js +1 -0
  185. package/dist/ku4web-components/ku4-tab-list.entry.js +76 -0
  186. package/dist/ku4web-components/ku4-tab-list.system.entry.js +1 -0
  187. package/dist/ku4web-components/ku4-tab-panel.entry.js +72 -0
  188. package/dist/ku4web-components/ku4-tab-panel.system.entry.js +1 -0
  189. package/dist/ku4web-components/ku4-tab.entry.js +63 -0
  190. package/dist/ku4web-components/ku4-tab.system.entry.js +1 -0
  191. package/dist/ku4web-components/ku4-table.entry.js +79 -0
  192. package/dist/ku4web-components/ku4-table.system.entry.js +1 -0
  193. package/dist/ku4web-components/ku4-tooltip.entry.js +120 -0
  194. package/dist/ku4web-components/ku4-tooltip.system.entry.js +1 -0
  195. package/dist/ku4web-components/ku4-validation.entry.js +162 -0
  196. package/dist/ku4web-components/ku4-validation.system.entry.js +1 -0
  197. package/dist/ku4web-components/ku4web-components.css +299 -1
  198. package/dist/ku4web-components/ku4web-components.esm.js +129 -1
  199. package/dist/ku4web-components/ku4web-components.js +1 -1
  200. package/dist/ku4web-components/ku4web-components.system.js +1 -0
  201. package/dist/ku4web-components/{p-c6a2f4ba.entry.js → p-046b3990.entry.js} +1 -1
  202. package/dist/ku4web-components/{p-018d598f.entry.js → p-0b777b57.entry.js} +1 -1
  203. package/dist/ku4web-components/p-0de744b1.system.js +1 -0
  204. package/dist/ku4web-components/{p-c760ec1e.system.entry.js → p-0f1646ca.system.entry.js} +1 -1
  205. package/dist/ku4web-components/p-14752b72.system.js +1 -0
  206. package/dist/ku4web-components/{p-5d39e051.system.entry.js → p-17c2a7ac.system.entry.js} +1 -1
  207. package/dist/ku4web-components/{p-536d6073.entry.js → p-1abe6f26.entry.js} +1 -1
  208. package/dist/ku4web-components/{p-7bac5d20.system.entry.js → p-1e19bc01.system.entry.js} +1 -1
  209. package/dist/ku4web-components/{p-dfc33643.system.entry.js → p-27647af0.system.entry.js} +1 -1
  210. package/dist/ku4web-components/p-2ee63f57.system.js +1 -1
  211. package/dist/ku4web-components/{p-973be48d.system.entry.js → p-3deab7f6.system.entry.js} +1 -1
  212. package/dist/ku4web-components/{p-23b35ab3.system.entry.js → p-4ecd9b1d.system.entry.js} +1 -1
  213. package/dist/ku4web-components/p-563d1517.system.js +1 -0
  214. package/dist/ku4web-components/p-5a54ccf4.js +1 -0
  215. package/dist/ku4web-components/{p-2681e152.system.entry.js → p-5e8921ef.system.entry.js} +1 -1
  216. package/dist/ku4web-components/{p-6459c75c.system.entry.js → p-6509d3e7.system.entry.js} +1 -1
  217. package/dist/ku4web-components/p-791e2dfc.js +1 -0
  218. package/dist/ku4web-components/{p-4a012d6d.entry.js → p-7b6ca6a8.entry.js} +1 -1
  219. package/dist/ku4web-components/{p-ec165afd.system.entry.js → p-7b93a362.system.entry.js} +1 -1
  220. package/dist/ku4web-components/{p-2faea8a9.system.entry.js → p-8173d389.system.entry.js} +1 -1
  221. package/dist/ku4web-components/{p-13c90d3d.system.entry.js → p-96033515.system.entry.js} +1 -1
  222. package/dist/ku4web-components/{p-e7d401cc.system.entry.js → p-9778d082.system.entry.js} +1 -1
  223. package/dist/ku4web-components/{p-09fb8c34.entry.js → p-9b01a63a.entry.js} +1 -1
  224. package/dist/ku4web-components/p-a110d244.js +1 -0
  225. package/dist/ku4web-components/{p-ff9db3e7.entry.js → p-ac7884f3.entry.js} +1 -1
  226. package/dist/ku4web-components/{p-27d5ad45.system.entry.js → p-ae7ce1fe.system.entry.js} +1 -1
  227. package/dist/ku4web-components/{p-be0d8b6a.entry.js → p-b1680ef4.entry.js} +1 -1
  228. package/dist/ku4web-components/{p-2f1425ac.entry.js → p-bb5410b5.entry.js} +1 -1
  229. package/dist/ku4web-components/{p-cbee5388.system.entry.js → p-bb698020.system.entry.js} +1 -1
  230. package/dist/ku4web-components/{p-eed33b36.entry.js → p-d42bd64d.entry.js} +1 -1
  231. package/dist/ku4web-components/{p-7a3871e3.entry.js → p-d4877fdf.entry.js} +1 -1
  232. package/dist/ku4web-components/{p-1ebea98a.entry.js → p-da8a8b83.entry.js} +1 -1
  233. package/dist/ku4web-components/{p-507093a6.entry.js → p-de3b2ba1.entry.js} +1 -1
  234. package/dist/ku4web-components/{p-f791cd06.entry.js → p-e11fbd79.entry.js} +1 -1
  235. package/dist/ku4web-components/{p-991d53c6.entry.js → p-ea1961f5.entry.js} +1 -1
  236. package/dist/ku4web-components/shadow-css-38a1326b.js +388 -0
  237. package/dist/ku4web-components/shadow-css-7fde17ac.system.js +13 -0
  238. package/dist/ku4web-components/uid-2ed9f227.system.js +1 -0
  239. package/dist/ku4web-components/uid-3716c2c4.js +9 -0
  240. package/package.json +5 -5
  241. package/react/index.js +1 -1
  242. package/react/index.mjs +1 -1
  243. package/vue/index.js +1 -1
  244. package/vue/index.mjs +1 -1
  245. package/vue3/index.js +1 -1
  246. package/vue3/index.mjs +1 -1
  247. package/dist/cjs/index-57e2cfa5.js +0 -10
  248. package/dist/cjs/index-b46d22c6.js +0 -14
  249. package/dist/esm/index-919b08e6.js +0 -3
  250. package/dist/esm/index-f9890388.js +0 -3
  251. package/dist/esm-es5/index-919b08e6.js +0 -1
  252. package/dist/esm-es5/index-f9890388.js +0 -1
  253. package/dist/esm-es5/uid-fbebccfd.js +0 -1
  254. package/dist/ku4web-components/p-16f6027a.js +0 -1
  255. package/dist/ku4web-components/p-50ea6684.js +0 -1
  256. package/dist/ku4web-components/p-c38c9cd1.system.js +0 -1
  257. package/dist/ku4web-components/p-cbb6fb91.js +0 -1
  258. package/dist/ku4web-components/p-e9770900.system.js +0 -1
  259. package/dist/ku4web-components/p-f8a2bf9b.system.js +0 -1
@@ -0,0 +1,601 @@
1
+ :host {
2
+ position: relative;
3
+ display: block;
4
+ }
5
+
6
+ @media only screen and (min-width: 1px) {
7
+ :host(.start-xs-0) {
8
+ grid-column-start: 1;
9
+ }
10
+
11
+ :host(.start-xs-1) {
12
+ grid-column-start: 2;
13
+ }
14
+
15
+ :host(.start-xs-2) {
16
+ grid-column-start: 3;
17
+ }
18
+
19
+ :host(.start-xs-3) {
20
+ grid-column-start: 4;
21
+ }
22
+
23
+ :host(.start-xs-4) {
24
+ grid-column-start: 5;
25
+ }
26
+
27
+ :host(.start-xs-5) {
28
+ grid-column-start: 6;
29
+ }
30
+
31
+ :host(.start-xs-6) {
32
+ grid-column-start: 7;
33
+ }
34
+
35
+ :host(.start-xs-7) {
36
+ grid-column-start: 8;
37
+ }
38
+
39
+ :host(.start-xs-8) {
40
+ grid-column-start: 9;
41
+ }
42
+
43
+ :host(.start-xs-9) {
44
+ grid-column-start: 10;
45
+ }
46
+
47
+ :host(.start-xs-10) {
48
+ grid-column-start: 11;
49
+ }
50
+
51
+ :host(.start-xs-11) {
52
+ grid-column-start: 12;
53
+ }
54
+
55
+ :host(.start-xs-12) {
56
+ grid-column-start: 13;
57
+ }
58
+
59
+ :host(.span-xs-1) {
60
+ grid-column-end: span 1;
61
+ }
62
+
63
+ :host(.span-xs-2) {
64
+ grid-column-end: span 2;
65
+ }
66
+
67
+ :host(.span-xs-3) {
68
+ grid-column-end: span 3;
69
+ }
70
+
71
+ :host(.span-xs-4) {
72
+ grid-column-end: span 4;
73
+ }
74
+
75
+ :host(.span-xs-5) {
76
+ grid-column-end: span 5;
77
+ }
78
+
79
+ :host(.span-xs-6) {
80
+ grid-column-end: span 6;
81
+ }
82
+
83
+ :host(.span-xs-7) {
84
+ grid-column-end: span 7;
85
+ }
86
+
87
+ :host(.span-xs-8) {
88
+ grid-column-end: span 8;
89
+ }
90
+
91
+ :host(.span-xs-9) {
92
+ grid-column-end: span 9;
93
+ }
94
+
95
+ :host(.span-xs-10) {
96
+ grid-column-end: span 10;
97
+ }
98
+
99
+ :host(.span-xs-11) {
100
+ grid-column-end: span 11;
101
+ }
102
+
103
+ :host(.span-xs-12) {
104
+ grid-column-end: span 12;
105
+ }
106
+
107
+ :host(.order-xs-1) {
108
+ order: 1;
109
+ }
110
+
111
+ :host(.order-xs-2) {
112
+ order: 2;
113
+ }
114
+
115
+ :host(.order-xs-3) {
116
+ order: 3;
117
+ }
118
+
119
+ :host(.order-xs-4) {
120
+ order: 4;
121
+ }
122
+
123
+ :host(.order-xs-5) {
124
+ order: 5;
125
+ }
126
+
127
+ :host(.order-xs-6) {
128
+ order: 6;
129
+ }
130
+
131
+ :host(.order-xs-7) {
132
+ order: 7;
133
+ }
134
+
135
+ :host(.order-xs-8) {
136
+ order: 8;
137
+ }
138
+
139
+ :host(.order-xs-9) {
140
+ order: 9;
141
+ }
142
+
143
+ :host(.order-xs-10) {
144
+ order: 10;
145
+ }
146
+
147
+ :host(.order-xs-11) {
148
+ order: 11;
149
+ }
150
+
151
+ :host(.order-xs-12) {
152
+ order: 12;
153
+ }
154
+ }
155
+ @media only screen and (min-width: 768px) {
156
+ :host(.start-sm-0) {
157
+ grid-column-start: 1;
158
+ }
159
+
160
+ :host(.start-sm-1) {
161
+ grid-column-start: 2;
162
+ }
163
+
164
+ :host(.start-sm-2) {
165
+ grid-column-start: 3;
166
+ }
167
+
168
+ :host(.start-sm-3) {
169
+ grid-column-start: 4;
170
+ }
171
+
172
+ :host(.start-sm-4) {
173
+ grid-column-start: 5;
174
+ }
175
+
176
+ :host(.start-sm-5) {
177
+ grid-column-start: 6;
178
+ }
179
+
180
+ :host(.start-sm-6) {
181
+ grid-column-start: 7;
182
+ }
183
+
184
+ :host(.start-sm-7) {
185
+ grid-column-start: 8;
186
+ }
187
+
188
+ :host(.start-sm-8) {
189
+ grid-column-start: 9;
190
+ }
191
+
192
+ :host(.start-sm-9) {
193
+ grid-column-start: 10;
194
+ }
195
+
196
+ :host(.start-sm-10) {
197
+ grid-column-start: 11;
198
+ }
199
+
200
+ :host(.start-sm-11) {
201
+ grid-column-start: 12;
202
+ }
203
+
204
+ :host(.start-sm-12) {
205
+ grid-column-start: 13;
206
+ }
207
+
208
+ :host(.span-sm-1) {
209
+ grid-column-end: span 1;
210
+ }
211
+
212
+ :host(.span-sm-2) {
213
+ grid-column-end: span 2;
214
+ }
215
+
216
+ :host(.span-sm-3) {
217
+ grid-column-end: span 3;
218
+ }
219
+
220
+ :host(.span-sm-4) {
221
+ grid-column-end: span 4;
222
+ }
223
+
224
+ :host(.span-sm-5) {
225
+ grid-column-end: span 5;
226
+ }
227
+
228
+ :host(.span-sm-6) {
229
+ grid-column-end: span 6;
230
+ }
231
+
232
+ :host(.span-sm-7) {
233
+ grid-column-end: span 7;
234
+ }
235
+
236
+ :host(.span-sm-8) {
237
+ grid-column-end: span 8;
238
+ }
239
+
240
+ :host(.span-sm-9) {
241
+ grid-column-end: span 9;
242
+ }
243
+
244
+ :host(.span-sm-10) {
245
+ grid-column-end: span 10;
246
+ }
247
+
248
+ :host(.span-sm-11) {
249
+ grid-column-end: span 11;
250
+ }
251
+
252
+ :host(.span-sm-12) {
253
+ grid-column-end: span 12;
254
+ }
255
+
256
+ :host(.order-sm-1) {
257
+ order: 1;
258
+ }
259
+
260
+ :host(.order-sm-2) {
261
+ order: 2;
262
+ }
263
+
264
+ :host(.order-sm-3) {
265
+ order: 3;
266
+ }
267
+
268
+ :host(.order-sm-4) {
269
+ order: 4;
270
+ }
271
+
272
+ :host(.order-sm-5) {
273
+ order: 5;
274
+ }
275
+
276
+ :host(.order-sm-6) {
277
+ order: 6;
278
+ }
279
+
280
+ :host(.order-sm-7) {
281
+ order: 7;
282
+ }
283
+
284
+ :host(.order-sm-8) {
285
+ order: 8;
286
+ }
287
+
288
+ :host(.order-sm-9) {
289
+ order: 9;
290
+ }
291
+
292
+ :host(.order-sm-10) {
293
+ order: 10;
294
+ }
295
+
296
+ :host(.order-sm-11) {
297
+ order: 11;
298
+ }
299
+
300
+ :host(.order-sm-12) {
301
+ order: 12;
302
+ }
303
+ }
304
+ @media only screen and (min-width: 992px) {
305
+ :host(.start-md-0) {
306
+ grid-column-start: 1;
307
+ }
308
+
309
+ :host(.start-md-1) {
310
+ grid-column-start: 2;
311
+ }
312
+
313
+ :host(.start-md-2) {
314
+ grid-column-start: 3;
315
+ }
316
+
317
+ :host(.start-md-3) {
318
+ grid-column-start: 4;
319
+ }
320
+
321
+ :host(.start-md-4) {
322
+ grid-column-start: 5;
323
+ }
324
+
325
+ :host(.start-md-5) {
326
+ grid-column-start: 6;
327
+ }
328
+
329
+ :host(.start-md-6) {
330
+ grid-column-start: 7;
331
+ }
332
+
333
+ :host(.start-md-7) {
334
+ grid-column-start: 8;
335
+ }
336
+
337
+ :host(.start-md-8) {
338
+ grid-column-start: 9;
339
+ }
340
+
341
+ :host(.start-md-9) {
342
+ grid-column-start: 10;
343
+ }
344
+
345
+ :host(.start-md-10) {
346
+ grid-column-start: 11;
347
+ }
348
+
349
+ :host(.start-md-11) {
350
+ grid-column-start: 12;
351
+ }
352
+
353
+ :host(.start-md-12) {
354
+ grid-column-start: 13;
355
+ }
356
+
357
+ :host(.span-md-1) {
358
+ grid-column-end: span 1;
359
+ }
360
+
361
+ :host(.span-md-2) {
362
+ grid-column-end: span 2;
363
+ }
364
+
365
+ :host(.span-md-3) {
366
+ grid-column-end: span 3;
367
+ }
368
+
369
+ :host(.span-md-4) {
370
+ grid-column-end: span 4;
371
+ }
372
+
373
+ :host(.span-md-5) {
374
+ grid-column-end: span 5;
375
+ }
376
+
377
+ :host(.span-md-6) {
378
+ grid-column-end: span 6;
379
+ }
380
+
381
+ :host(.span-md-7) {
382
+ grid-column-end: span 7;
383
+ }
384
+
385
+ :host(.span-md-8) {
386
+ grid-column-end: span 8;
387
+ }
388
+
389
+ :host(.span-md-9) {
390
+ grid-column-end: span 9;
391
+ }
392
+
393
+ :host(.span-md-10) {
394
+ grid-column-end: span 10;
395
+ }
396
+
397
+ :host(.span-md-11) {
398
+ grid-column-end: span 11;
399
+ }
400
+
401
+ :host(.span-md-12) {
402
+ grid-column-end: span 12;
403
+ }
404
+
405
+ :host(.order-md-1) {
406
+ order: 1;
407
+ }
408
+
409
+ :host(.order-md-2) {
410
+ order: 2;
411
+ }
412
+
413
+ :host(.order-md-3) {
414
+ order: 3;
415
+ }
416
+
417
+ :host(.order-md-4) {
418
+ order: 4;
419
+ }
420
+
421
+ :host(.order-md-5) {
422
+ order: 5;
423
+ }
424
+
425
+ :host(.order-md-6) {
426
+ order: 6;
427
+ }
428
+
429
+ :host(.order-md-7) {
430
+ order: 7;
431
+ }
432
+
433
+ :host(.order-md-8) {
434
+ order: 8;
435
+ }
436
+
437
+ :host(.order-md-9) {
438
+ order: 9;
439
+ }
440
+
441
+ :host(.order-md-10) {
442
+ order: 10;
443
+ }
444
+
445
+ :host(.order-md-11) {
446
+ order: 11;
447
+ }
448
+
449
+ :host(.order-md-12) {
450
+ order: 12;
451
+ }
452
+ }
453
+ @media only screen and (min-width: 1200px) {
454
+ :host(.start-lg-0) {
455
+ grid-column-start: 1;
456
+ }
457
+
458
+ :host(.start-lg-1) {
459
+ grid-column-start: 2;
460
+ }
461
+
462
+ :host(.start-lg-2) {
463
+ grid-column-start: 3;
464
+ }
465
+
466
+ :host(.start-lg-3) {
467
+ grid-column-start: 4;
468
+ }
469
+
470
+ :host(.start-lg-4) {
471
+ grid-column-start: 5;
472
+ }
473
+
474
+ :host(.start-lg-5) {
475
+ grid-column-start: 6;
476
+ }
477
+
478
+ :host(.start-lg-6) {
479
+ grid-column-start: 7;
480
+ }
481
+
482
+ :host(.start-lg-7) {
483
+ grid-column-start: 8;
484
+ }
485
+
486
+ :host(.start-lg-8) {
487
+ grid-column-start: 9;
488
+ }
489
+
490
+ :host(.start-lg-9) {
491
+ grid-column-start: 10;
492
+ }
493
+
494
+ :host(.start-lg-10) {
495
+ grid-column-start: 11;
496
+ }
497
+
498
+ :host(.start-lg-11) {
499
+ grid-column-start: 12;
500
+ }
501
+
502
+ :host(.start-lg-12) {
503
+ grid-column-start: 13;
504
+ }
505
+
506
+ :host(.span-lg-1) {
507
+ grid-column-end: span 1;
508
+ }
509
+
510
+ :host(.span-lg-2) {
511
+ grid-column-end: span 2;
512
+ }
513
+
514
+ :host(.span-lg-3) {
515
+ grid-column-end: span 3;
516
+ }
517
+
518
+ :host(.span-lg-4) {
519
+ grid-column-end: span 4;
520
+ }
521
+
522
+ :host(.span-lg-5) {
523
+ grid-column-end: span 5;
524
+ }
525
+
526
+ :host(.span-lg-6) {
527
+ grid-column-end: span 6;
528
+ }
529
+
530
+ :host(.span-lg-7) {
531
+ grid-column-end: span 7;
532
+ }
533
+
534
+ :host(.span-lg-8) {
535
+ grid-column-end: span 8;
536
+ }
537
+
538
+ :host(.span-lg-9) {
539
+ grid-column-end: span 9;
540
+ }
541
+
542
+ :host(.span-lg-10) {
543
+ grid-column-end: span 10;
544
+ }
545
+
546
+ :host(.span-lg-11) {
547
+ grid-column-end: span 11;
548
+ }
549
+
550
+ :host(.span-lg-12) {
551
+ grid-column-end: span 12;
552
+ }
553
+
554
+ :host(.order-lg-1) {
555
+ order: 1;
556
+ }
557
+
558
+ :host(.order-lg-2) {
559
+ order: 2;
560
+ }
561
+
562
+ :host(.order-lg-3) {
563
+ order: 3;
564
+ }
565
+
566
+ :host(.order-lg-4) {
567
+ order: 4;
568
+ }
569
+
570
+ :host(.order-lg-5) {
571
+ order: 5;
572
+ }
573
+
574
+ :host(.order-lg-6) {
575
+ order: 6;
576
+ }
577
+
578
+ :host(.order-lg-7) {
579
+ order: 7;
580
+ }
581
+
582
+ :host(.order-lg-8) {
583
+ order: 8;
584
+ }
585
+
586
+ :host(.order-lg-9) {
587
+ order: 9;
588
+ }
589
+
590
+ :host(.order-lg-10) {
591
+ order: 10;
592
+ }
593
+
594
+ :host(.order-lg-11) {
595
+ order: 11;
596
+ }
597
+
598
+ :host(.order-lg-12) {
599
+ order: 12;
600
+ }
601
+ }