@kopexa/theme 2.1.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.
Files changed (49) hide show
  1. package/dist/{chunk-NFOF75HQ.mjs → chunk-2N3PG3TK.mjs} +1 -1
  2. package/dist/{chunk-5DOB3IBE.mjs → chunk-6IZPAS4O.mjs} +5 -0
  3. package/dist/{chunk-GA6UOB2D.mjs → chunk-7POAXCN2.mjs} +1 -1
  4. package/dist/{chunk-M3GQ563Q.mjs → chunk-ARLLAC5V.mjs} +1 -1
  5. package/dist/{chunk-Z7D56R5U.mjs → chunk-CWAFYX5G.mjs} +2 -2
  6. package/dist/chunk-GSQSDW37.mjs +137 -0
  7. package/dist/{chunk-IHITEH7V.mjs → chunk-IX46TOS3.mjs} +1 -1
  8. package/dist/{chunk-IHW4FWFB.mjs → chunk-K3EVZATS.mjs} +1 -1
  9. package/dist/{chunk-URGRCBNW.mjs → chunk-NNKYGAZC.mjs} +1 -1
  10. package/dist/{chunk-HHOMDBMZ.mjs → chunk-SYYY32OX.mjs} +1 -1
  11. package/dist/{chunk-DI54XTS5.mjs → chunk-TQVRNEIH.mjs} +1 -1
  12. package/dist/{chunk-XRKUQMGU.mjs → chunk-UTCVHVWF.mjs} +1 -1
  13. package/dist/{chunk-YH6TDPK7.mjs → chunk-VDMXPFII.mjs} +1 -1
  14. package/dist/components/autocomplete.js +5 -0
  15. package/dist/components/autocomplete.mjs +3 -3
  16. package/dist/components/avatar.mjs +2 -2
  17. package/dist/components/button.mjs +2 -2
  18. package/dist/components/combobox.d.mts +169 -0
  19. package/dist/components/combobox.d.ts +169 -0
  20. package/dist/components/combobox.js +246 -0
  21. package/dist/components/combobox.mjs +8 -0
  22. package/dist/components/command.d.mts +3 -3
  23. package/dist/components/command.d.ts +3 -3
  24. package/dist/components/hover-card.mjs +2 -2
  25. package/dist/components/index.d.mts +1 -0
  26. package/dist/components/index.d.ts +1 -0
  27. package/dist/components/index.js +226 -89
  28. package/dist/components/index.mjs +29 -25
  29. package/dist/components/input.js +5 -0
  30. package/dist/components/input.mjs +2 -2
  31. package/dist/components/popover.mjs +2 -2
  32. package/dist/components/select.js +5 -0
  33. package/dist/components/select.mjs +2 -2
  34. package/dist/components/sidebar.js +1 -1
  35. package/dist/components/sidebar.mjs +1 -1
  36. package/dist/components/skeleton-avatar.mjs +3 -3
  37. package/dist/components/slash-dropdown-menu.mjs +2 -2
  38. package/dist/components/textarea.js +5 -0
  39. package/dist/components/textarea.mjs +2 -2
  40. package/dist/index.d.mts +1 -0
  41. package/dist/index.d.ts +1 -0
  42. package/dist/index.js +226 -89
  43. package/dist/index.mjs +29 -25
  44. package/dist/utils/classes.d.mts +5 -0
  45. package/dist/utils/classes.d.ts +5 -0
  46. package/dist/utils/classes.js +5 -0
  47. package/dist/utils/classes.mjs +1 -1
  48. package/package.json +2 -2
  49. /package/dist/{chunk-4I5ASWB3.mjs → chunk-XMLRBNOG.mjs} +0 -0
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  focusVisibleClasses,
3
3
  inputClasses
4
- } from "./chunk-5DOB3IBE.mjs";
4
+ } from "./chunk-6IZPAS4O.mjs";
5
5
 
6
6
  // src/components/select.ts
7
7
  import { tv } from "tailwind-variants";
