@sk-web-gui/core 0.1.42 → 0.1.43

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 (394) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +5 -5
  3. package/dist/cjs/colors.js +140 -0
  4. package/dist/cjs/colors.js.map +1 -0
  5. package/dist/cjs/components/accordion.js +86 -0
  6. package/dist/cjs/components/accordion.js.map +1 -0
  7. package/dist/cjs/components/alert.js +71 -0
  8. package/dist/cjs/components/alert.js.map +1 -0
  9. package/dist/cjs/components/avatar.js +78 -0
  10. package/dist/cjs/components/avatar.js.map +1 -0
  11. package/dist/cjs/components/badge.js +53 -0
  12. package/dist/cjs/components/badge.js.map +1 -0
  13. package/dist/cjs/components/breadcrumb.js +23 -0
  14. package/dist/cjs/components/breadcrumb.js.map +1 -0
  15. package/dist/cjs/components/button-group.js +50 -0
  16. package/dist/cjs/components/button-group.js.map +1 -0
  17. package/dist/cjs/components/button.js +154 -0
  18. package/dist/cjs/components/button.js.map +1 -0
  19. package/dist/cjs/components/calendar.js +76 -0
  20. package/dist/cjs/components/calendar.js.map +1 -0
  21. package/dist/cjs/components/card.js +59 -0
  22. package/dist/cjs/components/card.js.map +1 -0
  23. package/dist/cjs/components/checkbox.js +92 -0
  24. package/dist/cjs/components/checkbox.js.map +1 -0
  25. package/dist/cjs/components/code.js +21 -0
  26. package/dist/cjs/components/code.js.map +1 -0
  27. package/dist/cjs/components/cookie-consent.js +35 -0
  28. package/dist/cjs/components/cookie-consent.js.map +1 -0
  29. package/dist/cjs/components/divider.js +24 -0
  30. package/dist/cjs/components/divider.js.map +1 -0
  31. package/dist/cjs/components/dot.js +70 -0
  32. package/dist/cjs/components/dot.js.map +1 -0
  33. package/dist/cjs/components/footer.js +39 -0
  34. package/dist/cjs/components/footer.js.map +1 -0
  35. package/dist/cjs/components/forms.js +225 -0
  36. package/dist/cjs/components/forms.js.map +1 -0
  37. package/dist/cjs/components/header.js +34 -0
  38. package/dist/cjs/components/header.js.map +1 -0
  39. package/dist/cjs/components/icon-button.js +17 -0
  40. package/dist/cjs/components/icon-button.js.map +1 -0
  41. package/dist/cjs/components/icon.js +20 -0
  42. package/dist/cjs/components/icon.js.map +1 -0
  43. package/dist/cjs/components/kbd.js +21 -0
  44. package/dist/cjs/components/kbd.js.map +1 -0
  45. package/dist/cjs/components/link.js +29 -0
  46. package/dist/cjs/components/link.js.map +1 -0
  47. package/dist/cjs/components/message.js +63 -0
  48. package/dist/cjs/components/message.js.map +1 -0
  49. package/dist/cjs/components/modal.js +35 -0
  50. package/dist/cjs/components/modal.js.map +1 -0
  51. package/dist/cjs/components/notification.js +58 -0
  52. package/dist/cjs/components/notification.js.map +1 -0
  53. package/dist/cjs/components/pagination.js +66 -0
  54. package/dist/cjs/components/pagination.js.map +1 -0
  55. package/dist/cjs/components/radio.js +95 -0
  56. package/dist/cjs/components/radio.js.map +1 -0
  57. package/dist/cjs/components/switch.js +107 -0
  58. package/dist/cjs/components/switch.js.map +1 -0
  59. package/dist/cjs/components/table.js +23 -0
  60. package/dist/cjs/components/table.js.map +1 -0
  61. package/dist/cjs/components/tag.js +88 -0
  62. package/dist/cjs/components/tag.js.map +1 -0
  63. package/dist/cjs/components/types.js +10 -0
  64. package/dist/cjs/components/types.js.map +1 -0
  65. package/dist/cjs/components/user-menu.js +33 -0
  66. package/dist/cjs/components/user-menu.js.map +1 -0
  67. package/dist/cjs/components/zebratable.js +70 -0
  68. package/dist/cjs/components/zebratable.js.map +1 -0
  69. package/dist/cjs/index.js +282 -0
  70. package/dist/cjs/index.js.map +1 -0
  71. package/dist/cjs/with-opacity.js +15 -0
  72. package/dist/cjs/with-opacity.js.map +1 -0
  73. package/dist/esm/colors.js +137 -0
  74. package/dist/esm/colors.js.map +1 -0
  75. package/dist/esm/components/accordion.js +76 -0
  76. package/dist/esm/components/accordion.js.map +1 -0
  77. package/dist/esm/components/alert.js +67 -0
  78. package/dist/esm/components/alert.js.map +1 -0
  79. package/dist/esm/components/avatar.js +68 -0
  80. package/dist/esm/components/avatar.js.map +1 -0
  81. package/dist/esm/components/badge.js +48 -0
  82. package/dist/esm/components/badge.js.map +1 -0
  83. package/dist/esm/components/breadcrumb.js +13 -0
  84. package/dist/esm/components/breadcrumb.js.map +1 -0
  85. package/dist/esm/components/button-group.js +40 -0
  86. package/dist/esm/components/button-group.js.map +1 -0
  87. package/dist/esm/components/button.js +197 -0
  88. package/dist/esm/components/button.js.map +1 -0
  89. package/dist/esm/components/calendar.js +66 -0
  90. package/dist/esm/components/calendar.js.map +1 -0
  91. package/dist/esm/components/card.js +49 -0
  92. package/dist/esm/components/card.js.map +1 -0
  93. package/dist/esm/components/checkbox.js +110 -0
  94. package/dist/esm/components/checkbox.js.map +1 -0
  95. package/dist/esm/components/code.js +11 -0
  96. package/dist/esm/components/code.js.map +1 -0
  97. package/dist/esm/components/cookie-consent.js +25 -0
  98. package/dist/esm/components/cookie-consent.js.map +1 -0
  99. package/dist/esm/components/divider.js +14 -0
  100. package/dist/esm/components/divider.js.map +1 -0
  101. package/dist/esm/components/dot.js +61 -0
  102. package/dist/esm/components/dot.js.map +1 -0
  103. package/dist/esm/components/footer.js +29 -0
  104. package/dist/esm/components/footer.js.map +1 -0
  105. package/dist/esm/components/forms.js +217 -0
  106. package/dist/esm/components/forms.js.map +1 -0
  107. package/dist/esm/components/header.js +29 -0
  108. package/dist/esm/components/header.js.map +1 -0
  109. package/dist/esm/components/icon-button.js +7 -0
  110. package/dist/esm/components/icon-button.js.map +1 -0
  111. package/dist/esm/components/icon.js +10 -0
  112. package/dist/esm/components/icon.js.map +1 -0
  113. package/dist/esm/components/kbd.js +11 -0
  114. package/dist/esm/components/kbd.js.map +1 -0
  115. package/dist/esm/components/link.js +19 -0
  116. package/dist/esm/components/link.js.map +1 -0
  117. package/dist/esm/components/message.js +53 -0
  118. package/dist/esm/components/message.js.map +1 -0
  119. package/dist/esm/components/modal.js +25 -0
  120. package/dist/esm/components/modal.js.map +1 -0
  121. package/dist/esm/components/notification.js +48 -0
  122. package/dist/esm/components/notification.js.map +1 -0
  123. package/dist/esm/components/pagination.js +56 -0
  124. package/dist/esm/components/pagination.js.map +1 -0
  125. package/dist/esm/components/radio.js +88 -0
  126. package/dist/esm/components/radio.js.map +1 -0
  127. package/dist/esm/components/switch.js +98 -0
  128. package/dist/esm/components/switch.js.map +1 -0
  129. package/dist/esm/components/table.js +13 -0
  130. package/dist/esm/components/table.js.map +1 -0
  131. package/dist/esm/components/tag.js +84 -0
  132. package/dist/esm/components/tag.js.map +1 -0
  133. package/dist/esm/components/types.js +3 -0
  134. package/dist/esm/components/types.js.map +1 -0
  135. package/dist/esm/components/user-menu.js +23 -0
  136. package/dist/esm/components/user-menu.js.map +1 -0
  137. package/dist/esm/components/zebratable.js +60 -0
  138. package/dist/esm/components/zebratable.js.map +1 -0
  139. package/dist/esm/index.js +327 -0
  140. package/dist/esm/index.js.map +1 -0
  141. package/dist/esm/with-opacity.js +10 -0
  142. package/dist/esm/with-opacity.js.map +1 -0
  143. package/dist/types/accordion/index.d.ts +1 -0
  144. package/dist/types/accordion/src/accordion.d.ts +17 -0
  145. package/dist/types/accordion/src/index.d.ts +1 -0
  146. package/dist/types/accordion/src/styles.d.ts +1 -0
  147. package/dist/types/accordion/stories/accordion.stories.d.ts +40 -0
  148. package/dist/types/alert/index.d.ts +1 -0
  149. package/dist/types/alert/src/alert.d.ts +15 -0
  150. package/dist/types/alert/src/index.d.ts +8 -0
  151. package/dist/types/alert/src/styles.d.ts +2 -0
  152. package/dist/types/breadcrumb/index.d.ts +1 -0
  153. package/dist/types/breadcrumb/src/breadcrumb.d.ts +34 -0
  154. package/dist/types/breadcrumb/src/index.d.ts +10 -0
  155. package/dist/types/breadcrumb/stories/breadcrumb.stories.d.ts +28 -0
  156. package/dist/types/button/index.d.ts +1 -0
  157. package/dist/types/button/src/button-group.d.ts +20 -0
  158. package/dist/types/button/src/button.d.ts +21 -0
  159. package/dist/types/button/src/icon-button.d.ts +17 -0
  160. package/dist/types/button/src/index.d.ts +10 -0
  161. package/dist/types/button/src/styles.d.ts +1 -0
  162. package/dist/types/button/stories/announcement.d.ts +6 -0
  163. package/dist/types/button/stories/button-group.stories.d.ts +14 -0
  164. package/dist/types/button/stories/button.stories.d.ts +127 -0
  165. package/dist/types/button/stories/icon-button.stories.d.ts +16 -0
  166. package/dist/types/card/index.d.ts +1 -0
  167. package/dist/types/card/src/card.d.ts +38 -0
  168. package/dist/types/card/src/index.d.ts +1 -0
  169. package/dist/types/card/src/styles.d.ts +1 -0
  170. package/dist/types/card/stories/card.stories.d.ts +56 -0
  171. package/dist/types/checkbox/index.d.ts +1 -0
  172. package/dist/types/checkbox/src/checkbox-group.d.ts +36 -0
  173. package/dist/types/checkbox/src/checkbox.d.ts +46 -0
  174. package/dist/types/checkbox/src/index.d.ts +9 -0
  175. package/dist/types/checkbox/src/styles.d.ts +2 -0
  176. package/dist/types/checkbox/stories/checkbox.stories.d.ts +103 -0
  177. package/dist/types/cookie-consent/index.d.ts +1 -0
  178. package/dist/types/cookie-consent/src/cookie-consent.d.ts +37 -0
  179. package/dist/types/cookie-consent/src/index.d.ts +1 -0
  180. package/dist/types/cookie-consent/src/styles.d.ts +1 -0
  181. package/dist/types/core/src/colors.d.ts +1 -0
  182. package/dist/types/core/src/components/accordion.d.ts +3 -0
  183. package/dist/types/core/src/components/alert.d.ts +3 -0
  184. package/dist/types/core/src/components/avatar.d.ts +3 -0
  185. package/dist/types/core/src/components/badge.d.ts +3 -0
  186. package/dist/types/core/src/components/breadcrumb.d.ts +3 -0
  187. package/dist/types/core/src/components/button-group.d.ts +3 -0
  188. package/dist/types/core/src/components/button.d.ts +3 -0
  189. package/dist/types/core/src/components/calendar.d.ts +3 -0
  190. package/dist/types/core/src/components/card.d.ts +3 -0
  191. package/dist/types/core/src/components/checkbox.d.ts +3 -0
  192. package/dist/types/core/src/components/code.d.ts +3 -0
  193. package/dist/types/core/src/components/cookie-consent.d.ts +3 -0
  194. package/dist/types/core/src/components/divider.d.ts +3 -0
  195. package/dist/types/core/src/components/dot.d.ts +3 -0
  196. package/dist/types/core/src/components/footer.d.ts +3 -0
  197. package/dist/types/core/src/components/forms.d.ts +3 -0
  198. package/dist/types/core/src/components/header.d.ts +3 -0
  199. package/dist/types/core/src/components/icon-button.d.ts +3 -0
  200. package/dist/types/core/src/components/icon.d.ts +3 -0
  201. package/dist/types/core/src/components/kbd.d.ts +3 -0
  202. package/dist/types/core/src/components/link.d.ts +3 -0
  203. package/dist/types/core/src/components/message.d.ts +3 -0
  204. package/dist/types/core/src/components/modal.d.ts +3 -0
  205. package/dist/types/core/src/components/notification.d.ts +3 -0
  206. package/dist/types/core/src/components/pagination.d.ts +3 -0
  207. package/dist/types/core/src/components/radio.d.ts +3 -0
  208. package/dist/types/core/src/components/switch.d.ts +3 -0
  209. package/dist/types/core/src/components/table.d.ts +3 -0
  210. package/dist/types/core/src/components/tag.d.ts +3 -0
  211. package/dist/types/core/src/components/types.d.ts +5 -0
  212. package/dist/types/core/src/components/user-menu.d.ts +3 -0
  213. package/dist/types/core/src/components/zebratable.d.ts +3 -0
  214. package/dist/types/core/src/index.d.ts +1 -0
  215. package/dist/types/core/src/with-opacity.d.ts +3 -0
  216. package/dist/types/divider/index.d.ts +1 -0
  217. package/dist/types/divider/src/divider.d.ts +9 -0
  218. package/dist/types/divider/src/index.d.ts +1 -0
  219. package/dist/types/divider/stories/divider.stories.d.ts +33 -0
  220. package/dist/types/dot/index.d.ts +1 -0
  221. package/dist/types/dot/src/dot.d.ts +12 -0
  222. package/dist/types/dot/src/index.d.ts +1 -0
  223. package/dist/types/dot/src/styles.d.ts +1 -0
  224. package/dist/types/dot/stories/dot.stories.d.ts +15 -0
  225. package/dist/types/footer/index.d.ts +1 -0
  226. package/dist/types/footer/src/footer.d.ts +11 -0
  227. package/dist/types/footer/src/index.d.ts +1 -0
  228. package/dist/types/footer/stories/footer.stories.d.ts +95 -0
  229. package/dist/types/forms/index.d.ts +1 -0
  230. package/dist/types/forms/src/calendar/index.d.ts +12 -0
  231. package/dist/types/forms/src/calendar/styles.d.ts +1 -0
  232. package/dist/types/forms/src/form-control/index.d.ts +27 -0
  233. package/dist/types/forms/src/form-error-message/index.d.ts +9 -0
  234. package/dist/types/forms/src/form-helper-text/index.d.ts +9 -0
  235. package/dist/types/forms/src/form-label/index.d.ts +13 -0
  236. package/dist/types/forms/src/index.d.ts +8 -0
  237. package/dist/types/forms/src/input/index.d.ts +15 -0
  238. package/dist/types/forms/src/input/input.d.ts +30 -0
  239. package/dist/types/forms/src/input/styles.d.ts +1 -0
  240. package/dist/types/forms/src/input-addon/index.d.ts +13 -0
  241. package/dist/types/forms/src/input-element/index.d.ts +15 -0
  242. package/dist/types/forms/src/input-group/index.d.ts +11 -0
  243. package/dist/types/forms/src/select/index.d.ts +6 -0
  244. package/dist/types/forms/src/select/styles.d.ts +1 -0
  245. package/dist/types/forms/src/textarea/index.d.ts +13 -0
  246. package/dist/types/forms/stories/calendar.stories.d.ts +58 -0
  247. package/dist/types/forms/stories/check.d.ts +6 -0
  248. package/dist/types/forms/stories/form-control.stories.d.ts +16 -0
  249. package/dist/types/forms/stories/input.stories.d.ts +32 -0
  250. package/dist/types/forms/stories/select.stories.d.ts +118 -0
  251. package/dist/types/forms/stories/textarea.stories.d.ts +23 -0
  252. package/dist/types/header/index.d.ts +1 -0
  253. package/dist/types/header/src/header.d.ts +13 -0
  254. package/dist/types/header/src/index.d.ts +1 -0
  255. package/dist/types/header/stories/header.stories.d.ts +118 -0
  256. package/dist/types/icon/index.d.ts +1 -0
  257. package/dist/types/icon/src/core.d.ts +10 -0
  258. package/dist/types/icon/src/icon.d.ts +14 -0
  259. package/dist/types/icon/src/index.d.ts +2 -0
  260. package/dist/types/icon/stories/icon.stories.d.ts +12 -0
  261. package/dist/types/image/index.d.ts +1 -0
  262. package/dist/types/image/src/image.d.ts +28 -0
  263. package/dist/types/image/src/index.d.ts +2 -0
  264. package/dist/types/image/src/use-image.d.ts +52 -0
  265. package/dist/types/image/stories/image.stories.d.ts +12 -0
  266. package/dist/types/link/index.d.ts +1 -0
  267. package/dist/types/link/src/index.d.ts +1 -0
  268. package/dist/types/link/src/link.d.ts +12 -0
  269. package/dist/types/link/stories/link.stories.d.ts +46 -0
  270. package/dist/types/message/index.d.ts +1 -0
  271. package/dist/types/message/src/index.d.ts +1 -0
  272. package/dist/types/message/src/message.d.ts +2 -0
  273. package/dist/types/message/stories/message.stories.d.ts +11 -0
  274. package/dist/types/notification/index.d.ts +1 -0
  275. package/dist/types/notification/src/index.d.ts +1 -0
  276. package/dist/types/notification/src/notification.d.ts +5 -0
  277. package/dist/types/notification/stories/notification.stories.d.ts +11 -0
  278. package/dist/types/pagination/index.d.ts +1 -0
  279. package/dist/types/pagination/src/index.d.ts +1 -0
  280. package/dist/types/pagination/src/pagination.d.ts +11 -0
  281. package/dist/types/pagination/src/styles.d.ts +1 -0
  282. package/dist/types/pagination/stories/pagination.stories.d.ts +75 -0
  283. package/dist/types/radio/index.d.ts +1 -0
  284. package/dist/types/radio/src/index.d.ts +9 -0
  285. package/dist/types/radio/src/radio-group.d.ts +41 -0
  286. package/dist/types/radio/src/radio.d.ts +45 -0
  287. package/dist/types/radio/src/styles.d.ts +2 -0
  288. package/dist/types/radio/stories/radio-group.stories.d.ts +75 -0
  289. package/dist/types/radio/stories/radio.stories.d.ts +104 -0
  290. package/dist/types/react/index.d.ts +1 -0
  291. package/dist/types/react/src/index.d.ts +26 -0
  292. package/dist/types/spinner/index.d.ts +1 -0
  293. package/dist/types/spinner/src/index.d.ts +1 -0
  294. package/dist/types/spinner/src/spinner.d.ts +8 -0
  295. package/dist/types/spinner/src/styles.d.ts +2 -0
  296. package/dist/types/spinner/stories/spinner.stories.d.ts +13 -0
  297. package/dist/types/switch/index.d.ts +1 -0
  298. package/dist/types/switch/src/index.d.ts +1 -0
  299. package/dist/types/switch/src/styles.d.ts +2 -0
  300. package/dist/types/switch/src/switch.d.ts +42 -0
  301. package/dist/types/switch/stories/switch.stories.d.ts +76 -0
  302. package/dist/types/table/index.d.ts +1 -0
  303. package/dist/types/table/src/index.d.ts +1 -0
  304. package/dist/types/table/src/styles.d.ts +1 -0
  305. package/dist/types/table/src/zebratable.d.ts +33 -0
  306. package/dist/types/table/stories/zebratable.stories.d.ts +69 -0
  307. package/dist/types/tag/index.d.ts +1 -0
  308. package/dist/types/tag/src/index.d.ts +1 -0
  309. package/dist/types/tag/src/styles.d.ts +1 -0
  310. package/dist/types/tag/src/tag.d.ts +13 -0
  311. package/dist/types/tag/stories/tag.stories.d.ts +86 -0
  312. package/dist/types/theme/index.d.ts +1 -0
  313. package/dist/types/theme/src/colors.d.ts +272 -0
  314. package/dist/types/theme/src/create-memo-class.d.ts +1 -0
  315. package/dist/types/theme/src/create-theme-vars/calc.d.ts +19 -0
  316. package/dist/types/theme/src/create-theme-vars/create-theme-vars.d.ts +9 -0
  317. package/dist/types/theme/src/create-theme-vars/css-var.d.ts +7 -0
  318. package/dist/types/theme/src/create-theme-vars/index.d.ts +4 -0
  319. package/dist/types/theme/src/create-theme-vars/theme-tokens.d.ts +10 -0
  320. package/dist/types/theme/src/create-theme-vars/to-css-var.d.ts +2 -0
  321. package/dist/types/theme/src/default-theme.d.ts +4 -0
  322. package/dist/types/theme/src/gui-provider.d.ts +16 -0
  323. package/dist/types/theme/src/index.d.ts +6 -0
  324. package/dist/types/theme/src/types.d.ts +56 -0
  325. package/dist/types/theme/src/use-safe-effect.d.ts +2 -0
  326. package/dist/types/theme/src/utils.d.ts +1 -0
  327. package/dist/types/toast/index.d.ts +1 -0
  328. package/dist/types/toast/src/index.d.ts +1 -0
  329. package/dist/types/toast/src/toast.d.ts +62 -0
  330. package/dist/types/toasted-notes/index.d.ts +1 -0
  331. package/dist/types/toasted-notes/src/Alert.d.ts +8 -0
  332. package/dist/types/toasted-notes/src/Message.d.ts +26 -0
  333. package/dist/types/toasted-notes/src/Positions.d.ts +9 -0
  334. package/dist/types/toasted-notes/src/Toast.d.ts +13 -0
  335. package/dist/types/toasted-notes/src/ToastManager.d.ts +45 -0
  336. package/dist/types/toasted-notes/src/index.d.ts +4 -0
  337. package/dist/types/toasted-notes/src/useTimeout.d.ts +3 -0
  338. package/dist/types/user-menu/index.d.ts +1 -0
  339. package/dist/types/user-menu/src/index.d.ts +6 -0
  340. package/dist/types/user-menu/src/styles.d.ts +1 -0
  341. package/dist/types/user-menu/src/user-menu.d.ts +21 -0
  342. package/dist/types/user-menu/stories/announcement.d.ts +6 -0
  343. package/dist/types/user-menu/stories/user-menu.stories.d.ts +5 -0
  344. package/dist/types/utils/index.d.ts +1 -0
  345. package/dist/types/utils/src/assertion.d.ts +4 -0
  346. package/dist/types/utils/src/children.d.ts +8 -0
  347. package/dist/types/utils/src/color.d.ts +9 -0
  348. package/dist/types/utils/src/index.d.ts +10 -0
  349. package/dist/types/utils/src/object.d.ts +6 -0
  350. package/dist/types/utils/src/refs.d.ts +5 -0
  351. package/dist/types/utils/src/slug.d.ts +1 -0
  352. package/dist/types/utils/src/types.d.ts +13 -0
  353. package/dist/types/utils/src/walk-object.d.ts +5 -0
  354. package/dist/types/visually-hidden/index.d.ts +1 -0
  355. package/dist/types/visually-hidden/src/index.d.ts +32 -0
  356. package/package.json +2 -2
  357. package/src/colors.js +145 -145
  358. package/src/components/accordion.js +89 -89
  359. package/src/components/alert.js +98 -98
  360. package/src/components/avatar.js +85 -85
  361. package/src/components/badge.js +60 -60
  362. package/src/components/breadcrumb.js +13 -13
  363. package/src/components/button-group.js +46 -46
  364. package/src/components/button.js +304 -304
  365. package/src/components/calendar.js +82 -82
  366. package/src/components/card.js +54 -54
  367. package/src/components/checkbox.js +127 -127
  368. package/src/components/code.js +9 -9
  369. package/src/components/cookie-consent.js +30 -30
  370. package/src/components/divider.js +12 -12
  371. package/src/components/dot.js +84 -84
  372. package/src/components/dropdown-filter.js +72 -72
  373. package/src/components/footer.js +42 -42
  374. package/src/components/forms.js +256 -256
  375. package/src/components/header.js +35 -35
  376. package/src/components/icon-button.js +5 -5
  377. package/src/components/icon.js +9 -9
  378. package/src/components/kbd.js +9 -9
  379. package/src/components/link.js +20 -20
  380. package/src/components/message.js +62 -62
  381. package/src/components/modal.js +30 -30
  382. package/src/components/notification.js +56 -56
  383. package/src/components/pagination.js +69 -69
  384. package/src/components/radio.js +104 -104
  385. package/src/components/search-bar.js +45 -45
  386. package/src/components/side-menu.js +167 -185
  387. package/src/components/switch.js +119 -119
  388. package/src/components/tab-menu.js +44 -44
  389. package/src/components/table.js +13 -13
  390. package/src/components/tag.js +97 -97
  391. package/src/components/user-menu.js +23 -23
  392. package/src/components/zebratable.js +77 -77
  393. package/src/index.js +272 -272
  394. package/src/with-opacity.js +6 -6
