@northslopetech/altitude-ui 3.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +440 -4
- package/dist/index.d.ts +440 -4
- package/dist/index.js +2166 -482
- package/dist/index.mjs +2125 -493
- package/package.json +7 -5
package/dist/index.d.mts
CHANGED
|
@@ -2,29 +2,41 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
|
+
export { VariantProps, cva } from 'class-variance-authority';
|
|
5
6
|
import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
|
|
6
7
|
import { Button as Button$1 } from '@base-ui/react/button';
|
|
7
8
|
import { useRender } from '@base-ui/react/use-render';
|
|
8
9
|
import { Separator as Separator$1 } from '@base-ui/react/separator';
|
|
9
10
|
import * as _base_ui_react_select from '@base-ui/react/select';
|
|
10
11
|
import { Select as Select$1 } from '@base-ui/react/select';
|
|
12
|
+
import { Combobox as Combobox$1 } from '@base-ui/react';
|
|
11
13
|
import * as _base_ui_react_dialog from '@base-ui/react/dialog';
|
|
12
14
|
import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
|
|
13
15
|
import * as vaul from 'vaul';
|
|
14
16
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
15
17
|
import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
|
|
18
|
+
import * as _base_ui_react_toast from '@base-ui/react/toast';
|
|
19
|
+
import { Toast as Toast$1 } from '@base-ui/react/toast';
|
|
20
|
+
import { PreviewCard } from '@base-ui/react/preview-card';
|
|
16
21
|
import { Popover as Popover$1 } from '@base-ui/react/popover';
|
|
17
22
|
import { DayPicker, DayButton, Locale } from 'react-day-picker';
|
|
18
23
|
export { DateRange } from 'react-day-picker';
|
|
19
24
|
import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
|
|
20
25
|
import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
|
|
26
|
+
import { RadioGroup as RadioGroup$1 } from '@base-ui/react/radio-group';
|
|
27
|
+
import { Radio } from '@base-ui/react/radio';
|
|
21
28
|
import { Switch as Switch$1 } from '@base-ui/react/switch';
|
|
29
|
+
import { Slider as Slider$1 } from '@base-ui/react/slider';
|
|
22
30
|
import { Input as Input$1 } from '@base-ui/react/input';
|
|
23
31
|
import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
|
|
24
32
|
import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
|
|
25
33
|
import * as _base_ui_react_menu from '@base-ui/react/menu';
|
|
26
34
|
import { Menu } from '@base-ui/react/menu';
|
|
27
|
-
import
|
|
35
|
+
import * as RechartsPrimitive from 'recharts';
|
|
36
|
+
import { DefaultTooltipContentProps, DefaultLegendContentProps } from 'recharts';
|
|
37
|
+
import { ClassValue } from 'clsx';
|
|
38
|
+
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
39
|
+
import { ColumnDef, RowSelectionState, Table as Table$1, Row, Column } from '@tanstack/react-table';
|
|
28
40
|
|
|
29
41
|
declare const alertVariants: (props?: ({
|
|
30
42
|
variant?: "default" | "info" | "success" | "warning" | "error" | null | undefined;
|
|
@@ -74,6 +86,46 @@ declare function ButtonGroupText({ className, size, ref, render, ...props }: But
|
|
|
74
86
|
type ButtonGroupSeparatorProps = Omit<React$1.ComponentProps<typeof Separator>, "orientation">;
|
|
75
87
|
declare function ButtonGroupSeparator({ className, ref, ...props }: ButtonGroupSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
76
88
|
|
|
89
|
+
declare const emptyVariants: (props?: ({
|
|
90
|
+
variant?: "default" | "outline" | "background" | "outline-dashed" | null | undefined;
|
|
91
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
92
|
+
interface EmptyProps extends React$1.ComponentProps<"div">, VariantProps<typeof emptyVariants> {
|
|
93
|
+
}
|
|
94
|
+
declare const Empty: {
|
|
95
|
+
({ className, variant, children, ref, ...props }: EmptyProps): react_jsx_runtime.JSX.Element;
|
|
96
|
+
displayName: string;
|
|
97
|
+
};
|
|
98
|
+
declare const emptyMediaVariants: (props?: ({
|
|
99
|
+
variant?: "default" | "icon" | null | undefined;
|
|
100
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
101
|
+
type EmptyMediaProps = React$1.ComponentPropsWithoutRef<"div"> & VariantProps<typeof emptyMediaVariants>;
|
|
102
|
+
declare const EmptyMedia: {
|
|
103
|
+
({ className, variant, ...props }: EmptyMediaProps): react_jsx_runtime.JSX.Element;
|
|
104
|
+
displayName: string;
|
|
105
|
+
};
|
|
106
|
+
type EmptyContentProps = React$1.ComponentProps<"div">;
|
|
107
|
+
declare const EmptyContent: {
|
|
108
|
+
({ className, ref, ...props }: EmptyContentProps): react_jsx_runtime.JSX.Element;
|
|
109
|
+
displayName: string;
|
|
110
|
+
};
|
|
111
|
+
type EmptyTitleProps = React$1.ComponentProps<"p"> & {
|
|
112
|
+
as?: React$1.ElementType;
|
|
113
|
+
};
|
|
114
|
+
declare const EmptyTitle: {
|
|
115
|
+
({ className, as: Component, ref, ...props }: EmptyTitleProps): react_jsx_runtime.JSX.Element;
|
|
116
|
+
displayName: string;
|
|
117
|
+
};
|
|
118
|
+
type EmptyDescriptionProps = React$1.ComponentProps<"p">;
|
|
119
|
+
declare const EmptyDescription: {
|
|
120
|
+
({ className, ref, ...props }: EmptyDescriptionProps): react_jsx_runtime.JSX.Element;
|
|
121
|
+
displayName: string;
|
|
122
|
+
};
|
|
123
|
+
type EmptyActionsProps = React$1.ComponentProps<"div">;
|
|
124
|
+
declare const EmptyActions: {
|
|
125
|
+
({ className, ref, ...props }: EmptyActionsProps): react_jsx_runtime.JSX.Element;
|
|
126
|
+
displayName: string;
|
|
127
|
+
};
|
|
128
|
+
|
|
77
129
|
/**
|
|
78
130
|
* Current-generation text variant styles using @utility classes from design tokens.
|
|
79
131
|
*/
|
|
@@ -147,6 +199,66 @@ declare function SelectSeparator({ className, ref, ...props }: React$1.Component
|
|
|
147
199
|
declare function SelectScrollUpButton({ className, ref, ...props }: React$1.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime.JSX.Element;
|
|
148
200
|
declare function SelectScrollDownButton({ className, ref, ...props }: React$1.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime.JSX.Element;
|
|
149
201
|
|
|
202
|
+
/**
|
|
203
|
+
* @fileoverview Utility functions for Altitude UI components.
|
|
204
|
+
* Provides class name merging and variant utilities.
|
|
205
|
+
*/
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Merges Tailwind CSS classes intelligently, handling conflicts and conditional classes.
|
|
209
|
+
* Combines clsx for conditional class handling with tailwind-merge for deduplication.
|
|
210
|
+
*
|
|
211
|
+
* @param inputs - Class values to merge (strings, objects, arrays)
|
|
212
|
+
* @returns Merged and deduplicated class string
|
|
213
|
+
*
|
|
214
|
+
* @example
|
|
215
|
+
* ```typescript
|
|
216
|
+
* // Basic usage
|
|
217
|
+
* cn('px-2 py-1', 'px-4') // Returns: 'py-1 px-4'
|
|
218
|
+
*
|
|
219
|
+
* // Conditional classes
|
|
220
|
+
* cn('base-class', { 'active': isActive, 'disabled': isDisabled })
|
|
221
|
+
*
|
|
222
|
+
* // Array of classes
|
|
223
|
+
* cn(['class1', 'class2'], 'class3')
|
|
224
|
+
* ```
|
|
225
|
+
*/
|
|
226
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
227
|
+
|
|
228
|
+
declare const comboboxInputVariants: (props?: ({
|
|
229
|
+
size?: "default" | "small" | "mini" | "large" | null | undefined;
|
|
230
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
231
|
+
declare const Combobox: typeof Combobox$1.Root;
|
|
232
|
+
declare const useComboboxFilter: typeof Combobox$1.useFilter;
|
|
233
|
+
declare function ComboboxTrigger({ className, ...props }: Combobox$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
234
|
+
interface ComboboxInputProps extends Omit<Combobox$1.Input.Props, "size" | "ref">, VariantProps<typeof comboboxInputVariants> {
|
|
235
|
+
showTrigger?: boolean;
|
|
236
|
+
showClear?: boolean;
|
|
237
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
238
|
+
}
|
|
239
|
+
declare function ComboboxInput({ className, children, size, disabled, showTrigger, showClear, ref, ...props }: ComboboxInputProps): react_jsx_runtime.JSX.Element;
|
|
240
|
+
declare function ComboboxContent({ className, side, sideOffset, align, alignOffset, anchor, ...props }: Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">): react_jsx_runtime.JSX.Element;
|
|
241
|
+
declare function ComboboxList({ className, ...props }: Combobox$1.List.Props): react_jsx_runtime.JSX.Element;
|
|
242
|
+
declare function ComboboxItem({ className, children, ...props }: Combobox$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
243
|
+
declare function ComboboxGroup({ className, ...props }: Combobox$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
244
|
+
declare function ComboboxLabel({ className, ...props }: Combobox$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
|
|
245
|
+
declare function ComboboxEmpty({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
246
|
+
declare function ComboboxSeparator({ className, ...props }: Combobox$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
247
|
+
declare const comboboxChipsVariants: (props?: ({
|
|
248
|
+
size?: "default" | "small" | "mini" | "large" | null | undefined;
|
|
249
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
250
|
+
interface ComboboxChipsProps extends React$1.ComponentPropsWithRef<typeof Combobox$1.Chips>, VariantProps<typeof comboboxChipsVariants> {
|
|
251
|
+
showTrigger?: boolean;
|
|
252
|
+
disabled?: boolean;
|
|
253
|
+
}
|
|
254
|
+
declare function ComboboxChips({ className, children, size, showTrigger, disabled, ...props }: ComboboxChipsProps): react_jsx_runtime.JSX.Element;
|
|
255
|
+
declare function ComboboxChip({ className, children, showRemove, removeLabel, ...props }: Combobox$1.Chip.Props & {
|
|
256
|
+
showRemove?: boolean;
|
|
257
|
+
removeLabel?: string;
|
|
258
|
+
}): react_jsx_runtime.JSX.Element;
|
|
259
|
+
declare function ComboboxChipsInput({ className, ...props }: Combobox$1.Input.Props): react_jsx_runtime.JSX.Element;
|
|
260
|
+
declare function useComboboxAnchor(): React$1.RefObject<HTMLDivElement | null>;
|
|
261
|
+
|
|
150
262
|
type LabelProps = React$1.ComponentProps<"label">;
|
|
151
263
|
declare function Label({ className, ref, ...props }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
152
264
|
|
|
@@ -222,7 +334,7 @@ type DrawerProps = React$1.ComponentProps<typeof Drawer$1.Root>;
|
|
|
222
334
|
* </Drawer>
|
|
223
335
|
* ```
|
|
224
336
|
*/
|
|
225
|
-
declare const Drawer:
|
|
337
|
+
declare const Drawer: ({ direction, ...props }: DrawerProps) => react_jsx_runtime.JSX.Element;
|
|
226
338
|
type DrawerTriggerProps = React$1.ComponentPropsWithoutRef<typeof Drawer$1.Trigger>;
|
|
227
339
|
declare const DrawerTrigger: React$1.ForwardRefExoticComponent<DrawerTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
228
340
|
declare const DrawerPortal: typeof vaul.Portal;
|
|
@@ -269,6 +381,132 @@ type TooltipProps = Tooltip$1.Root.Props;
|
|
|
269
381
|
type TooltipTriggerProps = Tooltip$1.Trigger.Props;
|
|
270
382
|
type TooltipProviderProps = Tooltip$1.Provider.Props;
|
|
271
383
|
|
|
384
|
+
type ToastManager = ReturnType<typeof Toast$1.createToastManager>;
|
|
385
|
+
/**
|
|
386
|
+
* Shared, module-level toast manager. Mirrors the ergonomics of `sonner`:
|
|
387
|
+
* mount a single `<Toaster />` anywhere in the tree, then call `toast(...)`
|
|
388
|
+
* from anywhere in the app — no context or hook required at the call site.
|
|
389
|
+
*/
|
|
390
|
+
declare const toastManager: _base_ui_react_toast.ToastManager;
|
|
391
|
+
/** Friendly options accepted by the `toast()` helpers. */
|
|
392
|
+
interface ToastOptions {
|
|
393
|
+
/** Secondary line rendered under the title. */
|
|
394
|
+
description?: React$1.ReactNode;
|
|
395
|
+
/**
|
|
396
|
+
* Time in ms before the toast auto-dismisses. `0` keeps it until dismissed.
|
|
397
|
+
* @default 5000 (inherited from the Toaster)
|
|
398
|
+
*/
|
|
399
|
+
duration?: number;
|
|
400
|
+
/** Announce urgently (`high`) for errors, politely (`low`) otherwise. */
|
|
401
|
+
priority?: "low" | "high";
|
|
402
|
+
/** Optional inline action button. */
|
|
403
|
+
action?: {
|
|
404
|
+
label: React$1.ReactNode;
|
|
405
|
+
onClick?: (event: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
406
|
+
};
|
|
407
|
+
/** Stable id — pass to update or dedupe a toast. */
|
|
408
|
+
id?: string;
|
|
409
|
+
}
|
|
410
|
+
/** Builds the friendly `toast(...)` helper bound to a specific manager. */
|
|
411
|
+
declare function makeToast(manager: ToastManager): ((title: React$1.ReactNode, options?: ToastOptions) => string) & {
|
|
412
|
+
success: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
413
|
+
error: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
414
|
+
info: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
415
|
+
warning: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
416
|
+
/** Resolve/reject a promise into loading → success/error toasts. */
|
|
417
|
+
promise: <Value, Data extends object>(promiseValue: Promise<Value>, options: _base_ui_react_toast.ToastManagerPromiseOptions<Value, Data>) => Promise<Value>;
|
|
418
|
+
/** Dismiss a specific toast by id. */
|
|
419
|
+
dismiss: (id: string) => void;
|
|
420
|
+
/** Imperatively update an existing toast. */
|
|
421
|
+
update: <Data extends object>(id: string, updates: _base_ui_react_toast.ToastManagerUpdateOptions<Data>) => void;
|
|
422
|
+
};
|
|
423
|
+
/**
|
|
424
|
+
* Create and display a toast.
|
|
425
|
+
*
|
|
426
|
+
* @example
|
|
427
|
+
* toast("Saved");
|
|
428
|
+
* toast.success("Profile updated", { description: "Changes are live." });
|
|
429
|
+
* toast.promise(save(), { loading: "Saving…", success: "Saved", error: "Failed" });
|
|
430
|
+
*/
|
|
431
|
+
declare const toast: ((title: React$1.ReactNode, options?: ToastOptions) => string) & {
|
|
432
|
+
success: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
433
|
+
error: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
434
|
+
info: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
435
|
+
warning: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
436
|
+
/** Resolve/reject a promise into loading → success/error toasts. */
|
|
437
|
+
promise: <Value, Data extends object>(promiseValue: Promise<Value>, options: _base_ui_react_toast.ToastManagerPromiseOptions<Value, Data>) => Promise<Value>;
|
|
438
|
+
/** Dismiss a specific toast by id. */
|
|
439
|
+
dismiss: (id: string) => void;
|
|
440
|
+
/** Imperatively update an existing toast. */
|
|
441
|
+
update: <Data extends object>(id: string, updates: _base_ui_react_toast.ToastManagerUpdateOptions<Data>) => void;
|
|
442
|
+
};
|
|
443
|
+
/** The `toast` helper: callable, plus `.success`/`.error`/`.info`/`.warning`/`.promise`/`.dismiss`/`.update`. */
|
|
444
|
+
type Toast = ReturnType<typeof makeToast>;
|
|
445
|
+
/** All positions supported by the {@link Toaster}. */
|
|
446
|
+
type ToastPosition = "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right";
|
|
447
|
+
interface ToasterProps {
|
|
448
|
+
/** Where toasts appear on screen. @default "bottom-right" */
|
|
449
|
+
position?: ToastPosition;
|
|
450
|
+
/** Default auto-dismiss time in ms for toasts without an explicit duration. */
|
|
451
|
+
timeout?: number;
|
|
452
|
+
/** Maximum number of visible toasts before the oldest is dropped. */
|
|
453
|
+
limit?: number;
|
|
454
|
+
/** Additional classes for the viewport. */
|
|
455
|
+
className?: string;
|
|
456
|
+
/**
|
|
457
|
+
* The manager whose toasts this viewport renders. Defaults to the shared
|
|
458
|
+
* module-level manager that backs the global {@link toast}. Pass a manager
|
|
459
|
+
* from {@link createToaster} to run an isolated, independent toaster.
|
|
460
|
+
*/
|
|
461
|
+
toastManager?: ToastManager;
|
|
462
|
+
}
|
|
463
|
+
/**
|
|
464
|
+
* Mount once near the root of your app. Renders the toast viewport and wires
|
|
465
|
+
* up the shared {@link toast} manager so `toast(...)` works app-wide.
|
|
466
|
+
*/
|
|
467
|
+
declare function Toaster({ position, timeout, limit, className, toastManager: manager, }: ToasterProps): react_jsx_runtime.JSX.Element;
|
|
468
|
+
/**
|
|
469
|
+
* Create an isolated `{ toast, Toaster }` pair backed by its own manager.
|
|
470
|
+
* Use this when you need multiple independent toasters on screen at once
|
|
471
|
+
* (e.g. demos, embedded widgets) so each one only renders its own toasts.
|
|
472
|
+
* Most apps want the global {@link toast} + a single {@link Toaster} instead.
|
|
473
|
+
*
|
|
474
|
+
* Call this once at module scope (or memoize it) — calling it during render
|
|
475
|
+
* creates a fresh manager and `Toaster` identity every time, which remounts
|
|
476
|
+
* the viewport and drops any visible toasts.
|
|
477
|
+
*/
|
|
478
|
+
declare function createToaster(): {
|
|
479
|
+
toast: ((title: React$1.ReactNode, options?: ToastOptions) => string) & {
|
|
480
|
+
success: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
481
|
+
error: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
482
|
+
info: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
483
|
+
warning: (title: React$1.ReactNode, options?: ToastOptions) => string;
|
|
484
|
+
/** Resolve/reject a promise into loading → success/error toasts. */
|
|
485
|
+
promise: <Value, Data extends object>(promiseValue: Promise<Value>, options: _base_ui_react_toast.ToastManagerPromiseOptions<Value, Data>) => Promise<Value>;
|
|
486
|
+
/** Dismiss a specific toast by id. */
|
|
487
|
+
dismiss: (id: string) => void;
|
|
488
|
+
/** Imperatively update an existing toast. */
|
|
489
|
+
update: <Data extends object>(id: string, updates: _base_ui_react_toast.ToastManagerUpdateOptions<Data>) => void;
|
|
490
|
+
};
|
|
491
|
+
Toaster: (props: Omit<ToasterProps, "toastManager">) => react_jsx_runtime.JSX.Element;
|
|
492
|
+
};
|
|
493
|
+
|
|
494
|
+
declare function HoverCard({ ...props }: PreviewCard.Root.Props): react_jsx_runtime.JSX.Element;
|
|
495
|
+
declare namespace HoverCard {
|
|
496
|
+
var displayName: string;
|
|
497
|
+
}
|
|
498
|
+
declare function HoverCardTrigger({ ...props }: PreviewCard.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
499
|
+
declare namespace HoverCardTrigger {
|
|
500
|
+
var displayName: string;
|
|
501
|
+
}
|
|
502
|
+
type HoverCardContentProps = PreviewCard.Popup.Props & Pick<PreviewCard.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">;
|
|
503
|
+
declare function HoverCardContent({ className, side, sideOffset, align, alignOffset, ...props }: HoverCardContentProps): react_jsx_runtime.JSX.Element;
|
|
504
|
+
declare namespace HoverCardContent {
|
|
505
|
+
var displayName: string;
|
|
506
|
+
}
|
|
507
|
+
type HoverCardProps = PreviewCard.Root.Props;
|
|
508
|
+
type HoverCardTriggerProps = PreviewCard.Trigger.Props;
|
|
509
|
+
|
|
272
510
|
declare function Popover({ ...props }: Popover$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
273
511
|
declare function PopoverTrigger({ ...props }: Popover$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
274
512
|
type PopoverContentProps = Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">;
|
|
@@ -511,6 +749,57 @@ type CheckboxProps = React$1.ComponentProps<typeof Checkbox$1.Root>;
|
|
|
511
749
|
*/
|
|
512
750
|
declare function Checkbox({ className, ref, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
513
751
|
|
|
752
|
+
declare const radioGroupVariants: (props?: ({
|
|
753
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
754
|
+
layout?: "inline" | "block" | null | undefined;
|
|
755
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
756
|
+
declare const radioItemVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
757
|
+
type RadioGroupProps = React$1.ComponentProps<typeof RadioGroup$1> & VariantProps<typeof radioGroupVariants>;
|
|
758
|
+
type RadioGroupItemProps = React$1.ComponentProps<typeof Radio.Root>;
|
|
759
|
+
/**
|
|
760
|
+
* RadioGroup container that manages selection state across a set of radio items.
|
|
761
|
+
* @param {"vertical" | "horizontal"} [props.orientation] - Layout direction of the group
|
|
762
|
+
* @param {"inline" | "block"} [props.layout] - inline: items shrink-wrap; block: items stretch full width.
|
|
763
|
+
* `block` requires the DOM shape `RadioGroup > div > (RadioGroupItem + label)` — use RadioGroupCard to satisfy this automatically.
|
|
764
|
+
* @param {any} [props.value] - Controlled selected value
|
|
765
|
+
* @param {any} [props.defaultValue] - Initial selected value (uncontrolled)
|
|
766
|
+
* @param {(value: any) => void} [props.onValueChange] - Callback when selection changes
|
|
767
|
+
* @param {boolean} [props.disabled] - Disables all items in the group
|
|
768
|
+
* @param {string} [props.className] - Additional class names
|
|
769
|
+
*/
|
|
770
|
+
declare function RadioGroup({ className, orientation, layout, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
771
|
+
/**
|
|
772
|
+
* Individual radio button item within a RadioGroup.
|
|
773
|
+
* @param {any} props.value - The value this item represents in the group
|
|
774
|
+
* @param {boolean} [props.disabled] - Disables this specific item
|
|
775
|
+
* @param {boolean} [props.aria-invalid] - Applies error styling
|
|
776
|
+
* @param {string} [props.className] - Additional class names
|
|
777
|
+
*/
|
|
778
|
+
declare function RadioGroupItem({ className, ...props }: RadioGroupItemProps): react_jsx_runtime.JSX.Element;
|
|
779
|
+
interface RadioGroupCardProps extends Omit<RadioGroupItemProps, "className" | "ref"> {
|
|
780
|
+
/** Primary label text */
|
|
781
|
+
label: string;
|
|
782
|
+
/** Optional secondary description text */
|
|
783
|
+
description?: string;
|
|
784
|
+
/** When true, places the radio button on the right side */
|
|
785
|
+
flipped?: boolean;
|
|
786
|
+
/** Additional class names for the card wrapper */
|
|
787
|
+
className?: string;
|
|
788
|
+
/** Ref forwarded to the outer <label> element */
|
|
789
|
+
ref?: React$1.Ref<HTMLLabelElement>;
|
|
790
|
+
}
|
|
791
|
+
/**
|
|
792
|
+
* Card-style radio option that makes the entire card clickable.
|
|
793
|
+
* Combines a RadioGroupItem with a label and optional description.
|
|
794
|
+
* The ref is forwarded to the outer <label> element.
|
|
795
|
+
* @param {string} props.label - Primary label text
|
|
796
|
+
* @param {string} [props.description] - Optional secondary description
|
|
797
|
+
* @param {boolean} [props.flipped] - Positions the radio on the right when true
|
|
798
|
+
* @param {boolean} [props.disabled] - Disables the card and radio item
|
|
799
|
+
* @param {string} [props.className] - Additional class names for the card wrapper
|
|
800
|
+
*/
|
|
801
|
+
declare function RadioGroupCard({ className, label, description, flipped, id, ref, ...props }: RadioGroupCardProps): react_jsx_runtime.JSX.Element;
|
|
802
|
+
|
|
514
803
|
declare const switchVariants: (props?: ({
|
|
515
804
|
size?: "default" | "sm" | null | undefined;
|
|
516
805
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -526,6 +815,28 @@ interface SwitchProps extends Switch$1.Root.Props, VariantProps<typeof switchVar
|
|
|
526
815
|
*/
|
|
527
816
|
declare function Switch({ className, size, ref, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
528
817
|
|
|
818
|
+
type SliderProps = Slider$1.Root.Props & {
|
|
819
|
+
/**
|
|
820
|
+
* Accessible labels for each thumb, in order. Required in range mode to
|
|
821
|
+
* distinguish thumbs for screen readers (e.g. ["Minimum", "Maximum"]).
|
|
822
|
+
*/
|
|
823
|
+
thumbLabels?: string[];
|
|
824
|
+
};
|
|
825
|
+
/**
|
|
826
|
+
* Slider component with Altitude design system styling.
|
|
827
|
+
* Supports single-value and range (multi-thumb) modes, and horizontal/vertical orientation.
|
|
828
|
+
* @param {number | number[]} [props.value] - Controlled value; array enables range mode
|
|
829
|
+
* @param {number | number[]} [props.defaultValue] - Uncontrolled initial value
|
|
830
|
+
* @param {number} [props.min=0] - Minimum value
|
|
831
|
+
* @param {number} [props.max=100] - Maximum value
|
|
832
|
+
* @param {number} [props.step] - Step increment
|
|
833
|
+
* @param {"horizontal" | "vertical"} [props.orientation="horizontal"] - Slider orientation
|
|
834
|
+
* @param {boolean} [props.disabled] - Disables interaction and applies disabled styles
|
|
835
|
+
* @param {string[]} [props.thumbLabels] - Accessible labels for each thumb (required in range mode)
|
|
836
|
+
* @param {string} [props.className] - Additional CSS classes
|
|
837
|
+
*/
|
|
838
|
+
declare function Slider({ className, defaultValue, value, min, max, thumbLabels, ...props }: SliderProps): react_jsx_runtime.JSX.Element;
|
|
839
|
+
|
|
529
840
|
declare const inputVariants: (props?: ({
|
|
530
841
|
roundness?: "default" | "round" | null | undefined;
|
|
531
842
|
size?: "default" | "small" | "mini" | "large" | null | undefined;
|
|
@@ -587,7 +898,7 @@ type InputGroupTextareaProps = React$1.ComponentProps<typeof Textarea>;
|
|
|
587
898
|
declare function InputGroupTextarea({ className, ref, ...props }: InputGroupTextareaProps): react_jsx_runtime.JSX.Element;
|
|
588
899
|
|
|
589
900
|
declare const badgeVariants: (props?: ({
|
|
590
|
-
variant?: "primary" | "ghost" | "
|
|
901
|
+
variant?: "primary" | "ghost" | "outline" | "secondary" | "urgent" | null | undefined;
|
|
591
902
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
592
903
|
interface BadgeProps extends React$1.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
593
904
|
/** Left icon slot. */
|
|
@@ -597,6 +908,13 @@ interface BadgeProps extends React$1.ComponentProps<"span">, VariantProps<typeof
|
|
|
597
908
|
}
|
|
598
909
|
declare function Badge({ className, variant, iconLeft, iconRight, onKeyDown, style, children, ref, ...props }: BadgeProps): react_jsx_runtime.JSX.Element | null;
|
|
599
910
|
|
|
911
|
+
declare const tagVariants: (props?: ({
|
|
912
|
+
color?: "cyan" | "indigo" | "orange" | "pink" | "violet" | "verdant" | "stone" | null | undefined;
|
|
913
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
914
|
+
interface TagProps extends Omit<React$1.ComponentProps<"span">, "color">, VariantProps<typeof tagVariants> {
|
|
915
|
+
}
|
|
916
|
+
declare function Tag({ className, color, ref, ...props }: TagProps): react_jsx_runtime.JSX.Element;
|
|
917
|
+
|
|
600
918
|
declare function AlertDialog({ ...props }: AlertDialog$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
601
919
|
declare function AlertDialogTrigger({ ref, ...props }: AlertDialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
602
920
|
interface AlertDialogContentProps extends AlertDialog$1.Popup.Props {
|
|
@@ -954,6 +1272,108 @@ declare const PanelIcon: {
|
|
|
954
1272
|
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
955
1273
|
displayName: string;
|
|
956
1274
|
};
|
|
1275
|
+
declare const ZoomInIcon: {
|
|
1276
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1277
|
+
displayName: string;
|
|
1278
|
+
};
|
|
1279
|
+
declare const ZoomOutIcon: {
|
|
1280
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1281
|
+
displayName: string;
|
|
1282
|
+
};
|
|
1283
|
+
|
|
1284
|
+
type ValueType = number | string | Array<number | string>;
|
|
1285
|
+
type NameType = number | string;
|
|
1286
|
+
declare const THEMES: {
|
|
1287
|
+
readonly light: "";
|
|
1288
|
+
readonly dark: ".dark";
|
|
1289
|
+
};
|
|
1290
|
+
type ChartConfig = Record<string, {
|
|
1291
|
+
label?: React$1.ReactNode;
|
|
1292
|
+
icon?: React$1.ComponentType;
|
|
1293
|
+
} & ({
|
|
1294
|
+
color?: string;
|
|
1295
|
+
theme?: never;
|
|
1296
|
+
} | {
|
|
1297
|
+
color?: never;
|
|
1298
|
+
theme: Record<keyof typeof THEMES, string>;
|
|
1299
|
+
})>;
|
|
1300
|
+
type ChartContextProps = {
|
|
1301
|
+
config: ChartConfig;
|
|
1302
|
+
};
|
|
1303
|
+
declare function useChart(): ChartContextProps;
|
|
1304
|
+
declare function ChartContainer({ id, className, children, config, initialDimension, ...props }: React$1.ComponentProps<"div"> & {
|
|
1305
|
+
config: ChartConfig;
|
|
1306
|
+
children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
1307
|
+
initialDimension?: {
|
|
1308
|
+
width: number;
|
|
1309
|
+
height: number;
|
|
1310
|
+
};
|
|
1311
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1312
|
+
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
1313
|
+
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React$1.ComponentProps<typeof RechartsPrimitive.Tooltip> & React$1.ComponentProps<"div"> & {
|
|
1314
|
+
hideLabel?: boolean;
|
|
1315
|
+
hideIndicator?: boolean;
|
|
1316
|
+
indicator?: "line" | "dot" | "dashed";
|
|
1317
|
+
nameKey?: string;
|
|
1318
|
+
labelKey?: string;
|
|
1319
|
+
} & Omit<DefaultTooltipContentProps<ValueType, NameType>, "accessibilityLayer">): react_jsx_runtime.JSX.Element | null;
|
|
1320
|
+
declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
1321
|
+
declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React$1.ComponentProps<"div"> & {
|
|
1322
|
+
hideIcon?: boolean;
|
|
1323
|
+
nameKey?: string;
|
|
1324
|
+
} & DefaultLegendContentProps): react_jsx_runtime.JSX.Element | null;
|
|
1325
|
+
|
|
1326
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
1327
|
+
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
1328
|
+
type CarouselOptions = UseCarouselParameters[0];
|
|
1329
|
+
type CarouselPlugin = UseCarouselParameters[1];
|
|
1330
|
+
type CarouselContextProps = {
|
|
1331
|
+
carouselRef: ReturnType<typeof useEmblaCarousel>[0];
|
|
1332
|
+
api: ReturnType<typeof useEmblaCarousel>[1];
|
|
1333
|
+
scrollPrev: () => void;
|
|
1334
|
+
scrollNext: () => void;
|
|
1335
|
+
canScrollPrev: boolean;
|
|
1336
|
+
canScrollNext: boolean;
|
|
1337
|
+
};
|
|
1338
|
+
declare function useCarousel(): CarouselContextProps;
|
|
1339
|
+
type CarouselProps = React$1.ComponentProps<"div"> & {
|
|
1340
|
+
opts?: CarouselOptions;
|
|
1341
|
+
plugins?: CarouselPlugin;
|
|
1342
|
+
setApi?: (api: CarouselApi) => void;
|
|
1343
|
+
};
|
|
1344
|
+
/**
|
|
1345
|
+
* A carousel component powered by Embla Carousel.
|
|
1346
|
+
*
|
|
1347
|
+
* Usage:
|
|
1348
|
+
* ```tsx
|
|
1349
|
+
* <Carousel aria-label="Featured items">
|
|
1350
|
+
* <CarouselPrevious />
|
|
1351
|
+
* <CarouselContent>
|
|
1352
|
+
* <CarouselItem>...</CarouselItem>
|
|
1353
|
+
* </CarouselContent>
|
|
1354
|
+
* <CarouselNext />
|
|
1355
|
+
* </Carousel>
|
|
1356
|
+
* ```
|
|
1357
|
+
*
|
|
1358
|
+
* Place `CarouselPrevious` and `CarouselNext` as direct siblings of
|
|
1359
|
+
* `CarouselContent` inside the carousel — they render inline with the slides.
|
|
1360
|
+
*
|
|
1361
|
+
* Always pass `aria-label` to give the `role="region"` landmark an accessible name.
|
|
1362
|
+
*/
|
|
1363
|
+
declare function Carousel({ opts, plugins, setApi, className, children, ref, ...props }: CarouselProps): react_jsx_runtime.JSX.Element;
|
|
1364
|
+
type CarouselContentProps = React$1.ComponentProps<"div">;
|
|
1365
|
+
declare function CarouselContent({ className, ref, ...props }: CarouselContentProps): react_jsx_runtime.JSX.Element;
|
|
1366
|
+
type CarouselItemProps = React$1.ComponentProps<"div"> & {
|
|
1367
|
+
/** 0-based index of this slide. Provide together with `total` to auto-generate an accessible position label ("Slide 1 of 5"). */
|
|
1368
|
+
index?: number;
|
|
1369
|
+
/** Total number of slides. Provide together with `index` to auto-generate an accessible position label. */
|
|
1370
|
+
total?: number;
|
|
1371
|
+
};
|
|
1372
|
+
declare function CarouselItem({ className, index, total, "aria-label": ariaLabel, ref, ...props }: CarouselItemProps): react_jsx_runtime.JSX.Element;
|
|
1373
|
+
type CarouselPreviousProps = React$1.ComponentProps<typeof Button>;
|
|
1374
|
+
declare function CarouselPrevious({ className, variant, size, ref, ...props }: CarouselPreviousProps): react_jsx_runtime.JSX.Element;
|
|
1375
|
+
type CarouselNextProps = React$1.ComponentProps<typeof Button>;
|
|
1376
|
+
declare function CarouselNext({ className, variant, size, ref, ...props }: CarouselNextProps): react_jsx_runtime.JSX.Element;
|
|
957
1377
|
|
|
958
1378
|
declare function Table({ className, ref, ...props }: React$1.ComponentProps<"table">): react_jsx_runtime.JSX.Element;
|
|
959
1379
|
declare function TableHeader({ className, ref, ...props }: React$1.ComponentProps<"thead">): react_jsx_runtime.JSX.Element;
|
|
@@ -976,6 +1396,22 @@ type TableHeadProps = React$1.ComponentProps<typeof TableHead>;
|
|
|
976
1396
|
type TableCellProps = React$1.ComponentProps<typeof TableCell>;
|
|
977
1397
|
type TableCaptionProps = React$1.ComponentProps<typeof TableCaption>;
|
|
978
1398
|
|
|
1399
|
+
interface DataTableProps<TData> extends Omit<React$1.ComponentProps<"table">, "children"> {
|
|
1400
|
+
columns: ColumnDef<TData, unknown>[];
|
|
1401
|
+
data: TData[];
|
|
1402
|
+
getRowId: (row: TData) => string;
|
|
1403
|
+
"aria-label": string;
|
|
1404
|
+
showPagination?: boolean;
|
|
1405
|
+
pageSizeOptions?: number[];
|
|
1406
|
+
initialPageSize?: number;
|
|
1407
|
+
enableRowSelection?: boolean;
|
|
1408
|
+
onRowSelectionChange?: (state: RowSelectionState) => void;
|
|
1409
|
+
enableSorting?: boolean;
|
|
1410
|
+
emptyState?: React$1.ReactNode;
|
|
1411
|
+
loading?: boolean;
|
|
1412
|
+
}
|
|
1413
|
+
declare function DataTable<TData>({ columns, data, getRowId, showPagination, pageSizeOptions, initialPageSize, enableRowSelection, onRowSelectionChange: onRowSelectionChangeProp, enableSorting, emptyState, loading, ...tableProps }: DataTableProps<TData>): react_jsx_runtime.JSX.Element;
|
|
1414
|
+
|
|
979
1415
|
type DataTableViewProps<TData> = React$1.ComponentProps<typeof Table> & {
|
|
980
1416
|
table: Table$1<TData>;
|
|
981
1417
|
emptyState?: React$1.ReactNode;
|
|
@@ -1001,4 +1437,4 @@ type DataTableViewOptionsProps<TData> = React$1.ComponentProps<typeof Button> &
|
|
|
1001
1437
|
};
|
|
1002
1438
|
declare function DataTableViewOptions<TData>({ table, ...props }: DataTableViewOptionsProps<TData>): react_jsx_runtime.JSX.Element;
|
|
1003
1439
|
|
|
1004
|
-
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertActions, type AlertActionsProps, AlertBody, type AlertBodyProps, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowsDownUpIcon, Avatar, AvatarFallback, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarImage, type AvatarProps, Badge, type BadgeProps, BellIcon, BookmarkIcon, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, Calendar, CalendarDayButton, CalendarIcon, type CalendarProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, CaretDownIcon, CaretLeftIcon, CaretRightIcon, CaretUpIcon, ChatIcon, CheckIcon, Checkbox, type CheckboxProps, CheckmarkIcon, CheckmarkSquareIcon, CloseIcon, CogIcon, CredentialsIcon, DataTableColumnHeader, type DataTableColumnHeaderProps, DataTablePagination, type DataTablePaginationProps, DataTableView, DataTableViewOptions, type DataTableViewOptionsProps, type DataTableViewProps, DatePicker, type DatePickerProps, DatePickerTrigger, type DatePickerTriggerProps, Dialog, DialogBody, type DialogBodyProps, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DocumentIcon, DollarIcon, DownloadIcon, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EditIcon, EnvelopeIcon, ExclamationIcon, EyeClosedIcon, EyeOpenIcon, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterDescendingIcon, FilterIcon, GraphBarIcon, GraphDonutIcon, GraphLineIcon, GraphPieIcon, HamburgerMenuIcon, HomeIcon, type IconProps, type IconWeight, InformationIcon, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, InputGroupInput, type InputGroupInputProps, type InputGroupProps, InputGroupText, type InputGroupTextProps, InputGroupTextarea, type InputGroupTextareaProps, type InputProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, type ItemMediaProps, type ItemProps, ItemSeparator, ItemTitle, Label, type LabelProps, LocationIcon, LockIcon, LogoutIcon, MagnifyingGlassIcon, MinusIcon, MoreMenuIcon, PanelIcon, PhoneIcon, PlusIcon, Popover, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, type PopoverProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, PrintIcon, QuestionCircleIcon, Select, SelectContent, type SelectContentProps, SelectGroup, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, type SeparatorProps, ShareIcon, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupContent, type SidebarGroupContentProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, StarIcon, StatementIcon, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Text, type TextProps, Textarea, type TextareaProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, TrashIcon, Upload, type UploadProps, UserIcon, UserMultiIcon, WarningIcon, WrenchIcon, alertVariants, avatarVariants, badgeVariants, buttonGroupTextVariants, buttonGroupVariants, buttonVariants, checkboxVariants, dropdownMenuItemVariants, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupVariants, inputVariants, itemMediaVariants, itemVariants, selectTriggerVariants, switchVariants, tabsListVariants, tabsTriggerVariants, textVariants, uploadVariants, useSidebar };
|
|
1440
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertActions, type AlertActionsProps, AlertBody, type AlertBodyProps, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowsDownUpIcon, Avatar, AvatarFallback, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarImage, type AvatarProps, Badge, type BadgeProps, BellIcon, BookmarkIcon, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, Calendar, CalendarDayButton, CalendarIcon, type CalendarProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, CaretDownIcon, CaretLeftIcon, CaretRightIcon, CaretUpIcon, Carousel, type CarouselApi, CarouselContent, type CarouselContentProps, CarouselItem, type CarouselItemProps, CarouselNext, type CarouselNextProps, CarouselPrevious, type CarouselPreviousProps, type CarouselProps, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartTooltip, ChartTooltipContent, ChatIcon, CheckIcon, Checkbox, type CheckboxProps, CheckmarkIcon, CheckmarkSquareIcon, CloseIcon, CogIcon, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, type ComboboxChipsProps, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, type ComboboxInputProps, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, CredentialsIcon, DataTable, DataTableColumnHeader, type DataTableColumnHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableView, DataTableViewOptions, type DataTableViewOptionsProps, type DataTableViewProps, DatePicker, type DatePickerProps, DatePickerTrigger, type DatePickerTriggerProps, Dialog, DialogBody, type DialogBodyProps, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DocumentIcon, DollarIcon, DownloadIcon, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EditIcon, Empty, EmptyActions, type EmptyActionsProps, EmptyContent, type EmptyContentProps, EmptyDescription, type EmptyDescriptionProps, EmptyMedia, type EmptyMediaProps, type EmptyProps, EmptyTitle, type EmptyTitleProps, EnvelopeIcon, ExclamationIcon, EyeClosedIcon, EyeOpenIcon, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterDescendingIcon, FilterIcon, GraphBarIcon, GraphDonutIcon, GraphLineIcon, GraphPieIcon, HamburgerMenuIcon, HomeIcon, HoverCard, HoverCardContent, type HoverCardContentProps, type HoverCardProps, HoverCardTrigger, type HoverCardTriggerProps, type IconProps, type IconWeight, InformationIcon, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, InputGroupInput, type InputGroupInputProps, type InputGroupProps, InputGroupText, type InputGroupTextProps, InputGroupTextarea, type InputGroupTextareaProps, type InputProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, type ItemMediaProps, type ItemProps, ItemSeparator, ItemTitle, Label, type LabelProps, LocationIcon, LockIcon, LogoutIcon, MagnifyingGlassIcon, MinusIcon, MoreMenuIcon, PanelIcon, PhoneIcon, PlusIcon, Popover, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, type PopoverProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, PrintIcon, QuestionCircleIcon, RadioGroup, RadioGroupCard, type RadioGroupCardProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentProps, SelectGroup, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, type SeparatorProps, ShareIcon, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupContent, type SidebarGroupContentProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, Slider, type SliderProps, StarIcon, StatementIcon, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, type TagProps, Text, type TextProps, Textarea, type TextareaProps, type Toast, type ToastOptions, type ToastPosition, Toaster, type ToasterProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, TrashIcon, Upload, type UploadProps, UserIcon, UserMultiIcon, WarningIcon, WrenchIcon, ZoomInIcon, ZoomOutIcon, alertVariants, avatarVariants, badgeVariants, buttonGroupTextVariants, buttonGroupVariants, buttonVariants, checkboxVariants, cn, comboboxChipsVariants, comboboxInputVariants, createToaster, dropdownMenuItemVariants, emptyMediaVariants, emptyVariants, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupVariants, inputVariants, itemMediaVariants, itemVariants, radioGroupVariants, radioItemVariants, selectTriggerVariants, switchVariants, tabsListVariants, tabsTriggerVariants, tagVariants, textVariants, toast, toastManager, uploadVariants, useCarousel, useChart, useComboboxAnchor, useComboboxFilter, useSidebar };
|