@@ -28,6 +28,11 @@ var inputClasses = {
28
28
  sm: "h-7 min-h-7",
29
29
  md: "h-8.5 min-h-8.5",
30
30
  lg: "h-10 min-h-10"
31
+ },
32
+ text: {
33
+ sm: "text-sm",
34
+ md: "text-base md:text-sm",
35
+ lg: "text-base"
31
36
  }
32
37
  };
33
38
 
@@ -7,7 +7,7 @@ var sidebar = tv({
7
7
  ],
8
8
  sidebarWrapper: ["group peer text-sidebar-foreground hidden md:block"],
9
9
  sidebar: [
10
- "bg-sidebar text-sidebar-foreground flex h-full w-(--sidebar-width) flex-col"
10
+ "bg-sidebar text-sidebar-foreground flex h-full w-(--sidebar-width) flex-col isolate"
11
11
  ],
12
12
  gap: [
13
13
  "relative w-(--sidebar-width) bg-transparent transition-[width] duration-200 ease-linear",
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  focusVisibleClasses,
3
3
  inputClasses
4
- } from "./chunk-5DOB3IBE.mjs";
4
+ } from "./chunk-6IZPAS4O.mjs";
5
5
 
6
6
  // src/components/textarea.ts
7
7
  import { tv } from "tailwind-variants";
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  input
3
- } from "./chunk-IHW4FWFB.mjs";
3
+ } from "./chunk-K3EVZATS.mjs";
4
4
  import {
5
5
  popoverContentClasses
6
- } from "./chunk-5DOB3IBE.mjs";
6
+ } from "./chunk-6IZPAS4O.mjs";
7
7
 
8
8
  // src/components/autocomplete.ts
9
9
  import { tv } from "tailwind-variants";
