@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
|
@@ -1,18 +1,19 @@
|
|
|
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 passwordInput: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
icon?:
|
|
8
|
-
button?:
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
icon?: tailwind_merge.ClassNameValue;
|
|
9
|
+
button?: tailwind_merge.ClassNameValue;
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
} | {
|
|
12
13
|
[x: string]: {
|
|
13
|
-
[x: string]:
|
|
14
|
-
icon?:
|
|
15
|
-
button?:
|
|
14
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
15
|
+
icon?: tailwind_merge.ClassNameValue;
|
|
16
|
+
button?: tailwind_merge.ClassNameValue;
|
|
16
17
|
};
|
|
17
18
|
};
|
|
18
19
|
} | {}, {
|
|
@@ -20,9 +21,9 @@ declare const passwordInput: tailwind_variants.TVReturnType<{
|
|
|
20
21
|
icon: string;
|
|
21
22
|
}, undefined, {
|
|
22
23
|
[key: string]: {
|
|
23
|
-
[key: string]:
|
|
24
|
-
icon?:
|
|
25
|
-
button?:
|
|
24
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
25
|
+
icon?: tailwind_merge.ClassNameValue;
|
|
26
|
+
button?: tailwind_merge.ClassNameValue;
|
|
26
27
|
};
|
|
27
28
|
};
|
|
28
29
|
} | {}, {
|
|
@@ -1,34 +1,35 @@
|
|
|
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 pageHeader: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
root?:
|
|
8
|
-
title?:
|
|
9
|
-
description?:
|
|
10
|
-
titleArea?:
|
|
11
|
-
leadingVisual?:
|
|
12
|
-
leadingAction?:
|
|
13
|
-
contextArea?:
|
|
14
|
-
breadcrumbs?:
|
|
15
|
-
actions?:
|
|
16
|
-
navigation?:
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
root?: tailwind_merge.ClassNameValue;
|
|
9
|
+
title?: tailwind_merge.ClassNameValue;
|
|
10
|
+
description?: tailwind_merge.ClassNameValue;
|
|
11
|
+
titleArea?: tailwind_merge.ClassNameValue;
|
|
12
|
+
leadingVisual?: tailwind_merge.ClassNameValue;
|
|
13
|
+
leadingAction?: tailwind_merge.ClassNameValue;
|
|
14
|
+
contextArea?: tailwind_merge.ClassNameValue;
|
|
15
|
+
breadcrumbs?: tailwind_merge.ClassNameValue;
|
|
16
|
+
actions?: tailwind_merge.ClassNameValue;
|
|
17
|
+
navigation?: tailwind_merge.ClassNameValue;
|
|
17
18
|
};
|
|
18
19
|
};
|
|
19
20
|
} | {
|
|
20
21
|
[x: string]: {
|
|
21
|
-
[x: string]:
|
|
22
|
-
root?:
|
|
23
|
-
title?:
|
|
24
|
-
description?:
|
|
25
|
-
titleArea?:
|
|
26
|
-
leadingVisual?:
|
|
27
|
-
leadingAction?:
|
|
28
|
-
contextArea?:
|
|
29
|
-
breadcrumbs?:
|
|
30
|
-
actions?:
|
|
31
|
-
navigation?:
|
|
22
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
23
|
+
root?: tailwind_merge.ClassNameValue;
|
|
24
|
+
title?: tailwind_merge.ClassNameValue;
|
|
25
|
+
description?: tailwind_merge.ClassNameValue;
|
|
26
|
+
titleArea?: tailwind_merge.ClassNameValue;
|
|
27
|
+
leadingVisual?: tailwind_merge.ClassNameValue;
|
|
28
|
+
leadingAction?: tailwind_merge.ClassNameValue;
|
|
29
|
+
contextArea?: tailwind_merge.ClassNameValue;
|
|
30
|
+
breadcrumbs?: tailwind_merge.ClassNameValue;
|
|
31
|
+
actions?: tailwind_merge.ClassNameValue;
|
|
32
|
+
navigation?: tailwind_merge.ClassNameValue;
|
|
32
33
|
};
|
|
33
34
|
};
|
|
34
35
|
} | {}, {
|
|
@@ -44,17 +45,17 @@ declare const pageHeader: tailwind_variants.TVReturnType<{
|
|
|
44
45
|
navigation: string[];
|
|
45
46
|
}, undefined, {
|
|
46
47
|
[key: string]: {
|
|
47
|
-
[key: string]:
|
|
48
|
-
root?:
|
|
49
|
-
title?:
|
|
50
|
-
description?:
|
|
51
|
-
titleArea?:
|
|
52
|
-
leadingVisual?:
|
|
53
|
-
leadingAction?:
|
|
54
|
-
contextArea?:
|
|
55
|
-
breadcrumbs?:
|
|
56
|
-
actions?:
|
|
57
|
-
navigation?:
|
|
48
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
49
|
+
root?: tailwind_merge.ClassNameValue;
|
|
50
|
+
title?: tailwind_merge.ClassNameValue;
|
|
51
|
+
description?: tailwind_merge.ClassNameValue;
|
|
52
|
+
titleArea?: tailwind_merge.ClassNameValue;
|
|
53
|
+
leadingVisual?: tailwind_merge.ClassNameValue;
|
|
54
|
+
leadingAction?: tailwind_merge.ClassNameValue;
|
|
55
|
+
contextArea?: tailwind_merge.ClassNameValue;
|
|
56
|
+
breadcrumbs?: tailwind_merge.ClassNameValue;
|
|
57
|
+
actions?: tailwind_merge.ClassNameValue;
|
|
58
|
+
navigation?: tailwind_merge.ClassNameValue;
|
|
58
59
|
};
|
|
59
60
|
};
|
|
60
61
|
} | {}, {
|
|
@@ -1,34 +1,35 @@
|
|
|
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 pageHeader: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
root?:
|
|
8
|
-
title?:
|
|
9
|
-
description?:
|
|
10
|
-
titleArea?:
|
|
11
|
-
leadingVisual?:
|
|
12
|
-
leadingAction?:
|
|
13
|
-
contextArea?:
|
|
14
|
-
breadcrumbs?:
|
|
15
|
-
actions?:
|
|
16
|
-
navigation?:
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
root?: tailwind_merge.ClassNameValue;
|
|
9
|
+
title?: tailwind_merge.ClassNameValue;
|
|
10
|
+
description?: tailwind_merge.ClassNameValue;
|
|
11
|
+
titleArea?: tailwind_merge.ClassNameValue;
|
|
12
|
+
leadingVisual?: tailwind_merge.ClassNameValue;
|
|
13
|
+
leadingAction?: tailwind_merge.ClassNameValue;
|
|
14
|
+
contextArea?: tailwind_merge.ClassNameValue;
|
|
15
|
+
breadcrumbs?: tailwind_merge.ClassNameValue;
|
|
16
|
+
actions?: tailwind_merge.ClassNameValue;
|
|
17
|
+
navigation?: tailwind_merge.ClassNameValue;
|
|
17
18
|
};
|
|
18
19
|
};
|
|
19
20
|
} | {
|
|
20
21
|
[x: string]: {
|
|
21
|
-
[x: string]:
|
|
22
|
-
root?:
|
|
23
|
-
title?:
|
|
24
|
-
description?:
|
|
25
|
-
titleArea?:
|
|
26
|
-
leadingVisual?:
|
|
27
|
-
leadingAction?:
|
|
28
|
-
contextArea?:
|
|
29
|
-
breadcrumbs?:
|
|
30
|
-
actions?:
|
|
31
|
-
navigation?:
|
|
22
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
23
|
+
root?: tailwind_merge.ClassNameValue;
|
|
24
|
+
title?: tailwind_merge.ClassNameValue;
|
|
25
|
+
description?: tailwind_merge.ClassNameValue;
|
|
26
|
+
titleArea?: tailwind_merge.ClassNameValue;
|
|
27
|
+
leadingVisual?: tailwind_merge.ClassNameValue;
|
|
28
|
+
leadingAction?: tailwind_merge.ClassNameValue;
|
|
29
|
+
contextArea?: tailwind_merge.ClassNameValue;
|
|
30
|
+
breadcrumbs?: tailwind_merge.ClassNameValue;
|
|
31
|
+
actions?: tailwind_merge.ClassNameValue;
|
|
32
|
+
navigation?: tailwind_merge.ClassNameValue;
|
|
32
33
|
};
|
|
33
34
|
};
|
|
34
35
|
} | {}, {
|
|
@@ -44,17 +45,17 @@ declare const pageHeader: tailwind_variants.TVReturnType<{
|
|
|
44
45
|
navigation: string[];
|
|
45
46
|
}, undefined, {
|
|
46
47
|
[key: string]: {
|
|
47
|
-
[key: string]:
|
|
48
|
-
root?:
|
|
49
|
-
title?:
|
|
50
|
-
description?:
|
|
51
|
-
titleArea?:
|
|
52
|
-
leadingVisual?:
|
|
53
|
-
leadingAction?:
|
|
54
|
-
contextArea?:
|
|
55
|
-
breadcrumbs?:
|
|
56
|
-
actions?:
|
|
57
|
-
navigation?:
|
|
48
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
49
|
+
root?: tailwind_merge.ClassNameValue;
|
|
50
|
+
title?: tailwind_merge.ClassNameValue;
|
|
51
|
+
description?: tailwind_merge.ClassNameValue;
|
|
52
|
+
titleArea?: tailwind_merge.ClassNameValue;
|
|
53
|
+
leadingVisual?: tailwind_merge.ClassNameValue;
|
|
54
|
+
leadingAction?: tailwind_merge.ClassNameValue;
|
|
55
|
+
contextArea?: tailwind_merge.ClassNameValue;
|
|
56
|
+
breadcrumbs?: tailwind_merge.ClassNameValue;
|
|
57
|
+
actions?: tailwind_merge.ClassNameValue;
|
|
58
|
+
navigation?: tailwind_merge.ClassNameValue;
|
|
58
59
|
};
|
|
59
60
|
};
|
|
60
61
|
} | {}, {
|
|
@@ -1,24 +1,25 @@
|
|
|
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 popover: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
content?:
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
content?: tailwind_merge.ClassNameValue;
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
11
|
} | {
|
|
11
12
|
[x: string]: {
|
|
12
|
-
[x: string]:
|
|
13
|
-
content?:
|
|
13
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
14
|
+
content?: tailwind_merge.ClassNameValue;
|
|
14
15
|
};
|
|
15
16
|
};
|
|
16
17
|
} | {}, {
|
|
17
18
|
content: string[];
|
|
18
19
|
}, undefined, {
|
|
19
20
|
[key: string]: {
|
|
20
|
-
[key: string]:
|
|
21
|
-
content?:
|
|
21
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
22
|
+
content?: tailwind_merge.ClassNameValue;
|
|
22
23
|
};
|
|
23
24
|
};
|
|
24
25
|
} | {}, {
|
|
@@ -1,24 +1,25 @@
|
|
|
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 popover: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
content?:
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
content?: tailwind_merge.ClassNameValue;
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
11
|
} | {
|
|
11
12
|
[x: string]: {
|
|
12
|
-
[x: string]:
|
|
13
|
-
content?:
|
|
13
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
14
|
+
content?: tailwind_merge.ClassNameValue;
|
|
14
15
|
};
|
|
15
16
|
};
|
|
16
17
|
} | {}, {
|
|
17
18
|
content: string[];
|
|
18
19
|
}, undefined, {
|
|
19
20
|
[key: string]: {
|
|
20
|
-
[key: string]:
|
|
21
|
-
content?:
|
|
21
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
22
|
+
content?: tailwind_merge.ClassNameValue;
|
|
22
23
|
};
|
|
23
24
|
};
|
|
24
25
|
} | {}, {
|
|
@@ -1,22 +1,23 @@
|
|
|
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 resizable: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
root?:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
root?: tailwind_merge.ClassNameValue;
|
|
9
|
+
iconContainer?: tailwind_merge.ClassNameValue;
|
|
10
|
+
panel?: tailwind_merge.ClassNameValue;
|
|
11
|
+
handle?: tailwind_merge.ClassNameValue;
|
|
11
12
|
};
|
|
12
13
|
};
|
|
13
14
|
} | {
|
|
14
15
|
[x: string]: {
|
|
15
|
-
[x: string]:
|
|
16
|
-
root?:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
17
|
+
root?: tailwind_merge.ClassNameValue;
|
|
18
|
+
iconContainer?: tailwind_merge.ClassNameValue;
|
|
19
|
+
panel?: tailwind_merge.ClassNameValue;
|
|
20
|
+
handle?: tailwind_merge.ClassNameValue;
|
|
20
21
|
};
|
|
21
22
|
};
|
|
22
23
|
} | {}, {
|
|
@@ -26,11 +27,11 @@ declare const resizable: tailwind_variants.TVReturnType<{
|
|
|
26
27
|
iconContainer: string[];
|
|
27
28
|
}, undefined, {
|
|
28
29
|
[key: string]: {
|
|
29
|
-
[key: string]:
|
|
30
|
-
root?:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
30
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
31
|
+
root?: tailwind_merge.ClassNameValue;
|
|
32
|
+
iconContainer?: tailwind_merge.ClassNameValue;
|
|
33
|
+
panel?: tailwind_merge.ClassNameValue;
|
|
34
|
+
handle?: tailwind_merge.ClassNameValue;
|
|
34
35
|
};
|
|
35
36
|
};
|
|
36
37
|
} | {}, {
|
|
@@ -1,22 +1,23 @@
|
|
|
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 resizable: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
root?:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
root?: tailwind_merge.ClassNameValue;
|
|
9
|
+
iconContainer?: tailwind_merge.ClassNameValue;
|
|
10
|
+
panel?: tailwind_merge.ClassNameValue;
|
|
11
|
+
handle?: tailwind_merge.ClassNameValue;
|
|
11
12
|
};
|
|
12
13
|
};
|
|
13
14
|
} | {
|
|
14
15
|
[x: string]: {
|
|
15
|
-
[x: string]:
|
|
16
|
-
root?:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
17
|
+
root?: tailwind_merge.ClassNameValue;
|
|
18
|
+
iconContainer?: tailwind_merge.ClassNameValue;
|
|
19
|
+
panel?: tailwind_merge.ClassNameValue;
|
|
20
|
+
handle?: tailwind_merge.ClassNameValue;
|
|
20
21
|
};
|
|
21
22
|
};
|
|
22
23
|
} | {}, {
|
|
@@ -26,11 +27,11 @@ declare const resizable: tailwind_variants.TVReturnType<{
|
|
|
26
27
|
iconContainer: string[];
|
|
27
28
|
}, undefined, {
|
|
28
29
|
[key: string]: {
|
|
29
|
-
[key: string]:
|
|
30
|
-
root?:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
30
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
31
|
+
root?: tailwind_merge.ClassNameValue;
|
|
32
|
+
iconContainer?: tailwind_merge.ClassNameValue;
|
|
33
|
+
panel?: tailwind_merge.ClassNameValue;
|
|
34
|
+
handle?: tailwind_merge.ClassNameValue;
|
|
34
35
|
};
|
|
35
36
|
};
|
|
36
37
|
} | {}, {
|
|
@@ -1,24 +1,25 @@
|
|
|
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 tooltip: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
content?:
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
content?: tailwind_merge.ClassNameValue;
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
11
|
} | {
|
|
11
12
|
[x: string]: {
|
|
12
|
-
[x: string]:
|
|
13
|
-
content?:
|
|
13
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
14
|
+
content?: tailwind_merge.ClassNameValue;
|
|
14
15
|
};
|
|
15
16
|
};
|
|
16
17
|
} | {}, {
|
|
17
18
|
content: string[];
|
|
18
19
|
}, undefined, {
|
|
19
20
|
[key: string]: {
|
|
20
|
-
[key: string]:
|
|
21
|
-
content?:
|
|
21
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
22
|
+
content?: tailwind_merge.ClassNameValue;
|
|
22
23
|
};
|
|
23
24
|
};
|
|
24
25
|
} | {}, {
|
|
@@ -1,24 +1,25 @@
|
|
|
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 tooltip: tailwind_variants.TVReturnType<{
|
|
5
6
|
[key: string]: {
|
|
6
|
-
[key: string]:
|
|
7
|
-
content?:
|
|
7
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
8
|
+
content?: tailwind_merge.ClassNameValue;
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
11
|
} | {
|
|
11
12
|
[x: string]: {
|
|
12
|
-
[x: string]:
|
|
13
|
-
content?:
|
|
13
|
+
[x: string]: tailwind_merge.ClassNameValue | {
|
|
14
|
+
content?: tailwind_merge.ClassNameValue;
|
|
14
15
|
};
|
|
15
16
|
};
|
|
16
17
|
} | {}, {
|
|
17
18
|
content: string[];
|
|
18
19
|
}, undefined, {
|
|
19
20
|
[key: string]: {
|
|
20
|
-
[key: string]:
|
|
21
|
-
content?:
|
|
21
|
+
[key: string]: tailwind_merge.ClassNameValue | {
|
|
22
|
+
content?: tailwind_merge.ClassNameValue;
|
|
22
23
|
};
|
|
23
24
|
};
|
|
24
25
|
} | {}, {
|
package/dist/index.d.mts
CHANGED
|
@@ -5,6 +5,7 @@ export { AvatarSlots, AvatarVariantProps, avatar } from './components/avatar.mjs
|
|
|
5
5
|
export { AvatarGroupSlots, AvatarGroupVariantProps, avatarGroup } from './components/avatar-group.mjs';
|
|
6
6
|
export { ButtonVariantProps, button } from './components/button.mjs';
|
|
7
7
|
export { CalendarVariantProps, calendar } from './components/calendar.mjs';
|
|
8
|
+
export { CalloutVariantProps, callout } from './components/callout.mjs';
|
|
8
9
|
export { CardSlots, CardVariantProps, card } from './components/card.mjs';
|
|
9
10
|
export { CheckboxVariantProps, checkbox } from './components/checkbox.mjs';
|
|
10
11
|
export { ChipSlots, ChipVariantProps, chip } from './components/chip.mjs';
|
|
@@ -35,3 +36,4 @@ export { TableSlots, TableVariantProps, table } from './components/table.mjs';
|
|
|
35
36
|
export { TabsVariantProps, tabs } from './components/tabs.mjs';
|
|
36
37
|
export { TooltipVariants, tooltip } from './components/tooltip.mjs';
|
|
37
38
|
export { SlotsToClasses } from './utils/types.mjs';
|
|
39
|
+
import 'tailwind-merge';
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export { AvatarSlots, AvatarVariantProps, avatar } from './components/avatar.js'
|
|
|
5
5
|
export { AvatarGroupSlots, AvatarGroupVariantProps, avatarGroup } from './components/avatar-group.js';
|
|
6
6
|
export { ButtonVariantProps, button } from './components/button.js';
|
|
7
7
|
export { CalendarVariantProps, calendar } from './components/calendar.js';
|
|
8
|
+
export { CalloutVariantProps, callout } from './components/callout.js';
|
|
8
9
|
export { CardSlots, CardVariantProps, card } from './components/card.js';
|
|
9
10
|
export { CheckboxVariantProps, checkbox } from './components/checkbox.js';
|
|
10
11
|
export { ChipSlots, ChipVariantProps, chip } from './components/chip.js';
|
|
@@ -35,3 +36,4 @@ export { TableSlots, TableVariantProps, table } from './components/table.js';
|
|
|
35
36
|
export { TabsVariantProps, tabs } from './components/tabs.js';
|
|
36
37
|
export { TooltipVariants, tooltip } from './components/tooltip.js';
|
|
37
38
|
export { SlotsToClasses } from './utils/types.js';
|
|
39
|
+
import 'tailwind-merge';
|