@@ -0,0 +1,282 @@
1
+ "use strict";
2
+
3
+ var _accordion = _interopRequireDefault(require("./components/accordion"));
4
+
5
+ var _theme = require("@sk-web-gui/theme");
6
+
7
+ var _withOpacity = require("./with-opacity");
8
+
9
+ var _plugin = _interopRequireDefault(require("tailwindcss/plugin"));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
12
+
13
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
14
+
15
+ var components = [// Alert,
16
+ // Breadcrumb,
17
+ // ButtonGroup,
18
+ // Button,
19
+ // Checkbox,
20
+ // Dot,
21
+ // Forms,
22
+ // Calendar,
23
+ // IconButton,
24
+ // Icon,
25
+ // Link,
26
+ // Message,
27
+ // NotificationToast,
28
+ // Radio,
29
+ // Switch,
30
+ // Table,
31
+ // ZebraTable,
32
+ // CookieConsent,
33
+ // Modal,
34
+ _accordion["default"] // Card,
35
+ // Divider,
36
+ // UserMenu,
37
+ // Tag,
38
+ // Pagination,
39
+ // Footer,
40
+ // Header,
41
+ ];
42
+ var defaultColors = ['primary', 'secondary'];
43
+ var themeColors = _theme.colors;
44
+ module.exports = _plugin["default"].withOptions(function (options) {
45
+ if (options === void 0) {
46
+ options = {
47
+ colors: [],
48
+ cssBase: true
49
+ };
50
+ }
51
+
52
+ return function (_ref) {
53
+ var addComponents = _ref.addComponents,
54
+ addVariant = _ref.addVariant,
55
+ addBase = _ref.addBase,
56
+ e = _ref.e;
57
+ var optionColors = [].concat(defaultColors, options.colors || []);
58
+ active({
59
+ addVariant: addVariant,
60
+ e: e
61
+ });
62
+ selected({
63
+ addVariant: addVariant,
64
+ e: e
65
+ });
66
+ disabled({
67
+ addVariant: addVariant,
68
+ e: e
69
+ });
70
+ addComponents(components.map(function (component) {
71
+ component(optionColors);
72
+ }), {
73
+ respectPrefix: false
74
+ });
75
+
76
+ if (options.cssBase) {
77
+ addBase({
78
+ html: {
79
+ '@apply text-foreground antialiased bg-base': {},
80
+ fontSize: '62.5%',
81
+ lineHeight: '1.5',
82
+ textRendering: 'optimizeLegibility',
83
+ textSizeAdjust: '100%',
84
+ touchAction: 'manipulation'
85
+ },
86
+ body: {
87
+ '@apply text-base leading-base': {},
88
+ position: 'relative',
89
+ minHeight: '100%',
90
+ fontFeatureSettings: "'kern'"
91
+ },
92
+ 'h1,h2,h3,h4,h5,h6': {
93
+ '@apply font-bold': {}
94
+ },
95
+ small: {
96
+ fontSize: '1.4rem'
97
+ },
98
+ h1: {
99
+ '@apply text-3xl leading-3xl': {}
100
+ },
101
+ h2: {
102
+ '@apply text-2xl leading-2xl': {}
103
+ },
104
+ h3: {
105
+ '@apply text-xl leading-xl': {}
106
+ },
107
+ h4: {
108
+ '@apply text-lg leading-lg': {}
109
+ },
110
+ h5: {
111
+ '@apply text-base leading-base': {}
112
+ },
113
+ h6: {
114
+ '@apply text-sm leading-sm': {}
115
+ },
116
+ p: {
117
+ '@apply my-4': {}
118
+ },
119
+ '.text-content': {
120
+ '@apply max-w-[80rem]': {},
121
+ h1: {
122
+ '@apply mb-md': {},
123
+ '+ p': {
124
+ '@apply mb-[40px] mt-0': {}
125
+ }
126
+ },
127
+ h2: {
128
+ '@apply mt-lg': {}
129
+ },
130
+ h3: {
131
+ '@apply mt-lg': {}
132
+ },
133
+ h4: {
134
+ '@apply mt-lg': {}
135
+ },
136
+ h5: {
137
+ '@apply mt-lg': {}
138
+ },
139
+ h6: {
140
+ '@apply mt-lg': {}
141
+ },
142
+ p: {
143
+ '@apply mt-sm leading-[1.5]': {}
144
+ }
145
+ }
146
+ });
147
+ }
148
+ };
149
+ }, function () {
150
+ return {
151
+ content: [''],
152
+ theme: {
153
+ fontSize: {
154
+ tiny: '1rem',
155
+ xs: '1.2rem',
156
+ sm: '1.4rem',
157
+ base: '1.6rem',
158
+ lg: '1.8rem',
159
+ xl: '2.0rem',
160
+ '2xl': '2.4rem',
161
+ '3xl': '3.2rem',
162
+ '4xl': '4.0rem',
163
+ '5xl': '5.2rem'
164
+ },
165
+ extend: {
166
+ colors: _extends({}, themeColors, {
167
+ current: 'currentColor'
168
+ }),
169
+ cursor: {
170
+ base: 'var(--vc-cursor)'
171
+ },
172
+ spacing: {
173
+ xs: '4px',
174
+ sm: '8px',
175
+ md: '16px',
176
+ lg: '24px',
177
+ xl: '48px'
178
+ },
179
+ lineHeight: {
180
+ tiny: '1.4rem',
181
+ xs: '1.6rem',
182
+ sm: '2rem',
183
+ base: '2.4rem',
184
+ lg: '2.4rem',
185
+ xl: '3.2rem',
186
+ '2xl': '3.2rem',
187
+ '3xl': '4rem',
188
+ '4xl': '4.8rem',
189
+ '5xl': '5.8rem'
190
+ },
191
+ opacity: {
192
+ 15: '0.15'
193
+ },
194
+ backgroundColor: {
195
+ base: (0, _withOpacity.withOpacity)('--vc-colors-bg-base'),
196
+ fill: (0, _withOpacity.withOpacity)('--vc-colors-bg-fill')
197
+ },
198
+ textColor: {
199
+ foreground: (0, _withOpacity.withOpacity)('--vc-colors-text-foreground'),
200
+ muted: (0, _withOpacity.withOpacity)('--vc-colors-text-muted')
201
+ },
202
+ borderRadius: {
203
+ base: 'var(--vc-rounded)'
204
+ },
205
+ zIndex: {
206
+ hide: '-1',
207
+ none: '0',
208
+ base: '1',
209
+ docked: '10',
210
+ dropdown: '1000',
211
+ sticky: '1100',
212
+ banner: '1200',
213
+ overlay: '1300',
214
+ modal: '1400',
215
+ popover: '1500',
216
+ skipLink: '1600',
217
+ toast: '1700',
218
+ tooltip: '1800'
219
+ }
220
+ }
221
+ },
222
+ variants: {
223
+ extend: {
224
+ boxShadow: ['disabled'],
225
+ cursor: ['disabled'],
226
+ opacity: ['active', 'disabled'],
227
+ textColor: ['active', 'disabled:hover'],
228
+ textDecoration: ['disabled'],
229
+ backgroundColor: ['disabled'],
230
+ borderColor: ['disabled']
231
+ }
232
+ }
233
+ };
234
+ });
235
+
236
+ function active(_ref2) {
237
+ var addVariant = _ref2.addVariant,
238
+ e = _ref2.e;
239
+ addVariant('active', function (_ref3) {
240
+ var modifySelectors = _ref3.modifySelectors,
241
+ separator = _ref3.separator;
242
+ modifySelectors(function (_ref4) {
243
+ var className = _ref4.className;
244
+ return "." + e("active" + separator + className) + ":active, ." + e("active" + separator + className) + "[data-active=true]";
245
+ });
246
+ });
247
+ }
248
+
249
+ function selected(_ref5) {
250
+ var addVariant = _ref5.addVariant,
251
+ e = _ref5.e;
252
+ addVariant('selected', function (_ref6) {
253
+ var modifySelectors = _ref6.modifySelectors,
254
+ separator = _ref6.separator;
255
+ modifySelectors(function (_ref7) {
256
+ var className = _ref7.className;
257
+ return "." + e("selected" + separator + className) + "[aria-selected=true]";
258
+ });
259
+ });
260
+ }
261
+
262
+ function disabled(_ref8) {
263
+ var addVariant = _ref8.addVariant,
264
+ e = _ref8.e;
265
+ addVariant('disabled', function (_ref9) {
266
+ var modifySelectors = _ref9.modifySelectors,
267
+ separator = _ref9.separator;
268
+ modifySelectors(function (_ref10) {
269
+ var className = _ref10.className;
270
+ return "." + e("disabled" + separator + className) + "[aria-disabled=true]";
271
+ });
272
+ });
273
+ addVariant('disabled:hover', function (_ref11) {
274
+ var modifySelectors = _ref11.modifySelectors,
275
+ separator = _ref11.separator;
276
+ modifySelectors(function (_ref12) {
277
+ var className = _ref12.className;
278
+ return "." + e("disabled:hover" + separator + className) + "[aria-disabled=true]";
279
+ });
280
+ });
281
+ }
282
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["components","Accordion","defaultColors","themeColors","colors","module","exports","plugin","withOptions","options","cssBase","addComponents","addVariant","addBase","e","optionColors","active","selected","disabled","map","component","respectPrefix","html","fontSize","lineHeight","textRendering","textSizeAdjust","touchAction","body","position","minHeight","fontFeatureSettings","small","h1","h2","h3","h4","h5","h6","p","content","theme","tiny","xs","sm","base","lg","xl","extend","current","cursor","spacing","md","opacity","backgroundColor","withOpacity","fill","textColor","foreground","muted","borderRadius","zIndex","hide","none","docked","dropdown","sticky","banner","overlay","modal","popover","skipLink","toast","tooltip","variants","boxShadow","textDecoration","borderColor","modifySelectors","separator","className"],"sources":["../../src/index.ts"],"sourcesContent":["// components\n// import Alert from './components/alert';\n// import Breadcrumb from './components/breadcrumb';\n// import ButtonGroup from './components/button-group';\n\n// import Checkbox from './components/checkbox';\n// import Dot from './components/dot';\n// import Forms from './components/forms';\n// import Calendar from './components/calendar';\n// import IconButton from './components/icon-button';\n// import Icon from './components/icon';\n// import Link from './components/link';\n// import Message from './components/message';\n// import NotificationToast from './components/notification';\n// import Radio from './components/radio';\n// import Switch from './components/switch';\n\n// import Button from './components/button';\nimport Accordion from './components/accordion';\n// import Card from './components/card';\n// import Table from './components/table';\n// import ZebraTable from './components/zebratable';\n\n// import Modal from './components/modal';\n// import CookieConsent from './components/cookie-consent';\n// import Divider from './components/divider';\n\n// import UserMenu from './components/user-menu';\n\n// import Tag from './components/tag';\n// import Pagination from './components/pagination';\n// import Footer from './components/footer';\n// import Header from './components/header';\n\n// const { = require(} from './../../theme/src/colors');\n// import { colors } from '@sk-web-gui/theme';\nimport { colors } from '@sk-web-gui/theme';\nimport { withOpacity } from './with-opacity';\nimport plugin from 'tailwindcss/plugin';\nimport { tailwindModuleType } from './components/types';\nimport { Config } from 'tailwindcss/types/config';\n\nconst components: ((colors: string[]) => tailwindModuleType)[] = [\n // Alert,\n // Breadcrumb,\n // ButtonGroup,\n // Button,\n // Checkbox,\n // Dot,\n // Forms,\n // Calendar,\n // IconButton,\n // Icon,\n // Link,\n // Message,\n // NotificationToast,\n // Radio,\n // Switch,\n\n // Table,\n // ZebraTable,\n // CookieConsent,\n // Modal,\n\n Accordion,\n // Card,\n // Divider,\n\n // UserMenu,\n\n // Tag,\n // Pagination,\n // Footer,\n // Header,\n];\n\nconst defaultColors = ['primary', 'secondary'];\nconst themeColors = colors;\n\ntype AlfaType = (s: { className: string }) => string;\ntype AddVariantType = (\n s1: string,\n s2: (s: { modifySelectors: (arg: AlfaType) => void; separator: string }) => void\n) => string;\ntype PluginAPIType = { addVariant: AddVariantType; e: (className: string) => string };\n\nmodule.exports = plugin.withOptions(\n function (options: { colors: string[]; cssBase: boolean } = { colors: [], cssBase: true }) {\n return function ({ addComponents, addVariant, addBase, e }) {\n const optionColors = [...defaultColors, ...(options.colors || [])];\n\n active({ addVariant, e } as PluginAPIType);\n selected({ addVariant, e } as PluginAPIType);\n disabled({ addVariant, e } as PluginAPIType);\n\n addComponents(\n components.map((component) => {\n component(optionColors);\n }),\n {\n respectPrefix: false,\n }\n );\n\n if (options.cssBase) {\n addBase({\n html: {\n '@apply text-foreground antialiased bg-base': {},\n fontSize: '62.5%',\n lineHeight: '1.5',\n textRendering: 'optimizeLegibility',\n textSizeAdjust: '100%',\n touchAction: 'manipulation',\n },\n body: {\n '@apply text-base leading-base': {},\n position: 'relative',\n minHeight: '100%',\n fontFeatureSettings: \"'kern'\",\n },\n 'h1,h2,h3,h4,h5,h6': {\n '@apply font-bold': {},\n },\n small: {\n fontSize: '1.4rem',\n },\n h1: { '@apply text-3xl leading-3xl': {} },\n h2: { '@apply text-2xl leading-2xl': {} },\n h3: { '@apply text-xl leading-xl': {} },\n h4: { '@apply text-lg leading-lg': {} },\n h5: { '@apply text-base leading-base': {} },\n h6: { '@apply text-sm leading-sm': {} },\n p: { '@apply my-4': {} },\n\n '.text-content': {\n '@apply max-w-[80rem]': {},\n\n h1: {\n '@apply mb-md': {},\n\n '+ p': {\n '@apply mb-[40px] mt-0': {},\n },\n },\n h2: { '@apply mt-lg': {} },\n h3: { '@apply mt-lg': {} },\n h4: { '@apply mt-lg': {} },\n h5: { '@apply mt-lg': {} },\n h6: { '@apply mt-lg': {} },\n p: { '@apply mt-sm leading-[1.5]': {} },\n },\n });\n }\n };\n },\n function (): Config {\n return {\n content: [''],\n theme: {\n fontSize: {\n tiny: '1rem',\n xs: '1.2rem',\n sm: '1.4rem',\n base: '1.6rem',\n lg: '1.8rem',\n xl: '2.0rem',\n '2xl': '2.4rem',\n '3xl': '3.2rem',\n '4xl': '4.0rem',\n '5xl': '5.2rem',\n },\n extend: {\n colors: {\n ...themeColors,\n current: 'currentColor',\n },\n cursor: {\n base: 'var(--vc-cursor)',\n },\n spacing: {\n xs: '4px',\n sm: '8px',\n md: '16px',\n lg: '24px',\n xl: '48px',\n },\n lineHeight: {\n tiny: '1.4rem',\n xs: '1.6rem',\n sm: '2rem',\n base: '2.4rem',\n lg: '2.4rem',\n xl: '3.2rem',\n '2xl': '3.2rem',\n '3xl': '4rem',\n '4xl': '4.8rem',\n '5xl': '5.8rem',\n },\n opacity: {\n 15: '0.15',\n },\n backgroundColor: {\n base: withOpacity('--vc-colors-bg-base') as unknown as string,\n fill: withOpacity('--vc-colors-bg-fill') as unknown as string,\n },\n textColor: {\n foreground: withOpacity('--vc-colors-text-foreground') as unknown as string,\n muted: withOpacity('--vc-colors-text-muted') as unknown as string,\n },\n borderRadius: {\n base: 'var(--vc-rounded)',\n },\n zIndex: {\n hide: '-1',\n none: '0',\n base: '1',\n docked: '10',\n dropdown: '1000',\n sticky: '1100',\n banner: '1200',\n overlay: '1300',\n modal: '1400',\n popover: '1500',\n skipLink: '1600',\n toast: '1700',\n tooltip: '1800',\n },\n },\n },\n variants: {\n extend: {\n boxShadow: ['disabled'],\n cursor: ['disabled'],\n opacity: ['active', 'disabled'],\n textColor: ['active', 'disabled:hover'],\n textDecoration: ['disabled'],\n backgroundColor: ['disabled'],\n borderColor: ['disabled'],\n },\n },\n };\n }\n);\n\nfunction active({ addVariant, e }: PluginAPIType) {\n addVariant('active', ({ modifySelectors, separator }) => {\n modifySelectors(({ className }) => {\n return `.${e(`active${separator}${className}`)}:active, .${e(\n `active${separator}${className}`\n )}[data-active=true]`;\n });\n });\n}\n\nfunction selected({ addVariant, e }: PluginAPIType) {\n addVariant('selected', ({ modifySelectors, separator }) => {\n modifySelectors(({ className }) => {\n return `.${e(`selected${separator}${className}`)}[aria-selected=true]`;\n });\n });\n}\n\nfunction disabled({ addVariant, e }: PluginAPIType) {\n addVariant('disabled', ({ modifySelectors, separator }) => {\n modifySelectors(({ className }) => {\n return `.${e(`disabled${separator}${className}`)}[aria-disabled=true]`;\n });\n });\n addVariant('disabled:hover', ({ modifySelectors, separator }) => {\n modifySelectors(({ className }) => {\n return `.${e(`disabled:hover${separator}${className}`)}[aria-disabled=true]`;\n });\n });\n}\n"],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.withOpacity = void 0;
5
+
6
+ var withOpacity = function withOpacity(variableName) {
7
+ return function (_ref) {
8
+ var opacityValue = _ref.opacityValue;
9
+ if (opacityValue) return "rgba(var(" + variableName + "), " + opacityValue + ")";
10
+ return "rgb(var(" + variableName + "))";
11
+ };
12
+ };
13
+
14
+ exports.withOpacity = withOpacity;
15
+ //# sourceMappingURL=with-opacity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"with-opacity.js","names":["withOpacity","variableName","opacityValue"],"sources":["../../src/with-opacity.ts"],"sourcesContent":["export const withOpacity = (variableName: string) => {\n return ({ opacityValue }: { opacityValue: number }): string => {\n if (opacityValue) return `rgba(var(${variableName}), ${opacityValue})`;\n return `rgb(var(${variableName}))`;\n };\n};\n"],"mappings":";;;;;AAAO,IAAMA,WAAW,GAAG,SAAdA,WAAc,CAACC,YAAD,EAA0B;EACnD,OAAO,gBAAwD;IAAA,IAArDC,YAAqD,QAArDA,YAAqD;IAC7D,IAAIA,YAAJ,EAAkB,qBAAmBD,YAAnB,WAAqCC,YAArC;IAClB,oBAAkBD,YAAlB;EACD,CAHD;AAID,CALM"}
@@ -0,0 +1,137 @@
1
+ import { withOpacity } from './with-opacity';
2
+ module.exports = {
3
+ primary: {
4
+ DEFAULT: withOpacity('--vc-colors-primary-DEFAULT'),
5
+ dark: withOpacity('--vc-colors-primary-dark'),
6
+ light: withOpacity('--vc-colors-primary-light'),
7
+ active: withOpacity('--vc-colors-primary-active'),
8
+ 50: withOpacity('--vc-colors-primary-DEFAULT'),
9
+ 100: withOpacity('--vc-colors-primary-DEFAULT'),
10
+ 200: withOpacity('--vc-colors-primary-DEFAULT'),
11
+ 300: withOpacity('--vc-colors-primary-DEFAULT'),
12
+ 400: withOpacity('--vc-colors-primary-DEFAULT'),
13
+ 500: withOpacity('--vc-colors-primary-DEFAULT'),
14
+ 600: withOpacity('--vc-colors-primary-DEFAULT'),
15
+ 700: withOpacity('--vc-colors-primary-DEFAULT'),
16
+ 800: withOpacity('--vc-colors-primary-DEFAULT'),
17
+ 900: withOpacity('--vc-colors-primary-DEFAULT')
18
+ },
19
+ secondary: {
20
+ DEFAULT: withOpacity('--vc-colors-secondary-DEFAULT'),
21
+ dark: withOpacity('--vc-colors-secondary-dark'),
22
+ light: withOpacity('--vc-colors-secondary-light'),
23
+ active: withOpacity('--vc-colors-secondary-active'),
24
+ 50: withOpacity('--vc-colors-secondary-DEFAULT'),
25
+ 100: withOpacity('--vc-colors-secondary-DEFAULT'),
26
+ 200: withOpacity('--vc-colors-secondary-DEFAULT'),
27
+ 300: withOpacity('--vc-colors-secondary-DEFAULT'),
28
+ 400: withOpacity('--vc-colors-secondary-DEFAULT'),
29
+ 500: withOpacity('--vc-colors-secondary-DEFAULT'),
30
+ 600: withOpacity('--vc-colors-secondary-DEFAULT'),
31
+ 700: withOpacity('--vc-colors-secondary-DEFAULT'),
32
+ 800: withOpacity('--vc-colors-secondary-DEFAULT'),
33
+ 900: withOpacity('--vc-colors-secondary-DEFAULT')
34
+ },
35
+ success: {
36
+ DEFAULT: withOpacity('--vc-colors-success-DEFAULT'),
37
+ dark: withOpacity('--vc-colors-success-dark'),
38
+ light: withOpacity('--vc-colors-success-light'),
39
+ active: withOpacity('--vc-colors-success-active'),
40
+ 50: withOpacity('--vc-colors-success-DEFAULT'),
41
+ 100: withOpacity('--vc-colors-success-DEFAULT'),
42
+ 200: withOpacity('--vc-colors-success-DEFAULT'),
43
+ 300: withOpacity('--vc-colors-success-DEFAULT'),
44
+ 400: withOpacity('--vc-colors-success-DEFAULT'),
45
+ 500: withOpacity('--vc-colors-success-DEFAULT'),
46
+ 600: withOpacity('--vc-colors-success-DEFAULT'),
47
+ 700: withOpacity('--vc-colors-success-DEFAULT'),
48
+ 800: withOpacity('--vc-colors-success-DEFAULT'),
49
+ 900: withOpacity('--vc-colors-success-DEFAULT')
50
+ },
51
+ info: {
52
+ DEFAULT: withOpacity('--vc-colors-info-DEFAULT'),
53
+ dark: withOpacity('--vc-colors-info-dark'),
54
+ light: withOpacity('--vc-colors-info-light'),
55
+ active: withOpacity('--vc-colors-info-active'),
56
+ 50: withOpacity('--vc-colors-info-DEFAULT'),
57
+ 100: withOpacity('--vc-colors-info-DEFAULT'),
58
+ 200: withOpacity('--vc-colors-info-DEFAULT'),
59
+ 300: withOpacity('--vc-colors-info-DEFAULT'),
60
+ 400: withOpacity('--vc-colors-info-DEFAULT'),
61
+ 500: withOpacity('--vc-colors-info-DEFAULT'),
62
+ 600: withOpacity('--vc-colors-info-DEFAULT'),
63
+ 700: withOpacity('--vc-colors-info-DEFAULT'),
64
+ 800: withOpacity('--vc-colors-info-DEFAULT'),
65
+ 900: withOpacity('--vc-colors-info-DEFAULT')
66
+ },
67
+ warning: {
68
+ DEFAULT: withOpacity('--vc-colors-warning-DEFAULT'),
69
+ dark: withOpacity('--vc-colors-warning-dark'),
70
+ light: withOpacity('--vc-colors-warning-light'),
71
+ active: withOpacity('--vc-colors-warning-active'),
72
+ 50: withOpacity('--vc-colors-warning-DEFAULT'),
73
+ 100: withOpacity('--vc-colors-warning-DEFAULT'),
74
+ 200: withOpacity('--vc-colors-warning-DEFAULT'),
75
+ 300: withOpacity('--vc-colors-warning-DEFAULT'),
76
+ 400: withOpacity('--vc-colors-warning-DEFAULT'),
77
+ 500: withOpacity('--vc-colors-warning-DEFAULT'),
78
+ 600: withOpacity('--vc-colors-warning-DEFAULT'),
79
+ 700: withOpacity('--vc-colors-warning-DEFAULT'),
80
+ 800: withOpacity('--vc-colors-warning-DEFAULT'),
81
+ 900: withOpacity('--vc-colors-warning-DEFAULT')
82
+ },
83
+ error: {
84
+ DEFAULT: withOpacity('--vc-colors-error-DEFAULT'),
85
+ dark: withOpacity('--vc-colors-error-dark'),
86
+ light: withOpacity('--vc-colors-error-light'),
87
+ active: withOpacity('--vc-colors-error-active'),
88
+ 50: withOpacity('--vc-colors-error-DEFAULT'),
89
+ 100: withOpacity('--vc-colors-error-DEFAULT'),
90
+ 200: withOpacity('--vc-colors-error-DEFAULT'),
91
+ 300: withOpacity('--vc-colors-error-DEFAULT'),
92
+ 400: withOpacity('--vc-colors-error-DEFAULT'),
93
+ 500: withOpacity('--vc-colors-error-DEFAULT'),
94
+ 600: withOpacity('--vc-colors-error-DEFAULT'),
95
+ 700: withOpacity('--vc-colors-error-DEFAULT'),
96
+ 800: withOpacity('--vc-colors-error-DEFAULT'),
97
+ 900: withOpacity('--vc-colors-error-DEFAULT')
98
+ },
99
+ neutral: {
100
+ DEFAULT: withOpacity('--vc-colors-neutral'),
101
+ 50: withOpacity('--vc-colors-neutral-50'),
102
+ 100: withOpacity('--vc-colors-neutral-100'),
103
+ 200: withOpacity('--vc-colors-neutral-200'),
104
+ 300: withOpacity('--vc-colors-neutral-300'),
105
+ 400: withOpacity('--vc-colors-neutral-400'),
106
+ 500: withOpacity('--vc-colors-neutral-500'),
107
+ 600: withOpacity('--vc-colors-neutral-600'),
108
+ 700: withOpacity('--vc-colors-neutral-700'),
109
+ 800: withOpacity('--vc-colors-neutral-800'),
110
+ 900: withOpacity('--vc-colors-neutral-900')
111
+ },
112
+ whiteAlpha: {
113
+ 50: 'rgba(255, 255, 255, 0.04)',
114
+ 100: 'rgba(255, 255, 255, 0.06)',
115
+ 200: 'rgba(255, 255, 255, 0.08)',
116
+ 300: 'rgba(255, 255, 255, 0.16)',
117
+ 400: 'rgba(255, 255, 255, 0.24)',
118
+ 500: 'rgba(255, 255, 255, 0.36)',
119
+ 600: 'rgba(255, 255, 255, 0.48)',
120
+ 700: 'rgba(255, 255, 255, 0.64)',
121
+ 800: 'rgba(255, 255, 255, 0.80)',
122
+ 900: 'rgba(255, 255, 255, 0.92)'
123
+ },
124
+ blackAlpha: {
125
+ 50: 'rgba(0, 0, 0, 0.04)',
126
+ 100: 'rgba(0, 0, 0, 0.06)',
127
+ 200: 'rgba(0, 0, 0, 0.08)',
128
+ 300: 'rgba(0, 0, 0, 0.16)',
129
+ 400: 'rgba(0, 0, 0, 0.24)',
130
+ 500: 'rgba(0, 0, 0, 0.36)',
131
+ 600: 'rgba(0, 0, 0, 0.48)',
132
+ 700: 'rgba(0, 0, 0, 0.64)',
133
+ 800: 'rgba(0, 0, 0, 0.80)',
134
+ 900: 'rgba(0, 0, 0, 0.92)'
135
+ }
136
+ };
137
+ //# sourceMappingURL=colors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"colors.js","names":["withOpacity","module","exports","primary","DEFAULT","dark","light","active","secondary","success","info","warning","error","neutral","whiteAlpha","blackAlpha"],"sources":["../../src/colors.ts"],"sourcesContent":["import { withOpacity } from './with-opacity';\n\nmodule.exports = {\n primary: {\n DEFAULT: withOpacity('--vc-colors-primary-DEFAULT'),\n dark: withOpacity('--vc-colors-primary-dark'),\n light: withOpacity('--vc-colors-primary-light'),\n active: withOpacity('--vc-colors-primary-active'),\n 50: withOpacity('--vc-colors-primary-DEFAULT'),\n 100: withOpacity('--vc-colors-primary-DEFAULT'),\n 200: withOpacity('--vc-colors-primary-DEFAULT'),\n 300: withOpacity('--vc-colors-primary-DEFAULT'),\n 400: withOpacity('--vc-colors-primary-DEFAULT'),\n 500: withOpacity('--vc-colors-primary-DEFAULT'),\n 600: withOpacity('--vc-colors-primary-DEFAULT'),\n 700: withOpacity('--vc-colors-primary-DEFAULT'),\n 800: withOpacity('--vc-colors-primary-DEFAULT'),\n 900: withOpacity('--vc-colors-primary-DEFAULT'),\n },\n\n secondary: {\n DEFAULT: withOpacity('--vc-colors-secondary-DEFAULT'),\n dark: withOpacity('--vc-colors-secondary-dark'),\n light: withOpacity('--vc-colors-secondary-light'),\n active: withOpacity('--vc-colors-secondary-active'),\n 50: withOpacity('--vc-colors-secondary-DEFAULT'),\n 100: withOpacity('--vc-colors-secondary-DEFAULT'),\n 200: withOpacity('--vc-colors-secondary-DEFAULT'),\n 300: withOpacity('--vc-colors-secondary-DEFAULT'),\n 400: withOpacity('--vc-colors-secondary-DEFAULT'),\n 500: withOpacity('--vc-colors-secondary-DEFAULT'),\n 600: withOpacity('--vc-colors-secondary-DEFAULT'),\n 700: withOpacity('--vc-colors-secondary-DEFAULT'),\n 800: withOpacity('--vc-colors-secondary-DEFAULT'),\n 900: withOpacity('--vc-colors-secondary-DEFAULT'),\n },\n\n success: {\n DEFAULT: withOpacity('--vc-colors-success-DEFAULT'),\n dark: withOpacity('--vc-colors-success-dark'),\n light: withOpacity('--vc-colors-success-light'),\n active: withOpacity('--vc-colors-success-active'),\n 50: withOpacity('--vc-colors-success-DEFAULT'),\n 100: withOpacity('--vc-colors-success-DEFAULT'),\n 200: withOpacity('--vc-colors-success-DEFAULT'),\n 300: withOpacity('--vc-colors-success-DEFAULT'),\n 400: withOpacity('--vc-colors-success-DEFAULT'),\n 500: withOpacity('--vc-colors-success-DEFAULT'),\n 600: withOpacity('--vc-colors-success-DEFAULT'),\n 700: withOpacity('--vc-colors-success-DEFAULT'),\n 800: withOpacity('--vc-colors-success-DEFAULT'),\n 900: withOpacity('--vc-colors-success-DEFAULT'),\n },\n\n info: {\n DEFAULT: withOpacity('--vc-colors-info-DEFAULT'),\n dark: withOpacity('--vc-colors-info-dark'),\n light: withOpacity('--vc-colors-info-light'),\n active: withOpacity('--vc-colors-info-active'),\n 50: withOpacity('--vc-colors-info-DEFAULT'),\n 100: withOpacity('--vc-colors-info-DEFAULT'),\n 200: withOpacity('--vc-colors-info-DEFAULT'),\n 300: withOpacity('--vc-colors-info-DEFAULT'),\n 400: withOpacity('--vc-colors-info-DEFAULT'),\n 500: withOpacity('--vc-colors-info-DEFAULT'),\n 600: withOpacity('--vc-colors-info-DEFAULT'),\n 700: withOpacity('--vc-colors-info-DEFAULT'),\n 800: withOpacity('--vc-colors-info-DEFAULT'),\n 900: withOpacity('--vc-colors-info-DEFAULT'),\n },\n\n warning: {\n DEFAULT: withOpacity('--vc-colors-warning-DEFAULT'),\n dark: withOpacity('--vc-colors-warning-dark'),\n light: withOpacity('--vc-colors-warning-light'),\n active: withOpacity('--vc-colors-warning-active'),\n 50: withOpacity('--vc-colors-warning-DEFAULT'),\n 100: withOpacity('--vc-colors-warning-DEFAULT'),\n 200: withOpacity('--vc-colors-warning-DEFAULT'),\n 300: withOpacity('--vc-colors-warning-DEFAULT'),\n 400: withOpacity('--vc-colors-warning-DEFAULT'),\n 500: withOpacity('--vc-colors-warning-DEFAULT'),\n 600: withOpacity('--vc-colors-warning-DEFAULT'),\n 700: withOpacity('--vc-colors-warning-DEFAULT'),\n 800: withOpacity('--vc-colors-warning-DEFAULT'),\n 900: withOpacity('--vc-colors-warning-DEFAULT'),\n },\n\n error: {\n DEFAULT: withOpacity('--vc-colors-error-DEFAULT'),\n dark: withOpacity('--vc-colors-error-dark'),\n light: withOpacity('--vc-colors-error-light'),\n active: withOpacity('--vc-colors-error-active'),\n 50: withOpacity('--vc-colors-error-DEFAULT'),\n 100: withOpacity('--vc-colors-error-DEFAULT'),\n 200: withOpacity('--vc-colors-error-DEFAULT'),\n 300: withOpacity('--vc-colors-error-DEFAULT'),\n 400: withOpacity('--vc-colors-error-DEFAULT'),\n 500: withOpacity('--vc-colors-error-DEFAULT'),\n 600: withOpacity('--vc-colors-error-DEFAULT'),\n 700: withOpacity('--vc-colors-error-DEFAULT'),\n 800: withOpacity('--vc-colors-error-DEFAULT'),\n 900: withOpacity('--vc-colors-error-DEFAULT'),\n },\n\n neutral: {\n DEFAULT: withOpacity('--vc-colors-neutral'),\n 50: withOpacity('--vc-colors-neutral-50'),\n 100: withOpacity('--vc-colors-neutral-100'),\n 200: withOpacity('--vc-colors-neutral-200'),\n 300: withOpacity('--vc-colors-neutral-300'),\n 400: withOpacity('--vc-colors-neutral-400'),\n 500: withOpacity('--vc-colors-neutral-500'),\n 600: withOpacity('--vc-colors-neutral-600'),\n 700: withOpacity('--vc-colors-neutral-700'),\n 800: withOpacity('--vc-colors-neutral-800'),\n 900: withOpacity('--vc-colors-neutral-900'),\n },\n\n whiteAlpha: {\n 50: 'rgba(255, 255, 255, 0.04)',\n 100: 'rgba(255, 255, 255, 0.06)',\n 200: 'rgba(255, 255, 255, 0.08)',\n 300: 'rgba(255, 255, 255, 0.16)',\n 400: 'rgba(255, 255, 255, 0.24)',\n 500: 'rgba(255, 255, 255, 0.36)',\n 600: 'rgba(255, 255, 255, 0.48)',\n 700: 'rgba(255, 255, 255, 0.64)',\n 800: 'rgba(255, 255, 255, 0.80)',\n 900: 'rgba(255, 255, 255, 0.92)',\n },\n\n blackAlpha: {\n 50: 'rgba(0, 0, 0, 0.04)',\n 100: 'rgba(0, 0, 0, 0.06)',\n 200: 'rgba(0, 0, 0, 0.08)',\n 300: 'rgba(0, 0, 0, 0.16)',\n 400: 'rgba(0, 0, 0, 0.24)',\n 500: 'rgba(0, 0, 0, 0.36)',\n 600: 'rgba(0, 0, 0, 0.48)',\n 700: 'rgba(0, 0, 0, 0.64)',\n 800: 'rgba(0, 0, 0, 0.80)',\n 900: 'rgba(0, 0, 0, 0.92)',\n },\n};\n"],"mappings":"AAAA,SAASA,WAAT,QAA4B,gBAA5B;AAEAC,MAAM,CAACC,OAAP,GAAiB;EACfC,OAAO,EAAE;IACPC,OAAO,EAAEJ,WAAW,CAAC,6BAAD,CADb;IAEPK,IAAI,EAAEL,WAAW,CAAC,0BAAD,CAFV;IAGPM,KAAK,EAAEN,WAAW,CAAC,2BAAD,CAHX;IAIPO,MAAM,EAAEP,WAAW,CAAC,4BAAD,CAJZ;IAKP,IAAIA,WAAW,CAAC,6BAAD,CALR;IAMP,KAAKA,WAAW,CAAC,6BAAD,CANT;IAOP,KAAKA,WAAW,CAAC,6BAAD,CAPT;IAQP,KAAKA,WAAW,CAAC,6BAAD,CART;IASP,KAAKA,WAAW,CAAC,6BAAD,CATT;IAUP,KAAKA,WAAW,CAAC,6BAAD,CAVT;IAWP,KAAKA,WAAW,CAAC,6BAAD,CAXT;IAYP,KAAKA,WAAW,CAAC,6BAAD,CAZT;IAaP,KAAKA,WAAW,CAAC,6BAAD,CAbT;IAcP,KAAKA,WAAW,CAAC,6BAAD;EAdT,CADM;EAkBfQ,SAAS,EAAE;IACTJ,OAAO,EAAEJ,WAAW,CAAC,+BAAD,CADX;IAETK,IAAI,EAAEL,WAAW,CAAC,4BAAD,CAFR;IAGTM,KAAK,EAAEN,WAAW,CAAC,6BAAD,CAHT;IAITO,MAAM,EAAEP,WAAW,CAAC,8BAAD,CAJV;IAKT,IAAIA,WAAW,CAAC,+BAAD,CALN;IAMT,KAAKA,WAAW,CAAC,+BAAD,CANP;IAOT,KAAKA,WAAW,CAAC,+BAAD,CAPP;IAQT,KAAKA,WAAW,CAAC,+BAAD,CARP;IAST,KAAKA,WAAW,CAAC,+BAAD,CATP;IAUT,KAAKA,WAAW,CAAC,+BAAD,CAVP;IAWT,KAAKA,WAAW,CAAC,+BAAD,CAXP;IAYT,KAAKA,WAAW,CAAC,+BAAD,CAZP;IAaT,KAAKA,WAAW,CAAC,+BAAD,CAbP;IAcT,KAAKA,WAAW,CAAC,+BAAD;EAdP,CAlBI;EAmCfS,OAAO,EAAE;IACPL,OAAO,EAAEJ,WAAW,CAAC,6BAAD,CADb;IAEPK,IAAI,EAAEL,WAAW,CAAC,0BAAD,CAFV;IAGPM,KAAK,EAAEN,WAAW,CAAC,2BAAD,CAHX;IAIPO,MAAM,EAAEP,WAAW,CAAC,4BAAD,CAJZ;IAKP,IAAIA,WAAW,CAAC,6BAAD,CALR;IAMP,KAAKA,WAAW,CAAC,6BAAD,CANT;IAOP,KAAKA,WAAW,CAAC,6BAAD,CAPT;IAQP,KAAKA,WAAW,CAAC,6BAAD,CART;IASP,KAAKA,WAAW,CAAC,6BAAD,CATT;IAUP,KAAKA,WAAW,CAAC,6BAAD,CAVT;IAWP,KAAKA,WAAW,CAAC,6BAAD,CAXT;IAYP,KAAKA,WAAW,CAAC,6BAAD,CAZT;IAaP,KAAKA,WAAW,CAAC,6BAAD,CAbT;IAcP,KAAKA,WAAW,CAAC,6BAAD;EAdT,CAnCM;EAoDfU,IAAI,EAAE;IACJN,OAAO,EAAEJ,WAAW,CAAC,0BAAD,CADhB;IAEJK,IAAI,EAAEL,WAAW,CAAC,uBAAD,CAFb;IAGJM,KAAK,EAAEN,WAAW,CAAC,wBAAD,CAHd;IAIJO,MAAM,EAAEP,WAAW,CAAC,yBAAD,CAJf;IAKJ,IAAIA,WAAW,CAAC,0BAAD,CALX;IAMJ,KAAKA,WAAW,CAAC,0BAAD,CANZ;IAOJ,KAAKA,WAAW,CAAC,0BAAD,CAPZ;IAQJ,KAAKA,WAAW,CAAC,0BAAD,CARZ;IASJ,KAAKA,WAAW,CAAC,0BAAD,CATZ;IAUJ,KAAKA,WAAW,CAAC,0BAAD,CAVZ;IAWJ,KAAKA,WAAW,CAAC,0BAAD,CAXZ;IAYJ,KAAKA,WAAW,CAAC,0BAAD,CAZZ;IAaJ,KAAKA,WAAW,CAAC,0BAAD,CAbZ;IAcJ,KAAKA,WAAW,CAAC,0BAAD;EAdZ,CApDS;EAqEfW,OAAO,EAAE;IACPP,OAAO,EAAEJ,WAAW,CAAC,6BAAD,CADb;IAEPK,IAAI,EAAEL,WAAW,CAAC,0BAAD,CAFV;IAGPM,KAAK,EAAEN,WAAW,CAAC,2BAAD,CAHX;IAIPO,MAAM,EAAEP,WAAW,CAAC,4BAAD,CAJZ;IAKP,IAAIA,WAAW,CAAC,6BAAD,CALR;IAMP,KAAKA,WAAW,CAAC,6BAAD,CANT;IAOP,KAAKA,WAAW,CAAC,6BAAD,CAPT;IAQP,KAAKA,WAAW,CAAC,6BAAD,CART;IASP,KAAKA,WAAW,CAAC,6BAAD,CATT;IAUP,KAAKA,WAAW,CAAC,6BAAD,CAVT;IAWP,KAAKA,WAAW,CAAC,6BAAD,CAXT;IAYP,KAAKA,WAAW,CAAC,6BAAD,CAZT;IAaP,KAAKA,WAAW,CAAC,6BAAD,CAbT;IAcP,KAAKA,WAAW,CAAC,6BAAD;EAdT,CArEM;EAsFfY,KAAK,EAAE;IACLR,OAAO,EAAEJ,WAAW,CAAC,2BAAD,CADf;IAELK,IAAI,EAAEL,WAAW,CAAC,wBAAD,CAFZ;IAGLM,KAAK,EAAEN,WAAW,CAAC,yBAAD,CAHb;IAILO,MAAM,EAAEP,WAAW,CAAC,0BAAD,CAJd;IAKL,IAAIA,WAAW,CAAC,2BAAD,CALV;IAML,KAAKA,WAAW,CAAC,2BAAD,CANX;IAOL,KAAKA,WAAW,CAAC,2BAAD,CAPX;IAQL,KAAKA,WAAW,CAAC,2BAAD,CARX;IASL,KAAKA,WAAW,CAAC,2BAAD,CATX;IAUL,KAAKA,WAAW,CAAC,2BAAD,CAVX;IAWL,KAAKA,WAAW,CAAC,2BAAD,CAXX;IAYL,KAAKA,WAAW,CAAC,2BAAD,CAZX;IAaL,KAAKA,WAAW,CAAC,2BAAD,CAbX;IAcL,KAAKA,WAAW,CAAC,2BAAD;EAdX,CAtFQ;EAuGfa,OAAO,EAAE;IACPT,OAAO,EAAEJ,WAAW,CAAC,qBAAD,CADb;IAEP,IAAIA,WAAW,CAAC,wBAAD,CAFR;IAGP,KAAKA,WAAW,CAAC,yBAAD,CAHT;IAIP,KAAKA,WAAW,CAAC,yBAAD,CAJT;IAKP,KAAKA,WAAW,CAAC,yBAAD,CALT;IAMP,KAAKA,WAAW,CAAC,yBAAD,CANT;IAOP,KAAKA,WAAW,CAAC,yBAAD,CAPT;IAQP,KAAKA,WAAW,CAAC,yBAAD,CART;IASP,KAAKA,WAAW,CAAC,yBAAD,CATT;IAUP,KAAKA,WAAW,CAAC,yBAAD,CAVT;IAWP,KAAKA,WAAW,CAAC,yBAAD;EAXT,CAvGM;EAqHfc,UAAU,EAAE;IACV,IAAI,2BADM;IAEV,KAAK,2BAFK;IAGV,KAAK,2BAHK;IAIV,KAAK,2BAJK;IAKV,KAAK,2BALK;IAMV,KAAK,2BANK;IAOV,KAAK,2BAPK;IAQV,KAAK,2BARK;IASV,KAAK,2BATK;IAUV,KAAK;EAVK,CArHG;EAkIfC,UAAU,EAAE;IACV,IAAI,qBADM;IAEV,KAAK,qBAFK;IAGV,KAAK,qBAHK;IAIV,KAAK,qBAJK;IAKV,KAAK,qBALK;IAMV,KAAK,qBANK;IAOV,KAAK,qBAPK;IAQV,KAAK,qBARK;IASV,KAAK,qBATK;IAUV,KAAK;EAVK;AAlIG,CAAjB"}
@@ -0,0 +1,76 @@
1
+ export var Accordion = () => ({
2
+ '.accordion': {
3
+ '&-header': {
4
+ '@apply flex flex-col text-left': {},
5
+ '[aria-expanded="true"] &': {
6
+ '@apply bg-hover': {}
7
+ },
8
+ '&-icon': {
9
+ '@apply ml-auto !text-2xl': {}
10
+ }
11
+ },
12
+ '&-is-open &-header': {
13
+ '@apply bg-hover': {}
14
+ },
15
+ '&-toggle': {
16
+ '@apply flex items-center inline-block text-lg leading-lg text-left text-lg mx-lg my-md': {},
17
+ fontWeight: 'bold',
18
+ //"@apply focus-visible:shadow shadow-lg": {},
19
+ '&:focus-visible': {
20
+ boxShadow: '0 0 0 0.4rem #fff!important',
21
+ outline: '0' //"@apply border-4": {},
22
+
23
+ },
24
+ '.accordion-subtitle': {
25
+ '@apply m-0 text-sm font-normal': {}
26
+ }
27
+ },
28
+ '&-body': {
29
+ '@apply h-0 overflow-hidden m-lg': {},
30
+ transitionProperty: 'visibility, height, padding, margin',
31
+ transitionTimingFunction: 'cubic-bezier(0.4, 0, 0.2, 1)',
32
+ transitionDuration: '180ms',
33
+ '&[aria-hidden="true"], &[data-hidden="true"]': {
34
+ '@apply my-0 invisible': {}
35
+ },
36
+ '&[aria-hidden="false"], &[data-hidden="false"]': {
37
+ '@apply block h-auto visible': {}
38
+ }
39
+ },
40
+ '&-solid': {
41
+ '@apply border border-primary': {},
42
+ '.accordion-header': {
43
+ '@apply bg-primary text-white': {},
44
+ '[aria-expanded="true"] &': {
45
+ '@apply bg-hover': {}
46
+ }
47
+ }
48
+ },
49
+ '&-is-open': {
50
+ '@apply border border-gray-stroke': {},
51
+ '& .accordion-header': {
52
+ '@apply bg-hover text-white': {}
53
+ }
54
+ },
55
+ '&-outline': {
56
+ '@apply border border-gray-stroke': {},
57
+ '.accordion-body': {
58
+ '@apply mt-0': {}
59
+ },
60
+ '.accordion-toggle': {
61
+ '&:focus-visible': {
62
+ boxShadow: '0 0 0 0.4rem #4b4b4b!important',
63
+ outline: '0'
64
+ }
65
+ },
66
+ '.accordion-header': {
67
+ '@apply bg-transparent text-body': {},
68
+ '[aria-expanded="true"] &': {
69
+ '@apply bg-hover': {}
70
+ }
71
+ }
72
+ }
73
+ }
74
+ });
75
+ export default Accordion;
76
+ //# sourceMappingURL=accordion.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accordion.js","names":["Accordion","fontWeight","boxShadow","outline","transitionProperty","transitionTimingFunction","transitionDuration"],"sources":["../../../src/components/accordion.ts"],"sourcesContent":["import { tailwindModuleType } from './types';\n\nexport const Accordion: (colors: string[]) => tailwindModuleType = () => ({\n '.accordion': {\n '&-header': {\n '@apply flex flex-col text-left': {},\n\n '[aria-expanded=\"true\"] &': {\n '@apply bg-hover': {},\n },\n\n '&-icon': {\n '@apply ml-auto !text-2xl': {},\n },\n },\n\n '&-is-open &-header': {\n '@apply bg-hover': {},\n },\n\n '&-toggle': {\n '@apply flex items-center inline-block text-lg leading-lg text-left text-lg mx-lg my-md': {},\n fontWeight: 'bold',\n //\"@apply focus-visible:shadow shadow-lg\": {},\n '&:focus-visible': {\n boxShadow: '0 0 0 0.4rem #fff!important',\n outline: '0',\n //\"@apply border-4\": {},\n },\n '.accordion-subtitle': {\n '@apply m-0 text-sm font-normal': {},\n },\n },\n\n '&-body': {\n '@apply h-0 overflow-hidden m-lg': {},\n transitionProperty: 'visibility, height, padding, margin',\n transitionTimingFunction: 'cubic-bezier(0.4, 0, 0.2, 1)',\n transitionDuration: '180ms',\n\n '&[aria-hidden=\"true\"], &[data-hidden=\"true\"]': {\n '@apply my-0 invisible': {},\n },\n\n '&[aria-hidden=\"false\"], &[data-hidden=\"false\"]': {\n '@apply block h-auto visible': {},\n },\n },\n\n '&-solid': {\n '@apply border border-primary': {},\n '.accordion-header': {\n '@apply bg-primary text-white': {},\n\n '[aria-expanded=\"true\"] &': {\n '@apply bg-hover': {},\n },\n },\n },\n\n '&-is-open': {\n '@apply border border-gray-stroke': {},\n '& .accordion-header': {\n '@apply bg-hover text-white': {},\n },\n },\n\n '&-outline': {\n '@apply border border-gray-stroke': {},\n '.accordion-body': {\n '@apply mt-0': {},\n },\n '.accordion-toggle': {\n '&:focus-visible': {\n boxShadow: '0 0 0 0.4rem #4b4b4b!important',\n outline: '0',\n },\n },\n '.accordion-header': {\n '@apply bg-transparent text-body': {},\n\n '[aria-expanded=\"true\"] &': {\n '@apply bg-hover': {},\n },\n },\n },\n },\n});\nexport default Accordion;\n"],"mappings":"AAEA,OAAO,IAAMA,SAAmD,GAAG,OAAO;EACxE,cAAc;IACZ,YAAY;MACV,kCAAkC,EADxB;MAGV,4BAA4B;QAC1B,mBAAmB;MADO,CAHlB;MAOV,UAAU;QACR,4BAA4B;MADpB;IAPA,CADA;IAaZ,sBAAsB;MACpB,mBAAmB;IADC,CAbV;IAiBZ,YAAY;MACV,0FAA0F,EADhF;MAEVC,UAAU,EAAE,MAFF;MAGV;MACA,mBAAmB;QACjBC,SAAS,EAAE,6BADM;QAEjBC,OAAO,EAAE,GAFQ,CAGjB;;MAHiB,CAJT;MASV,uBAAuB;QACrB,kCAAkC;MADb;IATb,CAjBA;IA+BZ,UAAU;MACR,mCAAmC,EAD3B;MAERC,kBAAkB,EAAE,qCAFZ;MAGRC,wBAAwB,EAAE,8BAHlB;MAIRC,kBAAkB,EAAE,OAJZ;MAMR,gDAAgD;QAC9C,yBAAyB;MADqB,CANxC;MAUR,kDAAkD;QAChD,+BAA+B;MADiB;IAV1C,CA/BE;IA8CZ,WAAW;MACT,gCAAgC,EADvB;MAET,qBAAqB;QACnB,gCAAgC,EADb;QAGnB,4BAA4B;UAC1B,mBAAmB;QADO;MAHT;IAFZ,CA9CC;IAyDZ,aAAa;MACX,oCAAoC,EADzB;MAEX,uBAAuB;QACrB,8BAA8B;MADT;IAFZ,CAzDD;IAgEZ,aAAa;MACX,oCAAoC,EADzB;MAEX,mBAAmB;QACjB,eAAe;MADE,CAFR;MAKX,qBAAqB;QACnB,mBAAmB;UACjBJ,SAAS,EAAE,gCADM;UAEjBC,OAAO,EAAE;QAFQ;MADA,CALV;MAWX,qBAAqB;QACnB,mCAAmC,EADhB;QAGnB,4BAA4B;UAC1B,mBAAmB;QADO;MAHT;IAXV;EAhED;AAD0D,CAAP,CAA5D;AAsFP,eAAeH,SAAf"}
@@ -0,0 +1,67 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
3
+ function alertSubtle(colors) {
4
+ return {
5
+ '.alert-subtle': _extends({
6
+ '@apply border rounded-base': {},
7
+ '@apply text-body': {}
8
+ }, colors.reduce((styles, color) => _extends({}, styles, {
9
+ ["&[data-color=\"" + color + "\"]"]: {
10
+ ["@apply bg-" + color + "-50 border-" + color + "-500"]: {},
11
+ ["@apply dark:text-" + color + "-300 dark:bg-" + color + "-500"]: {},
12
+ '@apply dark:bg-opacity-15': {},
13
+ '@apply dark:border-opacity-40': {}
14
+ }
15
+ }), {}))
16
+ };
17
+ }
18
+
19
+ function alertSolid(colors) {
20
+ return {
21
+ '.alert-solid': _extends({
22
+ '@apply border rounded-base': {},
23
+ '@apply text-white': {}
24
+ }, colors.reduce((styles, color) => _extends({}, styles, {
25
+ ["&[data-color=\"" + color + "\"]"]: {
26
+ ["@apply bg-" + color + "-500 border-" + color + "-700 border-opacity-20"]: {},
27
+ ["@apply dark:bg-" + color + "-600 dark:border-" + color + "-500"]: {},
28
+ '@apply dark:border-opacity-40': {}
29
+ }
30
+ }), {}))
31
+ };
32
+ }
33
+
34
+ function alertLeftAccent(colors) {
35
+ return {
36
+ '.alert-left-accent': _extends({
37
+ '@apply border-l-2 rounded-none': {},
38
+ '@apply text-body': {}
39
+ }, colors.reduce((styles, color) => _extends({}, styles, {
40
+ ["&[data-color=\"" + color + "\"]"]: {
41
+ ["@apply bg-transparent border-" + color + "-500"]: {},
42
+ ["@apply dark:text-" + color + "-300"]: {}
43
+ }
44
+ }), {}))
45
+ };
46
+ }
47
+
48
+ function alertCloseButton(colors) {
49
+ return {
50
+ '.alert-close-button': _extends({
51
+ '@apply absolute right-4 cursor-base focus-visible:outline-none': {},
52
+ '@apply text-neutral-600 hover:text-neutral-700': {}
53
+ }, colors.reduce((styles, color) => _extends({}, styles, {
54
+ ["&[data-color=\"" + color + "\"]"]: {
55
+ ["@apply dark:text-" + color + "-300 dark:hover:text-" + color + "-400"]: {}
56
+ }
57
+ }), {}))
58
+ };
59
+ }
60
+
61
+ export var Alert = colors => _extends({
62
+ '.alert': {
63
+ '@apply w-full flex items-center px-4 py-3 relative overflow-hidden text-sm': {}
64
+ }
65
+ }, alertSubtle(colors), alertSolid(colors), alertLeftAccent(colors), alertCloseButton(colors));
66
+ export default Alert;
67
+ //# sourceMappingURL=alert.js.map