@opencode-ai/ui 0.0.0-dev-202608201855 → 0.0.0-dev-17751

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 (285) 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/{components → data-display/accordion}/accordion.d.ts +6 -6
  9. package/dist/{v2/components/avatar-v2.d.ts → data-display/avatar/avatar.d.ts} +1 -1
  10. package/dist/data-display/badge/badge.d.ts +7 -0
  11. package/dist/{components → data-display/diff-changes}/diff-changes.d.ts +2 -1
  12. package/dist/data-display/keybind/keybind.d.ts +7 -0
  13. package/dist/{v2/components/line-comment-v2.d.ts → data-display/line-comment/line-comment.d.ts} +9 -9
  14. package/dist/{v2/components/project-avatar-v2.d.ts → data-display/project-avatar/project-avatar.d.ts} +1 -1
  15. package/dist/feedback/loader/loader.d.ts +3 -0
  16. package/dist/{components → feedback/progress-circle}/progress-circle.d.ts +2 -0
  17. package/dist/feedback/toast/toast.d.ts +57 -0
  18. package/dist/{components → forms/checkbox}/checkbox.d.ts +2 -2
  19. package/dist/{v2/components/field-v2.d.ts → forms/field/field.d.ts} +4 -10
  20. package/dist/forms/radio/radio.d.ts +16 -0
  21. package/dist/{v2/components/select-v2.d.ts → forms/select/select.d.ts} +4 -6
  22. package/dist/{components → forms/switch}/switch.d.ts +4 -2
  23. package/dist/{v2/components/text-input-v2.d.ts → forms/text-input/text-input.d.ts} +3 -3
  24. package/dist/forms/textarea/textarea.d.ts +7 -0
  25. package/dist/i18n/ar.d.ts +0 -2
  26. package/dist/i18n/bg.d.ts +0 -2
  27. package/dist/i18n/br.d.ts +0 -2
  28. package/dist/i18n/bs.d.ts +0 -2
  29. package/dist/i18n/da.d.ts +0 -2
  30. package/dist/i18n/de.d.ts +0 -2
  31. package/dist/i18n/en.d.ts +209 -1
  32. package/dist/i18n/es.d.ts +0 -2
  33. package/dist/i18n/fr.d.ts +0 -2
  34. package/dist/i18n/he.d.ts +197 -0
  35. package/dist/i18n/ja.d.ts +0 -2
  36. package/dist/i18n/km.d.ts +0 -2
  37. package/dist/i18n/ko.d.ts +0 -2
  38. package/dist/i18n/lo.d.ts +0 -2
  39. package/dist/i18n/mk.d.ts +0 -2
  40. package/dist/i18n/mn.d.ts +0 -2
  41. package/dist/i18n/my.d.ts +0 -2
  42. package/dist/i18n/pl.d.ts +0 -2
  43. package/dist/i18n/ru.d.ts +0 -2
  44. package/dist/i18n/sr.d.ts +0 -2
  45. package/dist/i18n/tg.d.ts +0 -2
  46. package/dist/i18n/th.d.ts +0 -2
  47. package/dist/i18n/tr.d.ts +0 -2
  48. package/dist/i18n/zh.d.ts +0 -2
  49. package/dist/i18n/zht.d.ts +0 -2
  50. package/dist/{components/icon.d.ts → icons/icon/additional-icons.d.ts} +8 -8
  51. package/dist/{v2/components → icons/icon}/icon.d.ts +16 -1
  52. package/dist/layout/divider/divider.d.ts +5 -0
  53. package/dist/navigation/menu/menu.d.ts +59 -0
  54. package/dist/{v2/components/segmented-control-v2.d.ts → navigation/segmented-control/segmented-control.d.ts} +5 -5
  55. package/dist/{components → navigation/tabs}/tabs.d.ts +15 -8
  56. package/dist/{v2/components/dialog-v2.d.ts → overlays/dialog/dialog.d.ts} +1 -2
  57. package/dist/overlays/tooltip/tooltip.d.ts +14 -0
  58. package/dist/{components → typography/text-shimmer}/text-shimmer.d.ts +1 -0
  59. package/dist/typography/wordmark/wordmark.d.ts +2 -0
  60. package/package.json +131 -13
  61. package/src/{v2/components/button-v2.tsx → actions/button/button.tsx} +8 -8
  62. package/src/actions/icon-button/icon-button.tsx +32 -0
  63. package/src/{v2/components/split-button-v2.css → actions/split-button/split-button.css} +1 -6
  64. package/src/{v2/components/split-button-v2.tsx → actions/split-button/split-button.tsx} +4 -4
  65. package/src/components/animated-number.css +29 -11
  66. package/src/components/animated-number.tsx +2 -2
  67. package/src/components/card.css +2 -23
  68. package/src/components/card.tsx +4 -4
  69. package/src/components/collapsible.tsx +1 -1
  70. package/src/components/image-preview.tsx +3 -2
  71. package/src/components/list.css +5 -5
  72. package/src/components/list.tsx +7 -5
  73. package/src/components/popover.tsx +3 -2
  74. package/src/components/provider-icon.tsx +1 -1
  75. package/src/components/scroll-view.tsx +5 -20
  76. package/src/components/sticky-accordion-header.tsx +1 -1
  77. package/src/components/text-field.tsx +12 -4
  78. package/src/context/i18n.tsx +17 -14
  79. package/src/{components → data-display/accordion}/accordion.css +1 -26
  80. package/src/{components → data-display/accordion}/accordion.tsx +14 -14
  81. package/src/{v2/components/avatar-v2.tsx → data-display/avatar/avatar.tsx} +1 -1
  82. package/src/{v2/components/badge-v2.css → data-display/badge/badge.css} +19 -0
  83. package/src/{v2/components/badge-v2.tsx → data-display/badge/badge.tsx} +6 -4
  84. package/src/{components → data-display/diff-changes}/diff-changes.css +22 -19
  85. package/src/{v2/components/diff-changes-v2.tsx → data-display/diff-changes/diff-changes.tsx} +7 -2
  86. package/src/{v2/components/keybind-v2.css → data-display/keybind/keybind.css} +1 -1
  87. package/src/{v2/components/keybind-v2.tsx → data-display/keybind/keybind.tsx} +3 -3
  88. package/src/{v2/components/line-comment-v2.tsx → data-display/line-comment/line-comment.tsx} +17 -15
  89. package/src/{v2/components/project-avatar-v2.tsx → data-display/project-avatar/project-avatar.tsx} +1 -1
  90. package/src/{v2/components/loader-v2.tsx → feedback/loader/loader.tsx} +2 -2
  91. package/src/feedback/progress-circle/progress-circle.css +28 -0
  92. package/src/feedback/progress-circle/progress-circle.tsx +64 -0
  93. package/src/{v2/components/toast-v2.tsx → feedback/toast/toast.tsx} +60 -58
  94. package/src/{components → forms/checkbox}/checkbox.css +1 -7
  95. package/src/{components → forms/checkbox}/checkbox.tsx +13 -13
  96. package/src/{v2/components/field-v2.tsx → forms/field/field.tsx} +9 -11
  97. package/src/{v2/components/radio-v2.tsx → forms/radio/radio.tsx} +30 -20
  98. package/src/{v2/components/select-v2.css → forms/select/select.css} +2 -8
  99. package/src/{v2/components/select-v2.tsx → forms/select/select.tsx} +38 -32
  100. package/src/{v2/components/switch-v2.css → forms/switch/switch.css} +110 -0
  101. package/src/forms/switch/switch.tsx +34 -0
  102. package/src/{v2/components/text-input-v2.tsx → forms/text-input/text-input.tsx} +4 -4
  103. package/src/{v2/components/textarea-v2.tsx → forms/textarea/textarea.tsx} +3 -3
  104. package/src/hooks/create-auto-scroll.tsx +20 -0
  105. package/src/i18n/am.ts +0 -2
  106. package/src/i18n/ar.ts +0 -2
  107. package/src/i18n/az.ts +0 -2
  108. package/src/i18n/bg.ts +0 -2
  109. package/src/i18n/bn.ts +0 -2
  110. package/src/i18n/br.ts +0 -2
  111. package/src/i18n/bs.ts +0 -2
  112. package/src/i18n/ca.ts +0 -2
  113. package/src/i18n/cs.ts +0 -2
  114. package/src/i18n/da.ts +0 -2
  115. package/src/i18n/de.ts +0 -2
  116. package/src/i18n/dv.ts +0 -2
  117. package/src/i18n/dz.ts +0 -2
  118. package/src/i18n/el.ts +0 -2
  119. package/src/i18n/en.ts +18 -4
  120. package/src/i18n/es.ts +0 -2
  121. package/src/i18n/et.ts +0 -2
  122. package/src/i18n/fa.ts +0 -2
  123. package/src/i18n/fi.ts +0 -2
  124. package/src/i18n/fo.ts +0 -2
  125. package/src/i18n/fr.ts +0 -2
  126. package/src/i18n/he.ts +199 -0
  127. package/src/i18n/hi.ts +0 -2
  128. package/src/i18n/hr.ts +0 -2
  129. package/src/i18n/hu.ts +0 -2
  130. package/src/i18n/hy.ts +0 -2
  131. package/src/i18n/id.ts +0 -2
  132. package/src/i18n/is.ts +0 -2
  133. package/src/i18n/it.ts +0 -2
  134. package/src/i18n/ja.ts +0 -2
  135. package/src/i18n/ka.ts +0 -2
  136. package/src/i18n/km.ts +0 -2
  137. package/src/i18n/ko.ts +0 -2
  138. package/src/i18n/lo.ts +0 -2
  139. package/src/i18n/lt.ts +0 -2
  140. package/src/i18n/lv.ts +0 -2
  141. package/src/i18n/mk.ts +0 -2
  142. package/src/i18n/mn.ts +0 -2
  143. package/src/i18n/ms.ts +0 -2
  144. package/src/i18n/my.ts +0 -2
  145. package/src/i18n/ne.ts +0 -2
  146. package/src/i18n/nl.ts +0 -2
  147. package/src/i18n/no.ts +0 -2
  148. package/src/i18n/pa.ts +0 -2
  149. package/src/i18n/pl.ts +0 -2
  150. package/src/i18n/ro.ts +0 -2
  151. package/src/i18n/ru.ts +0 -2
  152. package/src/i18n/si.ts +0 -2
  153. package/src/i18n/sk.ts +0 -2
  154. package/src/i18n/sl.ts +0 -2
  155. package/src/i18n/sq.ts +0 -2
  156. package/src/i18n/sr.ts +0 -2
  157. package/src/i18n/sv.ts +0 -2
  158. package/src/i18n/tg.ts +0 -2
  159. package/src/i18n/th.ts +0 -2
  160. package/src/i18n/tk.ts +0 -2
  161. package/src/i18n/tr.ts +0 -2
  162. package/src/i18n/uk.ts +0 -2
  163. package/src/i18n/ur.ts +0 -2
  164. package/src/i18n/uz.ts +0 -2
  165. package/src/i18n/vi.ts +0 -2
  166. package/src/i18n/zh.ts +0 -2
  167. package/src/i18n/zht.ts +0 -2
  168. package/src/{components/icon.tsx → icons/icon/additional-icons.ts} +8 -74
  169. package/src/icons/icon/icon.css +3 -0
  170. package/src/{v2/components → icons/icon}/icon.tsx +42 -9
  171. package/src/{v2/components/divider-v2.tsx → layout/divider/divider.tsx} +3 -3
  172. package/src/{v2/components/menu-v2.css → navigation/menu/menu.css} +121 -0
  173. package/src/{v2/components/menu-v2.tsx → navigation/menu/menu.tsx} +96 -32
  174. package/src/{v2/components/segmented-control-v2.tsx → navigation/segmented-control/segmented-control.tsx} +9 -8
  175. package/src/{v2/components/tabs-v2.css → navigation/tabs/tabs-current.css} +24 -9
  176. package/src/{components → navigation/tabs}/tabs.css +39 -229
  177. package/src/navigation/tabs/tabs.tsx +194 -0
  178. package/src/{v2/components/dialog-v2.css → overlays/dialog/dialog.css} +3 -0
  179. package/src/{v2/components/dialog-v2.tsx → overlays/dialog/dialog.tsx} +11 -13
  180. package/src/{v2/components/tooltip-v2.css → overlays/tooltip/tooltip.css} +26 -0
  181. package/src/{v2/components/tooltip-v2.tsx → overlays/tooltip/tooltip.tsx} +18 -14
  182. package/src/styles/index.css +4 -20
  183. package/src/styles/tailwind/index.css +15 -1
  184. package/src/{v2/styles → styles/tokens}/theme.css +0 -12
  185. package/src/theme/context.tsx +19 -11
  186. package/src/theme/themes/oc-2.json +1 -1
  187. package/src/{components → typography/text-shimmer}/text-shimmer.css +2 -1
  188. package/src/{components → typography/text-shimmer}/text-shimmer.tsx +1 -0
  189. package/src/{v2/components/wordmark-v2.tsx → typography/wordmark/wordmark.tsx} +1 -1
  190. package/dist/components/avatar.d.ts +0 -9
  191. package/dist/components/button.d.ts +0 -9
  192. package/dist/components/dialog.d.ts +0 -12
  193. package/dist/components/dropdown-menu.d.ts +0 -80
  194. package/dist/components/icon-button.d.ts +0 -10
  195. package/dist/components/keybind.d.ts +0 -6
  196. package/dist/components/radio-group.d.ts +0 -16
  197. package/dist/components/select.d.ts +0 -21
  198. package/dist/components/tag.d.ts +0 -5
  199. package/dist/components/toast.d.ts +0 -56
  200. package/dist/components/tooltip.d.ts +0 -17
  201. package/dist/v2/components/accordion-v2.d.ts +0 -26
  202. package/dist/v2/components/badge-v2.d.ts +0 -6
  203. package/dist/v2/components/button-v2.d.ts +0 -10
  204. package/dist/v2/components/checkbox-v2.d.ts +0 -10
  205. package/dist/v2/components/diff-changes-v2.d.ts +0 -11
  206. package/dist/v2/components/divider-v2.d.ts +0 -5
  207. package/dist/v2/components/icon-button-v2.d.ts +0 -11
  208. package/dist/v2/components/inline-input-v2.d.ts +0 -21
  209. package/dist/v2/components/keybind-v2.d.ts +0 -7
  210. package/dist/v2/components/loader-v2.d.ts +0 -3
  211. package/dist/v2/components/menu-v2.d.ts +0 -52
  212. package/dist/v2/components/progress-circle-v2.d.ts +0 -8
  213. package/dist/v2/components/radio-v2.d.ts +0 -16
  214. package/dist/v2/components/split-button-v2.d.ts +0 -5
  215. package/dist/v2/components/switch-v2.d.ts +0 -7
  216. package/dist/v2/components/tabs-v2.d.ts +0 -34
  217. package/dist/v2/components/text-shimmer-v2.d.ts +0 -9
  218. package/dist/v2/components/textarea-v2.d.ts +0 -7
  219. package/dist/v2/components/toast-v2.d.ts +0 -57
  220. package/dist/v2/components/tooltip-v2.d.ts +0 -13
  221. package/dist/v2/components/wordmark-v2.d.ts +0 -2
  222. package/src/components/avatar.css +0 -49
  223. package/src/components/avatar.tsx +0 -55
  224. package/src/components/button.css +0 -194
  225. package/src/components/button.tsx +0 -33
  226. package/src/components/dialog.css +0 -181
  227. package/src/components/dialog.tsx +0 -72
  228. package/src/components/diff-changes.tsx +0 -115
  229. package/src/components/dropdown-menu.css +0 -135
  230. package/src/components/dropdown-menu.tsx +0 -308
  231. package/src/components/icon-button.css +0 -181
  232. package/src/components/icon-button.tsx +0 -29
  233. package/src/components/icon.css +0 -39
  234. package/src/components/keybind.css +0 -18
  235. package/src/components/keybind.tsx +0 -20
  236. package/src/components/progress-circle.css +0 -16
  237. package/src/components/progress-circle.tsx +0 -64
  238. package/src/components/radio-group.css +0 -187
  239. package/src/components/radio-group.tsx +0 -83
  240. package/src/components/select.css +0 -201
  241. package/src/components/select.tsx +0 -174
  242. package/src/components/switch.css +0 -136
  243. package/src/components/switch.tsx +0 -29
  244. package/src/components/tabs.tsx +0 -126
  245. package/src/components/tag.css +0 -37
  246. package/src/components/tag.tsx +0 -22
  247. package/src/components/toast.css +0 -236
  248. package/src/components/toast.tsx +0 -185
  249. package/src/components/tooltip.css +0 -74
  250. package/src/components/tooltip.tsx +0 -163
  251. package/src/v2/components/accordion-v2.css +0 -139
  252. package/src/v2/components/accordion-v2.tsx +0 -86
  253. package/src/v2/components/checkbox-v2.css +0 -184
  254. package/src/v2/components/checkbox-v2.tsx +0 -65
  255. package/src/v2/components/diff-changes-v2.css +0 -26
  256. package/src/v2/components/icon-button-v2.tsx +0 -37
  257. package/src/v2/components/inline-input-v2.css +0 -225
  258. package/src/v2/components/inline-input-v2.tsx +0 -107
  259. package/src/v2/components/progress-circle-v2.css +0 -13
  260. package/src/v2/components/progress-circle-v2.tsx +0 -52
  261. package/src/v2/components/switch-v2.tsx +0 -28
  262. package/src/v2/components/tabs-v2.tsx +0 -149
  263. package/src/v2/components/text-shimmer-v2.css +0 -125
  264. package/src/v2/components/text-shimmer-v2.tsx +0 -63
  265. /package/dist/{components → forms/inline-input}/inline-input.d.ts +0 -0
  266. /package/dist/{v2/components → navigation}/tab-state-indicator.d.ts +0 -0
  267. /package/src/{v2/components/button-v2.css → actions/button/button.css} +0 -0
  268. /package/src/{v2/components/icon-button-v2.css → actions/icon-button/icon-button.css} +0 -0
  269. /package/src/{v2/components/avatar-v2.css → data-display/avatar/avatar.css} +0 -0
  270. /package/src/{v2/components/line-comment-v2.css → data-display/line-comment/line-comment.css} +0 -0
  271. /package/src/{v2/components/project-avatar-v2.css → data-display/project-avatar/project-avatar.css} +0 -0
  272. /package/src/{v2/components/loader-v2.css → feedback/loader/loader.css} +0 -0
  273. /package/src/{v2/components/toast-v2.css → feedback/toast/toast.css} +0 -0
  274. /package/src/{v2/components/field-v2.css → forms/field/field.css} +0 -0
  275. /package/src/{components → forms/inline-input}/inline-input.css +0 -0
  276. /package/src/{components → forms/inline-input}/inline-input.tsx +0 -0
  277. /package/src/{v2/components/radio-v2.css → forms/radio/radio.css} +0 -0
  278. /package/src/{v2/components/text-input-v2.css → forms/text-input/text-input.css} +0 -0
  279. /package/src/{v2/components/textarea-v2.css → forms/textarea/textarea.css} +0 -0
  280. /package/src/{v2/components/divider-v2.css → layout/divider/divider.css} +0 -0
  281. /package/src/{v2/components/segmented-control-v2.css → navigation/segmented-control/segmented-control.css} +0 -0
  282. /package/src/{v2/components → navigation}/tab-state-indicator.tsx +0 -0
  283. /package/src/{v2/components/file-tree-v2.css → styles/file-tree.css} +0 -0
  284. /package/src/{v2/styles → styles/tokens}/colors.css +0 -0
  285. /package/src/{v2/styles/tailwind.css → styles/tokens/index.css} +0 -0
