@deriv-ds/design-intelligence-layer 0.2.0 → 0.4.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.
- package/AGENTS.md +3 -3
- package/README.md +360 -147
- package/dist/index.cjs +4501 -2372
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +435 -152
- package/dist/index.d.ts +435 -152
- package/dist/index.js +5123 -2986
- package/dist/index.js.map +1 -1
- package/guides/brand-voice/deriv-brand-voice.md +250 -0
- package/guides/design-system-guide/{trading-game-ds-guide.md → deriv-design-intelligence-guide.md} +5 -5
- package/guides/design-system-guide/quill-ds-guide.md +817 -0
- package/package.json +7 -2
- package/src/styles.css +965 -29
- package/guides/brand-voice/trading-game-brand-voice.md +0 -325
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import { Accordion as Accordion$1,
|
|
3
|
+
import { Accordion as Accordion$1, AspectRatio as AspectRatio$1, Avatar as Avatar$1, Checkbox as Checkbox$1, Separator as Separator$1, Collapsible as Collapsible$1, Dialog as Dialog$1, ContextMenu as ContextMenu$1, Direction, DropdownMenu as DropdownMenu$1, Label as Label$1, Slot, HoverCard as HoverCard$1, Popover as Popover$1, Progress as Progress$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Select as Select$1, Tooltip as Tooltip$1, Slider as Slider$1, Switch as Switch$1, Tabs, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1 } from 'radix-ui';
|
|
4
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
import { DayPicker, DayButton } from 'react-day-picker';
|
|
@@ -16,41 +16,152 @@ import * as ResizablePrimitive from 'react-resizable-panels';
|
|
|
16
16
|
import { ToasterProps } from 'sonner';
|
|
17
17
|
import { ClassValue } from 'clsx';
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
type AccordionVariant = "fill" | "elevate" | "outline" | "flush";
|
|
20
|
+
type AccordionSize = "xs" | "sm" | "md" | "lg";
|
|
21
|
+
/**
|
|
22
|
+
* Root accordion container. Sets variant and size for all child items.
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* // Fill accordion (default), medium size
|
|
26
|
+
* <Accordion type="single" collapsible>
|
|
27
|
+
* <AccordionItem value="item-1">
|
|
28
|
+
* <AccordionTrigger title="Title" subtitle="Subtitle" />
|
|
29
|
+
* <AccordionContent>Content here</AccordionContent>
|
|
30
|
+
* </AccordionItem>
|
|
31
|
+
* </Accordion>
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* // Elevate accordion (fill + shadow), medium size
|
|
35
|
+
* <Accordion type="single" collapsible variant="elevate">…</Accordion>
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* // Outline accordion, small size
|
|
39
|
+
* <Accordion type="multiple" variant="outline" size="sm">…</Accordion>
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* // Flush accordion with custom trigger content
|
|
43
|
+
* <Accordion type="single" collapsible variant="flush">
|
|
44
|
+
* <AccordionItem value="item-1">
|
|
45
|
+
* <AccordionTrigger><MyCustomHeader /></AccordionTrigger>
|
|
46
|
+
* <AccordionContent>Content</AccordionContent>
|
|
47
|
+
* </AccordionItem>
|
|
48
|
+
* </Accordion>
|
|
49
|
+
*/
|
|
50
|
+
declare function Accordion({ variant, size, className, ...props }: React$1.ComponentProps<typeof Accordion$1.Root> & {
|
|
51
|
+
/** Visual style of each accordion card. @default "fill" */
|
|
52
|
+
variant?: AccordionVariant;
|
|
53
|
+
/** Controls padding, font size, and trigger height. @default "md" */
|
|
54
|
+
size?: AccordionSize;
|
|
55
|
+
}): react_jsx_runtime.JSX.Element;
|
|
56
|
+
/**
|
|
57
|
+
* Individual accordion item. Styling is derived from the parent `Accordion`
|
|
58
|
+
* variant — no extra props required.
|
|
59
|
+
*/
|
|
20
60
|
declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof Accordion$1.Item>): react_jsx_runtime.JSX.Element;
|
|
21
|
-
|
|
61
|
+
/**
|
|
62
|
+
* Clickable trigger row that expands/collapses the accordion item.
|
|
63
|
+
*
|
|
64
|
+
* **Default layout** (when `title` prop is supplied):
|
|
65
|
+
* Three-column structure — `[icon] [title + subtitle] [chevron]`
|
|
66
|
+
*
|
|
67
|
+
* **Custom layout** (when `title` is omitted):
|
|
68
|
+
* Pass arbitrary `children`; the chevron is always appended automatically.
|
|
69
|
+
*
|
|
70
|
+
* @example
|
|
71
|
+
* // Default — structured header
|
|
72
|
+
* <AccordionTrigger
|
|
73
|
+
* icon={<UserIcon />}
|
|
74
|
+
* title="Account settings"
|
|
75
|
+
* subtitle="Manage your profile"
|
|
76
|
+
* />
|
|
77
|
+
*
|
|
78
|
+
* @example
|
|
79
|
+
* // Default — no icon, no subtitle
|
|
80
|
+
* <AccordionTrigger title="Frequently asked questions" />
|
|
81
|
+
*
|
|
82
|
+
* @example
|
|
83
|
+
* // Custom — free-form header slot
|
|
84
|
+
* <AccordionTrigger><MyBadge /><MyTag /></AccordionTrigger>
|
|
85
|
+
*/
|
|
86
|
+
declare function AccordionTrigger({ className, children, icon, title, subtitle, titleBold, ...props }: React$1.ComponentProps<typeof Accordion$1.Trigger> & {
|
|
87
|
+
/**
|
|
88
|
+
* Optional leading icon (default layout only).
|
|
89
|
+
* Pass any React node — typically a 24 × 24 icon from lucide-react.
|
|
90
|
+
*/
|
|
91
|
+
icon?: React$1.ReactNode;
|
|
92
|
+
/**
|
|
93
|
+
* Title text. When provided the trigger uses the **default three-column layout**.
|
|
94
|
+
* Omit to render `children` in a custom layout.
|
|
95
|
+
*/
|
|
96
|
+
title?: string;
|
|
97
|
+
/** Secondary line below the title (default layout only). */
|
|
98
|
+
subtitle?: string;
|
|
99
|
+
/** Render title in semibold weight. @default false */
|
|
100
|
+
titleBold?: boolean;
|
|
101
|
+
}): react_jsx_runtime.JSX.Element;
|
|
102
|
+
/**
|
|
103
|
+
* Collapsible content area. Accepts any React children as the body slot.
|
|
104
|
+
* Padding automatically matches the parent accordion's size.
|
|
105
|
+
*/
|
|
22
106
|
declare function AccordionContent({ className, children, ...props }: React$1.ComponentProps<typeof Accordion$1.Content>): react_jsx_runtime.JSX.Element;
|
|
23
107
|
|
|
24
|
-
declare
|
|
25
|
-
|
|
26
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
27
|
-
declare function Alert({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element;
|
|
28
|
-
declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
29
|
-
declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
30
|
-
|
|
31
|
-
declare const buttonVariants: (props?: ({
|
|
32
|
-
variant?: "primary" | "secondary" | "tertiary" | null | undefined;
|
|
33
|
-
size?: "lg" | "md" | "sm" | "xs" | "icon" | "icon-lg" | "icon-md" | "icon-sm" | "icon-xs" | null | undefined;
|
|
34
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
35
|
-
declare function Button({ className, variant, size, asChild, loading, ...props }: React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
36
|
-
asChild?: boolean;
|
|
37
|
-
loading?: boolean;
|
|
108
|
+
declare function Badge({ count, className, ...props }: React$1.ComponentProps<"span"> & {
|
|
109
|
+
count: number;
|
|
38
110
|
}): react_jsx_runtime.JSX.Element;
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
111
|
+
declare const dotColorMap: {
|
|
112
|
+
readonly red: "bg-badge-status-red";
|
|
113
|
+
readonly yellow: "bg-badge-status-yellow";
|
|
114
|
+
readonly green: "bg-badge-status-green";
|
|
115
|
+
readonly blue: "bg-badge-status-blue";
|
|
116
|
+
};
|
|
117
|
+
declare function BadgeDot({ size, color, className, ...props }: React$1.ComponentProps<"span"> & {
|
|
118
|
+
size?: "sm" | "md";
|
|
119
|
+
color?: keyof typeof dotColorMap;
|
|
120
|
+
}): react_jsx_runtime.JSX.Element;
|
|
121
|
+
|
|
122
|
+
type NotificationVariant = "information" | "success" | "warning" | "danger";
|
|
123
|
+
interface NotificationBannerProps {
|
|
124
|
+
title: React$1.ReactNode;
|
|
125
|
+
description?: React$1.ReactNode;
|
|
126
|
+
/** Optional content before the default Info icon (e.g. anatomy markers). */
|
|
127
|
+
slotBeforeIcon?: React$1.ReactNode;
|
|
128
|
+
/** Optional content before the close button when onClose is set (e.g. anatomy markers). */
|
|
129
|
+
slotBeforeClose?: React$1.ReactNode;
|
|
130
|
+
onClose?: () => void;
|
|
131
|
+
className?: string;
|
|
132
|
+
}
|
|
133
|
+
declare function NotificationBanner({ title, description, slotBeforeIcon, slotBeforeClose, onClose, className, }: NotificationBannerProps): react_jsx_runtime.JSX.Element;
|
|
134
|
+
interface NotificationItemProps {
|
|
135
|
+
variant?: NotificationVariant;
|
|
136
|
+
title: React$1.ReactNode;
|
|
137
|
+
description?: React$1.ReactNode;
|
|
138
|
+
dateTime?: React$1.ReactNode;
|
|
139
|
+
/** Optional content before the variant icon column (e.g. anatomy markers). */
|
|
140
|
+
slotBeforeIcon?: React$1.ReactNode;
|
|
141
|
+
/** Optional content after the icon + badge cell (e.g. anatomy markers for the unread dot). */
|
|
142
|
+
slotAfterIcon?: React$1.ReactNode;
|
|
143
|
+
/** Optional content before the desktop action buttons (e.g. anatomy markers). */
|
|
144
|
+
slotBeforeActions?: React$1.ReactNode;
|
|
145
|
+
isRead: boolean;
|
|
146
|
+
/** desktop=true → hover reveals icon-only actions (no swipe). default false = mobile swipe mode. */
|
|
147
|
+
desktop?: boolean;
|
|
148
|
+
onRead?: () => void;
|
|
149
|
+
onUnread?: () => void;
|
|
150
|
+
onDelete?: () => void;
|
|
151
|
+
className?: string;
|
|
152
|
+
}
|
|
153
|
+
declare function NotificationItem({ desktop, ...props }: NotificationItemProps): react_jsx_runtime.JSX.Element;
|
|
154
|
+
declare function NotificationDivider({ className }: {
|
|
155
|
+
className?: string;
|
|
46
156
|
}): react_jsx_runtime.JSX.Element;
|
|
47
|
-
|
|
48
|
-
declare
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
declare function
|
|
53
|
-
declare function
|
|
157
|
+
|
|
158
|
+
declare const sectionMessageVariants: (props?: ({
|
|
159
|
+
variant?: "information" | "success" | "warning" | "danger" | "default" | "error" | "info" | null | undefined;
|
|
160
|
+
size?: "sm" | "md" | null | undefined;
|
|
161
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
162
|
+
declare function SectionMessage({ className, variant, size, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof sectionMessageVariants>): react_jsx_runtime.JSX.Element;
|
|
163
|
+
declare function SectionMessageTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
164
|
+
declare function SectionMessageDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
54
165
|
|
|
55
166
|
declare function AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatio$1.Root>): react_jsx_runtime.JSX.Element;
|
|
56
167
|
|
|
@@ -63,30 +174,76 @@ declare function AvatarBadge({ className, ...props }: React$1.ComponentProps<"sp
|
|
|
63
174
|
declare function AvatarGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
64
175
|
declare function AvatarGroupCount({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
65
176
|
|
|
66
|
-
declare const
|
|
67
|
-
variant?: "fill
|
|
68
|
-
size?: "
|
|
177
|
+
declare const tagVariants: (props?: ({
|
|
178
|
+
variant?: "fill-neutral" | "fill-red" | "fill-yellow" | "fill-green" | "fill-blue" | "outline-neutral" | "outline-red" | "outline-yellow" | "outline-green" | "outline-blue" | null | undefined;
|
|
179
|
+
size?: "sm" | "md" | null | undefined;
|
|
69
180
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
70
|
-
declare function
|
|
181
|
+
declare function Tag({ className, variant, size, asChild, ...props }: React$1.ComponentProps<"span"> & VariantProps<typeof tagVariants> & {
|
|
71
182
|
asChild?: boolean;
|
|
72
183
|
}): react_jsx_runtime.JSX.Element;
|
|
73
184
|
|
|
74
|
-
|
|
185
|
+
type BreadcrumbSize = "sm" | "md";
|
|
186
|
+
/**
|
|
187
|
+
* Breadcrumb navigation container.
|
|
188
|
+
*
|
|
189
|
+
* @param size - "sm" (14px) | "md" (16px). Default: "md"
|
|
190
|
+
*
|
|
191
|
+
* @example
|
|
192
|
+
* <Breadcrumb size="sm">
|
|
193
|
+
* <BreadcrumbList>
|
|
194
|
+
* <BreadcrumbItem>
|
|
195
|
+
* <BreadcrumbLink href="/">Home</BreadcrumbLink>
|
|
196
|
+
* </BreadcrumbItem>
|
|
197
|
+
* <BreadcrumbSeparator />
|
|
198
|
+
* <BreadcrumbItem>
|
|
199
|
+
* <BreadcrumbPage>Current</BreadcrumbPage>
|
|
200
|
+
* </BreadcrumbItem>
|
|
201
|
+
* </BreadcrumbList>
|
|
202
|
+
* </Breadcrumb>
|
|
203
|
+
*/
|
|
204
|
+
declare function Breadcrumb({ size, ...props }: React$1.ComponentProps<"nav"> & {
|
|
205
|
+
size?: BreadcrumbSize;
|
|
206
|
+
}): react_jsx_runtime.JSX.Element;
|
|
75
207
|
declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
76
208
|
declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
209
|
+
/**
|
|
210
|
+
* Navigable breadcrumb link — "default" state in Figma.
|
|
211
|
+
* Uses `text-breadcrumb-default` (72% opacity) with hover lift to `text-prominent`.
|
|
212
|
+
*/
|
|
77
213
|
declare function BreadcrumbLink({ asChild, className, ...props }: React$1.ComponentProps<"a"> & {
|
|
78
214
|
asChild?: boolean;
|
|
79
215
|
}): react_jsx_runtime.JSX.Element;
|
|
216
|
+
/**
|
|
217
|
+
* Current / active page — "selected" state in Figma.
|
|
218
|
+
* Renders muted (48% opacity), non-interactive, aria-current="page".
|
|
219
|
+
*/
|
|
80
220
|
declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
81
221
|
declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
82
222
|
declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
83
223
|
|
|
84
|
-
declare
|
|
85
|
-
|
|
224
|
+
declare const buttonVariants: (props?: ({
|
|
225
|
+
variant?: "primary" | "secondary" | "tertiary" | "ghost" | null | undefined;
|
|
226
|
+
size?: "xs" | "sm" | "md" | "lg" | "icon" | "icon-lg" | "icon-md" | "icon-sm" | "icon-xs" | null | undefined;
|
|
227
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
228
|
+
declare function Button({ className, variant, size, asChild, loading, ...props }: React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
229
|
+
asChild?: boolean;
|
|
230
|
+
loading?: boolean;
|
|
231
|
+
}): react_jsx_runtime.JSX.Element;
|
|
232
|
+
|
|
233
|
+
declare const chipVariants: (props?: ({
|
|
234
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
235
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
236
|
+
declare function Chip({ className, size, selected, ...props }: React$1.ComponentProps<"button"> & VariantProps<typeof chipVariants> & {
|
|
237
|
+
selected?: boolean;
|
|
86
238
|
}): react_jsx_runtime.JSX.Element;
|
|
239
|
+
|
|
240
|
+
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker>): react_jsx_runtime.JSX.Element;
|
|
87
241
|
declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
|
|
88
242
|
|
|
89
|
-
declare
|
|
243
|
+
declare const cardVariants: (props?: ({
|
|
244
|
+
variant?: "elevate" | "outline" | null | undefined;
|
|
245
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
246
|
+
declare function Card({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof cardVariants>): react_jsx_runtime.JSX.Element;
|
|
90
247
|
declare function CardHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
91
248
|
declare function CardTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
92
249
|
declare function CardDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
@@ -148,10 +305,53 @@ declare function ChartLegendContent({ className, hideIcon, payload, verticalAlig
|
|
|
148
305
|
}): react_jsx_runtime.JSX.Element | null;
|
|
149
306
|
|
|
150
307
|
declare function Checkbox({ className, ...props }: React$1.ComponentProps<typeof Checkbox$1.Root>): react_jsx_runtime.JSX.Element;
|
|
308
|
+
type CheckboxFieldProps = Omit<React$1.ComponentProps<typeof Checkbox$1.Root>, "children"> & {
|
|
309
|
+
/**
|
|
310
|
+
* Visual size variant.
|
|
311
|
+
* - `sm` → 14 px label, 14 px info icon
|
|
312
|
+
* - `md` → 16 px label, 16 px info icon (default)
|
|
313
|
+
*/
|
|
314
|
+
size?: "sm" | "md";
|
|
315
|
+
/** Label text rendered next to the checkbox. */
|
|
316
|
+
label?: React$1.ReactNode;
|
|
317
|
+
/** When `true`, renders a Lucide `InfoIcon` after the label text. */
|
|
318
|
+
info?: boolean;
|
|
319
|
+
};
|
|
320
|
+
declare function CheckboxField({ id, label, info, size, disabled, className, ...props }: CheckboxFieldProps): react_jsx_runtime.JSX.Element;
|
|
321
|
+
|
|
322
|
+
declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof Separator$1.Root>): react_jsx_runtime.JSX.Element;
|
|
151
323
|
|
|
152
|
-
declare function
|
|
153
|
-
declare function
|
|
154
|
-
declare
|
|
324
|
+
declare function ListItemGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
325
|
+
declare function ListItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
326
|
+
declare const listItemVariants: (props?: ({
|
|
327
|
+
type?: "primary" | "secondary" | null | undefined;
|
|
328
|
+
size?: "sm" | "md" | null | undefined;
|
|
329
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
330
|
+
declare function ListItem({ className, type, size, selected, disabled, asChild, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof listItemVariants> & {
|
|
331
|
+
asChild?: boolean;
|
|
332
|
+
selected?: boolean;
|
|
333
|
+
disabled?: boolean;
|
|
334
|
+
}): react_jsx_runtime.JSX.Element;
|
|
335
|
+
declare function ListItemIcon({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
336
|
+
declare function ListItemFlag({ src, alt, className, ...props }: Omit<React$1.ComponentProps<"div">, "children"> & {
|
|
337
|
+
src?: string;
|
|
338
|
+
alt?: string;
|
|
339
|
+
}): react_jsx_runtime.JSX.Element;
|
|
340
|
+
declare const listItemMediaVariants: (props?: ({
|
|
341
|
+
variant?: "image" | "icon" | "default" | null | undefined;
|
|
342
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
343
|
+
declare function ListItemMedia({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof listItemMediaVariants>): react_jsx_runtime.JSX.Element;
|
|
344
|
+
declare function ListItemContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
345
|
+
declare function ListItemTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
346
|
+
declare function ListItemDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
347
|
+
declare function ListItemActions({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
348
|
+
declare function ListItemHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
349
|
+
declare function ListItemFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
350
|
+
|
|
351
|
+
declare function Collapsible({ ...props }: React$1.ComponentProps<typeof Collapsible$1.Root>): react_jsx_runtime.JSX.Element;
|
|
352
|
+
declare function CollapsibleTrigger({ ...props }: React$1.ComponentProps<typeof Collapsible$1.CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
|
|
353
|
+
declare function CollapsibleContent({ className, ...props }: React$1.ComponentProps<typeof Collapsible$1.CollapsibleContent>): react_jsx_runtime.JSX.Element;
|
|
354
|
+
declare function CollapsibleItem({ className, ...props }: Omit<React$1.ComponentProps<typeof ListItem>, "type" | "size">): react_jsx_runtime.JSX.Element;
|
|
155
355
|
|
|
156
356
|
declare const Combobox: typeof Combobox$1.Root;
|
|
157
357
|
declare function ComboboxValue({ ...props }: Combobox$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
@@ -172,7 +372,7 @@ declare function ComboboxChips({ className, ...props }: React$1.ComponentPropsWi
|
|
|
172
372
|
declare function ComboboxChip({ className, children, showRemove, ...props }: Combobox$1.Chip.Props & {
|
|
173
373
|
showRemove?: boolean;
|
|
174
374
|
}): react_jsx_runtime.JSX.Element;
|
|
175
|
-
declare function ComboboxChipsInput({ className, children, ...props }: Combobox$1.Input.Props): react_jsx_runtime.JSX.Element;
|
|
375
|
+
declare function ComboboxChipsInput({ className, children: _children, ...props }: Combobox$1.Input.Props): react_jsx_runtime.JSX.Element;
|
|
176
376
|
declare function useComboboxAnchor(): React$1.RefObject<HTMLDivElement | null>;
|
|
177
377
|
|
|
178
378
|
declare function Dialog({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
@@ -180,8 +380,10 @@ declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof Dialo
|
|
|
180
380
|
declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
181
381
|
declare function DialogClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
182
382
|
declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
183
|
-
declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog$1.Content> & {
|
|
383
|
+
declare function DialogContent({ className, children, showCloseButton, type, icon, ...props }: React$1.ComponentProps<typeof Dialog$1.Content> & {
|
|
184
384
|
showCloseButton?: boolean;
|
|
385
|
+
type?: "text" | "icon-and-text";
|
|
386
|
+
icon?: React$1.ReactNode;
|
|
185
387
|
}): react_jsx_runtime.JSX.Element;
|
|
186
388
|
declare function DialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
187
389
|
declare function DialogFooter({ className, showCloseButton, children, ...props }: React$1.ComponentProps<"div"> & {
|
|
@@ -325,114 +527,125 @@ declare function HoverCard({ ...props }: React$1.ComponentProps<typeof HoverCard
|
|
|
325
527
|
declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof HoverCard$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
326
528
|
declare function HoverCardContent({ className, align, sideOffset, ...props }: React$1.ComponentProps<typeof HoverCard$1.Content>): react_jsx_runtime.JSX.Element;
|
|
327
529
|
|
|
328
|
-
declare
|
|
530
|
+
declare const inputWrapperVariants: (props?: ({
|
|
531
|
+
variant?: "fill" | "outline" | null | undefined;
|
|
532
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
533
|
+
status?: "success" | "default" | "error" | null | undefined;
|
|
534
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
535
|
+
interface InputProps extends Omit<React$1.ComponentProps<"input">, "size">, VariantProps<typeof inputWrapperVariants> {
|
|
536
|
+
label?: string;
|
|
537
|
+
helperText?: string;
|
|
538
|
+
iconLeft?: React$1.ReactNode;
|
|
539
|
+
iconRight?: React$1.ReactNode;
|
|
540
|
+
/** When false, renders the labelless variant: label and input cross-fade at the same size. */
|
|
541
|
+
labeled?: boolean;
|
|
542
|
+
/** Horizontal text alignment for both label and input. Default is "left". */
|
|
543
|
+
align?: "left" | "center";
|
|
544
|
+
}
|
|
545
|
+
declare const Input: React$1.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
329
546
|
|
|
330
|
-
declare
|
|
547
|
+
declare const inputGroupVariants: (props?: ({
|
|
548
|
+
size?: "sm" | "md" | null | undefined;
|
|
549
|
+
variant?: "fill" | "outline" | null | undefined;
|
|
550
|
+
status?: "success" | "default" | "error" | null | undefined;
|
|
551
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
552
|
+
declare function InputGroup({ className, size, variant, status, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupVariants>): react_jsx_runtime.JSX.Element;
|
|
331
553
|
declare const inputGroupAddonVariants: (props?: ({
|
|
332
554
|
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
333
555
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
334
556
|
declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime.JSX.Element;
|
|
335
557
|
declare const inputGroupButtonVariants: (props?: ({
|
|
336
|
-
size?: "
|
|
558
|
+
size?: "xs" | "sm" | "icon-sm" | "icon-xs" | null | undefined;
|
|
337
559
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
338
560
|
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
339
561
|
declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
340
562
|
declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
341
563
|
declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
342
564
|
|
|
565
|
+
declare const searchFieldVariants: (props?: ({
|
|
566
|
+
variant?: "fill" | "outline" | null | undefined;
|
|
567
|
+
size?: "sm" | "md" | null | undefined;
|
|
568
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
569
|
+
type SearchFieldProps = Omit<React$1.ComponentProps<"div">, "children"> & VariantProps<typeof searchFieldVariants> & {
|
|
570
|
+
placeholder?: string;
|
|
571
|
+
disabled?: boolean;
|
|
572
|
+
value?: string;
|
|
573
|
+
defaultValue?: string;
|
|
574
|
+
onChange?: React$1.ChangeEventHandler<HTMLInputElement>;
|
|
575
|
+
};
|
|
576
|
+
declare function SearchField({ variant, size, className, placeholder, disabled, value, defaultValue, onChange, ...props }: SearchFieldProps): react_jsx_runtime.JSX.Element;
|
|
577
|
+
|
|
343
578
|
declare function InputOTP({ className, containerClassName, ...props }: React$1.ComponentProps<typeof OTPInput> & {
|
|
344
579
|
containerClassName?: string;
|
|
345
580
|
}): react_jsx_runtime.JSX.Element;
|
|
346
581
|
declare function InputOTPGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
347
|
-
declare
|
|
582
|
+
declare const inputOTPSlotVariants: (props?: ({
|
|
583
|
+
size?: "sm" | "md" | null | undefined;
|
|
584
|
+
status?: "success" | "default" | "error" | null | undefined;
|
|
585
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
586
|
+
declare function InputOTPSlot({ index, className, size, status, ...props }: React$1.ComponentProps<"div"> & {
|
|
348
587
|
index: number;
|
|
349
|
-
}): react_jsx_runtime.JSX.Element;
|
|
588
|
+
} & VariantProps<typeof inputOTPSlotVariants>): react_jsx_runtime.JSX.Element;
|
|
350
589
|
declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
351
590
|
|
|
352
|
-
declare function
|
|
353
|
-
|
|
354
|
-
declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
355
|
-
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
356
|
-
declare const itemVariants: (props?: ({
|
|
357
|
-
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
358
|
-
size?: "sm" | "default" | null | undefined;
|
|
359
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
360
|
-
declare function Item({ className, variant, size, asChild, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof itemVariants> & {
|
|
361
|
-
asChild?: boolean;
|
|
591
|
+
declare function CodeInput({ className, containerClassName, ...props }: React$1.ComponentProps<typeof OTPInput> & {
|
|
592
|
+
containerClassName?: string;
|
|
362
593
|
}): react_jsx_runtime.JSX.Element;
|
|
363
|
-
declare
|
|
364
|
-
|
|
594
|
+
declare function CodeInputGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
595
|
+
declare const codeInputSlotVariants: (props?: ({
|
|
596
|
+
size?: "sm" | "md" | null | undefined;
|
|
597
|
+
status?: "success" | "default" | "error" | null | undefined;
|
|
365
598
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
366
|
-
declare function
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
declare function
|
|
370
|
-
declare function ItemActions({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
371
|
-
declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
372
|
-
declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
599
|
+
declare function CodeInputSlot({ index, className, size, status, ...props }: React$1.ComponentProps<"div"> & {
|
|
600
|
+
index: number;
|
|
601
|
+
} & VariantProps<typeof codeInputSlotVariants>): react_jsx_runtime.JSX.Element;
|
|
602
|
+
declare function CodeInputSeparator({ ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
373
603
|
|
|
374
604
|
declare function Kbd({ className, ...props }: React.ComponentProps<"kbd">): react_jsx_runtime.JSX.Element;
|
|
375
605
|
declare function KbdGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
376
606
|
|
|
377
607
|
declare const linkVariants: (props?: ({
|
|
378
|
-
|
|
608
|
+
variant?: "primary" | "secondary-normal" | "secondary-inverse" | "secondary-static-light" | "secondary-static-dark" | null | undefined;
|
|
609
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
379
610
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
380
|
-
declare function Link({ className, size, asChild, ...props }: React$1.ComponentProps<"a"> & VariantProps<typeof linkVariants> & {
|
|
611
|
+
declare function Link({ className, variant, size, asChild, ...props }: React$1.ComponentProps<"a"> & VariantProps<typeof linkVariants> & {
|
|
381
612
|
asChild?: boolean;
|
|
382
613
|
}): react_jsx_runtime.JSX.Element;
|
|
383
614
|
|
|
384
|
-
declare function Menubar({ className, ...props }: React$1.ComponentProps<typeof Menubar$1.Root>): react_jsx_runtime.JSX.Element;
|
|
385
|
-
declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof Menubar$1.Menu>): react_jsx_runtime.JSX.Element;
|
|
386
|
-
declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof Menubar$1.Group>): react_jsx_runtime.JSX.Element;
|
|
387
|
-
declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof Menubar$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
388
|
-
declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof Menubar$1.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
389
|
-
declare function MenubarTrigger({ className, ...props }: React$1.ComponentProps<typeof Menubar$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
390
|
-
declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React$1.ComponentProps<typeof Menubar$1.Content>): react_jsx_runtime.JSX.Element;
|
|
391
|
-
declare function MenubarItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof Menubar$1.Item> & {
|
|
392
|
-
inset?: boolean;
|
|
393
|
-
variant?: "default" | "destructive";
|
|
394
|
-
}): react_jsx_runtime.JSX.Element;
|
|
395
|
-
declare function MenubarCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof Menubar$1.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
396
|
-
declare function MenubarRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof Menubar$1.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
397
|
-
declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof Menubar$1.Label> & {
|
|
398
|
-
inset?: boolean;
|
|
399
|
-
}): react_jsx_runtime.JSX.Element;
|
|
400
|
-
declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof Menubar$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
401
|
-
declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
402
|
-
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof Menubar$1.Sub>): react_jsx_runtime.JSX.Element;
|
|
403
|
-
declare function MenubarSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof Menubar$1.SubTrigger> & {
|
|
404
|
-
inset?: boolean;
|
|
405
|
-
}): react_jsx_runtime.JSX.Element;
|
|
406
|
-
declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof Menubar$1.SubContent>): react_jsx_runtime.JSX.Element;
|
|
407
|
-
|
|
408
615
|
declare function NativeSelect({ className, size, ...props }: Omit<React$1.ComponentProps<"select">, "size"> & {
|
|
409
616
|
size?: "sm" | "default";
|
|
410
617
|
}): react_jsx_runtime.JSX.Element;
|
|
411
618
|
declare function NativeSelectOption({ ...props }: React$1.ComponentProps<"option">): react_jsx_runtime.JSX.Element;
|
|
412
619
|
declare function NativeSelectOptGroup({ className, ...props }: React$1.ComponentProps<"optgroup">): react_jsx_runtime.JSX.Element;
|
|
413
620
|
|
|
414
|
-
declare function NavigationMenu({ className, children, viewport, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Root> & {
|
|
415
|
-
viewport?: boolean;
|
|
416
|
-
}): react_jsx_runtime.JSX.Element;
|
|
417
|
-
declare function NavigationMenuList({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.List>): react_jsx_runtime.JSX.Element;
|
|
418
|
-
declare function NavigationMenuItem({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Item>): react_jsx_runtime.JSX.Element;
|
|
419
|
-
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
420
|
-
declare function NavigationMenuTrigger({ className, children, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
421
|
-
declare function NavigationMenuContent({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Content>): react_jsx_runtime.JSX.Element;
|
|
422
|
-
declare function NavigationMenuViewport({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Viewport>): react_jsx_runtime.JSX.Element;
|
|
423
|
-
declare function NavigationMenuLink({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Link>): react_jsx_runtime.JSX.Element;
|
|
424
|
-
declare function NavigationMenuIndicator({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Indicator>): react_jsx_runtime.JSX.Element;
|
|
425
|
-
|
|
426
621
|
declare function Pagination({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
427
622
|
declare function PaginationContent({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
428
623
|
declare function PaginationItem({ ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
429
624
|
type PaginationLinkProps = {
|
|
430
625
|
isActive?: boolean;
|
|
431
626
|
} & Pick<React$1.ComponentProps<typeof Button>, "size"> & React$1.ComponentProps<"a">;
|
|
432
|
-
declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
627
|
+
declare function PaginationLink({ className, isActive, size: _size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
433
628
|
declare function PaginationPrevious({ className, ...props }: React$1.ComponentProps<"a">): react_jsx_runtime.JSX.Element;
|
|
434
629
|
declare function PaginationNext({ className, ...props }: React$1.ComponentProps<"a">): react_jsx_runtime.JSX.Element;
|
|
435
|
-
|
|
630
|
+
type PaginationEllipsisProps = {
|
|
631
|
+
/** Hidden page numbers this ellipsis represents. Makes the ellipsis interactive. */
|
|
632
|
+
pages?: number[];
|
|
633
|
+
/** Called with the selected page number when the user picks one from the dropdown. */
|
|
634
|
+
onPageSelect?: (page: number) => void;
|
|
635
|
+
} & Omit<React$1.ComponentProps<"span">, "onClick">;
|
|
636
|
+
declare function PaginationEllipsis({ className, pages, onPageSelect, ...props }: PaginationEllipsisProps): react_jsx_runtime.JSX.Element;
|
|
637
|
+
type PaginationBulletsProps = {
|
|
638
|
+
/** Total number of pages (= number of dots). */
|
|
639
|
+
count: number;
|
|
640
|
+
/** Currently active page (1-based). */
|
|
641
|
+
page: number;
|
|
642
|
+
/** Called with the new page number when a dot or nav button is clicked. */
|
|
643
|
+
onPageChange?: (page: number) => void;
|
|
644
|
+
/** Show prev/next chevron buttons. Default: true. */
|
|
645
|
+
showNavigation?: boolean;
|
|
646
|
+
className?: string;
|
|
647
|
+
};
|
|
648
|
+
declare function PaginationBullets({ count, page, onPageChange, showNavigation, className, }: PaginationBulletsProps): react_jsx_runtime.JSX.Element;
|
|
436
649
|
|
|
437
650
|
declare function Popover({ ...props }: React$1.ComponentProps<typeof Popover$1.Root>): react_jsx_runtime.JSX.Element;
|
|
438
651
|
declare function PopoverTrigger({ ...props }: React$1.ComponentProps<typeof Popover$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -442,10 +655,28 @@ declare function PopoverHeader({ className, ...props }: React$1.ComponentProps<"
|
|
|
442
655
|
declare function PopoverTitle({ className, ...props }: React$1.ComponentProps<"h2">): react_jsx_runtime.JSX.Element;
|
|
443
656
|
declare function PopoverDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
444
657
|
|
|
445
|
-
declare
|
|
658
|
+
declare const progressVariants: (props?: ({
|
|
659
|
+
size?: "sm" | "md" | null | undefined;
|
|
660
|
+
variant?: "normal" | "inverse" | null | undefined;
|
|
661
|
+
color?: "red" | "yellow" | "green" | "blue" | "default" | null | undefined;
|
|
662
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
663
|
+
declare function Progress({ className, value, size, variant, color, ...props }: React$1.ComponentProps<typeof Progress$1.Root> & VariantProps<typeof progressVariants>): react_jsx_runtime.JSX.Element;
|
|
446
664
|
|
|
447
665
|
declare function RadioGroup({ className, ...props }: React$1.ComponentProps<typeof RadioGroup$1.Root>): react_jsx_runtime.JSX.Element;
|
|
448
666
|
declare function RadioGroupItem({ className, ...props }: React$1.ComponentProps<typeof RadioGroup$1.Item>): react_jsx_runtime.JSX.Element;
|
|
667
|
+
type RadioGroupFieldProps = React$1.ComponentProps<typeof RadioGroup$1.Item> & {
|
|
668
|
+
/**
|
|
669
|
+
* Visual size variant.
|
|
670
|
+
* - `sm` → 14 px label, 14 px info icon
|
|
671
|
+
* - `md` → 16 px label, 16 px info icon (default)
|
|
672
|
+
*/
|
|
673
|
+
size?: "sm" | "md";
|
|
674
|
+
/** Label text rendered next to the radio button. */
|
|
675
|
+
label?: React$1.ReactNode;
|
|
676
|
+
/** When `true`, renders a Lucide `InfoIcon` after the label text. */
|
|
677
|
+
info?: boolean;
|
|
678
|
+
};
|
|
679
|
+
declare function RadioGroupField({ id, label, info, size, disabled, className, ...props }: RadioGroupFieldProps): react_jsx_runtime.JSX.Element;
|
|
449
680
|
|
|
450
681
|
declare function ResizablePanelGroup({ className, ...props }: ResizablePrimitive.GroupProps): react_jsx_runtime.JSX.Element;
|
|
451
682
|
declare function ResizablePanel({ ...props }: ResizablePrimitive.PanelProps): react_jsx_runtime.JSX.Element;
|
|
@@ -459,22 +690,34 @@ declare function ScrollBar({ className, orientation, ...props }: React$1.Compone
|
|
|
459
690
|
declare function Select({ ...props }: React$1.ComponentProps<typeof Select$1.Root>): react_jsx_runtime.JSX.Element;
|
|
460
691
|
declare function SelectGroup({ ...props }: React$1.ComponentProps<typeof Select$1.Group>): react_jsx_runtime.JSX.Element;
|
|
461
692
|
declare function SelectValue({ ...props }: React$1.ComponentProps<typeof Select$1.Value>): react_jsx_runtime.JSX.Element;
|
|
462
|
-
declare function SelectTrigger({ className, size, readOnly, children, ...props }: React$1.ComponentProps<typeof Select$1.Trigger> & {
|
|
463
|
-
size?: "sm" | "default";
|
|
693
|
+
declare function SelectTrigger({ className, size, readOnly, children, label, labeled, align, required, status, variant, iconLeft, helperText, disabled, onFocus: onFocusProp, onBlur: onBlurProp, ...props }: React$1.ComponentProps<typeof Select$1.Trigger> & {
|
|
694
|
+
size?: "sm" | "md" | "lg" | "default";
|
|
464
695
|
readOnly?: boolean;
|
|
465
|
-
|
|
466
|
-
|
|
696
|
+
label?: string;
|
|
697
|
+
/** When false, label and value cross-fade at the same position instead of floating. Default true. */
|
|
698
|
+
labeled?: boolean;
|
|
699
|
+
align?: "left" | "center";
|
|
700
|
+
status?: "default" | "success" | "error";
|
|
701
|
+
variant?: "outline" | "fill";
|
|
702
|
+
iconLeft?: React$1.ReactNode;
|
|
703
|
+
helperText?: string;
|
|
704
|
+
required?: boolean;
|
|
705
|
+
}): react_jsx_runtime.JSX.Element;
|
|
706
|
+
declare function SelectContent({ className, children, position, align, sideOffset, ...props }: React$1.ComponentProps<typeof Select$1.Content>): react_jsx_runtime.JSX.Element;
|
|
467
707
|
declare function SelectLabel({ className, ...props }: React$1.ComponentProps<typeof Select$1.Label>): react_jsx_runtime.JSX.Element;
|
|
468
708
|
declare function SelectItem({ className, children, ...props }: React$1.ComponentProps<typeof Select$1.Item>): react_jsx_runtime.JSX.Element;
|
|
469
709
|
declare function SelectSeparator({ className, ...props }: React$1.ComponentProps<typeof Select$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
470
710
|
declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollUpButton>): react_jsx_runtime.JSX.Element;
|
|
471
711
|
declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollDownButton>): react_jsx_runtime.JSX.Element;
|
|
472
712
|
|
|
473
|
-
|
|
713
|
+
type SheetSide = "top" | "right" | "bottom" | "left";
|
|
714
|
+
declare function Sheet({ side, ...props }: React$1.ComponentProps<typeof Dialog$1.Root> & {
|
|
715
|
+
side?: SheetSide;
|
|
716
|
+
}): react_jsx_runtime.JSX.Element;
|
|
474
717
|
declare function SheetTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
475
718
|
declare function SheetClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
476
|
-
declare function SheetContent({ className, children, side, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog$1.Content> & {
|
|
477
|
-
side?:
|
|
719
|
+
declare function SheetContent({ className, children, side: sideProp, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog$1.Content> & {
|
|
720
|
+
side?: SheetSide;
|
|
478
721
|
showCloseButton?: boolean;
|
|
479
722
|
}): react_jsx_runtime.JSX.Element;
|
|
480
723
|
declare function SheetHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
@@ -485,7 +728,9 @@ declare function SheetDescription({ className, ...props }: React$1.ComponentProp
|
|
|
485
728
|
declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime.JSX.Element;
|
|
486
729
|
declare function Tooltip({ ...props }: React$1.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime.JSX.Element;
|
|
487
730
|
declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof Tooltip$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
488
|
-
declare function TooltipContent({ className, sideOffset, children, ...props }: React$1.ComponentProps<typeof Tooltip$1.Content>
|
|
731
|
+
declare function TooltipContent({ className, sideOffset, variant, children, ...props }: React$1.ComponentProps<typeof Tooltip$1.Content> & {
|
|
732
|
+
variant?: "default" | "error";
|
|
733
|
+
}): react_jsx_runtime.JSX.Element;
|
|
489
734
|
|
|
490
735
|
type SidebarContextProps = {
|
|
491
736
|
state: "expanded" | "collapsed";
|
|
@@ -526,8 +771,8 @@ declare function SidebarGroupContent({ className, ...props }: React$1.ComponentP
|
|
|
526
771
|
declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
527
772
|
declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
528
773
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
529
|
-
variant?: "
|
|
530
|
-
size?: "
|
|
774
|
+
variant?: "outline" | "default" | null | undefined;
|
|
775
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
531
776
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
532
777
|
declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React$1.ComponentProps<"button"> & {
|
|
533
778
|
asChild?: boolean;
|
|
@@ -552,10 +797,13 @@ declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...p
|
|
|
552
797
|
|
|
553
798
|
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
554
799
|
|
|
555
|
-
declare function Slider({ className, defaultValue, value, min, max, ...props }: React$1.ComponentProps<typeof Slider$1.Root>
|
|
800
|
+
declare function Slider({ className, defaultValue, value, min, max, size, ...props }: React$1.ComponentProps<typeof Slider$1.Root> & {
|
|
801
|
+
size?: "sm" | "default";
|
|
802
|
+
}): react_jsx_runtime.JSX.Element;
|
|
556
803
|
|
|
557
|
-
declare const
|
|
804
|
+
declare const Snackbar: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
558
805
|
|
|
806
|
+
type InputGroupVariantProps = VariantProps<typeof inputGroupVariants>;
|
|
559
807
|
interface StepperProps {
|
|
560
808
|
value?: number;
|
|
561
809
|
defaultValue?: number;
|
|
@@ -569,11 +817,34 @@ interface StepperProps {
|
|
|
569
817
|
id?: string;
|
|
570
818
|
name?: string;
|
|
571
819
|
"aria-label"?: string;
|
|
820
|
+
/** "split" — [−] on far left, editable input centered, [+] on far right.
|
|
821
|
+
* "right-aligned" — editable input left-aligned (flex-1), both [−][+] grouped on the right. */
|
|
822
|
+
layout?: "split" | "right-aligned";
|
|
823
|
+
/** When provided, renders the labelled variant: uses Input as the base with a
|
|
824
|
+
* floating label and stepper buttons in the iconRight slot. */
|
|
825
|
+
label?: string;
|
|
826
|
+
/** Short unit/currency label inside the field, right of the decrement button (split only). */
|
|
827
|
+
labelLeft?: string;
|
|
828
|
+
/** Short unit/currency label inside the field, left of the increment button (split only). */
|
|
829
|
+
labelRight?: string;
|
|
830
|
+
/** Helper message shown in the footer row below the field. */
|
|
831
|
+
helperText?: string;
|
|
832
|
+
/** When true, renders a currentValue/max counter on the right of the footer row. Requires a finite `max`. */
|
|
833
|
+
showCounter?: boolean;
|
|
834
|
+
/** Visual style of the field. Defaults to "outline". */
|
|
835
|
+
variant?: InputGroupVariantProps["variant"];
|
|
836
|
+
/** Validation state. Affects border colour and footer text colour. */
|
|
837
|
+
status?: InputGroupVariantProps["status"];
|
|
838
|
+
/** Field height and font size. "md" (default, 56px / 16px) and "sm" (32px / 14px).
|
|
839
|
+
* Applies to the labelless variant only — ignored when `label` is set. */
|
|
840
|
+
size?: "md" | "sm";
|
|
572
841
|
}
|
|
573
|
-
declare function Stepper({ value: controlledValue, defaultValue, onValueChange, min, max, step, disabled, placeholder, className, id, name, "aria-label": ariaLabel, }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
842
|
+
declare function Stepper({ value: controlledValue, defaultValue, onValueChange, min, max, step, disabled, placeholder, className, id, name, "aria-label": ariaLabel, layout, label, labelLeft, labelRight, helperText, showCounter, variant, status, size, }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
574
843
|
|
|
575
844
|
declare function Spinner({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
576
845
|
|
|
846
|
+
declare function LoadingSpinner({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
847
|
+
|
|
577
848
|
declare function Switch({ className, size, ...props }: React$1.ComponentProps<typeof Switch$1.Root> & {
|
|
578
849
|
size?: "sm" | "default";
|
|
579
850
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -587,44 +858,56 @@ declare function TableHead({ className, ...props }: React$1.ComponentProps<"th">
|
|
|
587
858
|
declare function TableCell({ className, ...props }: React$1.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
|
|
588
859
|
declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
|
|
589
860
|
|
|
590
|
-
declare
|
|
591
|
-
|
|
592
|
-
variant?: "line" | "default" | null | undefined;
|
|
593
|
-
size?: "lg" | "md" | "sm" | null | undefined;
|
|
861
|
+
declare const segmentedControlListVariants: (props?: ({
|
|
862
|
+
size?: "md" | "lg" | null | undefined;
|
|
594
863
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
595
|
-
declare function
|
|
596
|
-
declare function
|
|
597
|
-
|
|
598
|
-
}): react_jsx_runtime.JSX.Element;
|
|
599
|
-
declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
|
|
600
|
-
|
|
601
|
-
declare function Textarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
864
|
+
declare function SegmentedControl({ className, ...props }: React$1.ComponentProps<typeof Tabs.Root>): react_jsx_runtime.JSX.Element;
|
|
865
|
+
declare function SegmentedControlList({ className, size, ...props }: React$1.ComponentProps<typeof Tabs.List> & VariantProps<typeof segmentedControlListVariants>): react_jsx_runtime.JSX.Element;
|
|
866
|
+
declare function SegmentedControlTrigger({ className, ...props }: React$1.ComponentProps<typeof Tabs.Trigger>): react_jsx_runtime.JSX.Element;
|
|
867
|
+
declare function SegmentedControlContent({ className, ...props }: React$1.ComponentProps<typeof Tabs.Content>): react_jsx_runtime.JSX.Element;
|
|
602
868
|
|
|
603
|
-
|
|
604
|
-
|
|
869
|
+
declare const tabListVariants: (props?: ({
|
|
870
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
871
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
872
|
+
declare function Tab({ className, ...props }: React$1.ComponentProps<typeof Tabs.Root>): react_jsx_runtime.JSX.Element;
|
|
873
|
+
declare function TabList({ className, size, ...props }: React$1.ComponentProps<typeof Tabs.List> & VariantProps<typeof tabListVariants>): react_jsx_runtime.JSX.Element;
|
|
874
|
+
declare function TabTrigger({ className, ...props }: React$1.ComponentProps<typeof Tabs.Trigger>): react_jsx_runtime.JSX.Element;
|
|
875
|
+
declare function TabContent({ className, ...props }: React$1.ComponentProps<typeof Tabs.Content>): react_jsx_runtime.JSX.Element;
|
|
876
|
+
|
|
877
|
+
declare const textareaWrapperVariants: (props?: ({
|
|
878
|
+
variant?: "fill" | "outline" | null | undefined;
|
|
879
|
+
status?: "success" | "default" | "error" | null | undefined;
|
|
880
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
881
|
+
interface TextareaProps extends Omit<React$1.ComponentProps<"textarea">, "size">, VariantProps<typeof textareaWrapperVariants> {
|
|
605
882
|
label?: string;
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
883
|
+
helperText?: string;
|
|
884
|
+
iconLeft?: React$1.ReactNode;
|
|
885
|
+
iconRight?: React$1.ReactNode;
|
|
886
|
+
/**
|
|
887
|
+
* When `true` (default), renders a floating label above the text area.
|
|
888
|
+
* When `false`, renders the labelless variant where the label acts as a
|
|
889
|
+
* placeholder that cross-fades with the typed text.
|
|
890
|
+
*/
|
|
891
|
+
labeled?: boolean;
|
|
892
|
+
/**
|
|
893
|
+
* Controls the minimum height for the **labelless** variant only.
|
|
894
|
+
* - `"md"` (default) → 128 px
|
|
895
|
+
* - `"sm"` → 104 px
|
|
896
|
+
*
|
|
897
|
+
* Ignored when `labeled={true}`, which always uses the 128 px height.
|
|
898
|
+
*/
|
|
899
|
+
size?: "sm" | "md";
|
|
612
900
|
}
|
|
613
|
-
declare
|
|
901
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<Omit<TextareaProps, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
614
902
|
|
|
615
|
-
declare const toggleVariants: (props?: ({
|
|
616
|
-
|
|
617
|
-
size?: "lg" | "sm" | "default" | null | undefined;
|
|
618
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
619
|
-
declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof Toggle$1.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
903
|
+
declare const toggleVariants: (props?: ({} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
904
|
+
declare function Toggle({ className, ...props }: React$1.ComponentProps<typeof Toggle$1.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
620
905
|
|
|
621
|
-
declare function ToggleGroup({ className,
|
|
622
|
-
|
|
623
|
-
}): react_jsx_runtime.JSX.Element;
|
|
624
|
-
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroup$1.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
906
|
+
declare function ToggleGroup({ className, children, ...props }: React$1.ComponentProps<typeof ToggleGroup$1.Root>): react_jsx_runtime.JSX.Element;
|
|
907
|
+
declare function ToggleGroupItem({ className, ...props }: React$1.ComponentProps<typeof ToggleGroup$1.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
625
908
|
|
|
626
909
|
declare function cn(...inputs: ClassValue[]): string;
|
|
627
910
|
|
|
628
911
|
declare function useIsMobile(): boolean;
|
|
629
912
|
|
|
630
|
-
export { Accordion, AccordionContent, AccordionItem,
|
|
913
|
+
export { Accordion, AccordionContent, AccordionItem, type AccordionSize, AccordionTrigger, type AccordionVariant, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, BadgeDot, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxField, Chip, CodeInput, CodeInputGroup, CodeInputSeparator, CodeInputSlot, Collapsible, CollapsibleContent, CollapsibleItem, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DirectionProvider, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Kbd, KbdGroup, Label, Link, ListItem, ListItemActions, ListItemContent, ListItemDescription, ListItemFlag, ListItemFooter, ListItemGroup, ListItemHeader, ListItemIcon, ListItemMedia, ListItemSeparator, ListItemTitle, LoadingSpinner, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NotificationBanner, type NotificationBannerProps, NotificationDivider, NotificationItem, type NotificationItemProps, type NotificationVariant, Pagination, PaginationBullets, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, RadioGroup, RadioGroupField, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchField, SectionMessage, SectionMessageDescription, SectionMessageTitle, SegmentedControl, SegmentedControlContent, SegmentedControlList, SegmentedControlTrigger, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Snackbar, Spinner, Stepper, type StepperProps, Switch, Tab, TabContent, TabList, TabTrigger, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tag, Textarea, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buttonVariants, cardVariants, chipVariants, cn, codeInputSlotVariants, inputGroupVariants, inputOTPSlotVariants, inputWrapperVariants as inputVariants, linkVariants, progressVariants, searchFieldVariants, segmentedControlListVariants, tabListVariants, tagVariants, textareaWrapperVariants as textareaVariants, toggleVariants, useComboboxAnchor, useDirection, useFormField, useIsMobile, useSidebar };
|