@urbicon-ui/blocks 6.37.2 → 6.38.0
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/components/AvatarGroup/AvatarGroup.svelte +60 -0
- package/dist/components/AvatarGroup/AvatarGroup.svelte.d.ts +4 -0
- package/dist/components/AvatarGroup/avatar-group.variants.d.ts +20 -0
- package/dist/components/AvatarGroup/avatar-group.variants.js +21 -0
- package/dist/components/AvatarGroup/index.d.ts +57 -0
- package/dist/components/AvatarGroup/index.js +2 -0
- package/dist/components/Calendar/calendar.variants.d.ts +126 -126
- package/dist/components/CopyButton/CopyButton.svelte +139 -0
- package/dist/components/CopyButton/CopyButton.svelte.d.ts +4 -0
- package/dist/components/CopyButton/copy-button.variants.d.ts +29 -0
- package/dist/components/CopyButton/copy-button.variants.js +32 -0
- package/dist/components/CopyButton/index.d.ts +55 -0
- package/dist/components/CopyButton/index.js +2 -0
- package/dist/components/FileUpload/FileUpload.svelte.d.ts +1 -1
- package/dist/components/PinInput/pin-input.variants.d.ts +7 -7
- package/dist/components/Planner/planner.variants.d.ts +34 -34
- package/dist/components/TimeInput/time-input.variants.d.ts +9 -9
- package/dist/components/index.d.ts +4 -0
- package/dist/components/index.js +2 -0
- package/dist/i18n/index.d.ts +6 -390
- package/dist/primitives/Accordion/accordion.variants.d.ts +7 -7
- package/dist/primitives/Alert/alert.variants.d.ts +8 -8
- package/dist/primitives/Avatar/avatar.variants.d.ts +12 -12
- package/dist/primitives/Badge/badge.variants.d.ts +10 -10
- package/dist/primitives/Button/button.variants.d.ts +4 -4
- package/dist/primitives/Card/card.variants.d.ts +5 -5
- package/dist/primitives/Checkbox/checkbox.variants.d.ts +7 -7
- package/dist/primitives/Collapsible/collapsible.variants.d.ts +6 -6
- package/dist/primitives/Combobox/combobox.variants.d.ts +50 -50
- package/dist/primitives/Input/input.variants.d.ts +27 -27
- package/dist/primitives/JourneyTimeline/journey-timeline.variants.d.ts +22 -22
- package/dist/primitives/Kbd/Kbd.svelte +44 -0
- package/dist/primitives/Kbd/Kbd.svelte.d.ts +4 -0
- package/dist/primitives/Kbd/index.d.ts +51 -0
- package/dist/primitives/Kbd/index.js +2 -0
- package/dist/primitives/Kbd/kbd.variants.d.ts +20 -0
- package/dist/primitives/Kbd/kbd.variants.js +27 -0
- package/dist/primitives/Progress/progress.variants.d.ts +11 -11
- package/dist/primitives/RadioGroup/radioGroup.variants.d.ts +6 -6
- package/dist/primitives/Select/select.variants.d.ts +34 -34
- package/dist/primitives/Skeleton/skeleton.variants.d.ts +3 -3
- package/dist/primitives/Spinner/spinner.variants.d.ts +48 -48
- package/dist/primitives/Stepper/stepper.variants.d.ts +11 -11
- package/dist/primitives/Textarea/textarea.variants.d.ts +21 -21
- package/dist/primitives/Toast/toast.variants.d.ts +12 -12
- package/dist/primitives/Toggle/toggle.variants.d.ts +7 -7
- package/dist/primitives/Toolbar/toolbar.variants.d.ts +6 -6
- package/dist/primitives/Tooltip/tooltip.variants.d.ts +3 -3
- package/dist/primitives/index.d.ts +2 -0
- package/dist/primitives/index.js +1 -0
- package/dist/translations/de.d.ts +4 -0
- package/dist/translations/de.js +4 -0
- package/dist/translations/en.d.ts +4 -0
- package/dist/translations/en.js +4 -0
- package/package.json +3 -3
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const avatarVariants: ((props?: {
|
|
3
|
-
size?: "
|
|
3
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
4
4
|
variant?: "rounded" | "circle" | "square" | undefined;
|
|
5
5
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
6
|
-
status?: "
|
|
6
|
+
status?: "online" | "offline" | "away" | "busy" | undefined;
|
|
7
7
|
statusPosition?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | undefined;
|
|
8
8
|
pulse?: boolean | undefined;
|
|
9
9
|
ring?: boolean | undefined;
|
|
@@ -11,10 +11,10 @@ export declare const avatarVariants: ((props?: {
|
|
|
11
11
|
interactive?: boolean | undefined;
|
|
12
12
|
} | undefined) => {
|
|
13
13
|
base: (props?: ({
|
|
14
|
-
size?: "
|
|
14
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
15
15
|
variant?: "rounded" | "circle" | "square" | undefined;
|
|
16
16
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
17
|
-
status?: "
|
|
17
|
+
status?: "online" | "offline" | "away" | "busy" | undefined;
|
|
18
18
|
statusPosition?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | undefined;
|
|
19
19
|
pulse?: boolean | undefined;
|
|
20
20
|
ring?: boolean | undefined;
|
|
@@ -24,10 +24,10 @@ export declare const avatarVariants: ((props?: {
|
|
|
24
24
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
25
25
|
}) | undefined) => string;
|
|
26
26
|
frame: (props?: ({
|
|
27
|
-
size?: "
|
|
27
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
28
28
|
variant?: "rounded" | "circle" | "square" | undefined;
|
|
29
29
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
30
|
-
status?: "
|
|
30
|
+
status?: "online" | "offline" | "away" | "busy" | undefined;
|
|
31
31
|
statusPosition?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | undefined;
|
|
32
32
|
pulse?: boolean | undefined;
|
|
33
33
|
ring?: boolean | undefined;
|
|
@@ -37,10 +37,10 @@ export declare const avatarVariants: ((props?: {
|
|
|
37
37
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
38
38
|
}) | undefined) => string;
|
|
39
39
|
image: (props?: ({
|
|
40
|
-
size?: "
|
|
40
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
41
41
|
variant?: "rounded" | "circle" | "square" | undefined;
|
|
42
42
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
43
|
-
status?: "
|
|
43
|
+
status?: "online" | "offline" | "away" | "busy" | undefined;
|
|
44
44
|
statusPosition?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | undefined;
|
|
45
45
|
pulse?: boolean | undefined;
|
|
46
46
|
ring?: boolean | undefined;
|
|
@@ -50,10 +50,10 @@ export declare const avatarVariants: ((props?: {
|
|
|
50
50
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
51
51
|
}) | undefined) => string;
|
|
52
52
|
fallback: (props?: ({
|
|
53
|
-
size?: "
|
|
53
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
54
54
|
variant?: "rounded" | "circle" | "square" | undefined;
|
|
55
55
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
56
|
-
status?: "
|
|
56
|
+
status?: "online" | "offline" | "away" | "busy" | undefined;
|
|
57
57
|
statusPosition?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | undefined;
|
|
58
58
|
pulse?: boolean | undefined;
|
|
59
59
|
ring?: boolean | undefined;
|
|
@@ -63,10 +63,10 @@ export declare const avatarVariants: ((props?: {
|
|
|
63
63
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
64
64
|
}) | undefined) => string;
|
|
65
65
|
status: (props?: ({
|
|
66
|
-
size?: "
|
|
66
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
67
67
|
variant?: "rounded" | "circle" | "square" | undefined;
|
|
68
68
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
69
|
-
status?: "
|
|
69
|
+
status?: "online" | "offline" | "away" | "busy" | undefined;
|
|
70
70
|
statusPosition?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | undefined;
|
|
71
71
|
pulse?: boolean | undefined;
|
|
72
72
|
ring?: boolean | undefined;
|
|
@@ -3,8 +3,8 @@ export declare const PLACEMENT_VALUES: readonly ["top", "top-start", "top-end",
|
|
|
3
3
|
export declare const badgeVariants: ((props?: {
|
|
4
4
|
tier?: "commit" | "modify" | undefined;
|
|
5
5
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
6
|
-
variant?: "
|
|
7
|
-
size?: "
|
|
6
|
+
variant?: "filled" | "dot" | "soft" | "outlined" | undefined;
|
|
7
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
8
8
|
placement?: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | undefined;
|
|
9
9
|
counter?: boolean | undefined;
|
|
10
10
|
pulse?: boolean | undefined;
|
|
@@ -16,8 +16,8 @@ export declare const badgeVariants: ((props?: {
|
|
|
16
16
|
base: (props?: ({
|
|
17
17
|
tier?: "commit" | "modify" | undefined;
|
|
18
18
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
19
|
-
variant?: "
|
|
20
|
-
size?: "
|
|
19
|
+
variant?: "filled" | "dot" | "soft" | "outlined" | undefined;
|
|
20
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
21
21
|
placement?: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | undefined;
|
|
22
22
|
counter?: boolean | undefined;
|
|
23
23
|
pulse?: boolean | undefined;
|
|
@@ -31,8 +31,8 @@ export declare const badgeVariants: ((props?: {
|
|
|
31
31
|
content: (props?: ({
|
|
32
32
|
tier?: "commit" | "modify" | undefined;
|
|
33
33
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
34
|
-
variant?: "
|
|
35
|
-
size?: "
|
|
34
|
+
variant?: "filled" | "dot" | "soft" | "outlined" | undefined;
|
|
35
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
36
36
|
placement?: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | undefined;
|
|
37
37
|
counter?: boolean | undefined;
|
|
38
38
|
pulse?: boolean | undefined;
|
|
@@ -46,8 +46,8 @@ export declare const badgeVariants: ((props?: {
|
|
|
46
46
|
removeButton: (props?: ({
|
|
47
47
|
tier?: "commit" | "modify" | undefined;
|
|
48
48
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
49
|
-
variant?: "
|
|
50
|
-
size?: "
|
|
49
|
+
variant?: "filled" | "dot" | "soft" | "outlined" | undefined;
|
|
50
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
51
51
|
placement?: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | undefined;
|
|
52
52
|
counter?: boolean | undefined;
|
|
53
53
|
pulse?: boolean | undefined;
|
|
@@ -61,8 +61,8 @@ export declare const badgeVariants: ((props?: {
|
|
|
61
61
|
removeIcon: (props?: ({
|
|
62
62
|
tier?: "commit" | "modify" | undefined;
|
|
63
63
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
64
|
-
variant?: "
|
|
65
|
-
size?: "
|
|
64
|
+
variant?: "filled" | "dot" | "soft" | "outlined" | undefined;
|
|
65
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
66
66
|
placement?: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | undefined;
|
|
67
67
|
counter?: boolean | undefined;
|
|
68
68
|
pulse?: boolean | undefined;
|
|
@@ -4,7 +4,7 @@ export declare const buttonVariants: ((props?: {
|
|
|
4
4
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
5
5
|
pressed?: boolean | undefined;
|
|
6
6
|
variant?: "text" | "ghost" | "filled" | "outlined" | undefined;
|
|
7
|
-
size?: "
|
|
7
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xs" | undefined;
|
|
8
8
|
loading?: boolean | undefined;
|
|
9
9
|
loadingPlacement?: "start" | "end" | "overlay" | undefined;
|
|
10
10
|
active?: boolean | undefined;
|
|
@@ -15,7 +15,7 @@ export declare const buttonVariants: ((props?: {
|
|
|
15
15
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
16
16
|
pressed?: boolean | undefined;
|
|
17
17
|
variant?: "text" | "ghost" | "filled" | "outlined" | undefined;
|
|
18
|
-
size?: "
|
|
18
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xs" | undefined;
|
|
19
19
|
loading?: boolean | undefined;
|
|
20
20
|
loadingPlacement?: "start" | "end" | "overlay" | undefined;
|
|
21
21
|
active?: boolean | undefined;
|
|
@@ -28,7 +28,7 @@ export declare const buttonVariants: ((props?: {
|
|
|
28
28
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
29
29
|
pressed?: boolean | undefined;
|
|
30
30
|
variant?: "text" | "ghost" | "filled" | "outlined" | undefined;
|
|
31
|
-
size?: "
|
|
31
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xs" | undefined;
|
|
32
32
|
loading?: boolean | undefined;
|
|
33
33
|
loadingPlacement?: "start" | "end" | "overlay" | undefined;
|
|
34
34
|
active?: boolean | undefined;
|
|
@@ -41,7 +41,7 @@ export declare const buttonVariants: ((props?: {
|
|
|
41
41
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
42
42
|
pressed?: boolean | undefined;
|
|
43
43
|
variant?: "text" | "ghost" | "filled" | "outlined" | undefined;
|
|
44
|
-
size?: "
|
|
44
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xs" | undefined;
|
|
45
45
|
loading?: boolean | undefined;
|
|
46
46
|
loadingPlacement?: "start" | "end" | "overlay" | undefined;
|
|
47
47
|
active?: boolean | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const cardVariants: ((props?: {
|
|
3
|
-
variant?: "
|
|
3
|
+
variant?: "outlined" | "quiet" | "elevated" | "floating" | undefined;
|
|
4
4
|
padding?: "none" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
5
5
|
dividers?: boolean | undefined;
|
|
6
6
|
interactive?: boolean | undefined;
|
|
@@ -8,7 +8,7 @@ export declare const cardVariants: ((props?: {
|
|
|
8
8
|
disabled?: boolean | undefined;
|
|
9
9
|
} | undefined) => {
|
|
10
10
|
base: (props?: ({
|
|
11
|
-
variant?: "
|
|
11
|
+
variant?: "outlined" | "quiet" | "elevated" | "floating" | undefined;
|
|
12
12
|
padding?: "none" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
13
13
|
dividers?: boolean | undefined;
|
|
14
14
|
interactive?: boolean | undefined;
|
|
@@ -18,7 +18,7 @@ export declare const cardVariants: ((props?: {
|
|
|
18
18
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
19
19
|
}) | undefined) => string;
|
|
20
20
|
header: (props?: ({
|
|
21
|
-
variant?: "
|
|
21
|
+
variant?: "outlined" | "quiet" | "elevated" | "floating" | undefined;
|
|
22
22
|
padding?: "none" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
23
23
|
dividers?: boolean | undefined;
|
|
24
24
|
interactive?: boolean | undefined;
|
|
@@ -28,7 +28,7 @@ export declare const cardVariants: ((props?: {
|
|
|
28
28
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
29
29
|
}) | undefined) => string;
|
|
30
30
|
content: (props?: ({
|
|
31
|
-
variant?: "
|
|
31
|
+
variant?: "outlined" | "quiet" | "elevated" | "floating" | undefined;
|
|
32
32
|
padding?: "none" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
33
33
|
dividers?: boolean | undefined;
|
|
34
34
|
interactive?: boolean | undefined;
|
|
@@ -38,7 +38,7 @@ export declare const cardVariants: ((props?: {
|
|
|
38
38
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
39
39
|
}) | undefined) => string;
|
|
40
40
|
footer: (props?: ({
|
|
41
|
-
variant?: "
|
|
41
|
+
variant?: "outlined" | "quiet" | "elevated" | "floating" | undefined;
|
|
42
42
|
padding?: "none" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
43
43
|
dividers?: boolean | undefined;
|
|
44
44
|
interactive?: boolean | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const checkboxVariants: ((props?: {
|
|
3
3
|
tier?: "commit" | "modify" | undefined;
|
|
4
|
-
size?: "
|
|
4
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
5
5
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
6
6
|
variant?: "ghost" | "filled" | "outlined" | undefined;
|
|
7
7
|
checked?: boolean | undefined;
|
|
@@ -11,7 +11,7 @@ export declare const checkboxVariants: ((props?: {
|
|
|
11
11
|
} | undefined) => {
|
|
12
12
|
wrapper: (props?: ({
|
|
13
13
|
tier?: "commit" | "modify" | undefined;
|
|
14
|
-
size?: "
|
|
14
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
15
15
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
16
16
|
variant?: "ghost" | "filled" | "outlined" | undefined;
|
|
17
17
|
checked?: boolean | undefined;
|
|
@@ -23,7 +23,7 @@ export declare const checkboxVariants: ((props?: {
|
|
|
23
23
|
}) | undefined) => string;
|
|
24
24
|
control: (props?: ({
|
|
25
25
|
tier?: "commit" | "modify" | undefined;
|
|
26
|
-
size?: "
|
|
26
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
27
27
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
28
28
|
variant?: "ghost" | "filled" | "outlined" | undefined;
|
|
29
29
|
checked?: boolean | undefined;
|
|
@@ -35,7 +35,7 @@ export declare const checkboxVariants: ((props?: {
|
|
|
35
35
|
}) | undefined) => string;
|
|
36
36
|
box: (props?: ({
|
|
37
37
|
tier?: "commit" | "modify" | undefined;
|
|
38
|
-
size?: "
|
|
38
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
39
39
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
40
40
|
variant?: "ghost" | "filled" | "outlined" | undefined;
|
|
41
41
|
checked?: boolean | undefined;
|
|
@@ -47,7 +47,7 @@ export declare const checkboxVariants: ((props?: {
|
|
|
47
47
|
}) | undefined) => string;
|
|
48
48
|
icon: (props?: ({
|
|
49
49
|
tier?: "commit" | "modify" | undefined;
|
|
50
|
-
size?: "
|
|
50
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
51
51
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
52
52
|
variant?: "ghost" | "filled" | "outlined" | undefined;
|
|
53
53
|
checked?: boolean | undefined;
|
|
@@ -59,7 +59,7 @@ export declare const checkboxVariants: ((props?: {
|
|
|
59
59
|
}) | undefined) => string;
|
|
60
60
|
label: (props?: ({
|
|
61
61
|
tier?: "commit" | "modify" | undefined;
|
|
62
|
-
size?: "
|
|
62
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
63
63
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
64
64
|
variant?: "ghost" | "filled" | "outlined" | undefined;
|
|
65
65
|
checked?: boolean | undefined;
|
|
@@ -71,7 +71,7 @@ export declare const checkboxVariants: ((props?: {
|
|
|
71
71
|
}) | undefined) => string;
|
|
72
72
|
message: (props?: ({
|
|
73
73
|
tier?: "commit" | "modify" | undefined;
|
|
74
|
-
size?: "
|
|
74
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
75
75
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
76
76
|
variant?: "ghost" | "filled" | "outlined" | undefined;
|
|
77
77
|
checked?: boolean | undefined;
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const collapsibleVariants: ((props?: {
|
|
3
|
-
variant?: "default" | "
|
|
3
|
+
variant?: "default" | "card" | "ghost" | undefined;
|
|
4
4
|
size?: "sm" | "md" | "lg" | undefined;
|
|
5
5
|
} | undefined) => {
|
|
6
6
|
base: (props?: ({
|
|
7
|
-
variant?: "default" | "
|
|
7
|
+
variant?: "default" | "card" | "ghost" | undefined;
|
|
8
8
|
size?: "sm" | "md" | "lg" | undefined;
|
|
9
9
|
} & {
|
|
10
10
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
11
11
|
}) | undefined) => string;
|
|
12
12
|
trigger: (props?: ({
|
|
13
|
-
variant?: "default" | "
|
|
13
|
+
variant?: "default" | "card" | "ghost" | undefined;
|
|
14
14
|
size?: "sm" | "md" | "lg" | undefined;
|
|
15
15
|
} & {
|
|
16
16
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
17
17
|
}) | undefined) => string;
|
|
18
18
|
chevron: (props?: ({
|
|
19
|
-
variant?: "default" | "
|
|
19
|
+
variant?: "default" | "card" | "ghost" | undefined;
|
|
20
20
|
size?: "sm" | "md" | "lg" | undefined;
|
|
21
21
|
} & {
|
|
22
22
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
23
23
|
}) | undefined) => string;
|
|
24
24
|
content: (props?: ({
|
|
25
|
-
variant?: "default" | "
|
|
25
|
+
variant?: "default" | "card" | "ghost" | undefined;
|
|
26
26
|
size?: "sm" | "md" | "lg" | undefined;
|
|
27
27
|
} & {
|
|
28
28
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
29
29
|
}) | undefined) => string;
|
|
30
30
|
contentInner: (props?: ({
|
|
31
|
-
variant?: "default" | "
|
|
31
|
+
variant?: "default" | "card" | "ghost" | undefined;
|
|
32
32
|
size?: "sm" | "md" | "lg" | undefined;
|
|
33
33
|
} & {
|
|
34
34
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const comboboxVariants: ((props?: {
|
|
3
3
|
tier?: "commit" | "modify" | undefined;
|
|
4
|
-
variant?: "ghost" | "
|
|
5
|
-
size?: "
|
|
4
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
5
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
6
6
|
open?: boolean | undefined;
|
|
7
7
|
disabled?: boolean | undefined;
|
|
8
8
|
} | undefined) => {
|
|
9
9
|
base: (props?: ({
|
|
10
10
|
tier?: "commit" | "modify" | undefined;
|
|
11
|
-
variant?: "ghost" | "
|
|
12
|
-
size?: "
|
|
11
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
12
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
13
13
|
open?: boolean | undefined;
|
|
14
14
|
disabled?: boolean | undefined;
|
|
15
15
|
} & {
|
|
@@ -17,8 +17,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
17
17
|
}) | undefined) => string;
|
|
18
18
|
label: (props?: ({
|
|
19
19
|
tier?: "commit" | "modify" | undefined;
|
|
20
|
-
variant?: "ghost" | "
|
|
21
|
-
size?: "
|
|
20
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
21
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
22
22
|
open?: boolean | undefined;
|
|
23
23
|
disabled?: boolean | undefined;
|
|
24
24
|
} & {
|
|
@@ -26,8 +26,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
26
26
|
}) | undefined) => string;
|
|
27
27
|
requiredMark: (props?: ({
|
|
28
28
|
tier?: "commit" | "modify" | undefined;
|
|
29
|
-
variant?: "ghost" | "
|
|
30
|
-
size?: "
|
|
29
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
30
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
31
31
|
open?: boolean | undefined;
|
|
32
32
|
disabled?: boolean | undefined;
|
|
33
33
|
} & {
|
|
@@ -35,8 +35,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
35
35
|
}) | undefined) => string;
|
|
36
36
|
inputWrapper: (props?: ({
|
|
37
37
|
tier?: "commit" | "modify" | undefined;
|
|
38
|
-
variant?: "ghost" | "
|
|
39
|
-
size?: "
|
|
38
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
39
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
40
40
|
open?: boolean | undefined;
|
|
41
41
|
disabled?: boolean | undefined;
|
|
42
42
|
} & {
|
|
@@ -44,8 +44,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
44
44
|
}) | undefined) => string;
|
|
45
45
|
input: (props?: ({
|
|
46
46
|
tier?: "commit" | "modify" | undefined;
|
|
47
|
-
variant?: "ghost" | "
|
|
48
|
-
size?: "
|
|
47
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
48
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
49
49
|
open?: boolean | undefined;
|
|
50
50
|
disabled?: boolean | undefined;
|
|
51
51
|
} & {
|
|
@@ -53,8 +53,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
53
53
|
}) | undefined) => string;
|
|
54
54
|
message: (props?: ({
|
|
55
55
|
tier?: "commit" | "modify" | undefined;
|
|
56
|
-
variant?: "ghost" | "
|
|
57
|
-
size?: "
|
|
56
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
57
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
58
58
|
open?: boolean | undefined;
|
|
59
59
|
disabled?: boolean | undefined;
|
|
60
60
|
} & {
|
|
@@ -62,8 +62,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
62
62
|
}) | undefined) => string;
|
|
63
63
|
helper: (props?: ({
|
|
64
64
|
tier?: "commit" | "modify" | undefined;
|
|
65
|
-
variant?: "ghost" | "
|
|
66
|
-
size?: "
|
|
65
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
66
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
67
67
|
open?: boolean | undefined;
|
|
68
68
|
disabled?: boolean | undefined;
|
|
69
69
|
} & {
|
|
@@ -71,8 +71,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
71
71
|
}) | undefined) => string;
|
|
72
72
|
listbox: (props?: ({
|
|
73
73
|
tier?: "commit" | "modify" | undefined;
|
|
74
|
-
variant?: "ghost" | "
|
|
75
|
-
size?: "
|
|
74
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
75
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
76
76
|
open?: boolean | undefined;
|
|
77
77
|
disabled?: boolean | undefined;
|
|
78
78
|
} & {
|
|
@@ -80,8 +80,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
80
80
|
}) | undefined) => string;
|
|
81
81
|
option: (props?: ({
|
|
82
82
|
tier?: "commit" | "modify" | undefined;
|
|
83
|
-
variant?: "ghost" | "
|
|
84
|
-
size?: "
|
|
83
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
84
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
85
85
|
open?: boolean | undefined;
|
|
86
86
|
disabled?: boolean | undefined;
|
|
87
87
|
} & {
|
|
@@ -89,8 +89,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
89
89
|
}) | undefined) => string;
|
|
90
90
|
optionActive: (props?: ({
|
|
91
91
|
tier?: "commit" | "modify" | undefined;
|
|
92
|
-
variant?: "ghost" | "
|
|
93
|
-
size?: "
|
|
92
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
93
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
94
94
|
open?: boolean | undefined;
|
|
95
95
|
disabled?: boolean | undefined;
|
|
96
96
|
} & {
|
|
@@ -98,8 +98,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
98
98
|
}) | undefined) => string;
|
|
99
99
|
optionSelected: (props?: ({
|
|
100
100
|
tier?: "commit" | "modify" | undefined;
|
|
101
|
-
variant?: "ghost" | "
|
|
102
|
-
size?: "
|
|
101
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
102
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
103
103
|
open?: boolean | undefined;
|
|
104
104
|
disabled?: boolean | undefined;
|
|
105
105
|
} & {
|
|
@@ -107,8 +107,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
107
107
|
}) | undefined) => string;
|
|
108
108
|
optionCheck: (props?: ({
|
|
109
109
|
tier?: "commit" | "modify" | undefined;
|
|
110
|
-
variant?: "ghost" | "
|
|
111
|
-
size?: "
|
|
110
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
111
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
112
112
|
open?: boolean | undefined;
|
|
113
113
|
disabled?: boolean | undefined;
|
|
114
114
|
} & {
|
|
@@ -116,8 +116,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
116
116
|
}) | undefined) => string;
|
|
117
117
|
group: (props?: ({
|
|
118
118
|
tier?: "commit" | "modify" | undefined;
|
|
119
|
-
variant?: "ghost" | "
|
|
120
|
-
size?: "
|
|
119
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
120
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
121
121
|
open?: boolean | undefined;
|
|
122
122
|
disabled?: boolean | undefined;
|
|
123
123
|
} & {
|
|
@@ -125,8 +125,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
125
125
|
}) | undefined) => string;
|
|
126
126
|
groupLabel: (props?: ({
|
|
127
127
|
tier?: "commit" | "modify" | undefined;
|
|
128
|
-
variant?: "ghost" | "
|
|
129
|
-
size?: "
|
|
128
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
129
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
130
130
|
open?: boolean | undefined;
|
|
131
131
|
disabled?: boolean | undefined;
|
|
132
132
|
} & {
|
|
@@ -134,8 +134,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
134
134
|
}) | undefined) => string;
|
|
135
135
|
noResults: (props?: ({
|
|
136
136
|
tier?: "commit" | "modify" | undefined;
|
|
137
|
-
variant?: "ghost" | "
|
|
138
|
-
size?: "
|
|
137
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
138
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
139
139
|
open?: boolean | undefined;
|
|
140
140
|
disabled?: boolean | undefined;
|
|
141
141
|
} & {
|
|
@@ -143,8 +143,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
143
143
|
}) | undefined) => string;
|
|
144
144
|
loading: (props?: ({
|
|
145
145
|
tier?: "commit" | "modify" | undefined;
|
|
146
|
-
variant?: "ghost" | "
|
|
147
|
-
size?: "
|
|
146
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
147
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
148
148
|
open?: boolean | undefined;
|
|
149
149
|
disabled?: boolean | undefined;
|
|
150
150
|
} & {
|
|
@@ -152,8 +152,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
152
152
|
}) | undefined) => string;
|
|
153
153
|
clear: (props?: ({
|
|
154
154
|
tier?: "commit" | "modify" | undefined;
|
|
155
|
-
variant?: "ghost" | "
|
|
156
|
-
size?: "
|
|
155
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
156
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
157
157
|
open?: boolean | undefined;
|
|
158
158
|
disabled?: boolean | undefined;
|
|
159
159
|
} & {
|
|
@@ -161,8 +161,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
161
161
|
}) | undefined) => string;
|
|
162
162
|
chevronButton: (props?: ({
|
|
163
163
|
tier?: "commit" | "modify" | undefined;
|
|
164
|
-
variant?: "ghost" | "
|
|
165
|
-
size?: "
|
|
164
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
165
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
166
166
|
open?: boolean | undefined;
|
|
167
167
|
disabled?: boolean | undefined;
|
|
168
168
|
} & {
|
|
@@ -170,8 +170,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
170
170
|
}) | undefined) => string;
|
|
171
171
|
chevron: (props?: ({
|
|
172
172
|
tier?: "commit" | "modify" | undefined;
|
|
173
|
-
variant?: "ghost" | "
|
|
174
|
-
size?: "
|
|
173
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
174
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
175
175
|
open?: boolean | undefined;
|
|
176
176
|
disabled?: boolean | undefined;
|
|
177
177
|
} & {
|
|
@@ -179,8 +179,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
179
179
|
}) | undefined) => string;
|
|
180
180
|
control: (props?: ({
|
|
181
181
|
tier?: "commit" | "modify" | undefined;
|
|
182
|
-
variant?: "ghost" | "
|
|
183
|
-
size?: "
|
|
182
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
183
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
184
184
|
open?: boolean | undefined;
|
|
185
185
|
disabled?: boolean | undefined;
|
|
186
186
|
} & {
|
|
@@ -188,8 +188,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
188
188
|
}) | undefined) => string;
|
|
189
189
|
search: (props?: ({
|
|
190
190
|
tier?: "commit" | "modify" | undefined;
|
|
191
|
-
variant?: "ghost" | "
|
|
192
|
-
size?: "
|
|
191
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
192
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
193
193
|
open?: boolean | undefined;
|
|
194
194
|
disabled?: boolean | undefined;
|
|
195
195
|
} & {
|
|
@@ -197,8 +197,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
197
197
|
}) | undefined) => string;
|
|
198
198
|
tag: (props?: ({
|
|
199
199
|
tier?: "commit" | "modify" | undefined;
|
|
200
|
-
variant?: "ghost" | "
|
|
201
|
-
size?: "
|
|
200
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
201
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
202
202
|
open?: boolean | undefined;
|
|
203
203
|
disabled?: boolean | undefined;
|
|
204
204
|
} & {
|
|
@@ -206,8 +206,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
206
206
|
}) | undefined) => string;
|
|
207
207
|
tagLabel: (props?: ({
|
|
208
208
|
tier?: "commit" | "modify" | undefined;
|
|
209
|
-
variant?: "ghost" | "
|
|
210
|
-
size?: "
|
|
209
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
210
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
211
211
|
open?: boolean | undefined;
|
|
212
212
|
disabled?: boolean | undefined;
|
|
213
213
|
} & {
|
|
@@ -215,8 +215,8 @@ export declare const comboboxVariants: ((props?: {
|
|
|
215
215
|
}) | undefined) => string;
|
|
216
216
|
tagRemove: (props?: ({
|
|
217
217
|
tier?: "commit" | "modify" | undefined;
|
|
218
|
-
variant?: "ghost" | "
|
|
219
|
-
size?: "
|
|
218
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
219
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
220
220
|
open?: boolean | undefined;
|
|
221
221
|
disabled?: boolean | undefined;
|
|
222
222
|
} & {
|