@lglab/compose-ui 0.26.0 → 0.28.0

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.
@@ -0,0 +1,96 @@
1
+ import { Autocomplete } from '@base-ui/react/autocomplete';
2
+ import { AutocompleteRootProps } from '@base-ui/react/autocomplete';
3
+ import { JSX } from 'react/jsx-runtime';
4
+ import * as React_2 from 'react';
5
+
6
+ export { Autocomplete }
7
+
8
+ export declare const AutocompleteCollection: {
9
+ (props: AutocompleteCollectionProps): JSX.Element;
10
+ displayName: string;
11
+ };
12
+
13
+ export declare type AutocompleteCollectionProps = React_2.ComponentProps<typeof Autocomplete.Collection>;
14
+
15
+ export declare const AutocompleteEmpty: {
16
+ ({ className, ...props }: AutocompleteEmptyProps): JSX.Element;
17
+ displayName: string;
18
+ };
19
+
20
+ export declare type AutocompleteEmptyProps = React_2.ComponentProps<typeof Autocomplete.Empty>;
21
+
22
+ export declare const AutocompleteGroup: {
23
+ ({ className, ...props }: AutocompleteGroupProps): JSX.Element;
24
+ displayName: string;
25
+ };
26
+
27
+ export declare const AutocompleteGroupLabel: {
28
+ ({ className, ...props }: AutocompleteGroupLabelProps): JSX.Element;
29
+ displayName: string;
30
+ };
31
+
32
+ export declare type AutocompleteGroupLabelProps = React_2.ComponentProps<typeof Autocomplete.GroupLabel>;
33
+
34
+ export declare type AutocompleteGroupProps = React_2.ComponentProps<typeof Autocomplete.Group>;
35
+
36
+ export declare const AutocompleteInput: {
37
+ ({ className, ...props }: AutocompleteInputProps): JSX.Element;
38
+ displayName: string;
39
+ };
40
+
41
+ export declare type AutocompleteInputProps = React_2.ComponentProps<typeof Autocomplete.Input>;
42
+
43
+ export declare const AutocompleteItem: {
44
+ ({ className, ...props }: AutocompleteItemProps): JSX.Element;
45
+ displayName: string;
46
+ };
47
+
48
+ export declare type AutocompleteItemProps = React_2.ComponentProps<typeof Autocomplete.Item>;
49
+
50
+ export declare const AutocompleteList: {
51
+ ({ className, ...props }: AutocompleteListProps): JSX.Element;
52
+ displayName: string;
53
+ };
54
+
55
+ export declare type AutocompleteListProps = React_2.ComponentProps<typeof Autocomplete.List>;
56
+
57
+ export declare const AutocompletePopup: {
58
+ ({ className, ...props }: AutocompletePopupProps): JSX.Element;
59
+ displayName: string;
60
+ };
61
+
62
+ export declare type AutocompletePopupProps = React_2.ComponentProps<typeof Autocomplete.Popup>;
63
+
64
+ export declare const AutocompletePortal: {
65
+ (props: AutocompletePortalProps): JSX.Element;
66
+ displayName: string;
67
+ };
68
+
69
+ export declare type AutocompletePortalProps = React_2.ComponentProps<typeof Autocomplete.Portal>;
70
+
71
+ export declare const AutocompletePositioner: {
72
+ ({ className, ...props }: AutocompletePositionerProps): JSX.Element;
73
+ displayName: string;
74
+ };
75
+
76
+ export declare type AutocompletePositionerProps = React_2.ComponentProps<typeof Autocomplete.Positioner>;
77
+
78
+ export declare const AutocompleteRoot: typeof Autocomplete.Root;
79
+
80
+ export { AutocompleteRootProps }
81
+
82
+ export declare const AutocompleteSeparator: {
83
+ ({ className, ...props }: AutocompleteSeparatorProps): JSX.Element;
84
+ displayName: string;
85
+ };
86
+
87
+ export declare type AutocompleteSeparatorProps = React_2.ComponentProps<typeof Autocomplete.Separator>;
88
+
89
+ export declare const AutocompleteStatus: {
90
+ ({ className, ...props }: AutocompleteStatusProps): JSX.Element;
91
+ displayName: string;
92
+ };
93
+
94
+ export declare type AutocompleteStatusProps = React_2.ComponentProps<typeof Autocomplete.Status>;
95
+
96
+ export { }
@@ -0,0 +1,117 @@
1
+ "use client";
2
+ import { jsx as a } from "react/jsx-runtime";
3
+ import { Autocomplete as o } from "@base-ui/react/autocomplete";
4
+ import { Autocomplete as G } from "@base-ui/react/autocomplete";
5
+ import { i as l } from "./form-variants-LJ8gIbk0.js";
6
+ import { c as r } from "./utils-B6yFEsav.js";
7
+ const P = o.Root, p = ({ className: t, ...e }) => /* @__PURE__ */ a(o.Input, { className: r(l, t), ...e });
8
+ p.displayName = "AutocompleteInput";
9
+ const m = (t) => /* @__PURE__ */ a(o.Portal, { ...t });
10
+ m.displayName = "AutocompletePortal";
11
+ const s = ({ className: t, ...e }) => /* @__PURE__ */ a(
12
+ o.Positioner,
13
+ {
14
+ className: r("z-50 outline-none", t),
15
+ sideOffset: 4,
16
+ ...e
17
+ }
18
+ );
19
+ s.displayName = "AutocompletePositioner";
20
+ const n = ({ className: t, ...e }) => /* @__PURE__ */ a(
21
+ o.Popup,
22
+ {
23
+ className: r(
24
+ "group flex flex-col min-w-(--anchor-width) max-h-[min(23rem,var(--available-height))] max-w-(--available-width) origin-(--transform-origin) rounded-md bg-background text-foreground shadow-lg shadow-gray-200 border border-border transition-[transform,scale,opacity] duration-100",
25
+ "data-ending-style:scale-95 data-ending-style:opacity-0",
26
+ "data-starting-style:scale-95 data-starting-style:opacity-0",
27
+ "dark:shadow-none",
28
+ t
29
+ ),
30
+ ...e
31
+ }
32
+ );
33
+ n.displayName = "AutocompletePopup";
34
+ const c = ({ className: t, ...e }) => /* @__PURE__ */ a(
35
+ o.Empty,
36
+ {
37
+ className: r(
38
+ "shrink-0 p-4 text-sm leading-4 text-muted-foreground empty:m-0 empty:p-0",
39
+ t
40
+ ),
41
+ ...e
42
+ }
43
+ );
44
+ c.displayName = "AutocompleteEmpty";
45
+ const u = ({ className: t, ...e }) => /* @__PURE__ */ a(
46
+ o.List,
47
+ {
48
+ className: r(
49
+ "outline-0 overflow-y-auto scroll-py-2 overscroll-contain flex-1 min-h-0 data-empty:p-0",
50
+ t
51
+ ),
52
+ ...e
53
+ }
54
+ );
55
+ u.displayName = "AutocompleteList";
56
+ const i = ({ className: t, ...e }) => /* @__PURE__ */ a(
57
+ o.Item,
58
+ {
59
+ className: r(
60
+ "flex items-center gap-2 py-2 px-4 text-sm leading-4 outline-none select-none",
61
+ "data-highlighted:bg-accent data-highlighted:text-accent-foreground",
62
+ t
63
+ ),
64
+ ...e
65
+ }
66
+ );
67
+ i.displayName = "AutocompleteItem";
68
+ const d = ({ className: t, ...e }) => /* @__PURE__ */ a(
69
+ o.Status,
70
+ {
71
+ className: r(
72
+ "flex items-center gap-2 py-2 px-4 text-sm text-muted-foreground empty:hidden",
73
+ t
74
+ ),
75
+ ...e
76
+ }
77
+ );
78
+ d.displayName = "AutocompleteStatus";
79
+ const y = ({ className: t, ...e }) => /* @__PURE__ */ a(o.Group, { className: t, ...e });
80
+ y.displayName = "AutocompleteGroup";
81
+ const g = ({ className: t, ...e }) => /* @__PURE__ */ a(
82
+ o.GroupLabel,
83
+ {
84
+ className: r(
85
+ "px-4 py-1.5 text-sm font-semibold sticky top-0 z-1 bg-background",
86
+ t
87
+ ),
88
+ ...e
89
+ }
90
+ );
91
+ g.displayName = "AutocompleteGroupLabel";
92
+ const A = (t) => /* @__PURE__ */ a(o.Collection, { ...t });
93
+ A.displayName = "AutocompleteCollection";
94
+ const x = ({ className: t, ...e }) => /* @__PURE__ */ a(
95
+ o.Separator,
96
+ {
97
+ className: r("my-1 border-t border-border", t),
98
+ ...e
99
+ }
100
+ );
101
+ x.displayName = "AutocompleteSeparator";
102
+ export {
103
+ G as Autocomplete,
104
+ A as AutocompleteCollection,
105
+ c as AutocompleteEmpty,
106
+ y as AutocompleteGroup,
107
+ g as AutocompleteGroupLabel,
108
+ p as AutocompleteInput,
109
+ i as AutocompleteItem,
110
+ u as AutocompleteList,
111
+ n as AutocompletePopup,
112
+ m as AutocompletePortal,
113
+ s as AutocompletePositioner,
114
+ P as AutocompleteRoot,
115
+ x as AutocompleteSeparator,
116
+ d as AutocompleteStatus
117
+ };
@@ -0,0 +1,42 @@
1
+ import { JSX } from 'react/jsx-runtime';
2
+ import * as React_2 from 'react';
3
+
4
+ export declare const Badge: {
5
+ ({ className, variant, appearance, size, shape, ...props }: BadgeProps): JSX.Element;
6
+ displayName: string;
7
+ };
8
+
9
+ export declare type BadgeAppearance = 'default' | 'outline' | 'light' | 'ghost';
10
+
11
+ export declare const BadgeButton: {
12
+ ({ className, ...props }: BadgeButtonProps): JSX.Element;
13
+ displayName: string;
14
+ };
15
+
16
+ export declare type BadgeButtonProps = React_2.ComponentProps<'button'>;
17
+
18
+ export declare const BadgeDot: {
19
+ ({ className, ...props }: BadgeDotProps): JSX.Element;
20
+ displayName: string;
21
+ };
22
+
23
+ export declare type BadgeDotProps = React_2.ComponentProps<'span'>;
24
+
25
+ export declare type BadgeProps = React_2.ComponentProps<'span'> & {
26
+ /** Visual style variant */
27
+ variant?: BadgeVariant;
28
+ /** Appearance style */
29
+ appearance?: BadgeAppearance;
30
+ /** Size of the badge */
31
+ size?: BadgeSize;
32
+ /** Shape of the badge */
33
+ shape?: BadgeShape;
34
+ };
35
+
36
+ export declare type BadgeShape = 'pill' | 'rounded';
37
+
38
+ export declare type BadgeSize = 'sm' | 'md' | 'lg';
39
+
40
+ export declare type BadgeVariant = 'default' | 'secondary' | 'destructive' | 'success' | 'warning' | 'info';
41
+
42
+ export { }
package/dist/badge.js ADDED
@@ -0,0 +1,203 @@
1
+ "use client";
2
+ import { jsx as t } from "react/jsx-runtime";
3
+ import { cva as o } from "class-variance-authority";
4
+ import { c as s } from "./utils-B6yFEsav.js";
5
+ const p = o(
6
+ [
7
+ "inline-flex items-center gap-1.5 whitespace-nowrap font-medium transition-colors",
8
+ "[&_svg]:pointer-events-none [&_svg]:shrink-0"
9
+ ],
10
+ {
11
+ variants: {
12
+ variant: {
13
+ default: "",
14
+ secondary: "",
15
+ destructive: "",
16
+ success: "",
17
+ warning: "",
18
+ info: ""
19
+ },
20
+ appearance: {
21
+ default: "",
22
+ outline: "border",
23
+ light: "",
24
+ ghost: ""
25
+ },
26
+ size: {
27
+ sm: "text-xs px-2 h-5 min-w-5 [&_svg]:size-3",
28
+ md: "text-xs px-2.5 h-6 min-w-6 [&_svg]:size-3.5",
29
+ lg: "text-sm px-3 h-7 min-w-7 [&_svg]:size-4"
30
+ },
31
+ shape: {
32
+ pill: "rounded-full",
33
+ rounded: "rounded-md"
34
+ }
35
+ },
36
+ compoundVariants: [
37
+ // Default appearance (solid) - full color bg, white text
38
+ {
39
+ variant: "default",
40
+ appearance: "default",
41
+ class: "bg-primary text-primary-foreground"
42
+ },
43
+ {
44
+ variant: "secondary",
45
+ appearance: "default",
46
+ class: "bg-secondary text-secondary-foreground"
47
+ },
48
+ {
49
+ variant: "destructive",
50
+ appearance: "default",
51
+ class: "bg-destructive text-white"
52
+ },
53
+ {
54
+ variant: "success",
55
+ appearance: "default",
56
+ class: "bg-success text-white"
57
+ },
58
+ {
59
+ variant: "warning",
60
+ appearance: "default",
61
+ class: "bg-warning text-white"
62
+ },
63
+ {
64
+ variant: "info",
65
+ appearance: "default",
66
+ class: "bg-info text-white"
67
+ },
68
+ // Light appearance - 10% bg, colored text
69
+ {
70
+ variant: "default",
71
+ appearance: "light",
72
+ class: "bg-primary/10 text-primary"
73
+ },
74
+ {
75
+ variant: "secondary",
76
+ appearance: "light",
77
+ class: "bg-secondary text-secondary-foreground"
78
+ },
79
+ {
80
+ variant: "destructive",
81
+ appearance: "light",
82
+ class: "bg-destructive/10 text-destructive"
83
+ },
84
+ {
85
+ variant: "success",
86
+ appearance: "light",
87
+ class: "bg-success/10 text-success"
88
+ },
89
+ {
90
+ variant: "warning",
91
+ appearance: "light",
92
+ class: "bg-warning/10 text-warning"
93
+ },
94
+ {
95
+ variant: "info",
96
+ appearance: "light",
97
+ class: "bg-info/10 text-info"
98
+ },
99
+ // Outline appearance - border + 10% bg, colored text
100
+ {
101
+ variant: "default",
102
+ appearance: "outline",
103
+ class: "border-primary bg-primary/10 text-primary"
104
+ },
105
+ {
106
+ variant: "secondary",
107
+ appearance: "outline",
108
+ class: "bg-secondary border-border text-foreground"
109
+ },
110
+ {
111
+ variant: "destructive",
112
+ appearance: "outline",
113
+ class: "border-destructive bg-destructive/10 text-destructive"
114
+ },
115
+ {
116
+ variant: "success",
117
+ appearance: "outline",
118
+ class: "border-success bg-success/10 text-success"
119
+ },
120
+ {
121
+ variant: "warning",
122
+ appearance: "outline",
123
+ class: "border-warning bg-warning/10 text-warning"
124
+ },
125
+ {
126
+ variant: "info",
127
+ appearance: "outline",
128
+ class: "border-info bg-info/10 text-info"
129
+ },
130
+ // Ghost appearance - just colored text
131
+ {
132
+ variant: "default",
133
+ appearance: "ghost",
134
+ class: "text-primary"
135
+ },
136
+ {
137
+ variant: "secondary",
138
+ appearance: "ghost",
139
+ class: "text-secondary-foreground"
140
+ },
141
+ {
142
+ variant: "destructive",
143
+ appearance: "ghost",
144
+ class: "text-destructive"
145
+ },
146
+ {
147
+ variant: "success",
148
+ appearance: "ghost",
149
+ class: "text-success"
150
+ },
151
+ {
152
+ variant: "warning",
153
+ appearance: "ghost",
154
+ class: "text-warning"
155
+ },
156
+ {
157
+ variant: "info",
158
+ appearance: "ghost",
159
+ class: "text-info"
160
+ }
161
+ ],
162
+ defaultVariants: {
163
+ variant: "default",
164
+ appearance: "default",
165
+ size: "md",
166
+ shape: "rounded"
167
+ }
168
+ }
169
+ ), d = ({ className: a, variant: e, appearance: r, size: n, shape: i, ...c }) => /* @__PURE__ */ t(
170
+ "span",
171
+ {
172
+ className: s(p({ variant: e, appearance: r, size: n, shape: i }), a),
173
+ ...c
174
+ }
175
+ );
176
+ d.displayName = "Badge";
177
+ const l = ({ className: a, ...e }) => /* @__PURE__ */ t(
178
+ "span",
179
+ {
180
+ "data-slot": "badge-dot",
181
+ className: s("size-2 rounded-full bg-[currentColor]", a),
182
+ ...e
183
+ }
184
+ );
185
+ l.displayName = "BadgeDot";
186
+ const u = ({ className: a, ...e }) => /* @__PURE__ */ t(
187
+ "button",
188
+ {
189
+ "data-slot": "badge-button",
190
+ type: "button",
191
+ className: s(
192
+ "cursor-pointer transition-all inline-flex items-center justify-center leading-none size-3.5 [&>svg]:opacity-100! [&>svg]:size-3.5! p-0 rounded-md -me-0.5 opacity-60 hover:opacity-100",
193
+ a
194
+ ),
195
+ ...e
196
+ }
197
+ );
198
+ u.displayName = "BadgeButton";
199
+ export {
200
+ d as Badge,
201
+ u as BadgeButton,
202
+ l as BadgeDot
203
+ };
@@ -0,0 +1,182 @@
1
+ import { Combobox } from '@base-ui/react/combobox';
2
+ import { ComboboxChipsProps as ComboboxChipsProps_2 } from '@base-ui/react';
3
+ import { ComboboxRootProps as ComboboxRootProps_2 } from '@base-ui/react/combobox';
4
+ import { JSX } from 'react/jsx-runtime';
5
+ import * as React_2 from 'react';
6
+
7
+ export { Combobox }
8
+
9
+ export declare const ComboboxArrow: {
10
+ ({ className, ...props }: ComboboxArrowProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+
14
+ export declare type ComboboxArrowProps = React_2.ComponentProps<typeof Combobox.Arrow>;
15
+
16
+ export declare const ComboboxBackdrop: {
17
+ ({ className, ...props }: ComboboxBackdropProps): JSX.Element;
18
+ displayName: string;
19
+ };
20
+
21
+ export declare type ComboboxBackdropProps = React_2.ComponentProps<typeof Combobox.Backdrop>;
22
+
23
+ export declare const ComboboxChip: {
24
+ ({ className, ...props }: ComboboxChipProps): JSX.Element;
25
+ displayName: string;
26
+ };
27
+
28
+ export declare type ComboboxChipProps = React_2.ComponentProps<typeof Combobox.Chip>;
29
+
30
+ export declare const ComboboxChipRemove: {
31
+ ({ className, ...props }: ComboboxChipRemoveProps): JSX.Element;
32
+ displayName: string;
33
+ };
34
+
35
+ export declare type ComboboxChipRemoveProps = React_2.ComponentProps<typeof Combobox.ChipRemove>;
36
+
37
+ export declare const ComboboxChips: React_2.ForwardRefExoticComponent<Omit<Omit<ComboboxChipsProps_2, "ref"> & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
38
+
39
+ export declare type ComboboxChipsProps = React_2.ComponentProps<typeof Combobox.Chips>;
40
+
41
+ export declare const ComboboxClear: {
42
+ ({ className, ...props }: ComboboxClearProps): JSX.Element;
43
+ displayName: string;
44
+ };
45
+
46
+ export declare type ComboboxClearProps = React_2.ComponentProps<typeof Combobox.Clear>;
47
+
48
+ export declare const ComboboxCollection: {
49
+ (props: ComboboxCollectionProps): JSX.Element;
50
+ displayName: string;
51
+ };
52
+
53
+ export declare type ComboboxCollectionProps = React_2.ComponentProps<typeof Combobox.Collection>;
54
+
55
+ export declare const ComboboxControl: {
56
+ ({ className, ...props }: ComboboxControlProps): JSX.Element;
57
+ displayName: string;
58
+ };
59
+
60
+ export declare type ComboboxControlProps = React_2.ComponentProps<'div'>;
61
+
62
+ export declare const ComboboxEmpty: {
63
+ ({ className, ...props }: ComboboxEmptyProps): JSX.Element;
64
+ displayName: string;
65
+ };
66
+
67
+ export declare type ComboboxEmptyProps = React_2.ComponentProps<typeof Combobox.Empty>;
68
+
69
+ export declare const ComboboxGroup: {
70
+ ({ className, ...props }: ComboboxGroupProps): JSX.Element;
71
+ displayName: string;
72
+ };
73
+
74
+ export declare const ComboboxGroupLabel: {
75
+ ({ className, ...props }: ComboboxGroupLabelProps): JSX.Element;
76
+ displayName: string;
77
+ };
78
+
79
+ export declare type ComboboxGroupLabelProps = React_2.ComponentProps<typeof Combobox.GroupLabel>;
80
+
81
+ export declare type ComboboxGroupProps = React_2.ComponentProps<typeof Combobox.Group>;
82
+
83
+ export declare const ComboboxIcon: {
84
+ ({ className, ...props }: ComboboxIconProps): JSX.Element;
85
+ displayName: string;
86
+ };
87
+
88
+ export declare type ComboboxIconProps = React_2.ComponentProps<typeof Combobox.Icon>;
89
+
90
+ export declare const ComboboxInput: {
91
+ ({ className, ...props }: ComboboxInputProps): JSX.Element;
92
+ displayName: string;
93
+ };
94
+
95
+ export declare type ComboboxInputProps = React_2.ComponentProps<typeof Combobox.Input>;
96
+
97
+ export declare const ComboboxItem: {
98
+ ({ className, ...props }: ComboboxItemProps): JSX.Element;
99
+ displayName: string;
100
+ };
101
+
102
+ export declare const ComboboxItemIndicator: {
103
+ ({ className, ...props }: ComboboxItemIndicatorProps): JSX.Element;
104
+ displayName: string;
105
+ };
106
+
107
+ export declare type ComboboxItemIndicatorProps = React_2.ComponentProps<typeof Combobox.ItemIndicator>;
108
+
109
+ export declare type ComboboxItemProps = React_2.ComponentProps<typeof Combobox.Item>;
110
+
111
+ export declare const ComboboxItemText: {
112
+ ({ className, ...props }: ComboboxItemTextProps): JSX.Element;
113
+ displayName: string;
114
+ };
115
+
116
+ export declare type ComboboxItemTextProps = React_2.ComponentProps<'span'>;
117
+
118
+ export declare const ComboboxList: {
119
+ ({ className, ...props }: ComboboxListProps): JSX.Element;
120
+ displayName: string;
121
+ };
122
+
123
+ export declare type ComboboxListProps = React_2.ComponentProps<typeof Combobox.List>;
124
+
125
+ export declare const ComboboxPopup: {
126
+ ({ className, ...props }: ComboboxPopupProps): JSX.Element;
127
+ displayName: string;
128
+ };
129
+
130
+ export declare type ComboboxPopupProps = React_2.ComponentProps<typeof Combobox.Popup>;
131
+
132
+ export declare const ComboboxPortal: {
133
+ (props: ComboboxPortalProps): JSX.Element;
134
+ displayName: string;
135
+ };
136
+
137
+ export declare type ComboboxPortalProps = React_2.ComponentProps<typeof Combobox.Portal>;
138
+
139
+ export declare const ComboboxPositioner: {
140
+ ({ className, ...props }: ComboboxPositionerProps): JSX.Element;
141
+ displayName: string;
142
+ };
143
+
144
+ export declare type ComboboxPositionerProps = React_2.ComponentProps<typeof Combobox.Positioner>;
145
+
146
+ export declare function ComboboxRoot<Value, Multiple extends boolean | undefined = false>(props: ComboboxRootProps_2<Value, Multiple>): JSX.Element;
147
+
148
+ export declare namespace ComboboxRoot {
149
+ var displayName: string;
150
+ }
151
+
152
+ export declare type ComboboxRootProps<Value, Multiple extends boolean | undefined = false> = ComboboxRootProps_2<Value, Multiple>;
153
+
154
+ export declare const ComboboxSeparator: {
155
+ ({ className, ...props }: ComboboxSeparatorProps): JSX.Element;
156
+ displayName: string;
157
+ };
158
+
159
+ export declare type ComboboxSeparatorProps = React_2.ComponentProps<typeof Combobox.Separator>;
160
+
161
+ export declare const ComboboxStatus: {
162
+ ({ className, ...props }: ComboboxStatusProps): JSX.Element;
163
+ displayName: string;
164
+ };
165
+
166
+ export declare type ComboboxStatusProps = React_2.ComponentProps<typeof Combobox.Status>;
167
+
168
+ export declare const ComboboxTrigger: {
169
+ ({ className, ...props }: ComboboxTriggerProps): JSX.Element;
170
+ displayName: string;
171
+ };
172
+
173
+ export declare type ComboboxTriggerProps = React_2.ComponentProps<typeof Combobox.Trigger>;
174
+
175
+ export declare const ComboboxValue: {
176
+ (props: ComboboxValueProps): JSX.Element;
177
+ displayName: string;
178
+ };
179
+
180
+ export declare type ComboboxValueProps = React_2.ComponentProps<typeof Combobox.Value>;
181
+
182
+ export { }