@opencode-ai/ui 0.0.0-dev-202609060432 → 0.0.0-dev-19178

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 (298) hide show
  1. package/dist/actions/button/button.d.ts +10 -0
  2. package/dist/actions/icon-button/icon-button.d.ts +11 -0
  3. package/dist/actions/split-button/split-button.d.ts +5 -0
  4. package/dist/components/card.d.ts +1 -1
  5. package/dist/components/list.d.ts +1 -1
  6. package/dist/components/scroll-view.d.ts +3 -3
  7. package/dist/context/i18n.d.ts +10 -7
  8. package/dist/context/marked-base.d.ts +3 -0
  9. package/dist/context/marked-parser.d.ts +1 -2
  10. package/dist/{components → data-display/accordion}/accordion.d.ts +6 -6
  11. package/dist/{v2/components/avatar-v2.d.ts → data-display/avatar/avatar.d.ts} +1 -1
  12. package/dist/data-display/badge/badge.d.ts +7 -0
  13. package/dist/{components → data-display/diff-changes}/diff-changes.d.ts +2 -1
  14. package/dist/data-display/keybind/keybind.d.ts +7 -0
  15. package/dist/{v2/components/line-comment-v2.d.ts → data-display/line-comment/line-comment.d.ts} +9 -9
  16. package/dist/{v2/components/project-avatar-v2.d.ts → data-display/project-avatar/project-avatar.d.ts} +1 -1
  17. package/dist/feedback/loader/loader.d.ts +3 -0
  18. package/dist/{components → feedback/progress-circle}/progress-circle.d.ts +2 -0
  19. package/dist/feedback/toast/toast.d.ts +57 -0
  20. package/dist/{components → forms/checkbox}/checkbox.d.ts +2 -2
  21. package/dist/{v2/components/field-v2.d.ts → forms/field/field.d.ts} +4 -10
  22. package/dist/forms/radio/radio.d.ts +16 -0
  23. package/dist/{v2/components/select-v2.d.ts → forms/select/select.d.ts} +5 -6
  24. package/dist/{components → forms/switch}/switch.d.ts +4 -2
  25. package/dist/{v2/components/text-input-v2.d.ts → forms/text-input/text-input.d.ts} +3 -3
  26. package/dist/forms/textarea/textarea.d.ts +7 -0
  27. package/dist/hooks/use-filtered-list.d.ts +9 -0
  28. package/dist/i18n/ar.d.ts +0 -2
  29. package/dist/i18n/bg.d.ts +0 -2
  30. package/dist/i18n/br.d.ts +0 -2
  31. package/dist/i18n/bs.d.ts +0 -2
  32. package/dist/i18n/da.d.ts +0 -2
  33. package/dist/i18n/de.d.ts +0 -2
  34. package/dist/i18n/en.d.ts +242 -1
  35. package/dist/i18n/es.d.ts +0 -2
  36. package/dist/i18n/fr.d.ts +0 -2
  37. package/dist/i18n/he.d.ts +197 -0
  38. package/dist/i18n/ja.d.ts +0 -2
  39. package/dist/i18n/km.d.ts +0 -2
  40. package/dist/i18n/ko.d.ts +0 -2
  41. package/dist/i18n/lo.d.ts +0 -2
  42. package/dist/i18n/mk.d.ts +0 -2
  43. package/dist/i18n/mn.d.ts +0 -2
  44. package/dist/i18n/my.d.ts +0 -2
  45. package/dist/i18n/pl.d.ts +0 -2
  46. package/dist/i18n/ru.d.ts +0 -2
  47. package/dist/i18n/sr.d.ts +0 -2
  48. package/dist/i18n/tg.d.ts +0 -2
  49. package/dist/i18n/th.d.ts +0 -2
  50. package/dist/i18n/tr.d.ts +0 -2
  51. package/dist/i18n/zh.d.ts +0 -2
  52. package/dist/i18n/zht.d.ts +0 -2
  53. package/dist/{components/icon.d.ts → icons/icon/additional-icons.d.ts} +8 -8
  54. package/dist/{v2/components → icons/icon}/icon.d.ts +44 -1
  55. package/dist/layout/divider/divider.d.ts +5 -0
  56. package/dist/navigation/menu/menu.d.ts +59 -0
  57. package/dist/{v2/components/segmented-control-v2.d.ts → navigation/segmented-control/segmented-control.d.ts} +5 -5
  58. package/dist/{components → navigation/tabs}/tabs.d.ts +15 -8
  59. package/dist/{v2/components/dialog-v2.d.ts → overlays/dialog/dialog.d.ts} +1 -2
  60. package/dist/overlays/tooltip/tooltip.d.ts +15 -0
  61. package/dist/{components → typography/text-shimmer}/text-shimmer.d.ts +1 -0
  62. package/dist/typography/wordmark/wordmark.d.ts +5 -0
  63. package/package.json +141 -35
  64. package/src/{v2/components/button-v2.css → actions/button/button.css} +29 -0
  65. package/src/{components → actions/button}/button.tsx +19 -11
  66. package/src/{v2/components/icon-button-v2.css → actions/icon-button/icon-button.css} +27 -9
  67. package/src/actions/icon-button/icon-button.tsx +32 -0
  68. package/src/{v2/components/split-button-v2.css → actions/split-button/split-button.css} +2 -6
  69. package/src/{v2/components/split-button-v2.tsx → actions/split-button/split-button.tsx} +4 -4
  70. package/src/components/animated-number.css +29 -11
  71. package/src/components/animated-number.tsx +2 -2
  72. package/src/components/card.css +2 -23
  73. package/src/components/card.tsx +4 -4
  74. package/src/components/collapsible.tsx +2 -2
  75. package/src/components/dock-surface.css +2 -9
  76. package/src/components/image-preview.tsx +3 -2
  77. package/src/components/list.css +5 -5
  78. package/src/components/list.tsx +7 -5
  79. package/src/components/popover.tsx +3 -2
  80. package/src/components/scroll-view.tsx +5 -20
  81. package/src/components/sticky-accordion-header.tsx +1 -1
  82. package/src/components/text-field.tsx +12 -4
  83. package/src/context/dialog.tsx +1 -0
  84. package/src/context/i18n.tsx +17 -14
  85. package/src/context/marked-base.tsx +27 -0
  86. package/src/context/marked-parser.tsx +3 -13
  87. package/src/{components → data-display/accordion}/accordion.css +7 -33
  88. package/src/{components → data-display/accordion}/accordion.tsx +14 -14
  89. package/src/{v2/components/avatar-v2.tsx → data-display/avatar/avatar.tsx} +1 -1
  90. package/src/{v2/components/badge-v2.css → data-display/badge/badge.css} +19 -0
  91. package/src/{v2/components/badge-v2.tsx → data-display/badge/badge.tsx} +6 -4
  92. package/src/{components → data-display/diff-changes}/diff-changes.css +22 -19
  93. package/src/{v2/components/diff-changes-v2.tsx → data-display/diff-changes/diff-changes.tsx} +7 -2
  94. package/src/{v2/components/keybind-v2.css → data-display/keybind/keybind.css} +1 -1
  95. package/src/{v2/components/keybind-v2.tsx → data-display/keybind/keybind.tsx} +3 -3
  96. package/src/{v2/components/line-comment-v2.css → data-display/line-comment/line-comment.css} +4 -4
  97. package/src/{v2/components/line-comment-v2.tsx → data-display/line-comment/line-comment.tsx} +17 -15
  98. package/src/{v2/components/project-avatar-v2.tsx → data-display/project-avatar/project-avatar.tsx} +1 -1
  99. package/src/{v2/components/loader-v2.tsx → feedback/loader/loader.tsx} +2 -2
  100. package/src/feedback/progress-circle/progress-circle.css +28 -0
  101. package/src/feedback/progress-circle/progress-circle.tsx +64 -0
  102. package/src/{v2/components/toast-v2.tsx → feedback/toast/toast.tsx} +60 -58
  103. package/src/{components → forms/checkbox}/checkbox.css +1 -7
  104. package/src/{components → forms/checkbox}/checkbox.tsx +13 -13
  105. package/src/{v2/components/field-v2.css → forms/field/field.css} +1 -1
  106. package/src/{v2/components/field-v2.tsx → forms/field/field.tsx} +9 -11
  107. package/src/{v2/components/radio-v2.tsx → forms/radio/radio.tsx} +30 -20
  108. package/src/{v2/components/select-v2.css → forms/select/select.css} +2 -8
  109. package/src/{v2/components/select-v2.tsx → forms/select/select.tsx} +42 -32
  110. package/src/{v2/components/switch-v2.css → forms/switch/switch.css} +110 -0
  111. package/src/forms/switch/switch.tsx +34 -0
  112. package/src/{v2/components/text-input-v2.css → forms/text-input/text-input.css} +3 -3
  113. package/src/{v2/components/text-input-v2.tsx → forms/text-input/text-input.tsx} +4 -4
  114. package/src/{v2/components/textarea-v2.tsx → forms/textarea/textarea.tsx} +3 -3
  115. package/src/hooks/create-auto-scroll.tsx +20 -0
  116. package/src/i18n/am.ts +7 -9
  117. package/src/i18n/ar.ts +7 -9
  118. package/src/i18n/az.ts +7 -9
  119. package/src/i18n/bg.ts +7 -9
  120. package/src/i18n/bn.ts +7 -9
  121. package/src/i18n/br.ts +7 -9
  122. package/src/i18n/bs.ts +7 -9
  123. package/src/i18n/ca.ts +7 -9
  124. package/src/i18n/cs.ts +7 -9
  125. package/src/i18n/da.ts +7 -9
  126. package/src/i18n/de.ts +1 -3
  127. package/src/i18n/dv.ts +7 -9
  128. package/src/i18n/dz.ts +5 -7
  129. package/src/i18n/el.ts +7 -9
  130. package/src/i18n/en.ts +59 -12
  131. package/src/i18n/es.ts +6 -8
  132. package/src/i18n/et.ts +7 -9
  133. package/src/i18n/fa.ts +7 -9
  134. package/src/i18n/fi.ts +7 -9
  135. package/src/i18n/fo.ts +7 -9
  136. package/src/i18n/fr.ts +6 -8
  137. package/src/i18n/he.ts +199 -0
  138. package/src/i18n/hi.ts +7 -9
  139. package/src/i18n/hr.ts +7 -9
  140. package/src/i18n/hu.ts +7 -9
  141. package/src/i18n/hy.ts +7 -9
  142. package/src/i18n/id.ts +7 -9
  143. package/src/i18n/is.ts +7 -9
  144. package/src/i18n/it.ts +7 -9
  145. package/src/i18n/ja.ts +7 -9
  146. package/src/i18n/ka.ts +7 -9
  147. package/src/i18n/km.ts +7 -9
  148. package/src/i18n/ko.ts +7 -9
  149. package/src/i18n/lo.ts +7 -9
  150. package/src/i18n/lt.ts +7 -9
  151. package/src/i18n/lv.ts +7 -9
  152. package/src/i18n/mk.ts +7 -9
  153. package/src/i18n/mn.ts +7 -9
  154. package/src/i18n/ms.ts +7 -9
  155. package/src/i18n/my.ts +7 -9
  156. package/src/i18n/ne.ts +7 -9
  157. package/src/i18n/nl.ts +7 -9
  158. package/src/i18n/no.ts +7 -9
  159. package/src/i18n/pa.ts +7 -9
  160. package/src/i18n/pl.ts +7 -9
  161. package/src/i18n/ro.ts +7 -9
  162. package/src/i18n/ru.ts +7 -9
  163. package/src/i18n/si.ts +7 -9
  164. package/src/i18n/sk.ts +7 -9
  165. package/src/i18n/sl.ts +7 -9
  166. package/src/i18n/sq.ts +7 -9
  167. package/src/i18n/sr.ts +7 -9
  168. package/src/i18n/sv.ts +7 -9
  169. package/src/i18n/tg.ts +7 -9
  170. package/src/i18n/th.ts +7 -9
  171. package/src/i18n/tk.ts +7 -9
  172. package/src/i18n/tr.ts +7 -9
  173. package/src/i18n/uk.ts +7 -9
  174. package/src/i18n/ur.ts +7 -9
  175. package/src/i18n/uz.ts +7 -9
  176. package/src/i18n/vi.ts +7 -9
  177. package/src/i18n/zh.ts +7 -9
  178. package/src/i18n/zht.ts +7 -9
  179. package/src/{components/icon.tsx → icons/icon/additional-icons.ts} +8 -74
  180. package/src/icons/icon/icon.css +3 -0
  181. package/src/{v2/components → icons/icon}/icon.tsx +80 -12
  182. package/src/{v2/components/divider-v2.tsx → layout/divider/divider.tsx} +3 -3
  183. package/src/{v2/components/menu-v2.css → navigation/menu/menu.css} +124 -2
  184. package/src/{v2/components/menu-v2.tsx → navigation/menu/menu.tsx} +96 -32
  185. package/src/{v2/components/segmented-control-v2.css → navigation/segmented-control/segmented-control.css} +1 -1
  186. package/src/{v2/components/segmented-control-v2.tsx → navigation/segmented-control/segmented-control.tsx} +9 -8
  187. package/src/{v2/components/tabs-v2.css → navigation/tabs/tabs-current.css} +25 -10
  188. package/src/{components → navigation/tabs}/tabs.css +53 -232
  189. package/src/navigation/tabs/tabs.tsx +194 -0
  190. package/src/{v2/components/dialog-v2.css → overlays/dialog/dialog.css} +3 -0
  191. package/src/{v2/components/dialog-v2.tsx → overlays/dialog/dialog.tsx} +11 -13
  192. package/src/{v2/components/tooltip-v2.css → overlays/tooltip/tooltip.css} +26 -0
  193. package/src/{v2/components/tooltip-v2.tsx → overlays/tooltip/tooltip.tsx} +24 -17
  194. package/src/styles/base.css +5 -0
  195. package/src/styles/index.css +4 -20
  196. package/src/styles/tailwind/colors.css +2 -0
  197. package/src/styles/tailwind/index.css +18 -1
  198. package/src/styles/theme.css +2 -2
  199. package/src/{v2/styles → styles/tokens}/colors.css +8 -8
  200. package/src/{v2/styles → styles/tokens}/theme.css +23 -16
  201. package/src/theme/context.tsx +19 -11
  202. package/src/theme/themes/oc-2.json +50 -19
  203. package/src/theme/v2/default-primitives.ts +8 -8
  204. package/src/theme/v2/foreground.ts +1 -0
  205. package/src/theme/v2/mapping.ts +7 -1
  206. package/src/{components → typography/text-shimmer}/text-shimmer.css +2 -1
  207. package/src/{components → typography/text-shimmer}/text-shimmer.tsx +1 -0
  208. package/src/typography/wordmark/wordmark.tsx +39 -0
  209. package/dist/components/avatar.d.ts +0 -9
  210. package/dist/components/button.d.ts +0 -9
  211. package/dist/components/dialog.d.ts +0 -12
  212. package/dist/components/dropdown-menu.d.ts +0 -80
  213. package/dist/components/icon-button.d.ts +0 -10
  214. package/dist/components/keybind.d.ts +0 -6
  215. package/dist/components/radio-group.d.ts +0 -16
  216. package/dist/components/select.d.ts +0 -21
  217. package/dist/components/tag.d.ts +0 -5
  218. package/dist/components/toast.d.ts +0 -56
  219. package/dist/components/tooltip.d.ts +0 -17
  220. package/dist/v2/components/accordion-v2.d.ts +0 -26
  221. package/dist/v2/components/badge-v2.d.ts +0 -6
  222. package/dist/v2/components/button-v2.d.ts +0 -10
  223. package/dist/v2/components/checkbox-v2.d.ts +0 -10
  224. package/dist/v2/components/diff-changes-v2.d.ts +0 -11
  225. package/dist/v2/components/divider-v2.d.ts +0 -5
  226. package/dist/v2/components/icon-button-v2.d.ts +0 -11
  227. package/dist/v2/components/inline-input-v2.d.ts +0 -21
  228. package/dist/v2/components/keybind-v2.d.ts +0 -7
  229. package/dist/v2/components/loader-v2.d.ts +0 -3
  230. package/dist/v2/components/menu-v2.d.ts +0 -52
  231. package/dist/v2/components/progress-circle-v2.d.ts +0 -8
  232. package/dist/v2/components/radio-v2.d.ts +0 -16
  233. package/dist/v2/components/split-button-v2.d.ts +0 -5
  234. package/dist/v2/components/switch-v2.d.ts +0 -7
  235. package/dist/v2/components/tabs-v2.d.ts +0 -34
  236. package/dist/v2/components/text-shimmer-v2.d.ts +0 -9
  237. package/dist/v2/components/textarea-v2.d.ts +0 -7
  238. package/dist/v2/components/toast-v2.d.ts +0 -57
  239. package/dist/v2/components/tooltip-v2.d.ts +0 -13
  240. package/dist/v2/components/wordmark-v2.d.ts +0 -2
  241. package/src/components/avatar.css +0 -49
  242. package/src/components/avatar.tsx +0 -55
  243. package/src/components/button.css +0 -194
  244. package/src/components/dialog.css +0 -181
  245. package/src/components/dialog.tsx +0 -72
  246. package/src/components/diff-changes.tsx +0 -115
  247. package/src/components/dropdown-menu.css +0 -135
  248. package/src/components/dropdown-menu.tsx +0 -308
  249. package/src/components/icon-button.css +0 -181
  250. package/src/components/icon-button.tsx +0 -29
  251. package/src/components/icon.css +0 -39
  252. package/src/components/keybind.css +0 -18
  253. package/src/components/keybind.tsx +0 -20
  254. package/src/components/progress-circle.css +0 -16
  255. package/src/components/progress-circle.tsx +0 -64
  256. package/src/components/radio-group.css +0 -187
  257. package/src/components/radio-group.tsx +0 -83
  258. package/src/components/select.css +0 -201
  259. package/src/components/select.tsx +0 -174
  260. package/src/components/switch.css +0 -136
  261. package/src/components/switch.tsx +0 -29
  262. package/src/components/tabs.tsx +0 -126
  263. package/src/components/tag.css +0 -37
  264. package/src/components/tag.tsx +0 -22
  265. package/src/components/toast.css +0 -236
  266. package/src/components/toast.tsx +0 -185
  267. package/src/components/tooltip.css +0 -74
  268. package/src/components/tooltip.tsx +0 -163
  269. package/src/v2/components/accordion-v2.css +0 -139
  270. package/src/v2/components/accordion-v2.tsx +0 -86
  271. package/src/v2/components/button-v2.tsx +0 -35
  272. package/src/v2/components/checkbox-v2.css +0 -184
  273. package/src/v2/components/checkbox-v2.tsx +0 -65
  274. package/src/v2/components/diff-changes-v2.css +0 -26
  275. package/src/v2/components/icon-button-v2.tsx +0 -37
  276. package/src/v2/components/inline-input-v2.css +0 -225
  277. package/src/v2/components/inline-input-v2.tsx +0 -107
  278. package/src/v2/components/progress-circle-v2.css +0 -13
  279. package/src/v2/components/progress-circle-v2.tsx +0 -52
  280. package/src/v2/components/switch-v2.tsx +0 -28
  281. package/src/v2/components/tabs-v2.tsx +0 -149
  282. package/src/v2/components/text-shimmer-v2.css +0 -125
  283. package/src/v2/components/text-shimmer-v2.tsx +0 -63
  284. package/src/v2/components/wordmark-v2.tsx +0 -71
  285. /package/dist/{components → forms/inline-input}/inline-input.d.ts +0 -0
  286. /package/dist/{v2/components → navigation}/tab-state-indicator.d.ts +0 -0
  287. /package/src/{v2/components/avatar-v2.css → data-display/avatar/avatar.css} +0 -0
  288. /package/src/{v2/components/project-avatar-v2.css → data-display/project-avatar/project-avatar.css} +0 -0
  289. /package/src/{v2/components/loader-v2.css → feedback/loader/loader.css} +0 -0
  290. /package/src/{v2/components/toast-v2.css → feedback/toast/toast.css} +0 -0
  291. /package/src/{components → forms/inline-input}/inline-input.css +0 -0
  292. /package/src/{components → forms/inline-input}/inline-input.tsx +0 -0
  293. /package/src/{v2/components/radio-v2.css → forms/radio/radio.css} +0 -0
  294. /package/src/{v2/components/textarea-v2.css → forms/textarea/textarea.css} +0 -0
  295. /package/src/{v2/components/divider-v2.css → layout/divider/divider.css} +0 -0
  296. /package/src/{v2/components → navigation}/tab-state-indicator.tsx +0 -0
  297. /package/src/{v2/components/file-tree-v2.css → styles/file-tree.css} +0 -0
  298. /package/src/{v2/styles/tailwind.css → styles/tokens/index.css} +0 -0
