@casinogate/ui 1.10.9 → 1.10.11
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/assets/css/root.css +160 -3
- package/dist/components/button/button.component.svelte +13 -18
- package/dist/components/button/index.d.ts +1 -0
- package/dist/components/button/index.js +1 -0
- package/dist/components/button/styles.d.ts +75 -222
- package/dist/components/button/styles.js +39 -91
- package/dist/components/button/types.d.ts +1 -5
- package/dist/components/dialog/styles.js +3 -3
- package/dist/components/drawer/components/drawer.close.svelte +23 -0
- package/dist/components/drawer/components/drawer.close.svelte.d.ts +4 -0
- package/dist/components/drawer/components/drawer.content.svelte +12 -0
- package/dist/components/drawer/components/drawer.content.svelte.d.ts +5 -0
- package/dist/components/drawer/components/drawer.description.svelte +11 -0
- package/dist/components/drawer/components/drawer.description.svelte.d.ts +4 -0
- package/dist/components/drawer/components/drawer.handle.svelte +10 -0
- package/dist/components/drawer/components/drawer.handle.svelte.d.ts +4 -0
- package/dist/components/drawer/components/drawer.overlay.svelte +10 -0
- package/dist/components/drawer/components/drawer.overlay.svelte.d.ts +5 -0
- package/dist/components/drawer/components/drawer.portal.svelte +10 -0
- package/dist/components/drawer/components/drawer.portal.svelte.d.ts +4 -0
- package/dist/components/drawer/components/drawer.root.svelte +15 -0
- package/dist/components/drawer/components/drawer.root.svelte.d.ts +4 -0
- package/dist/components/drawer/components/drawer.title.svelte +11 -0
- package/dist/components/drawer/components/drawer.title.svelte.d.ts +4 -0
- package/dist/components/drawer/components/drawer.trigger.svelte +27 -0
- package/dist/components/drawer/components/drawer.trigger.svelte.d.ts +5 -0
- package/dist/components/drawer/components/state.svelte.d.ts +4 -0
- package/dist/components/drawer/components/state.svelte.js +8 -0
- package/dist/components/drawer/exports-primitive.d.ts +9 -0
- package/dist/components/drawer/exports-primitive.js +9 -0
- package/dist/components/drawer/index.d.ts +2 -0
- package/dist/components/drawer/index.js +1 -0
- package/dist/components/drawer/styles.d.ts +214 -0
- package/dist/components/drawer/styles.js +38 -0
- package/dist/components/drawer/types.d.ts +11 -0
- package/dist/components/drawer/types.js +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/package.json +3 -2
package/dist/assets/css/root.css
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
--cgui-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
9
|
"Courier New", monospace;
|
|
10
10
|
--cgui-spacing: 0.25rem;
|
|
11
|
+
--cgui-container-sm: 24rem;
|
|
11
12
|
--cgui-text-xs: 0.75rem;
|
|
12
13
|
--cgui-text-xs--line-height: calc(1 / 0.75);
|
|
13
14
|
--cgui-text-sm: 0.875rem;
|
|
@@ -223,6 +224,9 @@
|
|
|
223
224
|
.cgui\:left-1\/2 {
|
|
224
225
|
left: calc(1/2 * 100%);
|
|
225
226
|
}
|
|
227
|
+
.cgui\:z-\(--cg-ui-z-index-dialog\) {
|
|
228
|
+
z-index: var(--cg-ui-z-index-dialog);
|
|
229
|
+
}
|
|
226
230
|
.cgui\:z-\(--cg-ui-z-index-dropdown\) {
|
|
227
231
|
z-index: var(--cg-ui-z-index-dropdown);
|
|
228
232
|
}
|
|
@@ -232,9 +236,6 @@
|
|
|
232
236
|
.cgui\:z-\(--cg-ui-z-index-select\) {
|
|
233
237
|
z-index: var(--cg-ui-z-index-select);
|
|
234
238
|
}
|
|
235
|
-
.cgui\:z-\(--z-index-dialog\) {
|
|
236
|
-
z-index: var(--z-index-dialog);
|
|
237
|
-
}
|
|
238
239
|
.cgui\:z-1 {
|
|
239
240
|
z-index: 1;
|
|
240
241
|
}
|
|
@@ -250,6 +251,9 @@
|
|
|
250
251
|
.cgui\:my-1 {
|
|
251
252
|
margin-block: calc(var(--cgui-spacing) * 1);
|
|
252
253
|
}
|
|
254
|
+
.cgui\:my-2 {
|
|
255
|
+
margin-block: calc(var(--cgui-spacing) * 2);
|
|
256
|
+
}
|
|
253
257
|
.cgui\:my-4 {
|
|
254
258
|
margin-block: calc(var(--cgui-spacing) * 4);
|
|
255
259
|
}
|
|
@@ -265,6 +269,9 @@
|
|
|
265
269
|
.cgui\:mt-4 {
|
|
266
270
|
margin-top: calc(var(--cgui-spacing) * 4);
|
|
267
271
|
}
|
|
272
|
+
.cgui\:mt-6 {
|
|
273
|
+
margin-top: calc(var(--cgui-spacing) * 6);
|
|
274
|
+
}
|
|
268
275
|
.cgui\:-mb-0\.5 {
|
|
269
276
|
margin-bottom: calc(var(--cgui-spacing) * -0.5);
|
|
270
277
|
}
|
|
@@ -372,6 +379,9 @@
|
|
|
372
379
|
.cgui\:h-1 {
|
|
373
380
|
height: calc(var(--cgui-spacing) * 1);
|
|
374
381
|
}
|
|
382
|
+
.cgui\:h-1\.5 {
|
|
383
|
+
height: calc(var(--cgui-spacing) * 1.5);
|
|
384
|
+
}
|
|
375
385
|
.cgui\:h-3 {
|
|
376
386
|
height: calc(var(--cgui-spacing) * 3);
|
|
377
387
|
}
|
|
@@ -495,6 +505,9 @@
|
|
|
495
505
|
.cgui\:w-11 {
|
|
496
506
|
width: calc(var(--cgui-spacing) * 11);
|
|
497
507
|
}
|
|
508
|
+
.cgui\:w-12 {
|
|
509
|
+
width: calc(var(--cgui-spacing) * 12);
|
|
510
|
+
}
|
|
498
511
|
.cgui\:w-40 {
|
|
499
512
|
width: calc(var(--cgui-spacing) * 40);
|
|
500
513
|
}
|
|
@@ -555,6 +568,9 @@
|
|
|
555
568
|
.cgui\:max-w-\[90vw\] {
|
|
556
569
|
max-width: 90vw;
|
|
557
570
|
}
|
|
571
|
+
.cgui\:max-w-sm {
|
|
572
|
+
max-width: var(--cgui-container-sm);
|
|
573
|
+
}
|
|
558
574
|
.cgui\:min-w-\(--bits-dropdown-menu-anchor-width\) {
|
|
559
575
|
min-width: var(--bits-dropdown-menu-anchor-width);
|
|
560
576
|
}
|
|
@@ -984,6 +1000,9 @@
|
|
|
984
1000
|
.cgui\:p-4 {
|
|
985
1001
|
padding: calc(var(--cgui-spacing) * 4);
|
|
986
1002
|
}
|
|
1003
|
+
.cgui\:p-6 {
|
|
1004
|
+
padding: calc(var(--cgui-spacing) * 6);
|
|
1005
|
+
}
|
|
987
1006
|
.cgui\:p-8 {
|
|
988
1007
|
padding: calc(var(--cgui-spacing) * 8);
|
|
989
1008
|
}
|
|
@@ -1896,6 +1915,110 @@
|
|
|
1896
1915
|
--tw-enter-scale: .95;
|
|
1897
1916
|
}
|
|
1898
1917
|
}
|
|
1918
|
+
.cgui\:data-\[vaul-drawer-direction\=bottom\]\:right-0 {
|
|
1919
|
+
&[data-vaul-drawer-direction="bottom"] {
|
|
1920
|
+
right: calc(var(--cgui-spacing) * 0);
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
.cgui\:data-\[vaul-drawer-direction\=bottom\]\:bottom-0 {
|
|
1924
|
+
&[data-vaul-drawer-direction="bottom"] {
|
|
1925
|
+
bottom: calc(var(--cgui-spacing) * 0);
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
.cgui\:data-\[vaul-drawer-direction\=bottom\]\:left-0 {
|
|
1929
|
+
&[data-vaul-drawer-direction="bottom"] {
|
|
1930
|
+
left: calc(var(--cgui-spacing) * 0);
|
|
1931
|
+
}
|
|
1932
|
+
}
|
|
1933
|
+
.cgui\:data-\[vaul-drawer-direction\=bottom\]\:max-h-\[96\%\] {
|
|
1934
|
+
&[data-vaul-drawer-direction="bottom"] {
|
|
1935
|
+
max-height: 96%;
|
|
1936
|
+
}
|
|
1937
|
+
}
|
|
1938
|
+
.cgui\:data-\[vaul-drawer-direction\=bottom\]\:rounded-t-md {
|
|
1939
|
+
&[data-vaul-drawer-direction="bottom"] {
|
|
1940
|
+
border-top-left-radius: calc(var(--cg-ui-number-md) * 1px);
|
|
1941
|
+
border-top-right-radius: calc(var(--cg-ui-number-md) * 1px);
|
|
1942
|
+
}
|
|
1943
|
+
}
|
|
1944
|
+
.cgui\:data-\[vaul-drawer-direction\=left\]\:top-0 {
|
|
1945
|
+
&[data-vaul-drawer-direction="left"] {
|
|
1946
|
+
top: calc(var(--cgui-spacing) * 0);
|
|
1947
|
+
}
|
|
1948
|
+
}
|
|
1949
|
+
.cgui\:data-\[vaul-drawer-direction\=left\]\:bottom-0 {
|
|
1950
|
+
&[data-vaul-drawer-direction="left"] {
|
|
1951
|
+
bottom: calc(var(--cgui-spacing) * 0);
|
|
1952
|
+
}
|
|
1953
|
+
}
|
|
1954
|
+
.cgui\:data-\[vaul-drawer-direction\=left\]\:left-0 {
|
|
1955
|
+
&[data-vaul-drawer-direction="left"] {
|
|
1956
|
+
left: calc(var(--cgui-spacing) * 0);
|
|
1957
|
+
}
|
|
1958
|
+
}
|
|
1959
|
+
.cgui\:data-\[vaul-drawer-direction\=left\]\:max-w-\[96\%\] {
|
|
1960
|
+
&[data-vaul-drawer-direction="left"] {
|
|
1961
|
+
max-width: 96%;
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
.cgui\:data-\[vaul-drawer-direction\=left\]\:rounded-r-md {
|
|
1965
|
+
&[data-vaul-drawer-direction="left"] {
|
|
1966
|
+
border-top-right-radius: calc(var(--cg-ui-number-md) * 1px);
|
|
1967
|
+
border-bottom-right-radius: calc(var(--cg-ui-number-md) * 1px);
|
|
1968
|
+
}
|
|
1969
|
+
}
|
|
1970
|
+
.cgui\:data-\[vaul-drawer-direction\=right\]\:top-0 {
|
|
1971
|
+
&[data-vaul-drawer-direction="right"] {
|
|
1972
|
+
top: calc(var(--cgui-spacing) * 0);
|
|
1973
|
+
}
|
|
1974
|
+
}
|
|
1975
|
+
.cgui\:data-\[vaul-drawer-direction\=right\]\:right-0 {
|
|
1976
|
+
&[data-vaul-drawer-direction="right"] {
|
|
1977
|
+
right: calc(var(--cgui-spacing) * 0);
|
|
1978
|
+
}
|
|
1979
|
+
}
|
|
1980
|
+
.cgui\:data-\[vaul-drawer-direction\=right\]\:bottom-0 {
|
|
1981
|
+
&[data-vaul-drawer-direction="right"] {
|
|
1982
|
+
bottom: calc(var(--cgui-spacing) * 0);
|
|
1983
|
+
}
|
|
1984
|
+
}
|
|
1985
|
+
.cgui\:data-\[vaul-drawer-direction\=right\]\:max-w-\[96\%\] {
|
|
1986
|
+
&[data-vaul-drawer-direction="right"] {
|
|
1987
|
+
max-width: 96%;
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1990
|
+
.cgui\:data-\[vaul-drawer-direction\=right\]\:rounded-l-md {
|
|
1991
|
+
&[data-vaul-drawer-direction="right"] {
|
|
1992
|
+
border-top-left-radius: calc(var(--cg-ui-number-md) * 1px);
|
|
1993
|
+
border-bottom-left-radius: calc(var(--cg-ui-number-md) * 1px);
|
|
1994
|
+
}
|
|
1995
|
+
}
|
|
1996
|
+
.cgui\:data-\[vaul-drawer-direction\=top\]\:top-0 {
|
|
1997
|
+
&[data-vaul-drawer-direction="top"] {
|
|
1998
|
+
top: calc(var(--cgui-spacing) * 0);
|
|
1999
|
+
}
|
|
2000
|
+
}
|
|
2001
|
+
.cgui\:data-\[vaul-drawer-direction\=top\]\:right-0 {
|
|
2002
|
+
&[data-vaul-drawer-direction="top"] {
|
|
2003
|
+
right: calc(var(--cgui-spacing) * 0);
|
|
2004
|
+
}
|
|
2005
|
+
}
|
|
2006
|
+
.cgui\:data-\[vaul-drawer-direction\=top\]\:left-0 {
|
|
2007
|
+
&[data-vaul-drawer-direction="top"] {
|
|
2008
|
+
left: calc(var(--cgui-spacing) * 0);
|
|
2009
|
+
}
|
|
2010
|
+
}
|
|
2011
|
+
.cgui\:data-\[vaul-drawer-direction\=top\]\:max-h-\[96\%\] {
|
|
2012
|
+
&[data-vaul-drawer-direction="top"] {
|
|
2013
|
+
max-height: 96%;
|
|
2014
|
+
}
|
|
2015
|
+
}
|
|
2016
|
+
.cgui\:data-\[vaul-drawer-direction\=top\]\:rounded-b-md {
|
|
2017
|
+
&[data-vaul-drawer-direction="top"] {
|
|
2018
|
+
border-bottom-right-radius: calc(var(--cg-ui-number-md) * 1px);
|
|
2019
|
+
border-bottom-left-radius: calc(var(--cg-ui-number-md) * 1px);
|
|
2020
|
+
}
|
|
2021
|
+
}
|
|
1899
2022
|
.cgui\:scrollbar-hover\:scrollbar-thumb-surface-regular\/60 {
|
|
1900
2023
|
&::-webkit-scrollbar-thumb:hover {
|
|
1901
2024
|
--scrollbar-thumb: var(--cg-ui-color-surface-regular);
|
|
@@ -2010,6 +2133,34 @@
|
|
|
2010
2133
|
}
|
|
2011
2134
|
}
|
|
2012
2135
|
}
|
|
2136
|
+
.cgui\:data-\[vaul-drawer-direction\=left\]\:\[\&_\[data-vaul-handle\]\]\:my-auto {
|
|
2137
|
+
&[data-vaul-drawer-direction="left"] {
|
|
2138
|
+
& [data-vaul-handle] {
|
|
2139
|
+
margin-block: auto;
|
|
2140
|
+
}
|
|
2141
|
+
}
|
|
2142
|
+
}
|
|
2143
|
+
.cgui\:data-\[vaul-drawer-direction\=left\]\:\[\&_\[data-vaul-handle\]\]\:rotate-90 {
|
|
2144
|
+
&[data-vaul-drawer-direction="left"] {
|
|
2145
|
+
& [data-vaul-handle] {
|
|
2146
|
+
rotate: 90deg;
|
|
2147
|
+
}
|
|
2148
|
+
}
|
|
2149
|
+
}
|
|
2150
|
+
.cgui\:data-\[vaul-drawer-direction\=right\]\:\[\&_\[data-vaul-handle\]\]\:my-auto {
|
|
2151
|
+
&[data-vaul-drawer-direction="right"] {
|
|
2152
|
+
& [data-vaul-handle] {
|
|
2153
|
+
margin-block: auto;
|
|
2154
|
+
}
|
|
2155
|
+
}
|
|
2156
|
+
}
|
|
2157
|
+
.cgui\:data-\[vaul-drawer-direction\=right\]\:\[\&_\[data-vaul-handle\]\]\:rotate-90 {
|
|
2158
|
+
&[data-vaul-drawer-direction="right"] {
|
|
2159
|
+
& [data-vaul-handle] {
|
|
2160
|
+
rotate: 90deg;
|
|
2161
|
+
}
|
|
2162
|
+
}
|
|
2163
|
+
}
|
|
2013
2164
|
.cgui\:\[\&_kbd\]\:ml-auto {
|
|
2014
2165
|
& kbd {
|
|
2015
2166
|
margin-left: auto;
|
|
@@ -2043,6 +2194,12 @@
|
|
|
2043
2194
|
height: calc(var(--cgui-spacing) * 4);
|
|
2044
2195
|
}
|
|
2045
2196
|
}
|
|
2197
|
+
.cgui\:\[\&_svg\]\:size-4\.5 {
|
|
2198
|
+
& svg {
|
|
2199
|
+
width: calc(var(--cgui-spacing) * 4.5);
|
|
2200
|
+
height: calc(var(--cgui-spacing) * 4.5);
|
|
2201
|
+
}
|
|
2202
|
+
}
|
|
2046
2203
|
.cgui\:\[\&_svg\]\:size-6 {
|
|
2047
2204
|
& svg {
|
|
2048
2205
|
width: calc(var(--cgui-spacing) * 6);
|
|
@@ -9,8 +9,6 @@
|
|
|
9
9
|
const uid = $props.id();
|
|
10
10
|
|
|
11
11
|
let {
|
|
12
|
-
startChevron,
|
|
13
|
-
endChevron,
|
|
14
12
|
children,
|
|
15
13
|
ref = $bindable(null),
|
|
16
14
|
variant = 'primary',
|
|
@@ -24,28 +22,25 @@
|
|
|
24
22
|
class: className,
|
|
25
23
|
...props
|
|
26
24
|
}: ButtonProps = $props();
|
|
27
|
-
|
|
28
|
-
const variants = $derived(buttonVariants({ variant, size, rounded, shadow, w, loading }));
|
|
29
25
|
</script>
|
|
30
26
|
|
|
31
|
-
<Button.Root
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
{
|
|
37
|
-
|
|
27
|
+
<Button.Root
|
|
28
|
+
data-slot="button"
|
|
29
|
+
bind:ref
|
|
30
|
+
{id}
|
|
31
|
+
class={cn(buttonVariants({ variant, size, rounded, shadow, w, loading }), className)}
|
|
32
|
+
{disabled}
|
|
33
|
+
{...props}
|
|
34
|
+
>
|
|
38
35
|
{@render children?.()}
|
|
39
36
|
|
|
40
37
|
{#if loading}
|
|
41
|
-
<span
|
|
38
|
+
<span
|
|
39
|
+
in:fly={{ duration: 200, x: 20 }}
|
|
40
|
+
data-slot="loading"
|
|
41
|
+
class="cgui:inline-flex cgui:items-center cgui:justify-center cgui:shrink-0"
|
|
42
|
+
>
|
|
42
43
|
<Spinner size={18} />
|
|
43
44
|
</span>
|
|
44
45
|
{/if}
|
|
45
|
-
|
|
46
|
-
{#if endChevron && !loading}
|
|
47
|
-
<span data-slot="end-chevron" class={variants.chevron}>
|
|
48
|
-
{@render endChevron()}
|
|
49
|
-
</span>
|
|
50
|
-
{/if}
|
|
51
46
|
</Button.Root>
|
|
@@ -1,264 +1,117 @@
|
|
|
1
1
|
import type { VariantProps } from 'tailwind-variants';
|
|
2
2
|
export declare const buttonVariants: import("tailwind-variants").TVReturnType<{
|
|
3
3
|
variant: {
|
|
4
|
-
primary:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
};
|
|
10
|
-
ghost: {
|
|
11
|
-
root: string[];
|
|
12
|
-
};
|
|
13
|
-
link: {
|
|
14
|
-
root: string[];
|
|
15
|
-
};
|
|
16
|
-
clean: {
|
|
17
|
-
root: never[];
|
|
18
|
-
};
|
|
4
|
+
primary: string[];
|
|
5
|
+
outline: string[];
|
|
6
|
+
ghost: string[];
|
|
7
|
+
link: string[];
|
|
8
|
+
clean: never[];
|
|
19
9
|
};
|
|
20
10
|
loading: {
|
|
21
|
-
true:
|
|
22
|
-
root: string;
|
|
23
|
-
};
|
|
11
|
+
true: string;
|
|
24
12
|
};
|
|
25
13
|
shadow: {
|
|
26
|
-
true:
|
|
27
|
-
root: string;
|
|
28
|
-
};
|
|
14
|
+
true: string;
|
|
29
15
|
};
|
|
30
16
|
size: {
|
|
31
|
-
xs:
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
};
|
|
37
|
-
md: {
|
|
38
|
-
root: string;
|
|
39
|
-
};
|
|
40
|
-
lg: {
|
|
41
|
-
root: string;
|
|
42
|
-
};
|
|
43
|
-
clean: {
|
|
44
|
-
root: string;
|
|
45
|
-
};
|
|
17
|
+
xs: string;
|
|
18
|
+
sm: string;
|
|
19
|
+
md: string;
|
|
20
|
+
lg: string;
|
|
21
|
+
clean: string;
|
|
46
22
|
};
|
|
47
23
|
w: {
|
|
48
|
-
full:
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
root: string;
|
|
53
|
-
};
|
|
54
|
-
fit: {
|
|
55
|
-
root: string;
|
|
56
|
-
};
|
|
57
|
-
clean: {
|
|
58
|
-
root: string;
|
|
59
|
-
};
|
|
24
|
+
full: string;
|
|
25
|
+
auto: string;
|
|
26
|
+
fit: string;
|
|
27
|
+
clean: string;
|
|
60
28
|
};
|
|
61
29
|
fullWidth: {
|
|
62
|
-
true:
|
|
63
|
-
root: string;
|
|
64
|
-
};
|
|
30
|
+
true: string;
|
|
65
31
|
};
|
|
66
32
|
rounded: {
|
|
67
|
-
sm:
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
};
|
|
76
|
-
xl: {
|
|
77
|
-
root: string;
|
|
78
|
-
};
|
|
79
|
-
full: {
|
|
80
|
-
root: string;
|
|
81
|
-
};
|
|
82
|
-
clean: {
|
|
83
|
-
root: string;
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
}, {
|
|
87
|
-
root: string[];
|
|
88
|
-
chevron: string[];
|
|
89
|
-
}, undefined, {
|
|
33
|
+
sm: string;
|
|
34
|
+
md: string;
|
|
35
|
+
lg: string;
|
|
36
|
+
xl: string;
|
|
37
|
+
full: string;
|
|
38
|
+
clean: string;
|
|
39
|
+
};
|
|
40
|
+
}, undefined, string[], {
|
|
90
41
|
variant: {
|
|
91
|
-
primary:
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
};
|
|
97
|
-
ghost: {
|
|
98
|
-
root: string[];
|
|
99
|
-
};
|
|
100
|
-
link: {
|
|
101
|
-
root: string[];
|
|
102
|
-
};
|
|
103
|
-
clean: {
|
|
104
|
-
root: never[];
|
|
105
|
-
};
|
|
42
|
+
primary: string[];
|
|
43
|
+
outline: string[];
|
|
44
|
+
ghost: string[];
|
|
45
|
+
link: string[];
|
|
46
|
+
clean: never[];
|
|
106
47
|
};
|
|
107
48
|
loading: {
|
|
108
|
-
true:
|
|
109
|
-
root: string;
|
|
110
|
-
};
|
|
49
|
+
true: string;
|
|
111
50
|
};
|
|
112
51
|
shadow: {
|
|
113
|
-
true:
|
|
114
|
-
root: string;
|
|
115
|
-
};
|
|
52
|
+
true: string;
|
|
116
53
|
};
|
|
117
54
|
size: {
|
|
118
|
-
xs:
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
};
|
|
124
|
-
md: {
|
|
125
|
-
root: string;
|
|
126
|
-
};
|
|
127
|
-
lg: {
|
|
128
|
-
root: string;
|
|
129
|
-
};
|
|
130
|
-
clean: {
|
|
131
|
-
root: string;
|
|
132
|
-
};
|
|
55
|
+
xs: string;
|
|
56
|
+
sm: string;
|
|
57
|
+
md: string;
|
|
58
|
+
lg: string;
|
|
59
|
+
clean: string;
|
|
133
60
|
};
|
|
134
61
|
w: {
|
|
135
|
-
full:
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
root: string;
|
|
140
|
-
};
|
|
141
|
-
fit: {
|
|
142
|
-
root: string;
|
|
143
|
-
};
|
|
144
|
-
clean: {
|
|
145
|
-
root: string;
|
|
146
|
-
};
|
|
62
|
+
full: string;
|
|
63
|
+
auto: string;
|
|
64
|
+
fit: string;
|
|
65
|
+
clean: string;
|
|
147
66
|
};
|
|
148
67
|
fullWidth: {
|
|
149
|
-
true:
|
|
150
|
-
root: string;
|
|
151
|
-
};
|
|
68
|
+
true: string;
|
|
152
69
|
};
|
|
153
70
|
rounded: {
|
|
154
|
-
sm:
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
};
|
|
163
|
-
xl: {
|
|
164
|
-
root: string;
|
|
165
|
-
};
|
|
166
|
-
full: {
|
|
167
|
-
root: string;
|
|
168
|
-
};
|
|
169
|
-
clean: {
|
|
170
|
-
root: string;
|
|
171
|
-
};
|
|
172
|
-
};
|
|
173
|
-
}, {
|
|
174
|
-
root: string[];
|
|
175
|
-
chevron: string[];
|
|
176
|
-
}, import("tailwind-variants").TVReturnType<{
|
|
71
|
+
sm: string;
|
|
72
|
+
md: string;
|
|
73
|
+
lg: string;
|
|
74
|
+
xl: string;
|
|
75
|
+
full: string;
|
|
76
|
+
clean: string;
|
|
77
|
+
};
|
|
78
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
177
79
|
variant: {
|
|
178
|
-
primary:
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
};
|
|
184
|
-
ghost: {
|
|
185
|
-
root: string[];
|
|
186
|
-
};
|
|
187
|
-
link: {
|
|
188
|
-
root: string[];
|
|
189
|
-
};
|
|
190
|
-
clean: {
|
|
191
|
-
root: never[];
|
|
192
|
-
};
|
|
80
|
+
primary: string[];
|
|
81
|
+
outline: string[];
|
|
82
|
+
ghost: string[];
|
|
83
|
+
link: string[];
|
|
84
|
+
clean: never[];
|
|
193
85
|
};
|
|
194
86
|
loading: {
|
|
195
|
-
true:
|
|
196
|
-
root: string;
|
|
197
|
-
};
|
|
87
|
+
true: string;
|
|
198
88
|
};
|
|
199
89
|
shadow: {
|
|
200
|
-
true:
|
|
201
|
-
root: string;
|
|
202
|
-
};
|
|
90
|
+
true: string;
|
|
203
91
|
};
|
|
204
92
|
size: {
|
|
205
|
-
xs:
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
};
|
|
211
|
-
md: {
|
|
212
|
-
root: string;
|
|
213
|
-
};
|
|
214
|
-
lg: {
|
|
215
|
-
root: string;
|
|
216
|
-
};
|
|
217
|
-
clean: {
|
|
218
|
-
root: string;
|
|
219
|
-
};
|
|
93
|
+
xs: string;
|
|
94
|
+
sm: string;
|
|
95
|
+
md: string;
|
|
96
|
+
lg: string;
|
|
97
|
+
clean: string;
|
|
220
98
|
};
|
|
221
99
|
w: {
|
|
222
|
-
full:
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
root: string;
|
|
227
|
-
};
|
|
228
|
-
fit: {
|
|
229
|
-
root: string;
|
|
230
|
-
};
|
|
231
|
-
clean: {
|
|
232
|
-
root: string;
|
|
233
|
-
};
|
|
100
|
+
full: string;
|
|
101
|
+
auto: string;
|
|
102
|
+
fit: string;
|
|
103
|
+
clean: string;
|
|
234
104
|
};
|
|
235
105
|
fullWidth: {
|
|
236
|
-
true:
|
|
237
|
-
root: string;
|
|
238
|
-
};
|
|
106
|
+
true: string;
|
|
239
107
|
};
|
|
240
108
|
rounded: {
|
|
241
|
-
sm:
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
};
|
|
250
|
-
xl: {
|
|
251
|
-
root: string;
|
|
252
|
-
};
|
|
253
|
-
full: {
|
|
254
|
-
root: string;
|
|
255
|
-
};
|
|
256
|
-
clean: {
|
|
257
|
-
root: string;
|
|
258
|
-
};
|
|
259
|
-
};
|
|
260
|
-
}, {
|
|
261
|
-
root: string[];
|
|
262
|
-
chevron: string[];
|
|
263
|
-
}, undefined, unknown, unknown, undefined>>;
|
|
109
|
+
sm: string;
|
|
110
|
+
md: string;
|
|
111
|
+
lg: string;
|
|
112
|
+
xl: string;
|
|
113
|
+
full: string;
|
|
114
|
+
clean: string;
|
|
115
|
+
};
|
|
116
|
+
}, undefined, string[], unknown, unknown, undefined>>;
|
|
264
117
|
export type ButtonVariantsProps = VariantProps<typeof buttonVariants>;
|