@@ -1,225 +0,0 @@
1
- [data-component="inline-input-v2"] {
2
- box-sizing: border-box;
3
- display: flex;
4
- flex-direction: row;
5
- align-items: stretch;
6
- padding: 0;
7
- width: 280px;
8
- height: 28px;
9
- border: 0;
10
- border-radius: 6px;
11
- outline: 1px solid transparent;
12
- outline-offset: 0;
13
- background:
14
- linear-gradient(180deg, var(--v2-alpha-light-2) 0%, var(--v2-alpha-light-0) 100%), var(--v2-background-bg-base);
15
- box-shadow: var(--v2-elevation-button-neutral);
16
- flex: none;
17
- align-self: stretch;
18
- overflow: hidden;
19
- transition:
20
- background 85ms ease-out,
21
- outline-color 85ms ease-out,
22
- box-shadow 85ms ease-out;
23
- }
24
-
25
- [data-component="inline-input-v2"][data-appearance="large"] {
26
- height: 32px;
27
- }
28
-
29
- [data-component="inline-input-v2"]:where(:hover):not([data-disabled], [data-invalid]):not(:focus-within) {
30
- background:
31
- linear-gradient(0deg, var(--v2-overlay-simple-overlay-hover), var(--v2-overlay-simple-overlay-hover)),
32
- linear-gradient(180deg, var(--v2-alpha-light-2) 0%, var(--v2-alpha-light-0) 100%), var(--v2-background-bg-base);
33
- }
34
-
35
- [data-component="inline-input-v2"]:where(:hover):not([data-disabled], [data-invalid]):not(:focus-within)
36
- [data-slot="inline-input-v2-prefix"] {
37
- background: transparent;
38
- }
39
-
40
- [data-component="inline-input-v2"]:where(:focus-within):not([data-disabled], [data-invalid]) {
41
- outline-color: var(--v2-border-border-focus);
42
- box-shadow: none;
43
- }
44
-
45
- [data-component="inline-input-v2"]:where([data-invalid]):not([data-disabled]) {
46
- outline-color: var(--v2-state-fg-danger);
47
- box-shadow: none;
48
- }
49
-
50
- [data-component="inline-input-v2"]:where([data-disabled]) {
51
- opacity: 0.5;
52
- cursor: not-allowed;
53
- }
54
-
55
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-prefix"] {
56
- box-sizing: border-box;
57
- display: flex;
58
- flex-direction: column;
59
- justify-content: center;
60
- align-items: flex-start;
61
- flex: none;
62
- align-self: stretch;
63
- width: fit-content;
64
- min-width: 0;
65
- max-width: 100%;
66
- padding: 4px 8px;
67
- gap: 4px;
68
- background: var(--v2-background-bg-layer-01);
69
- border-radius: 4px 0 0 4px;
70
- cursor: default;
71
- transition: background 85ms ease-out;
72
- }
73
-
74
- [data-component="inline-input-v2"]:where([data-disabled]) [data-slot="inline-input-v2-prefix"] {
75
- cursor: not-allowed;
76
- }
77
-
78
- [data-component="inline-input-v2"][data-label-width] [data-slot="inline-input-v2-prefix"] {
79
- width: var(--inline-input-v2-label-width);
80
- min-width: var(--inline-input-v2-label-width);
81
- max-width: var(--inline-input-v2-label-width);
82
- }
83
-
84
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-prefix-text"] {
85
- display: block;
86
- width: 100%;
87
- overflow: hidden;
88
- text-overflow: ellipsis;
89
- white-space: nowrap;
90
- font-style: normal;
91
- font-weight: 440;
92
- font-size: 13px;
93
- line-height: 1;
94
- letter-spacing: -0.04px;
95
- color: var(--v2-text-text-muted);
96
- font-variation-settings: "slnt" 0;
97
- user-select: none;
98
- }
99
-
100
- [data-component="inline-input-v2"][data-numeric] [data-slot="inline-input-v2-prefix-text"] {
101
- font-variant-numeric: tabular-nums;
102
- }
103
-
104
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-divider"] {
105
- flex: none;
106
- align-self: stretch;
107
- width: 0.5px;
108
- min-width: 0.5px;
109
- background: var(--v2-border-border-base);
110
- }
111
-
112
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-field"] {
113
- display: flex;
114
- flex-direction: row;
115
- align-items: center;
116
- align-self: stretch;
117
- flex: 1 1 auto;
118
- min-width: 0;
119
- padding: 4px 8px;
120
- gap: 8px;
121
- }
122
-
123
- [data-component="inline-input-v2"][data-appearance="large"] [data-slot="inline-input-v2-field"] {
124
- padding-top: 6px;
125
- padding-bottom: 6px;
126
- }
127
-
128
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-value"] {
129
- display: flex;
130
- flex-direction: row;
131
- align-items: center;
132
- flex: 1 1 auto;
133
- min-width: 0;
134
- min-height: 0;
135
- }
136
-
137
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-input"] {
138
- display: block;
139
- width: 100%;
140
- min-width: 0;
141
- height: 100%;
142
- padding: 0;
143
- margin: 0;
144
- border: 0;
145
- background: transparent;
146
- outline: none;
147
- font-style: normal;
148
- font-weight: 440;
149
- font-size: 13px;
150
- line-height: 1;
151
- letter-spacing: -0.04px;
152
- color: var(--v2-text-text-base);
153
- font-variation-settings: "slnt" 0;
154
- }
155
-
156
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-input"]::placeholder {
157
- color: var(--v2-text-text-faint);
158
- user-select: none;
159
- }
160
-
161
- [data-component="inline-input-v2"][data-numeric] [data-slot="inline-input-v2-input"] {
162
- font-variant-numeric: tabular-nums;
163
- }
164
-
165
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-icon-button"] {
166
- display: flex;
167
- flex-direction: row;
168
- justify-content: center;
169
- align-items: center;
170
- flex: none;
171
- width: 20px;
172
- height: 20px;
173
- padding: 2px;
174
- gap: 3px;
175
- border: 0;
176
- border-radius: 4px;
177
- background: transparent;
178
- color: var(--v2-icon-icon-muted);
179
- cursor: pointer;
180
- outline: none;
181
- }
182
-
183
- [data-component="inline-input-v2"]
184
- [data-slot="inline-input-v2-icon-button"]:is(:hover, [data-state="hover"]):not(:disabled) {
185
- background-color: var(--v2-overlay-simple-overlay-hover);
186
- }
187
-
188
- [data-component="inline-input-v2"]
189
- [data-slot="inline-input-v2-icon-button"]:is(:active, [data-state="pressed"]):not(:disabled) {
190
- background-color: var(--v2-overlay-simple-overlay-pressed);
191
- }
192
-
193
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-icon-button"]:focus {
194
- outline: none;
195
- }
196
-
197
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-icon-button"]:focus-visible {
198
- outline: 2px solid var(--v2-border-border-focus);
199
- outline-offset: 1px;
200
- }
201
-
202
- [data-component="inline-input-v2"]:where([data-disabled]) [data-slot="inline-input-v2-icon-button"] {
203
- cursor: not-allowed;
204
- pointer-events: none;
205
- }
206
-
207
- [data-component="inline-input-v2"] [data-slot="inline-input-v2-icon-button"] [data-slot="icon-svg"] {
208
- display: block;
209
- flex: none;
210
- color: currentColor;
211
- }
212
-
213
- [data-component="inline-input-v2"][data-invalid]:not([data-disabled]) [data-slot="inline-input-v2-prefix-text"] {
214
- color: var(--v2-text-text-muted);
215
- }
216
-
217
- [data-component="inline-input-v2"][data-invalid]:not([data-disabled]) [data-slot="inline-input-v2-input"] {
218
- color: var(--v2-state-fg-danger);
219
- caret-color: var(--v2-state-fg-danger);
220
- }
221
-
222
- [data-component="inline-input-v2"][data-invalid]:not([data-disabled]) [data-slot="inline-input-v2-input"]::placeholder {
223
- color: var(--v2-state-fg-danger);
224
- opacity: 1;
225
- }
@@ -1,107 +0,0 @@
1
- import { type ComponentProps, type JSX, Show, splitProps } from "solid-js"
2
- import { Icon } from "./icon"
3
- import { useI18n } from "../../context/i18n"
4
- import "./inline-input-v2.css"
5
-
6
- export interface InlineInputV2Props extends Omit<ComponentProps<"input">, "type" | "prefix"> {
7
- /** Inline label shown before the field (prefix segment). */
8
- prefix: JSX.Element
9
- /** Fixed width for the prefix segment (px number or CSS length). Omit for fit-content. */
10
- labelWidth?: number | string
11
- /** Show the trailing copy action. */
12
- showCopyButton?: boolean
13
- /** Accessible label for the copy button. */
14
- copyLabel?: string
15
- onCopyClick?: (event: MouseEvent) => void
16
- /** Apply tabular numerals to the prefix and field value. */
17
- numeric?: boolean
18
- /** Error styling for the field and value text. */
19
- invalid?: boolean
20
- /** `base` is 28px tall; `large` is 32px tall. */
21
- appearance?: "base" | "large"
22
- type?: ComponentProps<"input">["type"]
23
- }
24
-
25
- export function InlineInputV2(props: InlineInputV2Props) {
26
- const i18n = useI18n()
27
- const [local, inputProps] = splitProps(props, [
28
- "class",
29
- "classList",
30
- "prefix",
31
- "labelWidth",
32
- "showCopyButton",
33
- "copyLabel",
34
- "onCopyClick",
35
- "numeric",
36
- "invalid",
37
- "appearance",
38
- "disabled",
39
- "style",
40
- ])
41
-
42
- let input: HTMLInputElement | undefined
43
-
44
- return (
45
- <div
46
- data-component="inline-input-v2"
47
- data-disabled={local.disabled ? "" : undefined}
48
- data-invalid={local.invalid ? "" : undefined}
49
- data-numeric={local.numeric ? "" : undefined}
50
- data-appearance={local.appearance ?? "base"}
51
- data-label-width={local.labelWidth != null ? "" : undefined}
52
- classList={{
53
- ...local.classList,
54
- [local.class ?? ""]: !!local.class,
55
- }}
56
- style={{
57
- ...(typeof local.style === "object" && local.style != null ? local.style : {}),
58
- ...(local.labelWidth != null
59
- ? {
60
- "--inline-input-v2-label-width":
61
- typeof local.labelWidth === "number" ? `${local.labelWidth}px` : local.labelWidth,
62
- }
63
- : {}),
64
- }}
65
- >
66
- <div
67
- data-slot="inline-input-v2-prefix"
68
- onMouseDown={(event) => {
69
- if (local.disabled || event.button !== 0) return
70
- // Keep focus on the input without using a native <label>, so external labels still work.
71
- event.preventDefault()
72
- input?.focus()
73
- }}
74
- >
75
- <span data-slot="inline-input-v2-prefix-text">{local.prefix}</span>
76
- </div>
77
- <div data-slot="inline-input-v2-divider" aria-hidden="true" />
78
- <div data-slot="inline-input-v2-field">
79
- <div data-slot="inline-input-v2-value">
80
- <input
81
- {...inputProps}
82
- ref={(el) => {
83
- input = el
84
- const ref = inputProps.ref
85
- if (typeof ref === "function") ref(el)
86
- }}
87
- type={inputProps.type ?? "text"}
88
- disabled={local.disabled}
89
- aria-invalid={local.invalid ? true : undefined}
90
- data-slot="inline-input-v2-input"
91
- />
92
- </div>
93
- <Show when={local.showCopyButton}>
94
- <button
95
- type="button"
96
- data-slot="inline-input-v2-icon-button"
97
- aria-label={local.copyLabel ?? i18n.t("ui.message.copy")}
98
- disabled={local.disabled}
99
- onClick={local.onCopyClick}
100
- >
101
- <Icon name="copy" />
102
- </button>
103
- </Show>
104
- </div>
105
- </div>
106
- )
107
- }
@@ -1,13 +0,0 @@
1
- [data-component="progress-circle-v2"] {
2
- display: block;
3
- transform: rotate(-90deg);
4
- }
5
-
6
- [data-component="progress-circle-v2"] [data-slot="progress-circle-v2-background"] {
7
- stroke: var(--v2-background-bg-layer-04);
8
- }
9
-
10
- [data-component="progress-circle-v2"] [data-slot="progress-circle-v2-progress"] {
11
- stroke: var(--v2-icon-icon-base);
12
- transition: stroke-dashoffset 0.35s cubic-bezier(0.65, 0, 0.35, 1);
13
- }
@@ -1,52 +0,0 @@
1
- import { type ComponentProps, createMemo, splitProps } from "solid-js"
2
- import "./progress-circle-v2.css"
3
-
4
- export interface ProgressCircleV2Props extends Pick<ComponentProps<"svg">, "class" | "classList"> {
5
- percentage: number
6
- size?: number
7
- strokeWidth?: number
8
- }
9
-
10
- export function ProgressCircleV2(props: ProgressCircleV2Props) {
11
- const [split, rest] = splitProps(props, ["percentage", "size", "strokeWidth", "class", "classList"])
12
-
13
- const size = () => split.size ?? 14
14
- const strokeWidth = () => split.strokeWidth ?? 1.5
15
- const viewBoxSize = 14
16
- const center = viewBoxSize / 2
17
- const radius = () => center - strokeWidth() / 2
18
- const circumference = createMemo(() => 2 * Math.PI * radius())
19
- const offset = createMemo(() => circumference() * (1 - Math.max(0, Math.min(100, split.percentage || 0)) / 100))
20
-
21
- return (
22
- <svg
23
- {...rest}
24
- width={size()}
25
- height={size()}
26
- viewBox={`0 0 ${viewBoxSize} ${viewBoxSize}`}
27
- fill="none"
28
- data-component="progress-circle-v2"
29
- classList={{
30
- ...split.classList,
31
- [split.class ?? ""]: !!split.class,
32
- }}
33
- >
34
- <circle
35
- cx={center}
36
- cy={center}
37
- r={radius()}
38
- data-slot="progress-circle-v2-background"
39
- stroke-width={strokeWidth()}
40
- />
41
- <circle
42
- cx={center}
43
- cy={center}
44
- r={radius()}
45
- data-slot="progress-circle-v2-progress"
46
- stroke-width={strokeWidth()}
47
- stroke-dasharray={circumference().toString()}
48
- stroke-dashoffset={offset()}
49
- />
50
- </svg>
51
- )
52
- }
@@ -1,28 +0,0 @@
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
- }
@@ -1,149 +0,0 @@
1
- import { Tabs as Kobalte } from "@kobalte/core/tabs"
2
- import { Show, splitProps, type JSX } from "solid-js"
3
- import type { ComponentProps, ParentProps, Component } from "solid-js"
4
- import { useI18n } from "../../context/i18n"
5
- import "./tabs-v2.css"
6
-
7
- export interface TabsV2Props extends ComponentProps<typeof Kobalte> {
8
- variant?: "normal" | "pill" | "settings"
9
- orientation?: "horizontal" | "vertical"
10
- }
11
- export interface TabsV2ListProps extends ComponentProps<typeof Kobalte.List> {}
12
- export interface TabsV2TriggerProps extends ComponentProps<typeof Kobalte.Trigger> {
13
- onMiddleClick?: () => void
14
- /** Optional subtext shown beside the primary content (muted style) */
15
- subtext?: JSX.Element | string
16
- }
17
- export interface TabsV2CloseButtonProps extends ComponentProps<"div"> {}
18
- export interface TabsV2ContentProps extends ComponentProps<typeof Kobalte.Content> {}
19
-
20
- function TabsV2Root(props: TabsV2Props) {
21
- const [split, rest] = splitProps(props, ["class", "classList", "variant", "orientation"])
22
- return (
23
- <Kobalte
24
- {...rest}
25
- orientation={split.orientation}
26
- data-component="tabs-v2"
27
- data-variant={split.variant || "normal"}
28
- data-orientation={split.orientation || "horizontal"}
29
- classList={{
30
- ...split.classList,
31
- [split.class ?? ""]: !!split.class,
32
- }}
33
- />
34
- )
35
- }
36
-
37
- function TabsV2List(props: TabsV2ListProps) {
38
- const [split, rest] = splitProps(props, ["class", "classList"])
39
- return (
40
- <Kobalte.List
41
- {...rest}
42
- data-slot="tabs-v2-list"
43
- classList={{
44
- ...split.classList,
45
- [split.class ?? ""]: !!split.class,
46
- }}
47
- />
48
- )
49
- }
50
-
51
- function TabsV2Trigger(props: ParentProps<TabsV2TriggerProps>) {
52
- const [split, rest] = splitProps(props, ["class", "classList", "children", "onMiddleClick", "subtext"])
53
- return (
54
- <div
55
- data-slot="tabs-v2-trigger-wrapper"
56
- data-value={props.value}
57
- classList={{
58
- ...split.classList,
59
- [split.class ?? ""]: !!split.class,
60
- }}
61
- onMouseDown={(e) => {
62
- if (e.button === 1 && split.onMiddleClick) {
63
- e.preventDefault()
64
- }
65
- }}
66
- onAuxClick={(e) => {
67
- if (e.button === 1 && split.onMiddleClick) {
68
- e.preventDefault()
69
- split.onMiddleClick()
70
- }
71
- }}
72
- >
73
- <Kobalte.Trigger {...rest} data-slot="tabs-v2-trigger" data-value={props.value}>
74
- <span class="inline-flex items-center gap-2" data-slot="tabs-v2-trigger-content">
75
- {split.children}
76
- <Show when={split.subtext}>
77
- {(subtext) => (
78
- <span data-slot="tabs-v2-subtext" class="ms-2 text-xs text-text-weak">
79
- {subtext()}
80
- </span>
81
- )}
82
- </Show>
83
- </span>
84
- </Kobalte.Trigger>
85
- </div>
86
- )
87
- }
88
-
89
- function TabsV2CloseButton(props: TabsV2CloseButtonProps) {
90
- const i18n = useI18n()
91
- const [split, rest] = splitProps(props, ["class", "classList", "onClick"])
92
- return (
93
- <div
94
- role="button"
95
- tabindex={0}
96
- aria-label={i18n.t("ui.tabs.close")}
97
- data-slot="tabs-v2-close-button"
98
- {...rest}
99
- classList={{
100
- [split.class ?? ""]: !!split.class,
101
- ...split.classList,
102
- }}
103
- onClick={(e) => {
104
- e.preventDefault()
105
- e.stopPropagation()
106
- if (typeof split.onClick === "function") {
107
- split.onClick(e)
108
- }
109
- }}
110
- onMouseDown={(e) => {
111
- e.preventDefault()
112
- e.stopPropagation()
113
- }}
114
- >
115
- <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
116
- <path d="M10.8889 3.11108L3.11108 10.8889" stroke="currentColor" stroke-linejoin="round" />
117
- <path d="M3.11108 3.11108L10.8889 10.8889" stroke="currentColor" stroke-linejoin="round" />
118
- </svg>
119
- </div>
120
- )
121
- }
122
-
123
- function TabsV2Content(props: ParentProps<TabsV2ContentProps>) {
124
- const [split, rest] = splitProps(props, ["class", "classList", "children"])
125
- return (
126
- <Kobalte.Content
127
- {...rest}
128
- data-slot="tabs-v2-content"
129
- classList={{
130
- ...split.classList,
131
- [split.class ?? ""]: !!split.class,
132
- }}
133
- >
134
- {split.children}
135
- </Kobalte.Content>
136
- )
137
- }
138
-
139
- const TabsV2SectionTitle: Component<ParentProps> = (props) => {
140
- return <div data-slot="tabs-v2-section-title">{props.children}</div>
141
- }
142
-
143
- export const TabsV2 = Object.assign(TabsV2Root, {
144
- List: TabsV2List,
145
- Trigger: TabsV2Trigger,
146
- CloseButton: TabsV2CloseButton,
147
- Content: TabsV2Content,
148
- SectionTitle: TabsV2SectionTitle,
149
- })
@@ -1,125 +0,0 @@
1
- * {
2
- -webkit-font-smoothing: antialiased;
3
- -moz-osx-font-smoothing: grayscale;
4
- text-rendering: geometricPrecision;
5
- }
6
-
7
- [data-component="text-shimmer-v2"] {
8
- --_step: 45ms;
9
- --_duration: 1200ms;
10
- --_swap: 220ms;
11
- --_index: 0;
12
- --_angle: 90deg;
13
- --_spread: 5.2ch;
14
- --_size: 360%;
15
- --_base-color: var(--v2-text-text-muted);
16
- --_peak-color: var(--v2-text-text-base);
17
- --_sweep: linear-gradient(
18
- var(--_angle),
19
- transparent calc(50% - var(--_spread)),
20
- var(--_peak-color) 50%,
21
- transparent calc(50% + var(--_spread))
22
- );
23
- --_base: linear-gradient(var(--_base-color), var(--_base-color));
24
-
25
- display: inline-flex;
26
- align-items: baseline;
27
- font: inherit;
28
- letter-spacing: inherit;
29
- line-height: inherit;
30
- user-select: none;
31
- }
32
-
33
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-char"] {
34
- display: inline-grid;
35
- white-space: pre;
36
- font: inherit;
37
- letter-spacing: inherit;
38
- line-height: inherit;
39
- }
40
-
41
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-base"],
42
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-shimmer"] {
43
- grid-area: 1 / 1;
44
- white-space: pre;
45
- transition: opacity var(--_swap) ease-out;
46
- font: inherit;
47
- letter-spacing: inherit;
48
- line-height: inherit;
49
- }
50
-
51
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-base"] {
52
- color: inherit;
53
- opacity: 1;
54
- }
55
-
56
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-shimmer"] {
57
- color: var(--_base-color);
58
- opacity: 0;
59
- }
60
-
61
- [data-component="text-shimmer-v2"][data-active="true"] [data-slot="text-shimmer-v2-shimmer"] {
62
- opacity: 1;
63
- }
64
-
65
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-shimmer"][data-run="true"] {
66
- animation-name: text-shimmer-v2-sweep;
67
- animation-duration: var(--_duration);
68
- animation-iteration-count: infinite;
69
- animation-timing-function: linear;
70
- animation-fill-mode: both;
71
- animation-delay: calc(var(--_step) * var(--_index) * -1);
72
- will-change: background-position;
73
- }
74
-
75
- @keyframes text-shimmer-v2-sweep {
76
- 0% {
77
- background-position:
78
- 100% 0,
79
- 0 0;
80
- }
81
- 100% {
82
- background-position:
83
- 0% 0,
84
- 0 0;
85
- }
86
- }
87
-
88
- @supports ((-webkit-background-clip: text) or (background-clip: text)) {
89
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-shimmer"] {
90
- color: transparent;
91
- -webkit-text-fill-color: transparent;
92
- background-image: var(--_sweep), var(--_base);
93
- background-size:
94
- var(--_size) 100%,
95
- 100% 100%;
96
- background-position:
97
- 100% 0,
98
- 0 0;
99
- background-repeat: no-repeat;
100
- -webkit-background-clip: text;
101
- background-clip: text;
102
- }
103
-
104
- [data-component="text-shimmer-v2"][data-active="true"] [data-slot="text-shimmer-v2-base"] {
105
- opacity: 0;
106
- }
107
- }
108
-
109
- @media (prefers-reduced-motion: reduce) {
110
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-base"],
111
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-shimmer"] {
112
- transition-duration: 0ms;
113
- }
114
-
115
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-shimmer"] {
116
- animation: none !important;
117
- color: inherit;
118
- -webkit-text-fill-color: currentColor;
119
- background-image: none;
120
- }
121
-
122
- [data-component="text-shimmer-v2"] [data-slot="text-shimmer-v2-base"] {
123
- opacity: 1 !important;
124
- }
125
- }