@@ -1,5 +1,11 @@
1
1
  import { type ComponentProps } from "solid-js";
2
+ import { additionalIcons } from "./additional-icons";
3
+ import "./icon.css";
2
4
  declare const icons: {
5
+ flask: {
6
+ viewBox: string;
7
+ body: string;
8
+ };
3
9
  edit: {
4
10
  viewBox: string;
5
11
  body: string;
@@ -16,6 +22,10 @@ declare const icons: {
16
22
  viewBox: string;
17
23
  body: string;
18
24
  };
25
+ "branch-out": {
26
+ viewBox: string;
27
+ body: string;
28
+ };
19
29
  "grid-plus": {
20
30
  viewBox: string;
21
31
  body: string;
@@ -24,6 +34,14 @@ declare const icons: {
24
34
  viewBox: string;
25
35
  body: string;
26
36
  };
37
+ info: {
38
+ viewBox: string;
39
+ body: string;
40
+ };
41
+ "circle-exclamation": {
42
+ viewBox: string;
43
+ body: string;
44
+ };
27
45
  "sidebar-right": {
28
46
  viewBox: string;
29
47
  body: string;
@@ -120,6 +138,14 @@ declare const icons: {
120
138
  viewBox: string;
121
139
  body: string;
122
140
  };
141
+ "window-analytics": {
142
+ viewBox: string;
143
+ body: string;
144
+ };
145
+ trash: {
146
+ viewBox: string;
147
+ body: string;
148
+ };
123
149
  "outline-sliders": {
124
150
  viewBox: string;
125
151
  body: string;
@@ -128,10 +154,22 @@ declare const icons: {
128
154
  viewBox: string;
129
155
  body: string;
130
156
  };
157
+ "arrow-up-right": {
158
+ viewBox: string;
159
+ body: string;
160
+ };
131
161
  "outline-square-arrow": {
132
162
  viewBox: string;
133
163
  body: string;
134
164
  };
165
+ "outline-arrow-to-corner-top-right": {
166
+ viewBox: string;
167
+ body: string;
168
+ };
169
+ "outline-hexagonal-warning": {
170
+ viewBox: string;
171
+ body: string;
172
+ };
135
173
  "outline-share": {
136
174
  viewBox: string;
137
175
  body: string;
@@ -144,13 +182,18 @@ declare const icons: {
144
182
  viewBox: string;
145
183
  body: string;
146
184
  };
185
+ "fill-triangle-down": {
186
+ viewBox: string;
187
+ body: string;
188
+ };
147
189
  archive: {
148
190
  viewBox: string;
149
191
  body: string;
150
192
  };
151
193
  };
194
+ type IconName = keyof typeof icons | keyof typeof additionalIcons;
152
195
  export interface IconProps extends ComponentProps<"svg"> {
153
- name: keyof typeof icons | (string & {});
196
+ name: IconName | (string & {});
154
197
  size?: "small" | "normal" | "large";
155
198
  }
156
199
  export declare function Icon(props: IconProps): import("solid-js").JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { type ComponentProps } from "solid-js";
2
+ import "./divider.css";
3
+ export interface DividerProps extends ComponentProps<"div"> {
4
+ }
5
+ export declare function Divider(props: DividerProps): import("solid-js").JSX.Element;
@@ -0,0 +1,59 @@
1
+ import { DropdownMenu } from "@kobalte/core/dropdown-menu";
2
+ import { ContextMenu } from "@kobalte/core/context-menu";
3
+ import { type ComponentProps, type JSX, type ParentProps } from "solid-js";
4
+ import "./menu.css";
5
+ export type MenuAppearance = "standard" | "compact";
6
+ export interface MenuItemProps extends ComponentProps<typeof DropdownMenu.Item> {
7
+ shortcut?: JSX.Element | string;
8
+ badge?: JSX.Element | string;
9
+ }
10
+ declare function MenuItem(props: ParentProps<MenuItemProps>): JSX.Element;
11
+ export interface MenuCheckboxItemProps extends ComponentProps<typeof DropdownMenu.CheckboxItem> {
12
+ shortcut?: JSX.Element | string;
13
+ badge?: JSX.Element | string;
14
+ }
15
+ declare function MenuCheckboxItem(props: ParentProps<MenuCheckboxItemProps>): JSX.Element;
16
+ export interface MenuRadioItemProps extends ComponentProps<typeof DropdownMenu.RadioItem> {
17
+ shortcut?: JSX.Element | string;
18
+ badge?: JSX.Element | string;
19
+ }
20
+ declare function MenuRadioItem(props: ParentProps<MenuRadioItemProps>): JSX.Element;
21
+ export interface MenuSubTriggerProps extends ComponentProps<typeof DropdownMenu.SubTrigger> {
22
+ shortcut?: JSX.Element | string;
23
+ badge?: JSX.Element | string;
24
+ }
25
+ declare function MenuSubTrigger(props: ParentProps<MenuSubTriggerProps>): JSX.Element;
26
+ declare function MenuSubContent(props: ComponentProps<typeof DropdownMenu.SubContent>): JSX.Element;
27
+ declare function MenuGroupLabel(props: ComponentProps<typeof DropdownMenu.GroupLabel>): JSX.Element;
28
+ declare function MenuSeparator(props: ComponentProps<typeof DropdownMenu.Separator>): JSX.Element;
29
+ declare function MenuContent(props: ComponentProps<typeof DropdownMenu.Content>): JSX.Element;
30
+ export interface MenuProps extends ComponentProps<typeof DropdownMenu> {
31
+ appearance?: MenuAppearance;
32
+ }
33
+ declare function MenuRoot(props: MenuProps): JSX.Element;
34
+ export interface MenuContextProps extends ComponentProps<typeof ContextMenu> {
35
+ appearance?: MenuAppearance;
36
+ }
37
+ declare function MenuContextRoot(props: MenuContextProps): JSX.Element;
38
+ declare function MenuContextContent(props: ComponentProps<typeof ContextMenu.Content>): JSX.Element;
39
+ export declare const Menu: typeof MenuRoot & {
40
+ Trigger: typeof import("@kobalte/core/menu").MenuTrigger;
41
+ Portal: typeof import("@kobalte/core/context-menu").Portal;
42
+ Content: typeof MenuContent;
43
+ Item: typeof MenuItem;
44
+ CheckboxItem: typeof MenuCheckboxItem;
45
+ RadioGroup: typeof import("@kobalte/core/context-menu").RadioGroup;
46
+ RadioItem: typeof MenuRadioItem;
47
+ Group: typeof import("@kobalte/core/context-menu").Group;
48
+ GroupLabel: typeof MenuGroupLabel;
49
+ Separator: typeof MenuSeparator;
50
+ Sub: typeof import("@kobalte/core/context-menu").Sub;
51
+ SubTrigger: typeof MenuSubTrigger;
52
+ SubContent: typeof MenuSubContent;
53
+ Context: typeof MenuContextRoot & {
54
+ Trigger: typeof import("@kobalte/core/context-menu").Trigger;
55
+ Portal: typeof import("@kobalte/core/context-menu").Portal;
56
+ Content: typeof MenuContextContent;
57
+ };
58
+ };
59
+ export {};
@@ -1,8 +1,8 @@
1
1
  import { type JSX, type ParentProps } from "solid-js";
2
2
  import type { ComponentProps } from "solid-js";
3
- import "./segmented-control-v2.css";
3
+ import "./segmented-control.css";
4
4
  type OnChange = (value: string | null) => void;
5
- export type SegmentedControlV2Props = Omit<ComponentProps<"div">, "onChange"> & ParentProps<{
5
+ export type SegmentedControlProps = Omit<ComponentProps<"div">, "onChange"> & ParentProps<{
6
6
  /** Selected value when controlled (including `null` when empty). Omit key for uncontrolled. */
7
7
  value?: string | null;
8
8
  /** Initial value when uncontrolled. */
@@ -12,10 +12,10 @@ export type SegmentedControlV2Props = Omit<ComponentProps<"div">, "onChange"> &
12
12
  allowDeselect?: boolean;
13
13
  disabled?: boolean;
14
14
  }>;
15
- export declare function SegmentedControlV2(props: SegmentedControlV2Props): JSX.Element;
16
- export type SegmentedControlItemV2Props = Omit<ComponentProps<"button">, "type" | "children"> & ParentProps<{
15
+ export declare function SegmentedControl(props: SegmentedControlProps): JSX.Element;
16
+ export type SegmentedControlItemProps = Omit<ComponentProps<"button">, "type" | "children"> & ParentProps<{
17
17
  value: string;
18
18
  children: JSX.Element;
19
19
  }>;
20
- export declare function SegmentedControlItemV2(props: SegmentedControlItemV2Props): JSX.Element;
20
+ export declare function SegmentedControlItem(props: SegmentedControlItemProps): JSX.Element;
21
21
  export {};
@@ -1,29 +1,36 @@
1
- import { Tabs as Kobalte } from "@kobalte/core/tabs";
1
+ import { Content, List, Root, Trigger } from "@kobalte/core/tabs";
2
2
  import { type JSX } from "solid-js";
3
- import type { ComponentProps, ParentProps, Component } from "solid-js";
4
- export interface TabsProps extends ComponentProps<typeof Kobalte> {
5
- variant?: "normal" | "alt" | "pill" | "settings";
3
+ import type { Component, ComponentProps, ParentProps } from "solid-js";
4
+ import "./tabs-current.css";
5
+ export type TabsVariant = "panel" | "underline" | "surface" | "line" | "pill" | "settings";
6
+ export interface TabsProps extends ComponentProps<typeof Root> {
7
+ variant?: TabsVariant;
6
8
  orientation?: "horizontal" | "vertical";
7
9
  }
8
- export interface TabsListProps extends ComponentProps<typeof Kobalte.List> {
10
+ export interface TabsListProps extends ComponentProps<typeof List> {
9
11
  }
10
- export interface TabsTriggerProps extends ComponentProps<typeof Kobalte.Trigger> {
12
+ export interface TabsTriggerProps extends ComponentProps<typeof Trigger> {
11
13
  classes?: {
12
14
  button?: string;
13
15
  };
14
- hideCloseButton?: boolean;
15
16
  closeButton?: JSX.Element;
17
+ hideCloseButton?: boolean;
16
18
  onMiddleClick?: () => void;
19
+ subtext?: JSX.Element | string;
20
+ }
21
+ export interface TabsCloseButtonProps extends ComponentProps<"button"> {
17
22
  }
18
- export interface TabsContentProps extends ComponentProps<typeof Kobalte.Content> {
23
+ export interface TabsContentProps extends ComponentProps<typeof Content> {
19
24
  }
20
25
  declare function TabsRoot(props: TabsProps): JSX.Element;
21
26
  declare function TabsList(props: TabsListProps): JSX.Element;
22
27
  declare function TabsTrigger(props: ParentProps<TabsTriggerProps>): JSX.Element;
28
+ declare function TabsCloseButton(props: TabsCloseButtonProps): JSX.Element;
23
29
  declare function TabsContent(props: ParentProps<TabsContentProps>): JSX.Element;
24
30
  export declare const Tabs: typeof TabsRoot & {
25
31
  List: typeof TabsList;
26
32
  Trigger: typeof TabsTrigger;
33
+ CloseButton: typeof TabsCloseButton;
27
34
  Content: typeof TabsContent;
28
35
  SectionTitle: Component<{
29
36
  children?: JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import { type ComponentProps, type JSXElement, type ParentProps } from "solid-js";
2
- import "./dialog-v2.css";
2
+ import "./dialog.css";
3
3
  export interface DialogProps extends ParentProps {
4
4
  size?: "normal" | "large" | "x-large";
5
5
  variant?: "default" | "settings";
@@ -24,4 +24,3 @@ export declare function DialogTitle(props: ParentProps): import("solid-js").JSX.
24
24
  export declare function DialogTitleGroup(props: DialogTitleGroupProps): import("solid-js").JSX.Element;
25
25
  export declare function DialogHeader(props: DialogHeaderProps): import("solid-js").JSX.Element;
26
26
  export declare function Dialog(props: DialogProps): import("solid-js").JSX.Element;
27
- export declare const DialogV2: typeof Dialog;
@@ -0,0 +1,15 @@
1
+ import { Root } from "@kobalte/core/tooltip";
2
+ import { type JSX } from "solid-js";
3
+ import type { ComponentProps } from "solid-js";
4
+ import "./tooltip.css";
5
+ export interface TooltipProps extends ComponentProps<typeof Root> {
6
+ value: JSX.Element;
7
+ appearance?: "standard" | "compact";
8
+ class?: string;
9
+ contentClass?: string;
10
+ contentStyle?: JSX.CSSProperties;
11
+ inactive?: boolean;
12
+ forceOpen?: boolean;
13
+ triggerTabIndex?: number;
14
+ }
15
+ export declare function Tooltip(props: TooltipProps): JSX.Element;
@@ -1,4 +1,5 @@
1
1
  import { type ValidComponent } from "solid-js";
2
+ import "./text-shimmer.css";
2
3
  export declare const TextShimmer: <T extends ValidComponent = "span">(props: {
3
4
  text: string;
4
5
  class?: string;
@@ -0,0 +1,5 @@
1
+ import { type ComponentProps } from "solid-js";
2
+ export declare function Wordmark(props: Pick<ComponentProps<"svg">, "class"> & {
3
+ fade?: boolean;
4
+ muted?: boolean;
5
+ }): import("solid-js").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencode-ai/ui",
3
- "version": "0.0.0-dev-202609060432",
3
+ "version": "0.0.0-dev-19178",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -34,6 +34,133 @@
34
34
  ],
35
35
  "exports": {
36
36
  "./package.json": "./package.json",
37
+ "./accordion": {
38
+ "types": "./dist/data-display/accordion/accordion.d.ts",
39
+ "import": "./src/data-display/accordion/accordion.tsx"
40
+ },
41
+ "./avatar": {
42
+ "types": "./dist/data-display/avatar/avatar.d.ts",
43
+ "import": "./src/data-display/avatar/avatar.tsx"
44
+ },
45
+ "./badge": {
46
+ "types": "./dist/data-display/badge/badge.d.ts",
47
+ "import": "./src/data-display/badge/badge.tsx"
48
+ },
49
+ "./button": {
50
+ "types": "./dist/actions/button/button.d.ts",
51
+ "import": "./src/actions/button/button.tsx"
52
+ },
53
+ "./button.css": "./src/actions/button/button.css",
54
+ "./checkbox": {
55
+ "types": "./dist/forms/checkbox/checkbox.d.ts",
56
+ "import": "./src/forms/checkbox/checkbox.tsx"
57
+ },
58
+ "./dialog": {
59
+ "types": "./dist/overlays/dialog/dialog.d.ts",
60
+ "import": "./src/overlays/dialog/dialog.tsx"
61
+ },
62
+ "./diff-changes": {
63
+ "types": "./dist/data-display/diff-changes/diff-changes.d.ts",
64
+ "import": "./src/data-display/diff-changes/diff-changes.tsx"
65
+ },
66
+ "./divider": {
67
+ "types": "./dist/layout/divider/divider.d.ts",
68
+ "import": "./src/layout/divider/divider.tsx"
69
+ },
70
+ "./field": {
71
+ "types": "./dist/forms/field/field.d.ts",
72
+ "import": "./src/forms/field/field.tsx"
73
+ },
74
+ "./file-tree.css": "./src/styles/file-tree.css",
75
+ "./icon": {
76
+ "types": "./dist/icons/icon/icon.d.ts",
77
+ "import": "./src/icons/icon/icon.tsx"
78
+ },
79
+ "./icon-button": {
80
+ "types": "./dist/actions/icon-button/icon-button.d.ts",
81
+ "import": "./src/actions/icon-button/icon-button.tsx"
82
+ },
83
+ "./inline-input": {
84
+ "types": "./dist/forms/inline-input/inline-input.d.ts",
85
+ "import": "./src/forms/inline-input/inline-input.tsx"
86
+ },
87
+ "./keybind": {
88
+ "types": "./dist/data-display/keybind/keybind.d.ts",
89
+ "import": "./src/data-display/keybind/keybind.tsx"
90
+ },
91
+ "./line-comment": {
92
+ "types": "./dist/data-display/line-comment/line-comment.d.ts",
93
+ "import": "./src/data-display/line-comment/line-comment.tsx"
94
+ },
95
+ "./loader": {
96
+ "types": "./dist/feedback/loader/loader.d.ts",
97
+ "import": "./src/feedback/loader/loader.tsx"
98
+ },
99
+ "./menu": {
100
+ "types": "./dist/navigation/menu/menu.d.ts",
101
+ "import": "./src/navigation/menu/menu.tsx"
102
+ },
103
+ "./progress-circle": {
104
+ "types": "./dist/feedback/progress-circle/progress-circle.d.ts",
105
+ "import": "./src/feedback/progress-circle/progress-circle.tsx"
106
+ },
107
+ "./project-avatar": {
108
+ "types": "./dist/data-display/project-avatar/project-avatar.d.ts",
109
+ "import": "./src/data-display/project-avatar/project-avatar.tsx"
110
+ },
111
+ "./radio": {
112
+ "types": "./dist/forms/radio/radio.d.ts",
113
+ "import": "./src/forms/radio/radio.tsx"
114
+ },
115
+ "./segmented-control": {
116
+ "types": "./dist/navigation/segmented-control/segmented-control.d.ts",
117
+ "import": "./src/navigation/segmented-control/segmented-control.tsx"
118
+ },
119
+ "./select": {
120
+ "types": "./dist/forms/select/select.d.ts",
121
+ "import": "./src/forms/select/select.tsx"
122
+ },
123
+ "./split-button": {
124
+ "types": "./dist/actions/split-button/split-button.d.ts",
125
+ "import": "./src/actions/split-button/split-button.tsx"
126
+ },
127
+ "./switch": {
128
+ "types": "./dist/forms/switch/switch.d.ts",
129
+ "import": "./src/forms/switch/switch.tsx"
130
+ },
131
+ "./tab-state-indicator": {
132
+ "types": "./dist/navigation/tab-state-indicator.d.ts",
133
+ "import": "./src/navigation/tab-state-indicator.tsx"
134
+ },
135
+ "./tabs": {
136
+ "types": "./dist/navigation/tabs/tabs.d.ts",
137
+ "import": "./src/navigation/tabs/tabs.tsx"
138
+ },
139
+ "./text-input": {
140
+ "types": "./dist/forms/text-input/text-input.d.ts",
141
+ "import": "./src/forms/text-input/text-input.tsx"
142
+ },
143
+ "./text-input.css": "./src/forms/text-input/text-input.css",
144
+ "./textarea": {
145
+ "types": "./dist/forms/textarea/textarea.d.ts",
146
+ "import": "./src/forms/textarea/textarea.tsx"
147
+ },
148
+ "./text-shimmer": {
149
+ "types": "./dist/typography/text-shimmer/text-shimmer.d.ts",
150
+ "import": "./src/typography/text-shimmer/text-shimmer.tsx"
151
+ },
152
+ "./toast": {
153
+ "types": "./dist/feedback/toast/toast.d.ts",
154
+ "import": "./src/feedback/toast/toast.tsx"
155
+ },
156
+ "./tooltip": {
157
+ "types": "./dist/overlays/tooltip/tooltip.d.ts",
158
+ "import": "./src/overlays/tooltip/tooltip.tsx"
159
+ },
160
+ "./wordmark": {
161
+ "types": "./dist/typography/wordmark/wordmark.d.ts",
162
+ "import": "./src/typography/wordmark/wordmark.tsx"
163
+ },
37
164
  "./*": {
38
165
  "types": "./dist/components/*.d.ts",
39
166
  "import": "./src/components/*.tsx"
@@ -63,6 +190,7 @@
63
190
  "import": "./src/storybook/fixtures.ts"
64
191
  },
65
192
  "./styles": "./src/styles/index.css",
193
+ "./styles/tokens": "./src/styles/tokens/index.css",
66
194
  "./styles/tailwind": "./src/styles/tailwind/index.css",
67
195
  "./theme": {
68
196
  "types": "./dist/theme/index.d.ts",
@@ -89,13 +217,7 @@
89
217
  "import": "./src/components/app-icons/types.ts"
90
218
  },
91
219
  "./fonts/*": "./src/assets/fonts/*",
92
- "./audio/*": "./src/assets/audio/*",
93
- "./v2/*.css": "./src/v2/components/*.css",
94
- "./v2/*": {
95
- "types": "./dist/v2/components/*.d.ts",
96
- "import": "./src/v2/components/*.tsx"
97
- },
98
- "./v2/styles/*": "./src/v2/styles/*"
220
+ "./audio/*": "./src/assets/audio/*"
99
221
  },
100
222
  "scripts": {
101
223
  "build": "rm -rf dist && tsc -p tsconfig.build.json",
@@ -107,49 +229,33 @@
107
229
  },
108
230
  "devDependencies": {
109
231
  "@solidjs/meta": "0.29.4",
110
- "@tailwindcss/vite": "4.1.11",
111
232
  "@tsconfig/node22": "22.0.2",
112
- "@types/bun": "1.3.13",
113
- "@types/katex": "0.16.7",
114
- "@types/luxon": "3.7.1",
233
+ "@types/bun": "1.4.0",
115
234
  "@typescript/native-preview": "7.0.0-dev.20251207.1",
116
- "solid-js": "1.9.10",
235
+ "solid-js": "1.9.15",
117
236
  "tailwindcss": "4.1.11",
118
- "tw-animate-css": "1.4.0",
119
237
  "typescript": "5.8.2",
120
- "vite": "7.1.4",
238
+ "vite": "7.3.6",
121
239
  "vite-plugin-icons-spritesheet": "3.0.1",
122
240
  "vite-plugin-solid": "2.11.10"
123
241
  },
124
242
  "dependencies": {
125
- "@kobalte/core": "0.13.11",
243
+ "@kobalte/core": "0.13.13",
126
244
  "@pierre/diffs": "1.2.10",
127
- "@shikijs/transformers": "3.9.2",
128
- "@solid-primitives/bounds": "0.1.3",
129
- "@solid-primitives/event-listener": "2.4.5",
130
- "@solid-primitives/media": "2.3.3",
131
- "@solid-primitives/resize-observer": "2.1.3",
132
- "@shikijs/stream": "4.2.0",
133
- "diff": "8.0.2",
134
- "dompurify": "3.3.1",
245
+ "@solid-primitives/event-listener": "2.4.6",
246
+ "@solid-primitives/resize-observer": "2.2.0",
135
247
  "fuzzysort": "3.1.0",
136
- "katex": "0.16.27",
137
- "luxon": "3.6.1",
138
- "marked": "18.0.7",
248
+ "katex": "0.16.47",
249
+ "marked": "18.0.11",
139
250
  "marked-shiki": "1.2.1",
140
- "morphdom": "2.7.8",
141
251
  "motion": "12.34.5",
142
- "motion-dom": "12.34.3",
143
- "motion-utils": "12.29.2",
144
252
  "remeda": "2.26.0",
145
- "remend": "1.3.0",
146
- "shiki": "4.2.0",
253
+ "shiki": "4.4.3",
147
254
  "solid-list": "0.3.0",
148
- "solid-sonner": "0.3.1",
149
- "strip-ansi": "7.1.2"
255
+ "solid-sonner": "0.3.1"
150
256
  },
151
257
  "peerDependencies": {
152
258
  "@solidjs/meta": "^0.29.0",
153
- "solid-js": "^1.9.0"
259
+ "solid-js": "^1.9.8"
154
260
  }
155
261
  }
@@ -260,3 +260,32 @@
260
260
  opacity: 0.5;
261
261
  cursor: not-allowed;
262
262
  }
263
+
264
+ /* Ghost faint */
265
+ [data-component="button-v2"][data-variant="ghost-faint"] {
266
+ background-color: transparent;
267
+ color: var(--v2-text-text-faint);
268
+ }
269
+
270
+ [data-component="button-v2"][data-variant="ghost-faint"] [data-slot="icon-svg"] {
271
+ color: var(--v2-icon-icon-faint);
272
+ }
273
+
274
+ [data-component="button-v2"][data-variant="ghost-faint"]:is(:hover, [data-state="hover"]):not(:disabled):not(
275
+ [data-expanded]
276
+ ) {
277
+ background-color: var(--v2-overlay-simple-overlay-hover);
278
+ }
279
+
280
+ [data-component="button-v2"][data-variant="ghost-faint"]:is(:active, [data-state="pressed"]):not(:disabled) {
281
+ background-color: var(--v2-overlay-simple-overlay-pressed);
282
+ }
283
+
284
+ [data-component="button-v2"][data-variant="ghost-faint"]:where([data-expanded]):not(:disabled) {
285
+ background-color: var(--v2-overlay-simple-overlay-pressed);
286
+ }
287
+
288
+ [data-component="button-v2"][data-variant="ghost-faint"]:is(:disabled, [data-state="disabled"]) {
289
+ opacity: 0.5;
290
+ cursor: not-allowed;
291
+ }
@@ -1,33 +1,41 @@
1
- import { Button as Kobalte } from "@kobalte/core/button"
1
+ import { Root } from "@kobalte/core/button"
2
2
  import { type ComponentProps, Show, splitProps } from "solid-js"
3
- import { Icon, IconProps } from "./icon"
3
+ import { Icon, type IconProps } from "@opencode-ai/ui/icon"
4
+ import "./button.css"
4
5
 
5
6
  export interface ButtonProps
6
- extends ComponentProps<typeof Kobalte>,
7
+ extends ComponentProps<typeof Root>,
7
8
  Pick<ComponentProps<"button">, "class" | "classList" | "children"> {
8
9
  size?: "small" | "normal" | "large"
9
- variant?: "primary" | "secondary" | "ghost"
10
+ variant?:
11
+ | "neutral"
12
+ | "danger"
13
+ | "warning"
14
+ | "outline"
15
+ | "contrast"
16
+ | "ghost"
17
+ | "ghost-muted"
18
+ | "ghost-faint"
19
+ | "loading"
10
20
  icon?: IconProps["name"]
11
21
  }
12
22
 
13
23
  export function Button(props: ButtonProps) {
14
24
  const [split, rest] = splitProps(props, ["variant", "size", "icon", "class", "classList"])
15
25
  return (
16
- <Kobalte
26
+ <Root
17
27
  {...rest}
18
- data-component="button"
28
+ data-component="button-v2"
19
29
  data-size={split.size || "normal"}
20
- data-variant={split.variant || "secondary"}
30
+ data-variant={split.variant || "neutral"}
21
31
  data-icon={split.icon}
22
32
  classList={{
23
33
  ...split.classList,
24
34
  [split.class ?? ""]: !!split.class,
25
35
  }}
26
36
  >
27
- <Show when={split.icon}>
28
- <Icon name={split.icon!} size="small" />
29
- </Show>
37
+ <Show when={split.icon}>{(icon) => <Icon name={icon()} />}</Show>
30
38
  {props.children}
31
- </Kobalte>
39
+ </Root>
32
40
  )
33
41
  }
@@ -71,23 +71,37 @@
71
71
 
72
72
  /* Contrast */
73
73
  [data-component="icon-button-v2"][data-variant="contrast"] {
74
+ --icon-button-contrast-highlight: var(--v2-alpha-light-20);
75
+ --icon-button-contrast-hover: var(--v2-overlay-simple-overlay-contrast-hover);
76
+
74
77
  background-image:
75
- linear-gradient(180deg, var(--v2-alpha-light-20) 0%, var(--v2-alpha-light-0) 100%),
76
- linear-gradient(90deg, var(--v2-background-bg-contrast) 0%, var(--v2-background-bg-contrast) 100%);
78
+ linear-gradient(180deg, var(--icon-button-contrast-highlight) 0%, var(--v2-alpha-light-0) 100%),
79
+ linear-gradient(
80
+ 90deg,
81
+ var(--v2-background-bg-icon-button-contrast) 0%,
82
+ var(--v2-background-bg-icon-button-contrast) 100%
83
+ );
77
84
  color: var(--v2-text-text-contrast);
78
85
  text-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.3);
79
86
  box-shadow: var(--v2-elevation-button-contrast);
80
87
  }
81
88
 
89
+ [data-color-scheme="dark"] [data-component="icon-button-v2"][data-variant="contrast"] {
90
+ --icon-button-contrast-highlight: var(--v2-alpha-light-60);
91
+ --icon-button-contrast-hover: var(--v2-alpha-dark-8);
92
+
93
+ color: var(--v2-icon-icon-inverse);
94
+ }
95
+
82
96
  [data-component="icon-button-v2"][data-variant="contrast"]:is(:hover, [data-state="hover"]):not(:disabled) {
83
97
  background-image:
98
+ linear-gradient(90deg, var(--icon-button-contrast-hover) 0%, var(--icon-button-contrast-hover) 100%),
99
+ linear-gradient(180deg, var(--icon-button-contrast-highlight) 0%, var(--v2-alpha-light-0) 100%),
84
100
  linear-gradient(
85
101
  90deg,
86
- var(--v2-overlay-simple-overlay-contrast-hover) 0%,
87
- var(--v2-overlay-simple-overlay-contrast-hover) 100%
88
- ),
89
- linear-gradient(180deg, var(--v2-alpha-light-20) 0%, var(--v2-alpha-light-0) 100%),
90
- linear-gradient(90deg, var(--v2-background-bg-contrast) 0%, var(--v2-background-bg-contrast) 100%);
102
+ var(--v2-background-bg-icon-button-contrast) 0%,
103
+ var(--v2-background-bg-icon-button-contrast) 100%
104
+ );
91
105
  }
92
106
 
93
107
  [data-component="icon-button-v2"][data-variant="contrast"]:is(:active, [data-state="pressed"]):not(:disabled) {
@@ -97,8 +111,12 @@
97
111
  var(--v2-overlay-simple-overlay-contrast-pressed) 0%,
98
112
  var(--v2-overlay-simple-overlay-contrast-pressed) 100%
99
113
  ),
100
- linear-gradient(180deg, var(--v2-alpha-light-20) 0%, var(--v2-alpha-light-0) 100%),
101
- linear-gradient(90deg, var(--v2-background-bg-contrast) 0%, var(--v2-background-bg-contrast) 100%);
114
+ linear-gradient(180deg, var(--icon-button-contrast-highlight) 0%, var(--v2-alpha-light-0) 100%),
115
+ linear-gradient(
116
+ 90deg,
117
+ var(--v2-background-bg-icon-button-contrast) 0%,
118
+ var(--v2-background-bg-icon-button-contrast) 100%
119
+ );
102
120
  }
103
121
 
104
122
  [data-component="icon-button-v2"][data-variant="contrast"]:is(:disabled, [data-state="disabled"]) {