@@ -0,0 +1,137 @@
1
+ import {
2
+ input
3
+ } from "./chunk-K3EVZATS.mjs";
4
+
5
+ // src/components/combobox.ts
6
+ import { tv } from "tailwind-variants";
7
+ var combobox = tv({
8
+ slots: {
9
+ root: [],
10
+ control: "relative",
11
+ value: "",
12
+ input: [
13
+ ...input.base,
14
+ "has-[[data-slot=combobox-input]:focus-visible]:ring-ring",
15
+ "has-[[data-slot=combobox-input]:focus-visible]:border-ring",
16
+ "has-[[data-slot=combobox-input]:focus-visible]:outline-none",
17
+ "has-[[data-slot=combobox-input]:focus-visible]:ring-2",
18
+ "[&_[data-slot=combobox-input]]:grow",
19
+ "[&[readonly]]:bg-muted/80 [&[readonly]]:cursor-not-allowed"
20
+ ],
21
+ status: "text-muted-foreground text-sm",
22
+ positioner: "outline-none",
23
+ popup: [
24
+ "py-1 w-[var(--anchor-width)]",
25
+ "max-h-[min(var(--available-height),23rem)] max-w-[var(--available-width)]",
26
+ "bg-[canvas]",
27
+ "rounded-md border border-border bg-popover text-popover-foreground shadow-md shadow-black/5",
28
+ "origin-[var(--transform-origin)] transition-[transform,scale,opacity] data-[ending-style]:scale-90",
29
+ "data-[ending-style]:opacity-0 data-[starting-style]:scale-90 data-[starting-style]:opacity-0"
30
+ ],
31
+ list: "space-y-0.5",
32
+ row: "flex items-center gap-2",
33
+ item: [
34
+ "relative cursor-default flex items-center",
35
+ "text-foreground relative select-none items-center gap-2 rounded-md ps-7 pe-2 py-1.5 text-sm outline-hidden transition-colors data-disabled:pointer-events-none data-disabled:opacity-50",
36
+ "[&_svg]:pointer-events-none [&_svg:not([role=img]):not([class*=text-])]:opacity-60 [&_svg:not([class*=size-])]:size-4 [&_svg]:shrink-0",
37
+ "data-[highlighted]:relative data-[highlighted]:z-0 data-[highlighted]:text-foreground data-[highlighted]:before:absolute data-[highlighted]:before:inset-x-1 data-[highlighted]:before:inset-y-0 data-[highlighted]:before:z-[-1] data-[highlighted]:before:rounded-sm data-[highlighted]:before:bg-accent"
38
+ ],
39
+ itemIndicator: [
40
+ "absolute flex top-1/2 -translate-y-1/2 items-center justify-center start-2.5",
41
+ "[&_svg]:size-4 [&_svg]:text-primary"
42
+ ],
43
+ groupLabel: "px-2 py-1.5 text-xs text-muted-foreground font-medium",
44
+ empty: "px-2 py-1.5 text-sm text-muted-foreground empty:m-0 empty:p-0",
45
+ clear: [
46
+ "absolute cursor-pointer end-6 top-1/2 -translate-y-1/2 rounded-sm opacity-70 ring-offset-background",
47
+ "transition-opacity opacity-60 hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none",
48
+ "data-[disabled]:pointer-events-none",
49
+ "[&_svg]:size-3.5"
50
+ ],
51
+ icon: [
52
+ "absolute cursor-pointer end-2 top-1/2 -translate-y-1/2 rounded-sm opacity-70 ring-offset-background transition-opacity",
53
+ "opacity-60 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none",
54
+ "data-[disabled]:pointer-events-none",
55
+ "[&_svg]:size-3.5"
56
+ ],
57
+ trigger: "relative",
58
+ // note: chips receive "input" and the following styles
59
+ chips: [
60
+ "flex items-center flex-wrap gap-1",
61
+ "[&_[data-slot=combobox-input]]:py-0 [&_[data-slot=combobox-input]]:px-1.5 has-[[data-slot=combobox-chip]]:[&_[data-slot=combobox-input]]:px-0",
62
+ "[&_[data-slot=combobox-input]]:min-h-0 [&_[data-slot=combobox-input]]:flex-1",
63
+ "[&_[data-slot=combobox-input]]:border-0 [&_[data-slot=combobox-input]]:shadow-none [&_[data-slot=combobox-input]]:rounded-none",
64
+ "[&_[data-slot=combobox-input]]:outline-none [&_[data-slot=combobox-input]]:ring-0"
65
+ ],
66
+ chip: [
67
+ "inline-flex items-center gap-1 rounded-md bg-muted px-2 py-1 text-xs font-medium text-foreground"
68
+ ],
69
+ chipRemove: [
70
+ "cursor-pointer ms-1 rounded-sm [&_svg]:opacity-60 hover:bg-muted-foreground/20 hover:[&_svg]:opacity-100",
71
+ "[&_svg]:size-3.5"
72
+ ],
73
+ separator: "my-1.5 h-px bg-muted",
74
+ header: ["flex flex-col items-start justify-between px-3 py-2 border-b"],
75
+ title: "text-sm font-semibold",
76
+ description: "text-xs text-muted-foreground"
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
+ },
96
+ size: {
97
+ sm: {
98
+ input: [
99
+ ...input.variants.size.sm,
100
+ "h-auto py-0.5",
101
+ "[&~[data-slot=combobox-icon]]:end-2.5 [&~[data-slot=combobox-clear]]:end-7"
102
+ ],
103
+ chips: "px-0.75"
104
+ },
105
+ md: {
106
+ input: [
107
+ ...input.variants.size.md,
108
+ "h-auto py-1",
109
+ "[&~[data-slot=combobox-icon]]:end-2 [&~[data-slot=combobox-clear]]:end-6"
110
+ ],
111
+ chips: "px-1"
112
+ },
113
+ lg: {
114
+ input: [
115
+ ...input.variants.size.lg,
116
+ "h-auto py-1",
117
+ "[&~[data-slot=combobox-icon]]:end-1.75 [&~[data-slot=combobox-clear]]:end-5.75"
118
+ ],
119
+ chips: "px-1.5"
120
+ }
121
+ },
122
+ fullWidth: {
123
+ true: {
124
+ input: "w-full",
125
+ chips: "w-full"
126
+ }
127
+ }
128
+ },
129
+ defaultVariants: {
130
+ size: "md",
131
+ fullWidth: true
132
+ }
133
+ });
134
+
135
+ export {
136
+ combobox
137
+ };
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-WSEO3MLK.mjs";
4
4
  import {
5
5
  focusVisibleClasses
6
- } from "./chunk-5DOB3IBE.mjs";
6
+ } from "./chunk-6IZPAS4O.mjs";
7
7
 
