poetry-ui 0.0.2

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 (442) hide show
  1. checksums.yaml +7 -0
  2. data/.gitattributes +6 -0
  3. data/CHANGELOG.md +3 -0
  4. data/LICENSE.txt +21 -0
  5. data/README.md +87 -0
  6. data/THIRD_PARTY_NOTICES.md +201 -0
  7. data/app/components/poetry/ui/accordion/component.html.erb +3 -0
  8. data/app/components/poetry/ui/accordion/component.rb +197 -0
  9. data/app/components/poetry/ui/accordion/preview.rb +39 -0
  10. data/app/components/poetry/ui/accordion/style.rb +37 -0
  11. data/app/components/poetry/ui/alert/component.html.erb +6 -0
  12. data/app/components/poetry/ui/alert/component.rb +61 -0
  13. data/app/components/poetry/ui/alert/preview.rb +35 -0
  14. data/app/components/poetry/ui/alert/style.rb +24 -0
  15. data/app/components/poetry/ui/alert_dialog/component.html.erb +17 -0
  16. data/app/components/poetry/ui/alert_dialog/component.rb +208 -0
  17. data/app/components/poetry/ui/alert_dialog/preview.rb +48 -0
  18. data/app/components/poetry/ui/alert_dialog/style.rb +46 -0
  19. data/app/components/poetry/ui/aspect_ratio/component.rb +63 -0
  20. data/app/components/poetry/ui/aspect_ratio/preview.rb +29 -0
  21. data/app/components/poetry/ui/aspect_ratio/style.rb +13 -0
  22. data/app/components/poetry/ui/attachment/component.html.erb +13 -0
  23. data/app/components/poetry/ui/attachment/component.rb +139 -0
  24. data/app/components/poetry/ui/attachment/preview.rb +83 -0
  25. data/app/components/poetry/ui/attachment/style.rb +59 -0
  26. data/app/components/poetry/ui/autocomplete/component.html.erb +16 -0
  27. data/app/components/poetry/ui/autocomplete/component.rb +193 -0
  28. data/app/components/poetry/ui/autocomplete/preview.rb +39 -0
  29. data/app/components/poetry/ui/autocomplete/style.rb +18 -0
  30. data/app/components/poetry/ui/avatar/component.rb +103 -0
  31. data/app/components/poetry/ui/avatar/group_preview.html.erb +11 -0
  32. data/app/components/poetry/ui/avatar/preview.rb +50 -0
  33. data/app/components/poetry/ui/avatar/style.rb +34 -0
  34. data/app/components/poetry/ui/badge/component.rb +73 -0
  35. data/app/components/poetry/ui/badge/preview.rb +54 -0
  36. data/app/components/poetry/ui/badge/style.rb +35 -0
  37. data/app/components/poetry/ui/breadcrumb/component.html.erb +32 -0
  38. data/app/components/poetry/ui/breadcrumb/component.rb +102 -0
  39. data/app/components/poetry/ui/breadcrumb/dropdown_crumb_preview.html.erb +21 -0
  40. data/app/components/poetry/ui/breadcrumb/preview.rb +45 -0
  41. data/app/components/poetry/ui/breadcrumb/style.rb +25 -0
  42. data/app/components/poetry/ui/bubble/component.html.erb +4 -0
  43. data/app/components/poetry/ui/bubble/component.rb +106 -0
  44. data/app/components/poetry/ui/bubble/preview.rb +62 -0
  45. data/app/components/poetry/ui/bubble/style.rb +47 -0
  46. data/app/components/poetry/ui/button/component.html.erb +14 -0
  47. data/app/components/poetry/ui/button/component.rb +168 -0
  48. data/app/components/poetry/ui/button/preview.rb +94 -0
  49. data/app/components/poetry/ui/button/style.rb +41 -0
  50. data/app/components/poetry/ui/button_group/component.rb +70 -0
  51. data/app/components/poetry/ui/button_group/popup_triggers_preview.html.erb +21 -0
  52. data/app/components/poetry/ui/button_group/preview.rb +46 -0
  53. data/app/components/poetry/ui/button_group/style.rb +27 -0
  54. data/app/components/poetry/ui/button_group/text_prefix_preview.html.erb +7 -0
  55. data/app/components/poetry/ui/calendar/component.html.erb +72 -0
  56. data/app/components/poetry/ui/calendar/component.rb +366 -0
  57. data/app/components/poetry/ui/calendar/preview.rb +55 -0
  58. data/app/components/poetry/ui/calendar/style.rb +55 -0
  59. data/app/components/poetry/ui/card/component.html.erb +11 -0
  60. data/app/components/poetry/ui/card/component.rb +90 -0
  61. data/app/components/poetry/ui/card/preview.rb +29 -0
  62. data/app/components/poetry/ui/card/style.rb +23 -0
  63. data/app/components/poetry/ui/carousel/component.html.erb +17 -0
  64. data/app/components/poetry/ui/carousel/component.rb +179 -0
  65. data/app/components/poetry/ui/carousel/preview.rb +67 -0
  66. data/app/components/poetry/ui/carousel/style.rb +39 -0
  67. data/app/components/poetry/ui/checkbox/component.html.erb +22 -0
  68. data/app/components/poetry/ui/checkbox/component.rb +179 -0
  69. data/app/components/poetry/ui/checkbox/preview.rb +68 -0
  70. data/app/components/poetry/ui/checkbox/style.rb +28 -0
  71. data/app/components/poetry/ui/clipboard_text/component.html.erb +15 -0
  72. data/app/components/poetry/ui/clipboard_text/component.rb +154 -0
  73. data/app/components/poetry/ui/clipboard_text/preview.rb +24 -0
  74. data/app/components/poetry/ui/clipboard_text/style.rb +23 -0
  75. data/app/components/poetry/ui/code_block/component.html.erb +13 -0
  76. data/app/components/poetry/ui/code_block/component.rb +141 -0
  77. data/app/components/poetry/ui/code_block/preview.rb +40 -0
  78. data/app/components/poetry/ui/code_block/style.rb +38 -0
  79. data/app/components/poetry/ui/collapsible/component.html.erb +4 -0
  80. data/app/components/poetry/ui/collapsible/component.rb +134 -0
  81. data/app/components/poetry/ui/collapsible/preview.rb +24 -0
  82. data/app/components/poetry/ui/combobox/component.html.erb +49 -0
  83. data/app/components/poetry/ui/combobox/component.rb +1086 -0
  84. data/app/components/poetry/ui/combobox/preview.rb +164 -0
  85. data/app/components/poetry/ui/combobox/style.rb +148 -0
  86. data/app/components/poetry/ui/command/component.html.erb +20 -0
  87. data/app/components/poetry/ui/command/component.rb +526 -0
  88. data/app/components/poetry/ui/command/dialog_component.html.erb +14 -0
  89. data/app/components/poetry/ui/command/dialog_component.rb +206 -0
  90. data/app/components/poetry/ui/command/dialog_preview.rb +39 -0
  91. data/app/components/poetry/ui/command/preview.rb +121 -0
  92. data/app/components/poetry/ui/command/style.rb +78 -0
  93. data/app/components/poetry/ui/composable_trigger.rb +63 -0
  94. data/app/components/poetry/ui/context_menu/component.html.erb +6 -0
  95. data/app/components/poetry/ui/context_menu/component.rb +358 -0
  96. data/app/components/poetry/ui/context_menu/preview.rb +111 -0
  97. data/app/components/poetry/ui/context_menu/style.rb +59 -0
  98. data/app/components/poetry/ui/data_table/component.html.erb +78 -0
  99. data/app/components/poetry/ui/data_table/component.rb +277 -0
  100. data/app/components/poetry/ui/data_table/preview.rb +68 -0
  101. data/app/components/poetry/ui/data_table/state.rb +115 -0
  102. data/app/components/poetry/ui/data_table/style.rb +42 -0
  103. data/app/components/poetry/ui/date_field/component.html.erb +7 -0
  104. data/app/components/poetry/ui/date_field/component.rb +209 -0
  105. data/app/components/poetry/ui/date_field/preview.rb +42 -0
  106. data/app/components/poetry/ui/date_field/style.rb +35 -0
  107. data/app/components/poetry/ui/date_picker/component.html.erb +23 -0
  108. data/app/components/poetry/ui/date_picker/component.rb +242 -0
  109. data/app/components/poetry/ui/date_picker/preview.rb +31 -0
  110. data/app/components/poetry/ui/date_picker/style.rb +25 -0
  111. data/app/components/poetry/ui/deferred/component.html.erb +16 -0
  112. data/app/components/poetry/ui/deferred/component.rb +90 -0
  113. data/app/components/poetry/ui/deferred/preview.rb +24 -0
  114. data/app/components/poetry/ui/dialog/component.html.erb +21 -0
  115. data/app/components/poetry/ui/dialog/component.rb +194 -0
  116. data/app/components/poetry/ui/dialog/preview.rb +33 -0
  117. data/app/components/poetry/ui/dialog/style.rb +30 -0
  118. data/app/components/poetry/ui/drawer/component.html.erb +16 -0
  119. data/app/components/poetry/ui/drawer/component.rb +207 -0
  120. data/app/components/poetry/ui/drawer/preview.rb +69 -0
  121. data/app/components/poetry/ui/drawer/style.rb +105 -0
  122. data/app/components/poetry/ui/dropdown_menu/component.html.erb +6 -0
  123. data/app/components/poetry/ui/dropdown_menu/component.rb +350 -0
  124. data/app/components/poetry/ui/dropdown_menu/preview.rb +101 -0
  125. data/app/components/poetry/ui/dropdown_menu/style.rb +60 -0
  126. data/app/components/poetry/ui/empty/component.html.erb +10 -0
  127. data/app/components/poetry/ui/empty/component.rb +79 -0
  128. data/app/components/poetry/ui/empty/preview.rb +27 -0
  129. data/app/components/poetry/ui/empty/style.rb +27 -0
  130. data/app/components/poetry/ui/family_identity.rb +52 -0
  131. data/app/components/poetry/ui/field/component.html.erb +19 -0
  132. data/app/components/poetry/ui/field/component.rb +183 -0
  133. data/app/components/poetry/ui/field/preview.html.erb +30 -0
  134. data/app/components/poetry/ui/field/preview.rb +72 -0
  135. data/app/components/poetry/ui/field/style.rb +68 -0
  136. data/app/components/poetry/ui/field_group/component.rb +61 -0
  137. data/app/components/poetry/ui/field_group/preview.html.erb +30 -0
  138. data/app/components/poetry/ui/field_group/preview.rb +20 -0
  139. data/app/components/poetry/ui/field_group/style.rb +25 -0
  140. data/app/components/poetry/ui/field_separator/component.rb +70 -0
  141. data/app/components/poetry/ui/field_separator/preview.rb +18 -0
  142. data/app/components/poetry/ui/field_separator/style.rb +20 -0
  143. data/app/components/poetry/ui/fieldset/component.rb +90 -0
  144. data/app/components/poetry/ui/fieldset/preview.html.erb +22 -0
  145. data/app/components/poetry/ui/fieldset/preview.rb +25 -0
  146. data/app/components/poetry/ui/fieldset/style.rb +18 -0
  147. data/app/components/poetry/ui/file_input/component.html.erb +14 -0
  148. data/app/components/poetry/ui/file_input/component.rb +188 -0
  149. data/app/components/poetry/ui/file_input/preview.rb +30 -0
  150. data/app/components/poetry/ui/file_input/style.rb +35 -0
  151. data/app/components/poetry/ui/hover_card/component.html.erb +6 -0
  152. data/app/components/poetry/ui/hover_card/component.rb +201 -0
  153. data/app/components/poetry/ui/hover_card/preview.rb +60 -0
  154. data/app/components/poetry/ui/hover_card/style.rb +17 -0
  155. data/app/components/poetry/ui/icon/component.rb +127 -0
  156. data/app/components/poetry/ui/icon/preview.rb +21 -0
  157. data/app/components/poetry/ui/input/component.rb +80 -0
  158. data/app/components/poetry/ui/input/preview.rb +35 -0
  159. data/app/components/poetry/ui/input/style.rb +18 -0
  160. data/app/components/poetry/ui/input_group/button_preview.html.erb +12 -0
  161. data/app/components/poetry/ui/input_group/component.rb +69 -0
  162. data/app/components/poetry/ui/input_group/preview.rb +23 -0
  163. data/app/components/poetry/ui/input_group/search_preview.html.erb +13 -0
  164. data/app/components/poetry/ui/input_group/style.rb +40 -0
  165. data/app/components/poetry/ui/input_group/textarea_preview.html.erb +10 -0
  166. data/app/components/poetry/ui/input_group_field.rb +61 -0
  167. data/app/components/poetry/ui/input_otp/component.html.erb +25 -0
  168. data/app/components/poetry/ui/input_otp/component.rb +250 -0
  169. data/app/components/poetry/ui/input_otp/preview.rb +91 -0
  170. data/app/components/poetry/ui/input_otp/style.rb +36 -0
  171. data/app/components/poetry/ui/item/component.html.erb +13 -0
  172. data/app/components/poetry/ui/item/component.rb +99 -0
  173. data/app/components/poetry/ui/item/group_preview.html.erb +15 -0
  174. data/app/components/poetry/ui/item/preview.rb +52 -0
  175. data/app/components/poetry/ui/item/style.rb +45 -0
  176. data/app/components/poetry/ui/kbd/component.rb +47 -0
  177. data/app/components/poetry/ui/kbd/group_preview.html.erb +4 -0
  178. data/app/components/poetry/ui/kbd/preview.rb +23 -0
  179. data/app/components/poetry/ui/kbd/style.rb +13 -0
  180. data/app/components/poetry/ui/label/component.rb +46 -0
  181. data/app/components/poetry/ui/label/preview.html.erb +5 -0
  182. data/app/components/poetry/ui/label/preview.rb +16 -0
  183. data/app/components/poetry/ui/label/style.rb +13 -0
  184. data/app/components/poetry/ui/link/component.rb +62 -0
  185. data/app/components/poetry/ui/link/preview.rb +31 -0
  186. data/app/components/poetry/ui/link/style.rb +20 -0
  187. data/app/components/poetry/ui/marker/component.html.erb +4 -0
  188. data/app/components/poetry/ui/marker/component.rb +81 -0
  189. data/app/components/poetry/ui/marker/preview.rb +43 -0
  190. data/app/components/poetry/ui/marker/style.rb +24 -0
  191. data/app/components/poetry/ui/menubar/component.html.erb +3 -0
  192. data/app/components/poetry/ui/menubar/component.rb +493 -0
  193. data/app/components/poetry/ui/menubar/preview.rb +164 -0
  194. data/app/components/poetry/ui/menubar/style.rb +71 -0
  195. data/app/components/poetry/ui/menus.rb +386 -0
  196. data/app/components/poetry/ui/message/component.html.erb +8 -0
  197. data/app/components/poetry/ui/message/component.rb +64 -0
  198. data/app/components/poetry/ui/message/preview.rb +33 -0
  199. data/app/components/poetry/ui/message/style.rb +29 -0
  200. data/app/components/poetry/ui/message_scroller/component.html.erb +15 -0
  201. data/app/components/poetry/ui/message_scroller/component.rb +163 -0
  202. data/app/components/poetry/ui/message_scroller/preview.rb +33 -0
  203. data/app/components/poetry/ui/message_scroller/style.rb +39 -0
  204. data/app/components/poetry/ui/metadata_list/component.rb +88 -0
  205. data/app/components/poetry/ui/metadata_list/preview.rb +55 -0
  206. data/app/components/poetry/ui/metadata_list/style.rb +35 -0
  207. data/app/components/poetry/ui/meter/component.rb +117 -0
  208. data/app/components/poetry/ui/meter/preview.rb +28 -0
  209. data/app/components/poetry/ui/meter/style.rb +16 -0
  210. data/app/components/poetry/ui/native_select/component.rb +124 -0
  211. data/app/components/poetry/ui/native_select/labelled_preview.html.erb +7 -0
  212. data/app/components/poetry/ui/native_select/preview.rb +20 -0
  213. data/app/components/poetry/ui/native_select/style.rb +22 -0
  214. data/app/components/poetry/ui/navigation_menu/bar_preview.html.erb +14 -0
  215. data/app/components/poetry/ui/navigation_menu/component.html.erb +25 -0
  216. data/app/components/poetry/ui/navigation_menu/component.rb +254 -0
  217. data/app/components/poetry/ui/navigation_menu/preview.rb +20 -0
  218. data/app/components/poetry/ui/navigation_menu/style.rb +73 -0
  219. data/app/components/poetry/ui/navigation_menu/viewport_preview.html.erb +23 -0
  220. data/app/components/poetry/ui/number_field/component.html.erb +19 -0
  221. data/app/components/poetry/ui/number_field/component.rb +263 -0
  222. data/app/components/poetry/ui/number_field/preview.rb +66 -0
  223. data/app/components/poetry/ui/number_field/style.rb +14 -0
  224. data/app/components/poetry/ui/pagination/component.html.erb +40 -0
  225. data/app/components/poetry/ui/pagination/component.rb +182 -0
  226. data/app/components/poetry/ui/pagination/preview.rb +47 -0
  227. data/app/components/poetry/ui/pagination/style.rb +27 -0
  228. data/app/components/poetry/ui/popover/component.html.erb +17 -0
  229. data/app/components/poetry/ui/popover/component.rb +203 -0
  230. data/app/components/poetry/ui/popover/preview.html.erb +29 -0
  231. data/app/components/poetry/ui/popover/preview.rb +66 -0
  232. data/app/components/poetry/ui/popover/style.rb +26 -0
  233. data/app/components/poetry/ui/popper_consumer.rb +69 -0
  234. data/app/components/poetry/ui/progress/component.rb +95 -0
  235. data/app/components/poetry/ui/progress/preview.rb +22 -0
  236. data/app/components/poetry/ui/progress/style.rb +19 -0
  237. data/app/components/poetry/ui/questionnaire/component.html.erb +80 -0
  238. data/app/components/poetry/ui/questionnaire/component.rb +396 -0
  239. data/app/components/poetry/ui/questionnaire/preview.rb +99 -0
  240. data/app/components/poetry/ui/questionnaire/style.rb +53 -0
  241. data/app/components/poetry/ui/radio_group/component.html.erb +4 -0
  242. data/app/components/poetry/ui/radio_group/component.rb +323 -0
  243. data/app/components/poetry/ui/radio_group/preview.rb +109 -0
  244. data/app/components/poetry/ui/radio_group/style.rb +53 -0
  245. data/app/components/poetry/ui/resizable/component.html.erb +10 -0
  246. data/app/components/poetry/ui/resizable/component.rb +178 -0
  247. data/app/components/poetry/ui/resizable/preview.rb +42 -0
  248. data/app/components/poetry/ui/resizable/style.rb +30 -0
  249. data/app/components/poetry/ui/scroll_area/component.rb +76 -0
  250. data/app/components/poetry/ui/scroll_area/preview.rb +35 -0
  251. data/app/components/poetry/ui/scroll_area/style.rb +19 -0
  252. data/app/components/poetry/ui/search_field/component.html.erb +15 -0
  253. data/app/components/poetry/ui/search_field/component.rb +137 -0
  254. data/app/components/poetry/ui/search_field/preview.rb +23 -0
  255. data/app/components/poetry/ui/search_field/style.rb +18 -0
  256. data/app/components/poetry/ui/select/component.html.erb +15 -0
  257. data/app/components/poetry/ui/select/component.rb +639 -0
  258. data/app/components/poetry/ui/select/preview.rb +113 -0
  259. data/app/components/poetry/ui/select/style.rb +58 -0
  260. data/app/components/poetry/ui/sensitive_input/component.html.erb +29 -0
  261. data/app/components/poetry/ui/sensitive_input/component.rb +274 -0
  262. data/app/components/poetry/ui/sensitive_input/preview.rb +40 -0
  263. data/app/components/poetry/ui/sensitive_input/style.rb +49 -0
  264. data/app/components/poetry/ui/separator/component.rb +57 -0
  265. data/app/components/poetry/ui/separator/preview.rb +19 -0
  266. data/app/components/poetry/ui/separator/style.rb +15 -0
  267. data/app/components/poetry/ui/sheet/component.html.erb +21 -0
  268. data/app/components/poetry/ui/sheet/component.rb +97 -0
  269. data/app/components/poetry/ui/sheet/preview.rb +57 -0
  270. data/app/components/poetry/ui/sheet/style.rb +47 -0
  271. data/app/components/poetry/ui/sidebar/component.html.erb +20 -0
  272. data/app/components/poetry/ui/sidebar/component.rb +249 -0
  273. data/app/components/poetry/ui/sidebar/preview.rb +21 -0
  274. data/app/components/poetry/ui/sidebar/shell_preview.html.erb +47 -0
  275. data/app/components/poetry/ui/sidebar/style.rb +139 -0
  276. data/app/components/poetry/ui/skeleton/component.rb +39 -0
  277. data/app/components/poetry/ui/skeleton/preview.rb +22 -0
  278. data/app/components/poetry/ui/skeleton/style.rb +13 -0
  279. data/app/components/poetry/ui/slider/component.html.erb +13 -0
  280. data/app/components/poetry/ui/slider/component.rb +360 -0
  281. data/app/components/poetry/ui/slider/preview.rb +73 -0
  282. data/app/components/poetry/ui/slider/style.rb +55 -0
  283. data/app/components/poetry/ui/spinner/component.rb +58 -0
  284. data/app/components/poetry/ui/spinner/preview.rb +22 -0
  285. data/app/components/poetry/ui/spinner/style.rb +12 -0
  286. data/app/components/poetry/ui/stat/component.html.erb +13 -0
  287. data/app/components/poetry/ui/stat/component.rb +102 -0
  288. data/app/components/poetry/ui/stat/preview.rb +47 -0
  289. data/app/components/poetry/ui/stat/style.rb +29 -0
  290. data/app/components/poetry/ui/switch/component.html.erb +15 -0
  291. data/app/components/poetry/ui/switch/component.rb +136 -0
  292. data/app/components/poetry/ui/switch/preview.rb +66 -0
  293. data/app/components/poetry/ui/switch/style.rb +22 -0
  294. data/app/components/poetry/ui/table/component.html.erb +3 -0
  295. data/app/components/poetry/ui/table/component.rb +93 -0
  296. data/app/components/poetry/ui/table/preview.rb +96 -0
  297. data/app/components/poetry/ui/table/style.rb +26 -0
  298. data/app/components/poetry/ui/tabs/component.html.erb +10 -0
  299. data/app/components/poetry/ui/tabs/component.rb +253 -0
  300. data/app/components/poetry/ui/tabs/preview.rb +43 -0
  301. data/app/components/poetry/ui/tabs/style.rb +49 -0
  302. data/app/components/poetry/ui/tag_group/component.html.erb +8 -0
  303. data/app/components/poetry/ui/tag_group/component.rb +203 -0
  304. data/app/components/poetry/ui/tag_group/preview.rb +43 -0
  305. data/app/components/poetry/ui/tag_group/style.rb +29 -0
  306. data/app/components/poetry/ui/textarea/component.rb +64 -0
  307. data/app/components/poetry/ui/textarea/preview.rb +75 -0
  308. data/app/components/poetry/ui/textarea/style.rb +18 -0
  309. data/app/components/poetry/ui/time_field/component.html.erb +6 -0
  310. data/app/components/poetry/ui/time_field/component.rb +85 -0
  311. data/app/components/poetry/ui/time_field/preview.rb +40 -0
  312. data/app/components/poetry/ui/time_field/style.rb +30 -0
  313. data/app/components/poetry/ui/timeline/component.rb +134 -0
  314. data/app/components/poetry/ui/timeline/preview.rb +61 -0
  315. data/app/components/poetry/ui/timeline/style.rb +54 -0
  316. data/app/components/poetry/ui/toast/component.html.erb +24 -0
  317. data/app/components/poetry/ui/toast/component.rb +178 -0
  318. data/app/components/poetry/ui/toast/preview.rb +69 -0
  319. data/app/components/poetry/ui/toast/style.rb +33 -0
  320. data/app/components/poetry/ui/toast_trigger/addressed_preview.html.erb +12 -0
  321. data/app/components/poetry/ui/toast_trigger/component.html.erb +3 -0
  322. data/app/components/poetry/ui/toast_trigger/component.rb +82 -0
  323. data/app/components/poetry/ui/toast_trigger/default_preview.html.erb +11 -0
  324. data/app/components/poetry/ui/toast_trigger/preview.rb +19 -0
  325. data/app/components/poetry/ui/toaster/component.html.erb +1 -0
  326. data/app/components/poetry/ui/toaster/component.rb +99 -0
  327. data/app/components/poetry/ui/toaster/positions_preview.html.erb +24 -0
  328. data/app/components/poetry/ui/toaster/preview.rb +46 -0
  329. data/app/components/poetry/ui/toaster/stamp_preview.html.erb +15 -0
  330. data/app/components/poetry/ui/toaster/style.rb +26 -0
  331. data/app/components/poetry/ui/toggle/component.rb +120 -0
  332. data/app/components/poetry/ui/toggle/preview.rb +79 -0
  333. data/app/components/poetry/ui/toggle/style.rb +33 -0
  334. data/app/components/poetry/ui/toggle_group/component.html.erb +4 -0
  335. data/app/components/poetry/ui/toggle_group/component.rb +252 -0
  336. data/app/components/poetry/ui/toggle_group/preview.rb +143 -0
  337. data/app/components/poetry/ui/toggle_group/style.rb +33 -0
  338. data/app/components/poetry/ui/toolbar/component.rb +125 -0
  339. data/app/components/poetry/ui/toolbar/preview.rb +41 -0
  340. data/app/components/poetry/ui/toolbar/style.rb +20 -0
  341. data/app/components/poetry/ui/tooltip/component.html.erb +20 -0
  342. data/app/components/poetry/ui/tooltip/component.rb +185 -0
  343. data/app/components/poetry/ui/tooltip/preview.rb +74 -0
  344. data/app/components/poetry/ui/tooltip/previews/provider_row.html.erb +25 -0
  345. data/app/components/poetry/ui/tooltip/style.rb +24 -0
  346. data/app/components/poetry/ui/tree/component.html.erb +32 -0
  347. data/app/components/poetry/ui/tree/component.rb +233 -0
  348. data/app/components/poetry/ui/tree/preview.rb +55 -0
  349. data/app/components/poetry/ui/tree/style.rb +29 -0
  350. data/app/components/poetry/ui/typeset/component.rb +73 -0
  351. data/app/components/poetry/ui/typeset/preview.rb +45 -0
  352. data/app/components/poetry/ui/typeset/style.rb +15 -0
  353. data/app/controllers/poetry/ui/llms_controller.rb +28 -0
  354. data/app/helpers/poetry/ui/components_helper.rb +1794 -0
  355. data/app/helpers/poetry/ui/form_builder/type_inference.rb +117 -0
  356. data/app/helpers/poetry/ui/form_builder.rb +916 -0
  357. data/app/helpers/poetry/ui/optimistic_form_builder.rb +55 -0
  358. data/app/helpers/poetry/ui/toast_stream_actions.rb +27 -0
  359. data/config/component_descriptions.yml +96 -0
  360. data/config/component_registry.yml +12257 -0
  361. data/config/locales/en.yml +93 -0
  362. data/config/routes.rb +8 -0
  363. data/config/template_classes.txt +113 -0
  364. data/lib/generators/poetry/add/add_generator.rb +218 -0
  365. data/lib/generators/poetry/agent_rules/agent_rules_generator.rb +91 -0
  366. data/lib/generators/poetry/agents/agents_generator.rb +24 -0
  367. data/lib/generators/poetry/agents_section.rb +148 -0
  368. data/lib/generators/poetry/block/block_generator.rb +67 -0
  369. data/lib/generators/poetry/block/templates/action_bar.html.erb +45 -0
  370. data/lib/generators/poetry/block/templates/app_shell.html.erb +139 -0
  371. data/lib/generators/poetry/block/templates/data_index.html.erb +85 -0
  372. data/lib/generators/poetry/block/templates/destructive_panel.html.erb +26 -0
  373. data/lib/generators/poetry/block/templates/page_header.html.erb +25 -0
  374. data/lib/generators/poetry/block/templates/section_card.html.erb +42 -0
  375. data/lib/generators/poetry/block/templates/stepper.html.erb +79 -0
  376. data/lib/generators/poetry/block/templates/top_nav.html.erb +44 -0
  377. data/lib/generators/poetry/diff/diff_generator.rb +135 -0
  378. data/lib/generators/poetry/editor/editor_generator.rb +344 -0
  379. data/lib/generators/poetry/editor/templates/poetry-check-hook +81 -0
  380. data/lib/generators/poetry/install/install_generator.rb +364 -0
  381. data/lib/generators/poetry/pagination/pagination_generator.rb +76 -0
  382. data/lib/generators/poetry/pagination/templates/kaminari_paginator.html.erb +29 -0
  383. data/lib/generators/poetry/pagination/templates/poetry_link_renderer.rb +34 -0
  384. data/lib/generators/poetry/pagination/templates/poetry_pagy_helper.rb +28 -0
  385. data/lib/generators/poetry/recipes/agent_embed/app/javascript/controllers/agent_demo_controller.js +131 -0
  386. data/lib/generators/poetry/recipes/screen_data_index/app/controllers/orders_controller.rb +15 -0
  387. data/lib/generators/poetry/recipes/screen_data_index/app/views/orders/index.html.erb +7 -0
  388. data/lib/generators/poetry/recipes/screen_data_index/test/system/orders_index_test.rb +16 -0
  389. data/lib/generators/poetry/recipes/screen_settings/app/controllers/settings_controller.rb +14 -0
  390. data/lib/generators/poetry/recipes/screen_settings/app/views/settings/show.html.erb +9 -0
  391. data/lib/generators/poetry/recipes/screen_settings/test/system/settings_show_test.rb +16 -0
  392. data/lib/generators/poetry/scaffold_templates/scaffold_templates_generator.rb +60 -0
  393. data/lib/generators/poetry/scaffold_templates/templates/_form.html.erb.tt +77 -0
  394. data/lib/generators/poetry/scaffold_templates/templates/controller.rb.tt +78 -0
  395. data/lib/generators/poetry/scaffold_templates/templates/edit.html.erb.tt +14 -0
  396. data/lib/generators/poetry/scaffold_templates/templates/index.html.erb.tt +24 -0
  397. data/lib/generators/poetry/scaffold_templates/templates/new.html.erb.tt +11 -0
  398. data/lib/generators/poetry/scaffold_templates/templates/partial.html.erb.tt +13 -0
  399. data/lib/generators/poetry/scaffold_templates/templates/show.html.erb.tt +18 -0
  400. data/lib/generators/poetry/skill/skill_generator.rb +34 -0
  401. data/lib/generators/poetry/skill/templates/poetry-component/SKILL.md +58 -0
  402. data/lib/generators/poetry/skill/templates/poetry-component/references/anatomy.md +152 -0
  403. data/lib/generators/poetry/skill/templates/poetry-component/references/checklist.md +67 -0
  404. data/lib/generators/poetry/skill/templates/poetry-component/references/documentation.md +137 -0
  405. data/lib/generators/poetry/skill/templates/poetry-design/SKILL.md +56 -0
  406. data/lib/generators/poetry/skill/templates/poetry-design/references/audit.md +123 -0
  407. data/lib/generators/poetry/skill/templates/poetry-design/references/compose.md +73 -0
  408. data/lib/generators/poetry/skill/templates/poetry-design/references/figma.md +68 -0
  409. data/lib/generators/poetry/skill/templates/poetry-design/references/paper.md +56 -0
  410. data/lib/generators/poetry/skill/templates/poetry-design/references/study.md +47 -0
  411. data/lib/generators/poetry/skill/templates/poetry-design/references/theme.md +70 -0
  412. data/lib/generators/poetry/skills_section.rb +58 -0
  413. data/lib/poetry/ui/chat.rb +283 -0
  414. data/lib/poetry/ui/code_block_highlighter.rb +60 -0
  415. data/lib/poetry/ui/engine.rb +55 -0
  416. data/lib/poetry/ui/recipes.rb +157 -0
  417. data/lib/poetry/ui/testing/combobox.rb +167 -0
  418. data/lib/poetry/ui/testing/dialog.rb +73 -0
  419. data/lib/poetry/ui/testing/menu.rb +127 -0
  420. data/lib/poetry/ui/testing/registration.rb +58 -0
  421. data/lib/poetry/ui/testing/select.rb +147 -0
  422. data/lib/poetry/ui/testing/tester.rb +130 -0
  423. data/lib/poetry/ui/testing.rb +130 -0
  424. data/lib/poetry/ui/themes.rb +109 -0
  425. data/lib/poetry/ui/version.rb +8 -0
  426. data/lib/poetry/ui/webmcp.rb +91 -0
  427. data/lib/poetry/ui.rb +285 -0
  428. data/lib/poetry-ui.rb +5 -0
  429. data/lib/tasks/poetry/check.rake +73 -0
  430. data/lib/tasks/poetry/design.rake +293 -0
  431. data/lib/tasks/poetry/verify.rake +36 -0
  432. data/themes/default.css +1793 -0
  433. data/themes/luma.css +1764 -0
  434. data/themes/lyra.css +1768 -0
  435. data/themes/maia.css +1768 -0
  436. data/themes/mira.css +1760 -0
  437. data/themes/nova.css +1755 -0
  438. data/themes/rhea.css +1771 -0
  439. data/themes/sera.css +1757 -0
  440. data/themes/vega.css +1775 -0
  441. data/typeset/typeset.css +499 -0
  442. metadata +502 -0
