@kopexa/theme 13.0.0 → 13.0.1
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-URVHE3OS.mjs → chunk-GSQSDW37.mjs} +20 -2
- package/dist/components/combobox.d.mts +27 -0
- package/dist/components/combobox.d.ts +27 -0
- package/dist/components/combobox.js +20 -2
- package/dist/components/combobox.mjs +1 -1
- package/dist/components/index.js +20 -2
- package/dist/components/index.mjs +1 -1
- package/dist/index.js +20 -2
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
|
@@ -21,8 +21,9 @@ var combobox = tv({
|
|
|
21
21
|
status: "text-muted-foreground text-sm",
|
|
22
22
|
positioner: "outline-none",
|
|
23
23
|
popup: [
|
|
24
|
-
"py-1 w-[var(--anchor-width)]
|
|
25
|
-
"
|
|
24
|
+
"py-1 w-[var(--anchor-width)]",
|
|
25
|
+
"max-h-[min(var(--available-height),23rem)] max-w-[var(--available-width)]",
|
|
26
|
+
"bg-[canvas]",
|
|
26
27
|
"rounded-md border border-border bg-popover text-popover-foreground shadow-md shadow-black/5",
|
|
27
28
|
"origin-[var(--transform-origin)] transition-[transform,scale,opacity] data-[ending-style]:scale-90",
|
|
28
29
|
"data-[ending-style]:opacity-0 data-[starting-style]:scale-90 data-[starting-style]:opacity-0"
|
|
@@ -75,6 +76,23 @@ var combobox = tv({
|
|
|
75
76
|
description: "text-xs text-muted-foreground"
|
|
76
77
|
},
|
|
77
78
|
variants: {
|
|
79
|
+
variant: {
|
|
80
|
+
default: {
|
|
81
|
+
popup: [
|
|
82
|
+
"scroll-pt-2 scroll-pb-2",
|
|
83
|
+
"overflow-y-auto overscroll-contain"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
inside: {
|
|
87
|
+
popup: [
|
|
88
|
+
"[--input-container-height:60px] origin-[var(--transform-origin)]"
|
|
89
|
+
],
|
|
90
|
+
list: [
|
|
91
|
+
"overflow-y-auto scroll-py-2 py-2 overscroll-contain",
|
|
92
|
+
"max-h-[min(calc(24rem-var(--input-container-height)),calc(var(--available-height)-var(--input-container-height)))]"
|
|
93
|
+
]
|
|
94
|
+
}
|
|
95
|
+
},
|
|
78
96
|
size: {
|
|
79
97
|
sm: {
|
|
80
98
|
input: [
|
|
@@ -2,6 +2,15 @@ import * as tailwind_variants from 'tailwind-variants';
|
|
|
2
2
|
import { VariantProps } from 'tailwind-variants';
|
|
3
3
|
|
|
4
4
|
declare const combobox: tailwind_variants.TVReturnType<{
|
|
5
|
+
variant: {
|
|
6
|
+
default: {
|
|
7
|
+
popup: string[];
|
|
8
|
+
};
|
|
9
|
+
inside: {
|
|
10
|
+
popup: string[];
|
|
11
|
+
list: string[];
|
|
12
|
+
};
|
|
13
|
+
};
|
|
5
14
|
size: {
|
|
6
15
|
sm: {
|
|
7
16
|
input: string[];
|
|
@@ -47,6 +56,15 @@ declare const combobox: tailwind_variants.TVReturnType<{
|
|
|
47
56
|
title: string;
|
|
48
57
|
description: string;
|
|
49
58
|
}, undefined, {
|
|
59
|
+
variant: {
|
|
60
|
+
default: {
|
|
61
|
+
popup: string[];
|
|
62
|
+
};
|
|
63
|
+
inside: {
|
|
64
|
+
popup: string[];
|
|
65
|
+
list: string[];
|
|
66
|
+
};
|
|
67
|
+
};
|
|
50
68
|
size: {
|
|
51
69
|
sm: {
|
|
52
70
|
input: string[];
|
|
@@ -92,6 +110,15 @@ declare const combobox: tailwind_variants.TVReturnType<{
|
|
|
92
110
|
title: string;
|
|
93
111
|
description: string;
|
|
94
112
|
}, tailwind_variants.TVReturnType<{
|
|
113
|
+
variant: {
|
|
114
|
+
default: {
|
|
115
|
+
popup: string[];
|
|
116
|
+
};
|
|
117
|
+
inside: {
|
|
118
|
+
popup: string[];
|
|
119
|
+
list: string[];
|
|
120
|
+
};
|
|
121
|
+
};
|
|
95
122
|
size: {
|
|
96
123
|
sm: {
|
|
97
124
|
input: string[];
|
|
@@ -2,6 +2,15 @@ import * as tailwind_variants from 'tailwind-variants';
|
|
|
2
2
|
import { VariantProps } from 'tailwind-variants';
|
|
3
3
|
|
|
4
4
|
declare const combobox: tailwind_variants.TVReturnType<{
|
|
5
|
+
variant: {
|
|
6
|
+
default: {
|
|
7
|
+
popup: string[];
|
|
8
|
+
};
|
|
9
|
+
inside: {
|
|
10
|
+
popup: string[];
|
|
11
|
+
list: string[];
|
|
12
|
+
};
|
|
13
|
+
};
|
|
5
14
|
size: {
|
|
6
15
|
sm: {
|
|
7
16
|
input: string[];
|
|
@@ -47,6 +56,15 @@ declare const combobox: tailwind_variants.TVReturnType<{
|
|
|
47
56
|
title: string;
|
|
48
57
|
description: string;
|
|
49
58
|
}, undefined, {
|
|
59
|
+
variant: {
|
|
60
|
+
default: {
|
|
61
|
+
popup: string[];
|
|
62
|
+
};
|
|
63
|
+
inside: {
|
|
64
|
+
popup: string[];
|
|
65
|
+
list: string[];
|
|
66
|
+
};
|
|
67
|
+
};
|
|
50
68
|
size: {
|
|
51
69
|
sm: {
|
|
52
70
|
input: string[];
|
|
@@ -92,6 +110,15 @@ declare const combobox: tailwind_variants.TVReturnType<{
|
|
|
92
110
|
title: string;
|
|
93
111
|
description: string;
|
|
94
112
|
}, tailwind_variants.TVReturnType<{
|
|
113
|
+
variant: {
|
|
114
|
+
default: {
|
|
115
|
+
popup: string[];
|
|
116
|
+
};
|
|
117
|
+
inside: {
|
|
118
|
+
popup: string[];
|
|
119
|
+
list: string[];
|
|
120
|
+
};
|
|
121
|
+
};
|
|
95
122
|
size: {
|
|
96
123
|
sm: {
|
|
97
124
|
input: string[];
|
|
@@ -130,8 +130,9 @@ var combobox = (0, import_tailwind_variants2.tv)({
|
|
|
130
130
|
status: "text-muted-foreground text-sm",
|
|
131
131
|
positioner: "outline-none",
|
|
132
132
|
popup: [
|
|
133
|
-
"py-1 w-[var(--anchor-width)]
|
|
134
|
-
"
|
|
133
|
+
"py-1 w-[var(--anchor-width)]",
|
|
134
|
+
"max-h-[min(var(--available-height),23rem)] max-w-[var(--available-width)]",
|
|
135
|
+
"bg-[canvas]",
|
|
135
136
|
"rounded-md border border-border bg-popover text-popover-foreground shadow-md shadow-black/5",
|
|
136
137
|
"origin-[var(--transform-origin)] transition-[transform,scale,opacity] data-[ending-style]:scale-90",
|
|
137
138
|
"data-[ending-style]:opacity-0 data-[starting-style]:scale-90 data-[starting-style]:opacity-0"
|
|
@@ -184,6 +185,23 @@ var combobox = (0, import_tailwind_variants2.tv)({
|
|
|
184
185
|
description: "text-xs text-muted-foreground"
|
|
185
186
|
},
|
|
186
187
|
variants: {
|
|
188
|
+
variant: {
|
|
189
|
+
default: {
|
|
190
|
+
popup: [
|
|
191
|
+
"scroll-pt-2 scroll-pb-2",
|
|
192
|
+
"overflow-y-auto overscroll-contain"
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
inside: {
|
|
196
|
+
popup: [
|
|
197
|
+
"[--input-container-height:60px] origin-[var(--transform-origin)]"
|
|
198
|
+
],
|
|
199
|
+
list: [
|
|
200
|
+
"overflow-y-auto scroll-py-2 py-2 overscroll-contain",
|
|
201
|
+
"max-h-[min(calc(24rem-var(--input-container-height)),calc(var(--available-height)-var(--input-container-height)))]"
|
|
202
|
+
]
|
|
203
|
+
}
|
|
204
|
+
},
|
|
187
205
|
size: {
|
|
188
206
|
sm: {
|
|
189
207
|
input: [
|
package/dist/components/index.js
CHANGED
|
@@ -1573,8 +1573,9 @@ var combobox = (0, import_tailwind_variants16.tv)({
|
|
|
1573
1573
|
status: "text-muted-foreground text-sm",
|
|
1574
1574
|
positioner: "outline-none",
|
|
1575
1575
|
popup: [
|
|
1576
|
-
"py-1 w-[var(--anchor-width)]
|
|
1577
|
-
"
|
|
1576
|
+
"py-1 w-[var(--anchor-width)]",
|
|
1577
|
+
"max-h-[min(var(--available-height),23rem)] max-w-[var(--available-width)]",
|
|
1578
|
+
"bg-[canvas]",
|
|
1578
1579
|
"rounded-md border border-border bg-popover text-popover-foreground shadow-md shadow-black/5",
|
|
1579
1580
|
"origin-[var(--transform-origin)] transition-[transform,scale,opacity] data-[ending-style]:scale-90",
|
|
1580
1581
|
"data-[ending-style]:opacity-0 data-[starting-style]:scale-90 data-[starting-style]:opacity-0"
|
|
@@ -1627,6 +1628,23 @@ var combobox = (0, import_tailwind_variants16.tv)({
|
|
|
1627
1628
|
description: "text-xs text-muted-foreground"
|
|
1628
1629
|
},
|
|
1629
1630
|
variants: {
|
|
1631
|
+
variant: {
|
|
1632
|
+
default: {
|
|
1633
|
+
popup: [
|
|
1634
|
+
"scroll-pt-2 scroll-pb-2",
|
|
1635
|
+
"overflow-y-auto overscroll-contain"
|
|
1636
|
+
]
|
|
1637
|
+
},
|
|
1638
|
+
inside: {
|
|
1639
|
+
popup: [
|
|
1640
|
+
"[--input-container-height:60px] origin-[var(--transform-origin)]"
|
|
1641
|
+
],
|
|
1642
|
+
list: [
|
|
1643
|
+
"overflow-y-auto scroll-py-2 py-2 overscroll-contain",
|
|
1644
|
+
"max-h-[min(calc(24rem-var(--input-container-height)),calc(var(--available-height)-var(--input-container-height)))]"
|
|
1645
|
+
]
|
|
1646
|
+
}
|
|
1647
|
+
},
|
|
1630
1648
|
size: {
|
|
1631
1649
|
sm: {
|
|
1632
1650
|
input: [
|
package/dist/index.js
CHANGED
|
@@ -1573,8 +1573,9 @@ var combobox = (0, import_tailwind_variants16.tv)({
|
|
|
1573
1573
|
status: "text-muted-foreground text-sm",
|
|
1574
1574
|
positioner: "outline-none",
|
|
1575
1575
|
popup: [
|
|
1576
|
-
"py-1 w-[var(--anchor-width)]
|
|
1577
|
-
"
|
|
1576
|
+
"py-1 w-[var(--anchor-width)]",
|
|
1577
|
+
"max-h-[min(var(--available-height),23rem)] max-w-[var(--available-width)]",
|
|
1578
|
+
"bg-[canvas]",
|
|
1578
1579
|
"rounded-md border border-border bg-popover text-popover-foreground shadow-md shadow-black/5",
|
|
1579
1580
|
"origin-[var(--transform-origin)] transition-[transform,scale,opacity] data-[ending-style]:scale-90",
|
|
1580
1581
|
"data-[ending-style]:opacity-0 data-[starting-style]:scale-90 data-[starting-style]:opacity-0"
|
|
@@ -1627,6 +1628,23 @@ var combobox = (0, import_tailwind_variants16.tv)({
|
|
|
1627
1628
|
description: "text-xs text-muted-foreground"
|
|
1628
1629
|
},
|
|
1629
1630
|
variants: {
|
|
1631
|
+
variant: {
|
|
1632
|
+
default: {
|
|
1633
|
+
popup: [
|
|
1634
|
+
"scroll-pt-2 scroll-pb-2",
|
|
1635
|
+
"overflow-y-auto overscroll-contain"
|
|
1636
|
+
]
|
|
1637
|
+
},
|
|
1638
|
+
inside: {
|
|
1639
|
+
popup: [
|
|
1640
|
+
"[--input-container-height:60px] origin-[var(--transform-origin)]"
|
|
1641
|
+
],
|
|
1642
|
+
list: [
|
|
1643
|
+
"overflow-y-auto scroll-py-2 py-2 overscroll-contain",
|
|
1644
|
+
"max-h-[min(calc(24rem-var(--input-container-height)),calc(var(--available-height)-var(--input-container-height)))]"
|
|
1645
|
+
]
|
|
1646
|
+
}
|
|
1647
|
+
},
|
|
1630
1648
|
size: {
|
|
1631
1649
|
sm: {
|
|
1632
1650
|
input: [
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/theme",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.1",
|
|
4
4
|
"description": "The default theme for Kopexa components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"theme",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"tailwind-merge": "3.3.1",
|
|
65
65
|
"tailwind-variants": "^3.1.1",
|
|
66
66
|
"tw-animate-css": "^1.4.0",
|
|
67
|
-
"@kopexa/shared-utils": "13.0.
|
|
67
|
+
"@kopexa/shared-utils": "13.0.1"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"tailwindcss": ">=4.0.0"
|