@northslopetech/altitude-ui 3.0.0-alpha.4 → 3.0.0-alpha.6
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 +233 -75
- package/dist/index.d.ts +233 -75
- package/dist/index.js +2024 -1027
- package/dist/index.mjs +1902 -944
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,31 +1,88 @@
|
|
|
1
1
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
|
-
import { Button as Button$1 } from '@base-ui/react/button';
|
|
5
4
|
import { VariantProps } from 'class-variance-authority';
|
|
6
|
-
import * as
|
|
5
|
+
import * as _base_ui_react_accordion from '@base-ui/react/accordion';
|
|
6
|
+
import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
|
|
7
|
+
import { Button as Button$1 } from '@base-ui/react/button';
|
|
8
|
+
import * as _base_ui_react_use_render from '@base-ui/react/use-render';
|
|
9
|
+
import { useRender } from '@base-ui/react/use-render';
|
|
10
|
+
import * as _base_ui_react_separator from '@base-ui/react/separator';
|
|
11
|
+
import { Separator as Separator$1 } from '@base-ui/react/separator';
|
|
12
|
+
import * as _base_ui_react_select from '@base-ui/react/select';
|
|
13
|
+
import { Select as Select$1 } from '@base-ui/react/select';
|
|
7
14
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
8
15
|
import * as _base_ui_react_dialog from '@base-ui/react/dialog';
|
|
9
16
|
import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
|
|
10
|
-
import
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
import * as
|
|
17
|
+
import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
|
|
18
|
+
import { DayPicker, DayButton, Locale } from 'react-day-picker';
|
|
19
|
+
export { DateRange } from 'react-day-picker';
|
|
20
|
+
import * as _base_ui_react_avatar from '@base-ui/react/avatar';
|
|
21
|
+
import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
|
|
14
22
|
import * as _base_ui_react_checkbox from '@base-ui/react/checkbox';
|
|
15
23
|
import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
|
|
16
24
|
import { Switch as Switch$1 } from '@base-ui/react/switch';
|
|
25
|
+
import { Input as Input$1 } from '@base-ui/react/input';
|
|
17
26
|
import * as _base_ui_react from '@base-ui/react';
|
|
27
|
+
import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
|
|
18
28
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
19
29
|
import { Table as Table$1 } from '@tanstack/react-table';
|
|
20
30
|
|
|
31
|
+
declare const alertVariants: (props?: ({
|
|
32
|
+
variant?: "default" | "info" | "success" | "warning" | "error" | null | undefined;
|
|
33
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
34
|
+
type AlertProps = React$1.HTMLAttributes<HTMLDivElement> & VariantProps<typeof alertVariants>;
|
|
35
|
+
declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
36
|
+
variant?: "default" | "info" | "success" | "warning" | "error" | null | undefined;
|
|
37
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
38
|
+
type AlertBodyProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
39
|
+
declare const AlertBody: React$1.ForwardRefExoticComponent<AlertBodyProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
40
|
+
type AlertTitleProps = React$1.HTMLAttributes<HTMLParagraphElement>;
|
|
41
|
+
declare const AlertTitle: React$1.ForwardRefExoticComponent<AlertTitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
42
|
+
type AlertDescriptionProps = React$1.HTMLAttributes<HTMLParagraphElement>;
|
|
43
|
+
declare const AlertDescription: React$1.ForwardRefExoticComponent<AlertDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
44
|
+
type AlertActionsProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
45
|
+
declare const AlertActions: React$1.ForwardRefExoticComponent<AlertActionsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
46
|
+
|
|
47
|
+
type AccordionProps = Accordion$1.Root.Props;
|
|
48
|
+
declare const Accordion: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_accordion.AccordionRootProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
49
|
+
type AccordionItemProps = Accordion$1.Item.Props;
|
|
50
|
+
declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_accordion.AccordionItemProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
51
|
+
type AccordionTriggerProps = Accordion$1.Trigger.Props;
|
|
52
|
+
declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_accordion.AccordionTriggerProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
53
|
+
type AccordionContentProps = Accordion$1.Panel.Props;
|
|
54
|
+
declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_accordion.AccordionPanelProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
55
|
+
|
|
21
56
|
declare const buttonVariants: (props?: ({
|
|
22
|
-
variant?: "default" | "
|
|
57
|
+
variant?: "default" | "link" | "primary" | "destructive" | "ghost" | null | undefined;
|
|
23
58
|
size?: "default" | "lg" | "sm" | "mini" | null | undefined;
|
|
24
59
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
25
60
|
interface ButtonProps extends Button$1.Props, VariantProps<typeof buttonVariants> {
|
|
26
61
|
}
|
|
27
62
|
declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
28
63
|
|
|
64
|
+
type SeparatorProps = Separator$1.Props;
|
|
65
|
+
declare const Separator: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_separator.SeparatorProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
66
|
+
|
|
67
|
+
declare const buttonGroupVariants: (props?: ({
|
|
68
|
+
variant?: "ghost" | "outlined" | null | undefined;
|
|
69
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
70
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
71
|
+
type ButtonGroupProps = React$1.ComponentPropsWithoutRef<"div"> & VariantProps<typeof buttonGroupVariants>;
|
|
72
|
+
declare const ButtonGroup: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & VariantProps<(props?: ({
|
|
73
|
+
variant?: "ghost" | "outlined" | null | undefined;
|
|
74
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
75
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
76
|
+
declare const buttonGroupTextVariants: (props?: ({
|
|
77
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
78
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
79
|
+
type ButtonGroupTextProps = Omit<useRender.ComponentProps<"div">, "ref"> & VariantProps<typeof buttonGroupTextVariants>;
|
|
80
|
+
declare const ButtonGroupText: React$1.ForwardRefExoticComponent<Omit<useRender.ComponentProps<"div", {}, _base_ui_react_use_render.HTMLProps>, "ref"> & VariantProps<(props?: ({
|
|
81
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
82
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
83
|
+
type ButtonGroupSeparatorProps = Omit<React$1.ComponentPropsWithoutRef<typeof Separator>, "orientation">;
|
|
84
|
+
declare const ButtonGroupSeparator: React$1.ForwardRefExoticComponent<ButtonGroupSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
85
|
+
|
|
29
86
|
/**
|
|
30
87
|
* Current-generation text variant styles using @utility classes from design tokens.
|
|
31
88
|
*/
|
|
@@ -82,44 +139,42 @@ interface TypographyProps extends React$1.HTMLAttributes<HTMLElement>, VariantPr
|
|
|
82
139
|
*/
|
|
83
140
|
declare const Typography: React$1.ForwardRefExoticComponent<TypographyProps & React$1.RefAttributes<HTMLElement>>;
|
|
84
141
|
|
|
85
|
-
/**
|
|
86
|
-
* Select trigger variant styles.
|
|
87
|
-
*/
|
|
88
142
|
declare const selectTriggerVariants: (props?: ({
|
|
89
|
-
|
|
90
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
91
|
-
/**
|
|
92
|
-
* Select content variant styles.
|
|
93
|
-
*/
|
|
94
|
-
declare const selectContentVariants: (props?: ({
|
|
95
|
-
position?: "popper" | "item-aligned" | null | undefined;
|
|
143
|
+
size?: "default" | "small" | "mini" | "large" | null | undefined;
|
|
96
144
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
97
145
|
/**
|
|
98
146
|
* Select root component.
|
|
99
147
|
*/
|
|
100
|
-
declare const Select:
|
|
101
|
-
|
|
102
|
-
declare const
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
children?: React$1.ReactNode;
|
|
106
|
-
width?: "default" | "fill" | "compact";
|
|
148
|
+
declare const Select: typeof Select$1.Root;
|
|
149
|
+
type SelectProps = Select$1.Root.Props<string>;
|
|
150
|
+
declare const SelectGroup: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_select.SelectGroupProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
151
|
+
declare const SelectValue: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_select.SelectValueProps, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
152
|
+
interface SelectTriggerProps extends React$1.ComponentPropsWithoutRef<typeof Select$1.Trigger>, VariantProps<typeof selectTriggerVariants> {
|
|
107
153
|
}
|
|
108
154
|
/**
|
|
109
|
-
* Select trigger button
|
|
110
|
-
* @param {string} [props.
|
|
111
|
-
* @param {
|
|
112
|
-
* @param {
|
|
155
|
+
* Select trigger button.
|
|
156
|
+
* @param {string} [props.size] - Size variant: "default" | "large" | "small" | "mini"
|
|
157
|
+
* @param {boolean} [props.disabled] - Disables the trigger
|
|
158
|
+
* @param {boolean} [props["aria-invalid"]] - Applies error styling
|
|
113
159
|
*/
|
|
114
160
|
declare const SelectTrigger: React$1.ForwardRefExoticComponent<SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
161
|
+
interface SelectContentProps extends React$1.ComponentPropsWithoutRef<typeof Select$1.Positioner> {
|
|
162
|
+
children?: React$1.ReactNode;
|
|
163
|
+
className?: string;
|
|
164
|
+
positionerClassName?: string;
|
|
118
165
|
}
|
|
119
166
|
declare const SelectContent: React$1.ForwardRefExoticComponent<SelectContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
120
|
-
|
|
121
|
-
declare const
|
|
122
|
-
|
|
167
|
+
type SelectLabelProps = React$1.ComponentPropsWithoutRef<typeof Select$1.GroupLabel>;
|
|
168
|
+
declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<Omit<_base_ui_react_select.SelectGroupLabelProps, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
169
|
+
type SelectItemProps = React$1.ComponentPropsWithoutRef<typeof Select$1.Item>;
|
|
170
|
+
/**
|
|
171
|
+
* Select menu item.
|
|
172
|
+
* @param {boolean} [props.disabled] - Disables the item
|
|
173
|
+
*/
|
|
174
|
+
declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<Omit<_base_ui_react_select.SelectItemProps, "ref"> & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
175
|
+
declare const SelectSeparator: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
176
|
+
declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<Omit<_base_ui_react_select.SelectScrollUpArrowProps, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
177
|
+
declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<Omit<_base_ui_react_select.SelectScrollDownArrowProps, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
123
178
|
|
|
124
179
|
/**
|
|
125
180
|
* @fileoverview Label component for Altitude UI.
|
|
@@ -199,9 +254,6 @@ declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<Omit<_ba
|
|
|
199
254
|
type DialogCloseProps = React$1.ComponentPropsWithoutRef<typeof Dialog$1.Close>;
|
|
200
255
|
declare const DialogClose: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_dialog.DialogCloseProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
201
256
|
|
|
202
|
-
type SeparatorProps = Separator$1.Props;
|
|
203
|
-
declare const Separator: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_separator.SeparatorProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
204
|
-
|
|
205
257
|
declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
206
258
|
declare const BreadcrumbList: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
|
|
207
259
|
declare const BreadcrumbItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
@@ -211,28 +263,14 @@ declare const BreadcrumbPage: React$1.ForwardRefExoticComponent<Omit<React$1.Det
|
|
|
211
263
|
declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
212
264
|
declare const BreadcrumbEllipsis: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
213
265
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
};
|
|
217
|
-
type
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
type TooltipTriggerProps =
|
|
221
|
-
type
|
|
222
|
-
declare function TooltipProvider({ delayDuration, ...props }: TooltipProviderProps): react_jsx_runtime.JSX.Element;
|
|
223
|
-
declare namespace TooltipProvider {
|
|
224
|
-
var displayName: string;
|
|
225
|
-
}
|
|
226
|
-
declare function Tooltip({ delayDuration, ...props }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
227
|
-
declare namespace Tooltip {
|
|
228
|
-
var displayName: string;
|
|
229
|
-
}
|
|
230
|
-
declare const TooltipTrigger: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
231
|
-
/**
|
|
232
|
-
* Tooltip content - the actual tooltip popup.
|
|
233
|
-
* @param {number} [props.sideOffset=2] - Distance from trigger element
|
|
234
|
-
*/
|
|
235
|
-
declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
266
|
+
declare function TooltipProvider({ delay, ...props }: Tooltip$1.Provider.Props): react_jsx_runtime.JSX.Element;
|
|
267
|
+
declare function Tooltip({ ...props }: Tooltip$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
268
|
+
declare function TooltipTrigger({ ...props }: Tooltip$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
269
|
+
type TooltipContentProps = Tooltip$1.Popup.Props & Pick<Tooltip$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">;
|
|
270
|
+
declare function TooltipContent({ className, side, sideOffset, align, alignOffset, children, ...props }: TooltipContentProps): react_jsx_runtime.JSX.Element;
|
|
271
|
+
type TooltipProps = Tooltip$1.Root.Props;
|
|
272
|
+
type TooltipTriggerProps = Tooltip$1.Trigger.Props;
|
|
273
|
+
type TooltipProviderProps = Tooltip$1.Provider.Props;
|
|
236
274
|
|
|
237
275
|
/**
|
|
238
276
|
* @fileoverview Sidebar component for Altitude UI.
|
|
@@ -324,6 +362,30 @@ declare const SidebarMenuItem: React$1.ForwardRefExoticComponent<Omit<React$1.De
|
|
|
324
362
|
*/
|
|
325
363
|
declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<SidebarMenuButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
326
364
|
|
|
365
|
+
type CalendarProps = React$1.ComponentProps<typeof DayPicker> & {
|
|
366
|
+
navButtonVariant?: React$1.ComponentProps<typeof Button>["variant"];
|
|
367
|
+
};
|
|
368
|
+
/**
|
|
369
|
+
* Calendar component for date selection, built on react-day-picker.
|
|
370
|
+
*
|
|
371
|
+
* Supports single date, multiple dates, and date range selection modes.
|
|
372
|
+
* The `mode` prop controls the selection behaviour — refer to the
|
|
373
|
+
* react-day-picker docs for the full API.
|
|
374
|
+
*
|
|
375
|
+
* @example
|
|
376
|
+
* <Calendar mode="single" selected={date} onSelect={setDate} />
|
|
377
|
+
*/
|
|
378
|
+
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, navButtonVariant, locale, formatters, components, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
379
|
+
declare namespace Calendar {
|
|
380
|
+
var displayName: string;
|
|
381
|
+
}
|
|
382
|
+
declare function CalendarDayButton({ className, day, modifiers, locale, ...props }: React$1.ComponentProps<typeof DayButton> & {
|
|
383
|
+
locale?: Partial<Locale>;
|
|
384
|
+
}): react_jsx_runtime.JSX.Element;
|
|
385
|
+
declare namespace CalendarDayButton {
|
|
386
|
+
var displayName: string;
|
|
387
|
+
}
|
|
388
|
+
|
|
327
389
|
/**
|
|
328
390
|
* @fileoverview DatePicker component for Altitude UI.
|
|
329
391
|
*/
|
|
@@ -354,7 +416,7 @@ declare const DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & Re
|
|
|
354
416
|
* Upload variant styles for different states.
|
|
355
417
|
*/
|
|
356
418
|
declare const uploadVariants: (props?: ({
|
|
357
|
-
state?: "default" | "
|
|
419
|
+
state?: "default" | "success" | "error" | "dragOver" | "uploading" | null | undefined;
|
|
358
420
|
disabled?: boolean | null | undefined;
|
|
359
421
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
360
422
|
interface UploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onError"> {
|
|
@@ -380,6 +442,48 @@ interface UploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onEr
|
|
|
380
442
|
*/
|
|
381
443
|
declare const Upload: React$1.ForwardRefExoticComponent<UploadProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
382
444
|
|
|
445
|
+
/**
|
|
446
|
+
* Avatar size and shape variants.
|
|
447
|
+
* Sizes map to Figma: regular=40px, sm=32px, mini=24px, xMini=20px.
|
|
448
|
+
* Roundrect radius scales down with size: 10px → 6px → 4px.
|
|
449
|
+
*/
|
|
450
|
+
declare const avatarVariants: (props?: ({
|
|
451
|
+
size?: "regular" | "sm" | "mini" | "xMini" | null | undefined;
|
|
452
|
+
shape?: "round" | "roundrect" | null | undefined;
|
|
453
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
454
|
+
interface AvatarProps extends Avatar$1.Root.Props, VariantProps<typeof avatarVariants> {
|
|
455
|
+
}
|
|
456
|
+
/**
|
|
457
|
+
* Avatar root. Renders a user image with an initials-based fallback.
|
|
458
|
+
* @param {string} [props.size] - Avatar size: regular (40px), sm (32px), mini (24px), xMini (20px)
|
|
459
|
+
* @param {string} [props.shape] - Corner style: round (circle) or roundrect (rounded rect)
|
|
460
|
+
*/
|
|
461
|
+
declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarProps, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
462
|
+
/**
|
|
463
|
+
* Avatar image. Falls back to AvatarFallback if the image fails to load.
|
|
464
|
+
*/
|
|
465
|
+
declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_avatar.AvatarImageProps, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
466
|
+
/**
|
|
467
|
+
* Fallback shown when no image is provided or the image fails to load.
|
|
468
|
+
* Typically displays 1–2 character initials.
|
|
469
|
+
*/
|
|
470
|
+
declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_avatar.AvatarFallbackProps, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
471
|
+
interface AvatarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
472
|
+
ringColor?: string;
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* Container that stacks multiple avatars with an overlapping layout.
|
|
476
|
+
* @param {string} [props.ringColor] - Ring color around each avatar. Defaults to the surface-default token.
|
|
477
|
+
*/
|
|
478
|
+
declare const AvatarGroup: React$1.ForwardRefExoticComponent<AvatarGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
479
|
+
interface AvatarGroupCountProps extends React$1.HTMLAttributes<HTMLDivElement>, Pick<VariantProps<typeof avatarVariants>, "size" | "shape"> {
|
|
480
|
+
}
|
|
481
|
+
/**
|
|
482
|
+
* Displays the overflow count in an avatar group (e.g. "+3").
|
|
483
|
+
* Must receive the same size and shape as the other avatars in the group.
|
|
484
|
+
*/
|
|
485
|
+
declare const AvatarGroupCount: React$1.ForwardRefExoticComponent<AvatarGroupCountProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
486
|
+
|
|
383
487
|
declare const checkboxVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
384
488
|
type CheckboxProps = React$1.ComponentPropsWithoutRef<typeof Checkbox$1.Root>;
|
|
385
489
|
/**
|
|
@@ -408,23 +512,19 @@ interface SwitchProps extends Switch$1.Root.Props, VariantProps<typeof switchVar
|
|
|
408
512
|
*/
|
|
409
513
|
declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
410
514
|
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
* Props for standard text input.
|
|
417
|
-
*/
|
|
418
|
-
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "style"> {
|
|
419
|
-
className?: string;
|
|
420
|
-
style?: React$1.CSSProperties;
|
|
421
|
-
onClear?: () => void;
|
|
422
|
-
showClear?: boolean;
|
|
515
|
+
declare const inputVariants: (props?: ({
|
|
516
|
+
roundness?: "default" | "round" | null | undefined;
|
|
517
|
+
size?: "default" | "small" | "mini" | "large" | null | undefined;
|
|
518
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
519
|
+
interface InputProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Input$1>, "size">, VariantProps<typeof inputVariants> {
|
|
423
520
|
}
|
|
424
521
|
/**
|
|
425
522
|
* Input component for single-line text entry.
|
|
426
|
-
* @param {
|
|
427
|
-
* @param {
|
|
523
|
+
* @param {string} [props.size] - Size variant: "default" | "large" | "small" | "mini"
|
|
524
|
+
* @param {string} [props.roundness] - Border radius: "default" | "round"
|
|
525
|
+
* @param {boolean} [props.disabled] - Disables the input
|
|
526
|
+
* @param {boolean} [props.aria-invalid] - Applies error styling
|
|
527
|
+
* @param {string} [props.className] - Additional class names for custom styling
|
|
428
528
|
*/
|
|
429
529
|
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
430
530
|
|
|
@@ -434,6 +534,45 @@ interface TextareaProps extends Omit<React$1.TextareaHTMLAttributes<HTMLTextArea
|
|
|
434
534
|
}
|
|
435
535
|
declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
436
536
|
|
|
537
|
+
declare const inputGroupVariants: (props?: ({
|
|
538
|
+
size?: "default" | "small" | "mini" | "large" | null | undefined;
|
|
539
|
+
roundness?: "default" | "round" | null | undefined;
|
|
540
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
541
|
+
interface InputGroupProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof inputGroupVariants> {
|
|
542
|
+
}
|
|
543
|
+
/**
|
|
544
|
+
* Groups related form controls (input, addons, buttons) into a single visual unit.
|
|
545
|
+
*
|
|
546
|
+
* Uses `role="group"` — always provide `aria-label` or `aria-labelledby` so
|
|
547
|
+
* screen readers can announce a meaningful name for the group.
|
|
548
|
+
*
|
|
549
|
+
* @example
|
|
550
|
+
* <InputGroup aria-label="Search">
|
|
551
|
+
* <InputGroupAddon><MagnifyingGlass /></InputGroupAddon>
|
|
552
|
+
* <InputGroupInput placeholder="Search…" />
|
|
553
|
+
* </InputGroup>
|
|
554
|
+
*/
|
|
555
|
+
declare const InputGroup: React$1.ForwardRefExoticComponent<InputGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
556
|
+
declare const inputGroupAddonVariants: (props?: ({
|
|
557
|
+
align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
|
|
558
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
559
|
+
interface InputGroupAddonProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof inputGroupAddonVariants> {
|
|
560
|
+
}
|
|
561
|
+
declare const InputGroupAddon: React$1.ForwardRefExoticComponent<InputGroupAddonProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
562
|
+
declare const inputGroupButtonVariants: (props?: ({
|
|
563
|
+
size?: "sm" | "xs" | "icon-xs" | "icon-sm" | null | undefined;
|
|
564
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
565
|
+
interface InputGroupButtonProps extends Omit<React$1.ComponentProps<typeof Button>, "size" | "type">, VariantProps<typeof inputGroupButtonVariants> {
|
|
566
|
+
type?: "button" | "submit" | "reset";
|
|
567
|
+
}
|
|
568
|
+
declare const InputGroupButton: React$1.ForwardRefExoticComponent<Omit<InputGroupButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
569
|
+
type InputGroupTextProps = React$1.HTMLAttributes<HTMLSpanElement>;
|
|
570
|
+
declare const InputGroupText: React$1.ForwardRefExoticComponent<InputGroupTextProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
571
|
+
type InputGroupInputProps = Omit<React$1.ComponentProps<typeof Input>, "size" | "roundness">;
|
|
572
|
+
declare const InputGroupInput: React$1.ForwardRefExoticComponent<Omit<InputGroupInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
573
|
+
type InputGroupTextareaProps = React$1.ComponentProps<typeof Textarea>;
|
|
574
|
+
declare const InputGroupTextarea: React$1.ForwardRefExoticComponent<Omit<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
575
|
+
|
|
437
576
|
/**
|
|
438
577
|
* Badge variant styles.
|
|
439
578
|
*/
|
|
@@ -451,6 +590,25 @@ interface BadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantPro
|
|
|
451
590
|
*/
|
|
452
591
|
declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
453
592
|
|
|
593
|
+
declare function AlertDialog({ ...props }: AlertDialog$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
594
|
+
declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<Omit<AlertDialog$1.Trigger.Props<unknown>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
595
|
+
interface AlertDialogContentProps extends AlertDialog$1.Popup.Props {
|
|
596
|
+
size?: "desktop" | "mobile";
|
|
597
|
+
}
|
|
598
|
+
declare const AlertDialogContent: React$1.ForwardRefExoticComponent<Omit<AlertDialogContentProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
599
|
+
declare const AlertDialogHeader: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
600
|
+
declare const AlertDialogFooter: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
601
|
+
declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<Omit<Omit<_base_ui_react.DialogTitleProps, "ref"> & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
602
|
+
declare const AlertDialogDescription: React$1.ForwardRefExoticComponent<Omit<Omit<_base_ui_react.DialogDescriptionProps, "ref"> & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
603
|
+
/**
|
|
604
|
+
* Primary action button. Closes the dialog on click. Defaults to the `primary` variant.
|
|
605
|
+
*/
|
|
606
|
+
declare const AlertDialogAction: React$1.ForwardRefExoticComponent<Omit<_base_ui_react.DialogCloseProps & Pick<ButtonProps, "variant" | "size">, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
607
|
+
/**
|
|
608
|
+
* Cancel / dismiss button. Closes the dialog on click. Defaults to the `default` variant.
|
|
609
|
+
*/
|
|
610
|
+
declare const AlertDialogCancel: React$1.ForwardRefExoticComponent<Omit<_base_ui_react.DialogCloseProps & Pick<ButtonProps, "variant" | "size">, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
611
|
+
|
|
454
612
|
/**
|
|
455
613
|
* Wrapper that provides `role="list"` semantics and adjusts gap spacing
|
|
456
614
|
* based on the `size` of its child Items.
|
|
@@ -1370,4 +1528,4 @@ interface TableProps<T> {
|
|
|
1370
1528
|
*/
|
|
1371
1529
|
declare function Table<T>({ table, className, showPagination, paginationClassName, }: TableProps<T>): react_jsx_runtime.JSX.Element;
|
|
1372
1530
|
|
|
1373
|
-
export { ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Badge, type BadgeProps, BarChart, type BarChartData, type BarChartProps, BellIcon, BookmarkIcon, type BoundingBox, type BoundingBoxStyle, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CHART_COLORS, CHART_CONSTANTS, COLOR_SCHEMES, CalendarIcon, 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, type ChartAxisLabelProps, type ChartColorScheme, ChartLegend, type ChartLegendProps, ChatIcon, CheckIcon, Checkbox, type CheckboxProps, CheckmarkIcon, CheckmarkSquareIcon, CloseIcon, CogIcon, CredentialsIcon, DatePicker, type DatePickerProps, Dialog, DialogBody, type DialogBodyProps, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogOverlay, type DialogOverlayProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DocumentIcon, DollarIcon, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownMenuTriggerProps, EditIcon, EnvelopeIcon, ExclamationIcon, EyeClosedIcon, EyeOpenIcon, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterDescendingIcon, FilterIcon, GenericTooltip, type GenericTooltipProps, GraphBarIcon, GraphDonutIcon, GraphLineIcon, GraphPieIcon, HamburgerMenuIcon, HomeIcon, type IconProps, type IconVariant, type IconWeight, InformationIcon, Input, type InputProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, type ItemMediaProps, type ItemProps, ItemSeparator, ItemTitle, Label, type LabelProps, type LegendItem, LineChart, type LineChartData, type LineChartProps, type LineSeries, LocationIcon, LockIcon, LogoutIcon, MagnifyingGlassIcon, MinusIcon, MoreMenuIcon, PanelIcon, type PdfFile, PdfViewer, type PdfViewerProps, PhoneIcon, PieChart, type PieChartData, type PieChartProps, type PieLabelProps, PlusIcon, PrintIcon, QuestionCircleIcon, type ScrollTarget, Select, SelectContent, type SelectContentProps, SelectGroup, SelectItem, SelectLabel, 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, TableIcon, type TableProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Text, type TextProps, Textarea, type TextareaProps, type TickProps, Tooltip, TooltipContainer, type TooltipContainerProps, TooltipContent, type TooltipContentProps, TooltipItem, type TooltipItemProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, TrashIcon, Typography, type TypographyProps, Upload, type UploadProps, UserIcon, UserMultiIcon, WarningIcon, WrenchIcon, badgeVariants, buttonVariants, calculateYAxisWidth, checkboxVariants, createCustomXAxisLabel, createCustomYAxisLabel, createCustomYAxisRightLabel, createLegendItems, customXAxisTick, customXAxisTickRotated, customYAxisTick, formatLargeNumber, formatPercentage, getHeatmapColor, getPerformanceColor, getSeriesColor, initializePdfWorker, itemMediaVariants, itemVariants, selectTriggerVariants, switchVariants, tabsVariants, textVariants, typographyVariants, uploadVariants, useSidebar };
|
|
1531
|
+
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, Avatar, AvatarFallback, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarImage, type AvatarProps, Badge, type BadgeProps, BarChart, type BarChartData, type BarChartProps, BellIcon, BookmarkIcon, type BoundingBox, type BoundingBoxStyle, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, CHART_COLORS, CHART_CONSTANTS, COLOR_SCHEMES, 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, type ChartAxisLabelProps, type ChartColorScheme, ChartLegend, type ChartLegendProps, ChatIcon, CheckIcon, Checkbox, type CheckboxProps, CheckmarkIcon, CheckmarkSquareIcon, CloseIcon, CogIcon, CredentialsIcon, DatePicker, type DatePickerProps, Dialog, DialogBody, type DialogBodyProps, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogOverlay, type DialogOverlayProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DocumentIcon, DollarIcon, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownMenuTriggerProps, EditIcon, EnvelopeIcon, ExclamationIcon, EyeClosedIcon, EyeOpenIcon, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterDescendingIcon, FilterIcon, GenericTooltip, type GenericTooltipProps, GraphBarIcon, GraphDonutIcon, GraphLineIcon, GraphPieIcon, HamburgerMenuIcon, HomeIcon, type IconProps, type IconVariant, 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, type LegendItem, LineChart, type LineChartData, type LineChartProps, type LineSeries, LocationIcon, LockIcon, LogoutIcon, MagnifyingGlassIcon, MinusIcon, MoreMenuIcon, PanelIcon, type PdfFile, PdfViewer, type PdfViewerProps, PhoneIcon, PieChart, type PieChartData, type PieChartProps, type PieLabelProps, PlusIcon, PrintIcon, QuestionCircleIcon, type ScrollTarget, 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, TableIcon, type TableProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Text, type TextProps, Textarea, type TextareaProps, type TickProps, Tooltip, TooltipContainer, type TooltipContainerProps, TooltipContent, type TooltipContentProps, TooltipItem, type TooltipItemProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, TrashIcon, Typography, type TypographyProps, Upload, type UploadProps, UserIcon, UserMultiIcon, WarningIcon, WrenchIcon, alertVariants, avatarVariants, badgeVariants, buttonGroupTextVariants, buttonGroupVariants, buttonVariants, calculateYAxisWidth, checkboxVariants, createCustomXAxisLabel, createCustomYAxisLabel, createCustomYAxisRightLabel, createLegendItems, customXAxisTick, customXAxisTickRotated, customYAxisTick, formatLargeNumber, formatPercentage, getHeatmapColor, getPerformanceColor, getSeriesColor, initializePdfWorker, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupVariants, inputVariants, itemMediaVariants, itemVariants, selectTriggerVariants, switchVariants, tabsVariants, textVariants, typographyVariants, uploadVariants, useSidebar };
|