@placesapp/appy-ui 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +242 -0
- package/dist/index.d.ts +784 -0
- package/dist/index.js +6105 -0
- package/dist/styles/base.css +135 -0
- package/dist/styles/index.css +13 -0
- package/dist/styles/ios.css +65 -0
- package/dist/styles/material.css +66 -0
- package/dist/styles/overrides.css +32 -0
- package/package.json +90 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,784 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
|
+
import { ReactNode, ComponentType } from 'react';
|
|
4
|
+
import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
|
|
5
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
6
|
+
import { VariantProps } from 'class-variance-authority';
|
|
7
|
+
import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
|
|
8
|
+
import { Button as Button$1 } from '@base-ui/react/button';
|
|
9
|
+
import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
|
|
10
|
+
import { useRender } from '@base-ui/react/use-render';
|
|
11
|
+
import { Separator as Separator$1 } from '@base-ui/react/separator';
|
|
12
|
+
import { DayPicker, DayButton } from 'react-day-picker';
|
|
13
|
+
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
14
|
+
import * as RechartsPrimitive from 'recharts';
|
|
15
|
+
import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
|
|
16
|
+
import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
|
|
17
|
+
import { Combobox as Combobox$1 } from '@base-ui/react';
|
|
18
|
+
import { Command as Command$1 } from 'cmdk';
|
|
19
|
+
import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
|
|
20
|
+
import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
|
|
21
|
+
import { Drawer as Drawer$1 } from 'vaul';
|
|
22
|
+
import { Menu } from '@base-ui/react/menu';
|
|
23
|
+
import { PreviewCard } from '@base-ui/react/preview-card';
|
|
24
|
+
import { OTPInput } from 'input-otp';
|
|
25
|
+
import { Menubar as Menubar$1 } from '@base-ui/react/menubar';
|
|
26
|
+
import { NavigationMenu as NavigationMenu$1 } from '@base-ui/react/navigation-menu';
|
|
27
|
+
import { Popover as Popover$1 } from '@base-ui/react/popover';
|
|
28
|
+
import { Progress as Progress$1 } from '@base-ui/react/progress';
|
|
29
|
+
import { Radio } from '@base-ui/react/radio';
|
|
30
|
+
import { RadioGroup as RadioGroup$1 } from '@base-ui/react/radio-group';
|
|
31
|
+
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
32
|
+
import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
|
|
33
|
+
import { Select as Select$1 } from '@base-ui/react/select';
|
|
34
|
+
import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
|
|
35
|
+
import { Slider as Slider$1 } from '@base-ui/react/slider';
|
|
36
|
+
import { ToasterProps } from 'sonner';
|
|
37
|
+
import { Switch as Switch$1 } from '@base-ui/react/switch';
|
|
38
|
+
import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
|
|
39
|
+
import { Toggle as Toggle$1 } from '@base-ui/react/toggle';
|
|
40
|
+
import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
|
|
41
|
+
import { ClassValue } from 'clsx';
|
|
42
|
+
|
|
43
|
+
declare global {
|
|
44
|
+
interface Navigator {
|
|
45
|
+
userAgentData?: {
|
|
46
|
+
platform: string;
|
|
47
|
+
mobile: boolean;
|
|
48
|
+
brands: Array<{
|
|
49
|
+
brand: string;
|
|
50
|
+
version: string;
|
|
51
|
+
}>;
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
type Platform = 'ios' | 'android' | 'desktop';
|
|
56
|
+
type FormFactor = 'phone' | 'tablet' | 'desktop';
|
|
57
|
+
interface DeviceContext {
|
|
58
|
+
platform: Platform;
|
|
59
|
+
formFactor: FormFactor;
|
|
60
|
+
isWebView: boolean;
|
|
61
|
+
width: number;
|
|
62
|
+
isLandscape: boolean;
|
|
63
|
+
isKeyboardOpen: boolean;
|
|
64
|
+
}
|
|
65
|
+
declare function useDeviceContext(): DeviceContext;
|
|
66
|
+
|
|
67
|
+
type DesignSystem = 'default' | 'ios' | 'material';
|
|
68
|
+
interface DesignSystemContextValue {
|
|
69
|
+
platform: Platform;
|
|
70
|
+
formFactor: FormFactor;
|
|
71
|
+
designSystem: DesignSystem;
|
|
72
|
+
isAuto: boolean;
|
|
73
|
+
setDesignSystem: (system: DesignSystem | 'auto') => void;
|
|
74
|
+
}
|
|
75
|
+
interface DesignSystemProviderProps {
|
|
76
|
+
children: ReactNode;
|
|
77
|
+
storageKey?: string;
|
|
78
|
+
defaultDesignSystem?: DesignSystem | 'auto';
|
|
79
|
+
disableTransitionOnChange?: boolean;
|
|
80
|
+
}
|
|
81
|
+
declare function DesignSystemProvider({ children, storageKey, defaultDesignSystem, disableTransitionOnChange, }: DesignSystemProviderProps): react_jsx_runtime.JSX.Element;
|
|
82
|
+
declare function useDesignSystem(): DesignSystemContextValue;
|
|
83
|
+
|
|
84
|
+
declare function Accordion({ className, ...props }: Accordion$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
85
|
+
declare function AccordionItem({ className, ...props }: Accordion$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
86
|
+
declare function AccordionTrigger({ className, children, ...props }: Accordion$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
87
|
+
declare function AccordionContent({ className, children, ...props }: Accordion$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
88
|
+
|
|
89
|
+
declare const alertVariants: (props?: ({
|
|
90
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
91
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
92
|
+
declare function Alert({ className, variant, ...props }: React$1.ComponentProps<'div'> & VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare function AlertTitle({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
94
|
+
declare function AlertDescription({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
95
|
+
declare function AlertAction({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
96
|
+
|
|
97
|
+
declare const buttonVariants: (props?: ({
|
|
98
|
+
variant?: "default" | "destructive" | "outline" | "ghost" | null | undefined;
|
|
99
|
+
size?: "default" | "sm" | "icon" | "icon-sm" | null | undefined;
|
|
100
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
101
|
+
declare function Button({ className, variant, size, ...props }: Button$1.Props & VariantProps<typeof buttonVariants>): react_jsx_runtime.JSX.Element;
|
|
102
|
+
|
|
103
|
+
declare function AlertDialog({ ...props }: AlertDialog$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
104
|
+
declare function AlertDialogTrigger({ ...props }: AlertDialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
105
|
+
declare function AlertDialogPortal({ ...props }: AlertDialog$1.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
106
|
+
declare function AlertDialogOverlay({ className, ...props }: AlertDialog$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
|
|
107
|
+
declare function AlertDialogContent({ className, size, ...props }: AlertDialog$1.Popup.Props & {
|
|
108
|
+
size?: 'default' | 'sm';
|
|
109
|
+
}): react_jsx_runtime.JSX.Element;
|
|
110
|
+
declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
111
|
+
declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
112
|
+
declare function AlertDialogMedia({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
113
|
+
declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
114
|
+
declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
115
|
+
declare function AlertDialogAction({ className, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
116
|
+
declare function AlertDialogCancel({ className, variant, size, ...props }: AlertDialog$1.Close.Props & Pick<React$1.ComponentProps<typeof Button>, 'variant' | 'size'>): react_jsx_runtime.JSX.Element;
|
|
117
|
+
|
|
118
|
+
declare function AspectRatio({ ratio, className, ...props }: React.ComponentProps<'div'> & {
|
|
119
|
+
ratio: number;
|
|
120
|
+
}): react_jsx_runtime.JSX.Element;
|
|
121
|
+
|
|
122
|
+
declare function Avatar({ className, size, ...props }: Avatar$1.Root.Props & {
|
|
123
|
+
size?: 'default' | 'sm' | 'lg';
|
|
124
|
+
}): react_jsx_runtime.JSX.Element;
|
|
125
|
+
declare function AvatarImage({ className, ...props }: Avatar$1.Image.Props): react_jsx_runtime.JSX.Element;
|
|
126
|
+
declare function AvatarFallback({ className, ...props }: Avatar$1.Fallback.Props): react_jsx_runtime.JSX.Element;
|
|
127
|
+
declare function AvatarBadge({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
128
|
+
declare function AvatarGroup({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
129
|
+
declare function AvatarGroupCount({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
130
|
+
|
|
131
|
+
declare const badgeVariants: (props?: ({
|
|
132
|
+
variant?: "default" | "link" | "destructive" | "outline" | "ghost" | "secondary" | null | undefined;
|
|
133
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
134
|
+
declare function Badge({ className, variant, render, ...props }: useRender.ComponentProps<'span'> & VariantProps<typeof badgeVariants>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
135
|
+
|
|
136
|
+
declare function Breadcrumb({ className, ...props }: React$1.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element;
|
|
137
|
+
declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<'ol'>): react_jsx_runtime.JSX.Element;
|
|
138
|
+
declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
139
|
+
declare function BreadcrumbLink({ className, render, ...props }: useRender.ComponentProps<'a'>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
140
|
+
declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
141
|
+
declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
142
|
+
declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
143
|
+
|
|
144
|
+
declare function Separator({ className, orientation, ...props }: Separator$1.Props): react_jsx_runtime.JSX.Element;
|
|
145
|
+
|
|
146
|
+
declare const buttonGroupVariants: (props?: ({
|
|
147
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
148
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
149
|
+
declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime.JSX.Element;
|
|
150
|
+
declare function ButtonGroupText({ className, render, ...props }: useRender.ComponentProps<'div'>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
151
|
+
declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
152
|
+
|
|
153
|
+
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
|
|
154
|
+
buttonVariant?: React$1.ComponentProps<typeof Button>['variant'];
|
|
155
|
+
}): react_jsx_runtime.JSX.Element;
|
|
156
|
+
declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
|
|
157
|
+
|
|
158
|
+
declare function Card({ className, size, ...props }: React$1.ComponentProps<'div'> & {
|
|
159
|
+
size?: 'default' | 'sm';
|
|
160
|
+
}): react_jsx_runtime.JSX.Element;
|
|
161
|
+
declare function CardHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
162
|
+
declare function CardTitle({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
163
|
+
declare function CardDescription({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
164
|
+
declare function CardAction({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
165
|
+
declare function CardContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
166
|
+
declare function CardFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
167
|
+
|
|
168
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
169
|
+
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
170
|
+
type CarouselOptions = UseCarouselParameters[0];
|
|
171
|
+
type CarouselPlugin = UseCarouselParameters[1];
|
|
172
|
+
type CarouselProps = {
|
|
173
|
+
opts?: CarouselOptions;
|
|
174
|
+
plugins?: CarouselPlugin;
|
|
175
|
+
orientation?: 'horizontal' | 'vertical';
|
|
176
|
+
setApi?: (api: CarouselApi) => void;
|
|
177
|
+
};
|
|
178
|
+
type CarouselContextProps = {
|
|
179
|
+
carouselRef: ReturnType<typeof useEmblaCarousel>[0];
|
|
180
|
+
api: ReturnType<typeof useEmblaCarousel>[1];
|
|
181
|
+
scrollPrev: () => void;
|
|
182
|
+
scrollNext: () => void;
|
|
183
|
+
canScrollPrev: boolean;
|
|
184
|
+
canScrollNext: boolean;
|
|
185
|
+
} & CarouselProps;
|
|
186
|
+
declare function useCarousel(): CarouselContextProps;
|
|
187
|
+
declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<'div'> & CarouselProps): react_jsx_runtime.JSX.Element;
|
|
188
|
+
declare function CarouselContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
189
|
+
declare function CarouselItem({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
190
|
+
declare function CarouselPrevious({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
191
|
+
declare function CarouselNext({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
192
|
+
|
|
193
|
+
declare const THEMES: {
|
|
194
|
+
readonly light: "";
|
|
195
|
+
readonly dark: ".dark";
|
|
196
|
+
};
|
|
197
|
+
type ChartConfig = {
|
|
198
|
+
[k in string]: {
|
|
199
|
+
label?: React$1.ReactNode;
|
|
200
|
+
icon?: React$1.ComponentType;
|
|
201
|
+
} & ({
|
|
202
|
+
color?: string;
|
|
203
|
+
theme?: never;
|
|
204
|
+
} | {
|
|
205
|
+
color?: never;
|
|
206
|
+
theme: Record<keyof typeof THEMES, string>;
|
|
207
|
+
});
|
|
208
|
+
};
|
|
209
|
+
declare function ChartContainer({ id, className, children, config, ...props }: React$1.ComponentProps<'div'> & {
|
|
210
|
+
config: ChartConfig;
|
|
211
|
+
children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>['children'];
|
|
212
|
+
}): react_jsx_runtime.JSX.Element;
|
|
213
|
+
declare const ChartStyle: ({ id, config }: {
|
|
214
|
+
id: string;
|
|
215
|
+
config: ChartConfig;
|
|
216
|
+
}) => react_jsx_runtime.JSX.Element | null;
|
|
217
|
+
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
218
|
+
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: Omit<React$1.ComponentProps<typeof RechartsPrimitive.Tooltip>, 'payload' | 'label' | 'labelFormatter' | 'formatter'> & React$1.ComponentProps<'div'> & {
|
|
219
|
+
hideLabel?: boolean;
|
|
220
|
+
hideIndicator?: boolean;
|
|
221
|
+
indicator?: 'line' | 'dot' | 'dashed';
|
|
222
|
+
nameKey?: string;
|
|
223
|
+
labelKey?: string;
|
|
224
|
+
payload?: Array<{
|
|
225
|
+
type?: string;
|
|
226
|
+
name?: string;
|
|
227
|
+
dataKey?: string;
|
|
228
|
+
value?: number | string;
|
|
229
|
+
color?: string;
|
|
230
|
+
payload?: Record<string, unknown>;
|
|
231
|
+
fill?: string;
|
|
232
|
+
}>;
|
|
233
|
+
label?: string;
|
|
234
|
+
labelFormatter?: (value: React$1.ReactNode, payload: unknown[]) => React$1.ReactNode;
|
|
235
|
+
formatter?: (value: unknown, name: unknown, item: unknown, index: number, payload: unknown) => React$1.ReactNode;
|
|
236
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
237
|
+
declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
238
|
+
declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React$1.ComponentProps<'div'> & {
|
|
239
|
+
hideIcon?: boolean;
|
|
240
|
+
nameKey?: string;
|
|
241
|
+
verticalAlign?: 'top' | 'bottom' | 'middle';
|
|
242
|
+
payload?: Array<{
|
|
243
|
+
type?: string;
|
|
244
|
+
value?: string;
|
|
245
|
+
dataKey?: string;
|
|
246
|
+
color?: string;
|
|
247
|
+
}>;
|
|
248
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
249
|
+
|
|
250
|
+
declare function Checkbox({ className, ...props }: Checkbox$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
251
|
+
|
|
252
|
+
declare function Collapsible({ ...props }: Collapsible$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
253
|
+
declare function CollapsibleTrigger({ ...props }: Collapsible$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
254
|
+
declare function CollapsibleContent({ ...props }: Collapsible$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
255
|
+
|
|
256
|
+
declare const Combobox: typeof Combobox$1.Root;
|
|
257
|
+
declare function ComboboxValue({ ...props }: Combobox$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
258
|
+
declare function ComboboxTrigger({ className, children, ...props }: Combobox$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
259
|
+
declare function ComboboxInput({ className, children, disabled, showTrigger, showClear, ...props }: Combobox$1.Input.Props & {
|
|
260
|
+
showTrigger?: boolean;
|
|
261
|
+
showClear?: boolean;
|
|
262
|
+
}): react_jsx_runtime.JSX.Element;
|
|
263
|
+
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;
|
|
264
|
+
declare function ComboboxList({ className, ...props }: Combobox$1.List.Props): react_jsx_runtime.JSX.Element;
|
|
265
|
+
declare function ComboboxItem({ className, children, ...props }: Combobox$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
266
|
+
declare function ComboboxGroup({ className, ...props }: Combobox$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
267
|
+
declare function ComboboxLabel({ className, ...props }: Combobox$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
|
|
268
|
+
declare function ComboboxCollection({ ...props }: Combobox$1.Collection.Props): react_jsx_runtime.JSX.Element;
|
|
269
|
+
declare function ComboboxEmpty({ className, ...props }: Combobox$1.Empty.Props): react_jsx_runtime.JSX.Element;
|
|
270
|
+
declare function ComboboxSeparator({ className, ...props }: Combobox$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
271
|
+
declare function ComboboxChips({ className, ...props }: React$1.ComponentPropsWithRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props): react_jsx_runtime.JSX.Element;
|
|
272
|
+
declare function ComboboxChip({ className, children, showRemove, ...props }: Combobox$1.Chip.Props & {
|
|
273
|
+
showRemove?: boolean;
|
|
274
|
+
}): react_jsx_runtime.JSX.Element;
|
|
275
|
+
declare function ComboboxChipsInput({ className, ...props }: Combobox$1.Input.Props): react_jsx_runtime.JSX.Element;
|
|
276
|
+
declare function useComboboxAnchor(): React$1.RefObject<HTMLDivElement | null>;
|
|
277
|
+
|
|
278
|
+
declare function Dialog({ ...props }: Dialog$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
279
|
+
declare function DialogTrigger({ ...props }: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
280
|
+
declare function DialogPortal({ ...props }: Dialog$1.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
281
|
+
declare function DialogClose({ ...props }: Dialog$1.Close.Props): react_jsx_runtime.JSX.Element;
|
|
282
|
+
declare function DialogOverlay({ className, ...props }: Dialog$1.Backdrop.Props): react_jsx_runtime.JSX.Element;
|
|
283
|
+
declare function DialogContent({ className, children, showCloseButton, ...props }: Dialog$1.Popup.Props & {
|
|
284
|
+
showCloseButton?: boolean;
|
|
285
|
+
}): react_jsx_runtime.JSX.Element;
|
|
286
|
+
declare function DialogHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
287
|
+
declare function DialogFooter({ className, showCloseButton, children, ...props }: React$1.ComponentProps<'div'> & {
|
|
288
|
+
showCloseButton?: boolean;
|
|
289
|
+
}): react_jsx_runtime.JSX.Element;
|
|
290
|
+
declare function DialogTitle({ className, ...props }: Dialog$1.Title.Props): react_jsx_runtime.JSX.Element;
|
|
291
|
+
declare function DialogDescription({ className, ...props }: Dialog$1.Description.Props): react_jsx_runtime.JSX.Element;
|
|
292
|
+
|
|
293
|
+
declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
|
|
294
|
+
declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: Omit<React$1.ComponentProps<typeof Dialog>, 'children'> & {
|
|
295
|
+
title?: string;
|
|
296
|
+
description?: string;
|
|
297
|
+
className?: string;
|
|
298
|
+
showCloseButton?: boolean;
|
|
299
|
+
children: React$1.ReactNode;
|
|
300
|
+
}): react_jsx_runtime.JSX.Element;
|
|
301
|
+
declare function CommandInput({ className, ...props }: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
|
|
302
|
+
declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
|
|
303
|
+
declare function CommandEmpty({ className, ...props }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
|
|
304
|
+
declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
|
|
305
|
+
declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
306
|
+
declare function CommandItem({ className, children, ...props }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
|
|
307
|
+
declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
308
|
+
|
|
309
|
+
declare function ContextMenu({ ...props }: ContextMenu$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
310
|
+
declare function ContextMenuPortal({ ...props }: ContextMenu$1.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
311
|
+
declare function ContextMenuTrigger({ className, ...props }: ContextMenu$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
312
|
+
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;
|
|
313
|
+
declare function ContextMenuGroup({ ...props }: ContextMenu$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
314
|
+
declare function ContextMenuLabel({ className, inset, ...props }: ContextMenu$1.GroupLabel.Props & {
|
|
315
|
+
inset?: boolean;
|
|
316
|
+
}): react_jsx_runtime.JSX.Element;
|
|
317
|
+
declare function ContextMenuItem({ className, inset, variant, ...props }: ContextMenu$1.Item.Props & {
|
|
318
|
+
inset?: boolean;
|
|
319
|
+
variant?: 'default' | 'destructive';
|
|
320
|
+
}): react_jsx_runtime.JSX.Element;
|
|
321
|
+
declare function ContextMenuSub({ ...props }: ContextMenu$1.SubmenuRoot.Props): react_jsx_runtime.JSX.Element;
|
|
322
|
+
declare function ContextMenuSubTrigger({ className, inset, children, ...props }: ContextMenu$1.SubmenuTrigger.Props & {
|
|
323
|
+
inset?: boolean;
|
|
324
|
+
}): react_jsx_runtime.JSX.Element;
|
|
325
|
+
declare function ContextMenuSubContent({ ...props }: React$1.ComponentProps<typeof ContextMenuContent>): react_jsx_runtime.JSX.Element;
|
|
326
|
+
declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: ContextMenu$1.CheckboxItem.Props): react_jsx_runtime.JSX.Element;
|
|
327
|
+
declare function ContextMenuRadioGroup({ ...props }: ContextMenu$1.RadioGroup.Props): react_jsx_runtime.JSX.Element;
|
|
328
|
+
declare function ContextMenuRadioItem({ className, children, ...props }: ContextMenu$1.RadioItem.Props): react_jsx_runtime.JSX.Element;
|
|
329
|
+
declare function ContextMenuSeparator({ className, ...props }: ContextMenu$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
330
|
+
declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
331
|
+
|
|
332
|
+
declare function Drawer({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
|
|
333
|
+
declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
334
|
+
declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
335
|
+
declare function DrawerClose({ ...props }: React$1.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element;
|
|
336
|
+
declare function DrawerOverlay({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
337
|
+
declare function DrawerContent({ className, children, ...props }: React$1.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element;
|
|
338
|
+
declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
339
|
+
declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
340
|
+
declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
|
|
341
|
+
declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
|
|
342
|
+
|
|
343
|
+
declare function DropdownMenu({ ...props }: Menu.Root.Props): react_jsx_runtime.JSX.Element;
|
|
344
|
+
declare function DropdownMenuPortal({ ...props }: Menu.Portal.Props): react_jsx_runtime.JSX.Element;
|
|
345
|
+
declare function DropdownMenuTrigger({ ...props }: Menu.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
346
|
+
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;
|
|
347
|
+
declare function DropdownMenuGroup({ ...props }: Menu.Group.Props): react_jsx_runtime.JSX.Element;
|
|
348
|
+
declare function DropdownMenuLabel({ className, inset, ...props }: Menu.GroupLabel.Props & {
|
|
349
|
+
inset?: boolean;
|
|
350
|
+
}): react_jsx_runtime.JSX.Element;
|
|
351
|
+
declare function DropdownMenuItem({ className, inset, variant, ...props }: Menu.Item.Props & {
|
|
352
|
+
inset?: boolean;
|
|
353
|
+
variant?: 'default' | 'destructive';
|
|
354
|
+
}): react_jsx_runtime.JSX.Element;
|
|
355
|
+
declare function DropdownMenuSub({ ...props }: Menu.SubmenuRoot.Props): react_jsx_runtime.JSX.Element;
|
|
356
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: Menu.SubmenuTrigger.Props & {
|
|
357
|
+
inset?: boolean;
|
|
358
|
+
}): react_jsx_runtime.JSX.Element;
|
|
359
|
+
declare function DropdownMenuSubContent({ align, alignOffset, side, sideOffset, className, ...props }: React$1.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime.JSX.Element;
|
|
360
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: Menu.CheckboxItem.Props): react_jsx_runtime.JSX.Element;
|
|
361
|
+
declare function DropdownMenuRadioGroup({ ...props }: Menu.RadioGroup.Props): react_jsx_runtime.JSX.Element;
|
|
362
|
+
declare function DropdownMenuRadioItem({ className, children, ...props }: Menu.RadioItem.Props): react_jsx_runtime.JSX.Element;
|
|
363
|
+
declare function DropdownMenuSeparator({ className, ...props }: Menu.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
364
|
+
declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
365
|
+
|
|
366
|
+
declare function Empty({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
367
|
+
declare function EmptyHeader({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
368
|
+
declare const emptyMediaVariants: (props?: ({
|
|
369
|
+
variant?: "default" | "icon" | null | undefined;
|
|
370
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
371
|
+
declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime.JSX.Element;
|
|
372
|
+
declare function EmptyTitle({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
373
|
+
declare function EmptyDescription({ className, ...props }: React.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
374
|
+
declare function EmptyContent({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
375
|
+
|
|
376
|
+
declare function Label({ className, ...props }: React$1.ComponentProps<'label'>): react_jsx_runtime.JSX.Element;
|
|
377
|
+
|
|
378
|
+
declare function FieldSet({ className, ...props }: React.ComponentProps<'fieldset'>): react_jsx_runtime.JSX.Element;
|
|
379
|
+
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<'legend'> & {
|
|
380
|
+
variant?: 'legend' | 'label';
|
|
381
|
+
}): react_jsx_runtime.JSX.Element;
|
|
382
|
+
declare function FieldGroup({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
383
|
+
declare const fieldVariants: (props?: ({
|
|
384
|
+
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
385
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
386
|
+
declare function Field({ className, orientation, ...props }: React.ComponentProps<'div'> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
|
|
387
|
+
declare function FieldContent({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
388
|
+
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
|
|
389
|
+
declare function FieldTitle({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
390
|
+
declare function FieldDescription({ className, ...props }: React.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
391
|
+
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<'div'> & {
|
|
392
|
+
children?: React.ReactNode;
|
|
393
|
+
}): react_jsx_runtime.JSX.Element;
|
|
394
|
+
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<'div'> & {
|
|
395
|
+
errors?: Array<{
|
|
396
|
+
message?: string;
|
|
397
|
+
} | undefined>;
|
|
398
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
399
|
+
|
|
400
|
+
declare function HoverCard({ ...props }: PreviewCard.Root.Props): react_jsx_runtime.JSX.Element;
|
|
401
|
+
declare function HoverCardTrigger({ ...props }: PreviewCard.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
402
|
+
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;
|
|
403
|
+
|
|
404
|
+
declare function Input({ className, type, ...props }: React$1.ComponentProps<'input'>): react_jsx_runtime.JSX.Element;
|
|
405
|
+
|
|
406
|
+
declare function InputGroup({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
407
|
+
declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<'input'>): react_jsx_runtime.JSX.Element;
|
|
408
|
+
|
|
409
|
+
declare function InputOTP({ className, containerClassName, ...props }: React$1.ComponentProps<typeof OTPInput> & {
|
|
410
|
+
containerClassName?: string;
|
|
411
|
+
}): react_jsx_runtime.JSX.Element;
|
|
412
|
+
declare function InputOTPGroup({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
413
|
+
declare function InputOTPSlot({ index, className, ...props }: React$1.ComponentProps<'div'> & {
|
|
414
|
+
index: number;
|
|
415
|
+
}): react_jsx_runtime.JSX.Element;
|
|
416
|
+
declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
417
|
+
|
|
418
|
+
declare function ItemGroup({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
419
|
+
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
420
|
+
declare const itemVariants: (props?: ({
|
|
421
|
+
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
422
|
+
size?: "default" | "sm" | "xs" | null | undefined;
|
|
423
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
424
|
+
declare function Item({ className, variant, size, render, ...props }: useRender.ComponentProps<'div'> & VariantProps<typeof itemVariants>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
425
|
+
declare const itemMediaVariants: (props?: ({
|
|
426
|
+
variant?: "default" | "image" | "icon" | null | undefined;
|
|
427
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
428
|
+
declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<'div'> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime.JSX.Element;
|
|
429
|
+
declare function ItemContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
430
|
+
declare function ItemTitle({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
431
|
+
declare function ItemDescription({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
432
|
+
declare function ItemActions({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
433
|
+
declare function ItemHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
434
|
+
declare function ItemFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
435
|
+
|
|
436
|
+
declare function Kbd({ className, ...props }: React.ComponentProps<'kbd'>): react_jsx_runtime.JSX.Element;
|
|
437
|
+
|
|
438
|
+
declare function Menubar({ className, ...props }: Menubar$1.Props): react_jsx_runtime.JSX.Element;
|
|
439
|
+
declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenu>): react_jsx_runtime.JSX.Element;
|
|
440
|
+
declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuGroup>): react_jsx_runtime.JSX.Element;
|
|
441
|
+
declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPortal>): react_jsx_runtime.JSX.Element;
|
|
442
|
+
declare function MenubarTrigger({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuTrigger>): react_jsx_runtime.JSX.Element;
|
|
443
|
+
declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React$1.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime.JSX.Element;
|
|
444
|
+
declare function MenubarItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenuItem>): react_jsx_runtime.JSX.Element;
|
|
445
|
+
declare function MenubarCheckboxItem({ className, children, checked, ...props }: Menu.CheckboxItem.Props): react_jsx_runtime.JSX.Element;
|
|
446
|
+
declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuRadioGroup>): react_jsx_runtime.JSX.Element;
|
|
447
|
+
declare function MenubarRadioItem({ className, children, ...props }: Menu.RadioItem.Props): react_jsx_runtime.JSX.Element;
|
|
448
|
+
declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuLabel>): react_jsx_runtime.JSX.Element;
|
|
449
|
+
declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuSeparator>): react_jsx_runtime.JSX.Element;
|
|
450
|
+
declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuShortcut>): react_jsx_runtime.JSX.Element;
|
|
451
|
+
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuSub>): react_jsx_runtime.JSX.Element;
|
|
452
|
+
declare function MenubarSubTrigger({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuSubTrigger> & {
|
|
453
|
+
inset?: boolean;
|
|
454
|
+
}): react_jsx_runtime.JSX.Element;
|
|
455
|
+
declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuSubContent>): react_jsx_runtime.JSX.Element;
|
|
456
|
+
|
|
457
|
+
type NativeSelectProps = Omit<React$1.ComponentProps<'select'>, 'size'> & {
|
|
458
|
+
size?: 'sm' | 'default';
|
|
459
|
+
};
|
|
460
|
+
declare function NativeSelect({ className, size, ...props }: NativeSelectProps): react_jsx_runtime.JSX.Element;
|
|
461
|
+
|
|
462
|
+
declare function NavigationMenu({ className, children, ...props }: NavigationMenu$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
463
|
+
declare function NavigationMenuList({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenu$1.List>): react_jsx_runtime.JSX.Element;
|
|
464
|
+
declare function NavigationMenuItem({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenu$1.Item>): react_jsx_runtime.JSX.Element;
|
|
465
|
+
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
466
|
+
declare function NavigationMenuTrigger({ className, children, ...props }: NavigationMenu$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
467
|
+
declare function NavigationMenuContent({ className, ...props }: NavigationMenu$1.Content.Props): react_jsx_runtime.JSX.Element;
|
|
468
|
+
declare function NavigationMenuPositioner({ className, side, sideOffset, align, alignOffset, ...props }: NavigationMenu$1.Positioner.Props): react_jsx_runtime.JSX.Element;
|
|
469
|
+
declare function NavigationMenuLink({ className, ...props }: NavigationMenu$1.Link.Props): react_jsx_runtime.JSX.Element;
|
|
470
|
+
declare function NavigationMenuIndicator({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenu$1.Icon>): react_jsx_runtime.JSX.Element;
|
|
471
|
+
|
|
472
|
+
declare function Pagination({ className, ...props }: React$1.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element;
|
|
473
|
+
declare function PaginationContent({ className, ...props }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
|
|
474
|
+
declare function PaginationItem({ ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
475
|
+
type PaginationLinkProps = {
|
|
476
|
+
isActive?: boolean;
|
|
477
|
+
} & Pick<React$1.ComponentProps<typeof Button>, 'size'> & React$1.ComponentProps<'a'>;
|
|
478
|
+
declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
479
|
+
declare function PaginationPrevious({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
480
|
+
declare function PaginationNext({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
481
|
+
declare function PaginationEllipsis({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
482
|
+
|
|
483
|
+
declare function Popover({ ...props }: Popover$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
484
|
+
declare function PopoverTrigger({ ...props }: Popover$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
485
|
+
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;
|
|
486
|
+
declare function PopoverHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
487
|
+
declare function PopoverTitle({ className, ...props }: Popover$1.Title.Props): react_jsx_runtime.JSX.Element;
|
|
488
|
+
declare function PopoverDescription({ className, ...props }: Popover$1.Description.Props): react_jsx_runtime.JSX.Element;
|
|
489
|
+
|
|
490
|
+
declare function Progress({ className, children, value, ...props }: Progress$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
491
|
+
|
|
492
|
+
type ProgressiveBlurProps = {
|
|
493
|
+
className?: string;
|
|
494
|
+
backgroundColor?: string;
|
|
495
|
+
position?: 'top' | 'bottom';
|
|
496
|
+
height?: string;
|
|
497
|
+
blurAmount?: string;
|
|
498
|
+
};
|
|
499
|
+
declare function ProgressiveBlur({ className, backgroundColor, position, height, blurAmount, }: ProgressiveBlurProps): react_jsx_runtime.JSX.Element;
|
|
500
|
+
|
|
501
|
+
declare function RadioGroup({ className, ...props }: RadioGroup$1.Props): react_jsx_runtime.JSX.Element;
|
|
502
|
+
declare function RadioGroupItem({ className, ...props }: Radio.Root.Props): react_jsx_runtime.JSX.Element;
|
|
503
|
+
|
|
504
|
+
declare function ResizablePanelGroup({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime.JSX.Element;
|
|
505
|
+
declare function ResizablePanel({ ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime.JSX.Element;
|
|
506
|
+
declare function ResizableHandle({ withHandle, className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
507
|
+
withHandle?: boolean;
|
|
508
|
+
}): react_jsx_runtime.JSX.Element;
|
|
509
|
+
|
|
510
|
+
declare function ScrollArea({ className, children, ...props }: ScrollArea$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
511
|
+
declare function ScrollBar({ className, orientation, ...props }: ScrollArea$1.Scrollbar.Props): react_jsx_runtime.JSX.Element;
|
|
512
|
+
|
|
513
|
+
declare const Select: typeof Select$1.Root;
|
|
514
|
+
declare function SelectGroup({ className, ...props }: Select$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
515
|
+
declare function SelectValue({ className, ...props }: Select$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
516
|
+
declare function SelectTrigger({ className, size, children, ...props }: Select$1.Trigger.Props & {
|
|
517
|
+
size?: 'sm' | 'default';
|
|
518
|
+
}): react_jsx_runtime.JSX.Element;
|
|
519
|
+
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;
|
|
520
|
+
declare function SelectLabel({ className, ...props }: Select$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
|
|
521
|
+
declare function SelectItem({ className, children, ...props }: Select$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
522
|
+
declare function SelectSeparator({ className, ...props }: Select$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
523
|
+
declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime.JSX.Element;
|
|
524
|
+
declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime.JSX.Element;
|
|
525
|
+
|
|
526
|
+
declare function Sheet({ ...props }: Dialog$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
527
|
+
declare function SheetTrigger({ ...props }: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
528
|
+
declare function SheetClose({ ...props }: Dialog$1.Close.Props): react_jsx_runtime.JSX.Element;
|
|
529
|
+
declare function SheetContent({ className, children, side, showCloseButton, ...props }: Dialog$1.Popup.Props & {
|
|
530
|
+
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
531
|
+
showCloseButton?: boolean;
|
|
532
|
+
}): react_jsx_runtime.JSX.Element;
|
|
533
|
+
declare function SheetHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
534
|
+
declare function SheetFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
535
|
+
declare function SheetTitle({ className, ...props }: Dialog$1.Title.Props): react_jsx_runtime.JSX.Element;
|
|
536
|
+
declare function SheetDescription({ className, ...props }: Dialog$1.Description.Props): react_jsx_runtime.JSX.Element;
|
|
537
|
+
|
|
538
|
+
declare function TooltipProvider({ delay, ...props }: Tooltip$1.Provider.Props): react_jsx_runtime.JSX.Element;
|
|
539
|
+
declare function Tooltip({ ...props }: Tooltip$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
540
|
+
declare function TooltipTrigger({ ...props }: Tooltip$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
541
|
+
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;
|
|
542
|
+
|
|
543
|
+
type SidebarContextProps = {
|
|
544
|
+
state: 'expanded' | 'collapsed';
|
|
545
|
+
open: boolean;
|
|
546
|
+
setOpen: (open: boolean) => void;
|
|
547
|
+
openMobile: boolean;
|
|
548
|
+
setOpenMobile: (open: boolean) => void;
|
|
549
|
+
isMobile: boolean;
|
|
550
|
+
toggleSidebar: () => void;
|
|
551
|
+
};
|
|
552
|
+
declare function useSidebar(): SidebarContextProps;
|
|
553
|
+
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React$1.ComponentProps<'div'> & {
|
|
554
|
+
defaultOpen?: boolean;
|
|
555
|
+
open?: boolean;
|
|
556
|
+
onOpenChange?: (open: boolean) => void;
|
|
557
|
+
}): react_jsx_runtime.JSX.Element;
|
|
558
|
+
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React$1.ComponentProps<'div'> & {
|
|
559
|
+
side?: 'left' | 'right';
|
|
560
|
+
variant?: 'sidebar' | 'floating' | 'inset';
|
|
561
|
+
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
562
|
+
}): react_jsx_runtime.JSX.Element;
|
|
563
|
+
declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
564
|
+
declare function SidebarRail({ className, ...props }: React$1.ComponentProps<'button'>): react_jsx_runtime.JSX.Element;
|
|
565
|
+
declare function SidebarInset({ className, ...props }: React$1.ComponentProps<'main'>): react_jsx_runtime.JSX.Element;
|
|
566
|
+
declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
|
|
567
|
+
declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
568
|
+
declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
569
|
+
declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
570
|
+
declare function SidebarContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
571
|
+
declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
572
|
+
declare function SidebarGroupLabel({ className, render, ...props }: useRender.ComponentProps<'div'> & React$1.ComponentProps<'div'>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
573
|
+
declare function SidebarGroupAction({ className, render, ...props }: useRender.ComponentProps<'button'> & React$1.ComponentProps<'button'>): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
574
|
+
declare function SidebarGroupContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
575
|
+
declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
|
|
576
|
+
declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
577
|
+
declare const sidebarMenuButtonVariants: (props?: ({
|
|
578
|
+
variant?: "default" | "outline" | null | undefined;
|
|
579
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
580
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
581
|
+
declare function SidebarMenuButton({ render, isActive, variant, size, tooltip, className, ...props }: useRender.ComponentProps<'button'> & React$1.ComponentProps<'button'> & {
|
|
582
|
+
isActive?: boolean;
|
|
583
|
+
tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
|
|
584
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
585
|
+
declare function SidebarMenuAction({ className, render, showOnHover, ...props }: useRender.ComponentProps<'button'> & React$1.ComponentProps<'button'> & {
|
|
586
|
+
showOnHover?: boolean;
|
|
587
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
588
|
+
declare function SidebarMenuBadge({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
589
|
+
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React$1.ComponentProps<'div'> & {
|
|
590
|
+
showIcon?: boolean;
|
|
591
|
+
}): react_jsx_runtime.JSX.Element;
|
|
592
|
+
declare function SidebarMenuSub({ className, ...props }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
|
|
593
|
+
declare function SidebarMenuSubItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
594
|
+
declare function SidebarMenuSubButton({ render, size, isActive, className, ...props }: useRender.ComponentProps<'a'> & React$1.ComponentProps<'a'> & {
|
|
595
|
+
size?: 'sm' | 'md';
|
|
596
|
+
isActive?: boolean;
|
|
597
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
598
|
+
|
|
599
|
+
declare function Skeleton({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
600
|
+
|
|
601
|
+
declare function Slider({ className, defaultValue, value, min, max, ...props }: Slider$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
602
|
+
|
|
603
|
+
declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
604
|
+
|
|
605
|
+
declare function Spinner({ className, ...props }: React.ComponentProps<'svg'>): react_jsx_runtime.JSX.Element;
|
|
606
|
+
|
|
607
|
+
declare function Switch({ className, size, ...props }: Switch$1.Root.Props & {
|
|
608
|
+
size?: 'sm' | 'default';
|
|
609
|
+
}): react_jsx_runtime.JSX.Element;
|
|
610
|
+
|
|
611
|
+
declare function Table({ className, ...props }: React$1.ComponentProps<'table'>): react_jsx_runtime.JSX.Element;
|
|
612
|
+
declare function TableHeader({ className, ...props }: React$1.ComponentProps<'thead'>): react_jsx_runtime.JSX.Element;
|
|
613
|
+
declare function TableBody({ className, ...props }: React$1.ComponentProps<'tbody'>): react_jsx_runtime.JSX.Element;
|
|
614
|
+
declare function TableFooter({ className, ...props }: React$1.ComponentProps<'tfoot'>): react_jsx_runtime.JSX.Element;
|
|
615
|
+
declare function TableRow({ className, ...props }: React$1.ComponentProps<'tr'>): react_jsx_runtime.JSX.Element;
|
|
616
|
+
declare function TableHead({ className, ...props }: React$1.ComponentProps<'th'>): react_jsx_runtime.JSX.Element;
|
|
617
|
+
declare function TableCell({ className, ...props }: React$1.ComponentProps<'td'>): react_jsx_runtime.JSX.Element;
|
|
618
|
+
declare function TableCaption({ className, ...props }: React$1.ComponentProps<'caption'>): react_jsx_runtime.JSX.Element;
|
|
619
|
+
|
|
620
|
+
declare function Tabs({ className, ...props }: Tabs$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
621
|
+
declare function TabsList({ className, children, ...props }: Tabs$1.List.Props): react_jsx_runtime.JSX.Element;
|
|
622
|
+
declare function TabsTrigger({ className, ...props }: Tabs$1.Tab.Props): react_jsx_runtime.JSX.Element;
|
|
623
|
+
declare function TabsContent({ className, ...props }: Tabs$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
624
|
+
|
|
625
|
+
declare function Textarea({ className, ...props }: React$1.ComponentProps<'textarea'>): react_jsx_runtime.JSX.Element;
|
|
626
|
+
|
|
627
|
+
declare const toggleVariants: (props?: ({
|
|
628
|
+
variant?: "default" | "outline" | null | undefined;
|
|
629
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
630
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
631
|
+
declare function Toggle({ className, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
632
|
+
|
|
633
|
+
declare function ToggleGroup({ className, variant, size, spacing, orientation, children, ...props }: ToggleGroup$1.Props & VariantProps<typeof toggleVariants> & {
|
|
634
|
+
spacing?: number;
|
|
635
|
+
orientation?: 'horizontal' | 'vertical';
|
|
636
|
+
}): react_jsx_runtime.JSX.Element;
|
|
637
|
+
declare function ToggleGroupItem({ className, children, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
638
|
+
|
|
639
|
+
interface HeaderContextValue {
|
|
640
|
+
isScrolled: boolean;
|
|
641
|
+
}
|
|
642
|
+
declare function useHeaderContext(): HeaderContextValue;
|
|
643
|
+
interface RootProps {
|
|
644
|
+
children: ReactNode;
|
|
645
|
+
scrollThreshold?: number;
|
|
646
|
+
className?: string;
|
|
647
|
+
}
|
|
648
|
+
declare function Root({ children, scrollThreshold, className }: RootProps): react_jsx_runtime.JSX.Element;
|
|
649
|
+
interface BackButtonProps {
|
|
650
|
+
onClick: () => void;
|
|
651
|
+
className?: string;
|
|
652
|
+
}
|
|
653
|
+
declare function BackButton({ onClick, className }: BackButtonProps): react_jsx_runtime.JSX.Element;
|
|
654
|
+
interface TitleProps {
|
|
655
|
+
children: ReactNode;
|
|
656
|
+
className?: string;
|
|
657
|
+
}
|
|
658
|
+
declare function Title({ children, className }: TitleProps): react_jsx_runtime.JSX.Element;
|
|
659
|
+
interface AnimatedTitleProps {
|
|
660
|
+
children: ReactNode;
|
|
661
|
+
className?: string;
|
|
662
|
+
}
|
|
663
|
+
declare function AnimatedTitle({ children, className }: AnimatedTitleProps): react_jsx_runtime.JSX.Element;
|
|
664
|
+
interface TrailingActionProps {
|
|
665
|
+
children: ReactNode;
|
|
666
|
+
className?: string;
|
|
667
|
+
}
|
|
668
|
+
declare function TrailingAction({ children, className }: TrailingActionProps): react_jsx_runtime.JSX.Element;
|
|
669
|
+
declare const Header: {
|
|
670
|
+
Root: typeof Root;
|
|
671
|
+
BackButton: typeof BackButton;
|
|
672
|
+
Title: typeof Title;
|
|
673
|
+
AnimatedTitle: typeof AnimatedTitle;
|
|
674
|
+
TrailingAction: typeof TrailingAction;
|
|
675
|
+
};
|
|
676
|
+
interface SecondaryPageHeaderProps {
|
|
677
|
+
title: string;
|
|
678
|
+
onBack: () => void;
|
|
679
|
+
}
|
|
680
|
+
declare function SecondaryPageHeader({ title, onBack }: SecondaryPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
681
|
+
interface TabPageHeaderProps {
|
|
682
|
+
title: string;
|
|
683
|
+
trailingAction?: {
|
|
684
|
+
icon: ComponentType<{
|
|
685
|
+
className?: string;
|
|
686
|
+
}>;
|
|
687
|
+
onClick?: () => void;
|
|
688
|
+
href?: string;
|
|
689
|
+
LinkComponent?: ComponentType<{
|
|
690
|
+
to: string;
|
|
691
|
+
className?: string;
|
|
692
|
+
children: ReactNode;
|
|
693
|
+
}>;
|
|
694
|
+
};
|
|
695
|
+
}
|
|
696
|
+
declare function TabPageHeader({ title, trailingAction }: TabPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
697
|
+
|
|
698
|
+
interface TabItem {
|
|
699
|
+
id: string;
|
|
700
|
+
label: string;
|
|
701
|
+
path: string;
|
|
702
|
+
icon: ComponentType<{
|
|
703
|
+
className?: string;
|
|
704
|
+
}>;
|
|
705
|
+
activeIcon: ComponentType<{
|
|
706
|
+
className?: string;
|
|
707
|
+
}>;
|
|
708
|
+
}
|
|
709
|
+
interface NavLinkProps {
|
|
710
|
+
to: string;
|
|
711
|
+
children: React.ReactNode;
|
|
712
|
+
className?: string;
|
|
713
|
+
role?: string;
|
|
714
|
+
'aria-selected'?: boolean;
|
|
715
|
+
}
|
|
716
|
+
type LinkComponent = ComponentType<NavLinkProps>;
|
|
717
|
+
|
|
718
|
+
interface TabBarProps {
|
|
719
|
+
items: TabItem[];
|
|
720
|
+
currentPath: string;
|
|
721
|
+
LinkComponent: LinkComponent;
|
|
722
|
+
/** Only used for web nav bar */
|
|
723
|
+
logo?: React.ReactNode;
|
|
724
|
+
/** Only used for web nav bar */
|
|
725
|
+
logoIcon?: React.ComponentType<{
|
|
726
|
+
className?: string;
|
|
727
|
+
}>;
|
|
728
|
+
/** Only used for web nav bar */
|
|
729
|
+
businessName?: string;
|
|
730
|
+
}
|
|
731
|
+
declare function TabBar({ items, currentPath, LinkComponent, logo, logoIcon, businessName, }: TabBarProps): react_jsx_runtime.JSX.Element;
|
|
732
|
+
|
|
733
|
+
interface IOSTabBarProps {
|
|
734
|
+
items: TabItem[];
|
|
735
|
+
currentPath: string;
|
|
736
|
+
LinkComponent: LinkComponent;
|
|
737
|
+
}
|
|
738
|
+
declare function IOSTabBar({ items, currentPath, LinkComponent, }: IOSTabBarProps): react_jsx_runtime.JSX.Element;
|
|
739
|
+
|
|
740
|
+
interface AndroidTabBarProps {
|
|
741
|
+
items: TabItem[];
|
|
742
|
+
currentPath: string;
|
|
743
|
+
LinkComponent: LinkComponent;
|
|
744
|
+
}
|
|
745
|
+
declare function AndroidTabBar({ items, currentPath, LinkComponent, }: AndroidTabBarProps): react_jsx_runtime.JSX.Element;
|
|
746
|
+
|
|
747
|
+
interface WebNavBarProps {
|
|
748
|
+
items: TabItem[];
|
|
749
|
+
currentPath: string;
|
|
750
|
+
LinkComponent: LinkComponent;
|
|
751
|
+
logo?: ReactNode;
|
|
752
|
+
logoIcon?: ComponentType<{
|
|
753
|
+
className?: string;
|
|
754
|
+
}>;
|
|
755
|
+
businessName?: string;
|
|
756
|
+
}
|
|
757
|
+
declare function WebNavBar({ items, currentPath, LinkComponent, logo, logoIcon: LogoIcon, businessName, }: WebNavBarProps): react_jsx_runtime.JSX.Element;
|
|
758
|
+
|
|
759
|
+
interface FooterLink {
|
|
760
|
+
label: string;
|
|
761
|
+
to: string;
|
|
762
|
+
}
|
|
763
|
+
interface WebFooterProps {
|
|
764
|
+
LinkComponent: LinkComponent;
|
|
765
|
+
logo?: ReactNode;
|
|
766
|
+
logoIcon?: ComponentType<{
|
|
767
|
+
className?: string;
|
|
768
|
+
}>;
|
|
769
|
+
businessName?: string;
|
|
770
|
+
links?: FooterLink[];
|
|
771
|
+
showCopyright?: boolean;
|
|
772
|
+
}
|
|
773
|
+
declare function WebFooter({ LinkComponent, logo, logoIcon: LogoIcon, businessName, links, showCopyright, }: WebFooterProps): react_jsx_runtime.JSX.Element;
|
|
774
|
+
|
|
775
|
+
interface UseScrolledOptions {
|
|
776
|
+
threshold?: number;
|
|
777
|
+
}
|
|
778
|
+
declare function useScrolled({ threshold }?: UseScrolledOptions): boolean;
|
|
779
|
+
|
|
780
|
+
declare function useIsMobile(): boolean;
|
|
781
|
+
|
|
782
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
783
|
+
|
|
784
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AndroidTabBar, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, 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, 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 DesignSystem, DesignSystemProvider, type DeviceContext, 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 FormFactor, Header, HoverCard, HoverCardContent, HoverCardTrigger, IOSTabBar, Input, InputGroup, InputGroupInput, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, Label, type LinkComponent, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, type NavLinkProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type Platform, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressiveBlur, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SecondaryPageHeader, 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, Spinner, Switch, TabBar, type TabItem, TabPageHeader, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, WebFooter, WebNavBar, badgeVariants, buttonGroupVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants, useCarousel, useComboboxAnchor, useDesignSystem, useDeviceContext, useHeaderContext, useIsMobile, useScrolled, useSidebar };
|