@opencode-ai/ui 0.0.0-dev-202609040530 → 0.0.0-dev-19079

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 (297) 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} +4 -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 +238 -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 +2 -0
  63. package/package.json +140 -34
  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/actions/icon-button/icon-button.tsx +32 -0
  67. package/src/{v2/components/split-button-v2.css → actions/split-button/split-button.css} +2 -6
  68. package/src/{v2/components/split-button-v2.tsx → actions/split-button/split-button.tsx} +4 -4
  69. package/src/components/animated-number.css +29 -11
  70. package/src/components/animated-number.tsx +2 -2
  71. package/src/components/card.css +2 -23
  72. package/src/components/card.tsx +4 -4
  73. package/src/components/collapsible.tsx +2 -2
  74. package/src/components/dock-surface.css +2 -9
  75. package/src/components/image-preview.tsx +3 -2
  76. package/src/components/list.css +5 -5
  77. package/src/components/list.tsx +7 -5
  78. package/src/components/popover.tsx +3 -2
  79. package/src/components/scroll-view.tsx +5 -20
  80. package/src/components/sticky-accordion-header.tsx +1 -1
  81. package/src/components/text-field.tsx +12 -4
  82. package/src/context/dialog.tsx +1 -0
  83. package/src/context/i18n.tsx +17 -14
  84. package/src/context/marked-base.tsx +27 -0
  85. package/src/context/marked-parser.tsx +3 -13
  86. package/src/{components → data-display/accordion}/accordion.css +5 -31
  87. package/src/{components → data-display/accordion}/accordion.tsx +14 -14
  88. package/src/{v2/components/avatar-v2.tsx → data-display/avatar/avatar.tsx} +1 -1
  89. package/src/{v2/components/badge-v2.css → data-display/badge/badge.css} +19 -0
  90. package/src/{v2/components/badge-v2.tsx → data-display/badge/badge.tsx} +6 -4
  91. package/src/{components → data-display/diff-changes}/diff-changes.css +22 -19
  92. package/src/{v2/components/diff-changes-v2.tsx → data-display/diff-changes/diff-changes.tsx} +7 -2
  93. package/src/{v2/components/keybind-v2.css → data-display/keybind/keybind.css} +1 -1
  94. package/src/{v2/components/keybind-v2.tsx → data-display/keybind/keybind.tsx} +3 -3
  95. package/src/{v2/components/line-comment-v2.css → data-display/line-comment/line-comment.css} +4 -4
  96. package/src/{v2/components/line-comment-v2.tsx → data-display/line-comment/line-comment.tsx} +17 -15
  97. package/src/{v2/components/project-avatar-v2.tsx → data-display/project-avatar/project-avatar.tsx} +1 -1
  98. package/src/{v2/components/loader-v2.tsx → feedback/loader/loader.tsx} +2 -2
  99. package/src/feedback/progress-circle/progress-circle.css +28 -0
  100. package/src/feedback/progress-circle/progress-circle.tsx +64 -0
  101. package/src/{v2/components/toast-v2.tsx → feedback/toast/toast.tsx} +60 -58
  102. package/src/{components → forms/checkbox}/checkbox.css +1 -7
  103. package/src/{components → forms/checkbox}/checkbox.tsx +13 -13
  104. package/src/{v2/components/field-v2.css → forms/field/field.css} +1 -1
  105. package/src/{v2/components/field-v2.tsx → forms/field/field.tsx} +9 -11
  106. package/src/{v2/components/radio-v2.tsx → forms/radio/radio.tsx} +30 -20
  107. package/src/{v2/components/select-v2.css → forms/select/select.css} +2 -8
  108. package/src/{v2/components/select-v2.tsx → forms/select/select.tsx} +40 -32
  109. package/src/{v2/components/switch-v2.css → forms/switch/switch.css} +110 -0
  110. package/src/forms/switch/switch.tsx +34 -0
  111. package/src/{v2/components/text-input-v2.css → forms/text-input/text-input.css} +3 -3
  112. package/src/{v2/components/text-input-v2.tsx → forms/text-input/text-input.tsx} +4 -4
  113. package/src/{v2/components/textarea-v2.tsx → forms/textarea/textarea.tsx} +3 -3
  114. package/src/hooks/create-auto-scroll.tsx +20 -0
  115. package/src/i18n/am.ts +7 -9
  116. package/src/i18n/ar.ts +7 -9
  117. package/src/i18n/az.ts +7 -9
  118. package/src/i18n/bg.ts +7 -9
  119. package/src/i18n/bn.ts +7 -9
  120. package/src/i18n/br.ts +7 -9
  121. package/src/i18n/bs.ts +7 -9
  122. package/src/i18n/ca.ts +7 -9
  123. package/src/i18n/cs.ts +7 -9
  124. package/src/i18n/da.ts +7 -9
  125. package/src/i18n/de.ts +1 -3
  126. package/src/i18n/dv.ts +7 -9
  127. package/src/i18n/dz.ts +5 -7
  128. package/src/i18n/el.ts +7 -9
  129. package/src/i18n/en.ts +54 -11
  130. package/src/i18n/es.ts +6 -8
  131. package/src/i18n/et.ts +7 -9
  132. package/src/i18n/fa.ts +7 -9
  133. package/src/i18n/fi.ts +7 -9
  134. package/src/i18n/fo.ts +7 -9
  135. package/src/i18n/fr.ts +6 -8
  136. package/src/i18n/he.ts +199 -0
  137. package/src/i18n/hi.ts +7 -9
  138. package/src/i18n/hr.ts +7 -9
  139. package/src/i18n/hu.ts +7 -9
  140. package/src/i18n/hy.ts +7 -9
  141. package/src/i18n/id.ts +7 -9
  142. package/src/i18n/is.ts +7 -9
  143. package/src/i18n/it.ts +7 -9
  144. package/src/i18n/ja.ts +7 -9
  145. package/src/i18n/ka.ts +7 -9
  146. package/src/i18n/km.ts +7 -9
  147. package/src/i18n/ko.ts +7 -9
  148. package/src/i18n/lo.ts +7 -9
  149. package/src/i18n/lt.ts +7 -9
  150. package/src/i18n/lv.ts +7 -9
  151. package/src/i18n/mk.ts +7 -9
  152. package/src/i18n/mn.ts +7 -9
  153. package/src/i18n/ms.ts +7 -9
  154. package/src/i18n/my.ts +7 -9
  155. package/src/i18n/ne.ts +7 -9
  156. package/src/i18n/nl.ts +7 -9
  157. package/src/i18n/no.ts +7 -9
  158. package/src/i18n/pa.ts +7 -9
  159. package/src/i18n/pl.ts +7 -9
  160. package/src/i18n/ro.ts +7 -9
  161. package/src/i18n/ru.ts +7 -9
  162. package/src/i18n/si.ts +7 -9
  163. package/src/i18n/sk.ts +7 -9
  164. package/src/i18n/sl.ts +7 -9
  165. package/src/i18n/sq.ts +7 -9
  166. package/src/i18n/sr.ts +7 -9
  167. package/src/i18n/sv.ts +7 -9
  168. package/src/i18n/tg.ts +7 -9
  169. package/src/i18n/th.ts +7 -9
  170. package/src/i18n/tk.ts +7 -9
  171. package/src/i18n/tr.ts +7 -9
  172. package/src/i18n/uk.ts +7 -9
  173. package/src/i18n/ur.ts +7 -9
  174. package/src/i18n/uz.ts +7 -9
  175. package/src/i18n/vi.ts +7 -9
  176. package/src/i18n/zh.ts +7 -9
  177. package/src/i18n/zht.ts +7 -9
  178. package/src/{components/icon.tsx → icons/icon/additional-icons.ts} +8 -74
  179. package/src/icons/icon/icon.css +3 -0
  180. package/src/{v2/components → icons/icon}/icon.tsx +80 -12
  181. package/src/{v2/components/divider-v2.tsx → layout/divider/divider.tsx} +3 -3
  182. package/src/{v2/components/menu-v2.css → navigation/menu/menu.css} +124 -2
  183. package/src/{v2/components/menu-v2.tsx → navigation/menu/menu.tsx} +96 -32
  184. package/src/{v2/components/segmented-control-v2.css → navigation/segmented-control/segmented-control.css} +1 -1
  185. package/src/{v2/components/segmented-control-v2.tsx → navigation/segmented-control/segmented-control.tsx} +9 -8
  186. package/src/{v2/components/tabs-v2.css → navigation/tabs/tabs-current.css} +25 -10
  187. package/src/{components → navigation/tabs}/tabs.css +53 -232
  188. package/src/navigation/tabs/tabs.tsx +194 -0
  189. package/src/{v2/components/dialog-v2.css → overlays/dialog/dialog.css} +3 -0
  190. package/src/{v2/components/dialog-v2.tsx → overlays/dialog/dialog.tsx} +11 -13
  191. package/src/{v2/components/tooltip-v2.css → overlays/tooltip/tooltip.css} +26 -0
  192. package/src/{v2/components/tooltip-v2.tsx → overlays/tooltip/tooltip.tsx} +24 -17
  193. package/src/styles/base.css +5 -0
  194. package/src/styles/index.css +4 -20
  195. package/src/styles/tailwind/colors.css +1 -0
  196. package/src/styles/tailwind/index.css +18 -1
  197. package/src/styles/theme.css +2 -2
  198. package/src/{v2/styles → styles/tokens}/colors.css +8 -8
  199. package/src/{v2/styles → styles/tokens}/theme.css +20 -16
  200. package/src/theme/context.tsx +19 -11
  201. package/src/theme/themes/oc-2.json +48 -19
  202. package/src/theme/v2/default-primitives.ts +8 -8
  203. package/src/theme/v2/foreground.ts +1 -0
  204. package/src/theme/v2/mapping.ts +5 -1
  205. package/src/{components → typography/text-shimmer}/text-shimmer.css +2 -1
  206. package/src/{components → typography/text-shimmer}/text-shimmer.tsx +1 -0
  207. package/src/{v2/components/wordmark-v2.tsx → typography/wordmark/wordmark.tsx} +2 -2
  208. package/dist/components/avatar.d.ts +0 -9
  209. package/dist/components/button.d.ts +0 -9
  210. package/dist/components/dialog.d.ts +0 -12
  211. package/dist/components/dropdown-menu.d.ts +0 -80
  212. package/dist/components/icon-button.d.ts +0 -10
  213. package/dist/components/keybind.d.ts +0 -6
  214. package/dist/components/radio-group.d.ts +0 -16
  215. package/dist/components/select.d.ts +0 -21
  216. package/dist/components/tag.d.ts +0 -5
  217. package/dist/components/toast.d.ts +0 -56
  218. package/dist/components/tooltip.d.ts +0 -17
  219. package/dist/v2/components/accordion-v2.d.ts +0 -26
  220. package/dist/v2/components/badge-v2.d.ts +0 -6
  221. package/dist/v2/components/button-v2.d.ts +0 -10
  222. package/dist/v2/components/checkbox-v2.d.ts +0 -10
  223. package/dist/v2/components/diff-changes-v2.d.ts +0 -11
  224. package/dist/v2/components/divider-v2.d.ts +0 -5
  225. package/dist/v2/components/icon-button-v2.d.ts +0 -11
  226. package/dist/v2/components/inline-input-v2.d.ts +0 -21
  227. package/dist/v2/components/keybind-v2.d.ts +0 -7
  228. package/dist/v2/components/loader-v2.d.ts +0 -3
  229. package/dist/v2/components/menu-v2.d.ts +0 -52
  230. package/dist/v2/components/progress-circle-v2.d.ts +0 -8
  231. package/dist/v2/components/radio-v2.d.ts +0 -16
  232. package/dist/v2/components/split-button-v2.d.ts +0 -5
  233. package/dist/v2/components/switch-v2.d.ts +0 -7
  234. package/dist/v2/components/tabs-v2.d.ts +0 -34
  235. package/dist/v2/components/text-shimmer-v2.d.ts +0 -9
  236. package/dist/v2/components/textarea-v2.d.ts +0 -7
  237. package/dist/v2/components/toast-v2.d.ts +0 -57
  238. package/dist/v2/components/tooltip-v2.d.ts +0 -13
  239. package/dist/v2/components/wordmark-v2.d.ts +0 -2
  240. package/src/components/avatar.css +0 -49
  241. package/src/components/avatar.tsx +0 -55
  242. package/src/components/button.css +0 -194
  243. package/src/components/dialog.css +0 -181
  244. package/src/components/dialog.tsx +0 -72
  245. package/src/components/diff-changes.tsx +0 -115
  246. package/src/components/dropdown-menu.css +0 -135
  247. package/src/components/dropdown-menu.tsx +0 -308
  248. package/src/components/icon-button.css +0 -181
  249. package/src/components/icon-button.tsx +0 -29
  250. package/src/components/icon.css +0 -39
  251. package/src/components/keybind.css +0 -18
  252. package/src/components/keybind.tsx +0 -20
  253. package/src/components/progress-circle.css +0 -16
  254. package/src/components/progress-circle.tsx +0 -64
  255. package/src/components/radio-group.css +0 -187
  256. package/src/components/radio-group.tsx +0 -83
  257. package/src/components/select.css +0 -201
  258. package/src/components/select.tsx +0 -174
  259. package/src/components/switch.css +0 -136
  260. package/src/components/switch.tsx +0 -29
  261. package/src/components/tabs.tsx +0 -126
  262. package/src/components/tag.css +0 -37
  263. package/src/components/tag.tsx +0 -22
  264. package/src/components/toast.css +0 -236
  265. package/src/components/toast.tsx +0 -185
  266. package/src/components/tooltip.css +0 -74
  267. package/src/components/tooltip.tsx +0 -163
  268. package/src/v2/components/accordion-v2.css +0 -139
  269. package/src/v2/components/accordion-v2.tsx +0 -86
  270. package/src/v2/components/button-v2.tsx +0 -35
  271. package/src/v2/components/checkbox-v2.css +0 -184
  272. package/src/v2/components/checkbox-v2.tsx +0 -65
  273. package/src/v2/components/diff-changes-v2.css +0 -26
  274. package/src/v2/components/icon-button-v2.tsx +0 -37
  275. package/src/v2/components/inline-input-v2.css +0 -225
  276. package/src/v2/components/inline-input-v2.tsx +0 -107
  277. package/src/v2/components/progress-circle-v2.css +0 -13
  278. package/src/v2/components/progress-circle-v2.tsx +0 -52
  279. package/src/v2/components/switch-v2.tsx +0 -28
  280. package/src/v2/components/tabs-v2.tsx +0 -149
  281. package/src/v2/components/text-shimmer-v2.css +0 -125
  282. package/src/v2/components/text-shimmer-v2.tsx +0 -63
  283. /package/dist/{components → forms/inline-input}/inline-input.d.ts +0 -0
  284. /package/dist/{v2/components → navigation}/tab-state-indicator.d.ts +0 -0
  285. /package/src/{v2/components/icon-button-v2.css → actions/icon-button/icon-button.css} +0 -0
  286. /package/src/{v2/components/avatar-v2.css → data-display/avatar/avatar.css} +0 -0
  287. /package/src/{v2/components/project-avatar-v2.css → data-display/project-avatar/project-avatar.css} +0 -0
  288. /package/src/{v2/components/loader-v2.css → feedback/loader/loader.css} +0 -0
  289. /package/src/{v2/components/toast-v2.css → feedback/toast/toast.css} +0 -0
  290. /package/src/{components → forms/inline-input}/inline-input.css +0 -0
  291. /package/src/{components → forms/inline-input}/inline-input.tsx +0 -0
  292. /package/src/{v2/components/radio-v2.css → forms/radio/radio.css} +0 -0
  293. /package/src/{v2/components/textarea-v2.css → forms/textarea/textarea.css} +0 -0
  294. /package/src/{v2/components/divider-v2.css → layout/divider/divider.css} +0 -0
  295. /package/src/{v2/components → navigation}/tab-state-indicator.tsx +0 -0
  296. /package/src/{v2/components/file-tree-v2.css → styles/file-tree.css} +0 -0
  297. /package/src/{v2/styles/tailwind.css → styles/tokens/index.css} +0 -0
