@mesob/ui 0.2.5 → 0.3.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/dist/components.d.ts +1419 -271
- package/dist/components.js +12325 -4679
- package/dist/components.js.map +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +431 -31
- package/dist/index.js.map +1 -1
- package/dist/lib/color-utils.d.ts +17 -0
- package/dist/lib/color-utils.js +205 -0
- package/dist/lib/color-utils.js.map +1 -0
- package/dist/lib/locale.d.ts +4 -3
- package/dist/lib/locale.js +1 -2
- package/dist/lib/locale.js.map +1 -1
- package/dist/lib/theme-config.d.ts +22 -0
- package/dist/lib/theme-config.js +420 -0
- package/dist/lib/theme-config.js.map +1 -0
- package/dist/lib/theme-schema.d.ts +12 -4
- package/dist/lib/theme-schema.js +8 -29
- package/dist/lib/theme-schema.js.map +1 -1
- package/dist/lib/themes.d.ts +23 -0
- package/dist/lib/themes.js +315 -0
- package/dist/lib/themes.js.map +1 -0
- package/dist/providers.d.ts +15 -2
- package/dist/providers.js +81 -7
- package/dist/providers.js.map +1 -1
- package/package.json +11 -31
- package/src/styles/lyra/button.css +79 -0
- package/src/styles/maia/button.css +79 -0
- package/src/styles/mira/button.css +79 -0
- package/src/styles/style-lyra.css +2208 -0
- package/src/styles/style-maia.css +2245 -0
- package/src/styles/style-mira.css +2247 -0
- package/src/styles/style-nova.css +2320 -0
- package/src/styles/style-vega.css +2316 -0
- package/src/styles/themes.css +5 -0
package/dist/components.d.ts
CHANGED
|
@@ -1,51 +1,54 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import { ReactNode, ComponentType } from 'react';
|
|
3
|
+
import { ReactNode, ComponentType, ReactElement } from 'react';
|
|
4
4
|
export { u as useEntityPagination, a as useEntityParams } from './use-entity-params-nqD69tdX.js';
|
|
5
5
|
import * as react_hook_form from 'react-hook-form';
|
|
6
6
|
import { Control, UseFormRegister, ControllerRenderProps, FieldError as FieldError$1, FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
7
7
|
import { Locale } from './lib/locale.js';
|
|
8
8
|
import { Editor } from '@tiptap/react';
|
|
9
|
-
import
|
|
9
|
+
import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
|
|
10
10
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
11
|
+
import { useRender } from '@base-ui/react/use-render';
|
|
11
12
|
import { VariantProps } from 'class-variance-authority';
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
13
|
+
import { ComponentColor, ComponentSize, ComponentRadius, InputWrapperOrder } from './lib/theme-schema.js';
|
|
14
|
+
import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
|
|
15
|
+
import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
|
|
16
|
+
import { Button as Button$1 } from '@base-ui/react/button';
|
|
17
|
+
import { Separator as Separator$1 } from '@base-ui/react/separator';
|
|
16
18
|
import { DayPicker, DayButton } from 'react-day-picker';
|
|
19
|
+
export { DateRange } from 'react-day-picker';
|
|
17
20
|
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
18
21
|
import * as RechartsPrimitive from 'recharts';
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import {
|
|
22
|
-
import
|
|
23
|
-
import
|
|
22
|
+
import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
|
|
23
|
+
import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
|
|
24
|
+
import { ColorFormat } from './lib/color-utils.js';
|
|
25
|
+
import { Combobox as Combobox$1 } from '@base-ui/react/combobox';
|
|
26
|
+
import { Autocomplete } from '@base-ui/react/autocomplete';
|
|
27
|
+
import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
|
|
28
|
+
import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
|
|
24
29
|
import { ColumnDef, SortingState, ColumnFiltersState, VisibilityState, Column, Table as Table$1 } from '@tanstack/react-table';
|
|
25
|
-
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import { Slot } from '@radix-ui/react-slot';
|
|
29
|
-
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
30
|
+
export { DirectionProvider, useDirection } from '@base-ui/react/direction-provider';
|
|
31
|
+
import { Menu } from '@base-ui/react/menu';
|
|
32
|
+
import { PreviewCard } from '@base-ui/react/preview-card';
|
|
30
33
|
import { OTPInput } from 'input-otp';
|
|
31
|
-
import
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import
|
|
34
|
+
import { Menubar as Menubar$1 } from '@base-ui/react/menubar';
|
|
35
|
+
import { NavigationMenu as NavigationMenu$1 } from '@base-ui/react/navigation-menu';
|
|
36
|
+
import { Popover as Popover$1 } from '@base-ui/react/popover';
|
|
37
|
+
import { Progress as Progress$1 } from '@base-ui/react/progress';
|
|
38
|
+
import { Radio } from '@base-ui/react/radio';
|
|
39
|
+
import { RadioGroup as RadioGroup$1 } from '@base-ui/react/radio-group';
|
|
36
40
|
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
37
|
-
import
|
|
38
|
-
import
|
|
39
|
-
import
|
|
40
|
-
import
|
|
41
|
+
import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
|
|
42
|
+
import { Select as Select$1 } from '@base-ui/react/select';
|
|
43
|
+
import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
|
|
44
|
+
import { Slider as Slider$1 } from '@base-ui/react/slider';
|
|
41
45
|
import { ToasterProps } from 'sonner';
|
|
42
46
|
export { toast } from 'sonner';
|
|
43
47
|
import { IconLoader2 } from '@tabler/icons-react';
|
|
44
|
-
import
|
|
45
|
-
import
|
|
46
|
-
import
|
|
47
|
-
import
|
|
48
|
-
import * as VisuallyHiddenPrimitive from '@radix-ui/react-visually-hidden';
|
|
48
|
+
import { Switch as Switch$1 } from '@base-ui/react/switch';
|
|
49
|
+
import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
|
|
50
|
+
import { Toggle as Toggle$1 } from '@base-ui/react/toggle';
|
|
51
|
+
import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
|
|
49
52
|
import 'nuqs';
|
|
50
53
|
import 'zod';
|
|
51
54
|
|
|
@@ -135,6 +138,120 @@ type AppSidebarProps = {
|
|
|
135
138
|
};
|
|
136
139
|
declare function AppSidebar({ logo, navItems, footer, pathname, roles, }: AppSidebarProps): react_jsx_runtime.JSX.Element;
|
|
137
140
|
|
|
141
|
+
type LoaderType = 'oval' | 'bars' | 'dots';
|
|
142
|
+
type LoaderProps = {
|
|
143
|
+
type?: LoaderType;
|
|
144
|
+
size?: number | string;
|
|
145
|
+
color?: string;
|
|
146
|
+
className?: string;
|
|
147
|
+
children?: React$1.ReactNode;
|
|
148
|
+
};
|
|
149
|
+
declare const Loader: React$1.ForwardRefExoticComponent<LoaderProps & React$1.RefAttributes<HTMLOutputElement>>;
|
|
150
|
+
|
|
151
|
+
type LoadingOverlayProps = {
|
|
152
|
+
visible: boolean;
|
|
153
|
+
zIndex?: number;
|
|
154
|
+
blur?: number;
|
|
155
|
+
opacity?: number;
|
|
156
|
+
loaderSize?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | number;
|
|
157
|
+
loaderType?: LoaderType;
|
|
158
|
+
loaderColor?: string;
|
|
159
|
+
loaderProps?: React$1.ComponentProps<typeof Loader>;
|
|
160
|
+
className?: string;
|
|
161
|
+
};
|
|
162
|
+
declare function LoadingOverlay({ visible, zIndex, blur, opacity, loaderSize, loaderType, loaderColor, loaderProps, className, }: LoadingOverlayProps): react_jsx_runtime.JSX.Element | null;
|
|
163
|
+
|
|
164
|
+
type EmptyCardLoadingProps = {
|
|
165
|
+
className?: string;
|
|
166
|
+
zIndex?: number;
|
|
167
|
+
minHeight?: boolean;
|
|
168
|
+
loaderSize?: LoadingOverlayProps['loaderSize'];
|
|
169
|
+
loaderType?: LoadingOverlayProps['loaderType'];
|
|
170
|
+
};
|
|
171
|
+
declare function EmptyCardLoading({ className, zIndex, minHeight, loaderSize, loaderType, }: EmptyCardLoadingProps): react_jsx_runtime.JSX.Element;
|
|
172
|
+
|
|
173
|
+
type EntityPageLoadingProps = {
|
|
174
|
+
className?: string;
|
|
175
|
+
loaderSize?: LoadingOverlayProps['loaderSize'];
|
|
176
|
+
loaderType?: LoadingOverlayProps['loaderType'];
|
|
177
|
+
};
|
|
178
|
+
declare function EntityPageLoading({ className, loaderSize, loaderType, }: EntityPageLoadingProps): react_jsx_runtime.JSX.Element;
|
|
179
|
+
|
|
180
|
+
type ErrorPageViewProps = {
|
|
181
|
+
code: string;
|
|
182
|
+
title: string;
|
|
183
|
+
description: string;
|
|
184
|
+
primaryAction: ReactNode;
|
|
185
|
+
secondaryAction?: ReactNode;
|
|
186
|
+
onRetry?: () => void;
|
|
187
|
+
};
|
|
188
|
+
declare function ErrorPageView({ code, title, description, primaryAction, secondaryAction, onRetry, }: ErrorPageViewProps): react_jsx_runtime.JSX.Element;
|
|
189
|
+
|
|
190
|
+
type NoDataAvailableProps = {
|
|
191
|
+
title: string;
|
|
192
|
+
message: string;
|
|
193
|
+
iconType?: 'certificate' | 'alert' | 'cart' | 'message';
|
|
194
|
+
buttonText?: string;
|
|
195
|
+
buttonLink?: string;
|
|
196
|
+
icon?: React$1.ReactNode;
|
|
197
|
+
};
|
|
198
|
+
declare function NoDataAvailable({ title, message, iconType, buttonText, buttonLink, icon, }: NoDataAvailableProps): react_jsx_runtime.JSX.Element;
|
|
199
|
+
|
|
200
|
+
type DisplayTableVariant = 'horizontal' | 'vertical';
|
|
201
|
+
type DisplayTableData = {
|
|
202
|
+
caption?: React$1.ReactNode;
|
|
203
|
+
head?: React$1.ReactNode[];
|
|
204
|
+
body: React$1.ReactNode[][];
|
|
205
|
+
foot?: React$1.ReactNode[];
|
|
206
|
+
};
|
|
207
|
+
type ScrollContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
208
|
+
minWidth?: number;
|
|
209
|
+
maxHeight?: number;
|
|
210
|
+
type?: 'native' | 'scroll-area';
|
|
211
|
+
};
|
|
212
|
+
declare function DisplayTableScrollContainer({ className, minWidth, maxHeight, type, children, style, ...props }: ScrollContainerProps): react_jsx_runtime.JSX.Element;
|
|
213
|
+
declare namespace DisplayTableScrollContainer {
|
|
214
|
+
var displayName: string;
|
|
215
|
+
}
|
|
216
|
+
declare const DisplayTableThead: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
217
|
+
declare const DisplayTableTbody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
218
|
+
declare const DisplayTableTfoot: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
219
|
+
declare const DisplayTableTr: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & {
|
|
220
|
+
variant?: DisplayTableVariant;
|
|
221
|
+
} & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
222
|
+
declare const DisplayTableTh: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCellElement> & {
|
|
223
|
+
w?: number | string;
|
|
224
|
+
} & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
225
|
+
declare const DisplayTableTd: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
226
|
+
declare const DisplayTableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
|
|
227
|
+
declare const DisplayTable: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & {
|
|
228
|
+
variant?: DisplayTableVariant;
|
|
229
|
+
striped?: boolean;
|
|
230
|
+
stripedInverted?: boolean;
|
|
231
|
+
highlightOnHover?: boolean;
|
|
232
|
+
withTableBorder?: boolean;
|
|
233
|
+
withColumnBorders?: boolean;
|
|
234
|
+
withRowBorders?: boolean;
|
|
235
|
+
stickyHeader?: boolean;
|
|
236
|
+
stickyHeaderOffset?: number;
|
|
237
|
+
captionSide?: "top" | "bottom";
|
|
238
|
+
tabularNums?: boolean;
|
|
239
|
+
data?: DisplayTableData;
|
|
240
|
+
} & React$1.RefAttributes<HTMLTableElement>> & {
|
|
241
|
+
Thead: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
242
|
+
Tbody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
243
|
+
Tfoot: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
244
|
+
Tr: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & {
|
|
245
|
+
variant?: DisplayTableVariant;
|
|
246
|
+
} & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
247
|
+
Th: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCellElement> & {
|
|
248
|
+
w?: number | string;
|
|
249
|
+
} & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
250
|
+
Td: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
251
|
+
Caption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
|
|
252
|
+
ScrollContainer: typeof DisplayTableScrollContainer;
|
|
253
|
+
};
|
|
254
|
+
|
|
138
255
|
type BulkAction = {
|
|
139
256
|
label: string;
|
|
140
257
|
icon?: ReactNode;
|
|
@@ -158,25 +275,16 @@ type TabItem = {
|
|
|
158
275
|
href?: string;
|
|
159
276
|
content?: ReactNode;
|
|
160
277
|
};
|
|
161
|
-
type LinkComponentProps$1 = {
|
|
162
|
-
href: string;
|
|
163
|
-
className?: string;
|
|
164
|
-
children: ReactNode;
|
|
165
|
-
ref?: React.Ref<HTMLAnchorElement>;
|
|
166
|
-
};
|
|
167
278
|
type EntityDetailHeaderProps = {
|
|
168
279
|
title: ReactNode;
|
|
169
280
|
icon?: ReactNode;
|
|
170
|
-
|
|
281
|
+
showBack?: boolean;
|
|
282
|
+
loading?: boolean;
|
|
171
283
|
actions?: ReactNode;
|
|
172
284
|
tabs: TabItem[];
|
|
173
|
-
activeTab?: string;
|
|
174
|
-
defaultTab?: string;
|
|
175
|
-
onTabChange?: (value: string) => void;
|
|
176
285
|
className?: string;
|
|
177
|
-
linkComponent?: ComponentType<LinkComponentProps$1>;
|
|
178
286
|
};
|
|
179
|
-
declare function EntityDetailHeader({ title, icon,
|
|
287
|
+
declare function EntityDetailHeader({ title, icon, showBack, loading, actions, tabs, className, }: EntityDetailHeaderProps): react_jsx_runtime.JSX.Element;
|
|
180
288
|
|
|
181
289
|
type EntityDrawerProps = {
|
|
182
290
|
title: ReactNode;
|
|
@@ -214,18 +322,31 @@ type EntityEmptyStateProps = {
|
|
|
214
322
|
};
|
|
215
323
|
declare function EntityEmptyState({ icon: Icon, title, description, entityName, actionLabel, onAction, children, className, }: EntityEmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
216
324
|
|
|
217
|
-
type FilterOption = {
|
|
325
|
+
type FilterOption$2 = {
|
|
218
326
|
label: string;
|
|
219
327
|
value: string;
|
|
220
328
|
};
|
|
221
329
|
type EntityFilterProps = {
|
|
222
|
-
options: FilterOption[];
|
|
330
|
+
options: FilterOption$2[];
|
|
223
331
|
placeholder?: string;
|
|
224
332
|
className?: string;
|
|
225
333
|
label?: string;
|
|
226
334
|
};
|
|
227
335
|
declare function EntityFilter({ options, placeholder, className, label, }: EntityFilterProps): react_jsx_runtime.JSX.Element;
|
|
228
336
|
|
|
337
|
+
type FilterOption$1 = {
|
|
338
|
+
label: string;
|
|
339
|
+
value: string;
|
|
340
|
+
};
|
|
341
|
+
type EntityFilterStateProps = {
|
|
342
|
+
value: string;
|
|
343
|
+
onValueChange: (v: string) => void;
|
|
344
|
+
options: FilterOption$1[];
|
|
345
|
+
placeholder?: string;
|
|
346
|
+
className?: string;
|
|
347
|
+
};
|
|
348
|
+
declare function EntityFilterState({ value, onValueChange, options, placeholder, className, }: EntityFilterStateProps): react_jsx_runtime.JSX.Element;
|
|
349
|
+
|
|
229
350
|
type EntityFormActionsProps = {
|
|
230
351
|
mode: 'new' | 'edit';
|
|
231
352
|
onSubmit?: () => void;
|
|
@@ -249,8 +370,10 @@ type EntityHeaderProps = {
|
|
|
249
370
|
filter?: ReactNode;
|
|
250
371
|
sort?: ReactNode;
|
|
251
372
|
view?: ReactNode;
|
|
373
|
+
/** When false, render without Card wrapper (e.g. inside EntitySection) */
|
|
374
|
+
wrapInCard?: boolean;
|
|
252
375
|
};
|
|
253
|
-
declare function EntityHeader({ title, icon, actions, search, filter, sort, view, }: EntityHeaderProps): react_jsx_runtime.JSX.Element;
|
|
376
|
+
declare function EntityHeader({ title, icon, actions, search, filter, sort, view, wrapInCard, }: EntityHeaderProps): react_jsx_runtime.JSX.Element;
|
|
254
377
|
|
|
255
378
|
type EntityLoadingStateProps = {
|
|
256
379
|
view: 'table' | 'card';
|
|
@@ -268,25 +391,233 @@ type EntitySearchProps = {
|
|
|
268
391
|
};
|
|
269
392
|
declare function EntitySearch({ paramKey, placeholder, className, }: EntitySearchProps): react_jsx_runtime.JSX.Element;
|
|
270
393
|
|
|
271
|
-
type
|
|
394
|
+
type EntitySearchStateProps = {
|
|
395
|
+
value: string;
|
|
396
|
+
onValueChange: (v: string) => void;
|
|
397
|
+
placeholder?: string;
|
|
398
|
+
className?: string;
|
|
399
|
+
debounceMs?: number;
|
|
400
|
+
};
|
|
401
|
+
declare function EntitySearchState({ value, onValueChange, placeholder, className, debounceMs, }: EntitySearchStateProps): react_jsx_runtime.JSX.Element;
|
|
402
|
+
|
|
403
|
+
type EntitySectionView = 'table' | 'card' | 'list';
|
|
404
|
+
type FilterOption = {
|
|
405
|
+
label: string;
|
|
406
|
+
value: string;
|
|
407
|
+
};
|
|
408
|
+
type SortOption$2 = {
|
|
409
|
+
label: string;
|
|
410
|
+
value: string;
|
|
411
|
+
};
|
|
412
|
+
type EntityParams = {
|
|
413
|
+
search: string;
|
|
414
|
+
filter: string;
|
|
415
|
+
sort: string;
|
|
416
|
+
order: 'asc' | 'desc';
|
|
417
|
+
view: EntitySectionView;
|
|
418
|
+
page: number;
|
|
419
|
+
pageSize: number;
|
|
420
|
+
};
|
|
421
|
+
type UseEntitySectionStateConfig = {
|
|
422
|
+
defaultSort?: string;
|
|
423
|
+
defaultOrder?: 'asc' | 'desc';
|
|
424
|
+
defaultPageSize?: number;
|
|
425
|
+
defaultView?: EntitySectionView;
|
|
426
|
+
searchPlaceholder?: string;
|
|
427
|
+
/** API query param name for search (default 'search') */
|
|
428
|
+
searchParamName?: string;
|
|
429
|
+
filterOptions?: FilterOption[];
|
|
430
|
+
sortOptions?: SortOption$2[];
|
|
431
|
+
views?: EntitySectionView[];
|
|
432
|
+
};
|
|
433
|
+
declare function useEntitySectionState(config?: UseEntitySectionStateConfig): {
|
|
434
|
+
search: string;
|
|
435
|
+
setSearch: React$1.Dispatch<React$1.SetStateAction<string>>;
|
|
436
|
+
filter: string;
|
|
437
|
+
setFilter: React$1.Dispatch<React$1.SetStateAction<string>>;
|
|
438
|
+
sort: string;
|
|
439
|
+
setSort: React$1.Dispatch<React$1.SetStateAction<string>>;
|
|
440
|
+
order: "desc" | "asc";
|
|
441
|
+
setOrder: React$1.Dispatch<React$1.SetStateAction<"desc" | "asc">>;
|
|
442
|
+
view: EntitySectionView;
|
|
443
|
+
setView: React$1.Dispatch<React$1.SetStateAction<EntitySectionView>>;
|
|
444
|
+
page: number;
|
|
445
|
+
setPage: React$1.Dispatch<React$1.SetStateAction<number>>;
|
|
446
|
+
pageSize: number;
|
|
447
|
+
setPageSize: React$1.Dispatch<React$1.SetStateAction<number>>;
|
|
448
|
+
setPageReset: () => void;
|
|
449
|
+
queryConfig: {
|
|
450
|
+
params: {
|
|
451
|
+
query: {
|
|
452
|
+
sort?: string | undefined;
|
|
453
|
+
order?: "desc" | "asc" | undefined;
|
|
454
|
+
filter?: string | undefined;
|
|
455
|
+
page: number;
|
|
456
|
+
limit: number;
|
|
457
|
+
};
|
|
458
|
+
};
|
|
459
|
+
};
|
|
460
|
+
params: EntityParams;
|
|
461
|
+
setParams: (update: Partial<EntityParams>) => void;
|
|
462
|
+
filterOptions: FilterOption[];
|
|
463
|
+
sortOptions: SortOption$2[];
|
|
464
|
+
views: EntitySectionView[];
|
|
465
|
+
};
|
|
466
|
+
|
|
467
|
+
type EntitySectionState = {
|
|
468
|
+
search: string;
|
|
469
|
+
setSearch: (v: string) => void;
|
|
470
|
+
filter: string;
|
|
471
|
+
setFilter: (v: string) => void;
|
|
472
|
+
sort: string;
|
|
473
|
+
setSort: (v: string) => void;
|
|
474
|
+
order: 'asc' | 'desc';
|
|
475
|
+
setOrder: (v: 'asc' | 'desc') => void;
|
|
476
|
+
view: EntitySectionView;
|
|
477
|
+
setView: (v: EntitySectionView) => void;
|
|
478
|
+
page: number;
|
|
479
|
+
setPage: (v: number) => void;
|
|
480
|
+
pageSize: number;
|
|
481
|
+
setPageSize: (v: number) => void;
|
|
482
|
+
setPageReset: () => void;
|
|
483
|
+
filterOptions: {
|
|
484
|
+
label: string;
|
|
485
|
+
value: string;
|
|
486
|
+
}[];
|
|
487
|
+
sortOptions: {
|
|
488
|
+
label: string;
|
|
489
|
+
value: string;
|
|
490
|
+
}[];
|
|
491
|
+
views: EntitySectionView[];
|
|
492
|
+
};
|
|
493
|
+
type EntitySectionConfig = {
|
|
494
|
+
searchPlaceholder?: string;
|
|
495
|
+
filterOptions?: {
|
|
496
|
+
label: string;
|
|
497
|
+
value: string;
|
|
498
|
+
}[];
|
|
499
|
+
sortOptions?: {
|
|
500
|
+
label: string;
|
|
501
|
+
value: string;
|
|
502
|
+
}[];
|
|
503
|
+
views?: EntitySectionView[];
|
|
504
|
+
};
|
|
505
|
+
type EntitySectionProps = {
|
|
506
|
+
title: ReactNode;
|
|
507
|
+
icon?: ReactNode;
|
|
508
|
+
actions?: ReactNode;
|
|
509
|
+
config?: EntitySectionConfig;
|
|
510
|
+
state: EntitySectionState;
|
|
511
|
+
onOpenChange?: (open: boolean) => void;
|
|
512
|
+
/** When false, the toolbar row (search, filter, sort, view) is not rendered */
|
|
513
|
+
showToolbar?: boolean;
|
|
514
|
+
children: (state: EntitySectionState) => ReactNode;
|
|
515
|
+
};
|
|
516
|
+
declare function EntitySection({ title, icon, actions, config, state, onOpenChange, showToolbar, children, }: EntitySectionProps): react_jsx_runtime.JSX.Element;
|
|
517
|
+
|
|
518
|
+
type EntitySelectorModalSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
519
|
+
type EntitySelectorModalProps = {
|
|
520
|
+
open: boolean;
|
|
521
|
+
onOpenChange: (open: boolean) => void;
|
|
522
|
+
title?: ReactNode;
|
|
523
|
+
size?: EntitySelectorModalSize;
|
|
524
|
+
contentClassName?: string;
|
|
525
|
+
footer?: ReactNode;
|
|
526
|
+
children: ReactNode;
|
|
527
|
+
};
|
|
528
|
+
declare function EntitySelectorModal({ open, onOpenChange, title, size, contentClassName, footer, children, }: EntitySelectorModalProps): react_jsx_runtime.JSX.Element;
|
|
529
|
+
|
|
530
|
+
type BaseItem = {
|
|
531
|
+
id: string;
|
|
532
|
+
};
|
|
533
|
+
type EntitySelectorColumn<T> = {
|
|
534
|
+
key: string;
|
|
535
|
+
header: ReactNode;
|
|
536
|
+
cell: (item: T) => ReactNode;
|
|
537
|
+
className?: string;
|
|
538
|
+
};
|
|
539
|
+
type EntitySelectorConfig<T extends BaseItem> = {
|
|
540
|
+
title: string;
|
|
541
|
+
modalSize?: EntitySelectorModalSize;
|
|
542
|
+
contentClassName?: string;
|
|
543
|
+
multiple?: boolean;
|
|
544
|
+
minSelect?: number;
|
|
545
|
+
maxSelect?: number;
|
|
546
|
+
entityName: string;
|
|
547
|
+
entityIcon: React.ComponentType<{
|
|
548
|
+
className?: string;
|
|
549
|
+
}>;
|
|
550
|
+
emptyTitle?: string;
|
|
551
|
+
emptyDescription?: string;
|
|
552
|
+
columns: EntitySelectorColumn<T>[];
|
|
553
|
+
columnCount?: number;
|
|
554
|
+
getItemLabel: (item: T) => string;
|
|
555
|
+
searchPlaceholder?: string;
|
|
556
|
+
filterOptions?: {
|
|
557
|
+
label: string;
|
|
558
|
+
value: string;
|
|
559
|
+
}[];
|
|
560
|
+
sortOptions?: {
|
|
561
|
+
label: string;
|
|
562
|
+
value: string;
|
|
563
|
+
}[];
|
|
564
|
+
showViewToggle?: boolean;
|
|
565
|
+
wrapHeaderInCard?: boolean;
|
|
566
|
+
renderCard?: (item: T, selected: boolean, onToggle: () => void) => ReactNode;
|
|
567
|
+
};
|
|
568
|
+
type EntitySelectorProps<T extends BaseItem> = {
|
|
569
|
+
trigger: ReactNode;
|
|
570
|
+
config: EntitySelectorConfig<T>;
|
|
571
|
+
onSelect: (items: T[]) => void;
|
|
572
|
+
items: T[];
|
|
573
|
+
total?: number;
|
|
574
|
+
isLoading?: boolean;
|
|
575
|
+
state: EntitySectionState;
|
|
576
|
+
};
|
|
577
|
+
declare function EntitySelector<T extends BaseItem>({ trigger, config, onSelect, items, total: totalProp, isLoading, state, }: EntitySelectorProps<T>): react_jsx_runtime.JSX.Element;
|
|
578
|
+
|
|
579
|
+
type SortOption$1 = {
|
|
272
580
|
label: string;
|
|
273
581
|
value: string;
|
|
274
582
|
};
|
|
275
583
|
type EntitySortProps = {
|
|
276
|
-
options: SortOption[];
|
|
584
|
+
options: SortOption$1[];
|
|
277
585
|
defaultSort?: string;
|
|
278
586
|
defaultOrder?: 'asc' | 'desc';
|
|
279
587
|
className?: string;
|
|
280
588
|
};
|
|
281
589
|
declare function EntitySort({ options, defaultSort, defaultOrder, className, }: EntitySortProps): react_jsx_runtime.JSX.Element;
|
|
282
590
|
|
|
283
|
-
type
|
|
591
|
+
type SortOption = {
|
|
592
|
+
label: string;
|
|
593
|
+
value: string;
|
|
594
|
+
};
|
|
595
|
+
type EntitySortStateProps = {
|
|
596
|
+
sort: string;
|
|
597
|
+
order: 'asc' | 'desc';
|
|
598
|
+
onSortChange: (v: string) => void;
|
|
599
|
+
onOrderChange: (v: 'asc' | 'desc') => void;
|
|
600
|
+
options: SortOption[];
|
|
601
|
+
className?: string;
|
|
602
|
+
};
|
|
603
|
+
declare function EntitySortState({ sort, order, onSortChange, onOrderChange, options, className, }: EntitySortStateProps): react_jsx_runtime.JSX.Element;
|
|
604
|
+
|
|
605
|
+
type ViewOption$1 = 'table' | 'card' | 'list';
|
|
284
606
|
type EntityViewToggleProps = {
|
|
285
|
-
views?: ViewOption[];
|
|
607
|
+
views?: ViewOption$1[];
|
|
286
608
|
className?: string;
|
|
287
609
|
};
|
|
288
610
|
declare function EntityViewToggle({ views, className, }: EntityViewToggleProps): react_jsx_runtime.JSX.Element;
|
|
289
611
|
|
|
612
|
+
type ViewOption = 'table' | 'card' | 'list';
|
|
613
|
+
type EntityViewToggleStateProps = {
|
|
614
|
+
value: ViewOption;
|
|
615
|
+
onValueChange: (v: ViewOption) => void;
|
|
616
|
+
views?: ViewOption[];
|
|
617
|
+
className?: string;
|
|
618
|
+
};
|
|
619
|
+
declare function EntityViewToggleState({ value, onValueChange, views, className, }: EntityViewToggleStateProps): react_jsx_runtime.JSX.Element;
|
|
620
|
+
|
|
290
621
|
type PageBodyProps = {
|
|
291
622
|
className?: string;
|
|
292
623
|
children: ReactNode;
|
|
@@ -302,10 +633,9 @@ declare function PageContainer({ className, children }: PageContainerProps): rea
|
|
|
302
633
|
type PageGoBackProps = {
|
|
303
634
|
onBack: () => void;
|
|
304
635
|
label?: string;
|
|
305
|
-
className?: string;
|
|
306
636
|
children?: ReactNode;
|
|
307
637
|
};
|
|
308
|
-
declare function PageGoBack({ onBack, label,
|
|
638
|
+
declare function PageGoBack({ onBack, label, children, }: PageGoBackProps): react_jsx_runtime.JSX.Element;
|
|
309
639
|
|
|
310
640
|
type PageSectionProps = {
|
|
311
641
|
title?: ReactNode;
|
|
@@ -332,12 +662,16 @@ declare function PageTitle({ icon, back, action, children, className, }: PageTit
|
|
|
332
662
|
type SectionProps = {
|
|
333
663
|
title: ReactNode;
|
|
334
664
|
children: ReactNode;
|
|
665
|
+
/** Shown in header before expand/collapse button, only when section is open */
|
|
666
|
+
actions?: ReactNode;
|
|
335
667
|
defaultOpen?: boolean;
|
|
668
|
+
lazy?: boolean;
|
|
669
|
+
onOpenChange?: (open: boolean) => void;
|
|
336
670
|
className?: string;
|
|
337
671
|
headerClassName?: string;
|
|
338
672
|
contentClassName?: string;
|
|
339
673
|
};
|
|
340
|
-
declare function Section({ title, children, defaultOpen, className, headerClassName, contentClassName, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
674
|
+
declare function Section({ title, children, actions, defaultOpen, lazy, onOpenChange, className, headerClassName, contentClassName, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
341
675
|
|
|
342
676
|
type ShellProps = {
|
|
343
677
|
sidebar: React$1.ReactNode;
|
|
@@ -484,29 +818,100 @@ type ThemeToggleProps = {
|
|
|
484
818
|
};
|
|
485
819
|
declare function ThemeToggle({ className }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
|
|
486
820
|
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
821
|
+
type AccordionProps = React$1.ComponentProps<typeof Accordion$1.Root> & {
|
|
822
|
+
variant?: 'default' | 'separated' | 'contained' | 'filled';
|
|
823
|
+
radius?: unknown;
|
|
824
|
+
chevronPosition?: 'left' | 'right';
|
|
825
|
+
chevronSize?: number | string;
|
|
826
|
+
chevronIconSize?: number | string;
|
|
827
|
+
chevron?: React$1.ReactNode | null;
|
|
828
|
+
disableChevronRotation?: boolean;
|
|
829
|
+
transitionDuration?: number;
|
|
830
|
+
order?: 2 | 3 | 4 | 5 | 6;
|
|
831
|
+
unstyled?: boolean;
|
|
832
|
+
};
|
|
833
|
+
declare function Accordion({ className, variant, chevronPosition, transitionDuration, unstyled, radius: _radius, chevronSize: _chevronSize, chevronIconSize: _chevronIconSize, chevron: _chevron, disableChevronRotation: _disableChevronRotation, order: _order, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
834
|
+
declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof Accordion$1.Item>): react_jsx_runtime.JSX.Element;
|
|
835
|
+
declare function AccordionTrigger({ className, children, chevron, chevronPosition, icon, ...props }: React$1.ComponentProps<typeof Accordion$1.Trigger> & {
|
|
836
|
+
chevron?: React$1.ReactNode | null;
|
|
837
|
+
chevronPosition?: 'left' | 'right';
|
|
838
|
+
icon?: React$1.ReactNode;
|
|
839
|
+
}): react_jsx_runtime.JSX.Element;
|
|
840
|
+
declare function AccordionContent({ className, children, ...props }: React$1.ComponentProps<typeof Accordion$1.Panel>): react_jsx_runtime.JSX.Element;
|
|
491
841
|
|
|
492
|
-
declare const
|
|
493
|
-
variant?: "
|
|
842
|
+
declare const actionIconVariants: (props?: ({
|
|
843
|
+
variant?: "secondary" | "destructive" | "default" | "outline" | "ghost" | "light" | null | undefined;
|
|
844
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
845
|
+
radius?: "xs" | "sm" | "md" | "lg" | "xl" | "full" | null | undefined;
|
|
494
846
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
495
|
-
|
|
847
|
+
type ActionIconProps = React$1.ComponentProps<'button'> & VariantProps<typeof actionIconVariants> & {
|
|
848
|
+
render?: useRender.RenderProp;
|
|
849
|
+
loading?: boolean;
|
|
850
|
+
color?: ComponentColor;
|
|
851
|
+
};
|
|
852
|
+
declare function ActionIcon({ className, variant, size, radius, color, render, loading, disabled, children, ...props }: ActionIconProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
853
|
+
|
|
854
|
+
type Position = {
|
|
855
|
+
top?: number;
|
|
856
|
+
bottom?: number;
|
|
857
|
+
left?: number;
|
|
858
|
+
right?: number;
|
|
859
|
+
};
|
|
860
|
+
type AffixProps = React$1.ComponentProps<'div'> & {
|
|
861
|
+
position: Position;
|
|
862
|
+
zIndex?: number;
|
|
863
|
+
withinPortal?: boolean;
|
|
864
|
+
};
|
|
865
|
+
declare function Affix({ className, position, zIndex, withinPortal, children, style, ...props }: AffixProps): react_jsx_runtime.JSX.Element;
|
|
866
|
+
|
|
867
|
+
type AlertProps = React$1.ComponentProps<'div'> & {
|
|
868
|
+
variant?: 'default' | 'destructive' | 'filled' | 'light' | 'outline';
|
|
869
|
+
radius?: unknown;
|
|
870
|
+
color?: unknown;
|
|
871
|
+
};
|
|
872
|
+
declare function Alert({ className, variant, radius: _radius, color: _color, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
496
873
|
declare function AlertTitle({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
497
874
|
declare function AlertDescription({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
declare function
|
|
501
|
-
declare function
|
|
502
|
-
declare function
|
|
503
|
-
declare function
|
|
875
|
+
declare function AlertAction({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
876
|
+
|
|
877
|
+
declare function AlertDialog({ ...props }: React$1.ComponentProps<typeof AlertDialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
878
|
+
declare function AlertDialogTrigger({ ...props }: React$1.ComponentProps<typeof AlertDialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
879
|
+
declare function AlertDialogPortal({ ...props }: React$1.ComponentProps<typeof AlertDialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
880
|
+
declare function AlertDialogOverlay({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Backdrop>): react_jsx_runtime.JSX.Element;
|
|
881
|
+
declare function AlertDialogContent({ className, size, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Popup> & {
|
|
882
|
+
size?: 'default' | 'sm';
|
|
883
|
+
}): react_jsx_runtime.JSX.Element;
|
|
504
884
|
declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
505
885
|
declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
506
|
-
declare function
|
|
507
|
-
declare function
|
|
508
|
-
declare function
|
|
509
|
-
declare function
|
|
886
|
+
declare function AlertDialogMedia({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
887
|
+
declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
888
|
+
declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
889
|
+
declare function AlertDialogAction({ className, variant, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Close> & {
|
|
890
|
+
variant?: 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link' | 'light';
|
|
891
|
+
}): react_jsx_runtime.JSX.Element;
|
|
892
|
+
declare function AlertDialogCancel({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
893
|
+
|
|
894
|
+
declare const anchorVariants: (props?: ({
|
|
895
|
+
variant?: "default" | "muted" | "gradient" | "subtle" | null | undefined;
|
|
896
|
+
underline?: "always" | "never" | "hover" | null | undefined;
|
|
897
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
898
|
+
weight?: "bold" | "normal" | "medium" | "semibold" | null | undefined;
|
|
899
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
900
|
+
type AnchorProps = React$1.ComponentProps<'a'> & VariantProps<typeof anchorVariants>;
|
|
901
|
+
declare function Anchor({ className, variant, underline, size, weight, children, href, ...props }: AnchorProps): react_jsx_runtime.JSX.Element;
|
|
902
|
+
|
|
903
|
+
type AngleSliderProps = React$1.ComponentProps<'div'> & {
|
|
904
|
+
value?: number;
|
|
905
|
+
defaultValue?: number;
|
|
906
|
+
onChange?: (value: number) => void;
|
|
907
|
+
onChangeEnd?: (value: number) => void;
|
|
908
|
+
size?: number;
|
|
909
|
+
step?: number;
|
|
910
|
+
withLabel?: boolean;
|
|
911
|
+
formatLabel?: (value: number) => React$1.ReactNode;
|
|
912
|
+
disabled?: boolean;
|
|
913
|
+
};
|
|
914
|
+
declare function AngleSlider({ className, value: valueProp, defaultValue, onChange, onChangeEnd, size, step, withLabel, formatLabel, disabled, ...props }: AngleSliderProps): react_jsx_runtime.JSX.Element;
|
|
510
915
|
|
|
511
916
|
type AnimatedTabItem = {
|
|
512
917
|
name: string;
|
|
@@ -528,51 +933,94 @@ type AnimatedTabsProps = {
|
|
|
528
933
|
className?: string;
|
|
529
934
|
linkComponent?: ComponentType<LinkComponentProps>;
|
|
530
935
|
};
|
|
531
|
-
declare function AnimatedTabs({ tabs, activeTab: controlledActiveTab, defaultTab, onTabChange, className, linkComponent:
|
|
936
|
+
declare function AnimatedTabs({ tabs, activeTab: controlledActiveTab, defaultTab, onTabChange, className, linkComponent: linkProp, }: AnimatedTabsProps): react_jsx_runtime.JSX.Element;
|
|
532
937
|
|
|
533
|
-
|
|
938
|
+
type AspectRatioProps = React$1.ComponentProps<'div'> & {
|
|
939
|
+
ratio?: number;
|
|
940
|
+
};
|
|
941
|
+
declare function AspectRatio({ className, ratio, style, children, ...props }: AspectRatioProps): react_jsx_runtime.JSX.Element;
|
|
534
942
|
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
943
|
+
type AvatarProps = React$1.ComponentProps<typeof Avatar$1.Root> & {
|
|
944
|
+
size?: ComponentSize;
|
|
945
|
+
radius?: ComponentRadius;
|
|
946
|
+
};
|
|
947
|
+
declare function Avatar({ className, size, radius: _radius, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
948
|
+
declare function AvatarImage({ className, ...props }: React$1.ComponentProps<typeof Avatar$1.Image>): react_jsx_runtime.JSX.Element;
|
|
949
|
+
declare function AvatarFallback({ className, ...props }: React$1.ComponentProps<typeof Avatar$1.Fallback>): react_jsx_runtime.JSX.Element;
|
|
950
|
+
|
|
951
|
+
type BackgroundImageProps = React$1.ComponentProps<'div'> & {
|
|
952
|
+
src: string;
|
|
953
|
+
radius?: ComponentRadius;
|
|
954
|
+
};
|
|
955
|
+
declare function BackgroundImage({ className, src, radius, style, ...props }: BackgroundImageProps): react_jsx_runtime.JSX.Element;
|
|
538
956
|
|
|
539
957
|
declare const badgeVariants: (props?: ({
|
|
540
|
-
variant?: "
|
|
958
|
+
variant?: "link" | "secondary" | "destructive" | "default" | "outline" | "ghost" | "light" | "dot" | "success" | "warning" | null | undefined;
|
|
959
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
960
|
+
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
961
|
+
circle?: boolean | null | undefined;
|
|
541
962
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
963
|
+
type BadgeProps = React$1.ComponentProps<'span'> & VariantProps<typeof badgeVariants> & {
|
|
964
|
+
render?: useRender.RenderProp;
|
|
965
|
+
leftSection?: React$1.ReactNode;
|
|
966
|
+
rightSection?: React$1.ReactNode;
|
|
967
|
+
color?: ComponentColor;
|
|
968
|
+
};
|
|
969
|
+
declare function Badge({ className, variant, size, radius, circle, color, render, leftSection, rightSection, children, ...props }: BadgeProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
970
|
+
|
|
971
|
+
declare const blockquoteVariants: (props?: ({
|
|
972
|
+
variant?: "primary" | "secondary" | "default" | null | undefined;
|
|
973
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
974
|
+
declare function Blockquote({ className, variant, ...props }: React$1.ComponentProps<'blockquote'> & VariantProps<typeof blockquoteVariants>): react_jsx_runtime.JSX.Element;
|
|
545
975
|
|
|
546
976
|
declare function Breadcrumb({ ...props }: React$1.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element;
|
|
547
977
|
declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<'ol'>): react_jsx_runtime.JSX.Element;
|
|
548
978
|
declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
549
|
-
declare function BreadcrumbLink({
|
|
550
|
-
|
|
551
|
-
}):
|
|
979
|
+
declare function BreadcrumbLink({ className, render, ...props }: React$1.ComponentProps<'a'> & {
|
|
980
|
+
render?: useRender.RenderProp;
|
|
981
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
552
982
|
declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
553
983
|
declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
554
984
|
declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
555
985
|
|
|
986
|
+
declare const burgerVariants: (props?: ({
|
|
987
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
988
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
989
|
+
type BurgerProps = Omit<React$1.ComponentProps<'button'>, 'children'> & VariantProps<typeof burgerVariants> & {
|
|
990
|
+
opened: boolean;
|
|
991
|
+
ariaLabel?: string;
|
|
992
|
+
};
|
|
993
|
+
declare function Burger({ className, size, opened, ariaLabel, ...props }: BurgerProps): react_jsx_runtime.JSX.Element;
|
|
994
|
+
|
|
556
995
|
declare const buttonVariants: (props?: ({
|
|
557
|
-
variant?: "link" | "
|
|
558
|
-
size?: "
|
|
996
|
+
variant?: "link" | "secondary" | "destructive" | "default" | "outline" | "ghost" | "light" | null | undefined;
|
|
997
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | "icon-xl" | null | undefined;
|
|
998
|
+
radius?: "xs" | "sm" | "md" | "lg" | "xl" | "full" | null | undefined;
|
|
999
|
+
fullWidth?: boolean | null | undefined;
|
|
559
1000
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
560
|
-
type
|
|
561
|
-
|
|
1001
|
+
type ButtonLoaderProps = {
|
|
1002
|
+
size?: 'sm' | 'md' | 'lg';
|
|
1003
|
+
className?: string;
|
|
1004
|
+
};
|
|
1005
|
+
type ButtonProps = Button$1.Props & VariantProps<typeof buttonVariants> & {
|
|
562
1006
|
leftIcon?: React$1.ReactNode;
|
|
563
1007
|
rightIcon?: React$1.ReactNode;
|
|
1008
|
+
leftSection?: React$1.ReactNode;
|
|
1009
|
+
rightSection?: React$1.ReactNode;
|
|
1010
|
+
loading?: boolean;
|
|
1011
|
+
loaderProps?: ButtonLoaderProps;
|
|
1012
|
+
color?: ComponentColor;
|
|
564
1013
|
};
|
|
565
|
-
declare function Button({ className, variant, size,
|
|
1014
|
+
declare function Button({ className, variant, size, radius, fullWidth, color, leftIcon, rightIcon, leftSection, rightSection, loading, loaderProps, disabled, children, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
566
1015
|
|
|
567
|
-
declare function Separator({ className, orientation,
|
|
1016
|
+
declare function Separator({ className, orientation, ...props }: React$1.ComponentProps<typeof Separator$1>): react_jsx_runtime.JSX.Element;
|
|
568
1017
|
|
|
569
|
-
declare
|
|
570
|
-
orientation?:
|
|
571
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
572
|
-
declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<'fieldset'> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime.JSX.Element;
|
|
573
|
-
declare function ButtonGroupText({ className, asChild, ...props }: React.ComponentProps<'div'> & {
|
|
574
|
-
asChild?: boolean;
|
|
1018
|
+
declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<'fieldset'> & {
|
|
1019
|
+
orientation?: 'horizontal' | 'vertical';
|
|
575
1020
|
}): react_jsx_runtime.JSX.Element;
|
|
1021
|
+
declare function ButtonGroupText({ className, render, ...props }: React.ComponentProps<'div'> & {
|
|
1022
|
+
render?: useRender.RenderProp;
|
|
1023
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
576
1024
|
declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
577
1025
|
|
|
578
1026
|
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
|
|
@@ -580,7 +1028,14 @@ declare function Calendar({ className, classNames, showOutsideDays, captionLayou
|
|
|
580
1028
|
}): react_jsx_runtime.JSX.Element;
|
|
581
1029
|
declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
|
|
582
1030
|
|
|
583
|
-
|
|
1031
|
+
type CardProps = React$1.ComponentProps<'div'> & {
|
|
1032
|
+
size?: 'default' | 'sm';
|
|
1033
|
+
padding?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1034
|
+
radius?: ComponentRadius;
|
|
1035
|
+
withBorder?: boolean;
|
|
1036
|
+
variant?: 'default' | 'outline' | 'filled';
|
|
1037
|
+
};
|
|
1038
|
+
declare function Card({ className, children, size, padding, radius, withBorder, variant, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
584
1039
|
declare function CardHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
585
1040
|
declare function CardTitle({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
586
1041
|
declare function CardDescription({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
@@ -604,6 +1059,11 @@ declare function CarouselItem({ className, ...props }: React$1.ComponentProps<'f
|
|
|
604
1059
|
declare function CarouselPrevious({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
605
1060
|
declare function CarouselNext({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
606
1061
|
|
|
1062
|
+
type CenterProps = React$1.ComponentProps<'div'> & {
|
|
1063
|
+
inline?: boolean;
|
|
1064
|
+
};
|
|
1065
|
+
declare function Center({ className, inline, children, ...props }: CenterProps): react_jsx_runtime.JSX.Element;
|
|
1066
|
+
|
|
607
1067
|
declare const THEMES: {
|
|
608
1068
|
readonly light: "";
|
|
609
1069
|
readonly dark: ".dark";
|
|
@@ -642,63 +1102,254 @@ declare function ChartLegendContent({ className, hideIcon, payload, verticalAlig
|
|
|
642
1102
|
nameKey?: string;
|
|
643
1103
|
}): react_jsx_runtime.JSX.Element | null;
|
|
644
1104
|
|
|
645
|
-
|
|
1105
|
+
type CheckboxProps = React$1.ComponentProps<typeof Checkbox$1.Root> & {
|
|
1106
|
+
size?: ComponentSize;
|
|
1107
|
+
color?: ComponentColor;
|
|
1108
|
+
};
|
|
1109
|
+
declare function Checkbox({ className, size, color: _color, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
1110
|
+
|
|
1111
|
+
declare const chipVariants: (props?: ({
|
|
1112
|
+
variant?: "input" | "secondary" | "default" | "outline" | null | undefined;
|
|
1113
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1114
|
+
type ChipProps = React$1.ComponentProps<'div'> & VariantProps<typeof chipVariants> & {
|
|
1115
|
+
onRemove?: () => void;
|
|
1116
|
+
removable?: boolean;
|
|
1117
|
+
};
|
|
1118
|
+
declare function Chip({ className, variant, onRemove, removable, children, ...props }: ChipProps): react_jsx_runtime.JSX.Element;
|
|
1119
|
+
|
|
1120
|
+
type CloseButtonProps = Omit<React$1.ComponentProps<typeof Button>, 'children'> & {
|
|
1121
|
+
iconSize?: number;
|
|
1122
|
+
};
|
|
1123
|
+
declare function CloseButton({ className, size, variant, iconSize, ...props }: CloseButtonProps): react_jsx_runtime.JSX.Element;
|
|
1124
|
+
|
|
1125
|
+
declare const codeVariants: (props?: ({
|
|
1126
|
+
variant?: "inline" | "block" | null | undefined;
|
|
1127
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1128
|
+
declare function Code({ className, variant, ...props }: React$1.ComponentProps<'code'> & VariantProps<typeof codeVariants>): react_jsx_runtime.JSX.Element;
|
|
1129
|
+
|
|
1130
|
+
declare function Collapsible({ ...props }: React.ComponentProps<typeof Collapsible$1.Root>): react_jsx_runtime.JSX.Element;
|
|
1131
|
+
declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof Collapsible$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1132
|
+
declare function CollapsibleContent({ className, ...props }: React.ComponentProps<typeof Collapsible$1.Panel>): react_jsx_runtime.JSX.Element;
|
|
1133
|
+
|
|
1134
|
+
declare function Input({ className, type, ...props }: React$1.ComponentProps<'input'>): react_jsx_runtime.JSX.Element;
|
|
1135
|
+
|
|
1136
|
+
declare function Label({ className, ...props }: React$1.ComponentProps<'label'>): react_jsx_runtime.JSX.Element;
|
|
1137
|
+
|
|
1138
|
+
declare function FieldSet({ className, ...props }: React.ComponentProps<'fieldset'>): react_jsx_runtime.JSX.Element;
|
|
1139
|
+
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<'legend'> & {
|
|
1140
|
+
variant?: 'legend' | 'label';
|
|
1141
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1142
|
+
declare function FieldGroup({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1143
|
+
declare const fieldVariants: (props?: ({
|
|
1144
|
+
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
1145
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1146
|
+
declare function Field({ className, orientation, ...props }: React.ComponentProps<'fieldset'> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
|
|
1147
|
+
declare function FieldContent({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1148
|
+
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
|
|
1149
|
+
declare function FieldTitle({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1150
|
+
declare function FieldDescription({ className, ...props }: React.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
1151
|
+
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<'div'> & {
|
|
1152
|
+
children?: React.ReactNode;
|
|
1153
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1154
|
+
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<'div'> & {
|
|
1155
|
+
errors?: Array<{
|
|
1156
|
+
message?: string;
|
|
1157
|
+
} | undefined>;
|
|
1158
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
646
1159
|
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
1160
|
+
type InputWrapperProps = {
|
|
1161
|
+
/** Input element or component to wrap */
|
|
1162
|
+
children: React$1.ReactNode;
|
|
1163
|
+
/** Label text */
|
|
1164
|
+
label?: React$1.ReactNode;
|
|
1165
|
+
/** Description text (helper text) */
|
|
1166
|
+
description?: React$1.ReactNode;
|
|
1167
|
+
/** Error message or array of errors */
|
|
1168
|
+
error?: React$1.ReactNode | Array<{
|
|
1169
|
+
message?: string;
|
|
1170
|
+
} | undefined>;
|
|
1171
|
+
/** Adds required attribute to the input and asterisk to label */
|
|
1172
|
+
required?: boolean;
|
|
1173
|
+
/** Shows asterisk on label without required attribute */
|
|
1174
|
+
withAsterisk?: boolean;
|
|
1175
|
+
/** Controls order of elements */
|
|
1176
|
+
inputWrapperOrder?: InputWrapperOrder;
|
|
1177
|
+
/** Props for label */
|
|
1178
|
+
labelProps?: React$1.ComponentProps<typeof FieldLabel>;
|
|
1179
|
+
/** Props for description */
|
|
1180
|
+
descriptionProps?: React$1.ComponentProps<typeof FieldDescription>;
|
|
1181
|
+
/** Props for error */
|
|
1182
|
+
errorProps?: React$1.ComponentProps<typeof FieldError>;
|
|
1183
|
+
/** Input container wrapper function */
|
|
1184
|
+
inputContainer?: (children: React$1.ReactNode) => React$1.ReactNode;
|
|
1185
|
+
/** Disabled state (passed to Field) */
|
|
1186
|
+
disabled?: boolean;
|
|
1187
|
+
/** Class name for wrapper */
|
|
1188
|
+
className?: string;
|
|
1189
|
+
};
|
|
1190
|
+
declare function InputWrapper({ children, label, description, error, required, withAsterisk, inputWrapperOrder, labelProps, descriptionProps, errorProps, inputContainer, disabled, className, }: InputWrapperProps): react_jsx_runtime.JSX.Element;
|
|
1191
|
+
|
|
1192
|
+
type ColorInputProps = Omit<React$1.ComponentProps<typeof Input>, 'type' | 'value' | 'defaultValue' | 'onChange'> & Omit<InputWrapperProps, 'children'> & {
|
|
1193
|
+
value?: string;
|
|
1194
|
+
defaultValue?: string;
|
|
1195
|
+
onChange?: (value: string) => void;
|
|
1196
|
+
onValueChange?: (value: string) => void;
|
|
1197
|
+
onChangeEnd?: (value: string) => void;
|
|
1198
|
+
format?: ColorFormat;
|
|
1199
|
+
size?: ComponentSize;
|
|
1200
|
+
/** If true, input value resets to last valid on blur. @default true */
|
|
1201
|
+
fixOnBlur?: boolean;
|
|
1202
|
+
/** If true, user can only pick via picker/swatches, not type. */
|
|
1203
|
+
disallowInput?: boolean;
|
|
1204
|
+
/** Show color preview swatch on the left. @default true */
|
|
1205
|
+
withPreview?: boolean;
|
|
1206
|
+
/** Show eye dropper button. @default true when supported */
|
|
1207
|
+
withEyeDropper?: boolean;
|
|
1208
|
+
eyeDropperIcon?: React$1.ReactNode;
|
|
1209
|
+
/** Close dropdown when a swatch is clicked. @default false */
|
|
1210
|
+
closeOnColorSwatchClick?: boolean;
|
|
1211
|
+
/** Preset swatches in dropdown */
|
|
1212
|
+
swatches?: string[];
|
|
1213
|
+
swatchesPerRow?: number;
|
|
1214
|
+
/** Show saturation/hue/alpha picker in dropdown. @default true */
|
|
1215
|
+
withPicker?: boolean;
|
|
1216
|
+
/** When false, no dropdown popover (e.g. when used inside ColorPicker). @default true */
|
|
1217
|
+
withPopover?: boolean;
|
|
1218
|
+
};
|
|
1219
|
+
declare const ColorInput: React$1.ForwardRefExoticComponent<Omit<ColorInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1220
|
+
|
|
1221
|
+
type ColorPickerProps = Omit<React$1.ComponentProps<typeof ColorInput>, 'label' | 'description' | 'error' | 'onChange' | 'onValueChange' | 'size'> & Omit<InputWrapperProps, 'children'> & {
|
|
1222
|
+
size?: ComponentSize;
|
|
1223
|
+
value?: string;
|
|
1224
|
+
onChange?: (value: string) => void;
|
|
1225
|
+
onChangeEnd?: (value: string) => void;
|
|
1226
|
+
/** hex | hexa | rgb | rgba | hsl | hsla */
|
|
1227
|
+
format?: ColorFormat;
|
|
1228
|
+
/** Show saturation + hue (+ alpha) picker. false = swatches only */
|
|
1229
|
+
withPicker?: boolean;
|
|
1230
|
+
fullWidth?: boolean;
|
|
1231
|
+
/** Preset colors */
|
|
1232
|
+
swatches?: string[];
|
|
1233
|
+
swatchesPerRow?: number;
|
|
1234
|
+
/** Called when a swatch is clicked (e.g. to close parent dropdown) */
|
|
1235
|
+
onColorSwatchClick?: () => void;
|
|
1236
|
+
saturationLabel?: string;
|
|
1237
|
+
hueLabel?: string;
|
|
1238
|
+
alphaLabel?: string;
|
|
1239
|
+
};
|
|
1240
|
+
declare function ColorPicker({ label, description, error, required, withAsterisk, inputWrapperOrder, labelProps, descriptionProps, errorProps, disabled, className, size, format, withPicker, fullWidth, swatches, swatchesPerRow, onColorSwatchClick, value, onChange, onChangeEnd, saturationLabel, hueLabel, alphaLabel, ...inputProps }: ColorPickerProps): react_jsx_runtime.JSX.Element;
|
|
1241
|
+
|
|
1242
|
+
type ColorSwatchProps = React$1.ComponentProps<'div'> & {
|
|
1243
|
+
color: string;
|
|
1244
|
+
size?: number | string;
|
|
1245
|
+
radius?: ComponentRadius;
|
|
1246
|
+
withShadow?: boolean;
|
|
1247
|
+
};
|
|
1248
|
+
declare function ColorSwatch({ className, color, size, radius, withShadow, children, style, ...props }: ColorSwatchProps): react_jsx_runtime.JSX.Element;
|
|
1249
|
+
|
|
1250
|
+
type ComboboxOption = {
|
|
1251
|
+
value: string;
|
|
1252
|
+
label: string;
|
|
1253
|
+
disabled?: boolean;
|
|
1254
|
+
};
|
|
1255
|
+
type ComboboxProps = Omit<Combobox$1.Root.Props<string>, 'children' | 'onValueChange' | 'value' | 'inputValue' | 'onInputValueChange'> & {
|
|
1256
|
+
options: ComboboxOption[];
|
|
1257
|
+
value?: string | null;
|
|
1258
|
+
onValueChange?: (value: string | null) => void;
|
|
1259
|
+
placeholder?: string;
|
|
1260
|
+
emptyText?: string;
|
|
1261
|
+
disabled?: boolean;
|
|
1262
|
+
showClear?: boolean;
|
|
1263
|
+
className?: string;
|
|
1264
|
+
};
|
|
1265
|
+
declare function Combobox({ options, value, onValueChange, placeholder, emptyText, disabled, showClear, className, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
|
|
650
1266
|
|
|
651
|
-
declare function Dialog({ ...props }: React$1.ComponentProps<typeof
|
|
652
|
-
declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof
|
|
653
|
-
declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof
|
|
654
|
-
declare function DialogClose({ ...props }: React$1.ComponentProps<typeof
|
|
655
|
-
declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof
|
|
656
|
-
declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof
|
|
1267
|
+
declare function Dialog({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
1268
|
+
declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1269
|
+
declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
1270
|
+
declare function DialogClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
1271
|
+
declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Backdrop>): react_jsx_runtime.JSX.Element;
|
|
1272
|
+
declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog$1.Popup> & {
|
|
657
1273
|
showCloseButton?: boolean;
|
|
658
1274
|
}): react_jsx_runtime.JSX.Element;
|
|
659
1275
|
declare function DialogHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
660
1276
|
declare function DialogFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
661
|
-
declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof
|
|
662
|
-
declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof
|
|
1277
|
+
declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
1278
|
+
declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
663
1279
|
|
|
664
|
-
|
|
665
|
-
|
|
1280
|
+
type CommandProps = Omit<React$1.ComponentProps<typeof Autocomplete.Root>, 'children'> & {
|
|
1281
|
+
className?: string;
|
|
1282
|
+
children?: React$1.ReactNode;
|
|
1283
|
+
};
|
|
1284
|
+
declare function Command({ className, children, ...props }: CommandProps): react_jsx_runtime.JSX.Element;
|
|
1285
|
+
declare function CommandDialog({ title, description, children, className, showCloseButton, commandProps, ...props }: Omit<React$1.ComponentProps<typeof Dialog>, 'children'> & {
|
|
666
1286
|
title?: string;
|
|
667
1287
|
description?: string;
|
|
668
1288
|
className?: string;
|
|
669
1289
|
showCloseButton?: boolean;
|
|
1290
|
+
commandProps?: Omit<React$1.ComponentProps<typeof Autocomplete.Root>, 'children'>;
|
|
1291
|
+
children?: React$1.ReactNode;
|
|
1292
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1293
|
+
declare function CommandInput({ className, onValueChange, onChange, ...props }: React$1.ComponentProps<typeof Autocomplete.Input> & {
|
|
1294
|
+
onValueChange?: (value: string) => void;
|
|
1295
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1296
|
+
declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Autocomplete.List>): react_jsx_runtime.JSX.Element;
|
|
1297
|
+
declare function CommandEmpty({ className, ...props }: React$1.ComponentProps<typeof Autocomplete.Empty>): react_jsx_runtime.JSX.Element;
|
|
1298
|
+
type CommandGroupProps = Omit<React$1.ComponentProps<typeof Autocomplete.Group>, 'children'> & {
|
|
1299
|
+
heading?: string;
|
|
1300
|
+
children?: React$1.ReactNode | ((item: unknown, index: number) => React$1.ReactNode);
|
|
1301
|
+
};
|
|
1302
|
+
declare function CommandGroup({ className, heading, items, children, ...props }: CommandGroupProps): react_jsx_runtime.JSX.Element;
|
|
1303
|
+
declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
1304
|
+
declare function CommandItem({ className, onSelect, onClick, ...props }: React$1.ComponentProps<typeof Autocomplete.Item> & {
|
|
1305
|
+
onSelect?: React$1.MouseEventHandler<HTMLElement>;
|
|
670
1306
|
}): react_jsx_runtime.JSX.Element;
|
|
671
|
-
declare function CommandInput({ className, ...props }: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
|
|
672
|
-
declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
|
|
673
|
-
declare function CommandEmpty({ ...props }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
|
|
674
|
-
declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
|
|
675
|
-
declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
676
|
-
declare function CommandItem({ className, ...props }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
|
|
677
1307
|
declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
678
1308
|
|
|
679
|
-
declare
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
1309
|
+
declare const containerVariants: (props?: ({
|
|
1310
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "fluid" | null | undefined;
|
|
1311
|
+
px?: "none" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
1312
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1313
|
+
type ContainerProps = React$1.ComponentProps<'div'> & VariantProps<typeof containerVariants> & {
|
|
1314
|
+
fluid?: boolean;
|
|
1315
|
+
};
|
|
1316
|
+
declare function Container({ className, size, px, fluid, children, ...props }: ContainerProps): react_jsx_runtime.JSX.Element;
|
|
1317
|
+
|
|
1318
|
+
declare function ContextMenu({ ...props }: React$1.ComponentProps<typeof ContextMenu$1.Root>): react_jsx_runtime.JSX.Element;
|
|
1319
|
+
declare function ContextMenuTrigger({ className, ...props }: React$1.ComponentProps<typeof ContextMenu$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1320
|
+
declare function ContextMenuGroup({ ...props }: React$1.ComponentProps<typeof ContextMenu$1.Group>): react_jsx_runtime.JSX.Element;
|
|
1321
|
+
declare function ContextMenuPortal({ ...props }: React$1.ComponentProps<typeof ContextMenu$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
1322
|
+
declare function ContextMenuSub({ ...props }: React$1.ComponentProps<typeof ContextMenu$1.SubmenuRoot>): react_jsx_runtime.JSX.Element;
|
|
1323
|
+
declare function ContextMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof ContextMenu$1.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
1324
|
+
declare function ContextMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof ContextMenu$1.SubmenuTrigger> & {
|
|
686
1325
|
inset?: boolean;
|
|
687
1326
|
}): react_jsx_runtime.JSX.Element;
|
|
688
|
-
declare function ContextMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof
|
|
689
|
-
declare function ContextMenuContent({ className, ...props }: React$1.ComponentProps<typeof
|
|
690
|
-
declare function
|
|
1327
|
+
declare function ContextMenuSubContent({ className, align, alignOffset, side, sideOffset, ...props }: React$1.ComponentProps<typeof ContextMenu$1.Popup> & Pick<React$1.ComponentProps<typeof ContextMenu$1.Positioner>, 'align' | 'alignOffset' | 'side' | 'sideOffset'>): react_jsx_runtime.JSX.Element;
|
|
1328
|
+
declare function ContextMenuContent({ className, ...props }: React$1.ComponentProps<typeof ContextMenu$1.Popup>): react_jsx_runtime.JSX.Element;
|
|
1329
|
+
declare function ContextMenuPositioner({ align, alignOffset, side, sideOffset, className, ...props }: React$1.ComponentProps<typeof ContextMenu$1.Positioner>): react_jsx_runtime.JSX.Element;
|
|
1330
|
+
declare function ContextMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof ContextMenu$1.Item> & {
|
|
691
1331
|
inset?: boolean;
|
|
692
1332
|
variant?: 'default' | 'destructive';
|
|
693
1333
|
}): react_jsx_runtime.JSX.Element;
|
|
694
|
-
declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof
|
|
695
|
-
|
|
696
|
-
|
|
1334
|
+
declare function ContextMenuCheckboxItem({ className, children, checked, inset, ...props }: React$1.ComponentProps<typeof ContextMenu$1.CheckboxItem> & {
|
|
1335
|
+
inset?: boolean;
|
|
1336
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1337
|
+
declare function ContextMenuRadioItem({ className, children, inset, ...props }: React$1.ComponentProps<typeof ContextMenu$1.RadioItem> & {
|
|
697
1338
|
inset?: boolean;
|
|
698
1339
|
}): react_jsx_runtime.JSX.Element;
|
|
699
|
-
declare function
|
|
1340
|
+
declare function ContextMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof ContextMenu$1.GroupLabel> & {
|
|
1341
|
+
inset?: boolean;
|
|
1342
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1343
|
+
declare function ContextMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof ContextMenu$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
700
1344
|
declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
701
1345
|
|
|
1346
|
+
type CopyButtonProps = Omit<React$1.ComponentProps<typeof Button>, 'onClick' | 'children'> & {
|
|
1347
|
+
value: string;
|
|
1348
|
+
timeout?: number;
|
|
1349
|
+
children?: React$1.ReactNode;
|
|
1350
|
+
};
|
|
1351
|
+
declare function CopyButton({ value, timeout, children, size, variant, className, ...props }: CopyButtonProps): react_jsx_runtime.JSX.Element;
|
|
1352
|
+
|
|
702
1353
|
type DataTableProps<TData, TValue> = {
|
|
703
1354
|
columns: ColumnDef<TData, TValue>[];
|
|
704
1355
|
data: TData[];
|
|
@@ -748,39 +1399,46 @@ type DataTableViewOptionsProps<TData> = {
|
|
|
748
1399
|
};
|
|
749
1400
|
declare function DataTableViewOptions<TData>({ table, }: DataTableViewOptionsProps<TData>): react_jsx_runtime.JSX.Element;
|
|
750
1401
|
|
|
751
|
-
declare function Drawer({ ...props }: React$1.ComponentProps<typeof
|
|
752
|
-
declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof
|
|
753
|
-
declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof
|
|
754
|
-
declare function DrawerClose({ ...props }: React$1.ComponentProps<typeof
|
|
755
|
-
declare function DrawerOverlay({ className, ...props }: React$1.ComponentProps<typeof
|
|
756
|
-
declare function DrawerContent({ className, children, ...props }: React$1.ComponentProps<typeof
|
|
1402
|
+
declare function Drawer({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
1403
|
+
declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1404
|
+
declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
1405
|
+
declare function DrawerClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
1406
|
+
declare function DrawerOverlay({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Backdrop>): react_jsx_runtime.JSX.Element;
|
|
1407
|
+
declare function DrawerContent({ className, children, side, ...props }: React$1.ComponentProps<typeof Dialog$1.Popup> & {
|
|
1408
|
+
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
1409
|
+
}): react_jsx_runtime.JSX.Element;
|
|
757
1410
|
declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
758
1411
|
declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
759
|
-
declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof
|
|
760
|
-
declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof
|
|
761
|
-
|
|
762
|
-
declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof
|
|
763
|
-
declare function DropdownMenuPortal({ ...props }: React$1.ComponentProps<typeof
|
|
764
|
-
declare function DropdownMenuTrigger({ ...props }: React$1.ComponentProps<typeof
|
|
765
|
-
declare function DropdownMenuContent({ className,
|
|
766
|
-
declare function
|
|
767
|
-
declare function
|
|
1412
|
+
declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
1413
|
+
declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
1414
|
+
|
|
1415
|
+
declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof Menu.Root>): react_jsx_runtime.JSX.Element;
|
|
1416
|
+
declare function DropdownMenuPortal({ ...props }: React$1.ComponentProps<typeof Menu.Portal>): react_jsx_runtime.JSX.Element;
|
|
1417
|
+
declare function DropdownMenuTrigger({ ...props }: React$1.ComponentProps<typeof Menu.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1418
|
+
declare function DropdownMenuContent({ className, ...props }: React$1.ComponentProps<typeof Menu.Popup>): react_jsx_runtime.JSX.Element;
|
|
1419
|
+
declare function DropdownMenuPositioner({ align, alignOffset, side, sideOffset, className, ...props }: React$1.ComponentProps<typeof Menu.Positioner>): react_jsx_runtime.JSX.Element;
|
|
1420
|
+
declare function DropdownMenuGroup({ ...props }: React$1.ComponentProps<typeof Menu.Group>): react_jsx_runtime.JSX.Element;
|
|
1421
|
+
declare function DropdownMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof Menu.Item> & {
|
|
768
1422
|
inset?: boolean;
|
|
769
1423
|
variant?: 'default' | 'destructive';
|
|
770
1424
|
}): react_jsx_runtime.JSX.Element;
|
|
771
|
-
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof
|
|
772
|
-
declare function DropdownMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
773
|
-
declare function DropdownMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
774
|
-
declare function DropdownMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
1425
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, inset, ...props }: React$1.ComponentProps<typeof Menu.CheckboxItem> & {
|
|
775
1426
|
inset?: boolean;
|
|
776
1427
|
}): react_jsx_runtime.JSX.Element;
|
|
777
|
-
declare function
|
|
1428
|
+
declare function DropdownMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof Menu.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
1429
|
+
declare function DropdownMenuRadioItem({ className, children, inset, ...props }: React$1.ComponentProps<typeof Menu.RadioItem> & {
|
|
1430
|
+
inset?: boolean;
|
|
1431
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1432
|
+
declare function DropdownMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof Menu.GroupLabel> & {
|
|
1433
|
+
inset?: boolean;
|
|
1434
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1435
|
+
declare function DropdownMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof Menu.Separator>): react_jsx_runtime.JSX.Element;
|
|
778
1436
|
declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
779
|
-
declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof
|
|
780
|
-
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof
|
|
1437
|
+
declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof Menu.SubmenuRoot>): react_jsx_runtime.JSX.Element;
|
|
1438
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof Menu.SubmenuTrigger> & {
|
|
781
1439
|
inset?: boolean;
|
|
782
1440
|
}): react_jsx_runtime.JSX.Element;
|
|
783
|
-
declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof
|
|
1441
|
+
declare function DropdownMenuSubContent({ className, align, alignOffset, side, sideOffset, ...props }: React$1.ComponentProps<typeof Menu.Popup> & Pick<React$1.ComponentProps<typeof Menu.Positioner>, 'align' | 'alignOffset' | 'side' | 'sideOffset'>): react_jsx_runtime.JSX.Element;
|
|
784
1442
|
|
|
785
1443
|
declare function Empty({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
786
1444
|
declare function EmptyHeader({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
@@ -792,29 +1450,49 @@ declare function EmptyTitle({ className, ...props }: React.ComponentProps<'div'>
|
|
|
792
1450
|
declare function EmptyDescription({ className, ...props }: React.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
793
1451
|
declare function EmptyContent({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
794
1452
|
|
|
795
|
-
|
|
1453
|
+
type FileButtonProps = Omit<React$1.ComponentProps<typeof Button>, 'onChange' | 'onClick'> & {
|
|
1454
|
+
onChange: (files: FileList | null) => void;
|
|
1455
|
+
accept?: string;
|
|
1456
|
+
multiple?: boolean;
|
|
1457
|
+
capture?: boolean | 'user' | 'environment';
|
|
1458
|
+
};
|
|
1459
|
+
declare function FileButton({ onChange, accept, multiple, capture, children, disabled, className, ...props }: FileButtonProps): react_jsx_runtime.JSX.Element;
|
|
796
1460
|
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
}
|
|
801
|
-
declare function
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
}): react_jsx_runtime.JSX.Element;
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
1461
|
+
type FileInputProps = Omit<React$1.ComponentProps<'input'>, 'type'> & {
|
|
1462
|
+
onFilesChange?: (files: File[]) => void;
|
|
1463
|
+
clearable?: boolean;
|
|
1464
|
+
};
|
|
1465
|
+
declare function FileInput({ className, onFilesChange, clearable, multiple, ...props }: FileInputProps): react_jsx_runtime.JSX.Element;
|
|
1466
|
+
|
|
1467
|
+
type FlexProps = React$1.ComponentProps<'div'> & {
|
|
1468
|
+
gap?: ComponentSize | number;
|
|
1469
|
+
rowGap?: ComponentSize | number;
|
|
1470
|
+
columnGap?: ComponentSize | number;
|
|
1471
|
+
align?: 'start' | 'center' | 'end' | 'stretch' | 'baseline';
|
|
1472
|
+
justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
|
|
1473
|
+
wrap?: 'wrap' | 'nowrap' | 'wrap-reverse';
|
|
1474
|
+
direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
1475
|
+
};
|
|
1476
|
+
declare function Flex({ className, gap, rowGap, columnGap, align, justify, wrap, direction, style, ...props }: FlexProps): react_jsx_runtime.JSX.Element;
|
|
1477
|
+
|
|
1478
|
+
type FloatingIndicatorProps = Omit<React$1.ComponentProps<'div'>, 'target'> & {
|
|
1479
|
+
target: HTMLElement | null;
|
|
1480
|
+
parent: HTMLElement | null;
|
|
1481
|
+
transitionDuration?: number;
|
|
1482
|
+
displayAfterTransitionEnd?: boolean;
|
|
1483
|
+
};
|
|
1484
|
+
declare function FloatingIndicator({ className, target, parent, transitionDuration, displayAfterTransitionEnd, style, ...props }: FloatingIndicatorProps): react_jsx_runtime.JSX.Element | null;
|
|
1485
|
+
|
|
1486
|
+
type FocusTrapProps = {
|
|
1487
|
+
children: ReactElement;
|
|
1488
|
+
active?: boolean;
|
|
1489
|
+
refProp?: string;
|
|
1490
|
+
};
|
|
1491
|
+
declare function FocusTrap({ children, active, refProp, }: FocusTrapProps): ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
1492
|
+
declare namespace FocusTrap {
|
|
1493
|
+
var InitialFocus: typeof FocusTrapInitialFocus;
|
|
1494
|
+
}
|
|
1495
|
+
declare function FocusTrapInitialFocus(props: React.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
818
1496
|
|
|
819
1497
|
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
820
1498
|
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
@@ -831,24 +1509,87 @@ declare const useFormField: () => {
|
|
|
831
1509
|
formMessageId: string;
|
|
832
1510
|
};
|
|
833
1511
|
declare function FormItem({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
834
|
-
declare function FormLabel({ className, ...props }: React$1.ComponentProps<typeof
|
|
835
|
-
declare function FormControl({ ...props }: React$1.ComponentProps<
|
|
1512
|
+
declare function FormLabel({ className, ...props }: React$1.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
|
|
1513
|
+
declare function FormControl({ render, children, ...props }: React$1.ComponentProps<'input'> & {
|
|
1514
|
+
render?: useRender.RenderProp;
|
|
1515
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
836
1516
|
declare function FormDescription({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
837
1517
|
declare function FormMessage({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element | null;
|
|
838
1518
|
|
|
839
|
-
declare
|
|
840
|
-
|
|
841
|
-
|
|
1519
|
+
declare const gridVariants: (props?: ({
|
|
1520
|
+
gutter?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
1521
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1522
|
+
declare const gridColVariants: (props?: ({
|
|
1523
|
+
span?: 4 | 1 | "auto" | 2 | 3 | 5 | 7 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
|
|
1524
|
+
sm?: 4 | 1 | 2 | 3 | 5 | 7 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
|
|
1525
|
+
md?: 4 | 1 | 2 | 3 | 5 | 7 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
|
|
1526
|
+
lg?: 4 | 1 | 2 | 3 | 5 | 7 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
|
|
1527
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1528
|
+
type GridProps = React$1.ComponentProps<'div'> & VariantProps<typeof gridVariants>;
|
|
1529
|
+
type GridColProps = React$1.ComponentProps<'div'> & VariantProps<typeof gridColVariants> & {
|
|
1530
|
+
offset?: number;
|
|
1531
|
+
};
|
|
1532
|
+
declare function Grid({ className, gutter, children, ...props }: GridProps): react_jsx_runtime.JSX.Element;
|
|
1533
|
+
declare namespace Grid {
|
|
1534
|
+
var Col: typeof GridCol;
|
|
1535
|
+
}
|
|
1536
|
+
declare function GridCol({ className, span, sm, md, lg, offset, style, children, ...props }: GridColProps): react_jsx_runtime.JSX.Element;
|
|
1537
|
+
|
|
1538
|
+
type GroupProps = React$1.ComponentProps<'div'> & {
|
|
1539
|
+
gap?: ComponentSize | number;
|
|
1540
|
+
wrap?: 'wrap' | 'nowrap';
|
|
1541
|
+
align?: 'start' | 'center' | 'end' | 'stretch';
|
|
1542
|
+
justify?: 'start' | 'center' | 'end' | 'between' | 'around';
|
|
1543
|
+
grow?: boolean;
|
|
1544
|
+
};
|
|
1545
|
+
declare function Group({ className, gap, wrap, align, justify, grow, style, ...props }: GroupProps): react_jsx_runtime.JSX.Element;
|
|
1546
|
+
|
|
1547
|
+
type HighlightProps = React$1.ComponentProps<'span'> & {
|
|
1548
|
+
children: string;
|
|
1549
|
+
highlight: string | string[];
|
|
1550
|
+
className?: string;
|
|
1551
|
+
highlightClassName?: string;
|
|
1552
|
+
};
|
|
1553
|
+
declare function Highlight({ children, highlight, className, highlightClassName, ...props }: HighlightProps): react_jsx_runtime.JSX.Element;
|
|
1554
|
+
|
|
1555
|
+
declare function HoverCard({ ...props }: React$1.ComponentProps<typeof PreviewCard.Root>): react_jsx_runtime.JSX.Element;
|
|
1556
|
+
declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof PreviewCard.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1557
|
+
declare function HoverCardContent({ className, align, alignOffset, side, sideOffset, ...props }: React$1.ComponentProps<typeof PreviewCard.Popup> & {
|
|
1558
|
+
align?: React$1.ComponentProps<typeof PreviewCard.Positioner>['align'];
|
|
1559
|
+
alignOffset?: React$1.ComponentProps<typeof PreviewCard.Positioner>['alignOffset'];
|
|
1560
|
+
side?: React$1.ComponentProps<typeof PreviewCard.Positioner>['side'];
|
|
1561
|
+
sideOffset?: React$1.ComponentProps<typeof PreviewCard.Positioner>['sideOffset'];
|
|
1562
|
+
}): react_jsx_runtime.JSX.Element;
|
|
842
1563
|
|
|
843
|
-
|
|
1564
|
+
type ImageProps = React$1.ComponentProps<'img'> & {
|
|
1565
|
+
fallback?: React$1.ReactNode;
|
|
1566
|
+
radius?: 'none' | 'sm' | 'md' | 'lg' | 'full';
|
|
1567
|
+
fit?: 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
|
|
1568
|
+
};
|
|
1569
|
+
declare function Image({ className, src, alt, fallback, radius, fit, onError, ...props }: ImageProps): react_jsx_runtime.JSX.Element;
|
|
844
1570
|
|
|
845
|
-
declare
|
|
1571
|
+
declare const indicatorVariants: (props?: ({
|
|
1572
|
+
position?: "top-start" | "top-end" | "bottom-start" | "bottom-end" | "top-center" | "bottom-center" | "middle-start" | "middle-end" | null | undefined;
|
|
1573
|
+
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
1574
|
+
color?: "primary" | "secondary" | "accent" | "destructive" | null | undefined;
|
|
1575
|
+
withBorder?: boolean | null | undefined;
|
|
1576
|
+
processing?: boolean | null | undefined;
|
|
1577
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1578
|
+
type IndicatorProps = React$1.ComponentProps<'div'> & VariantProps<typeof indicatorVariants> & {
|
|
1579
|
+
label?: string | number;
|
|
1580
|
+
offset?: number;
|
|
1581
|
+
disabled?: boolean;
|
|
1582
|
+
inline?: boolean;
|
|
1583
|
+
};
|
|
1584
|
+
declare function Indicator({ className, position, size, color, withBorder, processing, label, offset, disabled, inline, children, style, ...props }: IndicatorProps): react_jsx_runtime.JSX.Element;
|
|
1585
|
+
|
|
1586
|
+
declare function InputGroup({ className, disabled, ...props }: React$1.ComponentProps<'fieldset'>): react_jsx_runtime.JSX.Element;
|
|
846
1587
|
declare const inputGroupAddonVariants: (props?: ({
|
|
847
1588
|
align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
|
|
848
1589
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
849
|
-
declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<'
|
|
1590
|
+
declare function InputGroupAddon({ className, align, type, ...props }: React$1.ComponentProps<'button'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime.JSX.Element;
|
|
850
1591
|
declare const inputGroupButtonVariants: (props?: ({
|
|
851
|
-
size?: "
|
|
1592
|
+
size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
|
|
852
1593
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
853
1594
|
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, 'size'> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
854
1595
|
declare function InputGroupText({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
@@ -868,11 +1609,11 @@ declare function ItemGroup({ className, ...props }: React$1.ComponentProps<'ul'>
|
|
|
868
1609
|
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
869
1610
|
declare const itemVariants: (props?: ({
|
|
870
1611
|
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
871
|
-
size?: "
|
|
1612
|
+
size?: "xs" | "sm" | "default" | null | undefined;
|
|
872
1613
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
873
|
-
declare function Item({ className, variant, size,
|
|
874
|
-
|
|
875
|
-
}):
|
|
1614
|
+
declare function Item({ className, variant, size, render, ...props }: React$1.ComponentProps<'div'> & VariantProps<typeof itemVariants> & {
|
|
1615
|
+
render?: useRender.RenderProp;
|
|
1616
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
876
1617
|
declare const itemMediaVariants: (props?: ({
|
|
877
1618
|
variant?: "image" | "default" | "icon" | null | undefined;
|
|
878
1619
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -884,32 +1625,78 @@ declare function ItemActions({ className, ...props }: React$1.ComponentProps<'di
|
|
|
884
1625
|
declare function ItemHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
885
1626
|
declare function ItemFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
886
1627
|
|
|
1628
|
+
type TextareaBaseProps = Omit<React$1.ComponentProps<'textarea'>, 'size'> & {
|
|
1629
|
+
size?: ComponentSize;
|
|
1630
|
+
};
|
|
1631
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<Omit<TextareaBaseProps, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
1632
|
+
type TextareaInputProps = TextareaBaseProps & Omit<InputWrapperProps, 'children'> & {
|
|
1633
|
+
autosize?: boolean;
|
|
1634
|
+
minRows?: number;
|
|
1635
|
+
maxRows?: number;
|
|
1636
|
+
};
|
|
1637
|
+
declare const TextareaInput: React$1.ForwardRefExoticComponent<Omit<TextareaInputProps, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
1638
|
+
|
|
1639
|
+
type JsonInputProps = Omit<React$1.ComponentProps<typeof Textarea>, 'value' | 'onChange'> & {
|
|
1640
|
+
value?: string | object;
|
|
1641
|
+
defaultValue?: string | object;
|
|
1642
|
+
onChange?: (value: string) => void;
|
|
1643
|
+
onValueChange?: (value: object | null) => void;
|
|
1644
|
+
formatOnBlur?: boolean;
|
|
1645
|
+
validationError?: string;
|
|
1646
|
+
};
|
|
1647
|
+
declare function JsonInput({ className, value, defaultValue, onChange, onValueChange, formatOnBlur, validationError, onBlur, ...props }: JsonInputProps): react_jsx_runtime.JSX.Element;
|
|
1648
|
+
|
|
887
1649
|
declare function Kbd({ className, ...props }: React.ComponentProps<'kbd'>): react_jsx_runtime.JSX.Element;
|
|
888
1650
|
declare function KbdGroup({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
889
1651
|
|
|
890
|
-
declare
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
1652
|
+
declare const listVariants: (props?: ({
|
|
1653
|
+
listStyle?: "none" | "decimal" | "disc" | null | undefined;
|
|
1654
|
+
spacing?: "none" | "sm" | "md" | "lg" | null | undefined;
|
|
1655
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1656
|
+
type BaseListProps = VariantProps<typeof listVariants> & {
|
|
1657
|
+
ordered?: boolean;
|
|
1658
|
+
};
|
|
1659
|
+
type ListProps = BaseListProps & (({
|
|
1660
|
+
ordered?: false;
|
|
1661
|
+
} & React$1.ComponentProps<'ul'>) | ({
|
|
1662
|
+
ordered: true;
|
|
1663
|
+
} & React$1.ComponentProps<'ol'>));
|
|
1664
|
+
declare function List({ className, listStyle, spacing, ordered, ...props }: ListProps): react_jsx_runtime.JSX.Element;
|
|
1665
|
+
declare function ListItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
1666
|
+
|
|
1667
|
+
type MarkProps = React$1.ComponentProps<'mark'> & {
|
|
1668
|
+
color?: ComponentColor;
|
|
1669
|
+
};
|
|
1670
|
+
declare function Mark({ className, color, ...props }: MarkProps): react_jsx_runtime.JSX.Element;
|
|
1671
|
+
|
|
1672
|
+
declare function Menubar({ className, ...props }: React$1.ComponentProps<typeof Menubar$1>): react_jsx_runtime.JSX.Element;
|
|
1673
|
+
declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof Menu.Root>): react_jsx_runtime.JSX.Element;
|
|
1674
|
+
declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof Menu.Group>): react_jsx_runtime.JSX.Element;
|
|
1675
|
+
declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof Menu.Portal>): react_jsx_runtime.JSX.Element;
|
|
1676
|
+
declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof Menu.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
1677
|
+
declare function MenubarTrigger({ className, ...props }: React$1.ComponentProps<typeof Menu.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1678
|
+
declare function MenubarContent({ className, ...props }: React$1.ComponentProps<typeof Menu.Popup>): react_jsx_runtime.JSX.Element;
|
|
1679
|
+
declare function MenubarPositioner({ align, alignOffset, side, sideOffset, className, ...props }: React$1.ComponentProps<typeof Menu.Positioner>): react_jsx_runtime.JSX.Element;
|
|
1680
|
+
declare function MenubarItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof Menu.Item> & {
|
|
898
1681
|
inset?: boolean;
|
|
899
1682
|
variant?: 'default' | 'destructive';
|
|
900
1683
|
}): react_jsx_runtime.JSX.Element;
|
|
901
|
-
declare function MenubarCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof
|
|
902
|
-
|
|
903
|
-
|
|
1684
|
+
declare function MenubarCheckboxItem({ className, children, checked, inset, ...props }: React$1.ComponentProps<typeof Menu.CheckboxItem> & {
|
|
1685
|
+
inset?: boolean;
|
|
1686
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1687
|
+
declare function MenubarRadioItem({ className, children, inset, ...props }: React$1.ComponentProps<typeof Menu.RadioItem> & {
|
|
904
1688
|
inset?: boolean;
|
|
905
1689
|
}): react_jsx_runtime.JSX.Element;
|
|
906
|
-
declare function
|
|
1690
|
+
declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof Menu.GroupLabel> & {
|
|
1691
|
+
inset?: boolean;
|
|
1692
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1693
|
+
declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof Menu.Separator>): react_jsx_runtime.JSX.Element;
|
|
907
1694
|
declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
908
|
-
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof
|
|
909
|
-
declare function MenubarSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof
|
|
1695
|
+
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof Menu.SubmenuRoot>): react_jsx_runtime.JSX.Element;
|
|
1696
|
+
declare function MenubarSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof Menu.SubmenuTrigger> & {
|
|
910
1697
|
inset?: boolean;
|
|
911
1698
|
}): react_jsx_runtime.JSX.Element;
|
|
912
|
-
declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof
|
|
1699
|
+
declare function MenubarSubContent({ className, align, alignOffset, side, sideOffset, ...props }: React$1.ComponentProps<typeof Menu.Popup> & Pick<React$1.ComponentProps<typeof Menu.Positioner>, 'align' | 'alignOffset' | 'side' | 'sideOffset'>): react_jsx_runtime.JSX.Element;
|
|
913
1700
|
|
|
914
1701
|
type CurrencyOption = {
|
|
915
1702
|
label: string;
|
|
@@ -930,17 +1717,94 @@ type MoneyInputProps = {
|
|
|
930
1717
|
};
|
|
931
1718
|
declare const MoneyInput: React$1.ForwardRefExoticComponent<MoneyInputProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
932
1719
|
|
|
933
|
-
|
|
1720
|
+
type MultiSelectOption = {
|
|
1721
|
+
value: string;
|
|
1722
|
+
label: string;
|
|
1723
|
+
disabled?: boolean;
|
|
1724
|
+
};
|
|
1725
|
+
type MultiSelectProps = Omit<React$1.ComponentProps<typeof Autocomplete.Root>, 'children' | 'onValueChange' | 'inline'> & {
|
|
1726
|
+
options: MultiSelectOption[];
|
|
1727
|
+
value?: string[];
|
|
1728
|
+
onValueChange?: (value: string[]) => void;
|
|
1729
|
+
placeholder?: string;
|
|
1730
|
+
emptyText?: string;
|
|
1731
|
+
className?: string;
|
|
1732
|
+
disabled?: boolean;
|
|
1733
|
+
};
|
|
1734
|
+
declare function MultiSelect({ options, value, onValueChange, placeholder, emptyText, className, disabled, ...props }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
1735
|
+
|
|
1736
|
+
type NativeSelectOption = {
|
|
1737
|
+
value: string;
|
|
1738
|
+
label: string;
|
|
1739
|
+
} | string;
|
|
1740
|
+
type NativeSelectBaseProps = Omit<React$1.ComponentProps<'select'>, 'size'> & {
|
|
1741
|
+
size?: ComponentSize;
|
|
1742
|
+
data?: NativeSelectOption[];
|
|
1743
|
+
rightSection?: React$1.ReactNode;
|
|
1744
|
+
};
|
|
1745
|
+
declare const NativeSelectBase: React$1.ForwardRefExoticComponent<Omit<NativeSelectBaseProps, "ref"> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
1746
|
+
type NativeSelectProps = NativeSelectBaseProps & Omit<InputWrapperProps, 'children'>;
|
|
1747
|
+
declare const NativeSelect: React$1.ForwardRefExoticComponent<Omit<NativeSelectProps, "ref"> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
1748
|
+
|
|
1749
|
+
declare const navLinkVariants: (props?: ({
|
|
1750
|
+
active?: boolean | null | undefined;
|
|
1751
|
+
variant?: "default" | "subtle" | null | undefined;
|
|
1752
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1753
|
+
type NavLinkProps = React$1.ComponentProps<'a'> & VariantProps<typeof navLinkVariants> & {
|
|
1754
|
+
label: string;
|
|
1755
|
+
icon?: React$1.ReactNode;
|
|
1756
|
+
rightSection?: React$1.ReactNode;
|
|
1757
|
+
disabled?: boolean;
|
|
1758
|
+
};
|
|
1759
|
+
declare function NavLink({ className, active, variant, label, icon, rightSection, disabled, children, href, ...props }: NavLinkProps): react_jsx_runtime.JSX.Element;
|
|
1760
|
+
|
|
1761
|
+
declare function NavigationMenu({ className, children, viewport, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Root> & {
|
|
934
1762
|
viewport?: boolean;
|
|
935
1763
|
}): react_jsx_runtime.JSX.Element;
|
|
936
|
-
declare function NavigationMenuList({ className, ...props }: React$1.ComponentProps<typeof
|
|
937
|
-
declare function NavigationMenuItem({ className, ...props }: React$1.ComponentProps<typeof
|
|
1764
|
+
declare function NavigationMenuList({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.List>): react_jsx_runtime.JSX.Element;
|
|
1765
|
+
declare function NavigationMenuItem({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Item>): react_jsx_runtime.JSX.Element;
|
|
938
1766
|
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
939
|
-
declare function NavigationMenuTrigger({ className, children, ...props }: React$1.ComponentProps<typeof
|
|
940
|
-
declare function NavigationMenuContent({ className, ...props }: React$1.ComponentProps<typeof
|
|
941
|
-
declare function NavigationMenuViewport({ className, ...props }: React$1.ComponentProps<typeof
|
|
942
|
-
declare function NavigationMenuLink({ className, ...props }: React$1.ComponentProps<typeof
|
|
943
|
-
declare function NavigationMenuIndicator({ className, ...props }: React$1.ComponentProps<
|
|
1767
|
+
declare function NavigationMenuTrigger({ className, children, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1768
|
+
declare function NavigationMenuContent({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Content>): react_jsx_runtime.JSX.Element;
|
|
1769
|
+
declare function NavigationMenuViewport({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Viewport>): react_jsx_runtime.JSX.Element;
|
|
1770
|
+
declare function NavigationMenuLink({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Link>): react_jsx_runtime.JSX.Element;
|
|
1771
|
+
declare function NavigationMenuIndicator({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1772
|
+
|
|
1773
|
+
type NumberFormatterProps = React$1.ComponentProps<'span'> & {
|
|
1774
|
+
value: number;
|
|
1775
|
+
prefix?: string;
|
|
1776
|
+
suffix?: string;
|
|
1777
|
+
thousandsSeparator?: string;
|
|
1778
|
+
decimalSeparator?: string;
|
|
1779
|
+
decimalScale?: number;
|
|
1780
|
+
fixedDecimalScale?: boolean;
|
|
1781
|
+
};
|
|
1782
|
+
declare function NumberFormatter({ className, value, prefix, suffix, thousandsSeparator, decimalSeparator, decimalScale, fixedDecimalScale, ...props }: NumberFormatterProps): react_jsx_runtime.JSX.Element;
|
|
1783
|
+
|
|
1784
|
+
type NumberInputProps = Omit<React$1.ComponentProps<'input'>, 'type' | 'value' | 'defaultValue' | 'onChange' | 'size'> & Omit<InputWrapperProps, 'children'> & {
|
|
1785
|
+
value?: number | string;
|
|
1786
|
+
defaultValue?: number | string;
|
|
1787
|
+
onChange?: (value: number | string) => void;
|
|
1788
|
+
size?: ComponentSize;
|
|
1789
|
+
min?: number;
|
|
1790
|
+
max?: number;
|
|
1791
|
+
step?: number;
|
|
1792
|
+
decimalScale?: number;
|
|
1793
|
+
thousandsSeparator?: string;
|
|
1794
|
+
decimalSeparator?: string;
|
|
1795
|
+
/** Show increment/decrement controls */
|
|
1796
|
+
controls?: boolean;
|
|
1797
|
+
leftSection?: React$1.ReactNode;
|
|
1798
|
+
rightSection?: React$1.ReactNode;
|
|
1799
|
+
};
|
|
1800
|
+
declare const NumberInput: React$1.ForwardRefExoticComponent<Omit<NumberInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1801
|
+
|
|
1802
|
+
type OverlayProps = React$1.ComponentProps<'div'> & {
|
|
1803
|
+
blur?: number;
|
|
1804
|
+
opacity?: number;
|
|
1805
|
+
color?: string;
|
|
1806
|
+
};
|
|
1807
|
+
declare function Overlay({ className, blur, opacity, color, style, ...props }: OverlayProps): react_jsx_runtime.JSX.Element;
|
|
944
1808
|
|
|
945
1809
|
declare function Pagination({ className, ...props }: React$1.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element;
|
|
946
1810
|
declare function PaginationContent({ className, ...props }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
|
|
@@ -953,15 +1817,74 @@ declare function PaginationPrevious({ className, ...props }: React$1.ComponentPr
|
|
|
953
1817
|
declare function PaginationNext({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
954
1818
|
declare function PaginationEllipsis({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
955
1819
|
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
1820
|
+
type PaperProps = React$1.ComponentProps<'div'> & {
|
|
1821
|
+
padding?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1822
|
+
radius?: ComponentRadius;
|
|
1823
|
+
withBorder?: boolean;
|
|
1824
|
+
shadow?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1825
|
+
};
|
|
1826
|
+
declare function Paper({ className, padding, radius, withBorder, shadow, ...props }: PaperProps): react_jsx_runtime.JSX.Element;
|
|
960
1827
|
|
|
961
|
-
|
|
1828
|
+
type PasswordInputBaseProps = Omit<React$1.ComponentProps<'input'>, 'type' | 'size'> & {
|
|
1829
|
+
showToggle?: boolean;
|
|
1830
|
+
size?: ComponentSize;
|
|
1831
|
+
};
|
|
1832
|
+
declare const PasswordInput: React$1.ForwardRefExoticComponent<Omit<PasswordInputBaseProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1833
|
+
type PasswordInputWithWrapperProps = PasswordInputBaseProps & Omit<InputWrapperProps, 'children'>;
|
|
1834
|
+
declare const PasswordInputWithWrapper: React$1.ForwardRefExoticComponent<Omit<PasswordInputWithWrapperProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
962
1835
|
|
|
963
|
-
declare
|
|
964
|
-
|
|
1836
|
+
declare const pillVariants: (props?: ({
|
|
1837
|
+
variant?: "default" | "contrast" | null | undefined;
|
|
1838
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
1839
|
+
radius?: "xs" | "sm" | "md" | "lg" | "xl" | "full" | null | undefined;
|
|
1840
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1841
|
+
type PillProps = Omit<React$1.ComponentProps<'span'>, 'disabled'> & VariantProps<typeof pillVariants> & {
|
|
1842
|
+
withRemoveButton?: boolean;
|
|
1843
|
+
onRemove?: () => void;
|
|
1844
|
+
removeButtonProps?: React$1.ComponentProps<typeof CloseButton>;
|
|
1845
|
+
disabled?: boolean;
|
|
1846
|
+
};
|
|
1847
|
+
declare function Pill({ className, variant, size, radius, withRemoveButton, onRemove, removeButtonProps, children, disabled, ...props }: PillProps): react_jsx_runtime.JSX.Element;
|
|
1848
|
+
|
|
1849
|
+
declare function Popover({ ...props }: React$1.ComponentProps<typeof Popover$1.Root>): react_jsx_runtime.JSX.Element;
|
|
1850
|
+
declare function PopoverTrigger({ ...props }: React$1.ComponentProps<typeof Popover$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1851
|
+
declare function PopoverContent({ className, align, alignOffset, side, sideOffset, anchor, ...props }: React$1.ComponentProps<typeof Popover$1.Popup> & {
|
|
1852
|
+
align?: React$1.ComponentProps<typeof Popover$1.Positioner>['align'];
|
|
1853
|
+
alignOffset?: React$1.ComponentProps<typeof Popover$1.Positioner>['alignOffset'];
|
|
1854
|
+
side?: React$1.ComponentProps<typeof Popover$1.Positioner>['side'];
|
|
1855
|
+
sideOffset?: React$1.ComponentProps<typeof Popover$1.Positioner>['sideOffset'];
|
|
1856
|
+
anchor?: React$1.ComponentProps<typeof Popover$1.Positioner>['anchor'];
|
|
1857
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1858
|
+
declare function PopoverHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1859
|
+
declare function PopoverTitle({ className, ...props }: React$1.ComponentProps<typeof Popover$1.Title>): react_jsx_runtime.JSX.Element;
|
|
1860
|
+
declare function PopoverDescription({ className, ...props }: React$1.ComponentProps<typeof Popover$1.Description>): react_jsx_runtime.JSX.Element;
|
|
1861
|
+
declare function PopoverAnchor({ ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
1862
|
+
|
|
1863
|
+
type ProgressProps = React$1.ComponentProps<typeof Progress$1.Root> & {
|
|
1864
|
+
size?: ComponentSize;
|
|
1865
|
+
radius?: ComponentRadius;
|
|
1866
|
+
color?: ComponentColor;
|
|
1867
|
+
};
|
|
1868
|
+
declare function Progress({ className, value, size, radius, color: _color, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
|
|
1869
|
+
|
|
1870
|
+
declare function RadioGroup({ className, ...props }: React$1.ComponentProps<typeof RadioGroup$1>): react_jsx_runtime.JSX.Element;
|
|
1871
|
+
type RadioGroupItemProps = React$1.ComponentProps<typeof Radio.Root> & {
|
|
1872
|
+
size?: ComponentSize;
|
|
1873
|
+
variant?: 'outline' | 'filled';
|
|
1874
|
+
};
|
|
1875
|
+
declare function RadioGroupItem({ className, size, variant, ...props }: RadioGroupItemProps): react_jsx_runtime.JSX.Element;
|
|
1876
|
+
|
|
1877
|
+
type RatingProps = Omit<React$1.ComponentProps<'div'>, 'onChange'> & {
|
|
1878
|
+
count?: number;
|
|
1879
|
+
value?: number;
|
|
1880
|
+
onChange?: (value: number) => void;
|
|
1881
|
+
readOnly?: boolean;
|
|
1882
|
+
disabled?: boolean;
|
|
1883
|
+
allowHalf?: boolean;
|
|
1884
|
+
size?: 'sm' | 'md' | 'lg';
|
|
1885
|
+
color?: string;
|
|
1886
|
+
};
|
|
1887
|
+
declare function Rating({ count, value, onChange, readOnly, disabled, allowHalf, size, color, className, ...props }: RatingProps): react_jsx_runtime.JSX.Element;
|
|
965
1888
|
|
|
966
1889
|
declare function ResizablePanelGroup({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime.JSX.Element;
|
|
967
1890
|
declare function ResizablePanel({ ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime.JSX.Element;
|
|
@@ -969,37 +1892,56 @@ declare function ResizableHandle({ withHandle, className, ...props }: React$1.Co
|
|
|
969
1892
|
withHandle?: boolean;
|
|
970
1893
|
}): react_jsx_runtime.JSX.Element;
|
|
971
1894
|
|
|
972
|
-
|
|
973
|
-
|
|
1895
|
+
type RingProgressProps = React$1.ComponentProps<'div'> & {
|
|
1896
|
+
value: number;
|
|
1897
|
+
size?: number;
|
|
1898
|
+
thickness?: number;
|
|
1899
|
+
color?: string;
|
|
1900
|
+
label?: React$1.ReactNode;
|
|
1901
|
+
};
|
|
1902
|
+
declare function RingProgress({ value, size, thickness, color, label, className, ...props }: RingProgressProps): react_jsx_runtime.JSX.Element;
|
|
974
1903
|
|
|
975
|
-
declare function
|
|
976
|
-
declare function
|
|
977
|
-
|
|
978
|
-
declare
|
|
1904
|
+
declare function ScrollArea({ className, children, ...props }: React$1.ComponentProps<typeof ScrollArea$1.Root>): react_jsx_runtime.JSX.Element;
|
|
1905
|
+
declare function ScrollBar({ className, orientation, ...props }: React$1.ComponentProps<typeof ScrollArea$1.Scrollbar>): react_jsx_runtime.JSX.Element;
|
|
1906
|
+
|
|
1907
|
+
declare const Select: typeof Select$1.Root;
|
|
1908
|
+
declare function SelectGroup({ className, ...props }: Select$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
1909
|
+
declare function SelectValue({ className, ...props }: Select$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
1910
|
+
declare function SelectTrigger({ className, size, children, ...props }: Select$1.Trigger.Props & {
|
|
979
1911
|
size?: 'sm' | 'default';
|
|
980
1912
|
}): react_jsx_runtime.JSX.Element;
|
|
981
|
-
declare function SelectContent({ className, children,
|
|
982
|
-
declare function SelectLabel({ className, ...props }:
|
|
983
|
-
declare function SelectItem({ className, children, ...props }:
|
|
984
|
-
declare function SelectSeparator({ className, ...props }:
|
|
985
|
-
declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof
|
|
986
|
-
declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
1913
|
+
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;
|
|
1914
|
+
declare function SelectLabel({ className, ...props }: Select$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
|
|
1915
|
+
declare function SelectItem({ className, children, ...props }: Select$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
1916
|
+
declare function SelectSeparator({ className, ...props }: Select$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
1917
|
+
declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime.JSX.Element;
|
|
1918
|
+
declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime.JSX.Element;
|
|
1919
|
+
|
|
1920
|
+
type SemiCircleProgressProps = React$1.ComponentProps<'div'> & {
|
|
1921
|
+
value: number;
|
|
1922
|
+
size?: number;
|
|
1923
|
+
thickness?: number;
|
|
1924
|
+
color?: string;
|
|
1925
|
+
label?: React$1.ReactNode;
|
|
1926
|
+
};
|
|
1927
|
+
declare function SemiCircleProgress({ className, value, size, thickness, color, label, ...props }: SemiCircleProgressProps): react_jsx_runtime.JSX.Element;
|
|
1928
|
+
|
|
1929
|
+
declare function Sheet({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
1930
|
+
declare function SheetTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
1931
|
+
declare function SheetClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
1932
|
+
declare function SheetContent({ className, children, side, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog$1.Popup> & {
|
|
992
1933
|
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
1934
|
+
showCloseButton?: boolean;
|
|
993
1935
|
}): react_jsx_runtime.JSX.Element;
|
|
994
1936
|
declare function SheetHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
995
1937
|
declare function SheetFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
996
|
-
declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof
|
|
997
|
-
declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof
|
|
1938
|
+
declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
1939
|
+
declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
998
1940
|
|
|
999
|
-
declare function TooltipProvider({
|
|
1000
|
-
declare function Tooltip({
|
|
1001
|
-
declare function TooltipTrigger({ ...props }:
|
|
1002
|
-
declare function TooltipContent({ className, sideOffset, children, ...props }:
|
|
1941
|
+
declare function TooltipProvider({ delay, ...props }: Tooltip$1.Provider.Props): react_jsx_runtime.JSX.Element;
|
|
1942
|
+
declare function Tooltip({ ...props }: Tooltip$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
1943
|
+
declare function TooltipTrigger({ ...props }: Tooltip$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
1944
|
+
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;
|
|
1003
1945
|
|
|
1004
1946
|
type SidebarContextProps = {
|
|
1005
1947
|
state: 'expanded' | 'collapsed';
|
|
@@ -1036,49 +1978,108 @@ declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<'
|
|
|
1036
1978
|
declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
1037
1979
|
declare function SidebarContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1038
1980
|
declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1039
|
-
declare function SidebarGroupLabel({ className,
|
|
1040
|
-
|
|
1041
|
-
}):
|
|
1042
|
-
declare function SidebarGroupAction({ className,
|
|
1043
|
-
|
|
1044
|
-
}):
|
|
1981
|
+
declare function SidebarGroupLabel({ className, render, ...props }: React$1.ComponentProps<'div'> & {
|
|
1982
|
+
render?: useRender.RenderProp;
|
|
1983
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
1984
|
+
declare function SidebarGroupAction({ className, render, ...props }: React$1.ComponentProps<'button'> & {
|
|
1985
|
+
render?: useRender.RenderProp;
|
|
1986
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
1045
1987
|
declare function SidebarGroupContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1046
1988
|
declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
|
|
1047
1989
|
declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
1048
1990
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
1049
1991
|
variant?: "default" | "outline" | null | undefined;
|
|
1050
|
-
size?: "
|
|
1992
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
1051
1993
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1052
|
-
declare function SidebarMenuButton({
|
|
1053
|
-
|
|
1994
|
+
declare function SidebarMenuButton({ render, isActive, variant, size, tooltip, className, ...props }: React$1.ComponentProps<'button'> & {
|
|
1995
|
+
render?: useRender.RenderProp;
|
|
1054
1996
|
isActive?: boolean;
|
|
1055
1997
|
tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
|
|
1056
1998
|
} & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
1057
|
-
declare function SidebarMenuAction({ className,
|
|
1058
|
-
|
|
1999
|
+
declare function SidebarMenuAction({ className, render, showOnHover, ...props }: React$1.ComponentProps<'button'> & {
|
|
2000
|
+
render?: useRender.RenderProp;
|
|
1059
2001
|
showOnHover?: boolean;
|
|
1060
|
-
}):
|
|
2002
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
1061
2003
|
declare function SidebarMenuBadge({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1062
2004
|
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React$1.ComponentProps<'div'> & {
|
|
1063
2005
|
showIcon?: boolean;
|
|
1064
2006
|
}): react_jsx_runtime.JSX.Element;
|
|
1065
2007
|
declare function SidebarMenuSub({ className, ...props }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
|
|
1066
2008
|
declare function SidebarMenuSubItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
1067
|
-
declare function SidebarMenuSubButton({
|
|
1068
|
-
|
|
2009
|
+
declare function SidebarMenuSubButton({ render, size, isActive, className, ...props }: React$1.ComponentProps<'a'> & {
|
|
2010
|
+
render?: useRender.RenderProp;
|
|
1069
2011
|
size?: 'sm' | 'md';
|
|
1070
2012
|
isActive?: boolean;
|
|
1071
|
-
}):
|
|
2013
|
+
}): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
1072
2014
|
|
|
1073
|
-
declare
|
|
2015
|
+
declare const simpleGridVariants: (props?: ({
|
|
2016
|
+
cols?: 4 | 1 | "auto" | 2 | 3 | 5 | 6 | null | undefined;
|
|
2017
|
+
spacing?: "0" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
|
|
2018
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2019
|
+
type SimpleGridProps = React$1.ComponentProps<'div'> & VariantProps<typeof simpleGridVariants> & {
|
|
2020
|
+
verticalSpacing?: '0' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
2021
|
+
minChildWidth?: string | number;
|
|
2022
|
+
};
|
|
2023
|
+
declare function SimpleGrid({ className, cols, spacing, verticalSpacing, minChildWidth, style, children, ...props }: SimpleGridProps): react_jsx_runtime.JSX.Element;
|
|
2024
|
+
|
|
2025
|
+
type SkeletonProps = React.ComponentProps<'div'> & {
|
|
2026
|
+
radius?: ComponentRadius;
|
|
2027
|
+
circle?: boolean;
|
|
2028
|
+
animate?: boolean;
|
|
2029
|
+
};
|
|
2030
|
+
declare function Skeleton({ className, radius: _radius, circle, animate, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
1074
2031
|
|
|
1075
|
-
declare function Slider({ className, defaultValue, value, min, max, ...props }:
|
|
2032
|
+
declare function Slider({ className, defaultValue, value, min, max, ...props }: Slider$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
1076
2033
|
|
|
1077
2034
|
declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
1078
2035
|
|
|
1079
|
-
|
|
2036
|
+
type SpaceProps = React$1.ComponentProps<'div'> & {
|
|
2037
|
+
/** Height (vertical spacer). Theme size or CSS value. */
|
|
2038
|
+
h?: ComponentSize | number | string;
|
|
2039
|
+
/** Width (horizontal spacer). Theme size or CSS value. */
|
|
2040
|
+
w?: ComponentSize | number | string;
|
|
2041
|
+
};
|
|
2042
|
+
declare function Space({ className, h, w, style, ...props }: SpaceProps): react_jsx_runtime.JSX.Element;
|
|
2043
|
+
|
|
2044
|
+
type SpinnerProps = Omit<React.ComponentProps<typeof IconLoader2>, 'size'> & {
|
|
2045
|
+
size?: ComponentSize;
|
|
2046
|
+
};
|
|
2047
|
+
declare function Spinner({ className, size, ...props }: SpinnerProps): react_jsx_runtime.JSX.Element;
|
|
2048
|
+
|
|
2049
|
+
type SpoilerProps = React$1.ComponentProps<'div'> & {
|
|
2050
|
+
maxHeight?: number;
|
|
2051
|
+
showLabel?: string;
|
|
2052
|
+
hideLabel?: string;
|
|
2053
|
+
initialState?: boolean;
|
|
2054
|
+
};
|
|
2055
|
+
declare function Spoiler({ maxHeight, showLabel, hideLabel, initialState, children, className, ...props }: SpoilerProps): react_jsx_runtime.JSX.Element;
|
|
1080
2056
|
|
|
1081
|
-
|
|
2057
|
+
type StackProps = React$1.ComponentProps<'div'> & {
|
|
2058
|
+
gap?: ComponentSize | number;
|
|
2059
|
+
align?: 'start' | 'center' | 'end' | 'stretch';
|
|
2060
|
+
justify?: 'start' | 'center' | 'end' | 'between' | 'around';
|
|
2061
|
+
};
|
|
2062
|
+
declare function Stack({ className, gap, align, justify, style, ...props }: StackProps): react_jsx_runtime.JSX.Element;
|
|
2063
|
+
|
|
2064
|
+
type StepperProps = React$1.ComponentProps<'div'> & {
|
|
2065
|
+
activeStep: number;
|
|
2066
|
+
orientation?: 'horizontal' | 'vertical';
|
|
2067
|
+
totalSteps?: number;
|
|
2068
|
+
};
|
|
2069
|
+
declare function Stepper({ activeStep, orientation, totalSteps, className, children, ...props }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
2070
|
+
type StepProps = React$1.ComponentProps<'div'> & {
|
|
2071
|
+
index: number;
|
|
2072
|
+
label?: string;
|
|
2073
|
+
description?: string;
|
|
2074
|
+
isLast?: boolean;
|
|
2075
|
+
};
|
|
2076
|
+
declare function Step({ index, label, description, isLast, className, children, ...props }: StepProps): react_jsx_runtime.JSX.Element;
|
|
2077
|
+
|
|
2078
|
+
type SwitchProps = React$1.ComponentProps<typeof Switch$1.Root> & {
|
|
2079
|
+
size?: ComponentSize;
|
|
2080
|
+
color?: ComponentColor;
|
|
2081
|
+
};
|
|
2082
|
+
declare function Switch({ className, size, color: _color, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
1082
2083
|
|
|
1083
2084
|
declare function Table({ className, ...props }: React$1.ComponentProps<'table'>): react_jsx_runtime.JSX.Element;
|
|
1084
2085
|
declare function TableHeader({ className, ...props }: React$1.ComponentProps<'thead'>): react_jsx_runtime.JSX.Element;
|
|
@@ -1089,24 +2090,171 @@ declare function TableHead({ className, ...props }: React$1.ComponentProps<'th'>
|
|
|
1089
2090
|
declare function TableCell({ className, ...props }: React$1.ComponentProps<'td'>): react_jsx_runtime.JSX.Element;
|
|
1090
2091
|
declare function TableCaption({ className, ...props }: React$1.ComponentProps<'caption'>): react_jsx_runtime.JSX.Element;
|
|
1091
2092
|
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
2093
|
+
type TableOfContentsItem = {
|
|
2094
|
+
id: string;
|
|
2095
|
+
label: string;
|
|
2096
|
+
depth?: number;
|
|
2097
|
+
};
|
|
2098
|
+
type TableOfContentsProps = React$1.ComponentProps<'nav'> & {
|
|
2099
|
+
items: TableOfContentsItem[];
|
|
2100
|
+
/** Currently active item id (e.g. from scroll spy) */
|
|
2101
|
+
activeId?: string | null;
|
|
2102
|
+
/** Called when an item is clicked (e.g. scroll to #id) */
|
|
2103
|
+
onItemClick?: (id: string) => void;
|
|
2104
|
+
size?: ComponentSize;
|
|
2105
|
+
/** Left padding offset per depth level (px) */
|
|
2106
|
+
depthOffset?: number;
|
|
2107
|
+
minDepth?: number;
|
|
2108
|
+
};
|
|
2109
|
+
declare function TableOfContents({ className, items, activeId, onItemClick, size, depthOffset, minDepth, ...props }: TableOfContentsProps): react_jsx_runtime.JSX.Element;
|
|
2110
|
+
|
|
2111
|
+
declare function Tabs({ className, orientation, ...props }: React$1.ComponentProps<typeof Tabs$1.Root>): react_jsx_runtime.JSX.Element;
|
|
2112
|
+
declare const tabsListVariants: (props?: ({
|
|
2113
|
+
variant?: "line" | "default" | null | undefined;
|
|
2114
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2115
|
+
declare function TabsList({ className, ...props }: React$1.ComponentProps<typeof Tabs$1.List> & VariantProps<typeof tabsListVariants> & {
|
|
2116
|
+
variant?: 'default' | 'line' | 'outline' | 'pills';
|
|
2117
|
+
radius?: unknown;
|
|
2118
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2119
|
+
declare function TabsTrigger({ className, ...props }: React$1.ComponentProps<typeof Tabs$1.Tab>): react_jsx_runtime.JSX.Element;
|
|
2120
|
+
declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof Tabs$1.Panel>): react_jsx_runtime.JSX.Element;
|
|
2121
|
+
|
|
2122
|
+
type TagsInputProps = Omit<React$1.ComponentProps<'div'>, 'onChange'> & {
|
|
2123
|
+
value?: string[];
|
|
2124
|
+
defaultValue?: string[];
|
|
2125
|
+
onChange?: (value: string[]) => void;
|
|
2126
|
+
placeholder?: string;
|
|
2127
|
+
maxTags?: number;
|
|
2128
|
+
allowDuplicates?: boolean;
|
|
2129
|
+
splitChars?: string[];
|
|
2130
|
+
disabled?: boolean;
|
|
2131
|
+
};
|
|
2132
|
+
declare function TagsInput({ className, value, defaultValue, onChange, placeholder, maxTags, allowDuplicates, splitChars, disabled, ...props }: TagsInputProps): react_jsx_runtime.JSX.Element;
|
|
2133
|
+
|
|
2134
|
+
declare const textVariants: (props?: ({
|
|
2135
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
|
|
2136
|
+
weight?: "bold" | "light" | "normal" | "medium" | "semibold" | "extrabold" | null | undefined;
|
|
2137
|
+
align?: "center" | "left" | "right" | "start" | "end" | "justify" | null | undefined;
|
|
2138
|
+
transform?: "none" | "capitalize" | "lowercase" | "uppercase" | null | undefined;
|
|
2139
|
+
decoration?: "none" | "line-through" | "underline" | null | undefined;
|
|
2140
|
+
variant?: "primary" | "secondary" | "accent" | "destructive" | "default" | "muted" | "success" | "warning" | "dimmed" | null | undefined;
|
|
2141
|
+
truncate?: boolean | null | undefined;
|
|
2142
|
+
inherit?: boolean | null | undefined;
|
|
2143
|
+
italic?: boolean | null | undefined;
|
|
2144
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2145
|
+
type TextProps = React$1.ComponentPropsWithoutRef<'span'> & VariantProps<typeof textVariants> & {
|
|
2146
|
+
as?: 'span' | 'p' | 'div' | 'label' | 'strong' | 'em';
|
|
2147
|
+
lineClamp?: number;
|
|
2148
|
+
gradient?: boolean;
|
|
2149
|
+
span?: boolean;
|
|
2150
|
+
};
|
|
2151
|
+
declare function Text({ className, size, weight, align, transform, decoration, variant, truncate, inherit, italic, as, lineClamp, gradient, span, style, children, ...props }: TextProps): React$1.ReactElement;
|
|
2152
|
+
|
|
2153
|
+
type TextInputProps = Omit<React.ComponentProps<'input'>, 'size'> & Omit<InputWrapperProps, 'children'> & {
|
|
2154
|
+
/** Input size */
|
|
2155
|
+
size?: ComponentSize;
|
|
2156
|
+
/** Left section (icon, text, etc.) */
|
|
2157
|
+
leftSection?: React.ReactNode;
|
|
2158
|
+
/** Right section (icon, button, etc.) */
|
|
2159
|
+
rightSection?: React.ReactNode;
|
|
2160
|
+
/** Pointer events for right section */
|
|
2161
|
+
rightSectionPointerEvents?: 'none' | 'all';
|
|
2162
|
+
};
|
|
2163
|
+
declare const TextInput: React$1.ForwardRefExoticComponent<Omit<TextInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
2164
|
+
|
|
2165
|
+
declare const themeIconVariants: (props?: ({
|
|
2166
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
|
|
2167
|
+
variant?: "default" | "outline" | "light" | "filled" | "gradient" | "subtle" | null | undefined;
|
|
2168
|
+
color?: "primary" | "secondary" | "accent" | "destructive" | "success" | "warning" | null | undefined;
|
|
2169
|
+
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
2170
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2171
|
+
type ThemeIconProps = React$1.ComponentProps<'div'> & VariantProps<typeof themeIconVariants>;
|
|
2172
|
+
declare function ThemeIcon({ className, size, variant, color, radius, children, ...props }: ThemeIconProps): react_jsx_runtime.JSX.Element;
|
|
1096
2173
|
|
|
1097
|
-
declare function
|
|
2174
|
+
declare function Timeline({ className, ...props }: React$1.ComponentProps<'ol'>): react_jsx_runtime.JSX.Element;
|
|
2175
|
+
declare function TimelineItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
2176
|
+
declare function TimelineDot({ className, variant, ...props }: React$1.ComponentProps<'div'> & {
|
|
2177
|
+
variant?: 'default' | 'primary' | 'secondary';
|
|
2178
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2179
|
+
declare function TimelineContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
2180
|
+
declare function TimelineTitle({ className, ...props }: React$1.ComponentProps<'h3'>): react_jsx_runtime.JSX.Element;
|
|
2181
|
+
declare function TimelineDescription({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
2182
|
+
declare function TimelineTime({ className, ...props }: React$1.ComponentProps<'time'>): react_jsx_runtime.JSX.Element;
|
|
2183
|
+
|
|
2184
|
+
declare const titleVariants: (props?: ({
|
|
2185
|
+
order?: 4 | 1 | 2 | 3 | 5 | 6 | null | undefined;
|
|
2186
|
+
variant?: "primary" | "secondary" | "accent" | "default" | "muted" | "dimmed" | "gradient" | null | undefined;
|
|
2187
|
+
weight?: "bold" | "light" | "normal" | "medium" | "semibold" | "extrabold" | null | undefined;
|
|
2188
|
+
align?: "center" | "left" | "right" | null | undefined;
|
|
2189
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2190
|
+
type TitleProps = Omit<React$1.ComponentProps<'h1'>, 'ref'> & VariantProps<typeof titleVariants>;
|
|
2191
|
+
declare function Title({ className, order, variant, weight, align, children, ...props }: TitleProps): react_jsx_runtime.JSX.Element;
|
|
1098
2192
|
|
|
1099
2193
|
declare const toggleVariants: (props?: ({
|
|
1100
2194
|
variant?: "default" | "outline" | null | undefined;
|
|
1101
|
-
size?: "
|
|
2195
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
1102
2196
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1103
|
-
declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof
|
|
2197
|
+
declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof Toggle$1> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
1104
2198
|
|
|
1105
|
-
declare function ToggleGroup({ className, variant, size, spacing, children, ...props }: React$1.ComponentProps<typeof
|
|
2199
|
+
declare function ToggleGroup({ className, variant, size, spacing, children, ...props }: React$1.ComponentProps<typeof ToggleGroup$1> & VariantProps<typeof toggleVariants> & {
|
|
1106
2200
|
spacing?: number;
|
|
1107
2201
|
}): react_jsx_runtime.JSX.Element;
|
|
1108
|
-
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
2202
|
+
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof Toggle$1> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
2203
|
+
|
|
2204
|
+
type TransitionName = 'fade' | 'fade-up' | 'fade-down' | 'fade-left' | 'fade-right' | 'slide-down' | 'slide-up' | 'slide-left' | 'slide-right' | 'scale';
|
|
2205
|
+
type TransitionProps = {
|
|
2206
|
+
mounted: boolean;
|
|
2207
|
+
children: (styles: React$1.CSSProperties) => React$1.ReactElement;
|
|
2208
|
+
transition?: TransitionName;
|
|
2209
|
+
duration?: number;
|
|
2210
|
+
exitDuration?: number;
|
|
2211
|
+
timingFunction?: string;
|
|
2212
|
+
keepMounted?: boolean;
|
|
2213
|
+
onExited?: () => void;
|
|
2214
|
+
onEntered?: () => void;
|
|
2215
|
+
onExit?: () => void;
|
|
2216
|
+
onEnter?: () => void;
|
|
2217
|
+
enterDelay?: number;
|
|
2218
|
+
exitDelay?: number;
|
|
2219
|
+
};
|
|
2220
|
+
declare function Transition({ mounted, children, transition, duration, exitDuration, timingFunction, keepMounted, onExited, onEntered, onExit, onEnter, enterDelay, exitDelay, }: TransitionProps): react_jsx_runtime.JSX.Element | null;
|
|
2221
|
+
|
|
2222
|
+
type TreeNodeData = {
|
|
2223
|
+
label: React$1.ReactNode;
|
|
2224
|
+
value: string;
|
|
2225
|
+
children?: TreeNodeData[];
|
|
2226
|
+
nodeProps?: Record<string, unknown>;
|
|
2227
|
+
};
|
|
2228
|
+
type TreeProps = React$1.ComponentProps<'div'> & {
|
|
2229
|
+
data: TreeNodeData[];
|
|
2230
|
+
/** Selected value (controlled) */
|
|
2231
|
+
selectedValue?: string | null;
|
|
2232
|
+
/** Called when selection changes */
|
|
2233
|
+
onSelectedValueChange?: (value: string | null) => void;
|
|
2234
|
+
/** Expanded values (controlled). If undefined, internal state is used. */
|
|
2235
|
+
expandedValues?: Set<string>;
|
|
2236
|
+
onExpandedValuesChange?: (values: Set<string>) => void;
|
|
2237
|
+
/** Padding left per level (px) */
|
|
2238
|
+
levelOffset?: number;
|
|
2239
|
+
/** Expand node on click (when it has children) */
|
|
2240
|
+
expandOnClick?: boolean;
|
|
2241
|
+
/** Select node on click */
|
|
2242
|
+
selectOnClick?: boolean;
|
|
2243
|
+
renderNode?: (payload: {
|
|
2244
|
+
node: TreeNodeData;
|
|
2245
|
+
level: number;
|
|
2246
|
+
expanded: boolean;
|
|
2247
|
+
hasChildren: boolean;
|
|
2248
|
+
selected: boolean;
|
|
2249
|
+
}) => React$1.ReactNode;
|
|
2250
|
+
};
|
|
2251
|
+
declare function Tree({ className, data, selectedValue, onSelectedValueChange, expandedValues: expandedProp, onExpandedValuesChange, levelOffset, expandOnClick, selectOnClick, renderNode, ...props }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
2252
|
+
|
|
2253
|
+
type UnstyledButtonProps = React$1.ComponentProps<'button'> & {
|
|
2254
|
+
render?: React$1.ComponentProps<typeof useRender>['render'];
|
|
2255
|
+
};
|
|
2256
|
+
declare function UnstyledButton({ className, render, ...props }: UnstyledButtonProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
2257
|
+
|
|
2258
|
+
declare function VisuallyHidden({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
2259
|
+
|
|
2260
|
+
export { Accordion, AccordionContent, AccordionItem, type AccordionProps, AccordionTrigger, ActionIcon, type ActionIconProps, Affix, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, Anchor, type AnchorProps, AngleSlider, type AngleSliderProps, type AnimatedTabItem, AnimatedTabs, AppBreadcrumbs, AppHeaderActions, AppSidebar, AspectRatio, Avatar, AvatarFallback, AvatarImage, type AvatarProps, BackgroundImage, type BackgroundImageProps, Badge, type BadgeProps, Blockquote, Breadcrumb, BreadcrumbContext, type BreadcrumbContextValue, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemData, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbProvider, BreadcrumbSeparator, Burger, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonLoaderProps, type ButtonProps, Calendar, CalendarDayButton, DisplayTableCaption as Caption, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Center, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Chip, CloseButton, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorFormat, ColorInput, ColorPicker, type ColorPickerProps, ColorSwatch, type ColorSwatchProps, Combobox, type ComboboxOption, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuPositioner, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CurrencyOption, DataTable, DataTableAction, DataTableColumnHeader, DataTablePagination, DataTableViewOptions, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisplayTable, type DisplayTableData, type DisplayTableVariant, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuPositioner, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyCardLoading, type EmptyCardLoadingProps, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EntityBulkActions, EntityDetailHeader, EntityDrawer, EntityDrawerTrigger, EntityEmptyState, EntityFilter, EntityFilterState, EntityFormActions, EntityHeader, EntityLoadingState, EntityPageLoading, type EntityPageLoadingProps, type EntityParams, EntitySearch, EntitySearchState, EntitySection, type EntitySectionState, type EntitySectionView, EntitySelector, type EntitySelectorColumn, type EntitySelectorConfig, EntitySelectorModal, type EntitySelectorModalSize, type EntitySelectorProps, EntitySort, EntitySortState, EntityViewToggle, EntityViewToggleState, ErrorPageView, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileButton, FileInput, Flex, type FlexProps, FloatingIndicator, type FloatingIndicatorProps, FocusTrap, FocusTrapInitialFocus, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridCol, Group, type GroupProps, Highlight, HoverCard, HoverCardContent, HoverCardTrigger, Image, Indicator, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, type InputWrapperProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, JsonInput, Kbd, KbdGroup, Label, List, ListItem, Loader, type LoaderProps, type LoaderType, LoadingOverlay, type LoadingOverlayProps, LocaleInputRichText, type LocaleInputRichTextProps, LocaleInputText, type LocaleInputTextProps, LocaleInputTextarea, type LocaleInputTextareaProps, LocaleRichText, type LocaleRichTextProps, LocaleText, Mark, type MarkProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarPositioner, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MesobLogo, MoneyInput, type MoneyInputProps, MultiSelect, type MultiSelectOption, NativeSelect, NativeSelectBase, type NativeSelectBaseProps, type NativeSelectOption, type NativeSelectProps, type NavItem, NavLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoDataAvailable, type NoDataAvailableProps, NumberFormatter, NumberInput, type NumberInputProps, Overlay, PageBody, PageContainer, PageGoBack, PageSection, PageSubTitle, PageTitle, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Paper, type PaperProps, PasswordInput, type PasswordInputBaseProps, PasswordInputWithWrapper, type PasswordInputWithWrapperProps, Pill, type PillProps, Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, PoweredBy, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Rating, ResizableHandle, ResizablePanel, ResizablePanelGroup, RichTextDisplay, RichTextEditor, RichTextEditorContent, RichTextEditorControl, RichTextEditorControlsGroup, RichTextEditorToolbar, RichTextInput, RingProgress, ScrollArea, ScrollBar, DisplayTableScrollContainer as ScrollContainer, Section, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SemiCircleProgress, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Shell, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, Slider, Space, type SpaceProps, Spinner, type SpinnerProps, Spoiler, SpotlightSearch, Stack, type StackProps, Step, Stepper, Switch, type SwitchProps, type TabItem, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagsInput, DisplayTableTbody as Tbody, DisplayTableTd as Td, Text, TextInput, type TextInputProps, type TextProps, Textarea, type TextareaBaseProps, TextareaInput, type TextareaInputProps, DisplayTableTfoot as Tfoot, DisplayTableTh as Th, DisplayTableThead as Thead, ThemeIcon, type ThemeIconProps, ThemeToggle, Timeline, TimelineContent, TimelineDescription, TimelineDot, TimelineItem, TimelineTime, TimelineTitle, Title, type TitleProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, DisplayTableTr as Tr, Transition, type TransitionName, type TransitionProps, Tree, type TreeNodeData, type TreeProps, UnstyledButton, type UnstyledButtonProps, type UseEntitySectionStateConfig, type ViewOption, VisuallyHidden, actionIconVariants, anchorVariants, badgeVariants, blockquoteVariants, burgerVariants, buttonVariants, chipVariants, codeVariants, containerVariants, gridColVariants, gridVariants, indicatorVariants, listVariants, navLinkVariants, navigationMenuTriggerStyle, pillVariants, simpleGridVariants, tabsListVariants, textVariants, themeIconVariants, titleVariants, toggleVariants, useBreadcrumbs, useEntitySectionState, useFormField, useRichTextEditorContext, useSidebar };
|