@northslopetech/altitude-ui 3.0.0-alpha.11 → 3.0.0-alpha.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -11
- package/dist/index.d.mts +451 -332
- package/dist/index.d.ts +451 -332
- package/dist/index.js +2668 -2409
- package/dist/index.mjs +2690 -2441
- package/dist/styles.css +1 -0
- package/package.json +7 -8
package/dist/index.d.ts
CHANGED
|
@@ -1,31 +1,28 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
1
2
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
3
|
import * as React$1 from 'react';
|
|
3
4
|
import { ReactNode } from 'react';
|
|
4
5
|
import { VariantProps } from 'class-variance-authority';
|
|
5
|
-
import * as _base_ui_react_accordion from '@base-ui/react/accordion';
|
|
6
6
|
import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
|
|
7
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
8
|
import { useRender } from '@base-ui/react/use-render';
|
|
10
|
-
import * as _base_ui_react_separator from '@base-ui/react/separator';
|
|
11
9
|
import { Separator as Separator$1 } from '@base-ui/react/separator';
|
|
12
10
|
import * as _base_ui_react_select from '@base-ui/react/select';
|
|
13
11
|
import { Select as Select$1 } from '@base-ui/react/select';
|
|
14
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
15
12
|
import * as _base_ui_react_dialog from '@base-ui/react/dialog';
|
|
16
13
|
import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
|
|
14
|
+
import * as vaul from 'vaul';
|
|
15
|
+
import { Drawer as Drawer$1 } from 'vaul';
|
|
17
16
|
import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
|
|
18
17
|
import { Popover as Popover$1 } from '@base-ui/react/popover';
|
|
19
18
|
import { DayPicker, DayButton, Locale } from 'react-day-picker';
|
|
20
19
|
export { DateRange } from 'react-day-picker';
|
|
21
|
-
import * as _base_ui_react_avatar from '@base-ui/react/avatar';
|
|
22
20
|
import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
|
|
23
|
-
import * as _base_ui_react_checkbox from '@base-ui/react/checkbox';
|
|
24
21
|
import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
|
|
25
22
|
import { Switch as Switch$1 } from '@base-ui/react/switch';
|
|
26
23
|
import { Input as Input$1 } from '@base-ui/react/input';
|
|
27
|
-
import * as _base_ui_react from '@base-ui/react';
|
|
28
24
|
import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
|
|
25
|
+
import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
|
|
29
26
|
import * as _base_ui_react_menu from '@base-ui/react/menu';
|
|
30
27
|
import { Menu } from '@base-ui/react/menu';
|
|
31
28
|
import { Table as Table$1 } from '@tanstack/react-table';
|
|
@@ -33,27 +30,25 @@ import { Table as Table$1 } from '@tanstack/react-table';
|
|
|
33
30
|
declare const alertVariants: (props?: ({
|
|
34
31
|
variant?: "default" | "info" | "success" | "warning" | "error" | null | undefined;
|
|
35
32
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
36
|
-
type AlertProps = React$1.
|
|
37
|
-
declare
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
type
|
|
41
|
-
declare
|
|
42
|
-
type
|
|
43
|
-
declare
|
|
44
|
-
type
|
|
45
|
-
declare
|
|
46
|
-
type AlertActionsProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
47
|
-
declare const AlertActions: React$1.ForwardRefExoticComponent<AlertActionsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
type AlertProps = React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>;
|
|
34
|
+
declare function Alert({ className, variant, ref, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
35
|
+
type AlertBodyProps = React$1.ComponentProps<"div">;
|
|
36
|
+
declare function AlertBody({ className, ref, ...props }: AlertBodyProps): react_jsx_runtime.JSX.Element;
|
|
37
|
+
type AlertTitleProps = React$1.ComponentProps<"p">;
|
|
38
|
+
declare function AlertTitle({ className, ref, ...props }: AlertTitleProps): react_jsx_runtime.JSX.Element;
|
|
39
|
+
type AlertDescriptionProps = React$1.ComponentProps<"p">;
|
|
40
|
+
declare function AlertDescription({ className, ref: externalRef, ...props }: AlertDescriptionProps): react_jsx_runtime.JSX.Element;
|
|
41
|
+
type AlertActionsProps = React$1.ComponentProps<"div">;
|
|
42
|
+
declare function AlertActions({ className, ref, ...props }: AlertActionsProps): react_jsx_runtime.JSX.Element;
|
|
48
43
|
|
|
49
44
|
type AccordionProps = Accordion$1.Root.Props;
|
|
50
|
-
declare
|
|
45
|
+
declare function Accordion({ className, ref, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
51
46
|
type AccordionItemProps = Accordion$1.Item.Props;
|
|
52
|
-
declare
|
|
47
|
+
declare function AccordionItem({ className, ref, ...props }: AccordionItemProps): react_jsx_runtime.JSX.Element;
|
|
53
48
|
type AccordionTriggerProps = Accordion$1.Trigger.Props;
|
|
54
|
-
declare
|
|
49
|
+
declare function AccordionTrigger({ className, children, ref, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
|
|
55
50
|
type AccordionContentProps = Accordion$1.Panel.Props;
|
|
56
|
-
declare
|
|
51
|
+
declare function AccordionContent({ className, children, ref, ...props }: AccordionContentProps): react_jsx_runtime.JSX.Element;
|
|
57
52
|
|
|
58
53
|
declare const buttonVariants: (props?: ({
|
|
59
54
|
variant?: "default" | "link" | "primary" | "destructive" | "ghost" | null | undefined;
|
|
@@ -61,29 +56,24 @@ declare const buttonVariants: (props?: ({
|
|
|
61
56
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
62
57
|
interface ButtonProps extends Button$1.Props, VariantProps<typeof buttonVariants> {
|
|
63
58
|
}
|
|
64
|
-
declare
|
|
59
|
+
declare function Button({ className, style, variant, size, children, ref, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
65
60
|
|
|
66
61
|
type SeparatorProps = Separator$1.Props;
|
|
67
|
-
declare
|
|
62
|
+
declare function Separator({ className, orientation, ref, ...props }: SeparatorProps): react_jsx_runtime.JSX.Element;
|
|
68
63
|
|
|
69
64
|
declare const buttonGroupVariants: (props?: ({
|
|
70
65
|
variant?: "ghost" | "outlined" | null | undefined;
|
|
71
66
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
72
67
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
73
|
-
type ButtonGroupProps = React$1.
|
|
74
|
-
declare
|
|
75
|
-
variant?: "ghost" | "outlined" | null | undefined;
|
|
76
|
-
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
77
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
68
|
+
type ButtonGroupProps = React$1.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>;
|
|
69
|
+
declare function ButtonGroup({ className, variant, orientation, children, ref, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
78
70
|
declare const buttonGroupTextVariants: (props?: ({
|
|
79
71
|
size?: "default" | "lg" | "sm" | null | undefined;
|
|
80
72
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
81
|
-
type ButtonGroupTextProps =
|
|
82
|
-
declare
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
type ButtonGroupSeparatorProps = Omit<React$1.ComponentPropsWithoutRef<typeof Separator>, "orientation">;
|
|
86
|
-
declare const ButtonGroupSeparator: React$1.ForwardRefExoticComponent<ButtonGroupSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
73
|
+
type ButtonGroupTextProps = useRender.ComponentProps<"div"> & VariantProps<typeof buttonGroupTextVariants>;
|
|
74
|
+
declare function ButtonGroupText({ className, size, ref, render, ...props }: ButtonGroupTextProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
75
|
+
type ButtonGroupSeparatorProps = Omit<React$1.ComponentProps<typeof Separator>, "orientation">;
|
|
76
|
+
declare function ButtonGroupSeparator({ className, ref, ...props }: ButtonGroupSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
87
77
|
|
|
88
78
|
/**
|
|
89
79
|
* Current-generation text variant styles using @utility classes from design tokens.
|
|
@@ -93,53 +83,33 @@ declare const textVariants: (props?: ({
|
|
|
93
83
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
94
84
|
interface TextProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof textVariants> {
|
|
95
85
|
as?: React$1.ElementType;
|
|
86
|
+
ref?: React$1.Ref<HTMLElement>;
|
|
96
87
|
}
|
|
97
88
|
/**
|
|
98
89
|
* Text component for rendering text with design system styles.
|
|
99
90
|
* @param {React.ElementType} [props.as] - Custom HTML element to render
|
|
100
91
|
* @param {string} [props.variant] - Text variant from design tokens
|
|
101
92
|
*/
|
|
102
|
-
declare
|
|
93
|
+
declare function Text({ className, variant, as, style, ref, ...props }: TextProps): react_jsx_runtime.JSX.Element;
|
|
103
94
|
|
|
104
|
-
type CardProps = React$1.
|
|
95
|
+
type CardProps = React$1.ComponentProps<"div"> & {
|
|
105
96
|
size?: "default" | "sm";
|
|
106
97
|
};
|
|
107
|
-
declare
|
|
108
|
-
|
|
109
|
-
}
|
|
110
|
-
type
|
|
111
|
-
declare
|
|
112
|
-
type
|
|
113
|
-
declare
|
|
114
|
-
type
|
|
115
|
-
declare
|
|
116
|
-
type
|
|
117
|
-
declare const CardAction: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
118
|
-
type CardContentProps = React$1.ComponentPropsWithoutRef<"div"> & {
|
|
98
|
+
declare function Card({ className, size, ref, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
99
|
+
type CardHeaderProps = React$1.ComponentProps<"div">;
|
|
100
|
+
declare function CardHeader({ className, ref, ...props }: CardHeaderProps): react_jsx_runtime.JSX.Element;
|
|
101
|
+
type CardTitleProps = React$1.ComponentProps<typeof Text>;
|
|
102
|
+
declare function CardTitle({ className, ref, ...props }: CardTitleProps): react_jsx_runtime.JSX.Element;
|
|
103
|
+
type CardDescriptionProps = React$1.ComponentProps<typeof Text>;
|
|
104
|
+
declare function CardDescription({ className, ref, ...props }: CardDescriptionProps): react_jsx_runtime.JSX.Element;
|
|
105
|
+
type CardActionProps = React$1.ComponentProps<"div">;
|
|
106
|
+
declare function CardAction({ className, ref, ...props }: CardActionProps): react_jsx_runtime.JSX.Element;
|
|
107
|
+
type CardContentProps = React$1.ComponentProps<"div"> & {
|
|
119
108
|
bleed?: boolean;
|
|
120
109
|
};
|
|
121
|
-
declare
|
|
122
|
-
|
|
123
|
-
}
|
|
124
|
-
type CardFooterProps = React$1.ComponentPropsWithoutRef<"div">;
|
|
125
|
-
declare const CardFooter: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* Typography variant styles using @utility classes from design tokens.
|
|
129
|
-
* Original variant names mapped to current-generation type-* utilities.
|
|
130
|
-
*/
|
|
131
|
-
declare const typographyVariants: (props?: ({
|
|
132
|
-
variant?: "body-xs" | "body-sm" | "body-md" | "label-xs" | "label-sm" | "label-md" | "display-lg" | "display-xl" | "display-2xl" | "display-3xl" | "heading-lg" | "heading-xl" | "heading-2xl" | "heading-3xl" | "body-base" | "label-xs-bold" | "label-sm-bold" | "label-base" | "label-base-bold" | "label-md-bold" | null | undefined;
|
|
133
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
134
|
-
interface TypographyProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof typographyVariants> {
|
|
135
|
-
as?: React$1.ElementType;
|
|
136
|
-
}
|
|
137
|
-
/**
|
|
138
|
-
* Typography component for rendering text with design system styles.
|
|
139
|
-
* @param {React.ElementType} [props.as] - Custom HTML element to render
|
|
140
|
-
* @param {string} [props.variant] - Typography variant from design tokens
|
|
141
|
-
*/
|
|
142
|
-
declare const Typography: React$1.ForwardRefExoticComponent<TypographyProps & React$1.RefAttributes<HTMLElement>>;
|
|
110
|
+
declare function CardContent({ className, bleed, ref, ...props }: CardContentProps): react_jsx_runtime.JSX.Element;
|
|
111
|
+
type CardFooterProps = React$1.ComponentProps<"div">;
|
|
112
|
+
declare function CardFooter({ className, ref, ...props }: CardFooterProps): react_jsx_runtime.JSX.Element;
|
|
143
113
|
|
|
144
114
|
declare const selectTriggerVariants: (props?: ({
|
|
145
115
|
size?: "default" | "small" | "mini" | "large" | null | undefined;
|
|
@@ -151,7 +121,7 @@ declare const Select: typeof Select$1.Root;
|
|
|
151
121
|
type SelectProps = Select$1.Root.Props<string>;
|
|
152
122
|
declare const SelectGroup: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_select.SelectGroupProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
153
123
|
declare const SelectValue: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_select.SelectValueProps, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
154
|
-
interface SelectTriggerProps extends React$1.
|
|
124
|
+
interface SelectTriggerProps extends React$1.ComponentProps<typeof Select$1.Trigger>, VariantProps<typeof selectTriggerVariants> {
|
|
155
125
|
}
|
|
156
126
|
/**
|
|
157
127
|
* Select trigger button.
|
|
@@ -159,33 +129,27 @@ interface SelectTriggerProps extends React$1.ComponentPropsWithoutRef<typeof Sel
|
|
|
159
129
|
* @param {boolean} [props.disabled] - Disables the trigger
|
|
160
130
|
* @param {boolean} [props["aria-invalid"]] - Applies error styling
|
|
161
131
|
*/
|
|
162
|
-
declare
|
|
163
|
-
interface SelectContentProps extends React$1.
|
|
132
|
+
declare function SelectTrigger({ className, size, children, ref, ...props }: SelectTriggerProps): react_jsx_runtime.JSX.Element;
|
|
133
|
+
interface SelectContentProps extends React$1.ComponentProps<typeof Select$1.Positioner> {
|
|
164
134
|
children?: React$1.ReactNode;
|
|
165
135
|
className?: string;
|
|
166
136
|
positionerClassName?: string;
|
|
167
137
|
}
|
|
168
|
-
declare
|
|
169
|
-
type SelectLabelProps = React$1.
|
|
170
|
-
declare
|
|
171
|
-
type SelectItemProps = React$1.
|
|
138
|
+
declare function SelectContent({ className, positionerClassName, children, ref, ...props }: SelectContentProps): react_jsx_runtime.JSX.Element;
|
|
139
|
+
type SelectLabelProps = React$1.ComponentProps<typeof Select$1.GroupLabel>;
|
|
140
|
+
declare function SelectLabel({ className, ref, ...props }: SelectLabelProps): react_jsx_runtime.JSX.Element;
|
|
141
|
+
type SelectItemProps = React$1.ComponentProps<typeof Select$1.Item>;
|
|
172
142
|
/**
|
|
173
143
|
* Select menu item.
|
|
174
144
|
* @param {boolean} [props.disabled] - Disables the item
|
|
175
145
|
*/
|
|
176
|
-
declare
|
|
177
|
-
declare
|
|
178
|
-
declare
|
|
179
|
-
declare
|
|
180
|
-
|
|
181
|
-
/**
|
|
182
|
-
* @fileoverview Label component for Altitude UI.
|
|
183
|
-
*/
|
|
146
|
+
declare function SelectItem({ className, children, label, ref, ...props }: SelectItemProps): react_jsx_runtime.JSX.Element;
|
|
147
|
+
declare function SelectSeparator({ className, ref, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
148
|
+
declare function SelectScrollUpButton({ className, ref, ...props }: React$1.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime.JSX.Element;
|
|
149
|
+
declare function SelectScrollDownButton({ className, ref, ...props }: React$1.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime.JSX.Element;
|
|
184
150
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
}
|
|
188
|
-
declare const Label: React$1.ForwardRefExoticComponent<LabelProps & React$1.RefAttributes<HTMLLabelElement>>;
|
|
151
|
+
type LabelProps = React$1.ComponentProps<"label">;
|
|
152
|
+
declare function Label({ className, ref, ...props }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
189
153
|
|
|
190
154
|
declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
|
|
191
155
|
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
|
|
@@ -209,13 +173,13 @@ declare function FieldError({ className, children, errors, ...props }: React.Com
|
|
|
209
173
|
} | undefined>;
|
|
210
174
|
}): react_jsx_runtime.JSX.Element | null;
|
|
211
175
|
|
|
212
|
-
type DialogProps = React$1.
|
|
176
|
+
type DialogProps = React$1.ComponentProps<typeof Dialog$1.Root>;
|
|
213
177
|
declare const Dialog: typeof Dialog$1.Root;
|
|
214
|
-
type DialogTriggerProps = React$1.
|
|
178
|
+
type DialogTriggerProps = React$1.ComponentProps<typeof Dialog$1.Trigger>;
|
|
215
179
|
declare const DialogTrigger: Dialog$1.Trigger;
|
|
216
|
-
type DialogOverlayProps = React$1.
|
|
217
|
-
declare
|
|
218
|
-
type DialogContentProps = React$1.
|
|
180
|
+
type DialogOverlayProps = React$1.ComponentProps<typeof Dialog$1.Backdrop>;
|
|
181
|
+
declare function DialogOverlay({ className, ref, ...props }: DialogOverlayProps): react_jsx_runtime.JSX.Element;
|
|
182
|
+
type DialogContentProps = React$1.ComponentProps<typeof Dialog$1.Popup> & {
|
|
219
183
|
/**
|
|
220
184
|
* Whether to show the default close button in the top-right corner.
|
|
221
185
|
* Set to false to hide it (e.g., when providing custom actions).
|
|
@@ -223,47 +187,79 @@ type DialogContentProps = React$1.ComponentPropsWithoutRef<typeof Dialog$1.Popup
|
|
|
223
187
|
showCloseButton?: boolean;
|
|
224
188
|
/**
|
|
225
189
|
* Preset dialog dimensions.
|
|
226
|
-
* - desktop:
|
|
227
|
-
* - mobile:
|
|
190
|
+
* - desktop: 640px wide, content-driven height
|
|
191
|
+
* - mobile: 320px wide, min 240px, grows up to 640px height
|
|
228
192
|
*/
|
|
229
193
|
size?: "desktop" | "mobile";
|
|
230
194
|
};
|
|
231
|
-
declare
|
|
232
|
-
|
|
233
|
-
* Whether to show the default close button in the top-right corner.
|
|
234
|
-
* Set to false to hide it (e.g., when providing custom actions).
|
|
235
|
-
*/
|
|
236
|
-
showCloseButton?: boolean;
|
|
237
|
-
/**
|
|
238
|
-
* Preset dialog dimensions.
|
|
239
|
-
* - desktop: 640x480
|
|
240
|
-
* - mobile: 320x240, can grow up to 640px height
|
|
241
|
-
*/
|
|
242
|
-
size?: "desktop" | "mobile";
|
|
243
|
-
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
244
|
-
type DialogBodyProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
195
|
+
declare function DialogContent({ className, children, showCloseButton, size, ref, ...props }: DialogContentProps): react_jsx_runtime.JSX.Element;
|
|
196
|
+
type DialogBodyProps = React$1.ComponentProps<"div">;
|
|
245
197
|
/**
|
|
246
198
|
* Scrollable main region of the dialog (Figma "Slot"). Keep {@link DialogFooter}
|
|
247
199
|
* as a sibling so the footer stays pinned to the bottom while this area scrolls.
|
|
248
200
|
*/
|
|
249
|
-
declare
|
|
250
|
-
type DialogFooterProps = React$1.
|
|
251
|
-
declare
|
|
252
|
-
type
|
|
253
|
-
declare
|
|
254
|
-
type
|
|
255
|
-
declare
|
|
256
|
-
type
|
|
201
|
+
declare function DialogBody({ className, ref, ...props }: DialogBodyProps): react_jsx_runtime.JSX.Element;
|
|
202
|
+
type DialogFooterProps = React$1.ComponentProps<"div">;
|
|
203
|
+
declare function DialogFooter({ className, ref, ...props }: DialogFooterProps): react_jsx_runtime.JSX.Element;
|
|
204
|
+
type DialogHeaderProps = React$1.ComponentProps<"div">;
|
|
205
|
+
declare function DialogHeader({ className, children, ref, ...props }: DialogHeaderProps): react_jsx_runtime.JSX.Element;
|
|
206
|
+
type DialogTitleProps = React$1.ComponentProps<typeof Dialog$1.Title>;
|
|
207
|
+
declare function DialogTitle({ className, ref, ...props }: DialogTitleProps): react_jsx_runtime.JSX.Element;
|
|
208
|
+
type DialogDescriptionProps = React$1.ComponentProps<typeof Dialog$1.Description>;
|
|
209
|
+
declare function DialogDescription({ className, ref, ...props }: DialogDescriptionProps): react_jsx_runtime.JSX.Element;
|
|
210
|
+
type DialogCloseProps = React$1.ComponentProps<typeof Dialog$1.Close>;
|
|
257
211
|
declare const DialogClose: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_dialog.DialogCloseProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
258
212
|
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
213
|
+
type DrawerProps = React$1.ComponentProps<typeof Drawer$1.Root>;
|
|
214
|
+
/**
|
|
215
|
+
* Drawer root. Pass `direction` to control which edge the panel slides from.
|
|
216
|
+
* Vaul handles drag-to-dismiss and spring animations automatically.
|
|
217
|
+
*
|
|
218
|
+
* @example
|
|
219
|
+
* ```tsx
|
|
220
|
+
* <Drawer direction="right">
|
|
221
|
+
* <DrawerTrigger asChild><Button>Open</Button></DrawerTrigger>
|
|
222
|
+
* <DrawerContent>...</DrawerContent>
|
|
223
|
+
* </Drawer>
|
|
224
|
+
* ```
|
|
225
|
+
*/
|
|
226
|
+
declare const Drawer: typeof vaul.Root;
|
|
227
|
+
type DrawerTriggerProps = React$1.ComponentPropsWithoutRef<typeof Drawer$1.Trigger>;
|
|
228
|
+
declare const DrawerTrigger: React$1.ForwardRefExoticComponent<DrawerTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
229
|
+
declare const DrawerPortal: typeof vaul.Portal;
|
|
230
|
+
type DrawerCloseProps = React$1.ComponentPropsWithoutRef<typeof Drawer$1.Close>;
|
|
231
|
+
declare const DrawerClose: React$1.ForwardRefExoticComponent<DrawerCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
232
|
+
type DrawerOverlayProps = React$1.ComponentPropsWithoutRef<typeof Drawer$1.Overlay>;
|
|
233
|
+
declare const DrawerOverlay: React$1.ForwardRefExoticComponent<DrawerOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
234
|
+
type DrawerContentProps = React$1.ComponentPropsWithoutRef<typeof Drawer$1.Content>;
|
|
235
|
+
declare const DrawerContent: React$1.ForwardRefExoticComponent<DrawerContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
236
|
+
type DrawerTitleProps = React$1.ComponentPropsWithoutRef<"h2">;
|
|
237
|
+
declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
238
|
+
type DrawerBodyProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
239
|
+
/**
|
|
240
|
+
* Scrollable main region of the drawer. Keep {@link DrawerFooter} as a sibling
|
|
241
|
+
* so the footer stays pinned to the bottom while this area scrolls.
|
|
242
|
+
*/
|
|
243
|
+
declare const DrawerBody: React$1.ForwardRefExoticComponent<DrawerBodyProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
244
|
+
type DrawerDescriptionProps = React$1.ComponentPropsWithoutRef<"p">;
|
|
245
|
+
declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
246
|
+
type DrawerFooterProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
247
|
+
declare const DrawerFooter: React$1.ForwardRefExoticComponent<DrawerFooterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
248
|
+
|
|
249
|
+
type BreadcrumbProps = React$1.ComponentProps<"nav">;
|
|
250
|
+
declare function Breadcrumb({ className, ref, ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
251
|
+
type BreadcrumbListProps = React$1.ComponentProps<"ol">;
|
|
252
|
+
declare function BreadcrumbList({ className, ref, ...props }: BreadcrumbListProps): react_jsx_runtime.JSX.Element;
|
|
253
|
+
type BreadcrumbItemProps = React$1.ComponentProps<"li">;
|
|
254
|
+
declare function BreadcrumbItem({ className, ref, ...props }: BreadcrumbItemProps): react_jsx_runtime.JSX.Element;
|
|
255
|
+
type BreadcrumbLinkProps = useRender.ComponentProps<"a">;
|
|
256
|
+
declare function BreadcrumbLink({ className, ref, render, ...props }: BreadcrumbLinkProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
257
|
+
type BreadcrumbPageProps = React$1.ComponentProps<"span">;
|
|
258
|
+
declare function BreadcrumbPage({ className, ref, ...props }: BreadcrumbPageProps): react_jsx_runtime.JSX.Element;
|
|
259
|
+
type BreadcrumbSeparatorProps = React$1.ComponentProps<"li">;
|
|
260
|
+
declare function BreadcrumbSeparator({ children, className, ref, ...props }: BreadcrumbSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
261
|
+
type BreadcrumbEllipsisProps = React$1.ComponentProps<"span">;
|
|
262
|
+
declare function BreadcrumbEllipsis({ className, ref, ...props }: BreadcrumbEllipsisProps): react_jsx_runtime.JSX.Element;
|
|
267
263
|
|
|
268
264
|
declare function TooltipProvider({ delay, ...props }: Tooltip$1.Provider.Props): react_jsx_runtime.JSX.Element;
|
|
269
265
|
declare function Tooltip({ ...props }: Tooltip$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
@@ -287,11 +283,6 @@ type PopoverHeaderProps = React$1.ComponentProps<"div">;
|
|
|
287
283
|
type PopoverTitleProps = Popover$1.Title.Props;
|
|
288
284
|
type PopoverDescriptionProps = Popover$1.Description.Props;
|
|
289
285
|
|
|
290
|
-
/**
|
|
291
|
-
* @fileoverview Sidebar component for Altitude UI.
|
|
292
|
-
* Provides a collapsible sidebar navigation with icon-only and expanded states.
|
|
293
|
-
*/
|
|
294
|
-
|
|
295
286
|
type SidebarContextProps = {
|
|
296
287
|
state: "expanded" | "collapsed";
|
|
297
288
|
open: boolean;
|
|
@@ -332,50 +323,50 @@ declare function useSidebar(): SidebarContextProps;
|
|
|
332
323
|
* @param {boolean} [props.open] - Controlled open state
|
|
333
324
|
* @param {(open: boolean) => void} [props.onOpenChange] - Callback when open state changes
|
|
334
325
|
*/
|
|
335
|
-
declare
|
|
326
|
+
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ref, ...props }: SidebarProviderProps): react_jsx_runtime.JSX.Element;
|
|
336
327
|
/**
|
|
337
328
|
* Sidebar - Main sidebar container
|
|
338
329
|
* @param {('icon')} [props.collapsible='icon'] - Collapsible behavior
|
|
339
330
|
*/
|
|
340
|
-
declare
|
|
331
|
+
declare function Sidebar({ collapsible, className, children, ref, ...props }: SidebarProps): react_jsx_runtime.JSX.Element;
|
|
341
332
|
/**
|
|
342
333
|
* SidebarInset - Main content area that sits beside the sidebar
|
|
343
334
|
*/
|
|
344
|
-
declare
|
|
335
|
+
declare function SidebarInset({ className, ref, ...props }: SidebarInsetProps): react_jsx_runtime.JSX.Element;
|
|
345
336
|
/**
|
|
346
337
|
* SidebarHeader - Header section of sidebar
|
|
347
338
|
*/
|
|
348
|
-
declare
|
|
339
|
+
declare function SidebarHeader({ className, ref, ...props }: SidebarHeaderProps): react_jsx_runtime.JSX.Element;
|
|
349
340
|
/**
|
|
350
341
|
* SidebarFooter - Footer section of sidebar
|
|
351
342
|
*/
|
|
352
|
-
declare
|
|
343
|
+
declare function SidebarFooter({ className, ref, ...props }: SidebarFooterProps): react_jsx_runtime.JSX.Element;
|
|
353
344
|
/**
|
|
354
345
|
* SidebarContent - Scrollable content area of sidebar
|
|
355
346
|
*/
|
|
356
|
-
declare
|
|
347
|
+
declare function SidebarContent({ className, ref, ...props }: SidebarContentProps): react_jsx_runtime.JSX.Element;
|
|
357
348
|
/**
|
|
358
349
|
* SidebarGroup - Logical grouping of sidebar items
|
|
359
350
|
*/
|
|
360
|
-
declare
|
|
351
|
+
declare function SidebarGroup({ className, ref, ...props }: SidebarGroupProps): react_jsx_runtime.JSX.Element;
|
|
361
352
|
/**
|
|
362
353
|
* SidebarGroupContent - Content wrapper for sidebar group
|
|
363
354
|
*/
|
|
364
|
-
declare
|
|
355
|
+
declare function SidebarGroupContent({ className, ref, ...props }: SidebarGroupContentProps): react_jsx_runtime.JSX.Element;
|
|
365
356
|
/**
|
|
366
357
|
* SidebarMenu - Menu list container
|
|
367
358
|
*/
|
|
368
|
-
declare
|
|
359
|
+
declare function SidebarMenu({ className, ref, ...props }: SidebarMenuProps): react_jsx_runtime.JSX.Element;
|
|
369
360
|
/**
|
|
370
361
|
* SidebarMenuItem - Individual menu item container
|
|
371
362
|
*/
|
|
372
|
-
declare
|
|
363
|
+
declare function SidebarMenuItem({ className, ref, ...props }: SidebarMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
373
364
|
/**
|
|
374
365
|
* SidebarMenuButton - Interactive menu button with optional tooltip
|
|
375
366
|
* @param {boolean} [props.isActive=false] - Whether button is in active state
|
|
376
367
|
* @param {string | React.ComponentProps<typeof TooltipContent>} [props.tooltip] - Tooltip configuration
|
|
377
368
|
*/
|
|
378
|
-
declare
|
|
369
|
+
declare function SidebarMenuButton({ isActive, tooltip, className, children, ref, ...props }: SidebarMenuButtonProps): react_jsx_runtime.JSX.Element;
|
|
379
370
|
|
|
380
371
|
type CalendarProps = React$1.ComponentProps<typeof DayPicker> & {
|
|
381
372
|
navButtonVariant?: React$1.ComponentProps<typeof Button>["variant"];
|
|
@@ -405,13 +396,14 @@ interface DatePickerTriggerProps extends Omit<React$1.ButtonHTMLAttributes<HTMLB
|
|
|
405
396
|
label?: string | null;
|
|
406
397
|
placeholder?: string;
|
|
407
398
|
disabled?: boolean;
|
|
399
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
408
400
|
}
|
|
409
401
|
/**
|
|
410
402
|
* The trigger button for a DatePicker. Must be rendered inside a `<Popover>`.
|
|
411
403
|
* Used internally by `DatePicker` and exposed for composing custom pickers
|
|
412
404
|
* (e.g. date range) with `Popover` + `Calendar`.
|
|
413
405
|
*/
|
|
414
|
-
declare
|
|
406
|
+
declare function DatePickerTrigger({ label, placeholder, disabled, className, ref, ...rest }: DatePickerTriggerProps): react_jsx_runtime.JSX.Element;
|
|
415
407
|
interface DatePickerProps {
|
|
416
408
|
value?: Date;
|
|
417
409
|
onValueChange?: (date: Date | undefined) => void;
|
|
@@ -423,6 +415,7 @@ interface DatePickerProps {
|
|
|
423
415
|
toDate?: Date;
|
|
424
416
|
placeholder?: string;
|
|
425
417
|
className?: string;
|
|
418
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
426
419
|
}
|
|
427
420
|
/**
|
|
428
421
|
* DatePicker component.
|
|
@@ -432,7 +425,7 @@ interface DatePickerProps {
|
|
|
432
425
|
* the `value` prop is present at mount — do not switch between modes after the
|
|
433
426
|
* component mounts.
|
|
434
427
|
*/
|
|
435
|
-
declare
|
|
428
|
+
declare function DatePicker(props: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
436
429
|
|
|
437
430
|
/**
|
|
438
431
|
* Upload variant styles for different states.
|
|
@@ -441,7 +434,7 @@ declare const uploadVariants: (props?: ({
|
|
|
441
434
|
state?: "default" | "success" | "error" | "dragOver" | "uploading" | null | undefined;
|
|
442
435
|
disabled?: boolean | null | undefined;
|
|
443
436
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
444
|
-
interface UploadProps extends Omit<React$1.
|
|
437
|
+
interface UploadProps extends Omit<React$1.ComponentProps<"div">, "onError"> {
|
|
445
438
|
onFileSelect?: (files: File[]) => void;
|
|
446
439
|
acceptedFileTypes?: string[];
|
|
447
440
|
disabled?: boolean;
|
|
@@ -462,7 +455,7 @@ interface UploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onEr
|
|
|
462
455
|
* @param {File[]} [props.selectedFiles] - Currently selected files
|
|
463
456
|
* @param {number} [props.maxFileSize] - Maximum file size in bytes
|
|
464
457
|
*/
|
|
465
|
-
declare
|
|
458
|
+
declare function Upload({ className, onFileSelect, maxFileSize, acceptedFileTypes, disabled, state, progress, errorMessage, selectedFiles, ref, ...props }: UploadProps): react_jsx_runtime.JSX.Element;
|
|
466
459
|
|
|
467
460
|
/**
|
|
468
461
|
* Avatar size and shape variants.
|
|
@@ -480,34 +473,34 @@ interface AvatarProps extends Avatar$1.Root.Props, VariantProps<typeof avatarVar
|
|
|
480
473
|
* @param {string} [props.size] - Avatar size: regular (40px), sm (32px), mini (24px), xMini (20px)
|
|
481
474
|
* @param {string} [props.shape] - Corner style: round (circle) or roundrect (rounded rect)
|
|
482
475
|
*/
|
|
483
|
-
declare
|
|
476
|
+
declare function Avatar({ className, size, shape, ref, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
484
477
|
/**
|
|
485
478
|
* Avatar image. Falls back to AvatarFallback if the image fails to load.
|
|
486
479
|
*/
|
|
487
|
-
declare
|
|
480
|
+
declare function AvatarImage({ className, ref, ...props }: Avatar$1.Image.Props): react_jsx_runtime.JSX.Element;
|
|
488
481
|
/**
|
|
489
482
|
* Fallback shown when no image is provided or the image fails to load.
|
|
490
483
|
* Typically displays 1–2 character initials.
|
|
491
484
|
*/
|
|
492
|
-
declare
|
|
493
|
-
interface AvatarGroupProps extends React$1.
|
|
485
|
+
declare function AvatarFallback({ className, ref, ...props }: Avatar$1.Fallback.Props): react_jsx_runtime.JSX.Element;
|
|
486
|
+
interface AvatarGroupProps extends React$1.ComponentProps<"div"> {
|
|
494
487
|
ringColor?: string;
|
|
495
488
|
}
|
|
496
489
|
/**
|
|
497
490
|
* Container that stacks multiple avatars with an overlapping layout.
|
|
498
491
|
* @param {string} [props.ringColor] - Ring color around each avatar. Defaults to the surface-default token.
|
|
499
492
|
*/
|
|
500
|
-
declare
|
|
501
|
-
interface AvatarGroupCountProps extends React$1.
|
|
493
|
+
declare function AvatarGroup({ className, ringColor, style, ref, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
|
|
494
|
+
interface AvatarGroupCountProps extends React$1.ComponentProps<"div">, Pick<VariantProps<typeof avatarVariants>, "size" | "shape"> {
|
|
502
495
|
}
|
|
503
496
|
/**
|
|
504
497
|
* Displays the overflow count in an avatar group (e.g. "+3").
|
|
505
498
|
* Must receive the same size and shape as the other avatars in the group.
|
|
506
499
|
*/
|
|
507
|
-
declare
|
|
500
|
+
declare function AvatarGroupCount({ className, size, shape, ref, ...props }: AvatarGroupCountProps): react_jsx_runtime.JSX.Element;
|
|
508
501
|
|
|
509
502
|
declare const checkboxVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
510
|
-
type CheckboxProps = React$1.
|
|
503
|
+
type CheckboxProps = React$1.ComponentProps<typeof Checkbox$1.Root>;
|
|
511
504
|
/**
|
|
512
505
|
* Checkbox component for binary and indeterminate selection states.
|
|
513
506
|
* @param {boolean} [props.checked] - Controlled checked state
|
|
@@ -517,7 +510,7 @@ type CheckboxProps = React$1.ComponentPropsWithoutRef<typeof Checkbox$1.Root>;
|
|
|
517
510
|
* @param {boolean} [props.disabled] - Disables interaction and applies disabled styles
|
|
518
511
|
* @param {string} [props.className] - Additional class names for custom styling
|
|
519
512
|
*/
|
|
520
|
-
declare
|
|
513
|
+
declare function Checkbox({ className, ref, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
521
514
|
|
|
522
515
|
declare const switchVariants: (props?: ({
|
|
523
516
|
size?: "default" | "sm" | null | undefined;
|
|
@@ -532,13 +525,13 @@ interface SwitchProps extends Switch$1.Root.Props, VariantProps<typeof switchVar
|
|
|
532
525
|
* @param {boolean} [props.disabled] - Whether the switch is disabled
|
|
533
526
|
* @param {string} [props.className] - Additional CSS classes
|
|
534
527
|
*/
|
|
535
|
-
declare
|
|
528
|
+
declare function Switch({ className, size, ref, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
536
529
|
|
|
537
530
|
declare const inputVariants: (props?: ({
|
|
538
531
|
roundness?: "default" | "round" | null | undefined;
|
|
539
532
|
size?: "default" | "small" | "mini" | "large" | null | undefined;
|
|
540
533
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
541
|
-
interface InputProps extends Omit<React$1.
|
|
534
|
+
interface InputProps extends Omit<React$1.ComponentProps<typeof Input$1>, "size">, VariantProps<typeof inputVariants> {
|
|
542
535
|
}
|
|
543
536
|
/**
|
|
544
537
|
* Input component for single-line text entry.
|
|
@@ -548,19 +541,18 @@ interface InputProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Input$
|
|
|
548
541
|
* @param {boolean} [props.aria-invalid] - Applies error styling
|
|
549
542
|
* @param {string} [props.className] - Additional class names for custom styling
|
|
550
543
|
*/
|
|
551
|
-
declare
|
|
544
|
+
declare function Input({ className, size, roundness, ref, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
552
545
|
|
|
553
|
-
interface TextareaProps extends Omit<React$1.
|
|
554
|
-
className?: string;
|
|
546
|
+
interface TextareaProps extends Omit<React$1.ComponentProps<"textarea">, "style"> {
|
|
555
547
|
style?: React$1.CSSProperties;
|
|
556
548
|
}
|
|
557
|
-
declare
|
|
549
|
+
declare function Textarea({ className, style, ref, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
|
|
558
550
|
|
|
559
551
|
declare const inputGroupVariants: (props?: ({
|
|
560
552
|
size?: "default" | "small" | "mini" | "large" | null | undefined;
|
|
561
553
|
roundness?: "default" | "round" | null | undefined;
|
|
562
554
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
563
|
-
interface InputGroupProps extends React$1.
|
|
555
|
+
interface InputGroupProps extends React$1.ComponentProps<"div">, VariantProps<typeof inputGroupVariants> {
|
|
564
556
|
}
|
|
565
557
|
/**
|
|
566
558
|
* Groups related form controls (input, addons, buttons) into a single visual unit.
|
|
@@ -574,26 +566,26 @@ interface InputGroupProps extends React$1.HTMLAttributes<HTMLDivElement>, Varian
|
|
|
574
566
|
* <InputGroupInput placeholder="Search…" />
|
|
575
567
|
* </InputGroup>
|
|
576
568
|
*/
|
|
577
|
-
declare
|
|
569
|
+
declare function InputGroup({ className, size, roundness, ref, ...props }: InputGroupProps): react_jsx_runtime.JSX.Element;
|
|
578
570
|
declare const inputGroupAddonVariants: (props?: ({
|
|
579
571
|
align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
|
|
580
572
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
581
|
-
interface InputGroupAddonProps extends React$1.
|
|
573
|
+
interface InputGroupAddonProps extends React$1.ComponentProps<"div">, VariantProps<typeof inputGroupAddonVariants> {
|
|
582
574
|
}
|
|
583
|
-
declare
|
|
575
|
+
declare function InputGroupAddon({ className, align, ref, ...props }: InputGroupAddonProps): react_jsx_runtime.JSX.Element;
|
|
584
576
|
declare const inputGroupButtonVariants: (props?: ({
|
|
585
577
|
size?: "sm" | "xs" | "icon-xs" | "icon-sm" | null | undefined;
|
|
586
578
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
587
579
|
interface InputGroupButtonProps extends Omit<React$1.ComponentProps<typeof Button>, "size" | "type">, VariantProps<typeof inputGroupButtonVariants> {
|
|
588
580
|
type?: "button" | "submit" | "reset";
|
|
589
581
|
}
|
|
590
|
-
declare
|
|
591
|
-
type InputGroupTextProps = React$1.
|
|
592
|
-
declare
|
|
582
|
+
declare function InputGroupButton({ className, type, variant, size, ref, ...props }: InputGroupButtonProps): react_jsx_runtime.JSX.Element;
|
|
583
|
+
type InputGroupTextProps = React$1.ComponentProps<"span">;
|
|
584
|
+
declare function InputGroupText({ className, ref, ...props }: InputGroupTextProps): react_jsx_runtime.JSX.Element;
|
|
593
585
|
type InputGroupInputProps = Omit<React$1.ComponentProps<typeof Input>, "size" | "roundness">;
|
|
594
|
-
declare
|
|
586
|
+
declare function InputGroupInput({ className, ref, ...props }: InputGroupInputProps): react_jsx_runtime.JSX.Element;
|
|
595
587
|
type InputGroupTextareaProps = React$1.ComponentProps<typeof Textarea>;
|
|
596
|
-
declare
|
|
588
|
+
declare function InputGroupTextarea({ className, ref, ...props }: InputGroupTextareaProps): react_jsx_runtime.JSX.Element;
|
|
597
589
|
|
|
598
590
|
/**
|
|
599
591
|
* Badge variant styles.
|
|
@@ -602,7 +594,7 @@ declare const badgeVariants: (props?: ({
|
|
|
602
594
|
variant?: "primary" | "destructive" | "ghost" | "secondary" | "outline" | null | undefined;
|
|
603
595
|
rounded?: boolean | null | undefined;
|
|
604
596
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
605
|
-
interface BadgeProps extends React$1.
|
|
597
|
+
interface BadgeProps extends React$1.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
606
598
|
}
|
|
607
599
|
/**
|
|
608
600
|
* Badge component for status and informational labels.
|
|
@@ -610,33 +602,33 @@ interface BadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantPro
|
|
|
610
602
|
* @param {boolean} [props.rounded] - Pill shape when true; 6px radius when false.
|
|
611
603
|
* With a single character, uses a fixed square (`size-5`): circle if rounded, else `rounded-md`.
|
|
612
604
|
*/
|
|
613
|
-
declare
|
|
605
|
+
declare function Badge({ className, variant, rounded, style, children, ref, ...props }: BadgeProps): react_jsx_runtime.JSX.Element | null;
|
|
614
606
|
|
|
615
607
|
declare function AlertDialog({ ...props }: AlertDialog$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
616
|
-
declare
|
|
608
|
+
declare function AlertDialogTrigger({ ref, ...props }: AlertDialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
617
609
|
interface AlertDialogContentProps extends AlertDialog$1.Popup.Props {
|
|
618
610
|
size?: "desktop" | "mobile";
|
|
619
611
|
}
|
|
620
|
-
declare
|
|
621
|
-
declare
|
|
622
|
-
declare
|
|
623
|
-
declare
|
|
624
|
-
declare
|
|
612
|
+
declare function AlertDialogContent({ className, size, children, ref, ...props }: AlertDialogContentProps): react_jsx_runtime.JSX.Element;
|
|
613
|
+
declare function AlertDialogHeader({ className, ref, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
614
|
+
declare function AlertDialogFooter({ className, ref, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
615
|
+
declare function AlertDialogTitle({ className, ref, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
616
|
+
declare function AlertDialogDescription({ className, ref, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
625
617
|
/**
|
|
626
618
|
* Primary action button. Closes the dialog on click. Defaults to the `primary` variant.
|
|
627
619
|
*/
|
|
628
|
-
declare
|
|
620
|
+
declare function AlertDialogAction({ className, variant, size, ref, ...props }: AlertDialog$1.Close.Props & Pick<ButtonProps, "variant" | "size">): react_jsx_runtime.JSX.Element;
|
|
629
621
|
/**
|
|
630
622
|
* Cancel / dismiss button. Closes the dialog on click. Defaults to the `default` variant.
|
|
631
623
|
*/
|
|
632
|
-
declare
|
|
624
|
+
declare function AlertDialogCancel({ className, variant, size, ref, ...props }: AlertDialog$1.Close.Props & Pick<ButtonProps, "variant" | "size">): react_jsx_runtime.JSX.Element;
|
|
633
625
|
|
|
634
626
|
/**
|
|
635
627
|
* Wrapper that provides `role="list"` semantics and adjusts gap spacing
|
|
636
628
|
* based on the `size` of its child Items.
|
|
637
629
|
*/
|
|
638
|
-
declare
|
|
639
|
-
declare
|
|
630
|
+
declare function ItemGroup({ className, ref, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
631
|
+
declare function ItemSeparator({ className, ref, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
640
632
|
/** Item variant styles. */
|
|
641
633
|
declare const itemVariants: (props?: ({
|
|
642
634
|
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
@@ -648,10 +640,7 @@ type ItemProps = useRender.ComponentProps<"div"> & VariantProps<typeof itemVaria
|
|
|
648
640
|
* when inside an `ItemGroup` (`role="list"`), and no role otherwise.
|
|
649
641
|
* Supports polymorphic rendering via the `render` prop (e.g. `<a>`, `<Link>`).
|
|
650
642
|
*/
|
|
651
|
-
declare const Item: {
|
|
652
|
-
({ className, variant, size, render, ...props }: ItemProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
653
|
-
displayName: string;
|
|
654
|
-
};
|
|
643
|
+
declare const Item: ({ className, variant, size, render, ...props }: ItemProps) => React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
|
|
655
644
|
/** ItemMedia variant styles. */
|
|
656
645
|
declare const itemMediaVariants: (props?: ({
|
|
657
646
|
variant?: "default" | "image" | "icon" | "iconBadge" | null | undefined;
|
|
@@ -662,15 +651,15 @@ type ItemMediaProps = React$1.ComponentProps<"div"> & VariantProps<typeof itemMe
|
|
|
662
651
|
* `variant="iconBadge"` for icons in a 32px badge container (icon auto-sized to 16px),
|
|
663
652
|
* or `variant="image"` for thumbnails (cropped to fit, size-responsive).
|
|
664
653
|
*/
|
|
665
|
-
declare
|
|
654
|
+
declare function ItemMedia({ className, variant, ref, ...props }: ItemMediaProps): react_jsx_runtime.JSX.Element;
|
|
666
655
|
/** Flex container for title and description. Grows to fill available space. */
|
|
667
|
-
declare
|
|
668
|
-
declare
|
|
656
|
+
declare function ItemContent({ className, ref, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
657
|
+
declare function ItemTitle({ className, ref, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
669
658
|
/** Secondary text, clamped to 2 lines. Inline links are auto-styled. */
|
|
670
|
-
declare
|
|
671
|
-
declare
|
|
672
|
-
declare
|
|
673
|
-
declare
|
|
659
|
+
declare function ItemDescription({ className, ref, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
660
|
+
declare function ItemActions({ className, ref, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
661
|
+
declare function ItemHeader({ className, ref, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
662
|
+
declare function ItemFooter({ className, ref, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
674
663
|
|
|
675
664
|
/**
|
|
676
665
|
* @fileoverview Shared TypeScript types for PDF viewer components.
|
|
@@ -756,7 +745,7 @@ type PdfViewMode = "continuous" | "single";
|
|
|
756
745
|
/**
|
|
757
746
|
* Props for PDF viewer components.
|
|
758
747
|
*/
|
|
759
|
-
type PdfViewerProps = Omit<React.
|
|
748
|
+
type PdfViewerProps = Omit<React.ComponentProps<"div">, "onError"> & {
|
|
760
749
|
file?: PdfFile;
|
|
761
750
|
/** Document title shown in the viewer header */
|
|
762
751
|
title?: string;
|
|
@@ -874,112 +863,74 @@ declare function initializePdfWorker(workerUrl: string): void;
|
|
|
874
863
|
* />
|
|
875
864
|
* ```
|
|
876
865
|
*/
|
|
877
|
-
declare
|
|
878
|
-
file?: PdfFile;
|
|
879
|
-
title?: string;
|
|
880
|
-
pageWidth?: number;
|
|
881
|
-
onDownload?: () => void;
|
|
882
|
-
onPrint?: () => void;
|
|
883
|
-
onLoadSuccess?: (numPages: number) => void;
|
|
884
|
-
onError?: (error: Error) => void;
|
|
885
|
-
enableTextLayer?: boolean;
|
|
886
|
-
showControls?: boolean;
|
|
887
|
-
viewportBuffer?: number;
|
|
888
|
-
scrollTo?: ScrollTarget;
|
|
889
|
-
onPageChange?: (page: number) => void;
|
|
890
|
-
scrollBehavior?: ScrollBehavior;
|
|
891
|
-
viewMode?: PdfViewMode;
|
|
892
|
-
onDimensionsReady?: (dimensions: PdfPageDimensionsMap) => void;
|
|
893
|
-
boundingBoxes?: BoundingBox[];
|
|
894
|
-
highlightedBoxIds?: string[];
|
|
895
|
-
highlightStyle?: BoundingBoxStyle;
|
|
896
|
-
defaultBoxStyle?: BoundingBoxStyle;
|
|
897
|
-
onBoxClick?: (box: BoundingBox, event: React$1.MouseEvent) => void;
|
|
898
|
-
onBoxMouseEnter?: (box: BoundingBox, event: React$1.MouseEvent) => void;
|
|
899
|
-
onBoxMouseLeave?: (box: BoundingBox, event: React$1.MouseEvent) => void;
|
|
900
|
-
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
866
|
+
declare function PdfViewer({ file, title, pageWidth, onDownload, onPrint, onLoadSuccess, onDimensionsReady, onError, enableTextLayer, showControls, viewportBuffer, scrollTo, onPageChange, scrollBehavior, viewMode, boundingBoxes, highlightedBoxIds, defaultBoxStyle, highlightStyle, onBoxClick, onBoxMouseEnter, onBoxMouseLeave, className, ref, ...props }: PdfViewerProps): react_jsx_runtime.JSX.Element;
|
|
901
867
|
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
declare const tabsVariants: (props?: ({
|
|
906
|
-
variant?: "default" | null | undefined;
|
|
868
|
+
declare function Tabs({ className, orientation, ...props }: Tabs$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
869
|
+
declare const tabsListVariants: (props?: ({
|
|
870
|
+
variant?: "default" | "line" | null | undefined;
|
|
907
871
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
*/
|
|
919
|
-
declare const Tabs: React$1.ForwardRefExoticComponent<TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
920
|
-
interface TabsListProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
921
|
-
children: React$1.ReactNode;
|
|
922
|
-
}
|
|
923
|
-
declare const TabsList: React$1.ForwardRefExoticComponent<TabsListProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
924
|
-
interface TabsTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof tabsVariants> {
|
|
925
|
-
value: string;
|
|
926
|
-
}
|
|
927
|
-
declare const TabsTrigger: React$1.ForwardRefExoticComponent<TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
928
|
-
interface TabsContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
929
|
-
value: string;
|
|
930
|
-
}
|
|
931
|
-
declare const TabsContent: React$1.ForwardRefExoticComponent<TabsContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
872
|
+
declare function TabsList({ className, variant, ...props }: Tabs$1.List.Props & VariantProps<typeof tabsListVariants>): react_jsx_runtime.JSX.Element;
|
|
873
|
+
declare const tabsTriggerVariants: (props?: ({
|
|
874
|
+
size?: "small" | "regular" | "mini" | "large" | null | undefined;
|
|
875
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
876
|
+
declare function TabsTrigger({ className, size, ...props }: Tabs$1.Tab.Props & VariantProps<typeof tabsTriggerVariants>): react_jsx_runtime.JSX.Element;
|
|
877
|
+
declare function TabsContent({ className, ...props }: Tabs$1.Panel.Props): react_jsx_runtime.JSX.Element;
|
|
878
|
+
type TabsProps = Tabs$1.Root.Props;
|
|
879
|
+
type TabsListProps = Tabs$1.List.Props & VariantProps<typeof tabsListVariants>;
|
|
880
|
+
type TabsTriggerProps = Tabs$1.Tab.Props & VariantProps<typeof tabsTriggerVariants>;
|
|
881
|
+
type TabsContentProps = Tabs$1.Panel.Props;
|
|
932
882
|
|
|
933
883
|
declare const DropdownMenu: typeof Menu.Root;
|
|
934
884
|
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_menu.MenuGroupProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
935
885
|
declare const DropdownMenuSub: typeof Menu.SubmenuRoot;
|
|
936
886
|
declare const DropdownMenuRadioGroup: React$1.NamedExoticComponent<Omit<_base_ui_react_menu.MenuRadioGroupProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
937
|
-
type DropdownMenuTriggerProps = Omit<Menu.Trigger.Props, "ref"
|
|
938
|
-
|
|
887
|
+
type DropdownMenuTriggerProps = Omit<Menu.Trigger.Props, "ref"> & {
|
|
888
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
889
|
+
};
|
|
890
|
+
declare function DropdownMenuTrigger({ className, ref, ...props }: DropdownMenuTriggerProps): react_jsx_runtime.JSX.Element;
|
|
939
891
|
interface DropdownMenuContentProps extends Menu.Popup.Props {
|
|
940
892
|
align?: Menu.Positioner.Props["align"];
|
|
941
893
|
alignOffset?: Menu.Positioner.Props["alignOffset"];
|
|
942
894
|
side?: Menu.Positioner.Props["side"];
|
|
943
895
|
sideOffset?: Menu.Positioner.Props["sideOffset"];
|
|
896
|
+
ref?: React$1.Ref<React$1.ComponentRef<typeof Menu.Popup>>;
|
|
944
897
|
}
|
|
945
|
-
declare
|
|
898
|
+
declare function DropdownMenuContent({ className, align, alignOffset, side, sideOffset, ref, ...props }: DropdownMenuContentProps): react_jsx_runtime.JSX.Element;
|
|
946
899
|
interface DropdownMenuSubTriggerProps extends React$1.ComponentPropsWithoutRef<typeof Menu.SubmenuTrigger> {
|
|
947
900
|
inset?: boolean;
|
|
901
|
+
ref?: React$1.Ref<React$1.ComponentRef<typeof Menu.SubmenuTrigger>>;
|
|
948
902
|
}
|
|
949
|
-
declare
|
|
950
|
-
type DropdownMenuSubContentProps =
|
|
951
|
-
declare
|
|
903
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ref, ...props }: DropdownMenuSubTriggerProps): react_jsx_runtime.JSX.Element;
|
|
904
|
+
type DropdownMenuSubContentProps = DropdownMenuContentProps;
|
|
905
|
+
declare function DropdownMenuSubContent({ className, align, alignOffset, side, sideOffset, ref, ...props }: DropdownMenuSubContentProps): react_jsx_runtime.JSX.Element;
|
|
952
906
|
declare const dropdownMenuItemVariants: (props?: ({
|
|
953
907
|
variant?: "default" | "destructive" | null | undefined;
|
|
954
908
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
955
909
|
interface DropdownMenuItemProps extends React$1.ComponentPropsWithoutRef<typeof Menu.Item>, VariantProps<typeof dropdownMenuItemVariants> {
|
|
956
910
|
inset?: boolean;
|
|
911
|
+
ref?: React$1.Ref<React$1.ComponentRef<typeof Menu.Item>>;
|
|
957
912
|
}
|
|
958
|
-
declare
|
|
913
|
+
declare function DropdownMenuItem({ className, variant, inset, ref, ...props }: DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
959
914
|
interface DropdownMenuCheckboxItemProps extends React$1.ComponentPropsWithoutRef<typeof Menu.CheckboxItem> {
|
|
960
915
|
inset?: boolean;
|
|
916
|
+
ref?: React$1.Ref<React$1.ComponentRef<typeof Menu.CheckboxItem>>;
|
|
961
917
|
}
|
|
962
|
-
declare
|
|
918
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, inset, ref, ...props }: DropdownMenuCheckboxItemProps): react_jsx_runtime.JSX.Element;
|
|
963
919
|
interface DropdownMenuRadioItemProps extends React$1.ComponentPropsWithoutRef<typeof Menu.RadioItem> {
|
|
964
920
|
inset?: boolean;
|
|
921
|
+
ref?: React$1.Ref<React$1.ComponentRef<typeof Menu.RadioItem>>;
|
|
965
922
|
}
|
|
966
|
-
declare
|
|
967
|
-
type DropdownMenuLabelProps = React$1.ComponentPropsWithoutRef<typeof Menu.GroupLabel
|
|
968
|
-
|
|
969
|
-
type DropdownMenuSeparatorProps = Separator$1.Props;
|
|
970
|
-
declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<_base_ui_react_separator.SeparatorProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
971
|
-
type DropdownMenuShortcutProps = React$1.HTMLAttributes<HTMLSpanElement>;
|
|
972
|
-
declare const DropdownMenuShortcut: {
|
|
973
|
-
({ className, ...props }: DropdownMenuShortcutProps): react_jsx_runtime.JSX.Element;
|
|
974
|
-
displayName: string;
|
|
923
|
+
declare function DropdownMenuRadioItem({ className, children, inset, ref, ...props }: DropdownMenuRadioItemProps): react_jsx_runtime.JSX.Element;
|
|
924
|
+
type DropdownMenuLabelProps = React$1.ComponentPropsWithoutRef<typeof Menu.GroupLabel> & {
|
|
925
|
+
ref?: React$1.Ref<React$1.ComponentRef<typeof Menu.GroupLabel>>;
|
|
975
926
|
};
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
927
|
+
declare function DropdownMenuLabel({ className, ref, ...props }: DropdownMenuLabelProps): react_jsx_runtime.JSX.Element;
|
|
928
|
+
type DropdownMenuSeparatorProps = Separator$1.Props & {
|
|
929
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
930
|
+
};
|
|
931
|
+
declare function DropdownMenuSeparator({ className, ref, ...props }: DropdownMenuSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
932
|
+
type DropdownMenuShortcutProps = React$1.HTMLAttributes<HTMLSpanElement>;
|
|
933
|
+
declare function DropdownMenuShortcut({ className, ...props }: DropdownMenuShortcutProps): react_jsx_runtime.JSX.Element;
|
|
983
934
|
|
|
984
935
|
/** Phosphor icon weight (outline, filled, or duotone). */
|
|
985
936
|
type IconWeight = "regular" | "fill" | "duotone";
|
|
@@ -990,61 +941,226 @@ interface IconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
|
990
941
|
/** Phosphor weight: outline (regular), filled, or duotone. */
|
|
991
942
|
weight?: IconWeight;
|
|
992
943
|
}
|
|
993
|
-
declare const LockIcon:
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
declare const
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
declare const
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
declare const
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
declare const
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
declare const
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
declare const
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
declare const
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
declare const
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
declare const
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
declare const
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
declare const
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
declare const
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
declare const
|
|
1046
|
-
|
|
1047
|
-
|
|
944
|
+
declare const LockIcon: {
|
|
945
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
946
|
+
displayName: string;
|
|
947
|
+
};
|
|
948
|
+
declare const CheckIcon: {
|
|
949
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
950
|
+
displayName: string;
|
|
951
|
+
};
|
|
952
|
+
declare const CalendarIcon: {
|
|
953
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
954
|
+
displayName: string;
|
|
955
|
+
};
|
|
956
|
+
declare const CheckmarkIcon: {
|
|
957
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
958
|
+
displayName: string;
|
|
959
|
+
};
|
|
960
|
+
declare const ArrowDownIcon: {
|
|
961
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
962
|
+
displayName: string;
|
|
963
|
+
};
|
|
964
|
+
declare const ArrowUpIcon: {
|
|
965
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
966
|
+
displayName: string;
|
|
967
|
+
};
|
|
968
|
+
declare const ArrowLeftIcon: {
|
|
969
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
970
|
+
displayName: string;
|
|
971
|
+
};
|
|
972
|
+
declare const ArrowRightIcon: {
|
|
973
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
974
|
+
displayName: string;
|
|
975
|
+
};
|
|
976
|
+
declare const BellIcon: {
|
|
977
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
978
|
+
displayName: string;
|
|
979
|
+
};
|
|
980
|
+
declare const BookmarkIcon: {
|
|
981
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
982
|
+
displayName: string;
|
|
983
|
+
};
|
|
984
|
+
declare const CaretDownIcon: {
|
|
985
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
986
|
+
displayName: string;
|
|
987
|
+
};
|
|
988
|
+
declare const CaretLeftIcon: {
|
|
989
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
990
|
+
displayName: string;
|
|
991
|
+
};
|
|
992
|
+
declare const CaretRightIcon: {
|
|
993
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
994
|
+
displayName: string;
|
|
995
|
+
};
|
|
996
|
+
declare const CaretUpIcon: {
|
|
997
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
998
|
+
displayName: string;
|
|
999
|
+
};
|
|
1000
|
+
declare const ChatIcon: {
|
|
1001
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1002
|
+
displayName: string;
|
|
1003
|
+
};
|
|
1004
|
+
declare const CheckmarkSquareIcon: {
|
|
1005
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1006
|
+
displayName: string;
|
|
1007
|
+
};
|
|
1008
|
+
declare const CloseIcon: {
|
|
1009
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1010
|
+
displayName: string;
|
|
1011
|
+
};
|
|
1012
|
+
declare const CogIcon: {
|
|
1013
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1014
|
+
displayName: string;
|
|
1015
|
+
};
|
|
1016
|
+
declare const CredentialsIcon: {
|
|
1017
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1018
|
+
displayName: string;
|
|
1019
|
+
};
|
|
1020
|
+
declare const DocumentIcon: {
|
|
1021
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1022
|
+
displayName: string;
|
|
1023
|
+
};
|
|
1024
|
+
declare const DollarIcon: {
|
|
1025
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1026
|
+
displayName: string;
|
|
1027
|
+
};
|
|
1028
|
+
declare const EditIcon: {
|
|
1029
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1030
|
+
displayName: string;
|
|
1031
|
+
};
|
|
1032
|
+
declare const EnvelopeIcon: {
|
|
1033
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1034
|
+
displayName: string;
|
|
1035
|
+
};
|
|
1036
|
+
declare const ExclamationIcon: {
|
|
1037
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1038
|
+
displayName: string;
|
|
1039
|
+
};
|
|
1040
|
+
declare const EyeClosedIcon: {
|
|
1041
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1042
|
+
displayName: string;
|
|
1043
|
+
};
|
|
1044
|
+
declare const EyeOpenIcon: {
|
|
1045
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1046
|
+
displayName: string;
|
|
1047
|
+
};
|
|
1048
|
+
declare const FilterIcon: {
|
|
1049
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1050
|
+
displayName: string;
|
|
1051
|
+
};
|
|
1052
|
+
declare const FilterDescendingIcon: {
|
|
1053
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1054
|
+
displayName: string;
|
|
1055
|
+
};
|
|
1056
|
+
declare const GraphBarIcon: {
|
|
1057
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1058
|
+
displayName: string;
|
|
1059
|
+
};
|
|
1060
|
+
declare const GraphDonutIcon: {
|
|
1061
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1062
|
+
displayName: string;
|
|
1063
|
+
};
|
|
1064
|
+
declare const GraphLineIcon: {
|
|
1065
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1066
|
+
displayName: string;
|
|
1067
|
+
};
|
|
1068
|
+
declare const GraphPieIcon: {
|
|
1069
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1070
|
+
displayName: string;
|
|
1071
|
+
};
|
|
1072
|
+
declare const HamburgerMenuIcon: {
|
|
1073
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1074
|
+
displayName: string;
|
|
1075
|
+
};
|
|
1076
|
+
declare const HomeIcon: {
|
|
1077
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1078
|
+
displayName: string;
|
|
1079
|
+
};
|
|
1080
|
+
declare const InformationIcon: {
|
|
1081
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1082
|
+
displayName: string;
|
|
1083
|
+
};
|
|
1084
|
+
declare const LocationIcon: {
|
|
1085
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1086
|
+
displayName: string;
|
|
1087
|
+
};
|
|
1088
|
+
declare const MagnifyingGlassIcon: {
|
|
1089
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1090
|
+
displayName: string;
|
|
1091
|
+
};
|
|
1092
|
+
declare const MinusIcon: {
|
|
1093
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1094
|
+
displayName: string;
|
|
1095
|
+
};
|
|
1096
|
+
declare const PlusIcon: {
|
|
1097
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1098
|
+
displayName: string;
|
|
1099
|
+
};
|
|
1100
|
+
declare const MoreMenuIcon: {
|
|
1101
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1102
|
+
displayName: string;
|
|
1103
|
+
};
|
|
1104
|
+
declare const PhoneIcon: {
|
|
1105
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1106
|
+
displayName: string;
|
|
1107
|
+
};
|
|
1108
|
+
declare const QuestionCircleIcon: {
|
|
1109
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1110
|
+
displayName: string;
|
|
1111
|
+
};
|
|
1112
|
+
declare const ShareIcon: {
|
|
1113
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1114
|
+
displayName: string;
|
|
1115
|
+
};
|
|
1116
|
+
declare const StarIcon: {
|
|
1117
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1118
|
+
displayName: string;
|
|
1119
|
+
};
|
|
1120
|
+
declare const StatementIcon: {
|
|
1121
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1122
|
+
displayName: string;
|
|
1123
|
+
};
|
|
1124
|
+
declare const TableIcon: {
|
|
1125
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1126
|
+
displayName: string;
|
|
1127
|
+
};
|
|
1128
|
+
declare const TrashIcon: {
|
|
1129
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1130
|
+
displayName: string;
|
|
1131
|
+
};
|
|
1132
|
+
declare const UserIcon: {
|
|
1133
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1134
|
+
displayName: string;
|
|
1135
|
+
};
|
|
1136
|
+
declare const UserMultiIcon: {
|
|
1137
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1138
|
+
displayName: string;
|
|
1139
|
+
};
|
|
1140
|
+
declare const WarningIcon: {
|
|
1141
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1142
|
+
displayName: string;
|
|
1143
|
+
};
|
|
1144
|
+
declare const WrenchIcon: {
|
|
1145
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1146
|
+
displayName: string;
|
|
1147
|
+
};
|
|
1148
|
+
declare const LogoutIcon: {
|
|
1149
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1150
|
+
displayName: string;
|
|
1151
|
+
};
|
|
1152
|
+
declare const PrintIcon: {
|
|
1153
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1154
|
+
displayName: string;
|
|
1155
|
+
};
|
|
1156
|
+
declare const DownloadIcon: {
|
|
1157
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1158
|
+
displayName: string;
|
|
1159
|
+
};
|
|
1160
|
+
declare const PanelIcon: {
|
|
1161
|
+
({ className, size, weight, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1162
|
+
displayName: string;
|
|
1163
|
+
};
|
|
1048
1164
|
|
|
1049
1165
|
/**
|
|
1050
1166
|
* @fileoverview Chart utilities for Altitude UI chart components.
|
|
@@ -1423,6 +1539,7 @@ interface BarChartProps {
|
|
|
1423
1539
|
xAxisType?: "category" | "number";
|
|
1424
1540
|
yAxisType?: "category" | "number";
|
|
1425
1541
|
barDataKey?: string;
|
|
1542
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1426
1543
|
}
|
|
1427
1544
|
/**
|
|
1428
1545
|
* BarChart component for visualizing data as vertical or horizontal bars.
|
|
@@ -1437,7 +1554,7 @@ interface BarChartProps {
|
|
|
1437
1554
|
* @param {boolean} [props.showLegend] - Whether to show legend
|
|
1438
1555
|
* @param {string} [props.layout] - Chart layout (vertical or horizontal)
|
|
1439
1556
|
*/
|
|
1440
|
-
declare
|
|
1557
|
+
declare function BarChart({ data, xAxisKey, yAxisKey, title, xAxisLabel, yAxisLabel, barColor, className, rotateXAxisLabels, showLegend, legendItems, onDataPointClick, layout, xAxisType, yAxisType, barDataKey, ref, }: BarChartProps): react_jsx_runtime.JSX.Element;
|
|
1441
1558
|
|
|
1442
1559
|
/**
|
|
1443
1560
|
* LineChart data item structure.
|
|
@@ -1474,6 +1591,7 @@ interface LineChartProps {
|
|
|
1474
1591
|
className?: string;
|
|
1475
1592
|
showLegend?: boolean;
|
|
1476
1593
|
legendItems?: LegendItem[];
|
|
1594
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1477
1595
|
}
|
|
1478
1596
|
/**
|
|
1479
1597
|
* LineChart component for visualizing time series and trends.
|
|
@@ -1486,7 +1604,7 @@ interface LineChartProps {
|
|
|
1486
1604
|
* @param {function} [props.onDataPointClick] - Click handler for data points
|
|
1487
1605
|
* @param {boolean} [props.showLegend] - Whether to show legend
|
|
1488
1606
|
*/
|
|
1489
|
-
declare
|
|
1607
|
+
declare function LineChart({ data, xAxisKey, series, title, xAxisLabel, yAxisLabel, onDataPointClick, className, showLegend, legendItems, ref, }: LineChartProps): react_jsx_runtime.JSX.Element;
|
|
1490
1608
|
|
|
1491
1609
|
/**
|
|
1492
1610
|
* PieChart data item structure.
|
|
@@ -1526,6 +1644,7 @@ interface PieChartProps {
|
|
|
1526
1644
|
innerRadius?: string | number;
|
|
1527
1645
|
outerRadius?: string | number;
|
|
1528
1646
|
showLabels?: boolean;
|
|
1647
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1529
1648
|
}
|
|
1530
1649
|
/**
|
|
1531
1650
|
* PieChart component for visualizing proportional data.
|
|
@@ -1537,7 +1656,7 @@ interface PieChartProps {
|
|
|
1537
1656
|
* @param {string | number} [props.outerRadius] - Outer radius
|
|
1538
1657
|
* @param {boolean} [props.showLabels] - Whether to show percentage labels
|
|
1539
1658
|
*/
|
|
1540
|
-
declare
|
|
1659
|
+
declare function PieChart({ data, title, onDataPointClick, className, showLegend, legendItems, innerRadius, outerRadius, showLabels, ref, }: PieChartProps): react_jsx_runtime.JSX.Element;
|
|
1541
1660
|
|
|
1542
1661
|
interface TableProps<T> {
|
|
1543
1662
|
table: Table$1<T>;
|
|
@@ -1555,4 +1674,4 @@ interface TableProps<T> {
|
|
|
1555
1674
|
*/
|
|
1556
1675
|
declare function Table<T>({ table, className, showPagination, paginationClassName, }: TableProps<T>): react_jsx_runtime.JSX.Element;
|
|
1557
1676
|
|
|
1558
|
-
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, DatePickerTrigger, type DatePickerTriggerProps, 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, 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, GenericTooltip, type GenericTooltipProps, 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, 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, Popover, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, type PopoverProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, 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,
|
|
1677
|
+
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, 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, GenericTooltip, type GenericTooltipProps, 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, 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, Popover, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, type PopoverProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, 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, Upload, type UploadProps, UserIcon, UserMultiIcon, WarningIcon, WrenchIcon, alertVariants, avatarVariants, badgeVariants, buttonGroupTextVariants, buttonGroupVariants, buttonVariants, calculateYAxisWidth, checkboxVariants, createCustomXAxisLabel, createCustomYAxisLabel, createCustomYAxisRightLabel, createLegendItems, customXAxisTick, customXAxisTickRotated, customYAxisTick, dropdownMenuItemVariants, formatLargeNumber, formatPercentage, getHeatmapColor, getPerformanceColor, getSeriesColor, initializePdfWorker, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupVariants, inputVariants, itemMediaVariants, itemVariants, selectTriggerVariants, switchVariants, tabsListVariants, tabsTriggerVariants, textVariants, uploadVariants, useSidebar };
|