@opencode-ai/ui 0.0.0-dev-202609032018 → 0.0.0-dev-19039
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.
- package/dist/actions/button/button.d.ts +10 -0
- package/dist/actions/icon-button/icon-button.d.ts +11 -0
- package/dist/actions/split-button/split-button.d.ts +5 -0
- package/dist/components/card.d.ts +1 -1
- package/dist/components/list.d.ts +1 -1
- package/dist/components/scroll-view.d.ts +3 -3
- package/dist/context/i18n.d.ts +10 -7
- package/dist/context/marked-base.d.ts +3 -0
- package/dist/context/marked-parser.d.ts +1 -2
- package/dist/{components → data-display/accordion}/accordion.d.ts +6 -6
- package/dist/{v2/components/avatar-v2.d.ts → data-display/avatar/avatar.d.ts} +1 -1
- package/dist/data-display/badge/badge.d.ts +7 -0
- package/dist/{components → data-display/diff-changes}/diff-changes.d.ts +2 -1
- package/dist/data-display/keybind/keybind.d.ts +7 -0
- package/dist/{v2/components/line-comment-v2.d.ts → data-display/line-comment/line-comment.d.ts} +9 -9
- package/dist/{v2/components/project-avatar-v2.d.ts → data-display/project-avatar/project-avatar.d.ts} +1 -1
- package/dist/feedback/loader/loader.d.ts +3 -0
- package/dist/{components → feedback/progress-circle}/progress-circle.d.ts +2 -0
- package/dist/feedback/toast/toast.d.ts +57 -0
- package/dist/{components → forms/checkbox}/checkbox.d.ts +2 -2
- package/dist/{v2/components/field-v2.d.ts → forms/field/field.d.ts} +4 -10
- package/dist/forms/radio/radio.d.ts +16 -0
- package/dist/{v2/components/select-v2.d.ts → forms/select/select.d.ts} +4 -6
- package/dist/{components → forms/switch}/switch.d.ts +4 -2
- package/dist/{v2/components/text-input-v2.d.ts → forms/text-input/text-input.d.ts} +3 -3
- package/dist/forms/textarea/textarea.d.ts +7 -0
- package/dist/hooks/use-filtered-list.d.ts +9 -0
- package/dist/i18n/ar.d.ts +0 -2
- package/dist/i18n/bg.d.ts +0 -2
- package/dist/i18n/br.d.ts +0 -2
- package/dist/i18n/bs.d.ts +0 -2
- package/dist/i18n/da.d.ts +0 -2
- package/dist/i18n/de.d.ts +0 -2
- package/dist/i18n/en.d.ts +238 -1
- package/dist/i18n/es.d.ts +0 -2
- package/dist/i18n/fr.d.ts +0 -2
- package/dist/i18n/he.d.ts +197 -0
- package/dist/i18n/ja.d.ts +0 -2
- package/dist/i18n/km.d.ts +0 -2
- package/dist/i18n/ko.d.ts +0 -2
- package/dist/i18n/lo.d.ts +0 -2
- package/dist/i18n/mk.d.ts +0 -2
- package/dist/i18n/mn.d.ts +0 -2
- package/dist/i18n/my.d.ts +0 -2
- package/dist/i18n/pl.d.ts +0 -2
- package/dist/i18n/ru.d.ts +0 -2
- package/dist/i18n/sr.d.ts +0 -2
- package/dist/i18n/tg.d.ts +0 -2
- package/dist/i18n/th.d.ts +0 -2
- package/dist/i18n/tr.d.ts +0 -2
- package/dist/i18n/zh.d.ts +0 -2
- package/dist/i18n/zht.d.ts +0 -2
- package/dist/{components/icon.d.ts → icons/icon/additional-icons.d.ts} +8 -8
- package/dist/{v2/components → icons/icon}/icon.d.ts +32 -1
- package/dist/layout/divider/divider.d.ts +5 -0
- package/dist/navigation/menu/menu.d.ts +59 -0
- package/dist/{v2/components/segmented-control-v2.d.ts → navigation/segmented-control/segmented-control.d.ts} +5 -5
- package/dist/{components → navigation/tabs}/tabs.d.ts +15 -8
- package/dist/{v2/components/dialog-v2.d.ts → overlays/dialog/dialog.d.ts} +1 -2
- package/dist/overlays/tooltip/tooltip.d.ts +15 -0
- package/dist/{components → typography/text-shimmer}/text-shimmer.d.ts +1 -0
- package/dist/typography/wordmark/wordmark.d.ts +2 -0
- package/package.json +140 -34
- package/src/{v2/components/button-v2.css → actions/button/button.css} +29 -0
- package/src/{components → actions/button}/button.tsx +19 -11
- package/src/actions/icon-button/icon-button.tsx +32 -0
- package/src/{v2/components/split-button-v2.css → actions/split-button/split-button.css} +1 -6
- package/src/{v2/components/split-button-v2.tsx → actions/split-button/split-button.tsx} +4 -4
- package/src/components/animated-number.css +29 -11
- package/src/components/animated-number.tsx +2 -2
- package/src/components/card.css +2 -23
- package/src/components/card.tsx +4 -4
- package/src/components/collapsible.tsx +2 -2
- package/src/components/dock-surface.css +2 -9
- package/src/components/image-preview.tsx +3 -2
- package/src/components/list.css +5 -5
- package/src/components/list.tsx +7 -5
- package/src/components/popover.tsx +3 -2
- package/src/components/scroll-view.tsx +5 -20
- package/src/components/sticky-accordion-header.tsx +1 -1
- package/src/components/text-field.tsx +12 -4
- package/src/context/dialog.tsx +1 -0
- package/src/context/i18n.tsx +17 -14
- package/src/context/marked-base.tsx +27 -0
- package/src/context/marked-parser.tsx +3 -13
- package/src/{components → data-display/accordion}/accordion.css +5 -31
- package/src/{components → data-display/accordion}/accordion.tsx +14 -14
- package/src/{v2/components/avatar-v2.tsx → data-display/avatar/avatar.tsx} +1 -1
- package/src/{v2/components/badge-v2.css → data-display/badge/badge.css} +19 -0
- package/src/{v2/components/badge-v2.tsx → data-display/badge/badge.tsx} +6 -4
- package/src/{components → data-display/diff-changes}/diff-changes.css +22 -19
- package/src/{v2/components/diff-changes-v2.tsx → data-display/diff-changes/diff-changes.tsx} +7 -2
- package/src/{v2/components/keybind-v2.css → data-display/keybind/keybind.css} +1 -1
- package/src/{v2/components/keybind-v2.tsx → data-display/keybind/keybind.tsx} +3 -3
- package/src/{v2/components/line-comment-v2.css → data-display/line-comment/line-comment.css} +4 -4
- package/src/{v2/components/line-comment-v2.tsx → data-display/line-comment/line-comment.tsx} +17 -15
- package/src/{v2/components/project-avatar-v2.tsx → data-display/project-avatar/project-avatar.tsx} +1 -1
- package/src/{v2/components/loader-v2.tsx → feedback/loader/loader.tsx} +2 -2
- package/src/feedback/progress-circle/progress-circle.css +28 -0
- package/src/feedback/progress-circle/progress-circle.tsx +64 -0
- package/src/{v2/components/toast-v2.tsx → feedback/toast/toast.tsx} +60 -58
- package/src/{components → forms/checkbox}/checkbox.css +1 -7
- package/src/{components → forms/checkbox}/checkbox.tsx +13 -13
- package/src/{v2/components/field-v2.css → forms/field/field.css} +1 -1
- package/src/{v2/components/field-v2.tsx → forms/field/field.tsx} +9 -11
- package/src/{v2/components/radio-v2.tsx → forms/radio/radio.tsx} +30 -20
- package/src/{v2/components/select-v2.css → forms/select/select.css} +2 -8
- package/src/{v2/components/select-v2.tsx → forms/select/select.tsx} +40 -32
- package/src/{v2/components/switch-v2.css → forms/switch/switch.css} +110 -0
- package/src/forms/switch/switch.tsx +34 -0
- package/src/{v2/components/text-input-v2.css → forms/text-input/text-input.css} +3 -3
- package/src/{v2/components/text-input-v2.tsx → forms/text-input/text-input.tsx} +4 -4
- package/src/{v2/components/textarea-v2.tsx → forms/textarea/textarea.tsx} +3 -3
- package/src/hooks/create-auto-scroll.tsx +20 -0
- package/src/i18n/am.ts +7 -9
- package/src/i18n/ar.ts +7 -9
- package/src/i18n/az.ts +7 -9
- package/src/i18n/bg.ts +7 -9
- package/src/i18n/bn.ts +7 -9
- package/src/i18n/br.ts +7 -9
- package/src/i18n/bs.ts +7 -9
- package/src/i18n/ca.ts +7 -9
- package/src/i18n/cs.ts +7 -9
- package/src/i18n/da.ts +7 -9
- package/src/i18n/de.ts +1 -3
- package/src/i18n/dv.ts +7 -9
- package/src/i18n/dz.ts +5 -7
- package/src/i18n/el.ts +7 -9
- package/src/i18n/en.ts +54 -11
- package/src/i18n/es.ts +6 -8
- package/src/i18n/et.ts +7 -9
- package/src/i18n/fa.ts +7 -9
- package/src/i18n/fi.ts +7 -9
- package/src/i18n/fo.ts +7 -9
- package/src/i18n/fr.ts +6 -8
- package/src/i18n/he.ts +199 -0
- package/src/i18n/hi.ts +7 -9
- package/src/i18n/hr.ts +7 -9
- package/src/i18n/hu.ts +7 -9
- package/src/i18n/hy.ts +7 -9
- package/src/i18n/id.ts +7 -9
- package/src/i18n/is.ts +7 -9
- package/src/i18n/it.ts +7 -9
- package/src/i18n/ja.ts +7 -9
- package/src/i18n/ka.ts +7 -9
- package/src/i18n/km.ts +7 -9
- package/src/i18n/ko.ts +7 -9
- package/src/i18n/lo.ts +7 -9
- package/src/i18n/lt.ts +7 -9
- package/src/i18n/lv.ts +7 -9
- package/src/i18n/mk.ts +7 -9
- package/src/i18n/mn.ts +7 -9
- package/src/i18n/ms.ts +7 -9
- package/src/i18n/my.ts +7 -9
- package/src/i18n/ne.ts +7 -9
- package/src/i18n/nl.ts +7 -9
- package/src/i18n/no.ts +7 -9
- package/src/i18n/pa.ts +7 -9
- package/src/i18n/pl.ts +7 -9
- package/src/i18n/ro.ts +7 -9
- package/src/i18n/ru.ts +7 -9
- package/src/i18n/si.ts +7 -9
- package/src/i18n/sk.ts +7 -9
- package/src/i18n/sl.ts +7 -9
- package/src/i18n/sq.ts +7 -9
- package/src/i18n/sr.ts +7 -9
- package/src/i18n/sv.ts +7 -9
- package/src/i18n/tg.ts +7 -9
- package/src/i18n/th.ts +7 -9
- package/src/i18n/tk.ts +7 -9
- package/src/i18n/tr.ts +7 -9
- package/src/i18n/uk.ts +7 -9
- package/src/i18n/ur.ts +7 -9
- package/src/i18n/uz.ts +7 -9
- package/src/i18n/vi.ts +7 -9
- package/src/i18n/zh.ts +7 -9
- package/src/i18n/zht.ts +7 -9
- package/src/{components/icon.tsx → icons/icon/additional-icons.ts} +8 -74
- package/src/icons/icon/icon.css +3 -0
- package/src/{v2/components → icons/icon}/icon.tsx +67 -12
- package/src/{v2/components/divider-v2.tsx → layout/divider/divider.tsx} +3 -3
- package/src/{v2/components/menu-v2.css → navigation/menu/menu.css} +124 -2
- package/src/{v2/components/menu-v2.tsx → navigation/menu/menu.tsx} +96 -32
- package/src/{v2/components/segmented-control-v2.css → navigation/segmented-control/segmented-control.css} +1 -1
- package/src/{v2/components/segmented-control-v2.tsx → navigation/segmented-control/segmented-control.tsx} +9 -8
- package/src/{v2/components/tabs-v2.css → navigation/tabs/tabs-current.css} +25 -10
- package/src/{components → navigation/tabs}/tabs.css +53 -232
- package/src/navigation/tabs/tabs.tsx +194 -0
- package/src/{v2/components/dialog-v2.css → overlays/dialog/dialog.css} +3 -0
- package/src/{v2/components/dialog-v2.tsx → overlays/dialog/dialog.tsx} +11 -13
- package/src/{v2/components/tooltip-v2.css → overlays/tooltip/tooltip.css} +26 -0
- package/src/{v2/components/tooltip-v2.tsx → overlays/tooltip/tooltip.tsx} +24 -17
- package/src/styles/base.css +5 -0
- package/src/styles/index.css +4 -20
- package/src/styles/tailwind/colors.css +1 -0
- package/src/styles/tailwind/index.css +18 -1
- package/src/styles/theme.css +2 -2
- package/src/{v2/styles → styles/tokens}/colors.css +8 -8
- package/src/{v2/styles → styles/tokens}/theme.css +20 -16
- package/src/theme/context.tsx +19 -11
- package/src/theme/themes/oc-2.json +48 -19
- package/src/theme/v2/default-primitives.ts +8 -8
- package/src/theme/v2/foreground.ts +1 -0
- package/src/theme/v2/mapping.ts +5 -1
- package/src/{components → typography/text-shimmer}/text-shimmer.css +2 -1
- package/src/{components → typography/text-shimmer}/text-shimmer.tsx +1 -0
- package/src/{v2/components/wordmark-v2.tsx → typography/wordmark/wordmark.tsx} +2 -2
- package/dist/components/avatar.d.ts +0 -9
- package/dist/components/button.d.ts +0 -9
- package/dist/components/dialog.d.ts +0 -12
- package/dist/components/dropdown-menu.d.ts +0 -80
- package/dist/components/icon-button.d.ts +0 -10
- package/dist/components/keybind.d.ts +0 -6
- package/dist/components/radio-group.d.ts +0 -16
- package/dist/components/select.d.ts +0 -21
- package/dist/components/tag.d.ts +0 -5
- package/dist/components/toast.d.ts +0 -56
- package/dist/components/tooltip.d.ts +0 -17
- package/dist/v2/components/accordion-v2.d.ts +0 -26
- package/dist/v2/components/badge-v2.d.ts +0 -6
- package/dist/v2/components/button-v2.d.ts +0 -10
- package/dist/v2/components/checkbox-v2.d.ts +0 -10
- package/dist/v2/components/diff-changes-v2.d.ts +0 -11
- package/dist/v2/components/divider-v2.d.ts +0 -5
- package/dist/v2/components/icon-button-v2.d.ts +0 -11
- package/dist/v2/components/inline-input-v2.d.ts +0 -21
- package/dist/v2/components/keybind-v2.d.ts +0 -7
- package/dist/v2/components/loader-v2.d.ts +0 -3
- package/dist/v2/components/menu-v2.d.ts +0 -52
- package/dist/v2/components/progress-circle-v2.d.ts +0 -8
- package/dist/v2/components/radio-v2.d.ts +0 -16
- package/dist/v2/components/split-button-v2.d.ts +0 -5
- package/dist/v2/components/switch-v2.d.ts +0 -7
- package/dist/v2/components/tabs-v2.d.ts +0 -34
- package/dist/v2/components/text-shimmer-v2.d.ts +0 -9
- package/dist/v2/components/textarea-v2.d.ts +0 -7
- package/dist/v2/components/toast-v2.d.ts +0 -57
- package/dist/v2/components/tooltip-v2.d.ts +0 -13
- package/dist/v2/components/wordmark-v2.d.ts +0 -2
- package/src/components/avatar.css +0 -49
- package/src/components/avatar.tsx +0 -55
- package/src/components/button.css +0 -194
- package/src/components/dialog.css +0 -181
- package/src/components/dialog.tsx +0 -72
- package/src/components/diff-changes.tsx +0 -115
- package/src/components/dropdown-menu.css +0 -135
- package/src/components/dropdown-menu.tsx +0 -308
- package/src/components/icon-button.css +0 -181
- package/src/components/icon-button.tsx +0 -29
- package/src/components/icon.css +0 -39
- package/src/components/keybind.css +0 -18
- package/src/components/keybind.tsx +0 -20
- package/src/components/progress-circle.css +0 -16
- package/src/components/progress-circle.tsx +0 -64
- package/src/components/radio-group.css +0 -187
- package/src/components/radio-group.tsx +0 -83
- package/src/components/select.css +0 -201
- package/src/components/select.tsx +0 -174
- package/src/components/switch.css +0 -136
- package/src/components/switch.tsx +0 -29
- package/src/components/tabs.tsx +0 -126
- package/src/components/tag.css +0 -37
- package/src/components/tag.tsx +0 -22
- package/src/components/toast.css +0 -236
- package/src/components/toast.tsx +0 -185
- package/src/components/tooltip.css +0 -74
- package/src/components/tooltip.tsx +0 -163
- package/src/v2/components/accordion-v2.css +0 -139
- package/src/v2/components/accordion-v2.tsx +0 -86
- package/src/v2/components/button-v2.tsx +0 -35
- package/src/v2/components/checkbox-v2.css +0 -184
- package/src/v2/components/checkbox-v2.tsx +0 -65
- package/src/v2/components/diff-changes-v2.css +0 -26
- package/src/v2/components/icon-button-v2.tsx +0 -37
- package/src/v2/components/inline-input-v2.css +0 -225
- package/src/v2/components/inline-input-v2.tsx +0 -107
- package/src/v2/components/progress-circle-v2.css +0 -13
- package/src/v2/components/progress-circle-v2.tsx +0 -52
- package/src/v2/components/switch-v2.tsx +0 -28
- package/src/v2/components/tabs-v2.tsx +0 -149
- package/src/v2/components/text-shimmer-v2.css +0 -125
- package/src/v2/components/text-shimmer-v2.tsx +0 -63
- /package/dist/{components → forms/inline-input}/inline-input.d.ts +0 -0
- /package/dist/{v2/components → navigation}/tab-state-indicator.d.ts +0 -0
- /package/src/{v2/components/icon-button-v2.css → actions/icon-button/icon-button.css} +0 -0
- /package/src/{v2/components/avatar-v2.css → data-display/avatar/avatar.css} +0 -0
- /package/src/{v2/components/project-avatar-v2.css → data-display/project-avatar/project-avatar.css} +0 -0
- /package/src/{v2/components/loader-v2.css → feedback/loader/loader.css} +0 -0
- /package/src/{v2/components/toast-v2.css → feedback/toast/toast.css} +0 -0
- /package/src/{components → forms/inline-input}/inline-input.css +0 -0
- /package/src/{components → forms/inline-input}/inline-input.tsx +0 -0
- /package/src/{v2/components/radio-v2.css → forms/radio/radio.css} +0 -0
- /package/src/{v2/components/textarea-v2.css → forms/textarea/textarea.css} +0 -0
- /package/src/{v2/components/divider-v2.css → layout/divider/divider.css} +0 -0
- /package/src/{v2/components → navigation}/tab-state-indicator.tsx +0 -0
- /package/src/{v2/components/file-tree-v2.css → styles/file-tree.css} +0 -0
- /package/src/{v2/styles/tailwind.css → styles/tokens/index.css} +0 -0
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type ComponentProps } from "solid-js";
|
|
2
|
-
import "./keybind-v2.css";
|
|
3
|
-
export interface KeybindV2Props extends ComponentProps<"div"> {
|
|
4
|
-
keys: string[];
|
|
5
|
-
variant?: "neutral" | "ghost";
|
|
6
|
-
}
|
|
7
|
-
export declare function KeybindV2(props: KeybindV2Props): import("solid-js").JSX.Element;
|
|
@@ -1,52 +0,0 @@
|
|
|
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-v2.css";
|
|
5
|
-
export interface MenuV2ItemProps extends ComponentProps<typeof DropdownMenu.Item> {
|
|
6
|
-
shortcut?: JSX.Element | string;
|
|
7
|
-
badge?: JSX.Element | string;
|
|
8
|
-
}
|
|
9
|
-
declare function MenuV2Item(props: ParentProps<MenuV2ItemProps>): JSX.Element;
|
|
10
|
-
export interface MenuV2CheckboxItemProps extends ComponentProps<typeof DropdownMenu.CheckboxItem> {
|
|
11
|
-
shortcut?: JSX.Element | string;
|
|
12
|
-
badge?: JSX.Element | string;
|
|
13
|
-
}
|
|
14
|
-
declare function MenuV2CheckboxItem(props: ParentProps<MenuV2CheckboxItemProps>): JSX.Element;
|
|
15
|
-
export interface MenuV2RadioItemProps extends ComponentProps<typeof DropdownMenu.RadioItem> {
|
|
16
|
-
shortcut?: JSX.Element | string;
|
|
17
|
-
badge?: JSX.Element | string;
|
|
18
|
-
}
|
|
19
|
-
declare function MenuV2RadioItem(props: ParentProps<MenuV2RadioItemProps>): JSX.Element;
|
|
20
|
-
export interface MenuV2SubTriggerProps extends ComponentProps<typeof DropdownMenu.SubTrigger> {
|
|
21
|
-
shortcut?: JSX.Element | string;
|
|
22
|
-
badge?: JSX.Element | string;
|
|
23
|
-
}
|
|
24
|
-
declare function MenuV2SubTrigger(props: ParentProps<MenuV2SubTriggerProps>): JSX.Element;
|
|
25
|
-
declare function MenuV2SubContent(props: ComponentProps<typeof DropdownMenu.SubContent>): JSX.Element;
|
|
26
|
-
declare function MenuV2GroupLabel(props: ComponentProps<typeof DropdownMenu.GroupLabel>): JSX.Element;
|
|
27
|
-
declare function MenuV2Separator(props: ComponentProps<typeof DropdownMenu.Separator>): JSX.Element;
|
|
28
|
-
declare function MenuV2Content(props: ComponentProps<typeof DropdownMenu.Content>): JSX.Element;
|
|
29
|
-
declare function MenuV2Root(props: ComponentProps<typeof DropdownMenu>): JSX.Element;
|
|
30
|
-
declare function MenuV2ContextRoot(props: ComponentProps<typeof ContextMenu>): JSX.Element;
|
|
31
|
-
declare function MenuV2ContextContent(props: ComponentProps<typeof ContextMenu.Content>): JSX.Element;
|
|
32
|
-
export declare const MenuV2: typeof MenuV2Root & {
|
|
33
|
-
Trigger: typeof import("@kobalte/core/dropdown-menu").Trigger;
|
|
34
|
-
Portal: typeof import("@kobalte/core/context-menu").Portal;
|
|
35
|
-
Content: typeof MenuV2Content;
|
|
36
|
-
Item: typeof MenuV2Item;
|
|
37
|
-
CheckboxItem: typeof MenuV2CheckboxItem;
|
|
38
|
-
RadioGroup: typeof import("@kobalte/core/context-menu").RadioGroup;
|
|
39
|
-
RadioItem: typeof MenuV2RadioItem;
|
|
40
|
-
Group: typeof import("@kobalte/core/context-menu").Group;
|
|
41
|
-
GroupLabel: typeof MenuV2GroupLabel;
|
|
42
|
-
Separator: typeof MenuV2Separator;
|
|
43
|
-
Sub: typeof import("@kobalte/core/context-menu").Sub;
|
|
44
|
-
SubTrigger: typeof MenuV2SubTrigger;
|
|
45
|
-
SubContent: typeof MenuV2SubContent;
|
|
46
|
-
Context: typeof MenuV2ContextRoot & {
|
|
47
|
-
Trigger: typeof import("@kobalte/core/context-menu").Trigger;
|
|
48
|
-
Portal: typeof import("@kobalte/core/context-menu").Portal;
|
|
49
|
-
Content: typeof MenuV2ContextContent;
|
|
50
|
-
};
|
|
51
|
-
};
|
|
52
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { type ComponentProps } from "solid-js";
|
|
2
|
-
import "./progress-circle-v2.css";
|
|
3
|
-
export interface ProgressCircleV2Props extends Pick<ComponentProps<"svg">, "class" | "classList"> {
|
|
4
|
-
percentage: number;
|
|
5
|
-
size?: number;
|
|
6
|
-
strokeWidth?: number;
|
|
7
|
-
}
|
|
8
|
-
export declare function ProgressCircleV2(props: ProgressCircleV2Props): import("solid-js").JSX.Element;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { RadioGroup as Kobalte } from "@kobalte/core/radio-group";
|
|
2
|
-
import { type JSX } from "solid-js";
|
|
3
|
-
import type { ComponentProps, ParentProps } from "solid-js";
|
|
4
|
-
import "./radio-v2.css";
|
|
5
|
-
export interface RadioGroupV2Props extends ParentProps<ComponentProps<typeof Kobalte>> {
|
|
6
|
-
label?: JSX.Element;
|
|
7
|
-
description?: JSX.Element;
|
|
8
|
-
hideLabel?: boolean;
|
|
9
|
-
}
|
|
10
|
-
export declare function RadioGroupV2(props: RadioGroupV2Props): JSX.Element;
|
|
11
|
-
export interface RadioItemV2Props extends ComponentProps<typeof Kobalte.Item> {
|
|
12
|
-
label: JSX.Element;
|
|
13
|
-
description?: JSX.Element;
|
|
14
|
-
hideLabel?: boolean;
|
|
15
|
-
}
|
|
16
|
-
export declare function RadioItemV2(props: RadioItemV2Props): JSX.Element;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { type ComponentProps, type ParentProps } from "solid-js";
|
|
2
|
-
import "./split-button-v2.css";
|
|
3
|
-
export declare function SplitButtonV2(props: ParentProps<ComponentProps<"div">>): import("solid-js").JSX.Element;
|
|
4
|
-
export declare function SplitButtonV2Action(props: ComponentProps<"button">): import("solid-js").JSX.Element;
|
|
5
|
-
export declare function SplitButtonV2MenuTrigger(props: ComponentProps<"button">): import("solid-js").JSX.Element;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Switch as Kobalte } from "@kobalte/core/switch";
|
|
2
|
-
import type { ComponentProps, ParentProps } from "solid-js";
|
|
3
|
-
import "./switch-v2.css";
|
|
4
|
-
export interface SwitchProps extends ParentProps<ComponentProps<typeof Kobalte>> {
|
|
5
|
-
hideLabel?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare function Switch(props: SwitchProps): import("solid-js").JSX.Element;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { Tabs as Kobalte } from "@kobalte/core/tabs";
|
|
2
|
-
import { type JSX } from "solid-js";
|
|
3
|
-
import type { ComponentProps, ParentProps, Component } from "solid-js";
|
|
4
|
-
import "./tabs-v2.css";
|
|
5
|
-
export interface TabsV2Props extends ComponentProps<typeof Kobalte> {
|
|
6
|
-
variant?: "normal" | "pill" | "settings";
|
|
7
|
-
orientation?: "horizontal" | "vertical";
|
|
8
|
-
}
|
|
9
|
-
export interface TabsV2ListProps extends ComponentProps<typeof Kobalte.List> {
|
|
10
|
-
}
|
|
11
|
-
export interface TabsV2TriggerProps extends ComponentProps<typeof Kobalte.Trigger> {
|
|
12
|
-
onMiddleClick?: () => void;
|
|
13
|
-
/** Optional subtext shown beside the primary content (muted style) */
|
|
14
|
-
subtext?: JSX.Element | string;
|
|
15
|
-
}
|
|
16
|
-
export interface TabsV2CloseButtonProps extends ComponentProps<"div"> {
|
|
17
|
-
}
|
|
18
|
-
export interface TabsV2ContentProps extends ComponentProps<typeof Kobalte.Content> {
|
|
19
|
-
}
|
|
20
|
-
declare function TabsV2Root(props: TabsV2Props): JSX.Element;
|
|
21
|
-
declare function TabsV2List(props: TabsV2ListProps): JSX.Element;
|
|
22
|
-
declare function TabsV2Trigger(props: ParentProps<TabsV2TriggerProps>): JSX.Element;
|
|
23
|
-
declare function TabsV2CloseButton(props: TabsV2CloseButtonProps): JSX.Element;
|
|
24
|
-
declare function TabsV2Content(props: ParentProps<TabsV2ContentProps>): JSX.Element;
|
|
25
|
-
export declare const TabsV2: typeof TabsV2Root & {
|
|
26
|
-
List: typeof TabsV2List;
|
|
27
|
-
Trigger: typeof TabsV2Trigger;
|
|
28
|
-
CloseButton: typeof TabsV2CloseButton;
|
|
29
|
-
Content: typeof TabsV2Content;
|
|
30
|
-
SectionTitle: Component<{
|
|
31
|
-
children?: JSX.Element;
|
|
32
|
-
}>;
|
|
33
|
-
};
|
|
34
|
-
export {};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type ValidComponent } from "solid-js";
|
|
2
|
-
import "./text-shimmer-v2.css";
|
|
3
|
-
export declare const TextShimmerV2: <T extends ValidComponent = "span">(props: {
|
|
4
|
-
text: string;
|
|
5
|
-
class?: string;
|
|
6
|
-
as?: T;
|
|
7
|
-
active?: boolean;
|
|
8
|
-
offset?: number;
|
|
9
|
-
}) => import("solid-js").JSX.Element;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type ComponentProps } from "solid-js";
|
|
2
|
-
import "./textarea-v2.css";
|
|
3
|
-
export interface TextareaV2Props extends ComponentProps<"textarea"> {
|
|
4
|
-
/** Error styling for the field and value text. */
|
|
5
|
-
invalid?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare function TextareaV2(props: TextareaV2Props): import("solid-js").JSX.Element;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { type ToasterProps } from "solid-sonner";
|
|
2
|
-
import type { ComponentProps, JSX } from "solid-js";
|
|
3
|
-
import "./button-v2.css";
|
|
4
|
-
import "./toast-v2.css";
|
|
5
|
-
export interface ToastV2RegionProps extends ToasterProps {
|
|
6
|
-
}
|
|
7
|
-
declare function ToastV2Region(props: ToastV2RegionProps): JSX.Element;
|
|
8
|
-
export interface ToastV2RootComponentProps {
|
|
9
|
-
toastId: number;
|
|
10
|
-
children?: JSX.Element;
|
|
11
|
-
}
|
|
12
|
-
declare function ToastV2Root(props: ToastV2RootComponentProps): JSX.Element;
|
|
13
|
-
declare function ToastV2Icon(props: ComponentProps<"div">): JSX.Element;
|
|
14
|
-
declare function ToastV2Content(props: ComponentProps<"div">): JSX.Element;
|
|
15
|
-
declare function ToastV2Title(props: ComponentProps<"div">): JSX.Element;
|
|
16
|
-
declare function ToastV2Description(props: ComponentProps<"div">): JSX.Element;
|
|
17
|
-
declare function ToastV2Actions(props: ComponentProps<"div">): JSX.Element;
|
|
18
|
-
declare function ToastV2CloseButton(props: ComponentProps<"button">): JSX.Element;
|
|
19
|
-
export declare const ToastV2: typeof ToastV2Root & {
|
|
20
|
-
Region: typeof ToastV2Region;
|
|
21
|
-
Icon: typeof ToastV2Icon;
|
|
22
|
-
Content: typeof ToastV2Content;
|
|
23
|
-
Title: typeof ToastV2Title;
|
|
24
|
-
Description: typeof ToastV2Description;
|
|
25
|
-
Actions: typeof ToastV2Actions;
|
|
26
|
-
CloseButton: typeof ToastV2CloseButton;
|
|
27
|
-
};
|
|
28
|
-
export declare const toasterV2: {
|
|
29
|
-
show(render: (props: {
|
|
30
|
-
toastId: number;
|
|
31
|
-
}) => JSX.Element, options?: {
|
|
32
|
-
duration?: number;
|
|
33
|
-
persistent?: boolean;
|
|
34
|
-
}): number;
|
|
35
|
-
dismiss(toastId?: number): string | number | undefined;
|
|
36
|
-
};
|
|
37
|
-
export interface ToastV2Action {
|
|
38
|
-
label: string;
|
|
39
|
-
variant?: "primary" | "secondary";
|
|
40
|
-
onClick: "dismiss" | (() => void);
|
|
41
|
-
}
|
|
42
|
-
export interface ToastV2Options {
|
|
43
|
-
title?: string;
|
|
44
|
-
description?: string;
|
|
45
|
-
icon?: JSX.Element;
|
|
46
|
-
variant?: "default" | "success" | "error" | "loading";
|
|
47
|
-
duration?: number;
|
|
48
|
-
persistent?: boolean;
|
|
49
|
-
actions?: ToastV2Action[];
|
|
50
|
-
}
|
|
51
|
-
export declare function showToastV2(options: ToastV2Options | string): number;
|
|
52
|
-
export interface ToastV2PromiseOptions<T, U = unknown> {
|
|
53
|
-
loading?: JSX.Element;
|
|
54
|
-
success?: (data: T) => JSX.Element;
|
|
55
|
-
error?: (error: U) => JSX.Element;
|
|
56
|
-
}
|
|
57
|
-
export {};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { Tooltip as KobalteTooltip } from "@kobalte/core/tooltip";
|
|
2
|
-
import { type JSX } from "solid-js";
|
|
3
|
-
import type { ComponentProps } from "solid-js";
|
|
4
|
-
import "./tooltip-v2.css";
|
|
5
|
-
export interface TooltipV2Props extends ComponentProps<typeof KobalteTooltip> {
|
|
6
|
-
value: JSX.Element;
|
|
7
|
-
class?: string;
|
|
8
|
-
contentClass?: string;
|
|
9
|
-
contentStyle?: JSX.CSSProperties;
|
|
10
|
-
inactive?: boolean;
|
|
11
|
-
forceOpen?: boolean;
|
|
12
|
-
}
|
|
13
|
-
export declare function TooltipV2(props: TooltipV2Props): JSX.Element;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
[data-component="avatar"] {
|
|
2
|
-
--avatar-bg: var(--color-surface-info-base);
|
|
3
|
-
--avatar-fg: var(--color-text-base);
|
|
4
|
-
display: flex;
|
|
5
|
-
align-items: center;
|
|
6
|
-
justify-content: center;
|
|
7
|
-
flex-shrink: 0;
|
|
8
|
-
border-radius: var(--radius-sm);
|
|
9
|
-
border: 1px solid var(--color-border-weak-base);
|
|
10
|
-
font-family: var(--font-mono);
|
|
11
|
-
font-weight: 500;
|
|
12
|
-
text-transform: uppercase;
|
|
13
|
-
background-color: var(--avatar-bg);
|
|
14
|
-
color: var(--avatar-fg);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
[data-component="avatar"][data-has-image] {
|
|
18
|
-
background-color: transparent;
|
|
19
|
-
border: none;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
[data-component="avatar"][data-size="small"] {
|
|
23
|
-
width: 1.25rem;
|
|
24
|
-
height: 1.25rem;
|
|
25
|
-
font-size: 0.75rem;
|
|
26
|
-
line-height: 1;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
[data-component="avatar"][data-size="normal"] {
|
|
30
|
-
width: 1.5rem;
|
|
31
|
-
height: 1.5rem;
|
|
32
|
-
font-size: 1.125rem;
|
|
33
|
-
line-height: 1.5rem;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
[data-component="avatar"][data-size="large"] {
|
|
37
|
-
width: 2rem;
|
|
38
|
-
height: 2rem;
|
|
39
|
-
font-size: 1.25rem;
|
|
40
|
-
line-height: 2rem;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
[data-component="avatar"] [data-slot="avatar-image"] {
|
|
44
|
-
width: 100%;
|
|
45
|
-
height: 100%;
|
|
46
|
-
display: block;
|
|
47
|
-
object-fit: cover;
|
|
48
|
-
border-radius: inherit;
|
|
49
|
-
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import { type ComponentProps, splitProps, Show } from "solid-js"
|
|
2
|
-
|
|
3
|
-
const segmenter =
|
|
4
|
-
typeof Intl !== "undefined" && "Segmenter" in Intl
|
|
5
|
-
? new Intl.Segmenter(undefined, { granularity: "grapheme" })
|
|
6
|
-
: undefined
|
|
7
|
-
|
|
8
|
-
function first(value: string) {
|
|
9
|
-
if (!value) return ""
|
|
10
|
-
if (!segmenter) return Array.from(value)[0] ?? ""
|
|
11
|
-
return segmenter.segment(value)[Symbol.iterator]().next().value?.segment ?? Array.from(value)[0] ?? ""
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export interface AvatarProps extends ComponentProps<"div"> {
|
|
15
|
-
fallback: string
|
|
16
|
-
src?: string
|
|
17
|
-
background?: string
|
|
18
|
-
foreground?: string
|
|
19
|
-
size?: "small" | "normal" | "large"
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export function Avatar(props: AvatarProps) {
|
|
23
|
-
const [split, rest] = splitProps(props, [
|
|
24
|
-
"fallback",
|
|
25
|
-
"src",
|
|
26
|
-
"background",
|
|
27
|
-
"foreground",
|
|
28
|
-
"size",
|
|
29
|
-
"class",
|
|
30
|
-
"classList",
|
|
31
|
-
"style",
|
|
32
|
-
])
|
|
33
|
-
const src = split.src // did this so i can zero it out to test fallback
|
|
34
|
-
return (
|
|
35
|
-
<div
|
|
36
|
-
{...rest}
|
|
37
|
-
data-component="avatar"
|
|
38
|
-
data-size={split.size || "normal"}
|
|
39
|
-
data-has-image={src ? "" : undefined}
|
|
40
|
-
classList={{
|
|
41
|
-
...split.classList,
|
|
42
|
-
[split.class ?? ""]: !!split.class,
|
|
43
|
-
}}
|
|
44
|
-
style={{
|
|
45
|
-
...(typeof split.style === "object" ? split.style : {}),
|
|
46
|
-
...(!src && split.background ? { "--avatar-bg": split.background } : {}),
|
|
47
|
-
...(!src && split.foreground ? { "--avatar-fg": split.foreground } : {}),
|
|
48
|
-
}}
|
|
49
|
-
>
|
|
50
|
-
<Show when={src} fallback={first(split.fallback)}>
|
|
51
|
-
{(src) => <img src={src()} draggable={false} data-slot="avatar-image" />}
|
|
52
|
-
</Show>
|
|
53
|
-
</div>
|
|
54
|
-
)
|
|
55
|
-
}
|
|
@@ -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
|
-
}
|