@resq-sw/ui 0.2.0

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 (344) hide show
  1. package/LICENSE.md +20 -0
  2. package/README.md +61 -0
  3. package/lib/components/accordion/accordion.d.ts +27 -0
  4. package/lib/components/accordion/accordion.d.ts.map +1 -0
  5. package/lib/components/accordion/accordion.js +71 -0
  6. package/lib/components/accordion/accordion.js.map +1 -0
  7. package/lib/components/accordion/index.d.ts +2 -0
  8. package/lib/components/accordion/index.js +2 -0
  9. package/lib/components/alert/alert.d.ts +30 -0
  10. package/lib/components/alert/alert.d.ts.map +1 -0
  11. package/lib/components/alert/alert.js +59 -0
  12. package/lib/components/alert/alert.js.map +1 -0
  13. package/lib/components/alert/index.d.ts +2 -0
  14. package/lib/components/alert/index.js +2 -0
  15. package/lib/components/alert-dialog/alert-dialog.d.ts +61 -0
  16. package/lib/components/alert-dialog/alert-dialog.d.ts.map +1 -0
  17. package/lib/components/alert-dialog/alert-dialog.js +102 -0
  18. package/lib/components/alert-dialog/alert-dialog.js.map +1 -0
  19. package/lib/components/alert-dialog/index.d.ts +2 -0
  20. package/lib/components/alert-dialog/index.js +2 -0
  21. package/lib/components/aspect-ratio/aspect-ratio.d.ts +11 -0
  22. package/lib/components/aspect-ratio/aspect-ratio.d.ts.map +1 -0
  23. package/lib/components/aspect-ratio/aspect-ratio.js +29 -0
  24. package/lib/components/aspect-ratio/aspect-ratio.js.map +1 -0
  25. package/lib/components/aspect-ratio/index.d.ts +2 -0
  26. package/lib/components/aspect-ratio/index.js +2 -0
  27. package/lib/components/avatar/avatar.d.ts +36 -0
  28. package/lib/components/avatar/avatar.d.ts.map +1 -0
  29. package/lib/components/avatar/avatar.js +67 -0
  30. package/lib/components/avatar/avatar.js.map +1 -0
  31. package/lib/components/avatar/index.d.ts +2 -0
  32. package/lib/components/avatar/index.js +2 -0
  33. package/lib/components/badge/badge.d.ts +21 -0
  34. package/lib/components/badge/badge.d.ts.map +1 -0
  35. package/lib/components/badge/badge.js +43 -0
  36. package/lib/components/badge/badge.js.map +1 -0
  37. package/lib/components/badge/index.d.ts +2 -0
  38. package/lib/components/badge/index.js +2 -0
  39. package/lib/components/breadcrumb/breadcrumb.d.ts +40 -0
  40. package/lib/components/breadcrumb/breadcrumb.d.ts.map +1 -0
  41. package/lib/components/breadcrumb/breadcrumb.js +86 -0
  42. package/lib/components/breadcrumb/breadcrumb.js.map +1 -0
  43. package/lib/components/breadcrumb/index.d.ts +2 -0
  44. package/lib/components/breadcrumb/index.js +2 -0
  45. package/lib/components/button/button.d.ts +23 -0
  46. package/lib/components/button/button.d.ts.map +1 -0
  47. package/lib/components/button/button.js +63 -0
  48. package/lib/components/button/button.js.map +1 -0
  49. package/lib/components/button/index.d.ts +2 -0
  50. package/lib/components/button/index.js +2 -0
  51. package/lib/components/button-group/button-group.d.ts +30 -0
  52. package/lib/components/button-group/button-group.d.ts.map +1 -0
  53. package/lib/components/button-group/button-group.js +55 -0
  54. package/lib/components/button-group/button-group.js.map +1 -0
  55. package/lib/components/button-group/index.d.ts +2 -0
  56. package/lib/components/button-group/index.js +2 -0
  57. package/lib/components/calendar/calendar.d.ts +32 -0
  58. package/lib/components/calendar/calendar.d.ts.map +1 -0
  59. package/lib/components/calendar/calendar.js +126 -0
  60. package/lib/components/calendar/calendar.js.map +1 -0
  61. package/lib/components/calendar/index.d.ts +2 -0
  62. package/lib/components/calendar/index.js +2 -0
  63. package/lib/components/card/card.d.ts +39 -0
  64. package/lib/components/card/card.d.ts.map +1 -0
  65. package/lib/components/card/card.js +57 -0
  66. package/lib/components/card/card.js.map +1 -0
  67. package/lib/components/card/index.d.ts +2 -0
  68. package/lib/components/card/index.js +2 -0
  69. package/lib/components/carousel/carousel.d.ts +58 -0
  70. package/lib/components/carousel/carousel.d.ts.map +1 -0
  71. package/lib/components/carousel/carousel.js +150 -0
  72. package/lib/components/carousel/carousel.js.map +1 -0
  73. package/lib/components/carousel/index.d.ts +2 -0
  74. package/lib/components/carousel/index.js +2 -0
  75. package/lib/components/chart/chart.d.ts +70 -0
  76. package/lib/components/chart/chart.d.ts.map +1 -0
  77. package/lib/components/chart/chart.js +164 -0
  78. package/lib/components/chart/chart.js.map +1 -0
  79. package/lib/components/chart/index.d.ts +2 -0
  80. package/lib/components/chart/index.js +2 -0
  81. package/lib/components/checkbox/checkbox.d.ts +13 -0
  82. package/lib/components/checkbox/checkbox.d.ts.map +1 -0
  83. package/lib/components/checkbox/checkbox.js +37 -0
  84. package/lib/components/checkbox/checkbox.js.map +1 -0
  85. package/lib/components/checkbox/index.d.ts +2 -0
  86. package/lib/components/checkbox/index.js +2 -0
  87. package/lib/components/collapsible/collapsible.d.ts +17 -0
  88. package/lib/components/collapsible/collapsible.d.ts.map +1 -0
  89. package/lib/components/collapsible/collapsible.js +41 -0
  90. package/lib/components/collapsible/collapsible.js.map +1 -0
  91. package/lib/components/collapsible/index.d.ts +2 -0
  92. package/lib/components/collapsible/index.js +2 -0
  93. package/lib/components/combobox/combobox.d.ts +83 -0
  94. package/lib/components/combobox/combobox.d.ts.map +1 -0
  95. package/lib/components/combobox/combobox.js +180 -0
  96. package/lib/components/combobox/combobox.js.map +1 -0
  97. package/lib/components/combobox/index.d.ts +2 -0
  98. package/lib/components/combobox/index.js +2 -0
  99. package/lib/components/command/command.d.ts +56 -0
  100. package/lib/components/command/command.d.ts.map +1 -0
  101. package/lib/components/command/command.js +104 -0
  102. package/lib/components/command/command.js.map +1 -0
  103. package/lib/components/command/index.d.ts +2 -0
  104. package/lib/components/command/index.js +2 -0
  105. package/lib/components/context-menu/context-menu.d.ts +81 -0
  106. package/lib/components/context-menu/context-menu.d.ts.map +1 -0
  107. package/lib/components/context-menu/context-menu.js +139 -0
  108. package/lib/components/context-menu/context-menu.js.map +1 -0
  109. package/lib/components/context-menu/index.d.ts +2 -0
  110. package/lib/components/context-menu/index.js +2 -0
  111. package/lib/components/dialog/dialog.d.ts +52 -0
  112. package/lib/components/dialog/dialog.d.ts.map +1 -0
  113. package/lib/components/dialog/dialog.js +97 -0
  114. package/lib/components/dialog/dialog.js.map +1 -0
  115. package/lib/components/dialog/index.d.ts +2 -0
  116. package/lib/components/dialog/index.js +2 -0
  117. package/lib/components/direction/direction.d.ts +17 -0
  118. package/lib/components/direction/direction.d.ts.map +1 -0
  119. package/lib/components/direction/direction.js +30 -0
  120. package/lib/components/direction/direction.js.map +1 -0
  121. package/lib/components/direction/index.d.ts +2 -0
  122. package/lib/components/direction/index.js +2 -0
  123. package/lib/components/drawer/drawer.d.ts +46 -0
  124. package/lib/components/drawer/drawer.d.ts.map +1 -0
  125. package/lib/components/drawer/drawer.js +94 -0
  126. package/lib/components/drawer/drawer.js.map +1 -0
  127. package/lib/components/drawer/index.d.ts +2 -0
  128. package/lib/components/drawer/index.js +2 -0
  129. package/lib/components/dropdown-menu/dropdown-menu.d.ts +80 -0
  130. package/lib/components/dropdown-menu/dropdown-menu.d.ts.map +1 -0
  131. package/lib/components/dropdown-menu/dropdown-menu.js +142 -0
  132. package/lib/components/dropdown-menu/dropdown-menu.js.map +1 -0
  133. package/lib/components/dropdown-menu/index.d.ts +2 -0
  134. package/lib/components/dropdown-menu/index.js +2 -0
  135. package/lib/components/empty/empty.d.ts +37 -0
  136. package/lib/components/empty/empty.d.ts.map +1 -0
  137. package/lib/components/empty/empty.js +76 -0
  138. package/lib/components/empty/empty.js.map +1 -0
  139. package/lib/components/empty/index.d.ts +2 -0
  140. package/lib/components/empty/index.js +2 -0
  141. package/lib/components/field/field.d.ts +66 -0
  142. package/lib/components/field/field.d.ts.map +1 -0
  143. package/lib/components/field/field.js +127 -0
  144. package/lib/components/field/field.js.map +1 -0
  145. package/lib/components/field/index.d.ts +2 -0
  146. package/lib/components/field/index.js +2 -0
  147. package/lib/components/hover-card/hover-card.d.ts +21 -0
  148. package/lib/components/hover-card/hover-card.d.ts.map +1 -0
  149. package/lib/components/hover-card/hover-card.js +48 -0
  150. package/lib/components/hover-card/hover-card.js.map +1 -0
  151. package/lib/components/hover-card/index.d.ts +2 -0
  152. package/lib/components/hover-card/index.js +2 -0
  153. package/lib/components/input/index.d.ts +2 -0
  154. package/lib/components/input/index.js +2 -0
  155. package/lib/components/input/input.d.ts +13 -0
  156. package/lib/components/input/input.d.ts.map +1 -0
  157. package/lib/components/input/input.js +15 -0
  158. package/lib/components/input/input.js.map +1 -0
  159. package/lib/components/input-group/index.d.ts +2 -0
  160. package/lib/components/input-group/index.js +2 -0
  161. package/lib/components/input-group/input-group.d.ts +45 -0
  162. package/lib/components/input-group/input-group.d.ts.map +1 -0
  163. package/lib/components/input-group/input-group.js +95 -0
  164. package/lib/components/input-group/input-group.js.map +1 -0
  165. package/lib/components/input-otp/index.d.ts +2 -0
  166. package/lib/components/input-otp/index.js +2 -0
  167. package/lib/components/input-otp/input-otp.d.ts +30 -0
  168. package/lib/components/input-otp/input-otp.d.ts.map +1 -0
  169. package/lib/components/input-otp/input-otp.js +64 -0
  170. package/lib/components/input-otp/input-otp.js.map +1 -0
  171. package/lib/components/item/index.d.ts +2 -0
  172. package/lib/components/item/index.js +2 -0
  173. package/lib/components/item/item.d.ts +64 -0
  174. package/lib/components/item/item.d.ts.map +1 -0
  175. package/lib/components/item/item.js +133 -0
  176. package/lib/components/item/item.js.map +1 -0
  177. package/lib/components/kbd/index.d.ts +2 -0
  178. package/lib/components/kbd/index.js +2 -0
  179. package/lib/components/kbd/kbd.d.ts +30 -0
  180. package/lib/components/kbd/kbd.d.ts.map +1 -0
  181. package/lib/components/kbd/kbd.js +36 -0
  182. package/lib/components/kbd/kbd.js.map +1 -0
  183. package/lib/components/label/index.d.ts +2 -0
  184. package/lib/components/label/index.js +2 -0
  185. package/lib/components/label/label.d.ts +13 -0
  186. package/lib/components/label/label.d.ts.map +1 -0
  187. package/lib/components/label/label.js +31 -0
  188. package/lib/components/label/label.js.map +1 -0
  189. package/lib/components/menubar/index.d.ts +2 -0
  190. package/lib/components/menubar/index.js +2 -0
  191. package/lib/components/menubar/menubar.d.ts +86 -0
  192. package/lib/components/menubar/menubar.d.ts.map +1 -0
  193. package/lib/components/menubar/menubar.js +149 -0
  194. package/lib/components/menubar/menubar.js.map +1 -0
  195. package/lib/components/native-select/index.d.ts +2 -0
  196. package/lib/components/native-select/index.js +2 -0
  197. package/lib/components/native-select/native-select.d.ts +23 -0
  198. package/lib/components/native-select/native-select.d.ts.map +1 -0
  199. package/lib/components/native-select/native-select.js +53 -0
  200. package/lib/components/native-select/native-select.js.map +1 -0
  201. package/lib/components/navigation-menu/index.d.ts +2 -0
  202. package/lib/components/navigation-menu/index.js +2 -0
  203. package/lib/components/navigation-menu/navigation-menu.d.ts +48 -0
  204. package/lib/components/navigation-menu/navigation-menu.d.ts.map +1 -0
  205. package/lib/components/navigation-menu/navigation-menu.js +96 -0
  206. package/lib/components/navigation-menu/navigation-menu.js.map +1 -0
  207. package/lib/components/pagination/index.d.ts +2 -0
  208. package/lib/components/pagination/index.js +2 -0
  209. package/lib/components/pagination/pagination.d.ts +47 -0
  210. package/lib/components/pagination/pagination.d.ts.map +1 -0
  211. package/lib/components/pagination/pagination.js +95 -0
  212. package/lib/components/pagination/pagination.js.map +1 -0
  213. package/lib/components/popover/index.d.ts +2 -0
  214. package/lib/components/popover/index.js +2 -0
  215. package/lib/components/popover/popover.d.ts +36 -0
  216. package/lib/components/popover/popover.d.ts.map +1 -0
  217. package/lib/components/popover/popover.js +72 -0
  218. package/lib/components/popover/popover.js.map +1 -0
  219. package/lib/components/progress/index.d.ts +2 -0
  220. package/lib/components/progress/index.js +2 -0
  221. package/lib/components/progress/progress.d.ts +14 -0
  222. package/lib/components/progress/progress.d.ts.map +1 -0
  223. package/lib/components/progress/progress.js +36 -0
  224. package/lib/components/progress/progress.js.map +1 -0
  225. package/lib/components/radio-group/index.d.ts +2 -0
  226. package/lib/components/radio-group/index.js +2 -0
  227. package/lib/components/radio-group/radio-group.d.ts +17 -0
  228. package/lib/components/radio-group/radio-group.d.ts.map +1 -0
  229. package/lib/components/radio-group/radio-group.js +44 -0
  230. package/lib/components/radio-group/radio-group.js.map +1 -0
  231. package/lib/components/resizable/index.d.ts +2 -0
  232. package/lib/components/resizable/index.js +2 -0
  233. package/lib/components/resizable/resizable.d.ts +23 -0
  234. package/lib/components/resizable/resizable.d.ts.map +1 -0
  235. package/lib/components/resizable/resizable.js +45 -0
  236. package/lib/components/resizable/resizable.js.map +1 -0
  237. package/lib/components/scroll-area/index.d.ts +2 -0
  238. package/lib/components/scroll-area/index.js +2 -0
  239. package/lib/components/scroll-area/scroll-area.d.ts +19 -0
  240. package/lib/components/scroll-area/scroll-area.d.ts.map +1 -0
  241. package/lib/components/scroll-area/scroll-area.js +53 -0
  242. package/lib/components/scroll-area/scroll-area.js.map +1 -0
  243. package/lib/components/select/index.d.ts +2 -0
  244. package/lib/components/select/index.js +2 -0
  245. package/lib/components/select/select.d.ts +55 -0
  246. package/lib/components/select/select.d.ts.map +1 -0
  247. package/lib/components/select/select.js +116 -0
  248. package/lib/components/select/select.js.map +1 -0
  249. package/lib/components/separator/index.d.ts +2 -0
  250. package/lib/components/separator/index.js +2 -0
  251. package/lib/components/separator/separator.d.ts +15 -0
  252. package/lib/components/separator/separator.d.ts.map +1 -0
  253. package/lib/components/separator/separator.js +33 -0
  254. package/lib/components/separator/separator.js.map +1 -0
  255. package/lib/components/sheet/index.d.ts +2 -0
  256. package/lib/components/sheet/index.js +2 -0
  257. package/lib/components/sheet/sheet.d.ts +44 -0
  258. package/lib/components/sheet/sheet.d.ts.map +1 -0
  259. package/lib/components/sheet/sheet.js +106 -0
  260. package/lib/components/sheet/sheet.js.map +1 -0
  261. package/lib/components/sidebar/index.d.ts +2 -0
  262. package/lib/components/sidebar/index.js +2 -0
  263. package/lib/components/sidebar/sidebar.d.ts +169 -0
  264. package/lib/components/sidebar/sidebar.d.ts.map +1 -0
  265. package/lib/components/sidebar/sidebar.js +388 -0
  266. package/lib/components/sidebar/sidebar.js.map +1 -0
  267. package/lib/components/skeleton/index.d.ts +2 -0
  268. package/lib/components/skeleton/index.js +2 -0
  269. package/lib/components/skeleton/skeleton.d.ts +26 -0
  270. package/lib/components/skeleton/skeleton.d.ts.map +1 -0
  271. package/lib/components/skeleton/skeleton.js +29 -0
  272. package/lib/components/skeleton/skeleton.js.map +1 -0
  273. package/lib/components/slider/index.d.ts +2 -0
  274. package/lib/components/slider/index.js +2 -0
  275. package/lib/components/slider/slider.d.ts +17 -0
  276. package/lib/components/slider/slider.d.ts.map +1 -0
  277. package/lib/components/slider/slider.js +53 -0
  278. package/lib/components/slider/slider.js.map +1 -0
  279. package/lib/components/sonner/index.d.ts +2 -0
  280. package/lib/components/sonner/index.js +2 -0
  281. package/lib/components/sonner/sonner.d.ts +11 -0
  282. package/lib/components/sonner/sonner.d.ts.map +1 -0
  283. package/lib/components/sonner/sonner.js +47 -0
  284. package/lib/components/sonner/sonner.js.map +1 -0
  285. package/lib/components/spinner/index.d.ts +2 -0
  286. package/lib/components/spinner/index.js +2 -0
  287. package/lib/components/spinner/spinner.d.ts +26 -0
  288. package/lib/components/spinner/spinner.d.ts.map +1 -0
  289. package/lib/components/spinner/spinner.js +31 -0
  290. package/lib/components/spinner/spinner.js.map +1 -0
  291. package/lib/components/switch/index.d.ts +2 -0
  292. package/lib/components/switch/index.js +2 -0
  293. package/lib/components/switch/switch.d.ts +16 -0
  294. package/lib/components/switch/switch.d.ts.map +1 -0
  295. package/lib/components/switch/switch.js +36 -0
  296. package/lib/components/switch/switch.js.map +1 -0
  297. package/lib/components/table/index.d.ts +2 -0
  298. package/lib/components/table/index.js +2 -0
  299. package/lib/components/table/table.d.ts +40 -0
  300. package/lib/components/table/table.d.ts.map +1 -0
  301. package/lib/components/table/table.js +83 -0
  302. package/lib/components/table/table.js.map +1 -0
  303. package/lib/components/tabs/index.d.ts +2 -0
  304. package/lib/components/tabs/index.js +2 -0
  305. package/lib/components/tabs/tabs.d.ts +32 -0
  306. package/lib/components/tabs/tabs.d.ts.map +1 -0
  307. package/lib/components/tabs/tabs.js +62 -0
  308. package/lib/components/tabs/tabs.js.map +1 -0
  309. package/lib/components/textarea/index.d.ts +2 -0
  310. package/lib/components/textarea/index.js +2 -0
  311. package/lib/components/textarea/textarea.d.ts +12 -0
  312. package/lib/components/textarea/textarea.d.ts.map +1 -0
  313. package/lib/components/textarea/textarea.js +14 -0
  314. package/lib/components/textarea/textarea.js.map +1 -0
  315. package/lib/components/toggle/index.d.ts +2 -0
  316. package/lib/components/toggle/index.js +2 -0
  317. package/lib/components/toggle/toggle.d.ts +21 -0
  318. package/lib/components/toggle/toggle.d.ts.map +1 -0
  319. package/lib/components/toggle/toggle.js +53 -0
  320. package/lib/components/toggle/toggle.js.map +1 -0
  321. package/lib/components/toggle-group/index.d.ts +2 -0
  322. package/lib/components/toggle-group/index.js +2 -0
  323. package/lib/components/toggle-group/toggle-group.d.ts +30 -0
  324. package/lib/components/toggle-group/toggle-group.d.ts.map +1 -0
  325. package/lib/components/toggle-group/toggle-group.js +68 -0
  326. package/lib/components/toggle-group/toggle-group.js.map +1 -0
  327. package/lib/components/tooltip/index.d.ts +2 -0
  328. package/lib/components/tooltip/index.js +2 -0
  329. package/lib/components/tooltip/tooltip.d.ts +25 -0
  330. package/lib/components/tooltip/tooltip.d.ts.map +1 -0
  331. package/lib/components/tooltip/tooltip.js +52 -0
  332. package/lib/components/tooltip/tooltip.js.map +1 -0
  333. package/lib/hooks/use-mobile.d.ts +20 -0
  334. package/lib/hooks/use-mobile.d.ts.map +1 -0
  335. package/lib/hooks/use-mobile.js +37 -0
  336. package/lib/hooks/use-mobile.js.map +1 -0
  337. package/lib/index.d.ts +58 -0
  338. package/lib/index.js +113 -0
  339. package/lib/lib/utils.d.ts +7 -0
  340. package/lib/lib/utils.d.ts.map +1 -0
  341. package/lib/lib/utils.js +10 -0
  342. package/lib/lib/utils.js.map +1 -0
  343. package/package.json +395 -0
  344. package/src/styles/globals.css +140 -0
