@kopexa/theme 1.6.5 → 1.6.7
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/chunk-3SRZALOM.mjs +72 -0
- package/dist/chunk-A4KO7QKC.mjs +45 -0
- package/dist/{chunk-EACX3NZF.mjs → chunk-VWZTV46T.mjs} +72 -7
- package/dist/{chunk-IY7SLI3T.mjs → chunk-W7RJG22S.mjs} +1 -1
- package/dist/components/alert-dialog.d.mts +25 -24
- package/dist/components/alert-dialog.d.ts +25 -24
- package/dist/components/callout.d.mts +202 -0
- package/dist/components/callout.d.ts +202 -0
- package/dist/components/callout.js +96 -0
- package/dist/components/callout.mjs +6 -0
- package/dist/components/card.d.mts +183 -6
- package/dist/components/card.d.ts +183 -6
- package/dist/components/card.js +72 -7
- package/dist/components/card.mjs +1 -1
- package/dist/components/checkbox.d.mts +38 -29
- package/dist/components/checkbox.d.ts +38 -29
- package/dist/components/checkbox.js +35 -3
- package/dist/components/checkbox.mjs +1 -1
- package/dist/components/command.d.mts +43 -42
- package/dist/components/command.d.ts +43 -42
- package/dist/components/dropdown-menu.d.mts +46 -45
- package/dist/components/dropdown-menu.d.ts +46 -45
- package/dist/components/hover-card.d.mts +7 -6
- package/dist/components/hover-card.d.ts +7 -6
- package/dist/components/index.d.mts +2 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +240 -72
- package/dist/components/index.mjs +16 -12
- package/dist/components/input.d.mts +10 -9
- package/dist/components/input.d.ts +10 -9
- package/dist/components/page-header.d.mts +34 -33
- package/dist/components/page-header.d.ts +34 -33
- package/dist/components/popover.d.mts +7 -6
- package/dist/components/popover.d.ts +7 -6
- package/dist/components/resizable.d.mts +16 -15
- package/dist/components/resizable.d.ts +16 -15
- package/dist/components/split-page-layout.js +1 -1
- package/dist/components/split-page-layout.mjs +1 -1
- package/dist/components/tooltip.d.mts +7 -6
- package/dist/components/tooltip.d.ts +7 -6
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +240 -72
- package/dist/index.mjs +16 -12
- package/package.json +2 -2
- package/dist/chunk-KPOZFVP6.mjs +0 -13
- /package/dist/{chunk-FD464FGG.mjs → chunk-N7T6GTBO.mjs} +0 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
// src/components/callout.ts
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
var callout = tv({
|
|
4
|
+
slots: {
|
|
5
|
+
root: ["flex items-start gap-3 w-full", "border", "relative"],
|
|
6
|
+
iconContainer: "flex-shrink-0 mt-0.5",
|
|
7
|
+
icon: "h-5 w-5",
|
|
8
|
+
title: "font-semibold leading-none tracking-tight mb-2",
|
|
9
|
+
content: "text-sm/6",
|
|
10
|
+
closeButton: "absolute top-2 right-2 opacity-70 hover:opacity-100 transition-opacity focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2"
|
|
11
|
+
},
|
|
12
|
+
variants: {
|
|
13
|
+
radius: {
|
|
14
|
+
none: { root: "rounded-none" },
|
|
15
|
+
sm: { root: "rounded-sm" },
|
|
16
|
+
md: { root: "rounded-md" },
|
|
17
|
+
lg: { root: "rounded-lg" }
|
|
18
|
+
},
|
|
19
|
+
size: {
|
|
20
|
+
sm: {
|
|
21
|
+
root: "p-3 text-sm",
|
|
22
|
+
icon: "h-4 w-4",
|
|
23
|
+
title: "text-sm mb-1"
|
|
24
|
+
},
|
|
25
|
+
md: {
|
|
26
|
+
root: "p-4",
|
|
27
|
+
icon: "h-5 w-5"
|
|
28
|
+
},
|
|
29
|
+
lg: {
|
|
30
|
+
root: "p-6",
|
|
31
|
+
icon: "h-6 w-6",
|
|
32
|
+
title: "text-lg mb-3"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
variant: {
|
|
36
|
+
default: {
|
|
37
|
+
root: "bg-muted/50 text-foreground border-border",
|
|
38
|
+
icon: "text-foreground",
|
|
39
|
+
title: "text-foreground"
|
|
40
|
+
},
|
|
41
|
+
info: {
|
|
42
|
+
root: "bg-blue-50 dark:bg-blue-950/50 text-blue-900 dark:text-blue-200 border-blue-200 dark:border-blue-800/50",
|
|
43
|
+
icon: "text-blue-500 dark:text-blue-400",
|
|
44
|
+
title: "text-blue-900 dark:text-blue-200"
|
|
45
|
+
},
|
|
46
|
+
success: {
|
|
47
|
+
root: "bg-green-50 dark:bg-green-950/50 text-green-900 dark:text-green-200 border-green-200 dark:border-green-800/50",
|
|
48
|
+
icon: "text-green-500 dark:text-green-400",
|
|
49
|
+
title: "text-green-900 dark:text-green-200"
|
|
50
|
+
},
|
|
51
|
+
warning: {
|
|
52
|
+
root: "bg-orange-50 dark:bg-orange-950/50 text-orange-900 dark:text-orange-200 border-orange-200 dark:border-orange-800/50",
|
|
53
|
+
icon: "text-orange-500 dark:text-orange-400",
|
|
54
|
+
title: "text-orange-900 dark:text-orange-200"
|
|
55
|
+
},
|
|
56
|
+
destructive: {
|
|
57
|
+
root: "bg-red-50 dark:bg-red-950/50 text-red-900 dark:text-red-200 border-red-200 dark:border-red-800/50",
|
|
58
|
+
icon: "text-red-500 dark:text-red-400",
|
|
59
|
+
title: "text-red-900 dark:text-red-200"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
defaultVariants: {
|
|
64
|
+
variant: "default",
|
|
65
|
+
radius: "md",
|
|
66
|
+
size: "md"
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
export {
|
|
71
|
+
callout
|
|
72
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// src/components/checkbox.ts
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
var checkbox = tv({
|
|
4
|
+
slots: {
|
|
5
|
+
base: [
|
|
6
|
+
"group",
|
|
7
|
+
"peer border-input dark:bg-input/30",
|
|
8
|
+
"focus-visible:border-ring focus-visible:ring-ring/50",
|
|
9
|
+
"aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40",
|
|
10
|
+
"aria-invalid:border-destructive size-4 shrink-0 rounded-[4px]",
|
|
11
|
+
"border shadow-xs transition-shadow outline-none focus-visible:ring-[3px]",
|
|
12
|
+
"disabled:cursor-not-allowed disabled:opacity-50"
|
|
13
|
+
],
|
|
14
|
+
indicator: [
|
|
15
|
+
"flex items-center justify-center text-current transition-none"
|
|
16
|
+
],
|
|
17
|
+
icon: [
|
|
18
|
+
"w-4 h-3 opacity-0 group-data-[state=checked]:opacity-100",
|
|
19
|
+
"pointer-events-none"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
variants: {
|
|
23
|
+
color: {
|
|
24
|
+
primary: {
|
|
25
|
+
base: [
|
|
26
|
+
"data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",
|
|
27
|
+
"dark:data-[state=checked]:bg-primary data-[state=checked]:border-primary"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
size: {
|
|
32
|
+
sm: {},
|
|
33
|
+
md: {},
|
|
34
|
+
lg: {}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
defaultVariants: {
|
|
38
|
+
size: "md",
|
|
39
|
+
color: "primary"
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
export {
|
|
44
|
+
checkbox
|
|
45
|
+
};
|
|
@@ -3,8 +3,8 @@ import { tv } from "tailwind-variants";
|
|
|
3
3
|
var card = tv({
|
|
4
4
|
slots: {
|
|
5
5
|
root: [
|
|
6
|
-
"flex flex-col relative overflow-hidden h-auto outline-hidden
|
|
7
|
-
"
|
|
6
|
+
"flex flex-col relative overflow-hidden h-auto outline-hidden box-border",
|
|
7
|
+
"transition-colors duration-200"
|
|
8
8
|
],
|
|
9
9
|
header: [
|
|
10
10
|
"flex",
|
|
@@ -46,6 +46,14 @@ var card = tv({
|
|
|
46
46
|
]
|
|
47
47
|
},
|
|
48
48
|
variants: {
|
|
49
|
+
variant: {
|
|
50
|
+
default: {
|
|
51
|
+
root: "bg-card text-card-foreground"
|
|
52
|
+
},
|
|
53
|
+
muted: {
|
|
54
|
+
root: "bg-muted text-muted-foreground"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
49
57
|
shadow: {
|
|
50
58
|
none: {
|
|
51
59
|
root: "shadow-none"
|
|
@@ -64,8 +72,14 @@ var card = tv({
|
|
|
64
72
|
}
|
|
65
73
|
},
|
|
66
74
|
border: {
|
|
67
|
-
|
|
68
|
-
root: "border"
|
|
75
|
+
none: {
|
|
76
|
+
root: "border-0"
|
|
77
|
+
},
|
|
78
|
+
default: {
|
|
79
|
+
root: "border border-border"
|
|
80
|
+
},
|
|
81
|
+
emphasized: {
|
|
82
|
+
root: "border-2 border-border"
|
|
69
83
|
}
|
|
70
84
|
},
|
|
71
85
|
radius: {
|
|
@@ -97,7 +111,10 @@ var card = tv({
|
|
|
97
111
|
},
|
|
98
112
|
isHoverable: {
|
|
99
113
|
true: {
|
|
100
|
-
root:
|
|
114
|
+
root: [
|
|
115
|
+
"hover:shadow-xl hover:-translate-y-1 transition-all duration-300",
|
|
116
|
+
"hover:border-primary/50 hover:bg-card/80"
|
|
117
|
+
]
|
|
101
118
|
}
|
|
102
119
|
},
|
|
103
120
|
isPressable: {
|
|
@@ -112,17 +129,65 @@ var card = tv({
|
|
|
112
129
|
true: {
|
|
113
130
|
root: "opacity-50 cursor-not-allowed pointer-events-none"
|
|
114
131
|
}
|
|
132
|
+
},
|
|
133
|
+
bleed: {
|
|
134
|
+
none: {},
|
|
135
|
+
sm: {
|
|
136
|
+
body: "px-2",
|
|
137
|
+
header: "px-2",
|
|
138
|
+
footer: "px-2"
|
|
139
|
+
},
|
|
140
|
+
md: {
|
|
141
|
+
body: "px-0",
|
|
142
|
+
header: "px-0",
|
|
143
|
+
footer: "px-0"
|
|
144
|
+
},
|
|
145
|
+
lg: {
|
|
146
|
+
body: "-mx-2",
|
|
147
|
+
header: "-mx-2",
|
|
148
|
+
footer: "-mx-2"
|
|
149
|
+
},
|
|
150
|
+
content: {
|
|
151
|
+
body: "px-0",
|
|
152
|
+
header: "px-3",
|
|
153
|
+
footer: "px-3"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
spacing: {
|
|
157
|
+
sm: {
|
|
158
|
+
body: "p-2",
|
|
159
|
+
header: "p-2",
|
|
160
|
+
footer: "p-2"
|
|
161
|
+
},
|
|
162
|
+
md: {
|
|
163
|
+
body: "p-3",
|
|
164
|
+
header: "p-3",
|
|
165
|
+
footer: "p-3"
|
|
166
|
+
},
|
|
167
|
+
lg: {
|
|
168
|
+
body: "p-4",
|
|
169
|
+
header: "p-4",
|
|
170
|
+
footer: "p-4"
|
|
171
|
+
},
|
|
172
|
+
xl: {
|
|
173
|
+
body: "p-6",
|
|
174
|
+
header: "p-6",
|
|
175
|
+
footer: "p-6"
|
|
176
|
+
}
|
|
115
177
|
}
|
|
116
178
|
},
|
|
117
179
|
defaultVariants: {
|
|
180
|
+
variant: "default",
|
|
118
181
|
radius: "lg",
|
|
119
|
-
shadow: "
|
|
182
|
+
shadow: "none",
|
|
120
183
|
fullWidth: false,
|
|
121
184
|
isHoverable: false,
|
|
122
185
|
isPressable: false,
|
|
123
186
|
isBlurred: false,
|
|
124
187
|
isDisabled: false,
|
|
125
|
-
border:
|
|
188
|
+
border: "default",
|
|
189
|
+
bleed: "none",
|
|
190
|
+
spacing: "md"
|
|
126
191
|
}
|
|
127
192
|
});
|
|
128
193
|
|
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
import * as tailwind_variants from 'tailwind-variants';
|
|
2
2
|
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
import * as tailwind_merge from 'tailwind-merge';
|
|
3
4
|
|
|
4
5
|
declare const alertDialog: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
content?:
|
|
8
|
-
overlay?:
|
|
9
|
-
header?:
|
|
10
|
-
footer?:
|
|
11
|
-
title?:
|
|
12
|
-
description?:
|
|
13
|
-
action?:
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
content?: tailwind_merge.ClassNameValue;
|
|
9
|
+
overlay?: tailwind_merge.ClassNameValue;
|
|
10
|
+
header?: tailwind_merge.ClassNameValue;
|
|
11
|
+
footer?: tailwind_merge.ClassNameValue;
|
|
12
|
+
title?: tailwind_merge.ClassNameValue;
|
|
13
|
+
description?: tailwind_merge.ClassNameValue;
|
|
14
|
+
action?: tailwind_merge.ClassNameValue;
|
|
14
15
|
};
|
|
15
16
|
};
|
|
16
17
|
} | {
|
|
17
18
|
[x: string]: {
|
|
18
|
-
[x: string]:
|
|
19
|
-
content?:
|
|
20
|
-
overlay?:
|
|
21
|
-
header?:
|
|
22
|
-
footer?:
|
|
23
|
-
title?:
|
|
24
|
-
description?:
|
|
25
|
-
action?:
|
|
19
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
20
|
+
content?: tailwind_merge.ClassNameValue;
|
|
21
|
+
overlay?: tailwind_merge.ClassNameValue;
|
|
22
|
+
header?: tailwind_merge.ClassNameValue;
|
|
23
|
+
footer?: tailwind_merge.ClassNameValue;
|
|
24
|
+
title?: tailwind_merge.ClassNameValue;
|
|
25
|
+
description?: tailwind_merge.ClassNameValue;
|
|
26
|
+
action?: tailwind_merge.ClassNameValue;
|
|
26
27
|
};
|
|
27
28
|
};
|
|
28
29
|
} | {}, {
|
|
@@ -35,14 +36,14 @@ declare const alertDialog: tailwind_variants.TVReturnType<{
|
|
|
35
36
|
action: string;
|
|
36
37
|
}, undefined, {
|
|
37
38
|
[key: string]: {
|
|
38
|
-
[key: string]:
|
|
39
|
-
content?:
|
|
40
|
-
overlay?:
|
|
41
|
-
header?:
|
|
42
|
-
footer?:
|
|
43
|
-
title?:
|
|
44
|
-
description?:
|
|
45
|
-
action?:
|
|
39
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
40
|
+
content?: tailwind_merge.ClassNameValue;
|
|
41
|
+
overlay?: tailwind_merge.ClassNameValue;
|
|
42
|
+
header?: tailwind_merge.ClassNameValue;
|
|
43
|
+
footer?: tailwind_merge.ClassNameValue;
|
|
44
|
+
title?: tailwind_merge.ClassNameValue;
|
|
45
|
+
description?: tailwind_merge.ClassNameValue;
|
|
46
|
+
action?: tailwind_merge.ClassNameValue;
|
|
46
47
|
};
|
|
47
48
|
};
|
|
48
49
|
} | {}, {
|
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
import * as tailwind_variants from 'tailwind-variants';
|
|
2
2
|
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
import * as tailwind_merge from 'tailwind-merge';
|
|
3
4
|
|
|
4
5
|
declare const alertDialog: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
content?:
|
|
8
|
-
overlay?:
|
|
9
|
-
header?:
|
|
10
|
-
footer?:
|
|
11
|
-
title?:
|
|
12
|
-
description?:
|
|
13
|
-
action?:
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
content?: tailwind_merge.ClassNameValue;
|
|
9
|
+
overlay?: tailwind_merge.ClassNameValue;
|
|
10
|
+
header?: tailwind_merge.ClassNameValue;
|
|
11
|
+
footer?: tailwind_merge.ClassNameValue;
|
|
12
|
+
title?: tailwind_merge.ClassNameValue;
|
|
13
|
+
description?: tailwind_merge.ClassNameValue;
|
|
14
|
+
action?: tailwind_merge.ClassNameValue;
|
|
14
15
|
};
|
|
15
16
|
};
|
|
16
17
|
} | {
|
|
17
18
|
[x: string]: {
|
|
18
|
-
[x: string]:
|
|
19
|
-
content?:
|
|
20
|
-
overlay?:
|
|
21
|
-
header?:
|
|
22
|
-
footer?:
|
|
23
|
-
title?:
|
|
24
|
-
description?:
|
|
25
|
-
action?:
|
|
19
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
20
|
+
content?: tailwind_merge.ClassNameValue;
|
|
21
|
+
overlay?: tailwind_merge.ClassNameValue;
|
|
22
|
+
header?: tailwind_merge.ClassNameValue;
|
|
23
|
+
footer?: tailwind_merge.ClassNameValue;
|
|
24
|
+
title?: tailwind_merge.ClassNameValue;
|
|
25
|
+
description?: tailwind_merge.ClassNameValue;
|
|
26
|
+
action?: tailwind_merge.ClassNameValue;
|
|
26
27
|
};
|
|
27
28
|
};
|
|
28
29
|
} | {}, {
|
|
@@ -35,14 +36,14 @@ declare const alertDialog: tailwind_variants.TVReturnType<{
|
|
|
35
36
|
action: string;
|
|
36
37
|
}, undefined, {
|
|
37
38
|
[key: string]: {
|
|
38
|
-
[key: string]:
|
|
39
|
-
content?:
|
|
40
|
-
overlay?:
|
|
41
|
-
header?:
|
|
42
|
-
footer?:
|
|
43
|
-
title?:
|
|
44
|
-
description?:
|
|
45
|
-
action?:
|
|
39
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
40
|
+
content?: tailwind_merge.ClassNameValue;
|
|
41
|
+
overlay?: tailwind_merge.ClassNameValue;
|
|
42
|
+
header?: tailwind_merge.ClassNameValue;
|
|
43
|
+
footer?: tailwind_merge.ClassNameValue;
|
|
44
|
+
title?: tailwind_merge.ClassNameValue;
|
|
45
|
+
description?: tailwind_merge.ClassNameValue;
|
|
46
|
+
action?: tailwind_merge.ClassNameValue;
|
|
46
47
|
};
|
|
47
48
|
};
|
|
48
49
|
} | {}, {
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import * as tailwind_variants from 'tailwind-variants';
|
|
2
|
+
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
|
|
4
|
+
declare const callout: tailwind_variants.TVReturnType<{
|
|
5
|
+
radius: {
|
|
6
|
+
none: {
|
|
7
|
+
root: string;
|
|
8
|
+
};
|
|
9
|
+
sm: {
|
|
10
|
+
root: string;
|
|
11
|
+
};
|
|
12
|
+
md: {
|
|
13
|
+
root: string;
|
|
14
|
+
};
|
|
15
|
+
lg: {
|
|
16
|
+
root: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
size: {
|
|
20
|
+
sm: {
|
|
21
|
+
root: string;
|
|
22
|
+
icon: string;
|
|
23
|
+
title: string;
|
|
24
|
+
};
|
|
25
|
+
md: {
|
|
26
|
+
root: string;
|
|
27
|
+
icon: string;
|
|
28
|
+
};
|
|
29
|
+
lg: {
|
|
30
|
+
root: string;
|
|
31
|
+
icon: string;
|
|
32
|
+
title: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
variant: {
|
|
36
|
+
default: {
|
|
37
|
+
root: string;
|
|
38
|
+
icon: string;
|
|
39
|
+
title: string;
|
|
40
|
+
};
|
|
41
|
+
info: {
|
|
42
|
+
root: string;
|
|
43
|
+
icon: string;
|
|
44
|
+
title: string;
|
|
45
|
+
};
|
|
46
|
+
success: {
|
|
47
|
+
root: string;
|
|
48
|
+
icon: string;
|
|
49
|
+
title: string;
|
|
50
|
+
};
|
|
51
|
+
warning: {
|
|
52
|
+
root: string;
|
|
53
|
+
icon: string;
|
|
54
|
+
title: string;
|
|
55
|
+
};
|
|
56
|
+
destructive: {
|
|
57
|
+
root: string;
|
|
58
|
+
icon: string;
|
|
59
|
+
title: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
}, {
|
|
63
|
+
root: string[];
|
|
64
|
+
iconContainer: string;
|
|
65
|
+
icon: string;
|
|
66
|
+
title: string;
|
|
67
|
+
content: string;
|
|
68
|
+
closeButton: string;
|
|
69
|
+
}, undefined, {
|
|
70
|
+
radius: {
|
|
71
|
+
none: {
|
|
72
|
+
root: string;
|
|
73
|
+
};
|
|
74
|
+
sm: {
|
|
75
|
+
root: string;
|
|
76
|
+
};
|
|
77
|
+
md: {
|
|
78
|
+
root: string;
|
|
79
|
+
};
|
|
80
|
+
lg: {
|
|
81
|
+
root: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
size: {
|
|
85
|
+
sm: {
|
|
86
|
+
root: string;
|
|
87
|
+
icon: string;
|
|
88
|
+
title: string;
|
|
89
|
+
};
|
|
90
|
+
md: {
|
|
91
|
+
root: string;
|
|
92
|
+
icon: string;
|
|
93
|
+
};
|
|
94
|
+
lg: {
|
|
95
|
+
root: string;
|
|
96
|
+
icon: string;
|
|
97
|
+
title: string;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
variant: {
|
|
101
|
+
default: {
|
|
102
|
+
root: string;
|
|
103
|
+
icon: string;
|
|
104
|
+
title: string;
|
|
105
|
+
};
|
|
106
|
+
info: {
|
|
107
|
+
root: string;
|
|
108
|
+
icon: string;
|
|
109
|
+
title: string;
|
|
110
|
+
};
|
|
111
|
+
success: {
|
|
112
|
+
root: string;
|
|
113
|
+
icon: string;
|
|
114
|
+
title: string;
|
|
115
|
+
};
|
|
116
|
+
warning: {
|
|
117
|
+
root: string;
|
|
118
|
+
icon: string;
|
|
119
|
+
title: string;
|
|
120
|
+
};
|
|
121
|
+
destructive: {
|
|
122
|
+
root: string;
|
|
123
|
+
icon: string;
|
|
124
|
+
title: string;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
}, {
|
|
128
|
+
root: string[];
|
|
129
|
+
iconContainer: string;
|
|
130
|
+
icon: string;
|
|
131
|
+
title: string;
|
|
132
|
+
content: string;
|
|
133
|
+
closeButton: string;
|
|
134
|
+
}, tailwind_variants.TVReturnType<{
|
|
135
|
+
radius: {
|
|
136
|
+
none: {
|
|
137
|
+
root: string;
|
|
138
|
+
};
|
|
139
|
+
sm: {
|
|
140
|
+
root: string;
|
|
141
|
+
};
|
|
142
|
+
md: {
|
|
143
|
+
root: string;
|
|
144
|
+
};
|
|
145
|
+
lg: {
|
|
146
|
+
root: string;
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
size: {
|
|
150
|
+
sm: {
|
|
151
|
+
root: string;
|
|
152
|
+
icon: string;
|
|
153
|
+
title: string;
|
|
154
|
+
};
|
|
155
|
+
md: {
|
|
156
|
+
root: string;
|
|
157
|
+
icon: string;
|
|
158
|
+
};
|
|
159
|
+
lg: {
|
|
160
|
+
root: string;
|
|
161
|
+
icon: string;
|
|
162
|
+
title: string;
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
variant: {
|
|
166
|
+
default: {
|
|
167
|
+
root: string;
|
|
168
|
+
icon: string;
|
|
169
|
+
title: string;
|
|
170
|
+
};
|
|
171
|
+
info: {
|
|
172
|
+
root: string;
|
|
173
|
+
icon: string;
|
|
174
|
+
title: string;
|
|
175
|
+
};
|
|
176
|
+
success: {
|
|
177
|
+
root: string;
|
|
178
|
+
icon: string;
|
|
179
|
+
title: string;
|
|
180
|
+
};
|
|
181
|
+
warning: {
|
|
182
|
+
root: string;
|
|
183
|
+
icon: string;
|
|
184
|
+
title: string;
|
|
185
|
+
};
|
|
186
|
+
destructive: {
|
|
187
|
+
root: string;
|
|
188
|
+
icon: string;
|
|
189
|
+
title: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
}, {
|
|
193
|
+
root: string[];
|
|
194
|
+
iconContainer: string;
|
|
195
|
+
icon: string;
|
|
196
|
+
title: string;
|
|
197
|
+
content: string;
|
|
198
|
+
closeButton: string;
|
|
199
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
200
|
+
type CalloutVariantProps = VariantProps<typeof callout>;
|
|
201
|
+
|
|
202
|
+
export { type CalloutVariantProps, callout };
|