data/themes/vega.css ADDED
@@ -0,0 +1,1775 @@
1
+ /* poetry vega theme - upstream style-vega.css ported onto the
2
+ * cn-* layer (pinned clone 1773ecfe, the shadcn@4.19.0 release). Same contract as default.css:
3
+ * imported layer(base); bare selectors while installs carry ONE theme
4
+ * (the .style-<name> wrapper arrives with the docs switcher); rule order
5
+ * per component = base < elements < variants < compounds; split-side,
6
+ * no-empty-rules and cross-component-last rules apply (see the default
7
+ * theme header + docs/theming.md).
8
+ *
9
+ * Port disciplines (full ledger: docs/vega-port-ledger.txt):
10
+ * - upstream token text kept VERBATIM wherever poetry's markup speaks
11
+ * the same vocabulary; translated where it does not (data-[state=on]
12
+ * -> data-pressed, data-vertical -> data-[orientation=vertical],
13
+ * overlay rules -> native-dialog backdrop:* pseudos);
14
+ * - upstream !important stripped (layer order + closing-section order
15
+ * arbitrate; the sidebar collapse geometry keeps upstream's ! - the
16
+ * default-theme precedent);
17
+ * - icon-side paddings carry upstream's has-data-[icon=*] form (inert
18
+ * in poetry markup) PLUS working >svg:first/last-child twins;
19
+ * - native-dialog surfaces keep mechanism residue (m-0/w-full/open
20
+ * animations); display tokens never port onto <dialog> (open:grid
21
+ * stays inline - the class:nil lesson);
22
+ * - poetry-own surfaces (calendar engine, drawer geometry, tabs color
23
+ * cluster, combobox trigger box, toast family, link, data-table,
24
+ * charts) inherit the default treatment where vega ships no
25
+ * equivalent - each is ledgered.
26
+ */
27
+
28
+ /* MARK: Alert */
29
+ .cn-alert {
30
+ @apply grid grid-cols-[0_1fr] items-start gap-y-0.5 rounded-lg border px-4 py-3 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.5 [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current;
31
+ }
32
+
33
+ .cn-alert-action {
34
+ @apply absolute top-2.5 right-3;
35
+ }
36
+
37
+ .cn-alert-title {
38
+ @apply col-start-2 font-medium;
39
+ }
40
+
41
+ .cn-alert-description {
42
+ @apply col-start-2 text-sm text-muted-foreground text-balance md:text-pretty [&_p:not(:last-child)]:mb-4;
43
+ }
44
+
45
+ .cn-alert-variant-default {
46
+ @apply bg-card text-card-foreground;
47
+ }
48
+
49
+ .cn-alert-variant-destructive {
50
+ @apply text-destructive bg-card *:data-[slot=alert-description]:text-destructive/90 *:[svg]:text-current;
51
+ }
52
+
53
+ /* MARK: Accordion */
54
+ /* Root hook (roster-wide landing): vega does not box the root -
55
+ * carries the default treatment. */
56
+ .cn-accordion {
57
+ @apply w-full;
58
+ }
59
+
60
+ .cn-accordion-item {
61
+ @apply not-last:border-b;
62
+ }
63
+
64
+ .cn-accordion-trigger {
65
+ @apply focus-visible:ring-ring/50 focus-visible:border-ring focus-visible:after:border-ring rounded-md py-4 text-left text-sm font-medium hover:underline focus-visible:ring-3;
66
+ }
67
+
68
+ .cn-accordion-trigger-icon {
69
+ @apply ml-auto size-4 text-muted-foreground;
70
+ }
71
+
72
+ .cn-accordion-content {
73
+ @apply text-sm data-closed:animate-accordion-up data-open:animate-accordion-down;
74
+ }
75
+
76
+ .cn-accordion-content-inner {
77
+ @apply pt-0 pb-4;
78
+ }
79
+
80
+ /* MARK: AlertDialog */
81
+ .cn-alert-dialog-content {
82
+ @apply w-full max-w-[calc(100%-2rem)] bg-popover text-popover-foreground ring-foreground/10 gap-6 rounded-xl p-6 ring-1 duration-100 data-[size=default]:max-w-xs data-[size=sm]:max-w-xs data-[size=default]:sm:max-w-lg backdrop:bg-black/10 supports-backdrop-filter:backdrop:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95;
83
+ }
84
+
85
+ .cn-alert-dialog-header {
86
+ @apply gap-1.5 has-data-[slot=alert-dialog-media]:gap-x-6;
87
+ }
88
+
89
+ .cn-alert-dialog-media {
90
+ @apply mb-2 size-16 rounded-md bg-muted *:[svg:not([class*='size-'])]:size-8;
91
+ }
92
+
93
+ .cn-alert-dialog-title {
94
+ @apply text-lg font-medium;
95
+ }
96
+
97
+ .cn-alert-dialog-description {
98
+ @apply text-muted-foreground *:[a]:hover:text-foreground text-sm text-balance md:text-pretty *:[a]:underline *:[a]:underline-offset-3;
99
+ }
100
+
101
+ /* Footer hook (roster-wide landing): vega does not band the
102
+ * footer - carries the default treatment (gap-2 moved theme-side). */
103
+ .cn-alert-dialog-footer {
104
+ @apply gap-2;
105
+ }
106
+
107
+ /* MARK: Attachment */
108
+ /* w-fit lives here so the vertical orientation's w-24 beats it in-layer
109
+ * (split-side rule). */
110
+ .cn-attachment {
111
+ @apply w-fit rounded-xl focus-within:ring-1 focus-within:ring-ring/50;
112
+ }
113
+
114
+ .cn-attachment-actions {
115
+ @apply group-data-[orientation=vertical]/attachment:absolute group-data-[orientation=vertical]/attachment:top-3 group-data-[orientation=vertical]/attachment:right-3 relative z-20 group-data-[orientation=vertical]/attachment:gap-1;
116
+ }
117
+
118
+ .cn-attachment-trigger {
119
+ @apply absolute inset-0 z-10 outline-none;
120
+ }
121
+
122
+ .cn-attachment-media-variant-image {
123
+ @apply opacity-60 group-data-[state=idle]/attachment:opacity-100 group-data-[state=done]/attachment:opacity-100;
124
+ }
125
+
126
+ .cn-attachment-size-default {
127
+ @apply gap-2 text-sm has-data-[slot=attachment-content]:px-2.5 has-data-[slot=attachment-content]:py-2 has-data-[slot=attachment-media]:p-2;
128
+ }
129
+
130
+ .cn-attachment-size-sm {
131
+ @apply gap-2.5 text-xs has-data-[slot=attachment-content]:px-2 has-data-[slot=attachment-content]:py-1.5 has-data-[slot=attachment-media]:p-1.5;
132
+ }
133
+
134
+ .cn-attachment-size-xs {
135
+ @apply gap-1.5 rounded-lg text-xs has-data-[slot=attachment-content]:px-1.5 has-data-[slot=attachment-content]:py-1 has-data-[slot=attachment-media]:p-1;
136
+ }
137
+
138
+ .cn-attachment-orientation-horizontal {
139
+ @apply min-w-40;
140
+ }
141
+
142
+ .cn-attachment-orientation-vertical {
143
+ @apply w-24 has-data-[slot=attachment-content]:w-30;
144
+ }
145
+
146
+ .cn-attachment-media {
147
+ @apply bg-muted text-foreground w-10 rounded-lg group-data-[size=sm]/attachment:w-8 group-data-[size=xs]/attachment:w-7 group-data-[size=xs]/attachment:rounded-md [&_svg:not([class*='size-'])]:size-4 group-data-[size=xs]/attachment:[&_svg:not([class*='size-'])]:size-3.5 group-data-[orientation=vertical]/attachment:w-full group-data-[orientation=vertical]/attachment:[&_svg:not([class*='size-'])]:size-6 group-data-[orientation=vertical]/attachment:*:data-[slot=spinner]:size-6;
148
+ }
149
+
150
+ .cn-attachment-content {
151
+ @apply leading-tight group-data-[orientation=vertical]/attachment:px-1;
152
+ }
153
+
154
+ .cn-attachment-title {
155
+ @apply font-medium;
156
+ }
157
+
158
+ .cn-attachment-description {
159
+ @apply mt-0.5 text-xs;
160
+ }
161
+
162
+ .cn-attachment-group {
163
+ @apply gap-3 py-1 scroll-px-1;
164
+ }
165
+
166
+ /* MARK: Avatar */
167
+ .cn-avatar {
168
+ @apply size-8 rounded-full after:rounded-full data-[size=lg]:size-10 data-[size=sm]:size-6;
169
+ }
170
+
171
+ .cn-avatar-image {
172
+ @apply rounded-full;
173
+ }
174
+
175
+ .cn-avatar-fallback {
176
+ @apply rounded-full bg-muted text-muted-foreground;
177
+ }
178
+
179
+ .cn-avatar-badge {
180
+ @apply bg-primary text-primary-foreground ring-background group-data-[size=sm]/avatar:size-2 group-data-[size=sm]/avatar:[&>svg]:hidden group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>svg]:size-2 group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>svg]:size-2;
181
+ }
182
+
183
+ .cn-avatar-group-count {
184
+ @apply size-8 rounded-full bg-muted text-sm text-muted-foreground group-has-data-[size=lg]/avatar-group:size-10 group-has-data-[size=sm]/avatar-group:size-6 [&>svg]:size-4 group-has-data-[size=lg]/avatar-group:[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3;
185
+ }
186
+
187
+ /* MARK: Badge */
188
+ /* The focus/invalid ring chain lives HERE (upstream keeps it inline): the
189
+ * destructive variant re-colors focus-visible:ring-* and can only beat
190
+ * the base treatment from the same layer. */
191
+ .cn-badge {
192
+ @apply h-5 gap-1 rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium transition-all has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 has-[>svg:first-child]:pl-1.5 has-[>svg:last-child]:pr-1.5 [&>svg]:size-3 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40;
193
+ }
194
+
195
+ .cn-badge-variant-ghost {
196
+ @apply hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50;
197
+ }
198
+
199
+ .cn-badge-variant-link {
200
+ @apply text-primary underline-offset-4 hover:underline;
201
+ }
202
+
203
+ .cn-badge-variant-default {
204
+ @apply bg-primary text-primary-foreground [a]:hover:bg-primary/80;
205
+ }
206
+
207
+ .cn-badge-variant-secondary {
208
+ @apply bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80;
209
+ }
210
+
211
+ /* Soft destructive, AA-held (same treatment as the destructive button). */
212
+ .cn-badge-variant-destructive {
213
+ @apply bg-destructive/10 [a]:hover:bg-destructive/20 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 text-[oklch(from_var(--destructive)_calc(l*0.85)_c_h)] dark:text-destructive dark:bg-destructive/20;
214
+ }
215
+
216
+ .cn-badge-variant-outline {
217
+ @apply border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground;
218
+ }
219
+
220
+ .cn-badge-variant-success {
221
+ @apply bg-success/10 [a]:hover:bg-success/20 focus-visible:ring-success/20 dark:focus-visible:ring-success/40 text-[oklch(from_var(--success)_calc(l*0.85)_c_h)] dark:text-success dark:bg-success/20;
222
+ }
223
+
224
+ .cn-badge-variant-warning {
225
+ @apply bg-warning/10 [a]:hover:bg-warning/20 focus-visible:ring-warning/20 dark:focus-visible:ring-warning/40 text-[oklch(from_var(--warning)_calc(l*0.85)_c_h)] dark:text-warning dark:bg-warning/20;
226
+ }
227
+
228
+ .cn-badge-variant-info {
229
+ @apply bg-info/10 [a]:hover:bg-info/20 focus-visible:ring-info/20 dark:focus-visible:ring-info/40 text-[oklch(from_var(--info)_calc(l*0.85)_c_h)] dark:text-info dark:bg-info/20;
230
+ }
231
+
232
+ /* MARK: Breadcrumb */
233
+ .cn-breadcrumb-list {
234
+ @apply gap-1.5 text-sm text-muted-foreground sm:gap-2.5;
235
+ }
236
+
237
+ .cn-breadcrumb-item {
238
+ @apply gap-1.5;
239
+ }
240
+
241
+ .cn-breadcrumb-link {
242
+ @apply transition-colors hover:text-foreground;
243
+ }
244
+
245
+ .cn-breadcrumb-page {
246
+ @apply font-normal text-foreground;
247
+ }
248
+
249
+ .cn-breadcrumb-separator {
250
+ @apply [&>svg]:size-3.5;
251
+ }
252
+
253
+ .cn-breadcrumb-ellipsis {
254
+ @apply size-5 [&>svg]:size-4;
255
+ }
256
+
257
+ /* MARK: Bubble */
258
+ .cn-bubble {
259
+ @apply gap-1 data-[align=end]:self-end max-w-[80%] data-[variant=ghost]:max-w-full group-data-[align=end]/message:self-end;
260
+ }
261
+
262
+ .cn-bubble-group {
263
+ @apply gap-2;
264
+ }
265
+
266
+ .cn-bubble-variant-default {
267
+ @apply *:data-[slot=bubble-content]:bg-primary *:data-[slot=bubble-content]:text-primary-foreground [&>[data-slot=bubble-content]:is(button,a):hover]:bg-primary/80;
268
+ }
269
+
270
+ .cn-bubble-variant-secondary {
271
+ @apply *:data-[slot=bubble-content]:bg-secondary *:data-[slot=bubble-content]:text-secondary-foreground [&>[data-slot=bubble-content]:is(button,a):hover]:bg-[color-mix(in_oklch,var(--secondary),var(--foreground)_5%)];
272
+ }
273
+
274
+ .cn-bubble-variant-muted {
275
+ @apply *:data-[slot=bubble-content]:bg-muted [&>[data-slot=bubble-content]:is(button,a):hover]:bg-[color-mix(in_oklch,var(--muted),var(--foreground)_5%)];
276
+ }
277
+
278
+ .cn-bubble-variant-tinted {
279
+ @apply *:data-[slot=bubble-content]:bg-[oklch(from_var(--primary)_0.93_calc(c*0.4)_h)] *:data-[slot=bubble-content]:text-foreground dark:*:data-[slot=bubble-content]:bg-[oklch(from_var(--primary)_0.3_calc(c*0.4)_h)] [&>[data-slot=bubble-content]:is(button,a):hover]:bg-[oklch(from_var(--primary)_0.88_calc(c*0.5)_h)] dark:[&>[data-slot=bubble-content]:is(button,a):hover]:bg-[oklch(from_var(--primary)_0.35_calc(c*0.5)_h)];
280
+ }
281
+
282
+ .cn-bubble-variant-outline {
283
+ @apply *:data-[slot=bubble-content]:border-border *:data-[slot=bubble-content]:bg-background [&>[data-slot=bubble-content]:is(button,a):hover]:bg-muted [&>[data-slot=bubble-content]:is(button,a):hover]:text-foreground dark:[&>[data-slot=bubble-content]:is(button,a):hover]:bg-input/30;
284
+ }
285
+
286
+ .cn-bubble-variant-ghost {
287
+ @apply border-none *:data-[slot=bubble-content]:rounded-none *:data-[slot=bubble-content]:bg-transparent *:data-[slot=bubble-content]:p-0 [&>[data-slot=bubble-content]:is(button,a):hover]:bg-muted [&>[data-slot=bubble-content]:is(button,a):hover]:text-foreground dark:[&>[data-slot=bubble-content]:is(button,a):hover]:bg-muted/50;
288
+ }
289
+
290
+ .cn-bubble-variant-destructive {
291
+ @apply *:data-[slot=bubble-content]:bg-destructive/10 *:data-[slot=bubble-content]:text-destructive dark:*:data-[slot=bubble-content]:bg-destructive/20 [&>[data-slot=bubble-content]:is(button,a):hover]:bg-destructive/20 dark:[&>[data-slot=bubble-content]:is(button,a):hover]:bg-destructive/30;
292
+ }
293
+
294
+ .cn-bubble-content {
295
+ @apply rounded-xl border border-transparent px-3 py-2 text-sm leading-relaxed [button,a]:outline-none [button,a]:focus-visible:border-ring [button,a]:focus-visible:ring-3 [button,a]:focus-visible:ring-ring/50 group-data-[align=end]/bubble:self-end;
296
+ }
297
+
298
+ .cn-bubble-reactions {
299
+ @apply rounded-full ring-3 ring-card bg-muted gap-1 px-1.5 py-0.5 has-[button]:p-0 text-sm;
300
+ }
301
+
302
+ /* MARK: Button */
303
+ .cn-button {
304
+ @apply focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 rounded-md border border-transparent bg-clip-padding text-sm font-medium focus-visible:ring-3 aria-invalid:ring-3 active:not-aria-[haspopup]:translate-y-px [&_svg:not([class*='size-'])]:size-4;
305
+ }
306
+
307
+ .cn-button-variant-default {
308
+ @apply bg-primary text-primary-foreground hover:bg-primary/80;
309
+ }
310
+
311
+ /* Soft destructive, AA-held: upstream's text-destructive on the /10 tint
312
+ * measures under 4.5:1 (the rig caught it at button/destructive,
313
+ * button/with_icons, dialog/confirmation), so light mode darkens the text
314
+ * via relative oklch (the tinted-Bubble idiom) and dark mode restores the
315
+ * token (the .dark palette is already bright). Documented deviation -
316
+ * the AA-contrast posture. */
317
+ .cn-button-variant-destructive {
318
+ @apply bg-destructive/10 hover:bg-destructive/20 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/20 text-[oklch(from_var(--destructive)_calc(l*0.85)_c_h)] dark:text-destructive focus-visible:border-destructive/40 dark:hover:bg-destructive/30;
319
+ }
320
+
321
+ .cn-button-variant-outline {
322
+ @apply border-border bg-background hover:bg-muted hover:text-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50 aria-expanded:bg-muted aria-expanded:text-foreground shadow-xs;
323
+ }
324
+
325
+ .cn-button-variant-secondary {
326
+ @apply bg-secondary text-secondary-foreground hover:bg-[color-mix(in_oklch,var(--secondary),var(--foreground)_5%)] aria-expanded:bg-secondary aria-expanded:text-secondary-foreground;
327
+ }
328
+
329
+ .cn-button-variant-ghost {
330
+ @apply hover:bg-muted hover:text-foreground dark:hover:bg-muted/50 aria-expanded:bg-muted aria-expanded:text-foreground;
331
+ }
332
+
333
+ .cn-button-variant-link {
334
+ @apply text-primary underline-offset-4 hover:underline;
335
+ }
336
+
337
+ .cn-button-size-default {
338
+ @apply h-9 gap-1.5 px-2.5 in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 has-[>svg:first-child]:pl-2 has-[>svg:last-child]:pr-2;
339
+ }
340
+
341
+ .cn-button-size-xs {
342
+ @apply h-6 gap-1 rounded-[min(var(--radius-md),8px)] px-2 text-xs in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 has-[>svg:first-child]:pl-1.5 has-[>svg:last-child]:pr-1.5 [&_svg:not([class*='size-'])]:size-3;
343
+ }
344
+
345
+ .cn-button-size-sm {
346
+ @apply h-8 gap-1 rounded-[min(var(--radius-md),10px)] px-2.5 in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 has-[>svg:first-child]:pl-1.5 has-[>svg:last-child]:pr-1.5;
347
+ }
348
+
349
+ .cn-button-size-lg {
350
+ @apply h-10 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 has-[>svg:first-child]:pl-2 has-[>svg:last-child]:pr-2;
351
+ }
352
+
353
+ .cn-button-size-icon {
354
+ @apply size-9;
355
+ }
356
+
357
+ .cn-button-size-icon-xs {
358
+ @apply size-6 rounded-[min(var(--radius-md),8px)] in-data-[slot=button-group]:rounded-md [&_svg:not([class*='size-'])]:size-3;
359
+ }
360
+
361
+ .cn-button-size-icon-sm {
362
+ @apply size-8 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-md;
363
+ }
364
+
365
+ .cn-button-size-icon-lg {
366
+ @apply size-10;
367
+ }
368
+
369
+ /* MARK: ButtonGroup */
370
+ .cn-button-group {
371
+ @apply has-[>[data-slot=button-group]]:gap-2 has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-md;
372
+ }
373
+
374
+ .cn-button-group-orientation-horizontal {
375
+ @apply *:data-slot:rounded-r-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-r-md! [&>[data-slot]~[data-slot]]:rounded-l-none [&>[data-slot]~[data-slot]]:border-l-0 [&>:is([data-slot=select],[data-slot=dropdown-menu],[data-slot=popover]):has(~[data-slot])_:is([data-slot=select-trigger],[data-slot=dropdown-menu-trigger],[data-slot=popover-trigger])]:rounded-r-none [&>:is([data-slot=select],[data-slot=dropdown-menu],[data-slot=popover]):not(:has(~[data-slot]))_:is([data-slot=select-trigger],[data-slot=dropdown-menu-trigger],[data-slot=popover-trigger])]:rounded-r-md! [&>[data-slot]~:is([data-slot=select],[data-slot=dropdown-menu],[data-slot=popover])_:is([data-slot=select-trigger],[data-slot=dropdown-menu-trigger],[data-slot=popover-trigger])]:rounded-l-none [&>[data-slot]~:is([data-slot=select],[data-slot=dropdown-menu],[data-slot=popover])_:is([data-slot=select-trigger],[data-slot=dropdown-menu-trigger],[data-slot=popover-trigger])]:border-l-0;
376
+ }
377
+
378
+ .cn-button-group-orientation-vertical {
379
+ @apply flex-col *:data-slot:rounded-b-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-b-md! [&>[data-slot]~[data-slot]]:rounded-t-none [&>[data-slot]~[data-slot]]:border-t-0 [&>:is([data-slot=select],[data-slot=dropdown-menu],[data-slot=popover]):has(~[data-slot])_:is([data-slot=select-trigger],[data-slot=dropdown-menu-trigger],[data-slot=popover-trigger])]:rounded-b-none [&>:is([data-slot=select],[data-slot=dropdown-menu],[data-slot=popover]):not(:has(~[data-slot]))_:is([data-slot=select-trigger],[data-slot=dropdown-menu-trigger],[data-slot=popover-trigger])]:rounded-b-md! [&>[data-slot]~:is([data-slot=select],[data-slot=dropdown-menu],[data-slot=popover])_:is([data-slot=select-trigger],[data-slot=dropdown-menu-trigger],[data-slot=popover-trigger])]:rounded-t-none [&>[data-slot]~:is([data-slot=select],[data-slot=dropdown-menu],[data-slot=popover])_:is([data-slot=select-trigger],[data-slot=dropdown-menu-trigger],[data-slot=popover-trigger])]:border-t-0;
380
+ }
381
+
382
+ .cn-button-group-text {
383
+ @apply gap-2 rounded-md border bg-muted px-2.5 text-sm font-medium shadow-xs [&_svg:not([class*='size-'])]:size-4;
384
+ }
385
+
386
+ .cn-button-group-separator {
387
+ @apply bg-input!;
388
+ }
389
+
390
+ /* MARK: Calendar */
391
+ .cn-calendar {
392
+ @apply p-3;
393
+ }
394
+
395
+ .cn-calendar-caption {
396
+ @apply text-sm font-medium;
397
+ }
398
+
399
+ .cn-calendar-weekday {
400
+ @apply rounded-md text-[0.8rem] font-normal text-muted-foreground;
401
+ }
402
+
403
+ .cn-calendar-day-button {
404
+ @apply rounded-md text-sm leading-none font-normal hover:bg-accent hover:text-accent-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:text-muted-foreground disabled:opacity-50 data-today:bg-muted data-today:text-foreground data-outside:text-muted-foreground data-selected:bg-primary data-selected:text-primary-foreground data-selected:hover:bg-primary data-selected:hover:text-primary-foreground data-range-start:rounded-l-md data-range-start:bg-primary data-range-start:text-primary-foreground data-range-middle:rounded-none data-range-middle:bg-muted data-range-middle:text-foreground data-range-end:rounded-r-md data-range-end:bg-primary data-range-end:text-primary-foreground;
405
+ }
406
+
407
+ /* MARK: Card */
408
+ .cn-card {
409
+ @apply ring-foreground/10 bg-card text-card-foreground gap-(--card-spacing) overflow-hidden rounded-xl py-(--card-spacing) text-sm shadow-xs ring-1 [--card-spacing:--spacing(6)] has-[>img:first-child]:pt-0 data-[size=sm]:[--card-spacing:--spacing(4)] *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl;
410
+ }
411
+
412
+ .cn-card-header {
413
+ @apply gap-1 rounded-t-xl px-(--card-spacing) [.border-b]:pb-(--card-spacing);
414
+ }
415
+
416
+ .cn-card-title {
417
+ @apply text-base leading-normal font-medium group-data-[size=sm]/card:text-sm;
418
+ }
419
+
420
+ .cn-card-description {
421
+ @apply text-sm text-muted-foreground;
422
+ }
423
+
424
+ .cn-card-content {
425
+ @apply px-(--card-spacing);
426
+ }
427
+
428
+ .cn-card-content:has(> [data-slot=questionnaire-choices]) {
429
+ @apply flex flex-col gap-3;
430
+ }
431
+
432
+ .cn-card-footer {
433
+ @apply rounded-b-xl px-(--card-spacing) [.border-t]:pt-(--card-spacing);
434
+ }
435
+
436
+ /* MARK: Checkbox */
437
+ .cn-checkbox {
438
+ @apply border-input dark:bg-input/30 data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary data-checked:border-primary aria-invalid:aria-checked:border-primary aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 flex size-4 items-center justify-center rounded-[4px] border shadow-xs transition-shadow focus-visible:ring-3 aria-invalid:ring-3 group-has-[:focus-visible]/field-label:data-checked:border-primary group-has-[:focus-visible]/field-label:not-data-checked:border-input group-has-[:focus-visible]/field-label:ring-0 group-has-disabled/field:opacity-50;
439
+ }
440
+
441
+ .cn-checkbox-indicator {
442
+ @apply [&>svg]:size-3.5;
443
+ }
444
+
445
+ /* MARK: CodeBlock */
446
+ /* The syntax palette: seven vars the dictionary's token map reads
447
+ * (GitHub light/dark is the shared v1 baseline - a theme restyles code by
448
+ * redefining the vars); .hll is highlight_lines:, .line::before the CSS
449
+ * counters (out of copied text by construction). */
450
+ .cn-code-block {
451
+ @apply bg-muted/30 rounded-lg border text-foreground [--syntax-keyword:#a40e26] [--syntax-constant:#0550ae] [--syntax-string:#0a3069] [--syntax-entity:#7f3400] [--syntax-markup:#116329] [--syntax-function:#6639ba] [--syntax-comment:#57606a] dark:[--syntax-keyword:#ff7b72] dark:[--syntax-constant:#79c0ff] dark:[--syntax-string:#a5d6ff] dark:[--syntax-entity:#ffa657] dark:[--syntax-markup:#7ee787] dark:[--syntax-function:#d2a8ff] dark:[--syntax-comment:#8b949e];
452
+ }
453
+ .cn-code-block .hll {
454
+ @apply bg-primary/10 -mx-4 w-[calc(100%+2rem)] px-4;
455
+ }
456
+ .cn-code-block[data-line-numbers] .line::before {
457
+ @apply text-muted-foreground me-4 inline-block w-6 text-right content-[counter(line)] [counter-increment:line];
458
+ }
459
+
460
+ /* MARK: Command */
461
+ .cn-command {
462
+ @apply bg-popover text-popover-foreground rounded-xl p-1;
463
+ }
464
+
465
+ .cn-input-otp-group {
466
+ @apply has-aria-invalid:ring-destructive/20 dark:has-aria-invalid:ring-destructive/40 has-aria-invalid:border-destructive rounded-md has-aria-invalid:ring-3;
467
+ }
468
+
469
+ .cn-input-otp-separator {
470
+ @apply [&_svg:not([class*='size-'])]:size-4;
471
+ }
472
+
473
+ .cn-command-input-icon {
474
+ @apply size-4 shrink-0 opacity-50;
475
+ }
476
+
477
+ .cn-command-input-wrapper {
478
+ @apply m-1 mb-0 h-8 gap-2 rounded-lg border border-input/30 bg-input/30 px-2 shadow-none;
479
+ }
480
+
481
+ .cn-command-input {
482
+ @apply w-full bg-transparent text-sm placeholder:text-muted-foreground;
483
+ }
484
+
485
+ /* Loose items (direct children, no group): the source's palette never
486
+ * renders them, so the list carries the inset itself and its groups drop
487
+ * their horizontal padding - every row aligns; group-only lists keep the
488
+ * cmdk geometry. */
489
+ .cn-command-list {
490
+ @apply no-scrollbar max-h-72 scroll-py-1 outline-none has-[>[data-slot=command-item]]:p-1 has-[>[data-slot=command-item]]:*:data-[slot=command-group]:px-0;
491
+ }
492
+
493
+ .cn-command-empty {
494
+ @apply py-6 text-center text-sm;
495
+ }
496
+
497
+ .cn-command-group {
498
+ @apply text-foreground p-1;
499
+ }
500
+
501
+ .cn-command-group-heading {
502
+ @apply px-2 py-1.5 text-xs font-medium text-muted-foreground;
503
+ }
504
+
505
+ .cn-command-item {
506
+ @apply data-highlighted:bg-muted data-highlighted:text-foreground data-highlighted:**:[svg]:text-foreground gap-2 rounded-sm px-2 py-1.5 text-sm select-none in-data-[slot=dialog-content]:rounded-lg [&_svg:not([class*='size-'])]:size-4;
507
+ }
508
+
509
+ .cn-command-shortcut {
510
+ @apply text-muted-foreground group-data-highlighted/command-item:text-foreground ml-auto text-xs tracking-widest;
511
+ }
512
+
513
+ .cn-command-separator {
514
+ @apply bg-border -mx-1 h-px w-auto;
515
+ }
516
+
517
+ /* MARK: Combobox */
518
+ .cn-combobox-trigger {
519
+ @apply h-9 w-[200px] gap-2 rounded-md border bg-background px-4 py-2 text-sm font-normal shadow-xs hover:bg-accent hover:text-accent-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 data-[placeholder]:text-muted-foreground dark:aria-invalid:ring-destructive/40 dark:border-input dark:bg-input/30 dark:hover:bg-input/50 has-[>svg]:px-3 [&_svg:not([class*='size-'])]:size-4;
520
+ }
521
+
522
+ .cn-combobox-content {
523
+ @apply bg-popover text-popover-foreground ring-foreground/10 max-h-72 min-w-36 overflow-hidden rounded-md p-0 shadow-md ring-1 duration-100 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2;
524
+ }
525
+
526
+ /* The popup's list and group label: the source's combobox rules (the
527
+ * inset rides the LIST, the group stays unpadded). */
528
+ .cn-combobox-label {
529
+ @apply text-muted-foreground px-2 py-1.5 text-xs;
530
+ }
531
+
532
+ .cn-combobox-list {
533
+ @apply no-scrollbar max-h-[min(calc(--spacing(72)---spacing(9)),calc(var(--available-height)---spacing(9)))] scroll-py-1 overflow-y-auto p-1 data-empty:p-0;
534
+ }
535
+
536
+ .cn-combobox-item-indicator {
537
+ @apply pointer-events-none absolute right-2 flex size-4 items-center justify-center;
538
+ }
539
+
540
+ /* The chips FIELD (multiple:) - vega's shadowed rounded-md field;
541
+ * chips on the badge's near-pill radius. */
542
+ .cn-combobox-chips {
543
+ @apply min-h-9 gap-1.5 rounded-md border border-input px-2.5 py-1.5 text-sm shadow-xs transition-[color,box-shadow] focus-within:border-ring focus-within:ring-3 focus-within:ring-ring/50 dark:bg-input/30 has-data-[slot=combobox-chip]:px-1.5 has-aria-invalid:border-destructive dark:has-aria-invalid:border-destructive/50 has-aria-invalid:ring-3 has-aria-invalid:ring-destructive/20 dark:has-aria-invalid:ring-destructive/40;
544
+ }
545
+
546
+ .cn-combobox-chip {
547
+ @apply h-5.5 gap-1 rounded-4xl bg-muted px-2 text-xs font-medium focus-visible:ring-2 focus-visible:ring-ring/50;
548
+ }
549
+
550
+ .cn-combobox-chip-remove {
551
+ @apply -ml-1 rounded-4xl opacity-50 hover:opacity-100 focus-visible:opacity-100;
552
+ }
553
+
554
+ .cn-combobox-chip-input {
555
+ @apply min-w-16 placeholder:text-muted-foreground;
556
+ }
557
+
558
+ /* MARK: ContextMenu */
559
+ .cn-context-menu-content {
560
+ @apply 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 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 bg-popover text-popover-foreground min-w-36 rounded-md p-1 shadow-md ring-1 duration-100;
561
+ }
562
+
563
+ .cn-context-menu-item {
564
+ @apply focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:text-destructive focus:*:[svg]:text-accent-foreground gap-2 rounded-sm px-2 py-1.5 text-sm data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4;
565
+ }
566
+
567
+ .cn-context-menu-checkbox-item {
568
+ @apply focus:bg-accent focus:text-accent-foreground gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4;
569
+ }
570
+
571
+ .cn-context-menu-radio-item {
572
+ @apply focus:bg-accent focus:text-accent-foreground gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4;
573
+ }
574
+
575
+ .cn-context-menu-label {
576
+ @apply text-muted-foreground px-2 py-1.5 text-xs font-medium data-inset:pl-8;
577
+ }
578
+
579
+ .cn-context-menu-separator {
580
+ @apply -mx-1 my-1 h-px bg-border;
581
+ }
582
+
583
+ .cn-context-menu-shortcut {
584
+ @apply text-muted-foreground group-focus/context-menu-item:text-accent-foreground ml-auto text-xs tracking-widest;
585
+ }
586
+
587
+ .cn-context-menu-sub-trigger {
588
+ @apply focus:bg-accent focus:text-accent-foreground data-open:bg-accent data-open:text-accent-foreground rounded-sm px-2 py-1.5 text-sm data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4 data-popup-open:bg-accent data-popup-open:text-accent-foreground;
589
+ }
590
+
591
+ .cn-context-menu-sub-content {
592
+ @apply 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 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 bg-popover text-popover-foreground min-w-32 rounded-md border p-1 shadow-lg duration-100;
593
+ }
594
+
595
+ .cn-context-menu-item-indicator {
596
+ @apply right-2;
597
+ }
598
+
599
+ /* MARK: DataTable */
600
+ .cn-data-table-toolbar {
601
+ @apply py-4;
602
+ }
603
+
604
+ .cn-data-table-container {
605
+ @apply rounded-md border;
606
+ }
607
+
608
+ .cn-data-table-footer {
609
+ @apply py-4;
610
+ }
611
+
612
+ .cn-data-table-empty {
613
+ @apply h-24 text-center;
614
+ }
615
+
616
+ /* MARK: Dialog */
617
+ .cn-dialog-content {
618
+ @apply w-full max-w-[calc(100%-2rem)] bg-popover text-popover-foreground ring-foreground/10 gap-6 rounded-xl p-6 text-sm ring-1 duration-100 sm:max-w-md backdrop:bg-black/10 supports-backdrop-filter:backdrop:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95;
619
+ }
620
+
621
+ .cn-dialog-footer {
622
+ @apply gap-2;
623
+ }
624
+
625
+ .cn-dialog-header {
626
+ @apply gap-2;
627
+ }
628
+
629
+ .cn-dialog-title {
630
+ @apply leading-none font-medium;
631
+ }
632
+
633
+ .cn-dialog-description {
634
+ @apply text-muted-foreground *:[a]:hover:text-foreground text-sm *:[a]:underline *:[a]:underline-offset-3;
635
+ }
636
+
637
+ .cn-dialog-close {
638
+ @apply absolute top-4 right-4;
639
+ }
640
+
641
+ /* MARK: Drawer */
642
+ .cn-drawer-content {
643
+ /* Flush drawer - the explicit stance for the dictionary's
644
+ var(--drawer-inset) read (floating themes ship --spacing(2)). */
645
+ @apply bg-popover text-sm text-popover-foreground backdrop:bg-black/10 supports-backdrop-filter:backdrop:backdrop-blur-xs [--drawer-inset:0px];
646
+ }
647
+
648
+ .cn-drawer-direction-down {
649
+ @apply rounded-t-xl border-t;
650
+ }
651
+
652
+ .cn-drawer-direction-up {
653
+ @apply rounded-b-xl border-b;
654
+ }
655
+
656
+ .cn-drawer-direction-left {
657
+ @apply rounded-r-xl border-r;
658
+ }
659
+
660
+ .cn-drawer-direction-right {
661
+ @apply rounded-l-xl border-l;
662
+ }
663
+
664
+ .cn-drawer-swipe-handle {
665
+ @apply after:h-1.5 after:w-[100px] after:rounded-full after:bg-muted;
666
+ }
667
+
668
+ .cn-drawer-header {
669
+ @apply gap-0.5 p-4 pb-0 md:gap-1.5 md:text-left;
670
+ }
671
+
672
+ .cn-drawer-footer {
673
+ @apply gap-2 p-4 pt-0;
674
+ }
675
+
676
+ .cn-drawer-title {
677
+ @apply font-medium text-foreground;
678
+ }
679
+
680
+ .cn-drawer-description {
681
+ @apply text-muted-foreground text-sm;
682
+ }
683
+
684
+ .cn-drawer-body {
685
+ @apply p-4;
686
+ }
687
+
688
+ /* MARK: DropdownMenu */
689
+ .cn-dropdown-menu-content {
690
+ @apply 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 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 bg-popover text-popover-foreground min-w-32 rounded-md p-1 shadow-md ring-1 duration-100;
691
+ }
692
+
693
+ .cn-dropdown-menu-item {
694
+ @apply focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:text-destructive not-data-[variant=destructive]:focus:**:text-accent-foreground gap-2 rounded-sm px-2 py-1.5 text-sm data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4;
695
+ }
696
+
697
+ .cn-dropdown-menu-checkbox-item {
698
+ @apply focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4;
699
+ }
700
+
701
+ .cn-dropdown-menu-radio-item {
702
+ @apply focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4;
703
+ }
704
+
705
+ .cn-dropdown-menu-label {
706
+ @apply text-muted-foreground px-2 py-1.5 text-xs font-medium data-inset:pl-8;
707
+ }
708
+
709
+ .cn-dropdown-menu-separator {
710
+ @apply -mx-1 my-1 h-px bg-border;
711
+ }
712
+
713
+ .cn-dropdown-menu-shortcut {
714
+ @apply text-muted-foreground group-focus/dropdown-menu-item:text-accent-foreground ml-auto text-xs tracking-widest;
715
+ }
716
+
717
+ .cn-dropdown-menu-sub-trigger {
718
+ @apply focus:bg-accent focus:text-accent-foreground data-open:bg-accent data-open:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground gap-2 rounded-sm px-2 py-1.5 text-sm data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4 data-popup-open:bg-accent data-popup-open:text-accent-foreground;
719
+ }
720
+
721
+ .cn-dropdown-menu-sub-content {
722
+ @apply 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 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 bg-popover text-popover-foreground min-w-[96px] rounded-md p-1 shadow-lg ring-1 duration-100;
723
+ }
724
+
725
+ .cn-dropdown-menu-item-indicator {
726
+ @apply right-2 flex items-center justify-center;
727
+ }
728
+
729
+ /* MARK: Empty */
730
+ .cn-empty {
731
+ @apply gap-4 rounded-lg border-dashed p-12;
732
+ }
733
+
734
+ .cn-empty-header {
735
+ @apply gap-2;
736
+ }
737
+
738
+ .cn-empty-media {
739
+ @apply mb-2;
740
+ }
741
+
742
+ .cn-empty-media-default {
743
+ @apply bg-transparent;
744
+ }
745
+
746
+ .cn-empty-media-icon {
747
+ @apply flex size-10 shrink-0 items-center justify-center rounded-lg bg-muted text-foreground [&_svg:not([class*='size-'])]:size-6;
748
+ }
749
+
750
+ .cn-empty-title {
751
+ @apply text-lg font-medium tracking-tight;
752
+ }
753
+
754
+ .cn-empty-description {
755
+ @apply text-sm/relaxed;
756
+ }
757
+
758
+ .cn-empty-content {
759
+ @apply gap-4 text-sm;
760
+ }
761
+
762
+ /* MARK: Field */
763
+ .cn-field {
764
+ @apply data-[invalid=true]:text-destructive gap-3;
765
+ }
766
+
767
+ .cn-field-description {
768
+ @apply text-muted-foreground text-left text-sm [[data-variant=legend]+&]:-mt-1.5;
769
+ }
770
+
771
+ .cn-field-error {
772
+ @apply text-destructive text-sm;
773
+ }
774
+
775
+ .cn-field-orientation-horizontal {
776
+ @apply gap-x-3;
777
+ }
778
+
779
+ /* Row layout: the label + hint pair packs at the theme's
780
+ cn-field-content rhythm; the field gap keeps the column axis. */
781
+ .cn-field-orientation-responsive {
782
+ @apply @md/field-group:gap-y-1;
783
+ }
784
+
785
+ .cn-field-set {
786
+ @apply gap-6 has-[>.cn-field-group-choices]:gap-3 has-[>[data-slot=radio-group]]:gap-3;
787
+ }
788
+
789
+ .cn-field-legend {
790
+ @apply mb-3 font-medium data-[variant=legend]:text-base data-[variant=label]:text-sm;
791
+ }
792
+
793
+ .cn-field-group {
794
+ @apply gap-7 *:data-[slot=field-group]:gap-4;
795
+ }
796
+
797
+ .cn-field-group-choices {
798
+ @apply gap-3;
799
+ }
800
+
801
+ .cn-field-content {
802
+ @apply gap-1;
803
+ }
804
+
805
+ .cn-field-label {
806
+ @apply has-data-checked:bg-primary/5 has-data-checked:border-primary/30 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10 gap-2 leading-snug *:data-[slot=field]:p-3 group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:border has-[>[data-slot=field]]:has-[:focus-visible]:border-ring has-[>[data-slot=field]]:has-[:focus-visible]:ring-3 has-[>[data-slot=field]]:has-[:focus-visible]:ring-ring/50 has-[>[data-slot=field]]:not-has-[:disabled,[data-disabled]]:hover:bg-muted/50 has-[>[data-slot=field]]:rounded-md;
807
+ }
808
+
809
+ .cn-field-label-card {
810
+ @apply rounded-md border p-3;
811
+ }
812
+
813
+ .cn-field-title {
814
+ @apply gap-2 leading-snug text-sm font-medium;
815
+ }
816
+
817
+ .cn-field-separator {
818
+ @apply -my-2 h-5 text-sm;
819
+ }
820
+
821
+ .cn-field-separator-content {
822
+ @apply px-2 text-muted-foreground;
823
+ }
824
+
825
+ /* MARK: HoverCard */
826
+ .cn-hover-card-content {
827
+ @apply 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 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 bg-popover text-popover-foreground rounded-lg p-4 text-sm shadow-md ring-1 duration-100;
828
+ }
829
+
830
+ /* MARK: Input */
831
+ .cn-input {
832
+ @apply dark:bg-input/30 border-input placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 h-9 rounded-md border bg-transparent px-2.5 py-1 text-base shadow-xs transition-[color,box-shadow] file:h-7 file:text-sm file:font-medium focus-visible:ring-3 aria-invalid:ring-3 md:text-sm;
833
+ }
834
+
835
+ /* MARK: InputGroup */
836
+ .cn-input-group {
837
+ @apply border-input dark:bg-input/30 has-[[data-slot=input-group-control]:focus-visible]:border-ring has-[[data-slot=input-group-control]:focus-visible]:ring-ring/50 has-[[data-slot][aria-invalid=true]]:ring-destructive/20 has-[[data-slot][aria-invalid=true]]:border-destructive dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 h-9 rounded-md border shadow-xs transition-[color,box-shadow] in-data-[slot=combobox-content]:focus-within:border-inherit in-data-[slot=combobox-content]:focus-within:ring-0 has-[[data-slot=input-group-control]:focus-visible]:ring-3 has-[[data-slot][aria-invalid=true]]:ring-3 has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=inline-start]]:[&>input]:pl-1.5;
838
+ }
839
+
840
+ .cn-input-group-addon {
841
+ @apply h-auto gap-2 py-1.5 text-sm font-medium text-muted-foreground group-data-[disabled=true]/input-group:opacity-50 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>svg:not([class*='size-'])]:size-4;
842
+ }
843
+
844
+ .cn-input-group-addon-align-inline-start {
845
+ @apply pl-2 has-[>button]:-ml-1 has-[>kbd]:ml-[-0.15rem];
846
+ }
847
+
848
+ .cn-input-group-addon-align-inline-end {
849
+ @apply pr-2 has-[>button]:-mr-1 has-[>kbd]:mr-[-0.15rem];
850
+ }
851
+
852
+ .cn-input-group-addon-align-block-start {
853
+ @apply px-2.5 pt-2 group-has-[>input]/input-group:pt-2 [.border-b]:pb-2;
854
+ }
855
+
856
+ .cn-input-group-addon-align-block-end {
857
+ @apply px-2.5 pb-2 group-has-[>input]/input-group:pb-2 [.border-t]:pt-2;
858
+ }
859
+
860
+ .cn-input-group-text {
861
+ @apply gap-2 text-sm text-muted-foreground [&_svg:not([class*='size-'])]:size-4;
862
+ }
863
+
864
+ /* MARK: InputOTP */
865
+ .cn-input-otp {
866
+ @apply gap-2;
867
+ }
868
+
869
+ .cn-input-otp-slot {
870
+ @apply dark:bg-input/30 border-input data-[active=true]:border-ring data-[active=true]:ring-ring/50 data-[active=true]:aria-invalid:ring-destructive/20 dark:data-[active=true]:aria-invalid:ring-destructive/40 aria-invalid:border-destructive data-[active=true]:aria-invalid:border-destructive size-9 border-y border-r text-sm shadow-xs transition-all outline-none first:rounded-l-md first:border-l last:rounded-r-md data-[active=true]:ring-3;
871
+ }
872
+
873
+ .cn-input-otp-caret-line {
874
+ @apply bg-foreground h-4 w-px;
875
+ }
876
+
877
+ /* MARK: Item */
878
+ .cn-item {
879
+ @apply rounded-md border text-sm [a]:hover:bg-muted;
880
+ }
881
+
882
+ .cn-item-media {
883
+ @apply gap-2 group-has-data-[slot=item-description]/item:translate-y-0.5 group-has-data-[slot=item-description]/item:self-start;
884
+ }
885
+
886
+ .cn-item-media-variant-default {
887
+ @apply bg-transparent;
888
+ }
889
+
890
+ .cn-item-media-variant-icon {
891
+ @apply [&_svg:not([class*='size-'])]:size-4;
892
+ }
893
+
894
+ .cn-item-media-variant-image {
895
+ @apply size-10 overflow-hidden rounded-sm group-data-[size=sm]/item:size-8 group-data-[size=xs]/item:size-6 [&_img]:size-full [&_img]:object-cover;
896
+ }
897
+
898
+ .cn-item-content {
899
+ @apply gap-1 group-data-[size=xs]/item:gap-0;
900
+ }
901
+
902
+ .cn-item-title {
903
+ @apply gap-2 text-sm leading-snug font-medium underline-offset-4;
904
+ }
905
+
906
+ .cn-item-description {
907
+ @apply text-left text-sm leading-normal text-muted-foreground group-data-[size=xs]/item:text-xs;
908
+ }
909
+
910
+ .cn-item-actions {
911
+ @apply gap-2;
912
+ }
913
+
914
+ .cn-item-header {
915
+ @apply gap-2;
916
+ }
917
+
918
+ .cn-item-footer {
919
+ @apply gap-2;
920
+ }
921
+
922
+ .cn-item-group {
923
+ @apply gap-4 has-data-[size=sm]:gap-2.5 has-data-[size=xs]:gap-2;
924
+ }
925
+
926
+ .cn-item-separator {
927
+ @apply my-2;
928
+ }
929
+
930
+ .cn-item-variant-default {
931
+ @apply border-transparent;
932
+ }
933
+
934
+ .cn-item-variant-outline {
935
+ @apply border-border;
936
+ }
937
+
938
+ .cn-item-variant-muted {
939
+ @apply border-transparent bg-muted/50;
940
+ }
941
+
942
+ .cn-item-size-default {
943
+ @apply gap-3.5 px-4 py-3.5;
944
+ }
945
+
946
+ .cn-item-size-sm {
947
+ @apply gap-2.5 px-3 py-2.5;
948
+ }
949
+
950
+ .cn-item-size-xs {
951
+ @apply gap-2 px-2.5 py-2 in-data-[slot=dropdown-menu-content]:p-0;
952
+ }
953
+
954
+ /* MARK: Kbd */
955
+ .cn-kbd {
956
+ @apply h-5 w-fit min-w-5 gap-1 rounded-sm bg-muted px-1 font-sans text-xs font-medium text-muted-foreground in-data-[slot=tooltip-content]:bg-background/20 in-data-[slot=tooltip-content]:text-background dark:in-data-[slot=tooltip-content]:bg-background/10 [&_svg:not([class*='size-'])]:size-3;
957
+ }
958
+
959
+ .cn-kbd-group {
960
+ @apply gap-1;
961
+ }
962
+
963
+ /* MARK: Label */
964
+ .cn-label {
965
+ @apply gap-2 text-sm leading-none font-medium group-data-[disabled=true]:opacity-50 peer-disabled:opacity-50;
966
+ }
967
+
968
+ /* MARK: Link */
969
+ .cn-link {
970
+ @apply gap-1 rounded-sm text-primary underline-offset-4 focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50;
971
+ }
972
+
973
+ .cn-link-underline-hover {
974
+ @apply no-underline hover:underline;
975
+ }
976
+
977
+ .cn-link-underline-always {
978
+ @apply underline;
979
+ }
980
+
981
+ .cn-link-underline-none {
982
+ @apply no-underline;
983
+ }
984
+
985
+ /* MARK: Marker */
986
+ .cn-marker {
987
+ @apply min-h-4 gap-2 text-left text-sm text-muted-foreground [&_svg:not([class*='size-'])]:size-4 [a]:underline [a]:underline-offset-3 [a]:hover:text-foreground;
988
+ }
989
+
990
+ .cn-marker-variant-separator {
991
+ @apply before:mr-1 before:h-px before:min-w-0 before:flex-1 before:bg-border after:ml-1 after:h-px after:min-w-0 after:flex-1 after:bg-border;
992
+ }
993
+
994
+ .cn-marker-variant-border {
995
+ @apply border-b border-border pb-2;
996
+ }
997
+
998
+ .cn-marker-icon {
999
+ @apply size-4 [&_svg:not([class*='size-'])]:size-4;
1000
+ }
1001
+
1002
+ .cn-marker-content {
1003
+ @apply group-data-[variant=separator]/marker:flex-none group-data-[variant=separator]/marker:text-center *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground;
1004
+ }
1005
+
1006
+ /* MARK: Menubar */
1007
+ .cn-menubar {
1008
+ @apply h-9 gap-1 rounded-md border p-1 shadow-xs;
1009
+ }
1010
+
1011
+ .cn-menubar-checkbox-item-indicator {
1012
+ @apply left-2 size-4 [&_svg:not([class*='size-'])]:size-4;
1013
+ }
1014
+
1015
+ .cn-menubar-radio-item-indicator {
1016
+ @apply left-2 size-4 [&_svg:not([class*='size-'])]:size-4;
1017
+ }
1018
+
1019
+ .cn-navigation-menu {
1020
+ @apply max-w-max;
1021
+ }
1022
+
1023
+ .cn-menubar-trigger {
1024
+ @apply hover:bg-muted aria-expanded:bg-muted rounded-sm px-2 py-1 text-sm font-medium;
1025
+ }
1026
+
1027
+ .cn-menubar-content {
1028
+ @apply bg-popover text-popover-foreground data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 min-w-36 rounded-md p-1 shadow-md ring-1 duration-100;
1029
+ }
1030
+
1031
+ .cn-menubar-item {
1032
+ @apply focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:text-destructive! not-data-[variant=destructive]:focus:**:text-accent-foreground gap-2 rounded-sm px-2 py-1.5 text-sm data-disabled:opacity-50 data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4;
1033
+ }
1034
+
1035
+ .cn-menubar-checkbox-item {
1036
+ @apply focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground gap-2 rounded-md py-1.5 pr-2 pl-8 text-sm data-inset:pl-8;
1037
+ }
1038
+
1039
+ .cn-menubar-radio-item {
1040
+ @apply focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground gap-2 rounded-md py-1.5 pr-2 pl-8 text-sm data-disabled:opacity-50 data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4;
1041
+ }
1042
+
1043
+ .cn-menubar-label {
1044
+ @apply px-2 py-1.5 text-sm font-medium data-inset:pl-8;
1045
+ }
1046
+
1047
+ /* Structure (h-px + margins) is poetry's, theme-side - upstream keeps it
1048
+ * in markup, so its color-only rule would leave a 0-height divider
1049
+ * (caught by the thin-body scan; the port's one mechanical miss). */
1050
+ .cn-menubar-separator {
1051
+ @apply -mx-1 my-1 h-px bg-border;
1052
+ }
1053
+
1054
+ .cn-menubar-shortcut {
1055
+ @apply text-muted-foreground group-focus/menubar-item:text-accent-foreground text-xs tracking-widest;
1056
+ }
1057
+
1058
+ .cn-menubar-sub-trigger {
1059
+ @apply focus:bg-accent focus:text-accent-foreground data-open:bg-accent data-open:text-accent-foreground gap-2 rounded-sm px-2 py-1.5 text-sm data-inset:pl-8 [&_svg:not([class*='size-'])]:size-4 data-popup-open:bg-accent data-popup-open:text-accent-foreground;
1060
+ }
1061
+
1062
+ .cn-menubar-sub-content {
1063
+ @apply bg-popover text-popover-foreground 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 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 min-w-32 rounded-md p-1 shadow-lg ring-1 duration-100;
1064
+ }
1065
+
1066
+
1067
+ /* MARK: Message */
1068
+ .cn-message {
1069
+ @apply gap-2 text-sm;
1070
+ }
1071
+
1072
+ .cn-message-group {
1073
+ @apply gap-2;
1074
+ }
1075
+
1076
+ .cn-message-avatar {
1077
+ @apply min-w-8 group-has-data-[slot=message-footer]/message:-translate-y-8;
1078
+ }
1079
+
1080
+ .cn-message-content {
1081
+ @apply gap-2.5 group-data-[align=end]/message:*:data-slot:self-end;
1082
+ }
1083
+
1084
+ .cn-message-header {
1085
+ @apply px-3 text-xs font-medium text-muted-foreground group-has-data-[variant=ghost]/message:px-0;
1086
+ }
1087
+
1088
+ .cn-message-footer {
1089
+ @apply px-3 text-xs font-medium text-muted-foreground group-has-data-[variant=ghost]/message:px-0;
1090
+ }
1091
+
1092
+ /* MARK: MessageScroller */
1093
+ .cn-message-scroller-content {
1094
+ @apply gap-8;
1095
+ }
1096
+
1097
+ /* MARK: NavigationMenu */
1098
+ .cn-navigation-menu-list {
1099
+ @apply gap-0;
1100
+ }
1101
+
1102
+ .cn-navigation-menu-trigger {
1103
+ @apply hover:bg-muted focus:bg-muted data-open:hover:bg-muted data-open:focus:bg-muted data-open:bg-muted/50 focus-visible:ring-ring/50 data-popup-open:bg-muted/50 data-popup-open:hover:bg-muted rounded-md px-4 py-2 text-sm font-medium transition-all focus-visible:ring-3 focus-visible:outline-1 disabled:opacity-50;
1104
+ }
1105
+
1106
+ .cn-navigation-menu-trigger-icon {
1107
+ @apply ml-1 size-3 group-data-open/navigation-menu-trigger:rotate-180 group-data-popup-open/navigation-menu-trigger:rotate-180;
1108
+ }
1109
+
1110
+ .cn-navigation-menu-content {
1111
+ @apply data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 group-data-[viewport=false]/navigation-menu:bg-popover group-data-[viewport=false]/navigation-menu:text-popover-foreground group-data-[viewport=false]/navigation-menu:data-open:animate-in group-data-[viewport=false]/navigation-menu:data-closed:animate-out group-data-[viewport=false]/navigation-menu:data-closed:zoom-out-95 group-data-[viewport=false]/navigation-menu:data-open:zoom-in-95 group-data-[viewport=false]/navigation-menu:data-open:fade-in-0 group-data-[viewport=false]/navigation-menu:data-closed:fade-out-0 group-data-[viewport=false]/navigation-menu:ring-foreground/10 p-2 pr-2.5 ease-[cubic-bezier(0.22,1,0.36,1)] group-data-[viewport=false]/navigation-menu:rounded-md group-data-[viewport=false]/navigation-menu:shadow group-data-[viewport=false]/navigation-menu:ring-1 group-data-[viewport=false]/navigation-menu:duration-300;
1112
+ }
1113
+
1114
+ .cn-navigation-menu-popup {
1115
+ @apply bg-popover text-popover-foreground ring-foreground/10 rounded-lg shadow ring-1 transition-all ease-[cubic-bezier(0.22,1,0.36,1)] outline-none data-ending-style:scale-90 data-ending-style:opacity-0 data-ending-style:duration-150 data-starting-style:scale-90 data-starting-style:opacity-0;
1116
+ }
1117
+
1118
+ .cn-navigation-menu-link {
1119
+ @apply data-[active=true]:focus:bg-muted data-[active=true]:hover:bg-muted data-[active=true]:bg-muted/50 focus-visible:ring-ring/50 hover:bg-muted focus:bg-muted gap-1.5 rounded-md p-2 text-sm transition-all focus-visible:ring-3 focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 in-data-[slot=navigation-menu-content]:rounded-sm;
1120
+ }
1121
+
1122
+ /* MARK: NativeSelect */
1123
+ .cn-native-select {
1124
+ @apply border-input placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 dark:hover:bg-input/50 focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 h-9 min-w-0 rounded-md border bg-transparent py-1 pr-8 pl-2.5 text-sm shadow-xs transition-[color,box-shadow] select-none focus-visible:ring-3 aria-invalid:ring-3 data-[size=sm]:h-8;
1125
+ }
1126
+
1127
+ .cn-native-select-icon {
1128
+ @apply text-muted-foreground;
1129
+ }
1130
+
1131
+ /* MARK: Pagination */
1132
+ .cn-pagination-content {
1133
+ @apply gap-1;
1134
+ }
1135
+
1136
+ .cn-carousel-previous {
1137
+ @apply rounded-full;
1138
+ }
1139
+
1140
+ .cn-carousel-next {
1141
+ @apply rounded-full;
1142
+ }
1143
+
1144
+ .cn-pagination-previous {
1145
+ @apply pl-2!;
1146
+ }
1147
+
1148
+ .cn-pagination-next {
1149
+ @apply pr-2!;
1150
+ }
1151
+
1152
+ .cn-pagination-ellipsis {
1153
+ @apply size-9 [&_svg:not([class*='size-'])]:size-4;
1154
+ }
1155
+
1156
+ /* MARK: Popover */
1157
+ .cn-popover-content {
1158
+ @apply bg-popover text-popover-foreground 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 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 flex flex-col gap-4 rounded-md p-4 text-sm shadow-md ring-1 duration-100;
1159
+ }
1160
+
1161
+ .cn-popover-header {
1162
+ @apply gap-1 text-sm;
1163
+ }
1164
+
1165
+ .cn-popover-title {
1166
+ @apply font-medium;
1167
+ }
1168
+
1169
+ .cn-popover-description {
1170
+ @apply text-muted-foreground;
1171
+ }
1172
+
1173
+ /* MARK: Progress */
1174
+ .cn-progress-track {
1175
+ @apply h-1.5 rounded-full bg-muted;
1176
+ }
1177
+
1178
+ .cn-progress-indicator {
1179
+ @apply bg-primary;
1180
+ }
1181
+
1182
+ .cn-progress-label {
1183
+ @apply text-sm font-medium;
1184
+ }
1185
+
1186
+ .cn-progress-value {
1187
+ @apply ml-auto text-sm text-muted-foreground tabular-nums;
1188
+ }
1189
+
1190
+ /* MARK: RadioGroup */
1191
+ .cn-radio-group {
1192
+ @apply grid gap-3;
1193
+ }
1194
+
1195
+ .cn-radio-group-item {
1196
+ @apply border-input dark:bg-input/30 data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary data-checked:border-primary aria-invalid:aria-checked:border-primary aria-invalid:border-destructive focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 dark:aria-invalid:border-destructive/50 flex size-4 rounded-full focus-visible:ring-3 aria-invalid:ring-3 group-has-[:focus-visible]/field-label:data-checked:border-primary group-has-[:focus-visible]/field-label:not-data-checked:border-input group-has-[:focus-visible]/field-label:ring-0;
1197
+ }
1198
+
1199
+ .cn-radio-group-indicator {
1200
+ @apply flex size-4 items-center justify-center;
1201
+ }
1202
+
1203
+ .cn-radio-group-indicator-icon {
1204
+ @apply bg-primary-foreground absolute top-1/2 left-1/2 size-2 -translate-x-1/2 -translate-y-1/2 rounded-full;
1205
+ }
1206
+
1207
+ /* MARK: Resizable */
1208
+ .cn-resizable-handle-icon {
1209
+ @apply bg-border h-6 w-1 rounded-lg;
1210
+ }
1211
+
1212
+ /* MARK: Select */
1213
+ .cn-select-trigger {
1214
+ @apply border-input data-placeholder:text-muted-foreground dark:bg-input/30 dark:hover:bg-input/50 focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 gap-1.5 rounded-md border bg-transparent py-2 pr-2 pl-2.5 text-sm shadow-xs transition-[color,box-shadow] focus-visible:ring-3 aria-invalid:ring-3 data-[size=default]:h-9 data-[size=sm]:h-8 *:data-[slot=select-value]:flex *:data-[slot=select-value]:gap-1.5 [&_svg:not([class*='size-'])]:size-4;
1215
+ }
1216
+
1217
+ .cn-select-trigger-icon {
1218
+ @apply text-muted-foreground size-4;
1219
+ }
1220
+
1221
+ .cn-select-content {
1222
+ @apply bg-popover text-popover-foreground 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 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 min-w-36 rounded-md shadow-md ring-1 duration-100;
1223
+ }
1224
+
1225
+ .cn-select-group {
1226
+ @apply scroll-my-1 p-1;
1227
+ }
1228
+
1229
+ .cn-select-value {
1230
+ @apply flex flex-1 text-left;
1231
+ }
1232
+
1233
+ .cn-select-item-text {
1234
+ @apply flex flex-1 gap-2;
1235
+ }
1236
+
1237
+ .cn-select-scroll-up-button {
1238
+ @apply bg-popover z-10 flex cursor-default items-center justify-center py-1 [&_svg:not([class*='size-'])]:size-4;
1239
+ }
1240
+
1241
+ .cn-select-scroll-down-button {
1242
+ @apply bg-popover z-10 flex cursor-default items-center justify-center py-1 [&_svg:not([class*='size-'])]:size-4;
1243
+ }
1244
+
1245
+ .cn-select-viewport {
1246
+ @apply p-1 scroll-my-1;
1247
+ }
1248
+
1249
+ .cn-select-item {
1250
+ @apply focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm [&_svg:not([class*='size-'])]:size-4 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2;
1251
+ }
1252
+
1253
+ .cn-select-label {
1254
+ @apply px-2 py-1.5 text-xs text-muted-foreground;
1255
+ }
1256
+
1257
+ .cn-select-separator {
1258
+ @apply -mx-1 my-1 h-px bg-border;
1259
+ }
1260
+
1261
+ .cn-select-item-indicator {
1262
+ @apply pointer-events-none absolute right-2 flex size-4 items-center justify-center;
1263
+ }
1264
+
1265
+ /* MARK: Sheet */
1266
+ /* w-full lives here so the sides' w-3/4 can beat it in-layer (split-side
1267
+ * rule) - a latent full-width regression the visual gate cannot see on a
1268
+ * closed dialog. */
1269
+ .cn-sheet-content {
1270
+ @apply m-0 w-full gap-4 bg-popover text-popover-foreground text-sm bg-clip-padding shadow-lg transition duration-200 ease-in-out data-open:animate-in data-closed:animate-out backdrop:bg-black/10 supports-backdrop-filter:backdrop:backdrop-blur-xs;
1271
+ }
1272
+
1273
+ .cn-sheet-side-top {
1274
+ @apply bottom-auto mb-auto h-auto w-full max-w-none border-b data-open:slide-in-from-top data-closed:slide-out-to-top;
1275
+ }
1276
+
1277
+ .cn-sheet-side-right {
1278
+ @apply ml-auto h-full max-h-none w-3/4 border-l data-open:slide-in-from-right data-closed:slide-out-to-right sm:max-w-sm;
1279
+ }
1280
+
1281
+ .cn-sheet-side-bottom {
1282
+ @apply top-auto mt-auto h-auto w-full max-w-none border-t data-open:slide-in-from-bottom data-closed:slide-out-to-bottom;
1283
+ }
1284
+
1285
+ .cn-sheet-side-left {
1286
+ @apply mr-auto h-full max-h-none w-3/4 border-r data-open:slide-in-from-left data-closed:slide-out-to-left sm:max-w-sm;
1287
+ }
1288
+
1289
+ .cn-sheet-header {
1290
+ @apply gap-1.5 p-4;
1291
+ }
1292
+
1293
+ .cn-sheet-title {
1294
+ @apply text-foreground font-medium;
1295
+ }
1296
+
1297
+ .cn-sheet-description {
1298
+ @apply text-sm text-muted-foreground;
1299
+ }
1300
+
1301
+ .cn-sheet-footer {
1302
+ @apply gap-2 p-4;
1303
+ }
1304
+
1305
+ .cn-sheet-close {
1306
+ @apply absolute top-4 right-4;
1307
+ }
1308
+
1309
+ /* MARK: SensitiveInput */
1310
+ /* The masked MASK OVERLAY is the focusable reveal button (the
1311
+ * group would trip axe nested-interactive around the inert input) - the
1312
+ * bordered group wears the ring when the mask inside holds focus. */
1313
+ .cn-sensitive-input-group:has([data-slot=sensitive-input-mask]:focus-visible) {
1314
+ @apply outline-none border-ring ring-ring/50 ring-3;
1315
+ }
1316
+
1317
+ /* MARK: Sidebar */
1318
+ .cn-sidebar-mobile {
1319
+ @apply bg-sidebar p-0 text-sidebar-foreground shadow-lg transition duration-200 ease-in-out data-open:animate-in data-closed:animate-out backdrop:bg-black/10 supports-backdrop-filter:backdrop:backdrop-blur-xs;
1320
+ }
1321
+
1322
+ .cn-sidebar-mobile-left {
1323
+ @apply border-r data-open:slide-in-from-left data-closed:slide-out-to-left;
1324
+ }
1325
+
1326
+ .cn-sidebar-mobile-right {
1327
+ @apply border-l data-open:slide-in-from-right data-closed:slide-out-to-right;
1328
+ }
1329
+
1330
+ .cn-sidebar-inner {
1331
+ @apply bg-sidebar group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:shadow-sm group-data-[variant=floating]:ring-1 group-data-[variant=floating]:ring-sidebar-border;
1332
+ }
1333
+
1334
+ .cn-sidebar-header {
1335
+ @apply gap-2 p-2;
1336
+ }
1337
+
1338
+ .cn-sidebar-footer {
1339
+ @apply gap-2 p-2;
1340
+ }
1341
+
1342
+ .cn-sidebar-separator {
1343
+ @apply mx-2 bg-sidebar-border;
1344
+ }
1345
+
1346
+ .cn-sidebar-content {
1347
+ @apply gap-2;
1348
+ }
1349
+
1350
+ .cn-sidebar-gap {
1351
+ @apply transition-[width] duration-200 ease-linear;
1352
+ }
1353
+
1354
+ .cn-sidebar-rail {
1355
+ @apply hover:after:bg-sidebar-border;
1356
+ }
1357
+
1358
+ .cn-sidebar-inset {
1359
+ @apply bg-background md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow-sm md:peer-data-[variant=inset]:peer-data-[state=collapsed]:ml-2;
1360
+ }
1361
+
1362
+ .cn-sidebar-group {
1363
+ @apply p-2;
1364
+ }
1365
+
1366
+ .cn-sidebar-group-label {
1367
+ @apply text-sidebar-foreground/70 ring-sidebar-ring h-8 rounded-md px-2 text-xs font-medium transition-[margin,opacity] duration-200 ease-linear group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0 focus-visible:ring-2 [&>svg]:size-4;
1368
+ }
1369
+
1370
+ .cn-sidebar-group-content {
1371
+ @apply text-sm;
1372
+ }
1373
+
1374
+ .cn-sidebar-menu {
1375
+ @apply gap-1;
1376
+ }
1377
+
1378
+ .cn-sidebar-menu-button {
1379
+ @apply ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground active:bg-sidebar-accent active:text-sidebar-accent-foreground data-active:bg-sidebar-accent data-active:text-sidebar-accent-foreground data-open:hover:bg-sidebar-accent data-open:hover:text-sidebar-accent-foreground gap-2 rounded-md p-2 text-left text-sm transition-[width,height,padding] group-has-data-[sidebar=menu-action]/menu-item:pr-8 group-data-[collapsible=icon]:size-8! group-data-[collapsible=icon]:p-2! focus-visible:ring-2 data-active:font-medium [&_svg]:size-4;
1380
+ }
1381
+
1382
+ .cn-sidebar-input {
1383
+ @apply bg-background h-8 w-full shadow-none;
1384
+ }
1385
+
1386
+ .cn-sidebar-group-action {
1387
+ @apply text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground absolute top-3.5 right-3 w-5 rounded-md p-0 focus-visible:ring-2 [&>svg]:size-4;
1388
+ }
1389
+
1390
+ .cn-sidebar-menu-button-variant-default {
1391
+ @apply hover:bg-sidebar-accent hover:text-sidebar-accent-foreground;
1392
+ }
1393
+
1394
+ .cn-sidebar-menu-button-variant-outline {
1395
+ @apply bg-background hover:bg-sidebar-accent hover:text-sidebar-accent-foreground shadow-[0_0_0_1px_var(--sidebar-border)] hover:shadow-[0_0_0_1px_var(--sidebar-accent)];
1396
+ }
1397
+
1398
+ .cn-sidebar-menu-skeleton {
1399
+ @apply h-8 gap-2 rounded-md px-2;
1400
+ }
1401
+
1402
+ .cn-sidebar-menu-skeleton-icon {
1403
+ @apply size-4 rounded-md;
1404
+ }
1405
+
1406
+ .cn-sidebar-menu-skeleton-text {
1407
+ @apply h-4;
1408
+ }
1409
+
1410
+ .cn-sidebar-menu-button-size-default {
1411
+ @apply h-8 text-sm;
1412
+ }
1413
+
1414
+ .cn-sidebar-menu-button-size-sm {
1415
+ @apply h-7 text-xs;
1416
+ }
1417
+
1418
+ .cn-sidebar-menu-button-size-lg {
1419
+ @apply h-12 text-sm group-data-[collapsible=icon]:p-0!;
1420
+ }
1421
+
1422
+ .cn-sidebar-menu-action {
1423
+ @apply text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground peer-hover/menu-button:text-sidebar-accent-foreground w-5 rounded-md p-0 peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 peer-data-[size=sm]/menu-button:top-1 focus-visible:ring-2 [&>svg]:size-4;
1424
+ }
1425
+
1426
+ .cn-sidebar-menu-badge {
1427
+ @apply text-sidebar-foreground peer-hover/menu-button:text-sidebar-accent-foreground peer-data-active/menu-button:text-sidebar-accent-foreground h-5 min-w-5 rounded-md px-1 text-xs font-medium peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 peer-data-[size=sm]/menu-button:top-1;
1428
+ }
1429
+
1430
+ .cn-sidebar-menu-sub {
1431
+ @apply border-sidebar-border gap-1 border-l px-2.5 py-0.5 group-data-[collapsible=icon]:hidden;
1432
+ }
1433
+
1434
+ .cn-sidebar-menu-sub-button {
1435
+ @apply text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground active:bg-sidebar-accent active:text-sidebar-accent-foreground [&>svg]:text-sidebar-accent-foreground data-active:bg-sidebar-accent data-active:text-sidebar-accent-foreground h-7 gap-2 rounded-md px-2 focus-visible:ring-2 data-[size=md]:text-sm data-[size=sm]:text-xs [&>svg]:size-4;
1436
+ }
1437
+
1438
+ /* MARK: Skeleton */
1439
+ .cn-skeleton {
1440
+ @apply rounded-md bg-muted;
1441
+ }
1442
+
1443
+ /* MARK: Slider */
1444
+ .cn-slider {
1445
+ @apply data-[orientation=vertical]:min-h-40;
1446
+ }
1447
+
1448
+ .cn-slider-track {
1449
+ @apply bg-muted rounded-full data-[orientation=horizontal]:h-1.5 data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-1.5;
1450
+ }
1451
+
1452
+ .cn-slider-range {
1453
+ @apply bg-primary;
1454
+ }
1455
+
1456
+ .cn-slider-thumb {
1457
+ @apply size-4 rounded-full border border-primary bg-white shadow-sm ring-ring/50 transition-[color,box-shadow] hover:ring-4 focus-visible:ring-4 focus-visible:outline-hidden;
1458
+ }
1459
+
1460
+ /* MARK: Switch */
1461
+ .cn-switch {
1462
+ @apply data-checked:bg-primary data-unchecked:bg-input focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 dark:data-unchecked:bg-input/80 shrink-0 rounded-full border border-transparent shadow-xs focus-visible:ring-3 aria-invalid:ring-3 data-[size=default]:h-[18.4px] data-[size=default]:w-[32px] data-[size=sm]:h-[14px] data-[size=sm]:w-[24px] group-has-[:focus-visible]/field-label:border-transparent group-has-[:focus-visible]/field-label:ring-0;
1463
+ }
1464
+
1465
+ .cn-switch-thumb {
1466
+ @apply rounded-full bg-background group-data-[size=default]/switch:size-4 group-data-[size=sm]/switch:size-3 data-checked:translate-x-[calc(100%-2px)] data-unchecked:translate-x-0 rtl:data-checked:-translate-x-[calc(100%-2px)] dark:data-checked:bg-primary-foreground dark:data-unchecked:bg-foreground;
1467
+ }
1468
+
1469
+ /* MARK: Table */
1470
+ .cn-table {
1471
+ @apply w-full caption-bottom text-sm;
1472
+ }
1473
+
1474
+ .cn-table-container {
1475
+ @apply relative w-full overflow-x-auto;
1476
+ }
1477
+
1478
+ .cn-table-header {
1479
+ @apply [&_tr]:border-b;
1480
+ }
1481
+
1482
+ .cn-table-body {
1483
+ @apply [&_tr:last-child]:border-0;
1484
+ }
1485
+
1486
+ .cn-table-footer {
1487
+ @apply border-t bg-muted/50 font-medium [&>tr]:last:border-b-0;
1488
+ }
1489
+
1490
+ .cn-table-row {
1491
+ @apply border-b transition-colors hover:bg-muted/50 has-aria-expanded:bg-muted/50 data-selected:bg-muted;
1492
+ }
1493
+
1494
+ .cn-table-head {
1495
+ @apply h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-foreground [&:has([role=checkbox])]:pr-0;
1496
+ }
1497
+
1498
+ .cn-table-cell {
1499
+ @apply p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0;
1500
+ }
1501
+
1502
+ .cn-table-caption {
1503
+ @apply mt-4 text-sm text-muted-foreground;
1504
+ }
1505
+
1506
+ /* MARK: Tabs */
1507
+ .cn-tabs {
1508
+ @apply gap-2;
1509
+ }
1510
+
1511
+ .cn-tabs-list {
1512
+ @apply rounded-lg p-[3px] group-data-horizontal/tabs:h-9 data-[variant=line]:rounded-none;
1513
+ }
1514
+
1515
+ .cn-tabs-list-variant-default {
1516
+ @apply bg-muted;
1517
+ }
1518
+
1519
+ .cn-tabs-list-variant-line {
1520
+ @apply gap-1 bg-transparent;
1521
+ }
1522
+
1523
+ /* The whole text-color cluster lives here (split-side rule): the base
1524
+ * dims (text-foreground/60, dark:text-muted-foreground) must lose to the
1525
+ * data-active colors, which they only can in-layer. */
1526
+ .cn-tabs-trigger {
1527
+ @apply gap-1.5 rounded-md border border-transparent px-2 py-1 text-sm font-medium text-foreground/60 hover:text-foreground has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 dark:text-muted-foreground dark:hover:text-foreground group-data-[variant=default]/tabs-list:data-active:shadow-sm group-data-[variant=line]/tabs-list:data-active:shadow-none [&_svg:not([class*='size-'])]:size-4 group-data-[variant=line]/tabs-list:bg-transparent group-data-[variant=line]/tabs-list:data-active:bg-transparent dark:group-data-[variant=line]/tabs-list:data-active:border-transparent dark:group-data-[variant=line]/tabs-list:data-active:bg-transparent data-active:bg-background data-active:text-foreground dark:data-active:border-input dark:data-active:bg-input/30 dark:data-active:text-foreground after:bg-foreground group-data-horizontal/tabs:after:inset-x-0 group-data-horizontal/tabs:after:bottom-[-5px] group-data-horizontal/tabs:after:h-0.5 group-data-vertical/tabs:after:inset-y-0 group-data-vertical/tabs:after:-right-1 group-data-vertical/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-active:after:opacity-100;
1528
+ }
1529
+
1530
+ .cn-tabs-content {
1531
+ @apply text-sm;
1532
+ }
1533
+
1534
+ /* MARK: Textarea */
1535
+ .cn-textarea {
1536
+ @apply border-input dark:bg-input/30 placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 rounded-md border bg-transparent px-2.5 py-2 text-base shadow-xs transition-[color,box-shadow] focus-visible:ring-3 aria-invalid:ring-3 md:text-sm;
1537
+ }
1538
+
1539
+ /* MARK: Toast */
1540
+ .cn-toast {
1541
+ @apply gap-3 rounded-2xl border bg-popover p-4 text-popover-foreground shadow-lg data-open:animate-in data-open:fade-in-0 data-open:slide-in-from-bottom-2 group-data-[position^=top]/toaster:data-open:slide-in-from-top-2 data-closed:animate-out data-closed:fade-out-80 data-closed:slide-out-to-bottom-2 group-data-[position^=top]/toaster:data-closed:slide-out-to-top-2;
1542
+ }
1543
+
1544
+ .cn-toast-variant-success {
1545
+ @apply [&_[data-slot=toast-icon]]:text-primary;
1546
+ }
1547
+
1548
+ .cn-toast-variant-info {
1549
+ @apply [&_[data-slot=toast-icon]]:text-muted-foreground;
1550
+ }
1551
+
1552
+ .cn-toast-variant-warning {
1553
+ @apply [&_[data-slot=toast-icon]]:text-primary;
1554
+ }
1555
+
1556
+ .cn-toast-variant-destructive {
1557
+ @apply text-destructive [&_[data-slot=toast-icon]]:text-destructive;
1558
+ }
1559
+
1560
+ .cn-toast-icon {
1561
+ @apply mt-0.5 size-4 [&_svg]:size-4;
1562
+ }
1563
+
1564
+ .cn-toast-body {
1565
+ @apply gap-1;
1566
+ }
1567
+
1568
+ .cn-toast-title {
1569
+ @apply text-sm font-medium;
1570
+ }
1571
+
1572
+ .cn-toast-description {
1573
+ @apply text-sm text-muted-foreground;
1574
+ }
1575
+
1576
+ /* MARK: Toaster */
1577
+ /* max-w-full lives here WITH its sm: cap (the split-side rule extends to
1578
+ * responsive pairs: a bare utility would beat the themed breakpoint
1579
+ * override from the utilities layer at every width). */
1580
+ .cn-toaster {
1581
+ @apply max-w-full gap-2 p-4 sm:max-w-[420px];
1582
+ }
1583
+
1584
+ /* MARK: Toggle */
1585
+ /* hover:bg-muted lives HERE (not inline, where upstream keeps it): the
1586
+ * outline variant's hover:bg-accent must beat it, and it only can when
1587
+ * both sides share the base layer (in-layer order = the merger's old
1588
+ * last-wins). An inline utility would win the cascade unconditionally. */
1589
+ .cn-toggle {
1590
+ @apply hover:text-foreground aria-pressed:bg-muted focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive gap-1 rounded-md text-sm font-medium transition-[color,box-shadow] [&_svg:not([class*='size-'])]:size-4;
1591
+ }
1592
+
1593
+ .cn-toggle-variant-default {
1594
+ @apply bg-transparent;
1595
+ }
1596
+
1597
+ .cn-toggle-variant-outline {
1598
+ @apply border-input hover:bg-muted border bg-transparent shadow-xs;
1599
+ }
1600
+
1601
+ .cn-toggle-size-default {
1602
+ @apply h-9 min-w-9 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 has-[>svg:first-child]:pl-2 has-[>svg:last-child]:pr-2;
1603
+ }
1604
+
1605
+ .cn-toggle-size-sm {
1606
+ @apply h-8 min-w-8 px-2.5 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 has-[>svg:first-child]:pl-1.5 has-[>svg:last-child]:pr-1.5;
1607
+ }
1608
+
1609
+ .cn-toggle-size-lg {
1610
+ @apply h-10 min-w-10 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 has-[>svg:first-child]:pl-2 has-[>svg:last-child]:pr-2;
1611
+ }
1612
+
1613
+ /* MARK: ToggleGroup */
1614
+ .cn-toggle-group {
1615
+ @apply rounded-md data-[spacing=0]:data-[variant=outline]:shadow-xs data-[spacing=default]:data-[variant=outline]:shadow-xs;
1616
+ }
1617
+
1618
+ /* Segmented edge radii live theme-side (side-move). */
1619
+ .cn-toggle-group-item {
1620
+ @apply data-pressed:bg-muted group-data-[spacing=0]/toggle-group:rounded-none group-data-[spacing=0]/toggle-group:px-2 group-data-[spacing=0]/toggle-group:shadow-none group-data-[spacing=0]/toggle-group:has-data-[icon=inline-end]:pr-1.5 group-data-[spacing=0]/toggle-group:has-data-[icon=inline-start]:pl-1.5 group-data-horizontal/toggle-group:data-[spacing=0]:first:rounded-l-md group-data-vertical/toggle-group:data-[spacing=0]:first:rounded-t-md group-data-horizontal/toggle-group:data-[spacing=0]:last:rounded-r-md group-data-vertical/toggle-group:data-[spacing=0]:last:rounded-b-md;
1621
+ }
1622
+
1623
+ /* MARK: Tooltip */
1624
+ .cn-tooltip-content {
1625
+ @apply data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 inline-flex items-center gap-1.5 rounded-md px-3 py-1.5 text-xs has-data-[slot=kbd]:pr-1.5 **:data-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm;
1626
+ }
1627
+
1628
+ .cn-tooltip-arrow {
1629
+ @apply size-2.5 rounded-[2px];
1630
+ }
1631
+
1632
+ /* MARK: Consumer utilities
1633
+ * Standalone cn-* classes templates and consumers apply directly (they
1634
+ * ride the css:verify_theme allowlist - no dictionary emits cn-rtl-flip).
1635
+ * cn-font-heading: upstream globals (@apply font-heading); poetry inlines
1636
+ * the var with a sans fallback so it is a no-op until a theme defines
1637
+ * --font-heading. cn-rtl-flip: upstream ships the NAME with no rule
1638
+ * anywhere (dead in source); poetry authors the intended RTL mirror. */
1639
+ .cn-font-heading {
1640
+ font-family: var(--font-heading, var(--font-sans));
1641
+ }
1642
+
1643
+ .cn-rtl-flip {
1644
+ @apply rtl:-scale-x-100;
1645
+ }
1646
+
1647
+ /* MARK: Cross-component overrides
1648
+ * Rules that restyle ANOTHER component's cn surface must come after every
1649
+ * rule they override - in-layer order is what lets an override win, so
1650
+ * alphabetical placement would silently lose (cn-input-group-textarea vs
1651
+ * the later cn-textarea). Keep every such rule in this closing section. */
1652
+ .cn-input-group-input {
1653
+ @apply rounded-none border-0 bg-transparent shadow-none ring-0 focus-visible:ring-0 aria-invalid:ring-0 dark:bg-transparent;
1654
+ }
1655
+
1656
+ .cn-input-group-textarea {
1657
+ @apply rounded-none border-0 bg-transparent py-2 shadow-none ring-0 focus-visible:ring-0 aria-invalid:ring-0 dark:bg-transparent;
1658
+ }
1659
+
1660
+ .cn-input-group-button {
1661
+ @apply gap-2 text-sm;
1662
+ }
1663
+
1664
+ .cn-input-group-button-size-xs {
1665
+ @apply h-6 gap-1 rounded-[calc(var(--radius)-5px)] px-1.5 [&>svg:not([class*='size-'])]:size-3.5;
1666
+ }
1667
+
1668
+ /* poetry-authored: upstream themes this hook only in lyra/mira (gap-1
1669
+ both); the class must compile in every theme (css:verify_compiled). */
1670
+ .cn-input-group-button-size-sm {
1671
+ @apply gap-1;
1672
+ }
1673
+
1674
+ .cn-input-group-button-size-icon-xs {
1675
+ @apply size-6 rounded-[calc(var(--radius)-5px)] p-0 has-[>svg]:p-0;
1676
+ }
1677
+
1678
+ .cn-input-group-button-size-icon-sm {
1679
+ @apply size-8 p-0 has-[>svg]:p-0;
1680
+ }
1681
+
1682
+ /* CommandDialog re-tunes the Dialog panel (p-0 must beat cn-dialog-content's p-6). */
1683
+ .cn-command-dialog {
1684
+ @apply rounded-xl!;
1685
+ }
1686
+
1687
+ /* MARK: Stat */
1688
+ .cn-stat-delta-positive {
1689
+ @apply text-[oklch(from_var(--success)_calc(l*0.85)_c_h)] dark:text-success;
1690
+ }
1691
+
1692
+ /* MARK: Questionnaire */
1693
+ .cn-questionnaire {
1694
+ @apply gap-6;
1695
+ }
1696
+
1697
+ .cn-questionnaire-progress {
1698
+ @apply text-xs;
1699
+ }
1700
+
1701
+ .cn-questionnaire-item {
1702
+ @apply flex flex-col gap-5;
1703
+ }
1704
+
1705
+ .cn-questionnaire-title {
1706
+ @apply text-base font-semibold [&:not(:has(~[data-slot=questionnaire-description]))]:mb-5;
1707
+ }
1708
+
1709
+ .cn-questionnaire-description {
1710
+ @apply text-sm;
1711
+ }
1712
+
1713
+ .cn-questionnaire-choices {
1714
+ @apply gap-3;
1715
+ }
1716
+
1717
+ .cn-questionnaire-choice {
1718
+ @apply border-input dark:bg-input/20 hover:bg-muted/50 data-checked:border-primary/40 data-checked:bg-muted dark:data-checked:bg-muted in-data-invalid:border-destructive has-[>input:focus-visible]:border-ring has-[>input:focus-visible]:ring-ring/50 gap-3 rounded-md border bg-transparent px-4 py-3.5 text-sm shadow-xs has-[>input:focus-visible]:ring-3;
1719
+ }
1720
+
1721
+ .cn-questionnaire-choice-indicator {
1722
+ @apply border-input dark:bg-input/30 group-data-checked/questionnaire-choice:bg-primary dark:group-data-checked/questionnaire-choice:bg-primary group-data-checked/questionnaire-choice:text-primary-foreground group-data-checked/questionnaire-choice:border-primary size-4 translate-y-[--spacing(0.45)] group-has-data-[slot=questionnaire-choice-description]/questionnaire-choice:translate-y-0.5 rounded-[4px];
1723
+ }
1724
+
1725
+ .cn-questionnaire-choice-indicator-dot {
1726
+ @apply bg-primary-foreground size-2;
1727
+ }
1728
+
1729
+ .cn-questionnaire-choice-indicator-check {
1730
+ @apply size-3.5;
1731
+ }
1732
+
1733
+ .cn-questionnaire-choice-content {
1734
+ @apply gap-1;
1735
+ }
1736
+
1737
+ .cn-questionnaire-choice-description {
1738
+ @apply text-muted-foreground;
1739
+ }
1740
+
1741
+ .cn-questionnaire-shortcut {
1742
+ @apply border-input bg-background text-muted-foreground size-5 translate-y-[--spacing(0.45)] group-has-data-[slot=questionnaire-choice-description]/questionnaire-choice:translate-y-0.5 items-center justify-center rounded-md border font-mono text-[0.625rem] font-medium leading-none shadow-xs;
1743
+ }
1744
+
1745
+ .cn-questionnaire-input-wrapper {
1746
+ @apply w-full;
1747
+ }
1748
+
1749
+ .cn-questionnaire-input {
1750
+ @apply dark:bg-input/30 border-input focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 h-9 rounded-md border bg-transparent px-2.5 py-1 text-base shadow-xs focus-visible:ring-3 aria-invalid:ring-3 md:text-sm;
1751
+ }
1752
+
1753
+ .cn-questionnaire-error {
1754
+ @apply text-sm;
1755
+ }
1756
+
1757
+ .cn-questionnaire-actions {
1758
+ @apply gap-2 sm:min-h-9;
1759
+ }
1760
+
1761
+ /* MARK: WebMCP agent focus (declarative tools) - the browser marks the
1762
+ form an agent is filling and its submit; :where() keeps the rule
1763
+ forgiving in browsers that lack the pseudo-classes. */
1764
+ :where(form:tool-form-active) {
1765
+ @apply rounded-lg outline-2 outline-dashed outline-offset-4 outline-ring/60;
1766
+ }
1767
+
1768
+ :where(:tool-submit-active) {
1769
+ @apply border-ring ring-3 ring-ring/50;
1770
+ }
1771
+
1772
+ /* MARK: Menu translucent (shared, LAST - wins the content bg cascade) */
1773
+ .cn-menu-translucent {
1774
+ @apply animate-none! relative bg-popover/70 before:pointer-events-none before:absolute before:inset-0 before:-z-1 before:rounded-[inherit] before:backdrop-blur-2xl before:backdrop-saturate-150 **:data-[slot$=-item]:focus:bg-foreground/10 **:data-[slot$=-item]:data-highlighted:bg-foreground/10 **:data-[slot$=-separator]:bg-foreground/5 **:data-[slot$=-trigger]:focus:bg-foreground/10 **:data-[slot$=-trigger]:aria-expanded:bg-foreground/10! **:data-[variant=destructive]:focus:bg-foreground/10! **:data-[variant=destructive]:text-accent-foreground! **:data-[variant=destructive]:**:text-accent-foreground!;
1775
+ }