8
8
  // src/components/button.ts
9
9
  import { tv } from "tailwind-variants";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  focusVisibleClasses,
3
3
  inputClasses
4
- } from "./chunk-5DOB3IBE.mjs";
4
+ } from "./chunk-6IZPAS4O.mjs";
5
5
 
6
6
  // src/components/input.ts
7
7
  import { tv } from "tailwind-variants";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  popoverContentClasses
3
- } from "./chunk-5DOB3IBE.mjs";
3
+ } from "./chunk-6IZPAS4O.mjs";
4
4
 
5
5
  // src/components/slash-dropdown-menu.ts
6
6
  import { tv } from "tailwind-variants";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  avatar
3
- } from "./chunk-YH6TDPK7.mjs";
3
+ } from "./chunk-VDMXPFII.mjs";
4
4
 
5
5
  // src/components/skeleton-avatar.ts
6
6
  import { tv } from "tailwind-variants";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  popoverContentClasses
3
- } from "./chunk-5DOB3IBE.mjs";
3
+ } from "./chunk-6IZPAS4O.mjs";
4
4
 
5
5
  // src/components/popover.ts
6
6
  import { tv } from "tailwind-variants";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  popoverContentClasses
3
- } from "./chunk-5DOB3IBE.mjs";
3
+ } from "./chunk-6IZPAS4O.mjs";
4
4
 
5
5
  // src/components/hover-card.ts
6
6
  import { tv } from "tailwind-variants";
@@ -4,7 +4,7 @@ import {
4
4
  import {
5
5
  focusVisibleClasses,
6
6
  translateCenterClasses
7
- } from "./chunk-5DOB3IBE.mjs";
7
+ } from "./chunk-6IZPAS4O.mjs";
8
8
 
9
9
  // src/components/avatar.ts
10
10
  import { tv } from "tailwind-variants";
@@ -44,6 +44,11 @@ var inputClasses = {
44
44
  sm: "h-7 min-h-7",
45
45
  md: "h-8.5 min-h-8.5",
46
46
  lg: "h-10 min-h-10"
47
+ },
48
+ text: {
49
+ sm: "text-sm",
50
+ md: "text-base md:text-sm",
51
+ lg: "text-base"
47
52
  }
48
53
  };
49
54
 
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  autocomplete
3
- } from "../chunk-Z7D56R5U.mjs";
4
- import "../chunk-IHW4FWFB.mjs";
5
- import "../chunk-5DOB3IBE.mjs";
3
+ } from "../chunk-CWAFYX5G.mjs";
4
+ import "../chunk-K3EVZATS.mjs";
5
+ import "../chunk-6IZPAS4O.mjs";
6
6
  export {
7
7
  autocomplete
8
8
  };
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  avatar
3
- } from "../chunk-YH6TDPK7.mjs";
3
+ } from "../chunk-VDMXPFII.mjs";
4
4
  import "../chunk-WSEO3MLK.mjs";
5
- import "../chunk-5DOB3IBE.mjs";
5
+ import "../chunk-6IZPAS4O.mjs";
6
6
  export {
7
7
  avatar
8
8
  };
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  button
3
- } from "../chunk-IHITEH7V.mjs";
3
+ } from "../chunk-IX46TOS3.mjs";
4
4
  import "../chunk-WSEO3MLK.mjs";
5
- import "../chunk-5DOB3IBE.mjs";
5
+ import "../chunk-6IZPAS4O.mjs";
6
6
  export {
7
7
  button
8
8
  };