package/LICENSE.md ADDED
@@ -0,0 +1,20 @@
1
+ # MIT License
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ 'Software'), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,61 @@
1
+ <h1 align="center">package-template</h1>
2
+
3
+ <p align="center">
4
+ A very lovely package.
5
+ Hooray!
6
+ </p>
7
+
8
+ <p align="center">
9
+ <!-- prettier-ignore-start -->
10
+ <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
11
+ <a href="#contributors" target="_blank"><img alt="👪 All Contributors: 2" src="https://img.shields.io/badge/%F0%9F%91%AA_all_contributors-2-21bb42.svg" /></a>
12
+ <!-- ALL-CONTRIBUTORS-BADGE:END -->
13
+ <!-- prettier-ignore-end -->
14
+ <a href="https://github.com/ElysiumOSS/package-template/blob/main/.github/CODE_OF_CONDUCT.md" target="_blank"><img alt="🤝 Code of Conduct: Kept" src="https://img.shields.io/badge/%F0%9F%A4%9D_code_of_conduct-kept-21bb42" /></a>
15
+ <a href="https://codecov.io/gh/ElysiumOSS/package-template" target="_blank"><img alt="🧪 Coverage" src="https://img.shields.io/codecov/c/github/ElysiumOSS/package-template?label=%F0%9F%A7%AA%20coverage" /></a>
16
+ <a href="https://github.com/ElysiumOSS/package-template/blob/main/LICENSE.md" target="_blank"><img alt="📝 License: MIT" src="https://img.shields.io/badge/%F0%9F%93%9D_license-MIT-21bb42.svg" /></a>
17
+ <a href="http://npmjs.com/package/package-template" target="_blank"><img alt="📦 npm version" src="https://img.shields.io/npm/v/package-template?color=21bb42&label=%F0%9F%93%A6%20npm" /></a>
18
+ <img alt="💪 TypeScript: Strict" src="https://img.shields.io/badge/%F0%9F%92%AA_typescript-strict-21bb42.svg" />
19
+ </p>
20
+
21
+ ## Usage
22
+
23
+ ```shell
24
+ npm i package-template
25
+ ```
26
+
27
+ ```ts
28
+ import { greet } from "package-template";
29
+
30
+ greet("Hello, world! 💖");
31
+ ```
32
+
33
+ ## Development
34
+
35
+ See [`.github/CONTRIBUTING.md`](./.github/CONTRIBUTING.md), then [`.github/DEVELOPMENT.md`](./.github/DEVELOPMENT.md).
36
+ Thanks! 💖
37
+
38
+ ## Contributors
39
+
40
+ <!-- spellchecker: disable -->
41
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
42
+ <!-- prettier-ignore-start -->
43
+ <!-- markdownlint-disable -->
44
+ <table>
45
+ <tbody>
46
+ <tr>
47
+ <td align="center"><a href="https://github.com/ElysiumOSS"><img src="https://avatars.githubusercontent.com/u/155137850?v=4?s=100" width="100px;" alt="Elysium Open Source"/><br /><sub><b>Elysium Open Source</b></sub></a><br /><a href="https://github.com/ElysiumOSS/package-template/commits?author=ElysiumOSS" title="Code">💻</a> <a href="#content-ElysiumOSS" title="Content">🖋</a> <a href="https://github.com/ElysiumOSS/package-template/commits?author=ElysiumOSS" title="Documentation">📖</a> <a href="#ideas-ElysiumOSS" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-ElysiumOSS" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-ElysiumOSS" title="Maintenance">🚧</a> <a href="#projectManagement-ElysiumOSS" title="Project Management">📆</a> <a href="#tool-ElysiumOSS" title="Tools">🔧</a></td>
48
+ <td align="center"><a href="https://linktr.ee/mikeodnis"><img src="https://avatars.githubusercontent.com/u/95197809?v=4?s=100" width="100px;" alt="Mike Odnis"/><br /><sub><b>Mike Odnis</b></sub></a><br /><a href="https://github.com/ElysiumOSS/package-template/commits?author=WomB0ComB0" title="Code">💻</a> <a href="#content-WomB0ComB0" title="Content">🖋</a> <a href="https://github.com/ElysiumOSS/package-template/commits?author=WomB0ComB0" title="Documentation">📖</a> <a href="#ideas-WomB0ComB0" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-WomB0ComB0" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-WomB0ComB0" title="Maintenance">🚧</a> <a href="#projectManagement-WomB0ComB0" title="Project Management">📆</a> <a href="#tool-WomB0ComB0" title="Tools">🔧</a></td>
49
+ </tr>
50
+ </tbody>
51
+ </table>
52
+
53
+ <!-- markdownlint-restore -->
54
+ <!-- prettier-ignore-end -->
55
+
56
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
57
+ <!-- spellchecker: enable -->
58
+
59
+ <!-- You can remove this notice if you don't want it 🙂 no worries! -->
60
+
61
+ > 💝 This package was templated with [`create-typescript-app`](https://github.com/JoshuaKGoldberg/create-typescript-app) using the [Bingo framework](https://create.bingo).
@@ -0,0 +1,27 @@
1
+ import { Accordion as Accordion$1 } from "radix-ui";
2
+ import * as react_jsx_runtime11 from "react/jsx-runtime";
3
+ import * as React from "react";
4
+
5
+ //#region src/components/accordion/accordion.d.ts
6
+
7
+ declare function Accordion({
8
+ className,
9
+ ...props
10
+ }: React.ComponentProps<typeof Accordion$1.Root>): react_jsx_runtime11.JSX.Element;
11
+ declare function AccordionContent({
12
+ children,
13
+ className,
14
+ ...props
15
+ }: React.ComponentProps<typeof Accordion$1.Content>): react_jsx_runtime11.JSX.Element;
16
+ declare function AccordionItem({
17
+ className,
18
+ ...props
19
+ }: React.ComponentProps<typeof Accordion$1.Item>): react_jsx_runtime11.JSX.Element;
20
+ declare function AccordionTrigger({
21
+ children,
22
+ className,
23
+ ...props
24
+ }: React.ComponentProps<typeof Accordion$1.Trigger>): react_jsx_runtime11.JSX.Element;
25
+ //#endregion
26
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger };
27
+ //# sourceMappingURL=accordion.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accordion.d.ts","names":[],"sources":["../../../src/components/accordion/accordion.tsx"],"sourcesContent":[],"mappings":";;;;;;iBAwBS,SAAA,CAciD;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAdd,KAAA,CAAM,cAcQ,CAAA,OAdc,WAAA,CAAmB,IAcjC,CAAA,CAAA,EAdsC,mBAAA,CAAA,GAAA,CAAA,OActC;AAAA,iBAJjD,gBAAA,CAuBa;EAAA,QAAA;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAnBnB,KAAA,CAAM,cAmBa,CAAA,OAnBS,WAAA,CAAmB,OAmB5B,CAAA,CAAA,EAnBoC,mBAAA,CAAA,GAAA,CAAA,OAmBpC;iBAAb,aAAA,CACR;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAEE,KAAA,CAAM,cAFR,CAAA,OAE8B,WAAA,CAAmB,IAFjD,CAAA,CAAA,EAEsD,mBAAA,CAAA,GAAA,CAAA,OAFtD;iBAYQ,gBAAA,CAVyC;EAAA,QAAA;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAc/C,KAAA,CAAM,cAdyC,CAAA,OAcnB,WAAA,CAAmB,OAdA,CAAA,CAAA,EAcQ,mBAAA,CAAA,GAAA,CAAA,OAdR"}
@@ -0,0 +1,71 @@
1
+ "use client";
2
+ import { cn } from "../../lib/utils.js";
3
+ import { ChevronDownIcon, ChevronUpIcon } from "lucide-react";
4
+ import { Accordion as Accordion$1 } from "radix-ui";
5
+ import { jsx, jsxs } from "react/jsx-runtime";
6
+ //#region src/components/accordion/accordion.tsx
7
+ /**
8
+ * Copyright 2026 ResQ
9
+ *
10
+ * Licensed under the Apache License, Version 2.0 (the "License");
11
+ * you may not use this file except in compliance with the License.
12
+ * You may obtain a copy of the License at
13
+ *
14
+ * http://www.apache.org/licenses/LICENSE-2.0
15
+ *
16
+ * Unless required by applicable law or agreed to in writing, software
17
+ * distributed under the License is distributed on an "AS IS" BASIS,
18
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ * See the License for the specific language governing permissions and
20
+ * limitations under the License.
21
+ */
22
+ function Accordion({ className, ...props }) {
23
+ return /* @__PURE__ */ jsx(Accordion$1.Root, {
24
+ className: cn("flex w-full flex-col", className),
25
+ "data-slot": "accordion",
26
+ ...props
27
+ });
28
+ }
29
+ function AccordionContent({ children, className, ...props }) {
30
+ return /* @__PURE__ */ jsx(Accordion$1.Content, {
31
+ className: "data-open:animate-accordion-down data-closed:animate-accordion-up text-sm overflow-hidden",
32
+ "data-slot": "accordion-content",
33
+ ...props,
34
+ children: /* @__PURE__ */ jsx("div", {
35
+ className: cn("pt-0 pb-2.5 [&_a]:hover:text-foreground h-(--radix-accordion-content-height) [&_a]:underline [&_a]:underline-offset-3 [&_p:not(:last-child)]:mb-4", className),
36
+ children
37
+ })
38
+ });
39
+ }
40
+ function AccordionItem({ className, ...props }) {
41
+ return /* @__PURE__ */ jsx(Accordion$1.Item, {
42
+ className: cn("not-last:border-b", className),
43
+ "data-slot": "accordion-item",
44
+ ...props
45
+ });
46
+ }
47
+ function AccordionTrigger({ children, className, ...props }) {
48
+ return /* @__PURE__ */ jsx(Accordion$1.Header, {
49
+ className: "flex",
50
+ children: /* @__PURE__ */ jsxs(Accordion$1.Trigger, {
51
+ className: cn("focus-visible:ring-ring/50 focus-visible:border-ring focus-visible:after:border-ring **:data-[slot=accordion-trigger-icon]:text-muted-foreground rounded-lg py-2.5 text-left text-sm font-medium hover:underline focus-visible:ring-[3px] **:data-[slot=accordion-trigger-icon]:ml-auto **:data-[slot=accordion-trigger-icon]:size-4 group/accordion-trigger relative flex flex-1 items-start justify-between border border-transparent transition-all outline-none disabled:pointer-events-none disabled:opacity-50", className),
52
+ "data-slot": "accordion-trigger",
53
+ ...props,
54
+ children: [
55
+ children,
56
+ /* @__PURE__ */ jsx(ChevronDownIcon, {
57
+ className: "pointer-events-none shrink-0 group-aria-expanded/accordion-trigger:hidden",
58
+ "data-slot": "accordion-trigger-icon"
59
+ }),
60
+ /* @__PURE__ */ jsx(ChevronUpIcon, {
61
+ className: "pointer-events-none hidden shrink-0 group-aria-expanded/accordion-trigger:inline",
62
+ "data-slot": "accordion-trigger-icon"
63
+ })
64
+ ]
65
+ })
66
+ });
67
+ }
68
+ //#endregion
69
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger };
70
+
71
+ //# sourceMappingURL=accordion.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accordion.js","names":["AccordionPrimitive"],"sources":["../../../src/components/accordion/accordion.tsx"],"sourcesContent":["/**\n * Copyright 2026 ResQ\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n\"use client\";\n\nimport { ChevronDownIcon, ChevronUpIcon } from \"lucide-react\";\nimport { Accordion as AccordionPrimitive } from \"radix-ui\";\nimport type * as React from \"react\";\n\nimport { cn } from \"../../lib/utils.js\";\n\nfunction Accordion({ className, ...props }: React.ComponentProps<typeof AccordionPrimitive.Root>) {\n\treturn (\n\t\t<AccordionPrimitive.Root\n\t\t\tclassName={cn(\"flex w-full flex-col\", className)}\n\t\t\tdata-slot=\"accordion\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AccordionContent({\n\tchildren,\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AccordionPrimitive.Content>) {\n\treturn (\n\t\t<AccordionPrimitive.Content\n\t\t\tclassName=\"data-open:animate-accordion-down data-closed:animate-accordion-up text-sm overflow-hidden\"\n\t\t\tdata-slot=\"accordion-content\"\n\t\t\t{...props}\n\t\t>\n\t\t\t<div\n\t\t\t\tclassName={cn(\n\t\t\t\t\t\"pt-0 pb-2.5 [&_a]:hover:text-foreground h-(--radix-accordion-content-height) [&_a]:underline [&_a]:underline-offset-3 [&_p:not(:last-child)]:mb-4\",\n\t\t\t\t\tclassName,\n\t\t\t\t)}\n\t\t\t>\n\t\t\t\t{children}\n\t\t\t</div>\n\t\t</AccordionPrimitive.Content>\n\t);\n}\n\nfunction AccordionItem({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AccordionPrimitive.Item>) {\n\treturn (\n\t\t<AccordionPrimitive.Item\n\t\t\tclassName={cn(\"not-last:border-b\", className)}\n\t\t\tdata-slot=\"accordion-item\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AccordionTrigger({\n\tchildren,\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AccordionPrimitive.Trigger>) {\n\treturn (\n\t\t<AccordionPrimitive.Header className=\"flex\">\n\t\t\t<AccordionPrimitive.Trigger\n\t\t\t\tclassName={cn(\n\t\t\t\t\t\"focus-visible:ring-ring/50 focus-visible:border-ring focus-visible:after:border-ring **:data-[slot=accordion-trigger-icon]:text-muted-foreground rounded-lg py-2.5 text-left text-sm font-medium hover:underline focus-visible:ring-[3px] **:data-[slot=accordion-trigger-icon]:ml-auto **:data-[slot=accordion-trigger-icon]:size-4 group/accordion-trigger relative flex flex-1 items-start justify-between border border-transparent transition-all outline-none disabled:pointer-events-none disabled:opacity-50\",\n\t\t\t\t\tclassName,\n\t\t\t\t)}\n\t\t\t\tdata-slot=\"accordion-trigger\"\n\t\t\t\t{...props}\n\t\t\t>\n\t\t\t\t{children}\n\t\t\t\t<ChevronDownIcon\n\t\t\t\t\tclassName=\"pointer-events-none shrink-0 group-aria-expanded/accordion-trigger:hidden\"\n\t\t\t\t\tdata-slot=\"accordion-trigger-icon\"\n\t\t\t\t/>\n\t\t\t\t<ChevronUpIcon\n\t\t\t\t\tclassName=\"pointer-events-none hidden shrink-0 group-aria-expanded/accordion-trigger:inline\"\n\t\t\t\t\tdata-slot=\"accordion-trigger-icon\"\n\t\t\t\t/>\n\t\t\t</AccordionPrimitive.Trigger>\n\t\t</AccordionPrimitive.Header>\n\t);\n}\n\nexport { Accordion, AccordionContent, AccordionItem, AccordionTrigger };\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAwBA,SAAS,UAAU,EAAE,WAAW,GAAG,SAA+D;AACjG,QACC,oBAACA,YAAmB,MAApB;EACC,WAAW,GAAG,wBAAwB,UAAU;EAChD,aAAU;EACV,GAAI;EACH,CAAA;;AAIJ,SAAS,iBAAiB,EACzB,UACA,WACA,GAAG,SACwD;AAC3D,QACC,oBAACA,YAAmB,SAApB;EACC,WAAU;EACV,aAAU;EACV,GAAI;YAEJ,oBAAC,OAAD;GACC,WAAW,GACV,qJACA,UACA;GAEA;GACI,CAAA;EACsB,CAAA;;AAI/B,SAAS,cAAc,EACtB,WACA,GAAG,SACqD;AACxD,QACC,oBAACA,YAAmB,MAApB;EACC,WAAW,GAAG,qBAAqB,UAAU;EAC7C,aAAU;EACV,GAAI;EACH,CAAA;;AAIJ,SAAS,iBAAiB,EACzB,UACA,WACA,GAAG,SACwD;AAC3D,QACC,oBAACA,YAAmB,QAApB;EAA2B,WAAU;YACpC,qBAACA,YAAmB,SAApB;GACC,WAAW,GACV,wfACA,UACA;GACD,aAAU;GACV,GAAI;aANL;IAQE;IACD,oBAAC,iBAAD;KACC,WAAU;KACV,aAAU;KACT,CAAA;IACF,oBAAC,eAAD;KACC,WAAU;KACV,aAAU;KACT,CAAA;IAC0B;;EACF,CAAA"}
@@ -0,0 +1,2 @@
1
+ import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "./accordion.js";
2
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger };
@@ -0,0 +1,2 @@
1
+ import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "./accordion.js";
2
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger };
@@ -0,0 +1,30 @@
1
+ import * as react_jsx_runtime15 from "react/jsx-runtime";
2
+ import { VariantProps } from "class-variance-authority";
3
+ import * as React from "react";
4
+ import * as class_variance_authority_types0 from "class-variance-authority/types";
5
+
6
+ //#region src/components/alert/alert.d.ts
7
+
8
+ declare const alertVariants: (props?: ({
9
+ variant?: "default" | "destructive" | null | undefined;
10
+ } & class_variance_authority_types0.ClassProp) | undefined) => string;
11
+ declare function Alert({
12
+ className,
13
+ variant,
14
+ ...props
15
+ }: React.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime15.JSX.Element;
16
+ declare function AlertAction({
17
+ className,
18
+ ...props
19
+ }: React.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
20
+ declare function AlertDescription({
21
+ className,
22
+ ...props
23
+ }: React.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
24
+ declare function AlertTitle({
25
+ className,
26
+ ...props
27
+ }: React.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
28
+ //#endregion
29
+ export { Alert, AlertAction, AlertDescription, AlertTitle };
30
+ //# sourceMappingURL=alert.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alert.d.ts","names":[],"sources":["../../../src/components/alert/alert.tsx"],"sourcesContent":[],"mappings":";;;;;;;cAqBM,aA+B8C,EAAA,CAAA,KAAqB,CAArB,EAAA,CAAA;EAAqB,OAAA,CAAA,EAAA,SAAA,GAAA,aAAA,GAAA,IAAA,GAAA,SAAA;CAAA,GAjBxE,+BAAA,CAAA,SAiBwE,CAAA,GAAA,SAAA,EAAA,GAAA,MAAA;AAAA,iBAfhE,KAAA,CAqBgB;EAAA,SAAA;EAAA,OAAA;EAAA,GAAA;AAAA,CAAA,EAjBtB,KAAA,CAAM,cAiBgB,CAAA,KAAA,CAAA,GAjBQ,YAiBR,CAAA,OAjB4B,aAiB5B,CAAA,CAAA,EAjB0C,mBAAA,CAAA,GAAA,CAAA,OAiB1C;iBANhB,WAAA,CAMmB;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EANkB,KAAA,CAAM,cAMxB,CAAA,KAAA,CAAA,CAAA,EAN6C,mBAAA,CAAA,GAAA,CAAA,OAM7C;iBAAnB,gBAAA,CAAgD;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAAN,KAAA,CAAM,cAAA,CAAA,KAAA,CAAA,CAAA,EAAqB,mBAAA,CAAA,GAAA,CAAA,OAArB;iBAahD,UAAA,CAbqE;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAajC,KAAA,CAAM,cAb2B,CAAA,KAAA,CAAA,CAAA,EAaN,mBAAA,CAAA,GAAA,CAAA,OAbM"}
@@ -0,0 +1,59 @@
1
+ import { cn } from "../../lib/utils.js";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import { cva } from "class-variance-authority";
4
+ //#region src/components/alert/alert.tsx
5
+ /**
6
+ * Copyright 2026 ResQ
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+ const alertVariants = cva("grid gap-0.5 rounded-lg border px-2.5 py-2 text-left text-sm has-data-[slot=alert-action]:relative has-data-[slot=alert-action]:pr-18 has-[>svg]:grid-cols-[auto_1fr] has-[>svg]:gap-x-2 *:[svg]:row-span-2 *:[svg]:translate-y-0.5 *:[svg]:text-current *:[svg:not([class*='size-'])]:size-4 w-full relative group/alert", {
21
+ defaultVariants: { variant: "default" },
22
+ variants: { variant: {
23
+ default: "bg-card text-card-foreground",
24
+ destructive: "text-destructive bg-card *:data-[slot=alert-description]:text-destructive/90 *:[svg]:text-current"
25
+ } }
26
+ });
27
+ function Alert({ className, variant, ...props }) {
28
+ return /* @__PURE__ */ jsx("div", {
29
+ className: cn(alertVariants({ variant }), className),
30
+ "data-slot": "alert",
31
+ role: "alert",
32
+ ...props
33
+ });
34
+ }
35
+ function AlertAction({ className, ...props }) {
36
+ return /* @__PURE__ */ jsx("div", {
37
+ className: cn("absolute top-2 right-2", className),
38
+ "data-slot": "alert-action",
39
+ ...props
40
+ });
41
+ }
42
+ function AlertDescription({ className, ...props }) {
43
+ return /* @__PURE__ */ jsx("div", {
44
+ className: cn("text-muted-foreground text-sm text-balance md:text-pretty [&_p:not(:last-child)]:mb-4 [&_a]:hover:text-foreground [&_a]:underline [&_a]:underline-offset-3", className),
45
+ "data-slot": "alert-description",
46
+ ...props
47
+ });
48
+ }
49
+ function AlertTitle({ className, ...props }) {
50
+ return /* @__PURE__ */ jsx("div", {
51
+ className: cn("font-medium group-has-[>svg]/alert:col-start-2 [&_a]:hover:text-foreground [&_a]:underline [&_a]:underline-offset-3", className),
52
+ "data-slot": "alert-title",
53
+ ...props
54
+ });
55
+ }
56
+ //#endregion
57
+ export { Alert, AlertAction, AlertDescription, AlertTitle };
58
+
59
+ //# sourceMappingURL=alert.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alert.js","names":[],"sources":["../../../src/components/alert/alert.tsx"],"sourcesContent":["/**\n * Copyright 2026 ResQ\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { cva, type VariantProps } from \"class-variance-authority\";\nimport type * as React from \"react\";\n\nimport { cn } from \"../../lib/utils.js\";\n\nconst alertVariants = cva(\n\t\"grid gap-0.5 rounded-lg border px-2.5 py-2 text-left text-sm has-data-[slot=alert-action]:relative has-data-[slot=alert-action]:pr-18 has-[>svg]:grid-cols-[auto_1fr] has-[>svg]:gap-x-2 *:[svg]:row-span-2 *:[svg]:translate-y-0.5 *:[svg]:text-current *:[svg:not([class*='size-'])]:size-4 w-full relative group/alert\",\n\t{\n\t\tdefaultVariants: {\n\t\t\tvariant: \"default\",\n\t\t},\n\t\tvariants: {\n\t\t\tvariant: {\n\t\t\t\tdefault: \"bg-card text-card-foreground\",\n\t\t\t\tdestructive:\n\t\t\t\t\t\"text-destructive bg-card *:data-[slot=alert-description]:text-destructive/90 *:[svg]:text-current\",\n\t\t\t},\n\t\t},\n\t},\n);\n\nfunction Alert({\n\tclassName,\n\tvariant,\n\t...props\n}: React.ComponentProps<\"div\"> & VariantProps<typeof alertVariants>) {\n\treturn (\n\t\t<div\n\t\t\tclassName={cn(alertVariants({ variant }), className)}\n\t\t\tdata-slot=\"alert\"\n\t\t\trole=\"alert\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertAction({ className, ...props }: React.ComponentProps<\"div\">) {\n\treturn (\n\t\t<div className={cn(\"absolute top-2 right-2\", className)} data-slot=\"alert-action\" {...props} />\n\t);\n}\n\nfunction AlertDescription({ className, ...props }: React.ComponentProps<\"div\">) {\n\treturn (\n\t\t<div\n\t\t\tclassName={cn(\n\t\t\t\t\"text-muted-foreground text-sm text-balance md:text-pretty [&_p:not(:last-child)]:mb-4 [&_a]:hover:text-foreground [&_a]:underline [&_a]:underline-offset-3\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\tdata-slot=\"alert-description\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertTitle({ className, ...props }: React.ComponentProps<\"div\">) {\n\treturn (\n\t\t<div\n\t\t\tclassName={cn(\n\t\t\t\t\"font-medium group-has-[>svg]/alert:col-start-2 [&_a]:hover:text-foreground [&_a]:underline [&_a]:underline-offset-3\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\tdata-slot=\"alert-title\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nexport { Alert, AlertAction, AlertDescription, AlertTitle };\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAqBA,MAAM,gBAAgB,IACrB,6TACA;CACC,iBAAiB,EAChB,SAAS,WACT;CACD,UAAU,EACT,SAAS;EACR,SAAS;EACT,aACC;EACD,EACD;CACD,CACD;AAED,SAAS,MAAM,EACd,WACA,SACA,GAAG,SACiE;AACpE,QACC,oBAAC,OAAD;EACC,WAAW,GAAG,cAAc,EAAE,SAAS,CAAC,EAAE,UAAU;EACpD,aAAU;EACV,MAAK;EACL,GAAI;EACH,CAAA;;AAIJ,SAAS,YAAY,EAAE,WAAW,GAAG,SAAsC;AAC1E,QACC,oBAAC,OAAD;EAAK,WAAW,GAAG,0BAA0B,UAAU;EAAE,aAAU;EAAe,GAAI;EAAS,CAAA;;AAIjG,SAAS,iBAAiB,EAAE,WAAW,GAAG,SAAsC;AAC/E,QACC,oBAAC,OAAD;EACC,WAAW,GACV,8JACA,UACA;EACD,aAAU;EACV,GAAI;EACH,CAAA;;AAIJ,SAAS,WAAW,EAAE,WAAW,GAAG,SAAsC;AACzE,QACC,oBAAC,OAAD;EACC,WAAW,GACV,uHACA,UACA;EACD,aAAU;EACV,GAAI;EACH,CAAA"}
@@ -0,0 +1,2 @@
1
+ import { Alert, AlertAction, AlertDescription, AlertTitle } from "./alert.js";
2
+ export { Alert, AlertAction, AlertDescription, AlertTitle };
@@ -0,0 +1,2 @@
1
+ import { Alert, AlertAction, AlertDescription, AlertTitle } from "./alert.js";
2
+ export { Alert, AlertAction, AlertDescription, AlertTitle };
@@ -0,0 +1,61 @@
1
+ import { Button } from "../button/button.js";
2
+ import { AlertDialog as AlertDialog$1 } from "radix-ui";
3
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
4
+ import * as React from "react";
5
+
6
+ //#region src/components/alert-dialog/alert-dialog.d.ts
7
+ declare function AlertDialog({
8
+ ...props
9
+ }: Readonly<React.ComponentProps<typeof AlertDialog$1.Root>>): react_jsx_runtime0.JSX.Element;
10
+ declare function AlertDialogAction({
11
+ className,
12
+ size,
13
+ variant,
14
+ ...props
15
+ }: Pick<React.ComponentProps<typeof Button>, "size" | "variant"> & React.ComponentProps<typeof AlertDialog$1.Action>): react_jsx_runtime0.JSX.Element;
16
+ declare function AlertDialogCancel({
17
+ className,
18
+ size,
19
+ variant,
20
+ ...props
21
+ }: Pick<React.ComponentProps<typeof Button>, "size" | "variant"> & React.ComponentProps<typeof AlertDialog$1.Cancel>): react_jsx_runtime0.JSX.Element;
22
+ declare function AlertDialogContent({
23
+ className,
24
+ size,
25
+ ...props
26
+ }: React.ComponentProps<typeof AlertDialog$1.Content> & {
27
+ size?: "default" | "sm";
28
+ }): react_jsx_runtime0.JSX.Element;
29
+ declare function AlertDialogDescription({
30
+ className,
31
+ ...props
32
+ }: React.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime0.JSX.Element;
33
+ declare function AlertDialogFooter({
34
+ className,
35
+ ...props
36
+ }: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
37
+ declare function AlertDialogHeader({
38
+ className,
39
+ ...props
40
+ }: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
41
+ declare function AlertDialogMedia({
42
+ className,
43
+ ...props
44
+ }: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
45
+ declare function AlertDialogOverlay({
46
+ className,
47
+ ...props
48
+ }: React.ComponentProps<typeof AlertDialog$1.Overlay>): react_jsx_runtime0.JSX.Element;
49
+ declare function AlertDialogPortal({
50
+ ...props
51
+ }: Readonly<React.ComponentProps<typeof AlertDialog$1.Portal>>): react_jsx_runtime0.JSX.Element;
52
+ declare function AlertDialogTitle({
53
+ className,
54
+ ...props
55
+ }: React.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime0.JSX.Element;
56
+ declare function AlertDialogTrigger({
57
+ ...props
58
+ }: React.ComponentProps<typeof AlertDialog$1.Trigger>): react_jsx_runtime0.JSX.Element;
59
+ //#endregion
60
+ export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger };
61
+ //# sourceMappingURL=alert-dialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alert-dialog.d.ts","names":[],"sources":["../../../src/components/alert-dialog/alert-dialog.tsx"],"sourcesContent":[],"mappings":";;;;;;iBAwBS,WAAA;;GAEN,SAAS,KAAA,CAAM,sBAAsB,aAAA,CAAqB,SAAM,kBAAA,CAAA,GAAA,CAAA;iBAI1D,iBAAA;;;;;GAKN,KAAK,KAAA,CAAM,sBAAsB,+BACnC,KAAA,CAAM,sBAAsB,aAAA,CAAqB,UAAO,kBAAA,CAAA,GAAA,CAAA;iBAYhD,iBAAA;;;;;GAKN,KAAK,KAAA,CAAM,sBAAsB,+BACnC,KAAA,CAAM,sBAAsB,aAAA,CAAqB,UAAO,kBAAA,CAAA,GAAA,CAAA;AAhCZ,iBA4CpC,kBAAA,CA1CW;EAAA,SAAA;EAAA,IAAA;EAAA,GAAA;CAAA,EA8CjB,KAAA,CAAM,cA9CW,CAAA,OA8CW,aAAA,CAAqB,OA9ChC,CAAA,GAAA;EAEoB,IAAA,CAAA,EAAA,SAAqB,GAAA,IAAA;CAAjD,CAAA,EA8CX,kBAAA,CAAA,GAAA,CAAA,OA9CiB;iBA+DT,sBAAA,CA/DN;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAkEA,KAAA,CAAM,cAlEN,CAAA,OAkE4B,aAAA,CAAqB,WAlEjD,CAAA,CAAA,EAkE6D,kBAAA,CAAA,GAAA,CAAA,OAlE7D;iBA+EM,iBAAA,CA/E0D;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EA+Ef,KAAA,CAAM,cA/ES,CAAA,KAAA,CAAA,CAAA,EA+EY,kBAAA,CAAA,GAAA,CAAA,OA/EZ;iBA4F1D,iBAAA,CA5F0D;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EA4Ff,KAAA,CAAM,cA5FS,CAAA,KAAA,CAAA,CAAA,EA4FY,kBAAA,CAAA,GAAA,CAAA,OA5FZ;AAAA,iBAyG1D,gBAAA,CArGiB;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAqGyB,KAAA,CAAM,cArG/B,CAAA,KAAA,CAAA,CAAA,EAqGoD,kBAAA,CAAA,GAAA,CAAA,OArGpD;iBAkHjB,kBAAA,CAjHR;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAoHE,KAAA,CAAM,cApHR,CAAA,OAoH8B,aAAA,CAAqB,OApHnD,CAAA,CAAA,EAoH2D,kBAAA,CAAA,GAAA,CAAA,OApH3D;iBAiIQ,iBAAA,CAhIR;EAAA,GAAA;AAAA,CAAA,EAkIE,QAlIF,CAkIW,KAAA,CAAM,cAlIjB,CAAA,OAkIuC,aAAA,CAAqB,MAlI5D,CAAA,CAAA,CAAA,EAkIoE,kBAAA,CAAA,GAAA,CAAA,OAlIpE;iBAsIQ,gBAAA,CArIR;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAwIE,KAAA,CAAM,cAxIR,CAAA,OAwI8B,aAAA,CAAqB,KAxInD,CAAA,CAAA,EAwIyD,kBAAA,CAAA,GAAA,CAAA,OAxIzD;iBAqJQ,kBAAA,CAnJ2B;EAAA,GAAA;AAAA,CAAA,EAqJjC,KAAA,CAAM,cArJ2B,CAAA,OAqJL,aAAA,CAAqB,OArJhB,CAAA,CAAA,EAqJwB,kBAAA,CAAA,GAAA,CAAA,OArJxB"}
@@ -0,0 +1,102 @@
1
+ "use client";
2
+ import { cn } from "../../lib/utils.js";
3
+ import { Button } from "../button/button.js";
4
+ import { AlertDialog as AlertDialog$1 } from "radix-ui";
5
+ import { jsx, jsxs } from "react/jsx-runtime";
6
+ //#region src/components/alert-dialog/alert-dialog.tsx
7
+ function AlertDialog({ ...props }) {
8
+ return /* @__PURE__ */ jsx(AlertDialog$1.Root, {
9
+ "data-slot": "alert-dialog",
10
+ ...props
11
+ });
12
+ }
13
+ function AlertDialogAction({ className, size = "default", variant = "default", ...props }) {
14
+ return /* @__PURE__ */ jsx(Button, {
15
+ asChild: true,
16
+ size,
17
+ variant,
18
+ children: /* @__PURE__ */ jsx(AlertDialog$1.Action, {
19
+ className: cn(className),
20
+ "data-slot": "alert-dialog-action",
21
+ ...props
22
+ })
23
+ });
24
+ }
25
+ function AlertDialogCancel({ className, size = "default", variant = "outline", ...props }) {
26
+ return /* @__PURE__ */ jsx(Button, {
27
+ asChild: true,
28
+ size,
29
+ variant,
30
+ children: /* @__PURE__ */ jsx(AlertDialog$1.Cancel, {
31
+ className: cn(className),
32
+ "data-slot": "alert-dialog-cancel",
33
+ ...props
34
+ })
35
+ });
36
+ }
37
+ function AlertDialogContent({ className, size = "default", ...props }) {
38
+ return /* @__PURE__ */ jsxs(AlertDialogPortal, { children: [/* @__PURE__ */ jsx(AlertDialogOverlay, {}), /* @__PURE__ */ jsx(AlertDialog$1.Content, {
39
+ className: cn("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 bg-background ring-foreground/10 gap-4 rounded-xl p-4 ring-1 duration-100 data-[size=default]:max-w-xs data-[size=sm]:max-w-xs data-[size=default]:sm:max-w-sm group/alert-dialog-content fixed top-1/2 left-1/2 z-50 grid w-full -translate-x-1/2 -translate-y-1/2 outline-none", className),
40
+ "data-size": size,
41
+ "data-slot": "alert-dialog-content",
42
+ ...props
43
+ })] });
44
+ }
45
+ function AlertDialogDescription({ className, ...props }) {
46
+ return /* @__PURE__ */ jsx(AlertDialog$1.Description, {
47
+ className: cn("text-muted-foreground *:[a]:hover:text-foreground text-sm text-balance md:text-pretty *:[a]:underline *:[a]:underline-offset-3", className),
48
+ "data-slot": "alert-dialog-description",
49
+ ...props
50
+ });
51
+ }
52
+ function AlertDialogFooter({ className, ...props }) {
53
+ return /* @__PURE__ */ jsx("div", {
54
+ className: cn("bg-muted/50 -mx-4 -mb-4 rounded-b-xl border-t p-4 flex flex-col-reverse gap-2 group-data-[size=sm]/alert-dialog-content:grid group-data-[size=sm]/alert-dialog-content:grid-cols-2 sm:flex-row sm:justify-end", className),
55
+ "data-slot": "alert-dialog-footer",
56
+ ...props
57
+ });
58
+ }
59
+ function AlertDialogHeader({ className, ...props }) {
60
+ return /* @__PURE__ */ jsx("div", {
61
+ className: cn("grid grid-rows-[auto_1fr] place-items-center gap-1.5 text-center has-data-[slot=alert-dialog-media]:grid-rows-[auto_auto_1fr] has-data-[slot=alert-dialog-media]:gap-x-4 sm:group-data-[size=default]/alert-dialog-content:place-items-start sm:group-data-[size=default]/alert-dialog-content:text-left sm:group-data-[size=default]/alert-dialog-content:has-data-[slot=alert-dialog-media]:grid-rows-[auto_1fr]", className),
62
+ "data-slot": "alert-dialog-header",
63
+ ...props
64
+ });
65
+ }
66
+ function AlertDialogMedia({ className, ...props }) {
67
+ return /* @__PURE__ */ jsx("div", {
68
+ className: cn("bg-muted mb-2 inline-flex size-10 items-center justify-center rounded-md sm:group-data-[size=default]/alert-dialog-content:row-span-2 *:[svg:not([class*='size-'])]:size-6", className),
69
+ "data-slot": "alert-dialog-media",
70
+ ...props
71
+ });
72
+ }
73
+ function AlertDialogOverlay({ className, ...props }) {
74
+ return /* @__PURE__ */ jsx(AlertDialog$1.Overlay, {
75
+ className: cn("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs fixed inset-0 z-50", className),
76
+ "data-slot": "alert-dialog-overlay",
77
+ ...props
78
+ });
79
+ }
80
+ function AlertDialogPortal({ ...props }) {
81
+ return /* @__PURE__ */ jsx(AlertDialog$1.Portal, {
82
+ "data-slot": "alert-dialog-portal",
83
+ ...props
84
+ });
85
+ }
86
+ function AlertDialogTitle({ className, ...props }) {
87
+ return /* @__PURE__ */ jsx(AlertDialog$1.Title, {
88
+ className: cn("text-base font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2", className),
89
+ "data-slot": "alert-dialog-title",
90
+ ...props
91
+ });
92
+ }
93
+ function AlertDialogTrigger({ ...props }) {
94
+ return /* @__PURE__ */ jsx(AlertDialog$1.Trigger, {
95
+ "data-slot": "alert-dialog-trigger",
96
+ ...props
97
+ });
98
+ }
99
+ //#endregion
100
+ export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger };
101
+
102
+ //# sourceMappingURL=alert-dialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alert-dialog.js","names":["AlertDialogPrimitive"],"sources":["../../../src/components/alert-dialog/alert-dialog.tsx"],"sourcesContent":["/*\n * Copyright 2026 ResQ\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n\"use client\";\n\nimport { AlertDialog as AlertDialogPrimitive } from \"radix-ui\";\nimport type * as React from \"react\";\n\nimport { cn } from \"../../lib/utils.js\";\nimport { Button } from \"../button/button.js\";\n\nfunction AlertDialog({\n\t...props\n}: Readonly<React.ComponentProps<typeof AlertDialogPrimitive.Root>>) {\n\treturn <AlertDialogPrimitive.Root data-slot=\"alert-dialog\" {...props} />;\n}\n\nfunction AlertDialogAction({\n\tclassName,\n\tsize = \"default\",\n\tvariant = \"default\",\n\t...props\n}: Pick<React.ComponentProps<typeof Button>, \"size\" | \"variant\"> &\n\tReact.ComponentProps<typeof AlertDialogPrimitive.Action>) {\n\treturn (\n\t\t<Button asChild size={size} variant={variant}>\n\t\t\t<AlertDialogPrimitive.Action\n\t\t\t\tclassName={cn(className)}\n\t\t\t\tdata-slot=\"alert-dialog-action\"\n\t\t\t\t{...props}\n\t\t\t/>\n\t\t</Button>\n\t);\n}\n\nfunction AlertDialogCancel({\n\tclassName,\n\tsize = \"default\",\n\tvariant = \"outline\",\n\t...props\n}: Pick<React.ComponentProps<typeof Button>, \"size\" | \"variant\"> &\n\tReact.ComponentProps<typeof AlertDialogPrimitive.Cancel>) {\n\treturn (\n\t\t<Button asChild size={size} variant={variant}>\n\t\t\t<AlertDialogPrimitive.Cancel\n\t\t\t\tclassName={cn(className)}\n\t\t\t\tdata-slot=\"alert-dialog-cancel\"\n\t\t\t\t{...props}\n\t\t\t/>\n\t\t</Button>\n\t);\n}\n\nfunction AlertDialogContent({\n\tclassName,\n\tsize = \"default\",\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Content> & {\n\tsize?: \"default\" | \"sm\";\n}) {\n\treturn (\n\t\t<AlertDialogPortal>\n\t\t\t<AlertDialogOverlay />\n\t\t\t<AlertDialogPrimitive.Content\n\t\t\t\tclassName={cn(\n\t\t\t\t\t\"data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 bg-background ring-foreground/10 gap-4 rounded-xl p-4 ring-1 duration-100 data-[size=default]:max-w-xs data-[size=sm]:max-w-xs data-[size=default]:sm:max-w-sm group/alert-dialog-content fixed top-1/2 left-1/2 z-50 grid w-full -translate-x-1/2 -translate-y-1/2 outline-none\",\n\t\t\t\t\tclassName,\n\t\t\t\t)}\n\t\t\t\tdata-size={size}\n\t\t\t\tdata-slot=\"alert-dialog-content\"\n\t\t\t\t{...props}\n\t\t\t/>\n\t\t</AlertDialogPortal>\n\t);\n}\n\nfunction AlertDialogDescription({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Description>) {\n\treturn (\n\t\t<AlertDialogPrimitive.Description\n\t\t\tclassName={cn(\n\t\t\t\t\"text-muted-foreground *:[a]:hover:text-foreground text-sm text-balance md:text-pretty *:[a]:underline *:[a]:underline-offset-3\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\tdata-slot=\"alert-dialog-description\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogFooter({ className, ...props }: React.ComponentProps<\"div\">) {\n\treturn (\n\t\t<div\n\t\t\tclassName={cn(\n\t\t\t\t\"bg-muted/50 -mx-4 -mb-4 rounded-b-xl border-t p-4 flex flex-col-reverse gap-2 group-data-[size=sm]/alert-dialog-content:grid group-data-[size=sm]/alert-dialog-content:grid-cols-2 sm:flex-row sm:justify-end\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\tdata-slot=\"alert-dialog-footer\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogHeader({ className, ...props }: React.ComponentProps<\"div\">) {\n\treturn (\n\t\t<div\n\t\t\tclassName={cn(\n\t\t\t\t\"grid grid-rows-[auto_1fr] place-items-center gap-1.5 text-center has-data-[slot=alert-dialog-media]:grid-rows-[auto_auto_1fr] has-data-[slot=alert-dialog-media]:gap-x-4 sm:group-data-[size=default]/alert-dialog-content:place-items-start sm:group-data-[size=default]/alert-dialog-content:text-left sm:group-data-[size=default]/alert-dialog-content:has-data-[slot=alert-dialog-media]:grid-rows-[auto_1fr]\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\tdata-slot=\"alert-dialog-header\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogMedia({ className, ...props }: React.ComponentProps<\"div\">) {\n\treturn (\n\t\t<div\n\t\t\tclassName={cn(\n\t\t\t\t\"bg-muted mb-2 inline-flex size-10 items-center justify-center rounded-md sm:group-data-[size=default]/alert-dialog-content:row-span-2 *:[svg:not([class*='size-'])]:size-6\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\tdata-slot=\"alert-dialog-media\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogOverlay({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Overlay>) {\n\treturn (\n\t\t<AlertDialogPrimitive.Overlay\n\t\t\tclassName={cn(\n\t\t\t\t\"data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs fixed inset-0 z-50\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\tdata-slot=\"alert-dialog-overlay\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogPortal({\n\t...props\n}: Readonly<React.ComponentProps<typeof AlertDialogPrimitive.Portal>>) {\n\treturn <AlertDialogPrimitive.Portal data-slot=\"alert-dialog-portal\" {...props} />;\n}\n\nfunction AlertDialogTitle({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Title>) {\n\treturn (\n\t\t<AlertDialogPrimitive.Title\n\t\t\tclassName={cn(\n\t\t\t\t\"text-base font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\tdata-slot=\"alert-dialog-title\"\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogTrigger({\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Trigger>) {\n\treturn <AlertDialogPrimitive.Trigger data-slot=\"alert-dialog-trigger\" {...props} />;\n}\n\nexport {\n\tAlertDialog,\n\tAlertDialogAction,\n\tAlertDialogCancel,\n\tAlertDialogContent,\n\tAlertDialogDescription,\n\tAlertDialogFooter,\n\tAlertDialogHeader,\n\tAlertDialogMedia,\n\tAlertDialogOverlay,\n\tAlertDialogPortal,\n\tAlertDialogTitle,\n\tAlertDialogTrigger,\n};\n"],"mappings":";;;;;;AAwBA,SAAS,YAAY,EACpB,GAAG,SACiE;AACpE,QAAO,oBAACA,cAAqB,MAAtB;EAA2B,aAAU;EAAe,GAAI;EAAS,CAAA;;AAGzE,SAAS,kBAAkB,EAC1B,WACA,OAAO,WACP,UAAU,WACV,GAAG,SAEuD;AAC1D,QACC,oBAAC,QAAD;EAAQ,SAAA;EAAc;EAAe;YACpC,oBAACA,cAAqB,QAAtB;GACC,WAAW,GAAG,UAAU;GACxB,aAAU;GACV,GAAI;GACH,CAAA;EACM,CAAA;;AAIX,SAAS,kBAAkB,EAC1B,WACA,OAAO,WACP,UAAU,WACV,GAAG,SAEuD;AAC1D,QACC,oBAAC,QAAD;EAAQ,SAAA;EAAc;EAAe;YACpC,oBAACA,cAAqB,QAAtB;GACC,WAAW,GAAG,UAAU;GACxB,aAAU;GACV,GAAI;GACH,CAAA;EACM,CAAA;;AAIX,SAAS,mBAAmB,EAC3B,WACA,OAAO,WACP,GAAG,SAGD;AACF,QACC,qBAAC,mBAAD,EAAA,UAAA,CACC,oBAAC,oBAAD,EAAsB,CAAA,EACtB,oBAACA,cAAqB,SAAtB;EACC,WAAW,GACV,yZACA,UACA;EACD,aAAW;EACX,aAAU;EACV,GAAI;EACH,CAAA,CACiB,EAAA,CAAA;;AAItB,SAAS,uBAAuB,EAC/B,WACA,GAAG,SAC8D;AACjE,QACC,oBAACA,cAAqB,aAAtB;EACC,WAAW,GACV,kIACA,UACA;EACD,aAAU;EACV,GAAI;EACH,CAAA;;AAIJ,SAAS,kBAAkB,EAAE,WAAW,GAAG,SAAsC;AAChF,QACC,oBAAC,OAAD;EACC,WAAW,GACV,iNACA,UACA;EACD,aAAU;EACV,GAAI;EACH,CAAA;;AAIJ,SAAS,kBAAkB,EAAE,WAAW,GAAG,SAAsC;AAChF,QACC,oBAAC,OAAD;EACC,WAAW,GACV,sZACA,UACA;EACD,aAAU;EACV,GAAI;EACH,CAAA;;AAIJ,SAAS,iBAAiB,EAAE,WAAW,GAAG,SAAsC;AAC/E,QACC,oBAAC,OAAD;EACC,WAAW,GACV,8KACA,UACA;EACD,aAAU;EACV,GAAI;EACH,CAAA;;AAIJ,SAAS,mBAAmB,EAC3B,WACA,GAAG,SAC0D;AAC7D,QACC,oBAACA,cAAqB,SAAtB;EACC,WAAW,GACV,iLACA,UACA;EACD,aAAU;EACV,GAAI;EACH,CAAA;;AAIJ,SAAS,kBAAkB,EAC1B,GAAG,SACmE;AACtE,QAAO,oBAACA,cAAqB,QAAtB;EAA6B,aAAU;EAAsB,GAAI;EAAS,CAAA;;AAGlF,SAAS,iBAAiB,EACzB,WACA,GAAG,SACwD;AAC3D,QACC,oBAACA,cAAqB,OAAtB;EACC,WAAW,GACV,qJACA,UACA;EACD,aAAU;EACV,GAAI;EACH,CAAA;;AAIJ,SAAS,mBAAmB,EAC3B,GAAG,SAC0D;AAC7D,QAAO,oBAACA,cAAqB,SAAtB;EAA8B,aAAU;EAAuB,GAAI;EAAS,CAAA"}
@@ -0,0 +1,2 @@
1
+ import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger } from "./alert-dialog.js";
2
+ export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger };
@@ -0,0 +1,2 @@
1
+ import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger } from "./alert-dialog.js";
2
+ export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger };
@@ -0,0 +1,11 @@
1
+ import { AspectRatio as AspectRatio$1 } from "radix-ui";
2
+ import * as react_jsx_runtime20 from "react/jsx-runtime";
3
+
4
+ //#region src/components/aspect-ratio/aspect-ratio.d.ts
5
+
6
+ declare function AspectRatio({
7
+ ...props
8
+ }: React.ComponentProps<typeof AspectRatio$1.Root>): react_jsx_runtime20.JSX.Element;
9
+ //#endregion
10
+ export { AspectRatio };
11
+ //# sourceMappingURL=aspect-ratio.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aspect-ratio.d.ts","names":[],"sources":["../../../src/components/aspect-ratio/aspect-ratio.tsx"],"sourcesContent":[],"mappings":";;;;;iBAoBS,WAAA;;GAA0B,KAAA,CAAM,sBAAsB,aAAA,CAAqB,QAAK,mBAAA,CAAA,GAAA,CAAA"}
@@ -0,0 +1,29 @@
1
+ "use client";
2
+ import { AspectRatio as AspectRatio$1 } from "radix-ui";
3
+ import { jsx } from "react/jsx-runtime";
4
+ //#region src/components/aspect-ratio/aspect-ratio.tsx
5
+ /**
6
+ * Copyright 2026 ResQ
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+ function AspectRatio({ ...props }) {
21
+ return /* @__PURE__ */ jsx(AspectRatio$1.Root, {
22
+ "data-slot": "aspect-ratio",
23
+ ...props
24
+ });
25
+ }
26
+ //#endregion
27
+ export { AspectRatio };
28
+
29
+ //# sourceMappingURL=aspect-ratio.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aspect-ratio.js","names":["AspectRatioPrimitive"],"sources":["../../../src/components/aspect-ratio/aspect-ratio.tsx"],"sourcesContent":["/**\n * Copyright 2026 ResQ\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n\"use client\";\n\nimport { AspectRatio as AspectRatioPrimitive } from \"radix-ui\";\n\nfunction AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatioPrimitive.Root>) {\n\treturn <AspectRatioPrimitive.Root data-slot=\"aspect-ratio\" {...props} />;\n}\n\nexport { AspectRatio };\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAoBA,SAAS,YAAY,EAAE,GAAG,SAAiE;AAC1F,QAAO,oBAACA,cAAqB,MAAtB;EAA2B,aAAU;EAAe,GAAI;EAAS,CAAA"}
@@ -0,0 +1,2 @@
1
+ import { AspectRatio } from "./aspect-ratio.js";
2
+ export { AspectRatio };
@@ -0,0 +1,2 @@
1
+ import { AspectRatio } from "./aspect-ratio.js";
2
+ export { AspectRatio };
@@ -0,0 +1,36 @@
1
+ import { Avatar as Avatar$1 } from "radix-ui";
2
+ import * as react_jsx_runtime21 from "react/jsx-runtime";
3
+ import * as React from "react";
4
+
5
+ //#region src/components/avatar/avatar.d.ts
6
+
7
+ declare function Avatar({
8
+ className,
9
+ size,
10
+ ...props
11
+ }: React.ComponentProps<typeof Avatar$1.Root> & {
12
+ size?: "default" | "lg" | "sm";
13
+ }): react_jsx_runtime21.JSX.Element;
14
+ declare function AvatarBadge({
15
+ className,
16
+ ...props
17
+ }: React.ComponentProps<"span">): react_jsx_runtime21.JSX.Element;
18
+ declare function AvatarFallback({
19
+ className,
20
+ ...props
21
+ }: React.ComponentProps<typeof Avatar$1.Fallback>): react_jsx_runtime21.JSX.Element;
22
+ declare function AvatarGroup({
23
+ className,
24
+ ...props
25
+ }: React.ComponentProps<"div">): react_jsx_runtime21.JSX.Element;
26
+ declare function AvatarGroupCount({
27
+ className,
28
+ ...props
29
+ }: React.ComponentProps<"div">): react_jsx_runtime21.JSX.Element;
30
+ declare function AvatarImage({
31
+ className,
32
+ ...props
33
+ }: React.ComponentProps<typeof Avatar$1.Image>): react_jsx_runtime21.JSX.Element;
34
+ //#endregion
35
+ export { Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage };
36
+ //# sourceMappingURL=avatar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"avatar.d.ts","names":[],"sources":["../../../src/components/avatar/avatar.tsx"],"sourcesContent":[],"mappings":";;;;;;AA2C0E,iBApBjE,MAAA,CAoCc;EAAA,SAAA;EAAA,IAAA;EAAA,GAAA;CAAA,EAhCpB,KAAA,CAAM,cAgCc,CAAA,OAhCQ,QAAA,CAAgB,IAgCxB,CAAA,GAAA;EACtB,IAAA,CAAA,EAAA,SAAA,GAAA,IAAA,GAAA,IAAA;CAE8B,CAAA,EAjC9B,mBAAA,CAAA,GAAA,CAAA,OAiC8C;iBAnBtC,WAAA,CAmBA;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAnBqC,KAAA,CAAM,cAmB3C,CAAA,MAAA,CAAA,CAAA,EAnBiE,mBAAA,CAAA,GAAA,CAAA,OAmBjE;iBAHA,cAAA,CAG+C;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAArD,KAAA,CAAM,cAA+C,CAAA,OAAzB,QAAA,CAAgB,QAAS,CAAA,CAAA,EAAA,mBAAA,CAAA,GAAA,CAAA,OAAA;iBAa/C,WAAA,CAb+C;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAaV,KAAA,CAAM,cAbI,CAAA,KAAA,CAAA,CAAA,EAaiB,mBAAA,CAAA,GAAA,CAAA,OAbjB;AAAA,iBA0B/C,gBAAA,CAbW;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAa+B,KAAA,CAAM,cAbrC,CAAA,KAAA,CAAA,CAAA,EAa0D,mBAAA,CAAA,GAAA,CAAA,OAb1D;iBA0BX,WAAA,CA1Bc;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EA0BuB,KAAA,CAAM,cA1B7B,CAAA,OA0BmD,QAAA,CAAgB,KA1BnE,CAAA,CAAA,EA0ByE,mBAAA,CAAA,GAAA,CAAA,OA1BzE"}