@opencode-ai/ui 0.0.0 → 1.17.13

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 (473) hide show
  1. package/LICENSE +21 -0
  2. package/dist/components/accordion.d.ts +24 -0
  3. package/dist/components/animated-number.d.ts +4 -0
  4. package/dist/components/app-icon.d.ts +6 -0
  5. package/dist/components/app-icons/types.d.ts +2 -0
  6. package/dist/components/avatar.d.ts +9 -0
  7. package/dist/components/button.d.ts +9 -0
  8. package/dist/components/card.d.ts +22 -0
  9. package/dist/components/checkbox.d.ts +8 -0
  10. package/dist/components/collapsible.d.ts +17 -0
  11. package/dist/components/context-menu.d.ts +80 -0
  12. package/dist/components/dialog.d.ts +12 -0
  13. package/dist/components/diff-changes.d.ts +11 -0
  14. package/dist/components/dock-surface.d.ts +7 -0
  15. package/dist/components/dropdown-menu.d.ts +80 -0
  16. package/dist/components/favicon.d.ts +1 -0
  17. package/dist/components/file-icon.d.ts +12 -0
  18. package/dist/components/file-icons/types.d.ts +2 -0
  19. package/dist/components/font.d.ts +1 -0
  20. package/dist/components/hover-card.d.ts +9 -0
  21. package/dist/components/icon-button.d.ts +10 -0
  22. package/dist/components/icon.d.ts +104 -0
  23. package/dist/components/image-preview.d.ts +5 -0
  24. package/dist/components/inline-input.d.ts +5 -0
  25. package/dist/components/keybind.d.ts +6 -0
  26. package/dist/components/list.d.ts +45 -0
  27. package/dist/components/logo.d.ts +8 -0
  28. package/dist/components/motion-spring.d.ts +4 -0
  29. package/dist/components/popover.d.ts +14 -0
  30. package/dist/components/progress-circle.d.ts +7 -0
  31. package/dist/components/progress.d.ts +7 -0
  32. package/dist/components/provider-icon.d.ts +5 -0
  33. package/dist/components/provider-icons/types.d.ts +2 -0
  34. package/dist/components/radio-group.d.ts +16 -0
  35. package/dist/components/resize-handle.d.ts +12 -0
  36. package/dist/components/scroll-view.d.ts +15 -0
  37. package/dist/components/select.d.ts +21 -0
  38. package/dist/components/spinner.d.ts +6 -0
  39. package/dist/components/sticky-accordion-header.d.ts +5 -0
  40. package/dist/components/switch.d.ts +7 -0
  41. package/dist/components/tabs.d.ts +32 -0
  42. package/dist/components/tag.d.ts +5 -0
  43. package/dist/components/text-field.d.ts +13 -0
  44. package/dist/components/text-reveal.d.ts +13 -0
  45. package/dist/components/text-shimmer.d.ts +8 -0
  46. package/dist/components/text-strikethrough.d.ts +11 -0
  47. package/dist/components/toast.d.ts +56 -0
  48. package/dist/components/tooltip.d.ts +17 -0
  49. package/dist/components/typewriter.d.ts +6 -0
  50. package/dist/context/dialog.d.ts +18 -0
  51. package/dist/context/file.d.ts +5 -0
  52. package/dist/context/helper.d.ts +14 -0
  53. package/dist/context/i18n.d.ts +12 -0
  54. package/dist/context/index.d.ts +4 -0
  55. package/dist/context/marked.d.ts +9 -0
  56. package/dist/context/worker-pool.d.ts +9 -0
  57. package/dist/hooks/create-auto-scroll.d.ts +17 -0
  58. package/dist/hooks/index.d.ts +2 -0
  59. package/dist/hooks/use-filtered-list.d.ts +39 -0
  60. package/dist/i18n/ar.d.ts +148 -0
  61. package/dist/i18n/br.d.ts +148 -0
  62. package/dist/i18n/bs.d.ts +148 -0
  63. package/dist/i18n/da.d.ts +148 -0
  64. package/dist/i18n/de.d.ts +148 -0
  65. package/dist/i18n/en.d.ts +1 -0
  66. package/dist/i18n/es.d.ts +148 -0
  67. package/dist/i18n/fr.d.ts +148 -0
  68. package/dist/i18n/ja.d.ts +148 -0
  69. package/dist/i18n/ko.d.ts +148 -0
  70. package/dist/i18n/no.d.ts +4 -0
  71. package/dist/i18n/pl.d.ts +148 -0
  72. package/dist/i18n/ru.d.ts +148 -0
  73. package/dist/i18n/th.d.ts +148 -0
  74. package/dist/i18n/tr.d.ts +148 -0
  75. package/dist/i18n/uk.d.ts +1 -0
  76. package/dist/i18n/zh.d.ts +148 -0
  77. package/dist/i18n/zht.d.ts +148 -0
  78. package/dist/storybook/fixtures.d.ts +19 -0
  79. package/dist/storybook/scaffold.d.ts +16 -0
  80. package/dist/theme/color.d.ts +30 -0
  81. package/dist/theme/context.d.ts +21 -0
  82. package/dist/theme/default-themes.d.ts +39 -0
  83. package/dist/theme/index.d.ts +7 -0
  84. package/dist/theme/loader.d.ts +6 -0
  85. package/dist/theme/resolve.d.ts +7 -0
  86. package/dist/theme/types.d.ts +56 -0
  87. package/dist/theme/v2/avatar.d.ts +5 -0
  88. package/dist/theme/v2/default-primitives.d.ts +3 -0
  89. package/dist/theme/v2/foreground.d.ts +2 -0
  90. package/dist/theme/v2/mapping.d.ts +3 -0
  91. package/dist/theme/v2/resolve.d.ts +9 -0
  92. package/dist/v2/components/accordion-v2.d.ts +26 -0
  93. package/dist/v2/components/avatar-v2.d.ts +11 -0
  94. package/dist/v2/components/badge-v2.d.ts +5 -0
  95. package/dist/v2/components/button-v2.d.ts +10 -0
  96. package/dist/v2/components/checkbox-v2.d.ts +10 -0
  97. package/dist/v2/components/dialog-v2.d.ts +26 -0
  98. package/dist/v2/components/diff-changes-v2.d.ts +11 -0
  99. package/dist/v2/components/divider-v2.d.ts +5 -0
  100. package/dist/v2/components/field-v2.d.ts +28 -0
  101. package/dist/v2/components/icon-button-v2.d.ts +11 -0
  102. package/dist/v2/components/icon.d.ts +121 -0
  103. package/dist/v2/components/inline-input-v2.d.ts +21 -0
  104. package/dist/v2/components/keybind-v2.d.ts +7 -0
  105. package/dist/v2/components/line-comment-v2.d.ts +28 -0
  106. package/dist/v2/components/loader-v2.d.ts +3 -0
  107. package/dist/v2/components/menu-v2.d.ts +52 -0
  108. package/dist/v2/components/progress-circle-v2.d.ts +8 -0
  109. package/dist/v2/components/project-avatar-v2.d.ts +11 -0
  110. package/dist/v2/components/radio-v2.d.ts +16 -0
  111. package/dist/v2/components/segmented-control-v2.d.ts +21 -0
  112. package/dist/v2/components/select-v2.d.ts +24 -0
  113. package/dist/v2/components/switch-v2.d.ts +7 -0
  114. package/dist/v2/components/tab-state-indicator.d.ts +2 -0
  115. package/dist/v2/components/tabs-v2.d.ts +34 -0
  116. package/dist/v2/components/text-input-v2.d.ts +17 -0
  117. package/dist/v2/components/text-shimmer-v2.d.ts +9 -0
  118. package/dist/v2/components/textarea-v2.d.ts +7 -0
  119. package/dist/v2/components/toast-v2.d.ts +48 -0
  120. package/dist/v2/components/tooltip-v2.d.ts +13 -0
  121. package/dist/v2/components/wordmark-v2.d.ts +2 -0
  122. package/package.json +148 -6
  123. package/src/assets/audio/alert-01.aac +0 -0
  124. package/src/assets/audio/alert-01.mp3 +0 -0
  125. package/src/assets/audio/alert-02.aac +0 -0
  126. package/src/assets/audio/alert-02.mp3 +0 -0
  127. package/src/assets/audio/alert-03.aac +0 -0
  128. package/src/assets/audio/alert-03.mp3 +0 -0
  129. package/src/assets/audio/alert-04.aac +0 -0
  130. package/src/assets/audio/alert-04.mp3 +0 -0
  131. package/src/assets/audio/alert-05.aac +0 -0
  132. package/src/assets/audio/alert-05.mp3 +0 -0
  133. package/src/assets/audio/alert-06.aac +0 -0
  134. package/src/assets/audio/alert-06.mp3 +0 -0
  135. package/src/assets/audio/alert-07.aac +0 -0
  136. package/src/assets/audio/alert-07.mp3 +0 -0
  137. package/src/assets/audio/alert-08.aac +0 -0
  138. package/src/assets/audio/alert-08.mp3 +0 -0
  139. package/src/assets/audio/alert-09.aac +0 -0
  140. package/src/assets/audio/alert-09.mp3 +0 -0
  141. package/src/assets/audio/alert-10.aac +0 -0
  142. package/src/assets/audio/alert-10.mp3 +0 -0
  143. package/src/assets/audio/bip-bop-01.aac +0 -0
  144. package/src/assets/audio/bip-bop-01.mp3 +0 -0
  145. package/src/assets/audio/bip-bop-02.aac +0 -0
  146. package/src/assets/audio/bip-bop-02.mp3 +0 -0
  147. package/src/assets/audio/bip-bop-03.aac +0 -0
  148. package/src/assets/audio/bip-bop-03.mp3 +0 -0
  149. package/src/assets/audio/bip-bop-04.aac +0 -0
  150. package/src/assets/audio/bip-bop-04.mp3 +0 -0
  151. package/src/assets/audio/bip-bop-05.aac +0 -0
  152. package/src/assets/audio/bip-bop-05.mp3 +0 -0
  153. package/src/assets/audio/bip-bop-06.aac +0 -0
  154. package/src/assets/audio/bip-bop-06.mp3 +0 -0
  155. package/src/assets/audio/bip-bop-07.aac +0 -0
  156. package/src/assets/audio/bip-bop-07.mp3 +0 -0
  157. package/src/assets/audio/bip-bop-08.aac +0 -0
  158. package/src/assets/audio/bip-bop-08.mp3 +0 -0
  159. package/src/assets/audio/bip-bop-09.aac +0 -0
  160. package/src/assets/audio/bip-bop-09.mp3 +0 -0
  161. package/src/assets/audio/bip-bop-10.aac +0 -0
  162. package/src/assets/audio/bip-bop-10.mp3 +0 -0
  163. package/src/assets/audio/nope-01.aac +0 -0
  164. package/src/assets/audio/nope-01.mp3 +0 -0
  165. package/src/assets/audio/nope-02.aac +0 -0
  166. package/src/assets/audio/nope-02.mp3 +0 -0
  167. package/src/assets/audio/nope-03.aac +0 -0
  168. package/src/assets/audio/nope-03.mp3 +0 -0
  169. package/src/assets/audio/nope-04.aac +0 -0
  170. package/src/assets/audio/nope-04.mp3 +0 -0
  171. package/src/assets/audio/nope-05.aac +0 -0
  172. package/src/assets/audio/nope-05.mp3 +0 -0
  173. package/src/assets/audio/nope-06.aac +0 -0
  174. package/src/assets/audio/nope-06.mp3 +0 -0
  175. package/src/assets/audio/nope-07.aac +0 -0
  176. package/src/assets/audio/nope-07.mp3 +0 -0
  177. package/src/assets/audio/nope-08.aac +0 -0
  178. package/src/assets/audio/nope-08.mp3 +0 -0
  179. package/src/assets/audio/nope-09.aac +0 -0
  180. package/src/assets/audio/nope-09.mp3 +0 -0
  181. package/src/assets/audio/nope-10.aac +0 -0
  182. package/src/assets/audio/nope-10.mp3 +0 -0
  183. package/src/assets/audio/nope-11.aac +0 -0
  184. package/src/assets/audio/nope-11.mp3 +0 -0
  185. package/src/assets/audio/nope-12.aac +0 -0
  186. package/src/assets/audio/nope-12.mp3 +0 -0
  187. package/src/assets/audio/staplebops-01.aac +0 -0
  188. package/src/assets/audio/staplebops-01.mp3 +0 -0
  189. package/src/assets/audio/staplebops-02.aac +0 -0
  190. package/src/assets/audio/staplebops-02.mp3 +0 -0
  191. package/src/assets/audio/staplebops-03.aac +0 -0
  192. package/src/assets/audio/staplebops-03.mp3 +0 -0
  193. package/src/assets/audio/staplebops-04.aac +0 -0
  194. package/src/assets/audio/staplebops-04.mp3 +0 -0
  195. package/src/assets/audio/staplebops-05.aac +0 -0
  196. package/src/assets/audio/staplebops-05.mp3 +0 -0
  197. package/src/assets/audio/staplebops-06.aac +0 -0
  198. package/src/assets/audio/staplebops-06.mp3 +0 -0
  199. package/src/assets/audio/staplebops-07.aac +0 -0
  200. package/src/assets/audio/staplebops-07.mp3 +0 -0
  201. package/src/assets/audio/yup-01.aac +0 -0
  202. package/src/assets/audio/yup-01.mp3 +0 -0
  203. package/src/assets/audio/yup-02.aac +0 -0
  204. package/src/assets/audio/yup-02.mp3 +0 -0
  205. package/src/assets/audio/yup-03.aac +0 -0
  206. package/src/assets/audio/yup-03.mp3 +0 -0
  207. package/src/assets/audio/yup-04.aac +0 -0
  208. package/src/assets/audio/yup-04.mp3 +0 -0
  209. package/src/assets/audio/yup-05.aac +0 -0
  210. package/src/assets/audio/yup-05.mp3 +0 -0
  211. package/src/assets/audio/yup-06.aac +0 -0
  212. package/src/assets/audio/yup-06.mp3 +0 -0
  213. package/src/assets/fonts/Inter.ttf +0 -0
  214. package/src/assets/fonts/JetBrainsMonoNerdFontMono-Regular.woff2 +0 -0
  215. package/src/assets/icons/app/android-studio.svg +369 -0
  216. package/src/assets/icons/app/antigravity.svg +97 -0
  217. package/src/assets/icons/app/cursor.svg +16 -0
  218. package/src/assets/icons/app/file-explorer.svg +20 -0
  219. package/src/assets/icons/app/finder.png +0 -0
  220. package/src/assets/icons/app/ghostty.svg +13 -0
  221. package/src/assets/icons/app/iterm2.svg +13 -0
  222. package/src/assets/icons/app/powershell.svg +14 -0
  223. package/src/assets/icons/app/sublimetext.svg +17 -0
  224. package/src/assets/icons/app/terminal.png +0 -0
  225. package/src/assets/icons/app/textmate.png +0 -0
  226. package/src/assets/icons/app/vscode.svg +39 -0
  227. package/src/assets/icons/app/warp.png +0 -0
  228. package/src/assets/icons/app/xcode.png +0 -0
  229. package/src/assets/icons/app/zed-dark.svg +15 -0
  230. package/src/assets/icons/app/zed.svg +15 -0
  231. package/src/components/accordion.css +147 -0
  232. package/src/components/accordion.tsx +92 -0
  233. package/src/components/animated-number.css +75 -0
  234. package/src/components/animated-number.tsx +109 -0
  235. package/src/components/app-icon.css +5 -0
  236. package/src/components/app-icon.tsx +85 -0
  237. package/src/components/app-icons/sprite.svg +114 -0
  238. package/src/components/app-icons/types.ts +21 -0
  239. package/src/components/avatar.css +49 -0
  240. package/src/components/avatar.tsx +55 -0
  241. package/src/components/button.css +194 -0
  242. package/src/components/button.tsx +33 -0
  243. package/src/components/card.css +115 -0
  244. package/src/components/card.tsx +123 -0
  245. package/src/components/checkbox.css +131 -0
  246. package/src/components/checkbox.tsx +43 -0
  247. package/src/components/collapsible.css +148 -0
  248. package/src/components/collapsible.tsx +48 -0
  249. package/src/components/context-menu.css +134 -0
  250. package/src/components/context-menu.tsx +308 -0
  251. package/src/components/dialog.css +181 -0
  252. package/src/components/dialog.tsx +72 -0
  253. package/src/components/diff-changes.css +42 -0
  254. package/src/components/diff-changes.tsx +115 -0
  255. package/src/components/dock-surface.css +23 -0
  256. package/src/components/dock-surface.tsx +54 -0
  257. package/src/components/dropdown-menu.css +135 -0
  258. package/src/components/dropdown-menu.tsx +308 -0
  259. package/src/components/favicon.tsx +13 -0
  260. package/src/components/file-icon.css +26 -0
  261. package/src/components/file-icon.tsx +588 -0
  262. package/src/components/file-icons/sprite.svg +11707 -0
  263. package/src/components/file-icons/types.ts +1095 -0
  264. package/src/components/font.tsx +1 -0
  265. package/src/components/hover-card.css +61 -0
  266. package/src/components/hover-card.tsx +32 -0
  267. package/src/components/icon-button.css +181 -0
  268. package/src/components/icon-button.tsx +29 -0
  269. package/src/components/icon.css +34 -0
  270. package/src/components/icon.tsx +169 -0
  271. package/src/components/image-preview.css +63 -0
  272. package/src/components/image-preview.tsx +32 -0
  273. package/src/components/inline-input.css +17 -0
  274. package/src/components/inline-input.tsx +22 -0
  275. package/src/components/keybind.css +18 -0
  276. package/src/components/keybind.tsx +20 -0
  277. package/src/components/list.css +331 -0
  278. package/src/components/list.tsx +394 -0
  279. package/src/components/logo.css +4 -0
  280. package/src/components/logo.tsx +62 -0
  281. package/src/components/motion-spring.tsx +58 -0
  282. package/src/components/popover.css +98 -0
  283. package/src/components/popover.tsx +153 -0
  284. package/src/components/progress-circle.css +16 -0
  285. package/src/components/progress-circle.tsx +64 -0
  286. package/src/components/progress.css +63 -0
  287. package/src/components/progress.tsx +39 -0
  288. package/src/components/provider-icon.css +5 -0
  289. package/src/components/provider-icon.tsx +25 -0
  290. package/src/components/provider-icons/sprite.svg +1135 -0
  291. package/src/components/provider-icons/types.ts +105 -0
  292. package/src/components/radio-group.css +187 -0
  293. package/src/components/radio-group.tsx +83 -0
  294. package/src/components/resize-handle.css +58 -0
  295. package/src/components/resize-handle.tsx +82 -0
  296. package/src/components/scroll-view.css +66 -0
  297. package/src/components/scroll-view.tsx +250 -0
  298. package/src/components/select.css +199 -0
  299. package/src/components/select.tsx +174 -0
  300. package/src/components/spinner.css +6 -0
  301. package/src/components/spinner.tsx +52 -0
  302. package/src/components/sticky-accordion-header.css +6 -0
  303. package/src/components/sticky-accordion-header.tsx +18 -0
  304. package/src/components/switch.css +132 -0
  305. package/src/components/switch.tsx +29 -0
  306. package/src/components/tabs.css +635 -0
  307. package/src/components/tabs.tsx +125 -0
  308. package/src/components/tag.css +37 -0
  309. package/src/components/tag.tsx +22 -0
  310. package/src/components/text-field.css +134 -0
  311. package/src/components/text-field.tsx +128 -0
  312. package/src/components/text-reveal.css +150 -0
  313. package/src/components/text-reveal.tsx +143 -0
  314. package/src/components/text-shimmer.css +119 -0
  315. package/src/components/text-shimmer.tsx +62 -0
  316. package/src/components/text-strikethrough.css +27 -0
  317. package/src/components/text-strikethrough.tsx +84 -0
  318. package/src/components/toast.css +236 -0
  319. package/src/components/toast.tsx +185 -0
  320. package/src/components/tooltip.css +74 -0
  321. package/src/components/tooltip.tsx +163 -0
  322. package/src/components/typewriter.css +14 -0
  323. package/src/components/typewriter.tsx +55 -0
  324. package/src/context/dialog.tsx +197 -0
  325. package/src/context/file.tsx +10 -0
  326. package/src/context/helper.tsx +38 -0
  327. package/src/context/i18n.tsx +38 -0
  328. package/src/context/index.ts +4 -0
  329. package/src/context/marked.tsx +522 -0
  330. package/src/context/worker-pool.tsx +20 -0
  331. package/src/custom-elements.d.ts +17 -0
  332. package/src/hooks/create-auto-scroll.tsx +237 -0
  333. package/src/hooks/index.ts +2 -0
  334. package/src/hooks/use-filtered-list.tsx +134 -0
  335. package/src/i18n/ar.ts +168 -0
  336. package/src/i18n/br.ts +168 -0
  337. package/src/i18n/bs.ts +172 -0
  338. package/src/i18n/da.ts +167 -0
  339. package/src/i18n/de.ts +173 -0
  340. package/src/i18n/en.ts +176 -0
  341. package/src/i18n/es.ts +168 -0
  342. package/src/i18n/fr.ts +168 -0
  343. package/src/i18n/ja.ts +167 -0
  344. package/src/i18n/ko.ts +168 -0
  345. package/src/i18n/no.ts +171 -0
  346. package/src/i18n/pl.ts +167 -0
  347. package/src/i18n/ru.ts +167 -0
  348. package/src/i18n/th.ts +169 -0
  349. package/src/i18n/tr.ts +174 -0
  350. package/src/i18n/uk.ts +167 -0
  351. package/src/i18n/zh.ts +171 -0
  352. package/src/i18n/zht.ts +171 -0
  353. package/src/storybook/fixtures.ts +51 -0
  354. package/src/storybook/scaffold.tsx +62 -0
  355. package/src/styles/animations.css +141 -0
  356. package/src/styles/base.css +404 -0
  357. package/src/styles/colors.css +772 -0
  358. package/src/styles/index.css +53 -0
  359. package/src/styles/tailwind/colors.css +286 -0
  360. package/src/styles/tailwind/index.css +78 -0
  361. package/src/styles/tailwind/utilities.css +131 -0
  362. package/src/styles/theme.css +609 -0
  363. package/src/styles/utilities.css +118 -0
  364. package/src/theme/color.ts +299 -0
  365. package/src/theme/context.tsx +370 -0
  366. package/src/theme/default-themes.ts +116 -0
  367. package/src/theme/index.ts +78 -0
  368. package/src/theme/loader.ts +112 -0
  369. package/src/theme/resolve.ts +540 -0
  370. package/src/theme/themes/amoled.json +49 -0
  371. package/src/theme/themes/aura.json +51 -0
  372. package/src/theme/themes/ayu.json +51 -0
  373. package/src/theme/themes/carbonfox.json +53 -0
  374. package/src/theme/themes/catppuccin-frappe.json +85 -0
  375. package/src/theme/themes/catppuccin-macchiato.json +85 -0
  376. package/src/theme/themes/catppuccin.json +45 -0
  377. package/src/theme/themes/cobalt2.json +87 -0
  378. package/src/theme/themes/cursor.json +91 -0
  379. package/src/theme/themes/dracula.json +49 -0
  380. package/src/theme/themes/everforest.json +89 -0
  381. package/src/theme/themes/flexoki.json +86 -0
  382. package/src/theme/themes/github.json +85 -0
  383. package/src/theme/themes/gruvbox.json +45 -0
  384. package/src/theme/themes/kanagawa.json +89 -0
  385. package/src/theme/themes/lucent-orng.json +87 -0
  386. package/src/theme/themes/material.json +87 -0
  387. package/src/theme/themes/matrix.json +113 -0
  388. package/src/theme/themes/mercury.json +86 -0
  389. package/src/theme/themes/monokai.json +49 -0
  390. package/src/theme/themes/nightowl.json +46 -0
  391. package/src/theme/themes/nord.json +46 -0
  392. package/src/theme/themes/oc-2.json +474 -0
  393. package/src/theme/themes/one-dark.json +89 -0
  394. package/src/theme/themes/onedarkpro.json +45 -0
  395. package/src/theme/themes/opencode.json +89 -0
  396. package/src/theme/themes/orng.json +87 -0
  397. package/src/theme/themes/osaka-jade.json +88 -0
  398. package/src/theme/themes/palenight.json +85 -0
  399. package/src/theme/themes/rosepine.json +85 -0
  400. package/src/theme/themes/shadesofpurple.json +51 -0
  401. package/src/theme/themes/solarized.json +49 -0
  402. package/src/theme/themes/synthwave84.json +87 -0
  403. package/src/theme/themes/tokyonight.json +47 -0
  404. package/src/theme/themes/vercel.json +90 -0
  405. package/src/theme/themes/vesper.json +51 -0
  406. package/src/theme/themes/zenburn.json +87 -0
  407. package/src/theme/types.ts +75 -0
  408. package/src/theme/v2/avatar.ts +48 -0
  409. package/src/theme/v2/default-primitives.ts +114 -0
  410. package/src/theme/v2/foreground.ts +60 -0
  411. package/src/theme/v2/mapping.ts +140 -0
  412. package/src/theme/v2/resolve.ts +153 -0
  413. package/src/v2/components/accordion-v2.css +139 -0
  414. package/src/v2/components/accordion-v2.tsx +86 -0
  415. package/src/v2/components/avatar-v2.css +70 -0
  416. package/src/v2/components/avatar-v2.tsx +59 -0
  417. package/src/v2/components/badge-v2.css +27 -0
  418. package/src/v2/components/badge-v2.tsx +20 -0
  419. package/src/v2/components/button-v2.css +239 -0
  420. package/src/v2/components/button-v2.tsx +35 -0
  421. package/src/v2/components/checkbox-v2.css +184 -0
  422. package/src/v2/components/checkbox-v2.tsx +65 -0
  423. package/src/v2/components/dialog-v2.css +177 -0
  424. package/src/v2/components/dialog-v2.tsx +114 -0
  425. package/src/v2/components/diff-changes-v2.css +24 -0
  426. package/src/v2/components/diff-changes-v2.tsx +28 -0
  427. package/src/v2/components/divider-v2.css +11 -0
  428. package/src/v2/components/divider-v2.tsx +20 -0
  429. package/src/v2/components/field-v2.css +94 -0
  430. package/src/v2/components/field-v2.tsx +265 -0
  431. package/src/v2/components/icon-button-v2.css +155 -0
  432. package/src/v2/components/icon-button-v2.tsx +37 -0
  433. package/src/v2/components/icon.tsx +173 -0
  434. package/src/v2/components/inline-input-v2.css +218 -0
  435. package/src/v2/components/inline-input-v2.tsx +90 -0
  436. package/src/v2/components/keybind-v2.css +76 -0
  437. package/src/v2/components/keybind-v2.tsx +30 -0
  438. package/src/v2/components/line-comment-v2.css +204 -0
  439. package/src/v2/components/line-comment-v2.tsx +155 -0
  440. package/src/v2/components/loader-v2.css +32 -0
  441. package/src/v2/components/loader-v2.tsx +31 -0
  442. package/src/v2/components/menu-v2.css +190 -0
  443. package/src/v2/components/menu-v2.tsx +225 -0
  444. package/src/v2/components/progress-circle-v2.css +13 -0
  445. package/src/v2/components/progress-circle-v2.tsx +52 -0
  446. package/src/v2/components/project-avatar-v2.css +125 -0
  447. package/src/v2/components/project-avatar-v2.tsx +64 -0
  448. package/src/v2/components/radio-v2.css +202 -0
  449. package/src/v2/components/radio-v2.tsx +72 -0
  450. package/src/v2/components/segmented-control-v2.css +80 -0
  451. package/src/v2/components/segmented-control-v2.tsx +208 -0
  452. package/src/v2/components/select-v2.css +285 -0
  453. package/src/v2/components/select-v2.tsx +208 -0
  454. package/src/v2/components/switch-v2.css +154 -0
  455. package/src/v2/components/switch-v2.tsx +28 -0
  456. package/src/v2/components/tab-state-indicator.tsx +37 -0
  457. package/src/v2/components/tabs-v2.css +225 -0
  458. package/src/v2/components/tabs-v2.tsx +147 -0
  459. package/src/v2/components/text-input-v2.css +145 -0
  460. package/src/v2/components/text-input-v2.tsx +67 -0
  461. package/src/v2/components/text-shimmer-v2.css +125 -0
  462. package/src/v2/components/text-shimmer-v2.tsx +63 -0
  463. package/src/v2/components/textarea-v2.css +78 -0
  464. package/src/v2/components/textarea-v2.tsx +31 -0
  465. package/src/v2/components/toast-v2.css +215 -0
  466. package/src/v2/components/toast-v2.tsx +144 -0
  467. package/src/v2/components/tooltip-v2.css +64 -0
  468. package/src/v2/components/tooltip-v2.tsx +147 -0
  469. package/src/v2/components/wordmark-v2.tsx +92 -0
  470. package/src/v2/styles/colors.css +172 -0
  471. package/src/v2/styles/tailwind.css +2 -0
  472. package/src/v2/styles/theme.css +457 -0
  473. package/README.md +0 -3