@@ -1,194 +0,0 @@
1
- [data-component="button"] {
2
- display: inline-flex;
3
- align-items: center;
4
- justify-content: center;
5
- border-style: solid;
6
- border-width: 1px;
7
- border-radius: var(--radius-md);
8
- text-decoration: none;
9
- user-select: none;
10
- cursor: default;
11
- outline: none;
12
- white-space: nowrap;
13
-
14
- &[data-variant="primary"] {
15
- background-color: var(--button-primary-base);
16
- border-color: var(--border-weak-base);
17
- color: var(--icon-invert-base);
18
-
19
- [data-slot="icon-svg"] {
20
- color: var(--icon-invert-base);
21
- }
22
-
23
- &:hover:not(:disabled) {
24
- background-color: var(--icon-strong-hover);
25
- }
26
- &:focus:not(:disabled) {
27
- background-color: var(--icon-strong-focus);
28
- }
29
- &:active:not(:disabled) {
30
- background-color: var(--icon-strong-active);
31
- }
32
- &:disabled {
33
- background-color: var(--icon-strong-disabled);
34
-
35
- [data-slot="icon-svg"] {
36
- color: var(--icon-invert-base);
37
- }
38
- }
39
- }
40
-
41
- &[data-variant="ghost"] {
42
- border-color: transparent;
43
- background-color: transparent;
44
- color: var(--text-strong);
45
-
46
- [data-slot="icon-svg"] {
47
- color: var(--icon-base);
48
- }
49
-
50
- &:hover:not(:disabled) {
51
- background-color: var(--surface-base-hover);
52
- }
53
- &:focus-visible:not(:disabled) {
54
- background-color: var(--surface-base-hover);
55
- }
56
- &:active:not(:disabled) {
57
- background-color: var(--surface-base-active);
58
- }
59
- &:disabled {
60
- color: var(--text-weak);
61
- cursor: not-allowed;
62
-
63
- [data-slot="icon-svg"] {
64
- color: var(--icon-disabled);
65
- }
66
- }
67
- &[data-selected="true"]:not(:disabled) {
68
- background-color: var(--surface-base-hover);
69
- }
70
- &[data-active="true"] {
71
- background-color: var(--surface-base-active);
72
- }
73
- }
74
-
75
- &[data-variant="secondary"] {
76
- border: transparent;
77
- background-color: var(--button-secondary-base);
78
- color: var(--text-strong);
79
- box-shadow: var(--shadow-xs-border-base);
80
-
81
- &:hover:not(:disabled) {
82
- background-color: var(--button-secondary-hover);
83
- }
84
- &:focus:not(:disabled) {
85
- background-color: var(--button-secondary-base);
86
- }
87
- &:focus-visible:not(:active) {
88
- background-color: var(--button-secondary-base);
89
- box-shadow: var(--shadow-xs-border-focus);
90
- }
91
- &:focus-visible:active {
92
- box-shadow: none;
93
- }
94
- &:active:not(:disabled) {
95
- background-color: var(--button-secondary-base);
96
- }
97
- &:disabled {
98
- border-color: var(--border-disabled);
99
- background-color: var(--surface-disabled);
100
- color: var(--text-weak);
101
- cursor: not-allowed;
102
- }
103
-
104
- [data-slot="icon-svg"] {
105
- color: var(--icon-base);
106
- }
107
- }
108
-
109
- &[data-size="small"] {
110
- height: 24px;
111
- padding: 0 8px;
112
- &[data-icon] {
113
- padding: 0 12px 0 4px;
114
- }
115
-
116
- font-size: var(--font-size-small);
117
- line-height: var(--line-height-large);
118
- gap: 8px;
119
-
120
- /* text-12-medium */
121
- font-family: var(--font-family-sans);
122
- font-size: var(--font-size-small);
123
- font-style: normal;
124
- font-weight: var(--font-weight-medium);
125
- line-height: var(--line-height-large); /* 166.667% */
126
- letter-spacing: var(--letter-spacing-normal);
127
- }
128
-
129
- &[data-size="normal"] {
130
- height: 28px;
131
- line-height: 28px;
132
- padding: 0 6px;
133
- &[data-icon] {
134
- padding: 0 12px 0 4px;
135
- }
136
-
137
- font-size: var(--font-size-small);
138
- gap: 8px;
139
-
140
- /* text-12-medium */
141
- font-family: var(--font-family-sans);
142
- font-size: var(--font-size-small);
143
- font-style: normal;
144
- font-weight: var(--font-weight-medium);
145
- letter-spacing: var(--letter-spacing-normal);
146
- }
147
-
148
- &[data-size="large"] {
149
- height: 32px;
150
- padding: 6px 12px;
151
-
152
- &[data-icon] {
153
- padding: 0 12px 0 8px;
154
- }
155
-
156
- gap: 8px;
157
-
158
- /* text-14-medium */
159
- font-family: var(--font-family-sans);
160
- font-size: 14px;
161
- font-style: normal;
162
- font-weight: var(--font-weight-medium);
163
- line-height: var(--line-height-large); /* 142.857% */
164
- letter-spacing: var(--letter-spacing-normal);
165
- }
166
-
167
- &:focus {
168
- outline: none;
169
- }
170
- }
171
-
172
- [data-component="button"].titlebar-icon[data-variant="ghost"][aria-expanded="true"] {
173
- background-color: var(--surface-base-active);
174
- }
175
-
176
- [data-component="button"].titlebar-icon[data-variant="ghost"][aria-expanded="true"] [data-slot="icon-svg"] {
177
- color: var(--icon-strong-base);
178
- }
179
-
180
- [data-component="button"].titlebar-icon[data-variant="ghost"][aria-expanded="true"]:hover:not(:disabled) {
181
- background-color: var(--surface-base-active);
182
- }
183
-
184
- [data-component="button"].titlebar-icon[data-variant="ghost"][aria-current="page"] {
185
- background-color: var(--surface-base-active);
186
- }
187
-
188
- [data-component="button"].titlebar-icon[data-variant="ghost"][aria-current="page"] [data-slot="icon-svg"] {
189
- color: var(--icon-strong-base);
190
- }
191
-
192
- [data-component="button"].titlebar-icon[data-variant="ghost"][aria-current="page"]:hover:not(:disabled) {
193
- background-color: var(--surface-base-active);
194
- }
@@ -1,181 +0,0 @@
1
- /* [data-component="dialog-trigger"] { } */
2
-
3
- [data-component="dialog-overlay"] {
4
- position: fixed;
5
- inset: 0;
6
- z-index: 50;
7
- background-color: hsl(from var(--background-base) h s l / 0.2);
8
- }
9
-
10
- [data-component="dialog"] {
11
- position: fixed;
12
- inset: 0;
13
- z-index: 50;
14
- display: flex;
15
- align-items: center;
16
- justify-content: center;
17
- pointer-events: none;
18
-
19
- [data-slot="dialog-container"] {
20
- position: relative;
21
- z-index: 50;
22
- width: min(calc(100vw - 16px), 640px);
23
- height: min(calc(100vh - 16px), 512px);
24
- display: flex;
25
- flex-direction: column;
26
- align-items: center;
27
- justify-items: start;
28
- overflow: visible;
29
-
30
- [data-slot="dialog-content"] {
31
- display: flex;
32
- flex-direction: column;
33
- align-items: flex-start;
34
- align-self: stretch;
35
- width: 100%;
36
- max-height: 100%;
37
- min-height: 280px;
38
- overflow: auto;
39
- pointer-events: auto;
40
-
41
- /* Hide scrollbar */
42
- scrollbar-width: none;
43
- -ms-overflow-style: none;
44
- &::-webkit-scrollbar {
45
- display: none;
46
- }
47
-
48
- /* padding: 8px; */
49
- /* padding: 8px 8px 0 8px; */
50
- border-radius: var(--radius-xl);
51
- background: var(--surface-raised-stronger-non-alpha);
52
- background-clip: padding-box;
53
- box-shadow: var(--shadow-lg-border-base);
54
-
55
- [data-slot="dialog-header"] {
56
- display: flex;
57
- padding: 16px 20px;
58
- justify-content: space-between;
59
- align-items: center;
60
- flex-shrink: 0;
61
- align-self: stretch;
62
-
63
- [data-slot="dialog-title"] {
64
- color: var(--text-strong);
65
-
66
- /* text-16-medium */
67
- font-family: var(--font-family-sans);
68
- font-size: var(--font-size-large);
69
- font-style: normal;
70
- font-weight: var(--font-weight-medium);
71
- line-height: var(--line-height-x-large); /* 150% */
72
- letter-spacing: var(--letter-spacing-tight);
73
- }
74
- /* [data-slot="dialog-close-button"] {} */
75
- }
76
-
77
- [data-slot="dialog-description"] {
78
- display: flex;
79
- padding: 16px;
80
- padding-left: 24px;
81
- padding-top: 0;
82
- margin-top: -8px;
83
- justify-content: space-between;
84
- align-items: center;
85
- flex-shrink: 0;
86
- align-self: stretch;
87
-
88
- color: var(--text-base);
89
-
90
- /* text-14-regular */
91
- font-family: var(--font-family-sans);
92
- font-size: 14px;
93
- font-style: normal;
94
- font-weight: var(--font-weight-regular);
95
- line-height: var(--line-height-large); /* 142.857% */
96
- letter-spacing: var(--letter-spacing-normal);
97
- }
98
-
99
- [data-slot="dialog-body"] {
100
- width: 100%;
101
- position: relative;
102
- display: flex;
103
- flex-direction: column;
104
- flex: 1;
105
- overflow: hidden;
106
-
107
- &:focus-visible {
108
- outline: none;
109
- }
110
- }
111
- &:focus-visible {
112
- outline: none;
113
- }
114
- }
115
- }
116
-
117
- &[data-fit] {
118
- [data-slot="dialog-container"] {
119
- height: auto;
120
-
121
- [data-slot="dialog-content"] {
122
- min-height: 0;
123
- }
124
- }
125
- }
126
-
127
- &[data-size="large"] [data-slot="dialog-container"] {
128
- width: min(calc(100vw - 32px), 800px);
129
- height: min(calc(100vh - 32px), 600px);
130
- }
131
-
132
- &[data-size="x-large"] [data-slot="dialog-container"] {
133
- width: min(calc(100vw - 32px), 980px);
134
- height: min(calc(100vh - 92px), 600px);
135
- }
136
- }
137
-
138
- [data-component="dialog"][data-transition] [data-slot="dialog-content"] {
139
- animation: contentHide 100ms ease-in forwards;
140
-
141
- &[data-expanded] {
142
- animation: contentShow 150ms ease-out;
143
- }
144
- }
145
-
146
- @keyframes overlayShow {
147
- from {
148
- opacity: 0;
149
- }
150
- to {
151
- opacity: 1;
152
- }
153
- }
154
- @keyframes overlayHide {
155
- from {
156
- opacity: 1;
157
- }
158
- to {
159
- opacity: 0;
160
- }
161
- }
162
- @keyframes contentShow {
163
- from {
164
- opacity: 0;
165
- transform: scale(0.98);
166
- }
167
- to {
168
- opacity: 1;
169
- transform: scale(1);
170
- }
171
- }
172
- @keyframes contentHide {
173
- from {
174
- opacity: 1;
175
- transform: scale(1);
176
- }
177
- to {
178
- opacity: 0;
179
- transform: scale(0.98);
180
- }
181
- }
@@ -1,72 +0,0 @@
1
- import { Dialog as Kobalte } from "@kobalte/core/dialog"
2
- import { ComponentProps, JSXElement, Match, ParentProps, Show, Switch } from "solid-js"
3
- import { useI18n } from "../context/i18n"
4
- import { IconButton } from "./icon-button"
5
-
6
- export interface DialogProps extends ParentProps {
7
- title?: JSXElement
8
- description?: JSXElement
9
- action?: JSXElement
10
- size?: "normal" | "large" | "x-large"
11
- class?: ComponentProps<"div">["class"]
12
- classList?: ComponentProps<"div">["classList"]
13
- fit?: boolean
14
- transition?: boolean
15
- }
16
-
17
- export function Dialog(props: DialogProps) {
18
- const i18n = useI18n()
19
- return (
20
- <div
21
- data-component="dialog"
22
- data-fit={props.fit ? true : undefined}
23
- data-size={props.size || "normal"}
24
- data-transition={props.transition ? true : undefined}
25
- >
26
- <div data-slot="dialog-container">
27
- <Kobalte.Content
28
- data-slot="dialog-content"
29
- data-no-header={!props.title && !props.action ? "" : undefined}
30
- classList={{
31
- ...props.classList,
32
- [props.class ?? ""]: !!props.class,
33
- }}
34
- onOpenAutoFocus={(e) => {
35
- const target = e.currentTarget as HTMLElement | null
36
- const autofocusEl = target?.querySelector("[autofocus]") as HTMLElement | null
37
- if (autofocusEl) {
38
- e.preventDefault()
39
- autofocusEl.focus()
40
- }
41
- }}
42
- >
43
- <Show when={props.title || props.action}>
44
- <div data-slot="dialog-header">
45
- <Show when={props.title}>
46
- <Kobalte.Title data-slot="dialog-title">{props.title}</Kobalte.Title>
47
- </Show>
48
- <Switch>
49
- <Match when={props.action}>{props.action}</Match>
50
- <Match when={true}>
51
- <Kobalte.CloseButton
52
- data-slot="dialog-close-button"
53
- as={IconButton}
54
- icon="close"
55
- variant="ghost"
56
- aria-label={i18n.t("ui.common.close")}
57
- />
58
- </Match>
59
- </Switch>
60
- </div>
61
- </Show>
62
- <Show when={props.description}>
63
- <Kobalte.Description data-slot="dialog-description" style={{ "margin-left": "-4px" }}>
64
- {props.description}
65
- </Kobalte.Description>
66
- </Show>
67
- <div data-slot="dialog-body">{props.children}</div>
68
- </Kobalte.Content>
69
- </div>
70
- </div>
71
- )
72
- }
@@ -1,115 +0,0 @@
1
- import { createMemo, For, Match, Show, Switch } from "solid-js"
2
-
3
- export function DiffChanges(props: {
4
- class?: string
5
- changes: { additions: number; deletions: number } | { additions: number; deletions: number }[]
6
- variant?: "default" | "bars"
7
- }) {
8
- const variant = () => props.variant ?? "default"
9
-
10
- const additions = createMemo(() =>
11
- Array.isArray(props.changes)
12
- ? props.changes.reduce((acc, diff) => acc + (diff.additions ?? 0), 0)
13
- : props.changes.additions,
14
- )
15
- const deletions = createMemo(() =>
16
- Array.isArray(props.changes)
17
- ? props.changes.reduce((acc, diff) => acc + (diff.deletions ?? 0), 0)
18
- : props.changes.deletions,
19
- )
20
- const total = createMemo(() => (additions() ?? 0) + (deletions() ?? 0))
21
-
22
- const blockCounts = createMemo(() => {
23
- const TOTAL_BLOCKS = 5
24
-
25
- const adds = additions() ?? 0
26
- const dels = deletions() ?? 0
27
-
28
- if (adds === 0 && dels === 0) {
29
- return { added: 0, deleted: 0, neutral: TOTAL_BLOCKS }
30
- }
31
-
32
- const total = adds + dels
33
-
34
- if (total < 5) {
35
- const added = adds > 0 ? 1 : 0
36
- const deleted = dels > 0 ? 1 : 0
37
- const neutral = TOTAL_BLOCKS - added - deleted
38
- return { added, deleted, neutral }
39
- }
40
-
41
- const ratio = adds > dels ? adds / dels : dels / adds
42
- let BLOCKS_FOR_COLORS = TOTAL_BLOCKS
43
-
44
- if (total < 20) {
45
- BLOCKS_FOR_COLORS = TOTAL_BLOCKS - 1
46
- } else if (ratio < 4) {
47
- BLOCKS_FOR_COLORS = TOTAL_BLOCKS - 1
48
- }
49
-
50
- const percentAdded = adds / total
51
- const percentDeleted = dels / total
52
-
53
- const added_raw = percentAdded * BLOCKS_FOR_COLORS
54
- const deleted_raw = percentDeleted * BLOCKS_FOR_COLORS
55
-
56
- let added = adds > 0 ? Math.max(1, Math.round(added_raw)) : 0
57
- let deleted = dels > 0 ? Math.max(1, Math.round(deleted_raw)) : 0
58
-
59
- // Cap bars based on actual change magnitude
60
- if (adds > 0 && adds <= 5) added = Math.min(added, 1)
61
- if (adds > 5 && adds <= 10) added = Math.min(added, 2)
62
- if (dels > 0 && dels <= 5) deleted = Math.min(deleted, 1)
63
- if (dels > 5 && dels <= 10) deleted = Math.min(deleted, 2)
64
-
65
- let total_allocated = added + deleted
66
- if (total_allocated > BLOCKS_FOR_COLORS) {
67
- if (added_raw > deleted_raw) {
68
- added = BLOCKS_FOR_COLORS - deleted
69
- } else {
70
- deleted = BLOCKS_FOR_COLORS - added
71
- }
72
- total_allocated = added + deleted
73
- }
74
-
75
- const neutral = Math.max(0, TOTAL_BLOCKS - total_allocated)
76
-
77
- return { added, deleted, neutral }
78
- })
79
-
80
- const ADD_COLOR = "var(--icon-diff-add-base)"
81
- const DELETE_COLOR = "var(--icon-diff-delete-base)"
82
- const NEUTRAL_COLOR = "var(--icon-weak-base)"
83
-
84
- const visibleBlocks = createMemo(() => {
85
- const counts = blockCounts()
86
- const blocks = [
87
- ...Array(counts.added).fill(ADD_COLOR),
88
- ...Array(counts.deleted).fill(DELETE_COLOR),
89
- ...Array(counts.neutral).fill(NEUTRAL_COLOR),
90
- ]
91
- return blocks.slice(0, 5)
92
- })
93
-
94
- return (
95
- <Show when={variant() === "default" ? total() > 0 : true}>
96
- <div data-component="diff-changes" data-variant={variant()} classList={{ [props.class ?? ""]: true }}>
97
- <Switch>
98
- <Match when={variant() === "bars"}>
99
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 14" fill="none">
100
- <g>
101
- <For each={visibleBlocks()}>
102
- {(color, i) => <rect x={i() * 4} width="2" height="14" rx="1" fill={color} />}
103
- </For>
104
- </g>
105
- </svg>
106
- </Match>
107
- <Match when={variant() === "default"}>
108
- <span data-slot="diff-changes-additions">{`+${additions()}`}</span>
109
- <span data-slot="diff-changes-deletions">{`-${deletions()}`}</span>
110
- </Match>
111
- </Switch>
112
- </div>
113
- </Show>
114
- )
115
- }
@@ -1,135 +0,0 @@
1
- [data-component="dropdown-menu-content"],
2
- [data-component="dropdown-menu-sub-content"] {
3
- min-width: 8rem;
4
- overflow: hidden;
5
- border-radius: var(--radius-md);
6
- border: 1px solid color-mix(in oklch, var(--border-base) 50%, transparent);
7
- background-clip: padding-box;
8
- background-color: var(--surface-raised-stronger-non-alpha);
9
- padding: 4px;
10
- box-shadow: var(--shadow-md);
11
- z-index: 50;
12
- transform-origin: var(--kb-menu-content-transform-origin);
13
-
14
- &:focus,
15
- &:focus-visible {
16
- outline: none;
17
- }
18
-
19
- &[data-closed] {
20
- animation: dropdown-menu-close 0.15s ease-out;
21
- }
22
-
23
- &[data-expanded] {
24
- animation: dropdown-menu-open 0.15s ease-out;
25
- }
26
- }
27
-
28
- [data-component="dropdown-menu-content"],
29
- [data-component="dropdown-menu-sub-content"] {
30
- [data-slot="dropdown-menu-item"],
31
- [data-slot="dropdown-menu-checkbox-item"],
32
- [data-slot="dropdown-menu-radio-item"],
33
- [data-slot="dropdown-menu-sub-trigger"] {
34
- position: relative;
35
- display: flex;
36
- align-items: center;
37
- gap: 8px;
38
- padding: 4px 8px;
39
- border-radius: var(--radius-sm);
40
- cursor: default;
41
- user-select: none;
42
- outline: none;
43
-
44
- font-family: var(--font-family-sans);
45
- font-size: var(--font-size-small);
46
- font-weight: var(--font-weight-medium);
47
- line-height: var(--line-height-large);
48
- letter-spacing: var(--letter-spacing-normal);
49
- color: var(--text-strong);
50
-
51
- &[data-highlighted] {
52
- background: var(--surface-raised-base-hover);
53
- }
54
-
55
- &[data-disabled] {
56
- color: var(--text-weak);
57
- pointer-events: none;
58
- }
59
- }
60
-
61
- [data-slot="dropdown-menu-checkbox-item"],
62
- [data-slot="dropdown-menu-radio-item"] {
63
- padding-inline-end: 28px;
64
- }
65
-
66
- [data-slot="dropdown-menu-sub-trigger"] {
67
- &[data-expanded] {
68
- background: var(--surface-raised-base-hover);
69
- }
70
- }
71
-
72
- [data-slot="dropdown-menu-item-indicator"] {
73
- display: flex;
74
- align-items: center;
75
- justify-content: center;
76
- width: 16px;
77
- height: 16px;
78
- position: absolute;
79
- inset-inline-end: 8px;
80
- top: 50%;
81
- transform: translateY(-50%);
82
- }
83
-
84
- [data-slot="dropdown-menu-item-label"] {
85
- flex: 1;
86
- }
87
-
88
- [data-slot="dropdown-menu-item-description"] {
89
- font-size: var(--font-size-x-small);
90
- color: var(--text-weak);
91
- }
92
-
93
- [data-slot="dropdown-menu-separator"] {
94
- height: 1px;
95
- margin: 4px -4px;
96
- border-top-color: var(--border-weak-base);
97
- }
98
-
99
- [data-slot="dropdown-menu-group-label"] {
100
- display: block;
101
- padding: 4px 8px;
102
- font-family: var(--font-family-sans);
103
- font-size: var(--font-size-x-small);
104
- font-weight: var(--font-weight-medium);
105
- line-height: var(--line-height-large);
106
- letter-spacing: var(--letter-spacing-normal);
107
- color: var(--text-weak);
108
- }
109
-
110
- [data-slot="dropdown-menu-arrow"] {
111
- fill: var(--surface-raised-stronger-non-alpha);
112
- }
113
- }
114
-
115
- @keyframes dropdown-menu-open {
116
- from {
117
- opacity: 0;
118
- transform: scale(0.96);
119
- }
120
- to {
121
- opacity: 1;
122
- transform: scale(1);
123
- }
124
- }
125
-
126
- @keyframes dropdown-menu-close {
127
- from {
128
- opacity: 1;
129
- transform: scale(1);
130
- }
131
- to {
132
- opacity: 0;
133
- transform: scale(0.96);
134
- }
135
- }