@@ -0,0 +1,169 @@
1
+ import * as tailwind_variants from 'tailwind-variants';
2
+ import { VariantProps } from 'tailwind-variants';
3
+
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
+ };
14
+ size: {
15
+ sm: {
16
+ input: string[];
17
+ chips: string;
18
+ };
19
+ md: {
20
+ input: string[];
21
+ chips: string;
22
+ };
23
+ lg: {
24
+ input: string[];
25
+ chips: string;
26
+ };
27
+ };
28
+ fullWidth: {
29
+ true: {
30
+ input: string;
31
+ chips: string;
32
+ };
33
+ };
34
+ }, {
35
+ root: never[];
36
+ control: string;
37
+ value: string;
38
+ input: string[];
39
+ status: string;
40
+ positioner: string;
41
+ popup: string[];
42
+ list: string;
43
+ row: string;
44
+ item: string[];
45
+ itemIndicator: string[];
46
+ groupLabel: string;
47
+ empty: string;
48
+ clear: string[];
49
+ icon: string[];
50
+ trigger: string;
51
+ chips: string[];
52
+ chip: string[];
53
+ chipRemove: string[];
54
+ separator: string;
55
+ header: string[];
56
+ title: string;
57
+ description: string;
58
+ }, undefined, {
59
+ variant: {
60
+ default: {
61
+ popup: string[];
62
+ };
63
+ inside: {
64
+ popup: string[];
65
+ list: string[];
66
+ };
67
+ };
68
+ size: {
69
+ sm: {
70
+ input: string[];
71
+ chips: string;
72
+ };
73
+ md: {
74
+ input: string[];
75
+ chips: string;
76
+ };
77
+ lg: {
78
+ input: string[];
79
+ chips: string;
80
+ };
81
+ };
82
+ fullWidth: {
83
+ true: {
84
+ input: string;
85
+ chips: string;
86
+ };
87
+ };
88
+ }, {
89
+ root: never[];
90
+ control: string;
91
+ value: string;
92
+ input: string[];
93
+ status: string;
94
+ positioner: string;
95
+ popup: string[];
96
+ list: string;
97
+ row: string;
98
+ item: string[];
99
+ itemIndicator: string[];
100
+ groupLabel: string;
101
+ empty: string;
102
+ clear: string[];
103
+ icon: string[];
104
+ trigger: string;
105
+ chips: string[];
106
+ chip: string[];
107
+ chipRemove: string[];
108
+ separator: string;
109
+ header: string[];
110
+ title: string;
111
+ description: string;
112
+ }, tailwind_variants.TVReturnType<{
113
+ variant: {
114
+ default: {
115
+ popup: string[];
116
+ };
117
+ inside: {
118
+ popup: string[];
119
+ list: string[];
120
+ };
121
+ };
122
+ size: {
123
+ sm: {
124
+ input: string[];
125
+ chips: string;
126
+ };
127
+ md: {
128
+ input: string[];
129
+ chips: string;
130
+ };
131
+ lg: {
132
+ input: string[];
133
+ chips: string;
134
+ };
135
+ };
136
+ fullWidth: {
137
+ true: {
138
+ input: string;
139
+ chips: string;
140
+ };
141
+ };
142
+ }, {
143
+ root: never[];
144
+ control: string;
145
+ value: string;
146
+ input: string[];
147
+ status: string;
148
+ positioner: string;
149
+ popup: string[];
150
+ list: string;
151
+ row: string;
152
+ item: string[];
153
+ itemIndicator: string[];
154
+ groupLabel: string;
155
+ empty: string;
156
+ clear: string[];
157
+ icon: string[];
158
+ trigger: string;
159
+ chips: string[];
160
+ chip: string[];
161
+ chipRemove: string[];
162
+ separator: string;
163
+ header: string[];
164
+ title: string;
165
+ description: string;
166
+ }, undefined, unknown, unknown, undefined>>;
167
+ type ComboboxVariantProps = VariantProps<typeof combobox>;
168
+
169
+ export { type ComboboxVariantProps, combobox };
@@ -0,0 +1,169 @@
1
+ import * as tailwind_variants from 'tailwind-variants';
2
+ import { VariantProps } from 'tailwind-variants';
3
+
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
+ };
14
+ size: {
15
+ sm: {
16
+ input: string[];
17
+ chips: string;
18
+ };
19
+ md: {
20
+ input: string[];
21
+ chips: string;
22
+ };
23
+ lg: {
24
+ input: string[];
25
+ chips: string;
26
+ };
27
+ };
28
+ fullWidth: {
29
+ true: {
30
+ input: string;
31
+ chips: string;
32
+ };
33
+ };
34
+ }, {
35
+ root: never[];
36
+ control: string;
37
+ value: string;
38
+ input: string[];
39
+ status: string;
40
+ positioner: string;
41
+ popup: string[];
42
+ list: string;
43
+ row: string;
44
+ item: string[];
45
+ itemIndicator: string[];
46
+ groupLabel: string;
47
+ empty: string;
48
+ clear: string[];
49
+ icon: string[];
50
+ trigger: string;
51
+ chips: string[];
52
+ chip: string[];
53
+ chipRemove: string[];
54
+ separator: string;
55
+ header: string[];
56
+ title: string;
57
+ description: string;
58
+ }, undefined, {
59
+ variant: {
60
+ default: {
61
+ popup: string[];
62
+ };
63
+ inside: {
64
+ popup: string[];
65
+ list: string[];
66
+ };
67
+ };
68
+ size: {
69
+ sm: {
70
+ input: string[];
71
+ chips: string;
72
+ };
73
+ md: {
74
+ input: string[];
75
+ chips: string;
76
+ };
77
+ lg: {
78
+ input: string[];
79
+ chips: string;
80
+ };
81
+ };
82
+ fullWidth: {
83
+ true: {
84
+ input: string;
85
+ chips: string;
86
+ };
87
+ };
88
+ }, {
89
+ root: never[];
90
+ control: string;
91
+ value: string;
92
+ input: string[];
93
+ status: string;
94
+ positioner: string;
95
+ popup: string[];
96
+ list: string;
97
+ row: string;
98
+ item: string[];
99
+ itemIndicator: string[];
100
+ groupLabel: string;
101
+ empty: string;
102
+ clear: string[];
103
+ icon: string[];
104
+ trigger: string;
105
+ chips: string[];
106
+ chip: string[];
107
+ chipRemove: string[];
108
+ separator: string;
109
+ header: string[];
110
+ title: string;
111
+ description: string;
112
+ }, tailwind_variants.TVReturnType<{
113
+ variant: {
114
+ default: {
115
+ popup: string[];
116
+ };
117
+ inside: {
118
+ popup: string[];
119
+ list: string[];
120
+ };
121
+ };
122
+ size: {
123
+ sm: {
124
+ input: string[];
125
+ chips: string;
126
+ };
127
+ md: {
128
+ input: string[];
129
+ chips: string;
130
+ };
131
+ lg: {
132
+ input: string[];
133
+ chips: string;
134
+ };
135
+ };
136
+ fullWidth: {
137
+ true: {
138
+ input: string;
139
+ chips: string;
140
+ };
141
+ };
142
+ }, {
143
+ root: never[];
144
+ control: string;
145
+ value: string;
146
+ input: string[];
147
+ status: string;
148
+ positioner: string;
149
+ popup: string[];
150
+ list: string;
151
+ row: string;
152
+ item: string[];
153
+ itemIndicator: string[];
154
+ groupLabel: string;
155
+ empty: string;
156
+ clear: string[];
157
+ icon: string[];
158
+ trigger: string;
159
+ chips: string[];
160
+ chip: string[];
161
+ chipRemove: string[];
162
+ separator: string;
163
+ header: string[];
164
+ title: string;
165
+ description: string;
166
+ }, undefined, unknown, unknown, undefined>>;
167
+ type ComboboxVariantProps = VariantProps<typeof combobox>;
168
+
169
+ export { type ComboboxVariantProps, combobox };