@@ -0,0 +1,285 @@
1
+ @import "./menu-v2.css";
2
+
3
+ /* Above modal dialogs (z-index 50); matches legacy select-content. */
4
+ [data-popper-positioner]:has([data-slot="select-v2-content"]) {
5
+ z-index: 60;
6
+ }
7
+
8
+ /* Dropdown surface (Type=menu) — overrides shared menu-v2 defaults for selects only. */
9
+ [data-component="menu-v2-content"][data-slot="select-v2-content"] {
10
+ padding: 0;
11
+ min-width: 160px;
12
+ max-width: 23rem;
13
+ overflow: hidden;
14
+ z-index: 60;
15
+ pointer-events: auto;
16
+ background: var(--v2-background-bg-layer-01);
17
+ border-radius: 6px;
18
+ box-shadow: var(--v2-elevation-floating);
19
+ transform-origin: top center;
20
+ animation: select-v2-content-in 120ms ease-out;
21
+ }
22
+
23
+ [data-component="menu-v2-content"][data-slot="select-v2-content"][data-closed] {
24
+ animation: select-v2-content-out 80ms ease-in forwards;
25
+ }
26
+
27
+ @keyframes select-v2-content-in {
28
+ from {
29
+ opacity: 0;
30
+ transform: translateY(-2px);
31
+ }
32
+ to {
33
+ opacity: 1;
34
+ transform: translateY(0);
35
+ }
36
+ }
37
+
38
+ @keyframes select-v2-content-out {
39
+ from {
40
+ opacity: 1;
41
+ transform: translateY(0);
42
+ }
43
+ to {
44
+ opacity: 0;
45
+ transform: translateY(-2px);
46
+ }
47
+ }
48
+
49
+ /* Trigger shell — aligned with text-input-v2 */
50
+ [data-component="select-v2"] {
51
+ box-sizing: border-box;
52
+ display: flex;
53
+ flex-direction: row;
54
+ align-items: stretch;
55
+ padding: 0 6px 0 0;
56
+ gap: 8px;
57
+ width: 280px;
58
+ height: 28px;
59
+ border: 0;
60
+ border-radius: 6px;
61
+ outline: 1px solid transparent;
62
+ outline-offset: 0;
63
+ background:
64
+ linear-gradient(180deg, var(--v2-alpha-light-2) 0%, var(--v2-alpha-light-0) 100%), var(--v2-background-bg-base);
65
+ box-shadow: var(--v2-elevation-button-neutral);
66
+ flex: none;
67
+ align-self: stretch;
68
+ transition:
69
+ background 85ms ease-out,
70
+ outline-color 85ms ease-out,
71
+ box-shadow 85ms ease-out;
72
+ }
73
+
74
+ [data-component="select-v2"][data-appearance="large"] {
75
+ height: 32px;
76
+ padding: 0 8px 0 0;
77
+ }
78
+
79
+ [data-component="select-v2"]:where(:hover):not([data-disabled], [data-invalid]):not(:focus-within):not(
80
+ [data-expanded]
81
+ ) {
82
+ background:
83
+ linear-gradient(0deg, var(--v2-overlay-simple-overlay-hover), var(--v2-overlay-simple-overlay-hover)),
84
+ linear-gradient(180deg, var(--v2-alpha-light-2) 0%, var(--v2-alpha-light-0) 100%), var(--v2-background-bg-base);
85
+ }
86
+
87
+ [data-component="select-v2"]:where([data-expanded]):not([data-disabled], [data-invalid]) {
88
+ background:
89
+ linear-gradient(0deg, var(--v2-overlay-simple-overlay-hover), var(--v2-overlay-simple-overlay-hover)),
90
+ linear-gradient(180deg, var(--v2-alpha-light-2) 0%, var(--v2-alpha-light-0) 100%), var(--v2-background-bg-base);
91
+ outline-color: transparent;
92
+ }
93
+
94
+ [data-component="select-v2"]:where(:focus-within):not([data-disabled], [data-invalid]):not([data-expanded]) {
95
+ outline-color: var(--v2-border-border-focus);
96
+ box-shadow: none;
97
+ }
98
+
99
+ [data-component="select-v2"]:where([data-invalid]):not([data-disabled]) {
100
+ outline-color: var(--v2-state-fg-danger);
101
+ box-shadow: none;
102
+ }
103
+
104
+ [data-component="select-v2"]:where([data-disabled]) {
105
+ opacity: 0.5;
106
+ cursor: not-allowed;
107
+ }
108
+
109
+ [data-component="select-v2"] [data-slot="select-v2-value"] {
110
+ display: flex;
111
+ flex-direction: row;
112
+ align-items: center;
113
+ align-self: stretch;
114
+ padding: 0;
115
+ min-width: 0;
116
+ flex: 1 1 auto;
117
+ min-height: 0;
118
+ cursor: default;
119
+ }
120
+
121
+ [data-component="select-v2"] [data-slot="select-v2-value-text"] {
122
+ display: block;
123
+ width: 100%;
124
+ min-width: 0;
125
+ overflow: hidden;
126
+ text-overflow: ellipsis;
127
+ white-space: nowrap;
128
+ padding: 0 0 0 8px;
129
+ margin: 0;
130
+ border: 0;
131
+ background: transparent;
132
+ outline: none;
133
+ text-align: left;
134
+ font-style: normal;
135
+ font-weight: 440;
136
+ font-size: 13px;
137
+ line-height: 16px;
138
+ letter-spacing: -0.04px;
139
+ color: var(--v2-text-text-base);
140
+ font-variation-settings: "slnt" 0;
141
+ cursor: default;
142
+ }
143
+
144
+ [data-component="select-v2"] [data-slot="select-v2-value-text"][data-placeholder-shown] {
145
+ color: var(--v2-text-text-faint);
146
+ }
147
+
148
+ [data-component="select-v2"][data-numeric] [data-slot="select-v2-value-text"] {
149
+ font-variant-numeric: tabular-nums;
150
+ }
151
+
152
+ [data-component="select-v2"]:where([data-invalid]):not([data-disabled]) [data-slot="select-v2-value-text"] {
153
+ color: var(--v2-state-fg-danger);
154
+ }
155
+
156
+ [data-component="select-v2"] [data-slot="select-v2-chevron"] {
157
+ display: flex;
158
+ flex-direction: row;
159
+ justify-content: center;
160
+ align-items: center;
161
+ align-self: center;
162
+ flex: none;
163
+ width: 20px;
164
+ height: 20px;
165
+ padding: 2px;
166
+ gap: 3px;
167
+ border: 0;
168
+ border-radius: 4px;
169
+ background: transparent;
170
+ color: var(--v2-icon-icon-muted);
171
+ pointer-events: none;
172
+ }
173
+
174
+ [data-component="select-v2"] [data-slot="select-v2-chevron"] svg {
175
+ display: block;
176
+ flex: none;
177
+ transform: rotate(180deg);
178
+ transform-origin: 50% 50%;
179
+ }
180
+
181
+ [data-component="select-v2"][data-expanded] [data-slot="select-v2-chevron"] svg {
182
+ transform: rotate(0deg);
183
+ }
184
+
185
+ /* Compact trigger for settings rows and similar inline contexts. */
186
+ [data-component="select-v2"][data-appearance="inline"] {
187
+ width: fit-content;
188
+ max-width: 100%;
189
+ height: 24px;
190
+ padding: 4px 4px 4px 8px;
191
+ gap: 4px;
192
+ border-radius: 4px;
193
+ background: transparent;
194
+ box-shadow: none;
195
+ outline: none;
196
+ align-self: auto;
197
+ }
198
+
199
+ [data-component="select-v2"][data-appearance="inline"]:where(:hover):not([data-disabled], [data-invalid]):not(
200
+ :focus-within
201
+ ):not([data-expanded]) {
202
+ background: var(--v2-overlay-simple-overlay-hover);
203
+ }
204
+
205
+ [data-component="select-v2"][data-appearance="inline"]:where([data-expanded]):not([data-disabled], [data-invalid]) {
206
+ background: var(--v2-overlay-simple-overlay-hover);
207
+ outline: none;
208
+ box-shadow: none;
209
+ }
210
+
211
+ [data-component="select-v2"][data-appearance="inline"]:where(:active):not([data-disabled], [data-invalid]):not(
212
+ [data-expanded]
213
+ ) {
214
+ background: var(--v2-overlay-simple-overlay-pressed);
215
+ }
216
+
217
+ [data-component="select-v2"][data-appearance="inline"] [data-slot="select-v2-value-text"] {
218
+ padding: 0;
219
+ font-weight: 530;
220
+ }
221
+
222
+ [data-component="select-v2"][data-appearance="inline"] [data-slot="select-v2-chevron"] {
223
+ width: 16px;
224
+ height: 16px;
225
+ padding: 0;
226
+ }
227
+
228
+ /* Listbox inside menu surface */
229
+ [data-component="menu-v2-content"][data-slot="select-v2-content"] [data-slot="select-v2-listbox"] {
230
+ box-sizing: border-box;
231
+ display: flex;
232
+ flex-direction: column;
233
+ align-items: stretch;
234
+ margin: 0;
235
+ padding: 4px;
236
+ list-style: none;
237
+ min-width: 0;
238
+ width: 100%;
239
+ max-height: 12rem;
240
+ overflow-x: hidden;
241
+ overflow-y: auto;
242
+ outline: none;
243
+ white-space: nowrap;
244
+
245
+ &:focus {
246
+ outline: none;
247
+ }
248
+
249
+ > *:not([role="presentation"]) + *:not([role="presentation"]) {
250
+ margin-top: 2px;
251
+ }
252
+ }
253
+
254
+ [data-slot="select-v2-listbox"] [data-component="menu-v2-item"],
255
+ [data-slot="select-v2-listbox"] [data-slot="menu-v2-group-label"] {
256
+ flex: none;
257
+ }
258
+
259
+ [data-slot="select-v2-listbox"] [data-component="menu-v2-item"] {
260
+ --menu-v2-fg: var(--v2-text-text-base);
261
+ --menu-v2-fg-muted: var(--v2-text-text-faint);
262
+ --menu-v2-fg-subtle: var(--v2-text-text-muted);
263
+ --menu-v2-icon: var(--v2-icon-icon-base);
264
+ --menu-v2-accent: var(--v2-text-text-accent);
265
+ --menu-v2-badge-bg: var(--v2-background-bg-layer-02);
266
+ --menu-v2-badge-border: var(--v2-border-border-base);
267
+ --menu-v2-hover: var(--v2-overlay-simple-overlay-hover);
268
+ }
269
+
270
+ /* Listbox uses data-selected; menu item CSS uses data-checked — mirror accent */
271
+ [data-slot="select-v2-listbox"] [data-component="menu-v2-item"][data-selected] [data-slot="menu-v2-item-content"] {
272
+ font-weight: 530;
273
+ color: var(--menu-v2-accent);
274
+ }
275
+
276
+ [data-slot="select-v2-listbox"] [data-component="menu-v2-item"][data-selected] [data-slot="menu-v2-item-indicator"] {
277
+ color: var(--menu-v2-accent);
278
+ }
279
+
280
+ [data-slot="select-v2-listbox"]
281
+ [data-component="menu-v2-item"]:not([data-selected])
282
+ [data-slot="menu-v2-item-indicator"]
283
+ svg {
284
+ visibility: hidden;
285
+ }
@@ -0,0 +1,208 @@
1
+ import { Select as Kobalte } from "@kobalte/core/select"
2
+ import { Show, createMemo, onCleanup, splitProps, type ComponentProps, type JSX } from "solid-js"
3
+ import "./select-v2.css"
4
+
5
+ function groupOptions<T>(options: T[], groupBy?: (x: T) => string): { category: string; options: T[] }[] {
6
+ if (!groupBy) {
7
+ return [{ category: "", options }]
8
+ }
9
+ const map = new Map<string, T[]>()
10
+ for (const opt of options) {
11
+ const key = groupBy(opt)
12
+ const arr = map.get(key)
13
+ if (arr) arr.push(opt)
14
+ else map.set(key, [opt])
15
+ }
16
+ return [...map.entries()].map(([category, opts]) => ({ category, options: opts }))
17
+ }
18
+
19
+ const ChevronDown = () => (
20
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
21
+ <path
22
+ d="M11 9.5L8 6.5L5 9.5"
23
+ stroke="currentColor"
24
+ stroke-width="1"
25
+ stroke-linecap="round"
26
+ stroke-linejoin="round"
27
+ />
28
+ </svg>
29
+ )
30
+
31
+ const CheckSmall = () => (
32
+ <svg width="14" height="14" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
33
+ <path
34
+ d="M3.53564 8.17857L6.39279 11.75L12.4642 4.25"
35
+ stroke="currentColor"
36
+ stroke-width="1"
37
+ stroke-linecap="round"
38
+ stroke-linejoin="round"
39
+ />
40
+ </svg>
41
+ )
42
+
43
+ export type SelectV2Props<T> = Omit<
44
+ ComponentProps<typeof Kobalte<T, { category: string; options: T[] }>>,
45
+ "value" | "onSelect" | "children" | "options" | "itemComponent" | "sectionComponent" | "defaultValue" | "multiple"
46
+ > & {
47
+ placeholder?: string
48
+ options: T[]
49
+ /** Selected option (single selection). */
50
+ current?: T
51
+ value?: (x: T) => string
52
+ label?: (x: T) => string
53
+ groupBy?: (x: T) => string
54
+ onSelect?: (value: T | null) => void
55
+ onHighlight?: (value: T | undefined) => void | (() => void)
56
+ /** `base` / `large` match text-input-v2; `inline` is a compact settings-row trigger. */
57
+ appearance?: "base" | "large" | "inline"
58
+ invalid?: boolean
59
+ numeric?: boolean
60
+ children?: (item: T) => JSX.Element
61
+ valueClass?: string
62
+ }
63
+
64
+ export function SelectV2<T>(props: SelectV2Props<T>) {
65
+ const [local, others] = splitProps(props, [
66
+ "class",
67
+ "classList",
68
+ "placeholder",
69
+ "options",
70
+ "current",
71
+ "value",
72
+ "label",
73
+ "groupBy",
74
+ "onSelect",
75
+ "onHighlight",
76
+ "onOpenChange",
77
+ "children",
78
+ "appearance",
79
+ "invalid",
80
+ "numeric",
81
+ "disabled",
82
+ "valueClass",
83
+ "placement",
84
+ "gutter",
85
+ "sameWidth",
86
+ "flip",
87
+ "slide",
88
+ "fitViewport",
89
+ ])
90
+
91
+ const inline = () => (local.appearance ?? "base") === "inline"
92
+
93
+ const state: { key?: string; cleanup?: void | (() => void) } = {}
94
+
95
+ const stop = () => {
96
+ state.cleanup?.()
97
+ state.cleanup = undefined
98
+ state.key = undefined
99
+ }
100
+
101
+ const keyFor = (item: T) => (local.value ? local.value(item) : String(item as string))
102
+
103
+ const move = (item: T | undefined) => {
104
+ if (!local.onHighlight) return
105
+ if (!item) {
106
+ stop()
107
+ return
108
+ }
109
+ const key = keyFor(item)
110
+ if (state.key === key) return
111
+ state.cleanup?.()
112
+ state.cleanup = local.onHighlight(item)
113
+ state.key = key
114
+ }
115
+
116
+ onCleanup(stop)
117
+
118
+ const grouped = createMemo(() => groupOptions(local.options, local.groupBy))
119
+
120
+ return (
121
+ <Kobalte<T, { category: string; options: T[] }>
122
+ {...others}
123
+ multiple={false}
124
+ disabled={local.disabled}
125
+ data-component="select-v2-root"
126
+ placement={local.placement ?? (inline() ? "bottom-end" : "bottom-start")}
127
+ gutter={local.gutter ?? 4}
128
+ sameWidth={local.sameWidth ?? !inline()}
129
+ flip={local.flip ?? true}
130
+ slide={local.slide ?? true}
131
+ fitViewport={local.fitViewport ?? false}
132
+ value={local.current}
133
+ options={grouped()}
134
+ optionValue={(x) => (local.value ? local.value(x) : String(x as string))}
135
+ optionTextValue={(x) => (local.label ? local.label(x) : String(x as string))}
136
+ optionGroupChildren="options"
137
+ placeholder={local.placeholder}
138
+ sectionComponent={(sectionProps) => (
139
+ <Kobalte.Section>
140
+ <Show when={sectionProps.section.rawValue.category}>
141
+ <div data-slot="menu-v2-group-label">{sectionProps.section.rawValue.category}</div>
142
+ </Show>
143
+ </Kobalte.Section>
144
+ )}
145
+ itemComponent={(itemProps) => (
146
+ <Kobalte.Item
147
+ {...itemProps}
148
+ data-component="menu-v2-item"
149
+ onPointerEnter={() => move(itemProps.item.rawValue)}
150
+ onPointerMove={() => move(itemProps.item.rawValue)}
151
+ onFocus={() => move(itemProps.item.rawValue)}
152
+ >
153
+ <Kobalte.ItemLabel data-slot="menu-v2-item-content" as="span">
154
+ {local.children
155
+ ? local.children(itemProps.item.rawValue)
156
+ : local.label
157
+ ? local.label(itemProps.item.rawValue)
158
+ : String(itemProps.item.rawValue as string)}
159
+ </Kobalte.ItemLabel>
160
+ <Kobalte.ItemIndicator data-slot="menu-v2-item-indicator" forceMount>
161
+ <CheckSmall />
162
+ </Kobalte.ItemIndicator>
163
+ </Kobalte.Item>
164
+ )}
165
+ onChange={(next) => {
166
+ const v = next == null ? null : Array.isArray(next) ? ((next[0] as T) ?? null) : (next as T)
167
+ local.onSelect?.(v)
168
+ stop()
169
+ }}
170
+ onOpenChange={(open) => {
171
+ local.onOpenChange?.(open)
172
+ if (!open) stop()
173
+ }}
174
+ >
175
+ <Kobalte.Trigger
176
+ as="div"
177
+ data-component="select-v2"
178
+ data-appearance={local.appearance ?? "base"}
179
+ data-invalid={local.invalid ? "" : undefined}
180
+ data-numeric={local.numeric ? "" : undefined}
181
+ disabled={local.disabled}
182
+ data-disabled={local.disabled ? "" : undefined}
183
+ classList={{
184
+ ...local.classList,
185
+ [local.class ?? ""]: !!local.class,
186
+ }}
187
+ >
188
+ <div data-slot="select-v2-value">
189
+ <Kobalte.Value<T> data-slot="select-v2-value-text" class={local.valueClass}>
190
+ {(st) => {
191
+ const selected = st.selectedOption()
192
+ if (local.label && selected != null) return local.label(selected)
193
+ return selected != null ? (selected as string) : ""
194
+ }}
195
+ </Kobalte.Value>
196
+ </div>
197
+ <span data-slot="select-v2-chevron" aria-hidden="true">
198
+ <ChevronDown />
199
+ </span>
200
+ </Kobalte.Trigger>
201
+ <Kobalte.Portal>
202
+ <Kobalte.Content data-component="menu-v2-content" data-slot="select-v2-content">
203
+ <Kobalte.Listbox data-slot="select-v2-listbox" />
204
+ </Kobalte.Content>
205
+ </Kobalte.Portal>
206
+ </Kobalte>
207
+ )
208
+ }
@@ -0,0 +1,154 @@
1
+ [data-component="switch"] {
2
+ position: relative;
3
+ display: flex;
4
+ align-items: center;
5
+ gap: 8px;
6
+ cursor: default;
7
+
8
+ [data-slot="switch-input"] {
9
+ position: absolute;
10
+ width: 1px;
11
+ height: 1px;
12
+ padding: 0;
13
+ margin: -1px;
14
+ overflow: hidden;
15
+ clip: rect(0, 0, 0, 0);
16
+ white-space: nowrap;
17
+ border-width: 0;
18
+ }
19
+
20
+ [data-slot="switch-control"] {
21
+ box-sizing: border-box;
22
+ display: inline-flex;
23
+ justify-content: flex-start;
24
+ align-items: center;
25
+ padding: 2px;
26
+ width: 24px;
27
+ height: 16px;
28
+ flex-shrink: 0;
29
+ border-radius: 4px;
30
+ border: none;
31
+ background:
32
+ linear-gradient(180deg, var(--v2-alpha-light-0) 0%, var(--v2-alpha-light-20) 100%),
33
+ var(--v2-background-bg-layer-03);
34
+ box-shadow: var(--v2-elevation-switch-off);
35
+ transition:
36
+ background 90ms ease-out,
37
+ opacity 90ms ease-out,
38
+ outline-color 90ms ease-out;
39
+ }
40
+
41
+ [data-slot="switch-thumb"] {
42
+ box-sizing: border-box;
43
+ width: 12px;
44
+ height: 12px;
45
+ transform: translateX(0);
46
+ border-radius: 2px;
47
+ border: 0.5px solid var(--v2-overlay-gradient-depth-overlay-depth-top);
48
+ background:
49
+ linear-gradient(
50
+ 180deg,
51
+ var(--v2-overlay-gradient-depth-overlay-depth-top) 0%,
52
+ var(--v2-overlay-gradient-depth-overlay-depth-bot) 100%
53
+ ),
54
+ var(--v2-grey-200);
55
+ box-shadow: var(--v2-elevation-elements);
56
+ transition:
57
+ transform 90ms ease-out,
58
+ width 90ms ease-out,
59
+ border-radius 90ms,
60
+ background 90ms;
61
+ }
62
+
63
+ [data-slot="switch-label"] {
64
+ display: inline-flex;
65
+ align-items: center;
66
+ height: 16px;
67
+ user-select: none;
68
+ color: var(--v2-text-text-faint);
69
+ font-size: 11px;
70
+ font-style: normal;
71
+ font-weight: 440;
72
+ line-height: 16px;
73
+ letter-spacing: 0.05px;
74
+ font-variation-settings: "slnt" 0;
75
+ }
76
+
77
+ [data-slot="switch-error"] {
78
+ color: var(--v2-state-fg-danger);
79
+ font-size: 12px;
80
+ font-weight: var(--font-weight-regular);
81
+ line-height: var(--line-height-normal);
82
+ letter-spacing: var(--letter-spacing-normal);
83
+ }
84
+
85
+ [data-slot="switch-error"]:empty {
86
+ display: none;
87
+ }
88
+
89
+ &:hover:not([data-disabled], [data-readonly]) [data-slot="switch-control"] {
90
+ background:
91
+ linear-gradient(0deg, var(--v2-overlay-simple-overlay-hover), var(--v2-overlay-simple-overlay-hover)),
92
+ linear-gradient(180deg, var(--v2-alpha-light-0) 0%, var(--v2-alpha-light-20) 100%),
93
+ var(--v2-background-bg-layer-03);
94
+ }
95
+
96
+ &:hover:not([data-disabled], [data-readonly]) [data-slot="switch-thumb"] {
97
+ width: 13px;
98
+ border-radius: 3px;
99
+ }
100
+
101
+ &:not([data-readonly]) [data-slot="switch-input"]:focus-visible ~ [data-slot="switch-control"] {
102
+ outline: 2px solid var(--v2-border-border-focus);
103
+ outline-offset: 1px;
104
+ }
105
+
106
+ &[data-checked] [data-slot="switch-control"] {
107
+ background:
108
+ linear-gradient(180deg, var(--v2-alpha-light-0) 0%, var(--v2-alpha-light-10) 100%), var(--v2-background-bg-accent);
109
+ box-shadow: var(--v2-elevation-switch-on);
110
+ }
111
+
112
+ &[data-checked] [data-slot="switch-thumb"] {
113
+ transform: translateX(8px);
114
+ border-radius: 2px;
115
+ background:
116
+ linear-gradient(
117
+ 180deg,
118
+ var(--v2-overlay-gradient-depth-overlay-depth-top) 0%,
119
+ var(--v2-overlay-gradient-depth-overlay-depth-bot) 100%
120
+ ),
121
+ var(--v2-grey-300);
122
+ }
123
+
124
+ &[data-checked]:hover:not([data-disabled], [data-readonly]) [data-slot="switch-control"] {
125
+ background:
126
+ linear-gradient(
127
+ 0deg,
128
+ var(--v2-overlay-simple-overlay-contrast-hover),
129
+ var(--v2-overlay-simple-overlay-contrast-hover)
130
+ ),
131
+ linear-gradient(180deg, var(--v2-alpha-light-0) 0%, var(--v2-alpha-light-10) 100%), var(--v2-background-bg-accent);
132
+ }
133
+
134
+ &[data-checked]:hover:not([data-disabled], [data-readonly]) [data-slot="switch-thumb"] {
135
+ transform: translateX(7px);
136
+ }
137
+
138
+ &[data-disabled] {
139
+ cursor: not-allowed;
140
+ }
141
+
142
+ &[data-disabled] [data-slot="switch-control"] {
143
+ opacity: 0.5;
144
+ }
145
+
146
+ &[data-invalid] [data-slot="switch-control"] {
147
+ border-color: var(--v2-state-border-danger);
148
+ }
149
+
150
+ &[data-readonly] {
151
+ cursor: default;
152
+ pointer-events: none;
153
+ }
154
+ }
@@ -0,0 +1,28 @@
1
+ import { Switch as Kobalte } from "@kobalte/core/switch"
2
+ import { Show, splitProps } from "solid-js"
3
+ import type { ComponentProps, ParentProps } from "solid-js"
4
+ import "./switch-v2.css"
5
+
6
+ export interface SwitchProps extends ParentProps<ComponentProps<typeof Kobalte>> {
7
+ hideLabel?: boolean
8
+ }
9
+
10
+ export function Switch(props: SwitchProps) {
11
+ const [local, others] = splitProps(props, ["children", "class", "hideLabel"])
12
+ return (
13
+ <Kobalte {...others} class={local.class} data-component="switch">
14
+ <Kobalte.Input data-slot="switch-input" />
15
+ <Show when={local.children}>
16
+ {(label) => (
17
+ <Kobalte.Label data-slot="switch-label" classList={{ "sr-only": local.hideLabel }}>
18
+ {label()}
19
+ </Kobalte.Label>
20
+ )}
21
+ </Show>
22
+ <Kobalte.Control data-slot="switch-control">
23
+ <Kobalte.Thumb data-slot="switch-thumb" />
24
+ </Kobalte.Control>
25
+ <Kobalte.ErrorMessage data-slot="switch-error" />
26
+ </Kobalte>
27
+ )
28
+ }