@pelatform/ui.components 0.1.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/dist/base.d.ts ADDED
@@ -0,0 +1,1452 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
3
+ import * as React from 'react';
4
+ import React__default, { HTMLAttributes, ReactNode, ReactElement, CSSProperties, RefObject } from 'react';
5
+ import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
6
+ import * as class_variance_authority_types from 'class-variance-authority/types';
7
+ import { Button as Button$1 } from '@base-ui/react/button';
8
+ import { VariantProps } from 'class-variance-authority';
9
+ import { Autocomplete as Autocomplete$1 } from '@base-ui/react/autocomplete';
10
+ import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
11
+ import { useRender } from '@base-ui/react/use-render';
12
+ import { Separator as Separator$1 } from '@base-ui/react/separator';
13
+ import { DayPicker, DayButton, Locale } from 'react-day-picker';
14
+ import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
15
+ import * as RechartsPrimitive from 'recharts';
16
+ import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
17
+ import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
18
+ import { Combobox as Combobox$1 } from '@base-ui/react';
19
+ import { Command as Command$1 } from 'cmdk';
20
+ import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
21
+ import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
22
+ import { Column, Table as Table$1, Row, Cell, HeaderGroup, Header, RowData, SortingState, ColumnFiltersState } from '@tanstack/react-table';
23
+ import { DragEndEvent, UniqueIdentifier, Modifiers, DragOverlay, DragStartEvent } from '@dnd-kit/core';
24
+ export { DirectionProvider, useDirection } from '@base-ui/react/direction-provider';
25
+ import { Drawer as Drawer$1 } from 'vaul';
26
+ import { Menu } from '@base-ui/react/menu';
27
+ import { PreviewCard } from '@base-ui/react/preview-card';
28
+ import { OTPInput } from 'input-otp';
29
+ import { Menubar as Menubar$1 } from '@base-ui/react/menubar';
30
+ import { NavigationMenu as NavigationMenu$1 } from '@base-ui/react/navigation-menu';
31
+ import { NumberField as NumberField$1 } from '@base-ui/react/number-field';
32
+ import * as BasePhoneInput from 'react-phone-number-input';
33
+ import { Popover as Popover$1 } from '@base-ui/react/popover';
34
+ import { Progress as Progress$1 } from '@base-ui/react/progress';
35
+ import { Radio } from '@base-ui/react/radio';
36
+ import { RadioGroup as RadioGroup$1 } from '@base-ui/react/radio-group';
37
+ import * as ResizablePrimitive from 'react-resizable-panels';
38
+ import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
39
+ import { Select as Select$1 } from '@base-ui/react/select';
40
+ import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
41
+ import { Slider as Slider$1 } from '@base-ui/react/slider';
42
+ import { ToasterProps } from 'sonner';
43
+ import { Switch as Switch$1 } from '@base-ui/react/switch';
44
+ import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
45
+ import { Toggle as Toggle$1 } from '@base-ui/react/toggle';
46
+ import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
47
+ import { ItemInstance } from '@headless-tree/core';
48
+
49
+ declare function Accordion({ className, ...props }: Accordion$1.Root.Props): react_jsx_runtime.JSX.Element;
50
+ declare function AccordionItem({ className, ...props }: Accordion$1.Item.Props): react_jsx_runtime.JSX.Element;
51
+ declare function AccordionTrigger({ className, children, ...props }: Accordion$1.Trigger.Props): react_jsx_runtime.JSX.Element;
52
+ declare function AccordionContent({ className, children, ...props }: Accordion$1.Panel.Props): react_jsx_runtime.JSX.Element;
53
+
54
+ declare const buttonVariants: (props?: ({
55
+ variant?: "link" | "default" | "outline" | "secondary" | "ghost" | "destructive" | null | undefined;
56
+ size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
57
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
58
+ declare function Button({ className, variant, size, ...props }: Button$1.Props & VariantProps<typeof buttonVariants>): react_jsx_runtime.JSX.Element;
59
+
60
+ declare function AlertDialog({ ...props }: AlertDialog$1.Root.Props): react_jsx_runtime.JSX.Element;
61
+ declare function AlertDialogTrigger({ ...props }: AlertDialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
62
+ declare function AlertDialogPortal({ ...props }: AlertDialog$1.Portal.Props): react_jsx_runtime.JSX.Element;
63
+ declare function AlertDialogOverlay({ className, ...props }: AlertDialog$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
64
+ declare function AlertDialogContent({ className, size, ...props }: AlertDialog$1.Popup.Props & {
65
+ size?: "default" | "sm";
66
+ }): react_jsx_runtime.JSX.Element;
67
+ declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
68
+ declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
69
+ declare function AlertDialogMedia({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
70
+ declare function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
71
+ declare function AlertDialogDescription({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
72
+ declare function AlertDialogAction({ className, ...props }: React.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
73
+ declare function AlertDialogCancel({ className, variant, size, ...props }: AlertDialog$1.Close.Props & Pick<React.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime.JSX.Element;
74
+
75
+ declare const alertVariants: (props?: ({
76
+ variant?: "default" | "destructive" | "info" | "success" | "warning" | "invert" | null | undefined;
77
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
78
+ declare function Alert({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element;
79
+ declare function AlertTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
80
+ declare function AlertDescription({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
81
+ declare function AlertAction({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
82
+
83
+ declare function AspectRatio({ ratio, className, ...props }: React.ComponentProps<"div"> & {
84
+ ratio: number;
85
+ }): react_jsx_runtime.JSX.Element;
86
+
87
+ declare const inputVariants: (props?: ({
88
+ size?: "default" | "sm" | "lg" | null | undefined;
89
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
90
+ declare const Autocomplete: typeof Autocomplete$1.Root;
91
+ declare function AutocompleteValue({ ...props }: Autocomplete$1.Value.Props): react_jsx_runtime.JSX.Element;
92
+ declare function AutocompleteInput({ className, size, showClear, showTrigger, ...props }: Omit<Autocomplete$1.Input.Props, "size"> & VariantProps<typeof inputVariants> & {
93
+ showClear?: boolean;
94
+ showTrigger?: boolean;
95
+ }): react_jsx_runtime.JSX.Element;
96
+ declare function AutocompleteStatus({ className, ...props }: Autocomplete$1.Status.Props): react_jsx_runtime.JSX.Element;
97
+ declare function AutocompletePortal({ ...props }: Autocomplete$1.Portal.Props): react_jsx_runtime.JSX.Element;
98
+ declare function AutocompleteBackdrop({ ...props }: Autocomplete$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
99
+ declare function AutocompletePositioner({ className, ...props }: Autocomplete$1.Positioner.Props): react_jsx_runtime.JSX.Element;
100
+ declare function AutocompleteList({ className, scrollAreaClassName, ...props }: Autocomplete$1.List.Props & {
101
+ scrollAreaClassName?: string;
102
+ scrollFade?: boolean;
103
+ scrollbarGutter?: boolean;
104
+ }): react_jsx_runtime.JSX.Element;
105
+ declare function AutocompleteCollection({ ...props }: React.ComponentProps<typeof Autocomplete$1.Collection>): react_jsx_runtime.JSX.Element;
106
+ declare function AutocompleteRow({ className, ...props }: React.ComponentProps<typeof Autocomplete$1.Row>): react_jsx_runtime.JSX.Element;
107
+ declare function AutocompleteItem({ className, ...props }: React.ComponentProps<typeof Autocomplete$1.Item>): react_jsx_runtime.JSX.Element;
108
+ interface AutocompleteContentProps extends React.ComponentProps<typeof Autocomplete$1.Popup> {
109
+ align?: Autocomplete$1.Positioner.Props["align"];
110
+ sideOffset?: Autocomplete$1.Positioner.Props["sideOffset"];
111
+ alignOffset?: Autocomplete$1.Positioner.Props["alignOffset"];
112
+ side?: Autocomplete$1.Positioner.Props["side"];
113
+ anchor?: Autocomplete$1.Positioner.Props["anchor"];
114
+ showBackdrop?: boolean;
115
+ }
116
+ declare function AutocompleteContent({ className, children, showBackdrop, align, sideOffset, alignOffset, side, anchor, ...props }: AutocompleteContentProps): react_jsx_runtime.JSX.Element;
117
+ declare function AutocompleteGroup({ ...props }: React.ComponentProps<typeof Autocomplete$1.Group>): react_jsx_runtime.JSX.Element;
118
+ declare function AutocompleteGroupLabel({ className, ...props }: React.ComponentProps<typeof Autocomplete$1.GroupLabel>): react_jsx_runtime.JSX.Element;
119
+ declare function AutocompleteEmpty({ className, ...props }: React.ComponentProps<typeof Autocomplete$1.Empty>): react_jsx_runtime.JSX.Element;
120
+ declare function AutocompleteClear({ className, ...props }: React.ComponentProps<typeof Autocomplete$1.Clear>): react_jsx_runtime.JSX.Element;
121
+ declare function AutocompleteTrigger({ className, ...props }: React.ComponentProps<typeof Autocomplete$1.Trigger>): react_jsx_runtime.JSX.Element;
122
+ declare function AutocompleteArrow({ ...props }: React.ComponentProps<typeof Autocomplete$1.Arrow>): react_jsx_runtime.JSX.Element;
123
+ declare function AutocompleteSeparator({ className, ...props }: React.ComponentProps<typeof Autocomplete$1.Separator>): react_jsx_runtime.JSX.Element;
124
+
125
+ declare function Avatar({ className, size, ...props }: Avatar$1.Root.Props & {
126
+ size?: "default" | "sm" | "lg";
127
+ }): react_jsx_runtime.JSX.Element;
128
+ declare function AvatarImage({ className, ...props }: Avatar$1.Image.Props): react_jsx_runtime.JSX.Element;
129
+ declare function AvatarFallback({ className, ...props }: Avatar$1.Fallback.Props): react_jsx_runtime.JSX.Element;
130
+ declare function AvatarBadge({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
131
+ declare function AvatarGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
132
+ declare function AvatarGroupCount({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
133
+
134
+ declare const badgeVariants: (props?: ({
135
+ variant?: "default" | "outline" | "secondary" | "destructive" | "info" | "success" | "warning" | "invert" | "focus" | "primary-light" | "warning-light" | "success-light" | "info-light" | "destructive-light" | "invert-light" | "focus-light" | "primary-outline" | "warning-outline" | "success-outline" | "info-outline" | "destructive-outline" | "invert-outline" | "focus-outline" | null | undefined;
136
+ size?: "default" | "xs" | "sm" | "lg" | "xl" | null | undefined;
137
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
138
+ interface BadgeProps extends useRender.ComponentProps<"span"> {
139
+ variant?: VariantProps<typeof badgeVariants>["variant"];
140
+ size?: VariantProps<typeof badgeVariants>["size"];
141
+ }
142
+ declare function Badge({ className, variant, size, render, ...props }: BadgeProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
143
+
144
+ declare function Breadcrumb({ className, ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
145
+ declare function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
146
+ declare function BreadcrumbItem({ className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
147
+ declare function BreadcrumbLink({ className, render, ...props }: useRender.ComponentProps<"a">): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
148
+ declare function BreadcrumbPage({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
149
+ declare function BreadcrumbSeparator({ children, className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
150
+ declare function BreadcrumbEllipsis({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
151
+
152
+ declare function Separator({ className, orientation, ...props }: Separator$1.Props): react_jsx_runtime.JSX.Element;
153
+
154
+ declare const buttonGroupVariants: (props?: ({
155
+ orientation?: "horizontal" | "vertical" | null | undefined;
156
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
157
+ declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime.JSX.Element;
158
+ declare function ButtonGroupText({ className, render, ...props }: useRender.ComponentProps<"div">): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
159
+ declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
160
+
161
+ declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, locale, formatters, components, ...props }: React.ComponentProps<typeof DayPicker> & {
162
+ buttonVariant?: React.ComponentProps<typeof Button>["variant"];
163
+ }): react_jsx_runtime.JSX.Element;
164
+ declare function CalendarDayButton({ className, day, modifiers, locale, ...props }: React.ComponentProps<typeof DayButton> & {
165
+ locale?: Partial<Locale>;
166
+ }): react_jsx_runtime.JSX.Element;
167
+
168
+ declare function Card({ className, size, ...props }: React.ComponentProps<"div"> & {
169
+ size?: "default" | "sm";
170
+ }): react_jsx_runtime.JSX.Element;
171
+ declare function CardHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
172
+ declare function CardTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
173
+ declare function CardDescription({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
174
+ declare function CardAction({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
175
+ declare function CardContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
176
+ declare function CardFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
177
+
178
+ type CarouselApi = UseEmblaCarouselType[1];
179
+ type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
180
+ type CarouselOptions = UseCarouselParameters[0];
181
+ type CarouselPlugin = UseCarouselParameters[1];
182
+ type CarouselProps = {
183
+ opts?: CarouselOptions;
184
+ plugins?: CarouselPlugin;
185
+ orientation?: "horizontal" | "vertical";
186
+ setApi?: (api: CarouselApi) => void;
187
+ };
188
+ type CarouselContextProps = {
189
+ carouselRef: ReturnType<typeof useEmblaCarousel>[0];
190
+ api: ReturnType<typeof useEmblaCarousel>[1];
191
+ scrollPrev: () => void;
192
+ scrollNext: () => void;
193
+ canScrollPrev: boolean;
194
+ canScrollNext: boolean;
195
+ } & CarouselProps;
196
+ declare function useCarousel(): CarouselContextProps;
197
+ declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React.ComponentProps<"div"> & CarouselProps): react_jsx_runtime.JSX.Element;
198
+ declare function CarouselContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
199
+ declare function CarouselItem({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
200
+ declare function CarouselPrevious({ className, variant, size, ...props }: React.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
201
+ declare function CarouselNext({ className, variant, size, ...props }: React.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
202
+
203
+ declare const THEMES: {
204
+ readonly light: "";
205
+ readonly dark: ".dark";
206
+ };
207
+ type ChartConfig = {
208
+ [k in string]: {
209
+ label?: React.ReactNode;
210
+ icon?: React.ComponentType;
211
+ } & ({
212
+ color?: string;
213
+ theme?: never;
214
+ } | {
215
+ color?: never;
216
+ theme: Record<keyof typeof THEMES, string>;
217
+ });
218
+ };
219
+ declare function ChartContainer({ id, className, children, config, ...props }: React.ComponentProps<"div"> & {
220
+ config: ChartConfig;
221
+ children: React.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
222
+ }): react_jsx_runtime.JSX.Element;
223
+ declare const ChartStyle: ({ id, config }: {
224
+ id: string;
225
+ config: ChartConfig;
226
+ }) => react_jsx_runtime.JSX.Element | null;
227
+ declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
228
+ declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React.ComponentProps<typeof RechartsPrimitive.Tooltip> & React.ComponentProps<"div"> & {
229
+ hideLabel?: boolean;
230
+ hideIndicator?: boolean;
231
+ indicator?: "line" | "dot" | "dashed";
232
+ nameKey?: string;
233
+ labelKey?: string;
234
+ }): react_jsx_runtime.JSX.Element | null;
235
+ declare const ChartLegend: typeof RechartsPrimitive.Legend;
236
+ declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React.ComponentProps<"div"> & Pick<RechartsPrimitive.LegendProps, "payload" | "verticalAlign"> & {
237
+ hideIcon?: boolean;
238
+ nameKey?: string;
239
+ }): react_jsx_runtime.JSX.Element | null;
240
+
241
+ declare function Checkbox({ className, ...props }: Checkbox$1.Root.Props): react_jsx_runtime.JSX.Element;
242
+
243
+ declare function Collapsible({ ...props }: Collapsible$1.Root.Props): react_jsx_runtime.JSX.Element;
244
+ declare function CollapsibleTrigger({ ...props }: Collapsible$1.Trigger.Props): react_jsx_runtime.JSX.Element;
245
+ declare function CollapsibleContent({ ...props }: Collapsible$1.Panel.Props): react_jsx_runtime.JSX.Element;
246
+
247
+ declare const Combobox: typeof Combobox$1.Root;
248
+ declare function ComboboxValue({ ...props }: Combobox$1.Value.Props): react_jsx_runtime.JSX.Element;
249
+ declare function ComboboxTrigger({ className, children, ...props }: Combobox$1.Trigger.Props): react_jsx_runtime.JSX.Element;
250
+ declare function ComboboxInput({ className, children, disabled, showTrigger, showClear, ...props }: Combobox$1.Input.Props & {
251
+ showTrigger?: boolean;
252
+ showClear?: boolean;
253
+ }): react_jsx_runtime.JSX.Element;
254
+ declare function ComboboxContent({ className, side, sideOffset, align, alignOffset, anchor, ...props }: Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">): react_jsx_runtime.JSX.Element;
255
+ declare function ComboboxList({ className, ...props }: Combobox$1.List.Props): react_jsx_runtime.JSX.Element;
256
+ declare function ComboboxItem({ className, children, ...props }: Combobox$1.Item.Props): react_jsx_runtime.JSX.Element;
257
+ declare function ComboboxGroup({ className, ...props }: Combobox$1.Group.Props): react_jsx_runtime.JSX.Element;
258
+ declare function ComboboxLabel({ className, ...props }: Combobox$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
259
+ declare function ComboboxCollection({ ...props }: Combobox$1.Collection.Props): react_jsx_runtime.JSX.Element;
260
+ declare function ComboboxEmpty({ className, ...props }: Combobox$1.Empty.Props): react_jsx_runtime.JSX.Element;
261
+ declare function ComboboxSeparator({ className, ...props }: Combobox$1.Separator.Props): react_jsx_runtime.JSX.Element;
262
+ declare function ComboboxChips({ className, ...props }: React.ComponentPropsWithRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props): react_jsx_runtime.JSX.Element;
263
+ declare function ComboboxChip({ className, children, showRemove, ...props }: Combobox$1.Chip.Props & {
264
+ showRemove?: boolean;
265
+ }): react_jsx_runtime.JSX.Element;
266
+ declare function ComboboxChipsInput({ className, ...props }: Combobox$1.Input.Props): react_jsx_runtime.JSX.Element;
267
+ declare function useComboboxAnchor(): React.RefObject<HTMLDivElement | null>;
268
+
269
+ declare function Dialog({ ...props }: Dialog$1.Root.Props): react_jsx_runtime.JSX.Element;
270
+ declare function DialogTrigger({ ...props }: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
271
+ declare function DialogPortal({ ...props }: Dialog$1.Portal.Props): react_jsx_runtime.JSX.Element;
272
+ declare function DialogClose({ ...props }: Dialog$1.Close.Props): react_jsx_runtime.JSX.Element;
273
+ declare function DialogOverlay({ className, ...props }: Dialog$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
274
+ declare function DialogContent({ className, children, showCloseButton, ...props }: Dialog$1.Popup.Props & {
275
+ showCloseButton?: boolean;
276
+ }): react_jsx_runtime.JSX.Element;
277
+ declare function DialogHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
278
+ declare function DialogFooter({ className, showCloseButton, children, ...props }: React.ComponentProps<"div"> & {
279
+ showCloseButton?: boolean;
280
+ }): react_jsx_runtime.JSX.Element;
281
+ declare function DialogTitle({ className, ...props }: Dialog$1.Title.Props): react_jsx_runtime.JSX.Element;
282
+ declare function DialogDescription({ className, ...props }: Dialog$1.Description.Props): react_jsx_runtime.JSX.Element;
283
+
284
+ declare function Command({ className, ...props }: React.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
285
+ declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: Omit<React.ComponentProps<typeof Dialog>, "children"> & {
286
+ title?: string;
287
+ description?: string;
288
+ className?: string;
289
+ showCloseButton?: boolean;
290
+ children: React.ReactNode;
291
+ }): react_jsx_runtime.JSX.Element;
292
+ declare function CommandInput({ className, ...props }: React.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
293
+ declare function CommandList({ className, ...props }: React.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
294
+ declare function CommandEmpty({ className, ...props }: React.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
295
+ declare function CommandGroup({ className, ...props }: React.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
296
+ declare function CommandSeparator({ className, ...props }: React.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
297
+ declare function CommandItem({ className, children, ...props }: React.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
298
+ declare function CommandShortcut({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
299
+
300
+ declare function ContextMenu({ ...props }: ContextMenu$1.Root.Props): react_jsx_runtime.JSX.Element;
301
+ declare function ContextMenuPortal({ ...props }: ContextMenu$1.Portal.Props): react_jsx_runtime.JSX.Element;
302
+ declare function ContextMenuTrigger({ className, ...props }: ContextMenu$1.Trigger.Props): react_jsx_runtime.JSX.Element;
303
+ declare function ContextMenuContent({ className, align, alignOffset, side, sideOffset, ...props }: ContextMenu$1.Popup.Props & Pick<ContextMenu$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
304
+ declare function ContextMenuGroup({ ...props }: ContextMenu$1.Group.Props): react_jsx_runtime.JSX.Element;
305
+ declare function ContextMenuLabel({ className, inset, ...props }: ContextMenu$1.GroupLabel.Props & {
306
+ inset?: boolean;
307
+ }): react_jsx_runtime.JSX.Element;
308
+ declare function ContextMenuItem({ className, inset, variant, ...props }: ContextMenu$1.Item.Props & {
309
+ inset?: boolean;
310
+ variant?: "default" | "destructive";
311
+ }): react_jsx_runtime.JSX.Element;
312
+ declare function ContextMenuSub({ ...props }: ContextMenu$1.SubmenuRoot.Props): react_jsx_runtime.JSX.Element;
313
+ declare function ContextMenuSubTrigger({ className, inset, children, ...props }: ContextMenu$1.SubmenuTrigger.Props & {
314
+ inset?: boolean;
315
+ }): react_jsx_runtime.JSX.Element;
316
+ declare function ContextMenuSubContent({ ...props }: React.ComponentProps<typeof ContextMenuContent>): react_jsx_runtime.JSX.Element;
317
+ declare function ContextMenuCheckboxItem({ className, children, checked, inset, ...props }: ContextMenu$1.CheckboxItem.Props & {
318
+ inset?: boolean;
319
+ }): react_jsx_runtime.JSX.Element;
320
+ declare function ContextMenuRadioGroup({ ...props }: ContextMenu$1.RadioGroup.Props): react_jsx_runtime.JSX.Element;
321
+ declare function ContextMenuRadioItem({ className, children, inset, ...props }: ContextMenu$1.RadioItem.Props & {
322
+ inset?: boolean;
323
+ }): react_jsx_runtime.JSX.Element;
324
+ declare function ContextMenuSeparator({ className, ...props }: ContextMenu$1.Separator.Props): react_jsx_runtime.JSX.Element;
325
+ declare function ContextMenuShortcut({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
326
+
327
+ interface DataGridColumnFilterProps<TData, TValue> {
328
+ column?: Column<TData, TValue>;
329
+ title?: string;
330
+ options: {
331
+ label: string;
332
+ value: string;
333
+ icon?: React.ComponentType<{
334
+ className?: string;
335
+ }>;
336
+ }[];
337
+ }
338
+ declare function DataGridColumnFilter<TData, TValue>({ column, title, options, }: DataGridColumnFilterProps<TData, TValue>): react_jsx_runtime.JSX.Element;
339
+
340
+ interface DataGridColumnHeaderProps<TData, TValue> extends HTMLAttributes<HTMLDivElement> {
341
+ column: Column<TData, TValue>;
342
+ title?: string;
343
+ icon?: ReactNode;
344
+ pinnable?: boolean;
345
+ filter?: ReactNode;
346
+ visibility?: boolean;
347
+ }
348
+ declare function DataGridColumnHeaderInner<TData, TValue>({ column, title, icon, className, filter, visibility, }: DataGridColumnHeaderProps<TData, TValue>): react_jsx_runtime.JSX.Element;
349
+ declare const DataGridColumnHeader: typeof DataGridColumnHeaderInner;
350
+
351
+ declare function DataGridColumnVisibility<TData>({ table, trigger, }: {
352
+ table: Table$1<TData>;
353
+ trigger: ReactElement<Record<string, unknown>>;
354
+ }): react_jsx_runtime.JSX.Element;
355
+
356
+ interface DataGridPaginationProps {
357
+ sizes?: number[];
358
+ sizesInfo?: string;
359
+ sizesLabel?: string;
360
+ sizesDescription?: string;
361
+ sizesSkeleton?: ReactNode;
362
+ more?: boolean;
363
+ moreLimit?: number;
364
+ info?: string;
365
+ infoSkeleton?: ReactNode;
366
+ className?: string;
367
+ rowsPerPageLabel?: string;
368
+ previousPageLabel?: string;
369
+ nextPageLabel?: string;
370
+ ellipsisText?: string;
371
+ }
372
+ declare function DataGridPagination(props: DataGridPaginationProps): React__default.JSX.Element;
373
+
374
+ declare function DataGridTableDndRowHandle({ className }: {
375
+ className?: string;
376
+ }): react_jsx_runtime.JSX.Element;
377
+ declare function DataGridTableDndRows<TData>({ handleDragEnd, dataIds, }: {
378
+ handleDragEnd: (event: DragEndEvent) => void;
379
+ dataIds: UniqueIdentifier[];
380
+ }): react_jsx_runtime.JSX.Element;
381
+
382
+ declare function DataGridTableDnd<TData>({ handleDragEnd, }: {
383
+ handleDragEnd: (event: DragEndEvent) => void;
384
+ }): react_jsx_runtime.JSX.Element;
385
+
386
+ declare function DataGridTableBase({ children }: {
387
+ children: ReactNode;
388
+ }): react_jsx_runtime.JSX.Element;
389
+ declare function DataGridTableHead({ children }: {
390
+ children: ReactNode;
391
+ }): react_jsx_runtime.JSX.Element;
392
+ declare function DataGridTableHeadRow<TData>({ children, headerGroup, }: {
393
+ children: ReactNode;
394
+ headerGroup: HeaderGroup<TData>;
395
+ }): react_jsx_runtime.JSX.Element;
396
+ declare function DataGridTableHeadRowCell<TData>({ children, header, dndRef, dndStyle, }: {
397
+ children: ReactNode;
398
+ header: Header<TData, unknown>;
399
+ dndRef?: React.Ref<HTMLTableCellElement>;
400
+ dndStyle?: CSSProperties;
401
+ }): react_jsx_runtime.JSX.Element;
402
+ declare function DataGridTableHeadRowCellResize<TData>({ header }: {
403
+ header: Header<TData, unknown>;
404
+ }): react_jsx_runtime.JSX.Element;
405
+ declare function DataGridTableRowSpacer(): react_jsx_runtime.JSX.Element;
406
+ declare function DataGridTableBody({ children }: {
407
+ children: ReactNode;
408
+ }): react_jsx_runtime.JSX.Element;
409
+ declare function DataGridTableBodyRowSkeleton({ children }: {
410
+ children: ReactNode;
411
+ }): react_jsx_runtime.JSX.Element;
412
+ declare function DataGridTableBodyRowSkeletonCell<TData>({ children, column, }: {
413
+ children: ReactNode;
414
+ column: Column<TData>;
415
+ }): react_jsx_runtime.JSX.Element;
416
+ declare function DataGridTableBodyRow<TData>({ children, row, dndRef, dndStyle, }: {
417
+ children: ReactNode;
418
+ row: Row<TData>;
419
+ dndRef?: React.Ref<HTMLTableRowElement>;
420
+ dndStyle?: CSSProperties;
421
+ }): react_jsx_runtime.JSX.Element;
422
+ declare function DataGridTableBodyRowExpandded<TData>({ row }: {
423
+ row: Row<TData>;
424
+ }): react_jsx_runtime.JSX.Element;
425
+ declare function DataGridTableBodyRowCell<TData>({ children, cell, dndRef, dndStyle, }: {
426
+ children: ReactNode;
427
+ cell: Cell<TData, unknown>;
428
+ dndRef?: React.Ref<HTMLTableCellElement>;
429
+ dndStyle?: CSSProperties;
430
+ }): react_jsx_runtime.JSX.Element;
431
+ declare function DataGridTableEmpty(): react_jsx_runtime.JSX.Element;
432
+ declare function DataGridTableLoader(): react_jsx_runtime.JSX.Element;
433
+ declare function DataGridTableRowSelect<TData>({ row }: {
434
+ row: Row<TData>;
435
+ }): react_jsx_runtime.JSX.Element;
436
+ declare function DataGridTableRowSelectAll(): react_jsx_runtime.JSX.Element;
437
+ declare function DataGridTable<TData>(): react_jsx_runtime.JSX.Element;
438
+
439
+ declare module "@tanstack/react-table" {
440
+ interface ColumnMeta<TData extends RowData, TValue> {
441
+ headerTitle?: string;
442
+ headerClassName?: string;
443
+ cellClassName?: string;
444
+ cellClassNameFn?: (row: TData) => string;
445
+ skeleton?: ReactNode;
446
+ expandedContent?: (row: TData) => ReactNode;
447
+ }
448
+ }
449
+ type DataGridApiFetchParams = {
450
+ pageIndex: number;
451
+ pageSize: number;
452
+ sorting?: SortingState;
453
+ filters?: ColumnFiltersState;
454
+ searchQuery?: string;
455
+ };
456
+ type DataGridApiResponse<T> = {
457
+ data: T[];
458
+ empty: boolean;
459
+ pagination: {
460
+ total: number;
461
+ page: number;
462
+ };
463
+ };
464
+ interface DataGridContextProps<TData extends object> {
465
+ props: DataGridProps<TData>;
466
+ table: Table$1<TData>;
467
+ recordCount: number;
468
+ isLoading: boolean;
469
+ }
470
+ type DataGridRequestParams = {
471
+ pageIndex: number;
472
+ pageSize: number;
473
+ sorting?: SortingState;
474
+ columnFilters?: ColumnFiltersState;
475
+ };
476
+ interface DataGridProps<TData extends object> {
477
+ className?: string;
478
+ table?: Table$1<TData>;
479
+ recordCount: number;
480
+ children?: ReactNode;
481
+ onRowClick?: (row: TData) => void;
482
+ isLoading?: boolean;
483
+ loadingMode?: "skeleton" | "spinner";
484
+ loadingMessage?: ReactNode | string;
485
+ emptyMessage?: ReactNode | string;
486
+ tableLayout?: {
487
+ dense?: boolean;
488
+ cellBorder?: boolean;
489
+ rowBorder?: boolean;
490
+ rowRounded?: boolean;
491
+ stripped?: boolean;
492
+ headerBackground?: boolean;
493
+ headerBorder?: boolean;
494
+ headerSticky?: boolean;
495
+ width?: "auto" | "fixed";
496
+ columnsVisibility?: boolean;
497
+ columnsResizable?: boolean;
498
+ columnsPinnable?: boolean;
499
+ columnsMovable?: boolean;
500
+ columnsDraggable?: boolean;
501
+ rowsDraggable?: boolean;
502
+ };
503
+ tableClassNames?: {
504
+ base?: string;
505
+ header?: string;
506
+ headerRow?: string;
507
+ headerSticky?: string;
508
+ body?: string;
509
+ bodyRow?: string;
510
+ footer?: string;
511
+ edgeCell?: string;
512
+ };
513
+ }
514
+ declare function useDataGrid(): DataGridContextProps<any>;
515
+ declare function DataGridProvider<TData extends object>({ children, table, ...props }: DataGridProps<TData> & {
516
+ table: Table$1<TData>;
517
+ }): react_jsx_runtime.JSX.Element;
518
+ declare function DataGrid<TData extends object>({ children, table, ...props }: DataGridProps<TData>): react_jsx_runtime.JSX.Element;
519
+ declare function DataGridContainer({ children, className, border, }: {
520
+ children: ReactNode;
521
+ className?: string;
522
+ border?: boolean;
523
+ }): react_jsx_runtime.JSX.Element;
524
+
525
+ interface DateSelectorI18nConfig {
526
+ selectDate: string;
527
+ apply: string;
528
+ cancel: string;
529
+ clear: string;
530
+ today: string;
531
+ filterTypes: {
532
+ is: string;
533
+ before: string;
534
+ after: string;
535
+ between: string;
536
+ };
537
+ periodTypes: {
538
+ day: string;
539
+ month: string;
540
+ quarter: string;
541
+ halfYear: string;
542
+ year: string;
543
+ };
544
+ months: string[];
545
+ monthsShort: string[];
546
+ quarters: string[];
547
+ halfYears: string[];
548
+ weekdays: string[];
549
+ weekdaysShort: string[];
550
+ placeholder: string;
551
+ rangePlaceholder: string;
552
+ }
553
+ declare const DEFAULT_DATE_SELECTOR_I18N: DateSelectorI18nConfig;
554
+ type DateSelectorPeriodType = "day" | "month" | "quarter" | "half-year" | "year";
555
+ type DateSelectorFilterType = "is" | "before" | "after" | "between";
556
+ interface DateSelectorValue {
557
+ period: DateSelectorPeriodType;
558
+ operator: DateSelectorFilterType;
559
+ startDate?: Date;
560
+ endDate?: Date;
561
+ year?: number;
562
+ month?: number;
563
+ quarter?: number;
564
+ halfYear?: number;
565
+ rangeStart?: {
566
+ year: number;
567
+ value: number;
568
+ };
569
+ rangeEnd?: {
570
+ year: number;
571
+ value: number;
572
+ };
573
+ }
574
+ interface DateSelectorContextValue {
575
+ i18n: DateSelectorI18nConfig;
576
+ variant: "outline" | "default";
577
+ size: "sm" | "default" | "lg";
578
+ }
579
+ declare const useDateSelectorContext: () => DateSelectorContextValue;
580
+ declare function formatDateValue(value: DateSelectorValue, i18n?: DateSelectorI18nConfig, dayDateFormat?: string): string;
581
+ interface UseDateSelectorOptions {
582
+ value?: DateSelectorValue;
583
+ onChange?: (value: DateSelectorValue) => void;
584
+ defaultPeriodType?: DateSelectorPeriodType;
585
+ defaultFilterType?: DateSelectorFilterType;
586
+ presetMode?: DateSelectorFilterType;
587
+ allowRange?: boolean;
588
+ yearRange?: number;
589
+ baseYear?: number;
590
+ minYear?: number;
591
+ maxYear?: number;
592
+ periodTypes?: DateSelectorPeriodType[];
593
+ }
594
+ declare function useDateSelector({ value, onChange, defaultPeriodType, defaultFilterType, presetMode, allowRange, yearRange, baseYear, minYear, maxYear, periodTypes, }: UseDateSelectorOptions): {
595
+ periodType: DateSelectorPeriodType;
596
+ filterType: DateSelectorFilterType;
597
+ selectedDate: Date | undefined;
598
+ selectedEndDate: Date | undefined;
599
+ calendarMonth: Date;
600
+ selectedYear: number | undefined;
601
+ selectedMonth: number | undefined;
602
+ selectedQuarter: number | undefined;
603
+ selectedHalfYear: number | undefined;
604
+ rangeStart: {
605
+ year: number;
606
+ value: number;
607
+ } | undefined;
608
+ rangeEnd: {
609
+ year: number;
610
+ value: number;
611
+ } | undefined;
612
+ hoverDate: Date | undefined;
613
+ years: number[];
614
+ currentValue: DateSelectorValue;
615
+ allowRange: boolean;
616
+ setPeriodType: (type: DateSelectorPeriodType) => void;
617
+ setFilterType: (type: DateSelectorFilterType) => void;
618
+ setSelectedDate: React.Dispatch<React.SetStateAction<Date | undefined>>;
619
+ setSelectedEndDate: React.Dispatch<React.SetStateAction<Date | undefined>>;
620
+ setCalendarMonth: React.Dispatch<React.SetStateAction<Date>>;
621
+ setHoverDate: React.Dispatch<React.SetStateAction<Date | undefined>>;
622
+ clearSelection: () => void;
623
+ handleDayClick: (day: Date) => void;
624
+ handlePeriodSelect: (year: number, value: number) => void;
625
+ handleYearSelect: (year: number) => void;
626
+ isInRange: (year: number, value: number) => boolean;
627
+ isYearInRange: (year: number) => boolean;
628
+ };
629
+ interface DateSelectorProps {
630
+ value?: DateSelectorValue;
631
+ onChange?: (value: DateSelectorValue) => void;
632
+ allowRange?: boolean;
633
+ periodTypes?: DateSelectorPeriodType[];
634
+ defaultPeriodType?: DateSelectorPeriodType;
635
+ defaultFilterType?: DateSelectorFilterType;
636
+ presetMode?: DateSelectorFilterType;
637
+ showInput?: boolean;
638
+ showTwoMonths?: boolean;
639
+ label?: string;
640
+ className?: string;
641
+ yearRange?: number;
642
+ baseYear?: number;
643
+ minYear?: number;
644
+ maxYear?: number;
645
+ i18n?: Partial<DateSelectorI18nConfig>;
646
+ inputHint?: string;
647
+ dayDateFormat?: string;
648
+ dayDateFormats?: string[];
649
+ weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
650
+ }
651
+ declare function DateSelector({ value, onChange, allowRange, periodTypes, defaultPeriodType, defaultFilterType, presetMode, showInput, showTwoMonths, label, className, yearRange, baseYear, minYear, maxYear, i18n: i18nOverride, inputHint, dayDateFormat, dayDateFormats, weekStartsOn, }: DateSelectorProps): react_jsx_runtime.JSX.Element;
652
+
653
+ declare function Drawer({ ...props }: React.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
654
+ declare function DrawerTrigger({ ...props }: React.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element;
655
+ declare function DrawerPortal({ ...props }: React.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
656
+ declare function DrawerClose({ ...props }: React.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element;
657
+ declare function DrawerOverlay({ className, ...props }: React.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime.JSX.Element;
658
+ declare function DrawerContent({ className, children, ...props }: React.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element;
659
+ declare function DrawerHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
660
+ declare function DrawerFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
661
+ declare function DrawerTitle({ className, ...props }: React.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
662
+ declare function DrawerDescription({ className, ...props }: React.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
663
+
664
+ declare function DropdownMenu({ ...props }: Menu.Root.Props): react_jsx_runtime.JSX.Element;
665
+ declare function DropdownMenuPortal({ ...props }: Menu.Portal.Props): react_jsx_runtime.JSX.Element;
666
+ declare function DropdownMenuTrigger({ ...props }: Menu.Trigger.Props): react_jsx_runtime.JSX.Element;
667
+ declare function DropdownMenuContent({ align, alignOffset, side, sideOffset, className, ...props }: Menu.Popup.Props & Pick<Menu.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
668
+ declare function DropdownMenuGroup({ ...props }: Menu.Group.Props): react_jsx_runtime.JSX.Element;
669
+ declare function DropdownMenuLabel({ className, inset, ...props }: Menu.GroupLabel.Props & {
670
+ inset?: boolean;
671
+ }): react_jsx_runtime.JSX.Element;
672
+ declare function DropdownMenuItem({ className, inset, variant, ...props }: Menu.Item.Props & {
673
+ inset?: boolean;
674
+ variant?: "default" | "destructive";
675
+ }): react_jsx_runtime.JSX.Element;
676
+ declare function DropdownMenuSub({ ...props }: Menu.SubmenuRoot.Props): react_jsx_runtime.JSX.Element;
677
+ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: Menu.SubmenuTrigger.Props & {
678
+ inset?: boolean;
679
+ }): react_jsx_runtime.JSX.Element;
680
+ declare function DropdownMenuSubContent({ align, alignOffset, side, sideOffset, className, ...props }: React.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime.JSX.Element;
681
+ declare function DropdownMenuCheckboxItem({ className, children, checked, inset, ...props }: Menu.CheckboxItem.Props & {
682
+ inset?: boolean;
683
+ }): react_jsx_runtime.JSX.Element;
684
+ declare function DropdownMenuRadioGroup({ ...props }: Menu.RadioGroup.Props): react_jsx_runtime.JSX.Element;
685
+ declare function DropdownMenuRadioItem({ className, children, inset, ...props }: Menu.RadioItem.Props & {
686
+ inset?: boolean;
687
+ }): react_jsx_runtime.JSX.Element;
688
+ declare function DropdownMenuSeparator({ className, ...props }: Menu.Separator.Props): react_jsx_runtime.JSX.Element;
689
+ declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
690
+
691
+ declare function Empty({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
692
+ declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
693
+ declare const emptyMediaVariants: (props?: ({
694
+ variant?: "default" | "icon" | null | undefined;
695
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
696
+ declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime.JSX.Element;
697
+ declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
698
+ declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
699
+ declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
700
+
701
+ declare function Label({ className, ...props }: React.ComponentProps<"label">): react_jsx_runtime.JSX.Element;
702
+
703
+ declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
704
+ declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
705
+ variant?: "legend" | "label";
706
+ }): react_jsx_runtime.JSX.Element;
707
+ declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
708
+ declare const fieldVariants: (props?: ({
709
+ orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
710
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
711
+ declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
712
+ declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
713
+ declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
714
+ declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
715
+ declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
716
+ declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & {
717
+ children?: React.ReactNode;
718
+ }): react_jsx_runtime.JSX.Element;
719
+ declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & {
720
+ errors?: Array<{
721
+ message?: string;
722
+ } | undefined>;
723
+ }): react_jsx_runtime.JSX.Element | null;
724
+
725
+ interface FilterI18nConfig {
726
+ addFilter: string;
727
+ searchFields: string;
728
+ noFieldsFound: string;
729
+ noResultsFound: string;
730
+ select: string;
731
+ true: string;
732
+ false: string;
733
+ min: string;
734
+ max: string;
735
+ to: string;
736
+ typeAndPressEnter: string;
737
+ selected: string;
738
+ selectedCount: string;
739
+ percent: string;
740
+ defaultCurrency: string;
741
+ defaultColor: string;
742
+ addFilterTitle: string;
743
+ operators: {
744
+ is: string;
745
+ isNot: string;
746
+ isAnyOf: string;
747
+ isNotAnyOf: string;
748
+ includesAll: string;
749
+ excludesAll: string;
750
+ before: string;
751
+ after: string;
752
+ between: string;
753
+ notBetween: string;
754
+ contains: string;
755
+ notContains: string;
756
+ startsWith: string;
757
+ endsWith: string;
758
+ isExactly: string;
759
+ equals: string;
760
+ notEquals: string;
761
+ greaterThan: string;
762
+ lessThan: string;
763
+ overlaps: string;
764
+ includes: string;
765
+ excludes: string;
766
+ includesAllOf: string;
767
+ includesAnyOf: string;
768
+ empty: string;
769
+ notEmpty: string;
770
+ };
771
+ placeholders: {
772
+ enterField: (fieldType: string) => string;
773
+ selectField: string;
774
+ searchField: (fieldName: string) => string;
775
+ enterKey: string;
776
+ enterValue: string;
777
+ };
778
+ helpers: {
779
+ formatOperator: (operator: string) => string;
780
+ };
781
+ validation: {
782
+ invalidEmail: string;
783
+ invalidUrl: string;
784
+ invalidTel: string;
785
+ invalid: string;
786
+ };
787
+ }
788
+ declare const DEFAULT_I18N: FilterI18nConfig;
789
+ interface FilterOption<T = unknown> {
790
+ value: T;
791
+ label: string;
792
+ icon?: React__default.ReactNode;
793
+ metadata?: Record<string, unknown>;
794
+ className?: string;
795
+ }
796
+ interface FilterOperator {
797
+ value: string;
798
+ label: string;
799
+ supportsMultiple?: boolean;
800
+ }
801
+ interface CustomRendererProps<T = unknown> {
802
+ field: FilterFieldConfig<T>;
803
+ values: T[];
804
+ onChange: (values: T[]) => void;
805
+ operator: string;
806
+ }
807
+ interface FilterFieldGroup<T = unknown> {
808
+ group?: string;
809
+ fields: FilterFieldConfig<T>[];
810
+ }
811
+ type FilterFieldsConfig<T = unknown> = FilterFieldConfig<T>[] | FilterFieldGroup<T>[];
812
+ interface FilterFieldConfig<T = unknown> {
813
+ key?: string;
814
+ label?: string;
815
+ icon?: React__default.ReactNode;
816
+ type?: "select" | "multiselect" | "text" | "custom" | "separator";
817
+ group?: string;
818
+ fields?: FilterFieldConfig<T>[];
819
+ options?: FilterOption<T>[];
820
+ operators?: FilterOperator[];
821
+ customRenderer?: (props: CustomRendererProps<T>) => React__default.ReactNode;
822
+ customValueRenderer?: (values: T[], options: FilterOption<T>[]) => React__default.ReactNode;
823
+ placeholder?: string;
824
+ searchable?: boolean;
825
+ maxSelections?: number;
826
+ min?: number;
827
+ max?: number;
828
+ step?: number;
829
+ prefix?: string | React__default.ReactNode;
830
+ suffix?: string | React__default.ReactNode;
831
+ pattern?: string;
832
+ validation?: (value: unknown) => boolean | {
833
+ valid: boolean;
834
+ message?: string;
835
+ };
836
+ allowCustomValues?: boolean;
837
+ className?: string;
838
+ menuPopupClassName?: string;
839
+ groupLabel?: string;
840
+ onLabel?: string;
841
+ offLabel?: string;
842
+ onInputChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
843
+ defaultOperator?: string;
844
+ value?: T[];
845
+ onValueChange?: (values: T[]) => void;
846
+ }
847
+ declare const DEFAULT_OPERATORS: Record<string, FilterOperator[]>;
848
+ interface Filter<T = unknown> {
849
+ id: string;
850
+ field: string;
851
+ operator: string;
852
+ values: T[];
853
+ }
854
+ interface FilterGroup<T = unknown> {
855
+ id: string;
856
+ label?: string;
857
+ filters: Filter<T>[];
858
+ fields: FilterFieldConfig<T>[];
859
+ }
860
+ interface FiltersContentProps<T = unknown> {
861
+ filters: Filter<T>[];
862
+ fields: FilterFieldsConfig<T>;
863
+ onChange: (filters: Filter<T>[]) => void;
864
+ }
865
+ declare const FiltersContent: <T = unknown>({ filters, fields, onChange, }: FiltersContentProps<T>) => react_jsx_runtime.JSX.Element;
866
+ interface FiltersProps<T = unknown> {
867
+ filters: Filter<T>[];
868
+ fields: FilterFieldsConfig<T>;
869
+ onChange: (filters: Filter<T>[]) => void;
870
+ className?: string;
871
+ variant?: "solid" | "default";
872
+ size?: "sm" | "default" | "lg";
873
+ radius?: "default" | "full";
874
+ i18n?: Partial<FilterI18nConfig>;
875
+ showSearchInput?: boolean;
876
+ trigger?: React__default.ReactNode;
877
+ allowMultiple?: boolean;
878
+ menuPopupClassName?: string;
879
+ collapseAddButton?: boolean;
880
+ enableShortcut?: boolean;
881
+ shortcutKey?: string;
882
+ shortcutLabel?: string;
883
+ }
884
+ declare function Filters<T = unknown>({ filters, fields, onChange, className, variant, size, radius, i18n, showSearchInput, trigger, allowMultiple, menuPopupClassName, enableShortcut, shortcutKey, shortcutLabel, }: FiltersProps<T>): react_jsx_runtime.JSX.Element;
885
+ declare const createFilter: <T = unknown>(field: string, operator?: string, values?: T[]) => Filter<T>;
886
+ declare const createFilterGroup: <T = unknown>(id: string, label: string, fields: FilterFieldConfig<T>[], initialFilters?: Filter<T>[]) => FilterGroup<T>;
887
+
888
+ declare const frameVariants: (props?: ({
889
+ variant?: "default" | "ghost" | "inverse" | null | undefined;
890
+ spacing?: "default" | "xs" | "sm" | "lg" | null | undefined;
891
+ stacked?: boolean | null | undefined;
892
+ dense?: boolean | null | undefined;
893
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
894
+ declare function Frame({ className, variant, spacing, stacked, dense, ...props }: React.ComponentProps<"div"> & VariantProps<typeof frameVariants>): react_jsx_runtime.JSX.Element;
895
+ declare function FramePanel({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
896
+ declare function FrameHeader({ className, ...props }: React.ComponentProps<"header">): react_jsx_runtime.JSX.Element;
897
+ declare function FrameTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
898
+ declare function FrameDescription({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
899
+ declare function FrameFooter({ className, ...props }: React.ComponentProps<"footer">): react_jsx_runtime.JSX.Element;
900
+
901
+ declare function HoverCard({ ...props }: PreviewCard.Root.Props): react_jsx_runtime.JSX.Element;
902
+ declare function HoverCardTrigger({ ...props }: PreviewCard.Trigger.Props): react_jsx_runtime.JSX.Element;
903
+ declare function HoverCardContent({ className, side, sideOffset, align, alignOffset, ...props }: PreviewCard.Popup.Props & Pick<PreviewCard.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
904
+
905
+ declare function InputGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
906
+ declare const inputGroupAddonVariants: (props?: ({
907
+ align?: "inline-end" | "inline-start" | "block-start" | "block-end" | null | undefined;
908
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
909
+ declare function InputGroupAddon({ className, align, ...props }: React.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime.JSX.Element;
910
+ declare const inputGroupButtonVariants: (props?: ({
911
+ size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
912
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
913
+ declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React.ComponentProps<typeof Button>, "size" | "type"> & VariantProps<typeof inputGroupButtonVariants> & {
914
+ type?: "button" | "submit" | "reset";
915
+ }): react_jsx_runtime.JSX.Element;
916
+ declare function InputGroupText({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
917
+ declare function InputGroupInput({ className, ...props }: React.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
918
+ declare function InputGroupTextarea({ className, ...props }: React.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
919
+
920
+ declare function InputOTP({ className, containerClassName, ...props }: React.ComponentProps<typeof OTPInput> & {
921
+ containerClassName?: string;
922
+ }): react_jsx_runtime.JSX.Element;
923
+ declare function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
924
+ declare function InputOTPSlot({ index, className, ...props }: React.ComponentProps<"div"> & {
925
+ index: number;
926
+ }): react_jsx_runtime.JSX.Element;
927
+ declare function InputOTPSeparator({ ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
928
+
929
+ declare function Input({ className, type, ...props }: React.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
930
+
931
+ declare function ItemGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
932
+ declare function ItemSeparator({ className, ...props }: React.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
933
+ declare const itemVariants: (props?: ({
934
+ variant?: "default" | "outline" | "muted" | null | undefined;
935
+ size?: "default" | "xs" | "sm" | null | undefined;
936
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
937
+ declare function Item({ className, variant, size, render, ...props }: useRender.ComponentProps<"div"> & VariantProps<typeof itemVariants>): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
938
+ declare const itemMediaVariants: (props?: ({
939
+ variant?: "image" | "default" | "icon" | null | undefined;
940
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
941
+ declare function ItemMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime.JSX.Element;
942
+ declare function ItemContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
943
+ declare function ItemTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
944
+ declare function ItemDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
945
+ declare function ItemActions({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
946
+ declare function ItemHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
947
+ declare function ItemFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
948
+
949
+ interface KanbanMoveEvent {
950
+ event: DragEndEvent;
951
+ activeContainer: string;
952
+ activeIndex: number;
953
+ overContainer: string;
954
+ overIndex: number;
955
+ }
956
+ interface KanbanRootProps<T> extends Omit<useRender.ComponentProps<"div">, "children"> {
957
+ value: Record<string, T[]>;
958
+ onValueChange: (value: Record<string, T[]>) => void;
959
+ getItemValue: (item: T) => string;
960
+ children: ReactNode;
961
+ onMove?: (event: KanbanMoveEvent) => void;
962
+ modifiers?: Modifiers;
963
+ }
964
+ declare function Kanban<T>({ value, onValueChange, getItemValue, children, className, render, onMove, modifiers, ...props }: KanbanRootProps<T>): react_jsx_runtime.JSX.Element;
965
+ type KanbanBoardProps = useRender.ComponentProps<"div">;
966
+ declare function KanbanBoard({ className, render, ...props }: KanbanBoardProps): react_jsx_runtime.JSX.Element;
967
+ interface KanbanColumnProps extends useRender.ComponentProps<"div"> {
968
+ value: string;
969
+ disabled?: boolean;
970
+ }
971
+ declare function KanbanColumn({ value, className, render, disabled, ...props }: KanbanColumnProps): react_jsx_runtime.JSX.Element;
972
+ interface KanbanColumnHandleProps extends useRender.ComponentProps<"div"> {
973
+ cursor?: boolean;
974
+ }
975
+ declare function KanbanColumnHandle({ className, render, cursor, ...props }: KanbanColumnHandleProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
976
+ interface KanbanItemProps extends useRender.ComponentProps<"div"> {
977
+ value: string;
978
+ disabled?: boolean;
979
+ }
980
+ declare function KanbanItem({ value, className, render, disabled, ...props }: KanbanItemProps): react_jsx_runtime.JSX.Element;
981
+ interface KanbanItemHandleProps extends useRender.ComponentProps<"div"> {
982
+ cursor?: boolean;
983
+ }
984
+ declare function KanbanItemHandle({ className, render, cursor, ...props }: KanbanItemHandleProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
985
+ interface KanbanColumnContentProps extends useRender.ComponentProps<"div"> {
986
+ value: string;
987
+ }
988
+ declare function KanbanColumnContent({ value, className, render, ...props }: KanbanColumnContentProps): react_jsx_runtime.JSX.Element;
989
+ interface KanbanOverlayProps extends Omit<React.ComponentProps<typeof DragOverlay>, "children"> {
990
+ children?: ReactNode | ((params: {
991
+ value: UniqueIdentifier;
992
+ variant: "column" | "item";
993
+ }) => ReactNode);
994
+ }
995
+ declare function KanbanOverlay({ children, className, ...props }: KanbanOverlayProps): React.ReactPortal | null;
996
+
997
+ declare function Kbd({ className, ...props }: React.ComponentProps<"kbd">): react_jsx_runtime.JSX.Element;
998
+ declare function KbdGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
999
+
1000
+ declare function GooglePlayLogo({ className }: {
1001
+ className?: string;
1002
+ }): react_jsx_runtime.JSX.Element;
1003
+ declare function MastercardLogo({ className }: {
1004
+ className?: string;
1005
+ }): react_jsx_runtime.JSX.Element;
1006
+ declare function PatientoryLogo({ className }: {
1007
+ className?: string;
1008
+ }): react_jsx_runtime.JSX.Element;
1009
+ declare function JiraLogo({ className }: {
1010
+ className?: string;
1011
+ }): react_jsx_runtime.JSX.Element;
1012
+ declare function ClusterhqLogo({ className }: {
1013
+ className?: string;
1014
+ }): react_jsx_runtime.JSX.Element;
1015
+ declare function GoogleWebdevLogo({ className }: {
1016
+ className?: string;
1017
+ }): react_jsx_runtime.JSX.Element;
1018
+ declare function InfernoLogo({ className }: {
1019
+ className?: string;
1020
+ }): react_jsx_runtime.JSX.Element;
1021
+ declare function BtcchinaLogo({ className }: {
1022
+ className?: string;
1023
+ }): react_jsx_runtime.JSX.Element;
1024
+ declare function IdealLogo({ className }: {
1025
+ className?: string;
1026
+ }): react_jsx_runtime.JSX.Element;
1027
+ declare function StripeLogo({ className }: {
1028
+ className?: string;
1029
+ }): react_jsx_runtime.JSX.Element;
1030
+ declare function PayPalLogo({ className }: {
1031
+ className?: string;
1032
+ }): react_jsx_runtime.JSX.Element;
1033
+ declare function ApplePayLogo({ className }: {
1034
+ className?: string;
1035
+ }): react_jsx_runtime.JSX.Element;
1036
+
1037
+ declare function Menubar({ className, ...props }: Menubar$1.Props): react_jsx_runtime.JSX.Element;
1038
+ declare function MenubarMenu({ ...props }: React.ComponentProps<typeof DropdownMenu>): react_jsx_runtime.JSX.Element;
1039
+ declare function MenubarGroup({ ...props }: React.ComponentProps<typeof DropdownMenuGroup>): react_jsx_runtime.JSX.Element;
1040
+ declare function MenubarPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPortal>): react_jsx_runtime.JSX.Element;
1041
+ declare function MenubarTrigger({ className, ...props }: React.ComponentProps<typeof DropdownMenuTrigger>): react_jsx_runtime.JSX.Element;
1042
+ declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime.JSX.Element;
1043
+ declare function MenubarItem({ className, inset, variant, ...props }: React.ComponentProps<typeof DropdownMenuItem>): react_jsx_runtime.JSX.Element;
1044
+ declare function MenubarCheckboxItem({ className, children, checked, inset, ...props }: Menu.CheckboxItem.Props & {
1045
+ inset?: boolean;
1046
+ }): react_jsx_runtime.JSX.Element;
1047
+ declare function MenubarRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenuRadioGroup>): react_jsx_runtime.JSX.Element;
1048
+ declare function MenubarRadioItem({ className, children, inset, ...props }: Menu.RadioItem.Props & {
1049
+ inset?: boolean;
1050
+ }): react_jsx_runtime.JSX.Element;
1051
+ declare function MenubarLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuLabel> & {
1052
+ inset?: boolean;
1053
+ }): react_jsx_runtime.JSX.Element;
1054
+ declare function MenubarSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenuSeparator>): react_jsx_runtime.JSX.Element;
1055
+ declare function MenubarShortcut({ className, ...props }: React.ComponentProps<typeof DropdownMenuShortcut>): react_jsx_runtime.JSX.Element;
1056
+ declare function MenubarSub({ ...props }: React.ComponentProps<typeof DropdownMenuSub>): react_jsx_runtime.JSX.Element;
1057
+ declare function MenubarSubTrigger({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuSubTrigger> & {
1058
+ inset?: boolean;
1059
+ }): react_jsx_runtime.JSX.Element;
1060
+ declare function MenubarSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenuSubContent>): react_jsx_runtime.JSX.Element;
1061
+
1062
+ type NativeSelectProps = Omit<React.ComponentProps<"select">, "size"> & {
1063
+ size?: "sm" | "default";
1064
+ };
1065
+ declare function NativeSelect({ className, size, ...props }: NativeSelectProps): react_jsx_runtime.JSX.Element;
1066
+ declare function NativeSelectOption({ ...props }: React.ComponentProps<"option">): react_jsx_runtime.JSX.Element;
1067
+ declare function NativeSelectOptGroup({ className, ...props }: React.ComponentProps<"optgroup">): react_jsx_runtime.JSX.Element;
1068
+
1069
+ declare function NavigationMenu({ align, className, children, ...props }: NavigationMenu$1.Root.Props & Pick<NavigationMenu$1.Positioner.Props, "align">): react_jsx_runtime.JSX.Element;
1070
+ declare function NavigationMenuList({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenu$1.List>): react_jsx_runtime.JSX.Element;
1071
+ declare function NavigationMenuItem({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenu$1.Item>): react_jsx_runtime.JSX.Element;
1072
+ declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
1073
+ declare function NavigationMenuTrigger({ className, children, ...props }: NavigationMenu$1.Trigger.Props): react_jsx_runtime.JSX.Element;
1074
+ declare function NavigationMenuContent({ className, ...props }: NavigationMenu$1.Content.Props): react_jsx_runtime.JSX.Element;
1075
+ declare function NavigationMenuPositioner({ className, side, sideOffset, align, alignOffset, ...props }: NavigationMenu$1.Positioner.Props): react_jsx_runtime.JSX.Element;
1076
+ declare function NavigationMenuLink({ className, ...props }: NavigationMenu$1.Link.Props): react_jsx_runtime.JSX.Element;
1077
+ declare function NavigationMenuIndicator({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenu$1.Icon>): react_jsx_runtime.JSX.Element;
1078
+
1079
+ declare const numberFieldGroupVariants: (props?: ({
1080
+ size?: "default" | "sm" | "lg" | null | undefined;
1081
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1082
+ declare const numberFieldButtonVariants: (props?: ({
1083
+ size?: "default" | "sm" | "lg" | null | undefined;
1084
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1085
+ declare const numberFieldInputVariants: (props?: ({
1086
+ size?: "default" | "sm" | "lg" | null | undefined;
1087
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1088
+ declare function NumberField({ id, className, size, ...props }: NumberField$1.Root.Props & VariantProps<typeof numberFieldGroupVariants>): react_jsx_runtime.JSX.Element;
1089
+ declare function NumberFieldGroup({ className, size: sizeProp, ...props }: NumberField$1.Group.Props & Partial<VariantProps<typeof numberFieldGroupVariants>>): react_jsx_runtime.JSX.Element;
1090
+ declare function NumberFieldDecrement({ className, size: sizeProp, children, ...props }: NumberField$1.Decrement.Props & Partial<VariantProps<typeof numberFieldButtonVariants>> & {
1091
+ children?: React.ReactNode;
1092
+ }): react_jsx_runtime.JSX.Element;
1093
+ declare function NumberFieldIncrement({ className, size: sizeProp, children, ...props }: NumberField$1.Increment.Props & Partial<VariantProps<typeof numberFieldButtonVariants>> & {
1094
+ children?: ReactNode;
1095
+ }): react_jsx_runtime.JSX.Element;
1096
+ declare function NumberFieldInput({ className, size: sizeProp, ...props }: NumberField$1.Input.Props & Partial<VariantProps<typeof numberFieldInputVariants>>): react_jsx_runtime.JSX.Element;
1097
+ declare function NumberFieldScrubArea({ className, label, ...props }: NumberField$1.ScrubArea.Props & {
1098
+ label: string;
1099
+ }): react_jsx_runtime.JSX.Element;
1100
+
1101
+ declare function Pagination({ className, ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
1102
+ declare function PaginationContent({ className, ...props }: React.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
1103
+ declare function PaginationItem({ ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
1104
+ type PaginationLinkProps = {
1105
+ isActive?: boolean;
1106
+ } & Pick<React.ComponentProps<typeof Button>, "size"> & React.ComponentProps<"a">;
1107
+ declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
1108
+ declare function PaginationPrevious({ className, text, ...props }: React.ComponentProps<typeof PaginationLink> & {
1109
+ text?: string;
1110
+ }): react_jsx_runtime.JSX.Element;
1111
+ declare function PaginationNext({ className, text, ...props }: React.ComponentProps<typeof PaginationLink> & {
1112
+ text?: string;
1113
+ }): react_jsx_runtime.JSX.Element;
1114
+ declare function PaginationEllipsis({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
1115
+
1116
+ type PhoneInputSize = "sm" | "default" | "lg";
1117
+ type PhoneInputProps = Omit<React.ComponentProps<"input">, "onChange" | "value" | "ref"> & Omit<BasePhoneInput.Props<typeof BasePhoneInput.default>, "onChange" | "variant" | "popupClassName" | "scrollAreaClassName"> & {
1118
+ onChange?: (value: BasePhoneInput.Value) => void;
1119
+ variant?: PhoneInputSize;
1120
+ popupClassName?: string;
1121
+ scrollAreaClassName?: string;
1122
+ };
1123
+ declare function PhoneInput({ className, variant, popupClassName, scrollAreaClassName, onChange, value, ...props }: PhoneInputProps): react_jsx_runtime.JSX.Element;
1124
+
1125
+ declare function Popover({ ...props }: Popover$1.Root.Props): react_jsx_runtime.JSX.Element;
1126
+ declare function PopoverTrigger({ ...props }: Popover$1.Trigger.Props): react_jsx_runtime.JSX.Element;
1127
+ declare function PopoverContent({ className, align, alignOffset, side, sideOffset, ...props }: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
1128
+ declare function PopoverHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1129
+ declare function PopoverTitle({ className, ...props }: Popover$1.Title.Props): react_jsx_runtime.JSX.Element;
1130
+ declare function PopoverDescription({ className, ...props }: Popover$1.Description.Props): react_jsx_runtime.JSX.Element;
1131
+
1132
+ declare function Progress({ className, children, value, ...props }: Progress$1.Root.Props): react_jsx_runtime.JSX.Element;
1133
+ declare function ProgressTrack({ className, ...props }: Progress$1.Track.Props): react_jsx_runtime.JSX.Element;
1134
+ declare function ProgressIndicator({ className, ...props }: Progress$1.Indicator.Props): react_jsx_runtime.JSX.Element;
1135
+ declare function ProgressLabel({ className, ...props }: Progress$1.Label.Props): react_jsx_runtime.JSX.Element;
1136
+ declare function ProgressValue({ className, ...props }: Progress$1.Value.Props): react_jsx_runtime.JSX.Element;
1137
+
1138
+ declare function RadioGroup({ className, ...props }: RadioGroup$1.Props): react_jsx_runtime.JSX.Element;
1139
+ declare function RadioGroupItem({ className, ...props }: Radio.Root.Props): react_jsx_runtime.JSX.Element;
1140
+
1141
+ declare const ratingVariants: (props?: ({
1142
+ size?: "default" | "sm" | "lg" | null | undefined;
1143
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1144
+ declare function Rating({ rating, maxRating, size, className, starClassName, showValue, editable, onRatingChange, ...props }: React.ComponentProps<"div"> & VariantProps<typeof ratingVariants> & {
1145
+ /**
1146
+ * Current rating value (supports decimal values for partial stars)
1147
+ */
1148
+ rating: number;
1149
+ /**
1150
+ * Maximum rating value (number of stars to show)
1151
+ */
1152
+ maxRating?: number;
1153
+ /**
1154
+ * Whether to show the numeric rating value
1155
+ */
1156
+ showValue?: boolean;
1157
+ /**
1158
+ * Class name for the value span
1159
+ */
1160
+ starClassName?: string;
1161
+ /**
1162
+ * Whether the rating is editable (clickable)
1163
+ */
1164
+ editable?: boolean;
1165
+ /**
1166
+ * Callback function called when rating changes
1167
+ */
1168
+ onRatingChange?: (rating: number) => void;
1169
+ }): react_jsx_runtime.JSX.Element;
1170
+
1171
+ declare function ResizablePanelGroup({ className, ...props }: ResizablePrimitive.GroupProps): react_jsx_runtime.JSX.Element;
1172
+ declare function ResizablePanel({ ...props }: ResizablePrimitive.PanelProps): react_jsx_runtime.JSX.Element;
1173
+ declare function ResizableHandle({ withHandle, className, ...props }: ResizablePrimitive.SeparatorProps & {
1174
+ withHandle?: boolean;
1175
+ }): react_jsx_runtime.JSX.Element;
1176
+
1177
+ declare function ScrollArea({ className, children, ...props }: ScrollArea$1.Root.Props): react_jsx_runtime.JSX.Element;
1178
+ declare function ScrollBar({ className, orientation, ...props }: ScrollArea$1.Scrollbar.Props): react_jsx_runtime.JSX.Element;
1179
+
1180
+ type ScrollspyProps = {
1181
+ children: ReactNode;
1182
+ targetRef?: RefObject<HTMLElement | HTMLDivElement | Document | null | undefined>;
1183
+ onUpdate?: (id: string) => void;
1184
+ offset?: number;
1185
+ smooth?: boolean;
1186
+ className?: string;
1187
+ dataAttribute?: string;
1188
+ history?: boolean;
1189
+ throttleTime?: number;
1190
+ };
1191
+ declare function Scrollspy({ children, targetRef, onUpdate, className, offset, smooth, dataAttribute, history, }: ScrollspyProps): react_jsx_runtime.JSX.Element;
1192
+
1193
+ declare const Select: typeof Select$1.Root;
1194
+ declare function SelectGroup({ className, ...props }: Select$1.Group.Props): react_jsx_runtime.JSX.Element;
1195
+ declare function SelectValue({ className, ...props }: Select$1.Value.Props): react_jsx_runtime.JSX.Element;
1196
+ declare function SelectTrigger({ className, size, children, ...props }: Select$1.Trigger.Props & {
1197
+ size?: "sm" | "default";
1198
+ }): react_jsx_runtime.JSX.Element;
1199
+ declare function SelectContent({ className, children, side, sideOffset, align, alignOffset, alignItemWithTrigger, ...props }: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset" | "alignItemWithTrigger">): react_jsx_runtime.JSX.Element;
1200
+ declare function SelectLabel({ className, ...props }: Select$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
1201
+ declare function SelectItem({ className, children, ...props }: Select$1.Item.Props): react_jsx_runtime.JSX.Element;
1202
+ declare function SelectSeparator({ className, ...props }: Select$1.Separator.Props): react_jsx_runtime.JSX.Element;
1203
+ declare function SelectScrollUpButton({ className, ...props }: React.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime.JSX.Element;
1204
+ declare function SelectScrollDownButton({ className, ...props }: React.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime.JSX.Element;
1205
+
1206
+ declare function Sheet({ ...props }: Dialog$1.Root.Props): react_jsx_runtime.JSX.Element;
1207
+ declare function SheetTrigger({ ...props }: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
1208
+ declare function SheetClose({ ...props }: Dialog$1.Close.Props): react_jsx_runtime.JSX.Element;
1209
+ declare function SheetContent({ className, children, side, showCloseButton, ...props }: Dialog$1.Popup.Props & {
1210
+ side?: "top" | "right" | "bottom" | "left";
1211
+ showCloseButton?: boolean;
1212
+ }): react_jsx_runtime.JSX.Element;
1213
+ declare function SheetHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1214
+ declare function SheetFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1215
+ declare function SheetTitle({ className, ...props }: Dialog$1.Title.Props): react_jsx_runtime.JSX.Element;
1216
+ declare function SheetDescription({ className, ...props }: Dialog$1.Description.Props): react_jsx_runtime.JSX.Element;
1217
+
1218
+ declare function TooltipProvider({ delay, ...props }: Tooltip$1.Provider.Props): react_jsx_runtime.JSX.Element;
1219
+ declare function Tooltip({ ...props }: Tooltip$1.Root.Props): react_jsx_runtime.JSX.Element;
1220
+ declare function TooltipTrigger({ ...props }: Tooltip$1.Trigger.Props): react_jsx_runtime.JSX.Element;
1221
+ declare function TooltipContent({ className, side, sideOffset, align, alignOffset, children, ...props }: Tooltip$1.Popup.Props & Pick<Tooltip$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime.JSX.Element;
1222
+
1223
+ type SidebarContextProps = {
1224
+ state: "expanded" | "collapsed";
1225
+ open: boolean;
1226
+ setOpen: (open: boolean) => void;
1227
+ openMobile: boolean;
1228
+ setOpenMobile: (open: boolean) => void;
1229
+ isMobile: boolean;
1230
+ toggleSidebar: () => void;
1231
+ };
1232
+ declare function useSidebar(): SidebarContextProps;
1233
+ declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React.ComponentProps<"div"> & {
1234
+ defaultOpen?: boolean;
1235
+ open?: boolean;
1236
+ onOpenChange?: (open: boolean) => void;
1237
+ }): react_jsx_runtime.JSX.Element;
1238
+ declare function Sidebar({ side, variant, collapsible, className, children, dir, ...props }: React.ComponentProps<"div"> & {
1239
+ side?: "left" | "right";
1240
+ variant?: "sidebar" | "floating" | "inset";
1241
+ collapsible?: "offcanvas" | "icon" | "none";
1242
+ }): react_jsx_runtime.JSX.Element;
1243
+ declare function SidebarTrigger({ className, onClick, ...props }: React.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
1244
+ declare function SidebarRail({ className, ...props }: React.ComponentProps<"button">): react_jsx_runtime.JSX.Element;
1245
+ declare function SidebarInset({ className, ...props }: React.ComponentProps<"main">): react_jsx_runtime.JSX.Element;
1246
+ declare function SidebarInput({ className, ...props }: React.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
1247
+ declare function SidebarHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1248
+ declare function SidebarFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1249
+ declare function SidebarSeparator({ className, ...props }: React.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
1250
+ declare function SidebarContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1251
+ declare function SidebarGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1252
+ declare function SidebarGroupLabel({ className, render, ...props }: useRender.ComponentProps<"div"> & React.ComponentProps<"div">): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1253
+ declare function SidebarGroupAction({ className, render, ...props }: useRender.ComponentProps<"button"> & React.ComponentProps<"button">): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1254
+ declare function SidebarGroupContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1255
+ declare function SidebarMenu({ className, ...props }: React.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
1256
+ declare function SidebarMenuItem({ className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
1257
+ declare const sidebarMenuButtonVariants: (props?: ({
1258
+ variant?: "default" | "outline" | null | undefined;
1259
+ size?: "default" | "sm" | "lg" | null | undefined;
1260
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1261
+ declare function SidebarMenuButton({ render, isActive, variant, size, tooltip, className, ...props }: useRender.ComponentProps<"button"> & React.ComponentProps<"button"> & {
1262
+ isActive?: boolean;
1263
+ tooltip?: string | React.ComponentProps<typeof TooltipContent>;
1264
+ } & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime.JSX.Element;
1265
+ declare function SidebarMenuAction({ className, render, showOnHover, ...props }: useRender.ComponentProps<"button"> & React.ComponentProps<"button"> & {
1266
+ showOnHover?: boolean;
1267
+ }): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1268
+ declare function SidebarMenuBadge({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1269
+ declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React.ComponentProps<"div"> & {
1270
+ showIcon?: boolean;
1271
+ }): react_jsx_runtime.JSX.Element;
1272
+ declare function SidebarMenuSub({ className, ...props }: React.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
1273
+ declare function SidebarMenuSubItem({ className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
1274
+ declare function SidebarMenuSubButton({ render, size, isActive, className, ...props }: useRender.ComponentProps<"a"> & React.ComponentProps<"a"> & {
1275
+ size?: "sm" | "md";
1276
+ isActive?: boolean;
1277
+ }): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1278
+
1279
+ declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1280
+
1281
+ declare function Slider({ className, defaultValue, value, min, max, ...props }: Slider$1.Root.Props): react_jsx_runtime.JSX.Element;
1282
+
1283
+ declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
1284
+
1285
+ interface SortableRootProps<T> extends Omit<useRender.ComponentProps<"div">, "onDragStart" | "onDragEnd" | "children"> {
1286
+ value: T[];
1287
+ onValueChange: (value: T[]) => void;
1288
+ getItemValue: (item: T) => string;
1289
+ children: ReactNode;
1290
+ onMove?: (event: {
1291
+ event: DragEndEvent;
1292
+ activeIndex: number;
1293
+ overIndex: number;
1294
+ }) => void;
1295
+ strategy?: "horizontal" | "vertical" | "grid";
1296
+ onDragStart?: (event: DragStartEvent) => void;
1297
+ onDragEnd?: (event: DragEndEvent) => void;
1298
+ modifiers?: Modifiers;
1299
+ }
1300
+ declare function Sortable<T>({ value, onValueChange, getItemValue, className, render, onMove, strategy, onDragStart, onDragEnd, modifiers, children, ...props }: SortableRootProps<T>): react_jsx_runtime.JSX.Element;
1301
+ interface SortableItemProps extends useRender.ComponentProps<"div"> {
1302
+ value: string;
1303
+ disabled?: boolean;
1304
+ }
1305
+ declare function SortableItem({ value, className, render, disabled, ...props }: SortableItemProps): react_jsx_runtime.JSX.Element;
1306
+ interface SortableItemHandleProps extends useRender.ComponentProps<"div"> {
1307
+ cursor?: boolean;
1308
+ }
1309
+ declare function SortableItemHandle({ className, render, cursor, ...props }: SortableItemHandleProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1310
+ interface SortableOverlayProps extends Omit<React.ComponentProps<typeof DragOverlay>, "children"> {
1311
+ children?: ReactNode | ((params: {
1312
+ value: UniqueIdentifier;
1313
+ }) => ReactNode);
1314
+ }
1315
+ declare function SortableOverlay({ children, className, ...props }: SortableOverlayProps): React.ReactPortal | null;
1316
+
1317
+ declare function Spinner({ className, ...props }: React.ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
1318
+
1319
+ type StepperOrientation = "horizontal" | "vertical";
1320
+ type StepState = "active" | "completed" | "inactive" | "loading";
1321
+ type StepIndicators = {
1322
+ active?: React.ReactNode;
1323
+ completed?: React.ReactNode;
1324
+ inactive?: React.ReactNode;
1325
+ loading?: React.ReactNode;
1326
+ };
1327
+ interface StepperContextValue {
1328
+ activeStep: number;
1329
+ setActiveStep: (step: number) => void;
1330
+ stepsCount: number;
1331
+ orientation: StepperOrientation;
1332
+ registerTrigger: (node: HTMLButtonElement | null) => void;
1333
+ triggerNodes: HTMLButtonElement[];
1334
+ focusNext: (currentIdx: number) => void;
1335
+ focusPrev: (currentIdx: number) => void;
1336
+ focusFirst: () => void;
1337
+ focusLast: () => void;
1338
+ indicators: StepIndicators;
1339
+ }
1340
+ interface StepItemContextValue {
1341
+ step: number;
1342
+ state: StepState;
1343
+ isDisabled: boolean;
1344
+ isLoading: boolean;
1345
+ }
1346
+ declare function useStepper(): StepperContextValue;
1347
+ declare function useStepItem(): StepItemContextValue;
1348
+ interface StepperProps extends HTMLAttributes<HTMLDivElement> {
1349
+ defaultValue?: number;
1350
+ value?: number;
1351
+ onValueChange?: (value: number) => void;
1352
+ orientation?: StepperOrientation;
1353
+ indicators?: StepIndicators;
1354
+ }
1355
+ declare function Stepper({ defaultValue, value, onValueChange, orientation, className, children, indicators, ...props }: StepperProps): react_jsx_runtime.JSX.Element;
1356
+ interface StepperItemProps extends React.HTMLAttributes<HTMLDivElement> {
1357
+ step: number;
1358
+ completed?: boolean;
1359
+ disabled?: boolean;
1360
+ loading?: boolean;
1361
+ }
1362
+ declare function StepperItem({ step, completed, disabled, loading, className, children, ...props }: StepperItemProps): react_jsx_runtime.JSX.Element;
1363
+ interface StepperTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
1364
+ asChild?: boolean;
1365
+ }
1366
+ declare function StepperTrigger({ asChild, className, children, tabIndex, ...props }: StepperTriggerProps): react_jsx_runtime.JSX.Element;
1367
+ declare function StepperIndicator({ children, className }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1368
+ declare function StepperSeparator({ className }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1369
+ declare function StepperTitle({ children, className }: React.ComponentProps<"h3">): react_jsx_runtime.JSX.Element;
1370
+ declare function StepperDescription({ children, className }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1371
+ declare function StepperNav({ children, className }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
1372
+ declare function StepperPanel({ children, className }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1373
+ interface StepperContentProps extends React.ComponentProps<"div"> {
1374
+ value: number;
1375
+ forceMount?: boolean;
1376
+ }
1377
+ declare function StepperContent({ value, forceMount, children, className }: StepperContentProps): react_jsx_runtime.JSX.Element | null;
1378
+
1379
+ declare function Switch({ className, size, ...props }: Switch$1.Root.Props & {
1380
+ size?: "sm" | "default";
1381
+ }): react_jsx_runtime.JSX.Element;
1382
+
1383
+ declare function Table({ className, ...props }: React.ComponentProps<"table">): react_jsx_runtime.JSX.Element;
1384
+ declare function TableHeader({ className, ...props }: React.ComponentProps<"thead">): react_jsx_runtime.JSX.Element;
1385
+ declare function TableBody({ className, ...props }: React.ComponentProps<"tbody">): react_jsx_runtime.JSX.Element;
1386
+ declare function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">): react_jsx_runtime.JSX.Element;
1387
+ declare function TableRow({ className, ...props }: React.ComponentProps<"tr">): react_jsx_runtime.JSX.Element;
1388
+ declare function TableHead({ className, ...props }: React.ComponentProps<"th">): react_jsx_runtime.JSX.Element;
1389
+ declare function TableCell({ className, ...props }: React.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
1390
+ declare function TableCaption({ className, ...props }: React.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
1391
+
1392
+ declare function Tabs({ className, orientation, ...props }: Tabs$1.Root.Props): react_jsx_runtime.JSX.Element;
1393
+ declare const tabsListVariants: (props?: ({
1394
+ variant?: "line" | "default" | null | undefined;
1395
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1396
+ declare function TabsList({ className, variant, ...props }: Tabs$1.List.Props & VariantProps<typeof tabsListVariants>): react_jsx_runtime.JSX.Element;
1397
+ declare function TabsTrigger({ className, ...props }: Tabs$1.Tab.Props): react_jsx_runtime.JSX.Element;
1398
+ declare function TabsContent({ className, ...props }: Tabs$1.Panel.Props): react_jsx_runtime.JSX.Element;
1399
+
1400
+ declare function Textarea({ className, ...props }: React.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
1401
+
1402
+ interface TimelineProps extends useRender.ComponentProps<"div"> {
1403
+ defaultValue?: number;
1404
+ value?: number;
1405
+ onValueChange?: (value: number) => void;
1406
+ orientation?: "horizontal" | "vertical";
1407
+ }
1408
+ declare function Timeline({ defaultValue, value, onValueChange, orientation, className, render, children, ...props }: TimelineProps): react_jsx_runtime.JSX.Element;
1409
+ declare function TimelineContent({ className, render, children, ...props }: useRender.ComponentProps<"div">): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1410
+ type TimelineDateProps = useRender.ComponentProps<"time">;
1411
+ declare function TimelineDate({ className, render, children, ...props }: TimelineDateProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1412
+ declare function TimelineHeader({ className, render, children, ...props }: useRender.ComponentProps<"div">): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1413
+ type TimelineIndicatorProps = useRender.ComponentProps<"div">;
1414
+ declare function TimelineIndicator({ className, children, render, ...props }: TimelineIndicatorProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1415
+ interface TimelineItemProps extends useRender.ComponentProps<"div"> {
1416
+ step: number;
1417
+ }
1418
+ declare function TimelineItem({ step, className, render, children, ...props }: TimelineItemProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1419
+ declare function TimelineSeparator({ className, render, children, ...props }: useRender.ComponentProps<"div">): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1420
+ declare function TimelineTitle({ className, render, children, ...props }: useRender.ComponentProps<"h3">): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
1421
+
1422
+ declare const toggleVariants: (props?: ({
1423
+ variant?: "default" | "outline" | null | undefined;
1424
+ size?: "default" | "sm" | "lg" | null | undefined;
1425
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1426
+ declare function Toggle({ className, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
1427
+
1428
+ declare function ToggleGroup({ className, variant, size, spacing, orientation, children, ...props }: ToggleGroup$1.Props & VariantProps<typeof toggleVariants> & {
1429
+ spacing?: number;
1430
+ orientation?: "horizontal" | "vertical";
1431
+ }): react_jsx_runtime.JSX.Element;
1432
+ declare function ToggleGroupItem({ className, children, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
1433
+
1434
+ type ToggleIconType = "chevron" | "plus-minus";
1435
+ interface TreeProps extends React.HTMLAttributes<HTMLDivElement> {
1436
+ indent?: number;
1437
+ tree?: any;
1438
+ toggleIconType?: ToggleIconType;
1439
+ }
1440
+ declare function Tree({ indent, tree, className, toggleIconType, ...props }: TreeProps): react_jsx_runtime.JSX.Element;
1441
+ interface TreeItemProps<T = any> extends Omit<useRender.ComponentProps<"button">, "indent"> {
1442
+ item: ItemInstance<T>;
1443
+ indent?: number;
1444
+ }
1445
+ declare function TreeItem<T = any>({ item, className, render, children, ...props }: TreeItemProps<T>): react_jsx_runtime.JSX.Element;
1446
+ interface TreeItemLabelProps<T = any> extends React.HTMLAttributes<HTMLSpanElement> {
1447
+ item?: ItemInstance<T>;
1448
+ }
1449
+ declare function TreeItemLabel<T = any>({ item: propItem, children, className, ...props }: TreeItemLabelProps<T>): react_jsx_runtime.JSX.Element | null;
1450
+ declare function TreeDragLine({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element | null;
1451
+
1452
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApplePayLogo, AspectRatio, Autocomplete, AutocompleteArrow, AutocompleteBackdrop, AutocompleteClear, AutocompleteCollection, AutocompleteContent, type AutocompleteContentProps, AutocompleteEmpty, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteInput, AutocompleteItem, AutocompleteList, AutocompletePortal, AutocompletePositioner, AutocompleteRow, AutocompleteSeparator, AutocompleteStatus, AutocompleteTrigger, AutocompleteValue, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BtcchinaLogo, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, 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, ClusterhqLogo, Collapsible, CollapsibleContent, 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, type CustomRendererProps, DEFAULT_DATE_SELECTOR_I18N, DEFAULT_I18N, DEFAULT_OPERATORS, DataGrid, type DataGridApiFetchParams, type DataGridApiResponse, DataGridColumnFilter, type DataGridColumnFilterProps, DataGridColumnHeader, type DataGridColumnHeaderProps, DataGridColumnVisibility, DataGridContainer, type DataGridContextProps, DataGridPagination, type DataGridPaginationProps, type DataGridProps, DataGridProvider, type DataGridRequestParams, DataGridTable, DataGridTableBase, DataGridTableBody, DataGridTableBodyRow, DataGridTableBodyRowCell, DataGridTableBodyRowExpandded, DataGridTableBodyRowSkeleton, DataGridTableBodyRowSkeletonCell, DataGridTableDnd, DataGridTableDndRowHandle, DataGridTableDndRows, DataGridTableEmpty, DataGridTableHead, DataGridTableHeadRow, DataGridTableHeadRowCell, DataGridTableHeadRowCellResize, DataGridTableLoader, DataGridTableRowSelect, DataGridTableRowSelectAll, DataGridTableRowSpacer, DateSelector, type DateSelectorContextValue, type DateSelectorFilterType, type DateSelectorI18nConfig, type DateSelectorPeriodType, type DateSelectorProps, type DateSelectorValue, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, 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, type Filter, type FilterFieldConfig, type FilterFieldGroup, type FilterFieldsConfig, type FilterGroup, type FilterI18nConfig, type FilterOperator, type FilterOption, Filters, FiltersContent, Frame, FrameDescription, FrameFooter, FrameHeader, FramePanel, FrameTitle, GooglePlayLogo, GoogleWebdevLogo, HoverCard, HoverCardContent, HoverCardTrigger, IdealLogo, InfernoLogo, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, JiraLogo, Kanban, KanbanBoard, type KanbanBoardProps, KanbanColumn, KanbanColumnContent, type KanbanColumnContentProps, KanbanColumnHandle, type KanbanColumnHandleProps, type KanbanColumnProps, KanbanItem, KanbanItemHandle, type KanbanItemHandleProps, type KanbanItemProps, type KanbanMoveEvent, KanbanOverlay, type KanbanOverlayProps, type KanbanRootProps, Kbd, KbdGroup, Label, MastercardLogo, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NumberField, NumberFieldDecrement, NumberFieldGroup, NumberFieldIncrement, NumberFieldInput, NumberFieldScrubArea, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PatientoryLogo, PayPalLogo, PhoneInput, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, RadioGroup, RadioGroupItem, Rating, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Scrollspy, 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, Sortable, SortableItem, SortableItemHandle, type SortableItemHandleProps, type SortableItemProps, SortableOverlay, type SortableOverlayProps, type SortableRootProps, Spinner, Stepper, StepperContent, type StepperContentProps, StepperDescription, StepperIndicator, StepperItem, type StepperItemProps, StepperNav, StepperPanel, type StepperProps, StepperSeparator, StepperTitle, StepperTrigger, type StepperTriggerProps, StripeLogo, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Timeline, TimelineContent, TimelineDate, TimelineHeader, TimelineIndicator, TimelineItem, TimelineSeparator, TimelineTitle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Tree, TreeDragLine, TreeItem, TreeItemLabel, badgeVariants, buttonGroupVariants, buttonVariants, createFilter, createFilterGroup, formatDateValue, frameVariants, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, useCarousel, useComboboxAnchor, useDataGrid, useDateSelector, useDateSelectorContext, useSidebar, useStepItem, useStepper };