@northslopetech/altitude-ui 2.0.17 → 2.1.2
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 +167 -155
- package/dist/index.d.ts +167 -155
- package/dist/index.js +506 -261
- package/dist/index.mjs +489 -256
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
import {
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
|
+
import { ReactNode } from 'react';
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
6
|
-
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
7
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
8
|
+
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
9
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
8
10
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
9
11
|
import { Table as Table$1 } from '@tanstack/react-table';
|
|
10
12
|
|
|
@@ -15,9 +17,9 @@ declare const buttonVariants: (props?: ({
|
|
|
15
17
|
variant?: "default" | "outline" | "destructive" | "destructive-subtle" | "ghost" | "link" | null | undefined;
|
|
16
18
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
17
19
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18
|
-
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
20
|
+
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
19
21
|
asChild?: boolean;
|
|
20
|
-
icon?: React.ReactNode;
|
|
22
|
+
icon?: React$1.ReactNode;
|
|
21
23
|
iconPosition?: "left" | "right";
|
|
22
24
|
}
|
|
23
25
|
/**
|
|
@@ -28,7 +30,7 @@ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Var
|
|
|
28
30
|
* @param {string} [props.variant] - Visual style variant
|
|
29
31
|
* @param {string} [props.size] - Button size
|
|
30
32
|
*/
|
|
31
|
-
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
33
|
+
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
32
34
|
|
|
33
35
|
/**
|
|
34
36
|
* Typography variant styles using design system tokens.
|
|
@@ -36,15 +38,15 @@ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAtt
|
|
|
36
38
|
declare const typographyVariants: (props?: ({
|
|
37
39
|
variant?: "display-xl" | "display-lg" | "display-md" | "display-sm" | "display-xs" | "heading-xl" | "heading-lg" | "heading-md" | "heading-sm" | "heading-xs" | "body-xl" | "body-lg" | "body-md" | "body-sm" | "body-xs" | "label-xl" | "label-xl-bold" | "label-lg" | "label-lg-bold" | "label-md" | "label-md-bold" | "label-sm" | "label-sm-bold" | "label-xs" | "label-xs-bold" | null | undefined;
|
|
38
40
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
39
|
-
interface TypographyProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof typographyVariants> {
|
|
40
|
-
as?: React.ElementType;
|
|
41
|
+
interface TypographyProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof typographyVariants> {
|
|
42
|
+
as?: React$1.ElementType;
|
|
41
43
|
}
|
|
42
44
|
/**
|
|
43
45
|
* Typography component for rendering text with design system styles.
|
|
44
46
|
* @param {React.ElementType} [props.as] - Custom HTML element to render
|
|
45
47
|
* @param {string} [props.variant] - Typography variant from design tokens
|
|
46
48
|
*/
|
|
47
|
-
declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLElement>>;
|
|
49
|
+
declare const Typography: React$1.ForwardRefExoticComponent<TypographyProps & React$1.RefAttributes<HTMLElement>>;
|
|
48
50
|
|
|
49
51
|
/**
|
|
50
52
|
* Select trigger variant styles.
|
|
@@ -61,12 +63,12 @@ declare const selectContentVariants: (props?: ({
|
|
|
61
63
|
/**
|
|
62
64
|
* Select root component.
|
|
63
65
|
*/
|
|
64
|
-
declare const Select: React.FC<SelectPrimitive.SelectProps>;
|
|
65
|
-
declare const SelectGroup: React.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
66
|
-
declare const SelectValue: React.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>>;
|
|
67
|
-
interface SelectTriggerProps extends React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger>, VariantProps<typeof selectTriggerVariants> {
|
|
66
|
+
declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
|
|
67
|
+
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
68
|
+
declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
69
|
+
interface SelectTriggerProps extends React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger>, VariantProps<typeof selectTriggerVariants> {
|
|
68
70
|
className?: string;
|
|
69
|
-
children?: React.ReactNode;
|
|
71
|
+
children?: React$1.ReactNode;
|
|
70
72
|
width?: "default" | "fill" | "compact";
|
|
71
73
|
}
|
|
72
74
|
/**
|
|
@@ -75,15 +77,15 @@ interface SelectTriggerProps extends React.ComponentPropsWithoutRef<typeof Selec
|
|
|
75
77
|
* @param {string} [props.className] - Additional CSS classes
|
|
76
78
|
* @param {React.ReactNode} [props.children] - Trigger content
|
|
77
79
|
*/
|
|
78
|
-
declare const SelectTrigger: React.ForwardRefExoticComponent<SelectTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
79
|
-
declare const SelectScrollUpButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
80
|
-
declare const SelectScrollDownButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
81
|
-
interface SelectContentProps extends Omit<React.ComponentPropsWithoutRef<typeof SelectPrimitive.Content>, "position">, VariantProps<typeof selectContentVariants> {
|
|
80
|
+
declare const SelectTrigger: React$1.ForwardRefExoticComponent<SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
81
|
+
declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
82
|
+
declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
83
|
+
interface SelectContentProps extends Omit<React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Content>, "position">, VariantProps<typeof selectContentVariants> {
|
|
82
84
|
}
|
|
83
|
-
declare const SelectContent: React.ForwardRefExoticComponent<SelectContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
84
|
-
declare const SelectLabel: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
85
|
-
declare const SelectItem: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
86
|
-
declare const SelectSeparator: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
85
|
+
declare const SelectContent: React$1.ForwardRefExoticComponent<SelectContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
86
|
+
declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
87
|
+
declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
88
|
+
declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
87
89
|
|
|
88
90
|
/**
|
|
89
91
|
* @fileoverview FormField component for Altitude UI.
|
|
@@ -94,7 +96,7 @@ interface FormFieldProps {
|
|
|
94
96
|
helperText?: string;
|
|
95
97
|
error?: boolean;
|
|
96
98
|
required?: boolean;
|
|
97
|
-
children: React.ReactNode;
|
|
99
|
+
children: React$1.ReactNode;
|
|
98
100
|
className?: string;
|
|
99
101
|
id?: string;
|
|
100
102
|
compact?: boolean;
|
|
@@ -108,7 +110,33 @@ interface FormFieldProps {
|
|
|
108
110
|
* @param {React.ReactNode} props.children - Form input element
|
|
109
111
|
* @param {boolean} [props.compact] - Use compact layout with floating label
|
|
110
112
|
*/
|
|
111
|
-
declare const FormField: React.ForwardRefExoticComponent<FormFieldProps & React.RefAttributes<HTMLDivElement>>;
|
|
113
|
+
declare const FormField: React$1.ForwardRefExoticComponent<FormFieldProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
114
|
+
|
|
115
|
+
declare function Label({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
116
|
+
|
|
117
|
+
declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
|
|
118
|
+
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
|
|
119
|
+
variant?: "legend" | "label";
|
|
120
|
+
}): react_jsx_runtime.JSX.Element;
|
|
121
|
+
declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
122
|
+
declare const fieldVariants: (props?: ({
|
|
123
|
+
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
124
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
125
|
+
declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
|
|
126
|
+
declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
127
|
+
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
|
|
128
|
+
declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
129
|
+
declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
130
|
+
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & {
|
|
131
|
+
children?: React.ReactNode;
|
|
132
|
+
}): react_jsx_runtime.JSX.Element;
|
|
133
|
+
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & {
|
|
134
|
+
errors?: Array<{
|
|
135
|
+
message?: string;
|
|
136
|
+
} | undefined>;
|
|
137
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
138
|
+
|
|
139
|
+
declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
112
140
|
|
|
113
141
|
/**
|
|
114
142
|
* @fileoverview DatePicker component for Altitude UI.
|
|
@@ -134,7 +162,7 @@ interface DatePickerProps {
|
|
|
134
162
|
* @param {Date} [props.minDate] - Minimum selectable date
|
|
135
163
|
* @param {Date} [props.maxDate] - Maximum selectable date
|
|
136
164
|
*/
|
|
137
|
-
declare const DatePicker: React.ForwardRefExoticComponent<DatePickerProps & React.RefAttributes<HTMLInputElement>>;
|
|
165
|
+
declare const DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
138
166
|
|
|
139
167
|
/**
|
|
140
168
|
* Upload variant styles for different states.
|
|
@@ -143,7 +171,7 @@ declare const uploadVariants: (props?: ({
|
|
|
143
171
|
state?: "default" | "error" | "dragOver" | "uploading" | "success" | null | undefined;
|
|
144
172
|
disabled?: boolean | null | undefined;
|
|
145
173
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
146
|
-
interface UploadProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onError"> {
|
|
174
|
+
interface UploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onError"> {
|
|
147
175
|
onFileSelect?: (files: File[]) => void;
|
|
148
176
|
acceptedFileTypes?: string[];
|
|
149
177
|
disabled?: boolean;
|
|
@@ -164,13 +192,13 @@ interface UploadProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onErro
|
|
|
164
192
|
* @param {File[]} [props.selectedFiles] - Currently selected files
|
|
165
193
|
* @param {number} [props.maxFileSize] - Maximum file size in bytes
|
|
166
194
|
*/
|
|
167
|
-
declare const Upload: React.ForwardRefExoticComponent<UploadProps & React.RefAttributes<HTMLDivElement>>;
|
|
195
|
+
declare const Upload: React$1.ForwardRefExoticComponent<UploadProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
168
196
|
|
|
169
197
|
/**
|
|
170
198
|
* Checkbox variant styles.
|
|
171
199
|
*/
|
|
172
200
|
declare const checkboxVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
173
|
-
interface CheckboxProps extends React.ComponentProps<typeof CheckboxPrimitive.Root> {
|
|
201
|
+
interface CheckboxProps extends React$1.ComponentProps<typeof CheckboxPrimitive.Root> {
|
|
174
202
|
className?: string;
|
|
175
203
|
}
|
|
176
204
|
/**
|
|
@@ -180,48 +208,32 @@ interface CheckboxProps extends React.ComponentProps<typeof CheckboxPrimitive.Ro
|
|
|
180
208
|
* @param {boolean} [props.disabled] - Whether checkbox is disabled
|
|
181
209
|
* @param {string} [props.className] - Additional CSS classes
|
|
182
210
|
*/
|
|
183
|
-
declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
211
|
+
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
184
212
|
|
|
185
213
|
/**
|
|
186
|
-
* Input
|
|
214
|
+
* @fileoverview Input component for Altitude UI.
|
|
187
215
|
*/
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* Props for standard text input.
|
|
219
|
+
*/
|
|
220
|
+
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "style"> {
|
|
192
221
|
className?: string;
|
|
193
|
-
style?: React.CSSProperties;
|
|
222
|
+
style?: React$1.CSSProperties;
|
|
194
223
|
onClear?: () => void;
|
|
195
224
|
showClear?: boolean;
|
|
196
225
|
}
|
|
197
226
|
/**
|
|
198
|
-
*
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
variant?: "input";
|
|
202
|
-
}
|
|
203
|
-
/**
|
|
204
|
-
* Props for textarea variant.
|
|
227
|
+
* Input component for single-line text entry.
|
|
228
|
+
* @param {function} [props.onClear] - Callback when clear button is clicked
|
|
229
|
+
* @param {boolean} [props.showClear] - Whether to show clear button
|
|
205
230
|
*/
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
* Union type of input and textarea props.
|
|
211
|
-
*/
|
|
212
|
-
type InputProps = InputFieldProps | TextareaFieldProps;
|
|
213
|
-
/**
|
|
214
|
-
* Input component function overloads.
|
|
215
|
-
*/
|
|
216
|
-
interface InputComponent {
|
|
217
|
-
(props: InputFieldProps & {
|
|
218
|
-
ref?: React.Ref<HTMLInputElement>;
|
|
219
|
-
}): JSX.Element;
|
|
220
|
-
(props: TextareaFieldProps & {
|
|
221
|
-
ref?: React.Ref<HTMLTextAreaElement>;
|
|
222
|
-
}): JSX.Element;
|
|
231
|
+
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
232
|
+
|
|
233
|
+
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
234
|
+
error?: boolean;
|
|
223
235
|
}
|
|
224
|
-
declare const
|
|
236
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
225
237
|
|
|
226
238
|
/**
|
|
227
239
|
* Badge variant styles.
|
|
@@ -229,13 +241,13 @@ declare const TypedInput: InputComponent;
|
|
|
229
241
|
declare const badgeVariants: (props?: ({
|
|
230
242
|
variant?: "error" | "warning" | "success" | "primary" | "secondary" | "accent" | "neutral" | null | undefined;
|
|
231
243
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
232
|
-
interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
244
|
+
interface BadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
233
245
|
}
|
|
234
246
|
/**
|
|
235
247
|
* Badge component for status and informational labels.
|
|
236
248
|
* @param {string} [props.variant] - Badge color variant
|
|
237
249
|
*/
|
|
238
|
-
declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
250
|
+
declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
239
251
|
|
|
240
252
|
/**
|
|
241
253
|
* Tabs trigger variant styles.
|
|
@@ -243,7 +255,7 @@ declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttri
|
|
|
243
255
|
declare const tabsVariants: (props?: ({
|
|
244
256
|
variant?: "default" | null | undefined;
|
|
245
257
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
246
|
-
interface TabsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
258
|
+
interface TabsProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
247
259
|
value: string;
|
|
248
260
|
onValueChange: (value: string) => void;
|
|
249
261
|
variant?: "default";
|
|
@@ -254,52 +266,52 @@ interface TabsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
254
266
|
* @param {function} props.onValueChange - Callback when active tab changes
|
|
255
267
|
* @param {string} [props.variant] - Visual variant
|
|
256
268
|
*/
|
|
257
|
-
declare const Tabs: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<HTMLDivElement>>;
|
|
258
|
-
interface TabsListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
259
|
-
children: React.ReactNode;
|
|
269
|
+
declare const Tabs: React$1.ForwardRefExoticComponent<TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
270
|
+
interface TabsListProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
271
|
+
children: React$1.ReactNode;
|
|
260
272
|
}
|
|
261
|
-
declare const TabsList: React.ForwardRefExoticComponent<TabsListProps & React.RefAttributes<HTMLDivElement>>;
|
|
262
|
-
interface TabsTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof tabsVariants> {
|
|
273
|
+
declare const TabsList: React$1.ForwardRefExoticComponent<TabsListProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
274
|
+
interface TabsTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof tabsVariants> {
|
|
263
275
|
value: string;
|
|
264
276
|
}
|
|
265
|
-
declare const TabsTrigger: React.ForwardRefExoticComponent<TabsTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
266
|
-
interface TabsContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
277
|
+
declare const TabsTrigger: React$1.ForwardRefExoticComponent<TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
278
|
+
interface TabsContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
267
279
|
value: string;
|
|
268
280
|
}
|
|
269
|
-
declare const TabsContent: React.ForwardRefExoticComponent<TabsContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
281
|
+
declare const TabsContent: React$1.ForwardRefExoticComponent<TabsContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
270
282
|
|
|
271
283
|
/**
|
|
272
284
|
* DropdownMenu root component.
|
|
273
285
|
*/
|
|
274
|
-
declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
275
|
-
interface DropdownMenuTriggerProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Trigger> {
|
|
276
|
-
icon?: React.ReactNode;
|
|
286
|
+
declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
287
|
+
interface DropdownMenuTriggerProps extends React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Trigger> {
|
|
288
|
+
icon?: React$1.ReactNode;
|
|
277
289
|
}
|
|
278
290
|
/**
|
|
279
291
|
* DropdownMenuTrigger component.
|
|
280
292
|
* @param {React.ReactNode} [props.icon] - Custom icon element
|
|
281
293
|
*/
|
|
282
|
-
declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
283
|
-
declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
284
|
-
declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
285
|
-
declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
286
|
-
declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
287
|
-
declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
294
|
+
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
295
|
+
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
296
|
+
declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
297
|
+
declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
298
|
+
declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
299
|
+
declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
288
300
|
inset?: boolean;
|
|
289
|
-
} & React.RefAttributes<HTMLDivElement>>;
|
|
290
|
-
declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
291
|
-
declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
292
|
-
declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
301
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
302
|
+
declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
303
|
+
declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
304
|
+
declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
293
305
|
inset?: boolean;
|
|
294
|
-
} & React.RefAttributes<HTMLDivElement>>;
|
|
295
|
-
declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
296
|
-
declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
297
|
-
declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
306
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
307
|
+
declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
308
|
+
declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
309
|
+
declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
298
310
|
inset?: boolean;
|
|
299
|
-
} & React.RefAttributes<HTMLDivElement>>;
|
|
300
|
-
declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
311
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
312
|
+
declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
301
313
|
declare const DropdownMenuShortcut: {
|
|
302
|
-
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
314
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
303
315
|
displayName: string;
|
|
304
316
|
};
|
|
305
317
|
|
|
@@ -311,84 +323,84 @@ declare const DropdownMenuShortcut: {
|
|
|
311
323
|
* Icon color variant type.
|
|
312
324
|
*/
|
|
313
325
|
type IconVariant = "dark" | "light" | "gray" | "error" | "warning";
|
|
314
|
-
interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
326
|
+
interface IconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
315
327
|
className?: string;
|
|
316
328
|
variant?: IconVariant;
|
|
317
329
|
}
|
|
318
330
|
/**
|
|
319
331
|
* X (close) icon component.
|
|
320
332
|
*/
|
|
321
|
-
declare const X: React.FC<IconProps>;
|
|
333
|
+
declare const X: React$1.FC<IconProps>;
|
|
322
334
|
/**
|
|
323
335
|
* Lock icon component.
|
|
324
336
|
*/
|
|
325
|
-
declare const Lock: React.FC<IconProps>;
|
|
337
|
+
declare const Lock: React$1.FC<IconProps>;
|
|
326
338
|
/**
|
|
327
339
|
* Check icon component (circle with checkmark).
|
|
328
340
|
*/
|
|
329
|
-
declare const Check: React.FC<IconProps>;
|
|
341
|
+
declare const Check: React$1.FC<IconProps>;
|
|
330
342
|
/**
|
|
331
343
|
* ChevronDown icon component (downward pointing chevron).
|
|
332
344
|
*/
|
|
333
|
-
declare const ChevronDown: React.FC<IconProps>;
|
|
345
|
+
declare const ChevronDown: React$1.FC<IconProps>;
|
|
334
346
|
/**
|
|
335
347
|
* ChevronUp icon component (upward pointing chevron).
|
|
336
348
|
*/
|
|
337
|
-
declare const ChevronUp: React.FC<IconProps>;
|
|
338
|
-
declare const Calendar: React.FC<IconProps>;
|
|
339
|
-
declare const ChevronLeft: React.FC<IconProps>;
|
|
340
|
-
declare const ChevronRight: React.FC<IconProps>;
|
|
341
|
-
declare const CheckIcon: React.FC<IconProps>;
|
|
342
|
-
declare const ArrowDown: React.FC<IconProps>;
|
|
343
|
-
declare const ArrowUp: React.FC<IconProps>;
|
|
344
|
-
declare const ArrowLeft: React.FC<IconProps>;
|
|
345
|
-
declare const ArrowRight: React.FC<IconProps>;
|
|
346
|
-
declare const Bell: React.FC<IconProps>;
|
|
347
|
-
declare const Bookmark: React.FC<IconProps>;
|
|
348
|
-
declare const CaretDown: React.FC<IconProps>;
|
|
349
|
-
declare const CaretLeft: React.FC<IconProps>;
|
|
350
|
-
declare const CaretRight: React.FC<IconProps>;
|
|
351
|
-
declare const CaretUp: React.FC<IconProps>;
|
|
352
|
-
declare const Chat: React.FC<IconProps>;
|
|
353
|
-
declare const CheckmarkCircle: React.FC<IconProps>;
|
|
354
|
-
declare const CheckmarkSquare: React.FC<IconProps>;
|
|
355
|
-
declare const Close: React.FC<IconProps>;
|
|
356
|
-
declare const CloseSmall: React.FC<IconProps>;
|
|
357
|
-
declare const Cog: React.FC<IconProps>;
|
|
358
|
-
declare const Credentials: React.FC<IconProps>;
|
|
359
|
-
declare const Doc: React.FC<IconProps>;
|
|
360
|
-
declare const Dollar: React.FC<IconProps>;
|
|
361
|
-
declare const Edit: React.FC<IconProps>;
|
|
362
|
-
declare const Envelope: React.FC<IconProps>;
|
|
363
|
-
declare const Exclamation: React.FC<IconProps>;
|
|
364
|
-
declare const EyeClosed: React.FC<IconProps>;
|
|
365
|
-
declare const EyeOpen: React.FC<IconProps>;
|
|
366
|
-
declare const Filter: React.FC<IconProps>;
|
|
367
|
-
declare const FilterDescending: React.FC<IconProps>;
|
|
368
|
-
declare const GraphBar: React.FC<IconProps>;
|
|
369
|
-
declare const GraphDonut: React.FC<IconProps>;
|
|
370
|
-
declare const GraphLine: React.FC<IconProps>;
|
|
371
|
-
declare const GraphPie: React.FC<IconProps>;
|
|
372
|
-
declare const HamburgerMenu: React.FC<IconProps>;
|
|
373
|
-
declare const Home: React.FC<IconProps>;
|
|
374
|
-
declare const Information: React.FC<IconProps>;
|
|
375
|
-
declare const Location: React.FC<IconProps>;
|
|
376
|
-
declare const MagnifyingGlass: React.FC<IconProps>;
|
|
377
|
-
declare const Minus: React.FC<IconProps>;
|
|
378
|
-
declare const Plus: React.FC<IconProps>;
|
|
379
|
-
declare const MoreMenu: React.FC<IconProps>;
|
|
380
|
-
declare const Phone: React.FC<IconProps>;
|
|
381
|
-
declare const QuestionCircle: React.FC<IconProps>;
|
|
382
|
-
declare const Share: React.FC<IconProps>;
|
|
383
|
-
declare const Star: React.FC<IconProps>;
|
|
384
|
-
declare const Statement: React.FC<IconProps>;
|
|
385
|
-
declare const TableIcon: React.FC<IconProps>;
|
|
386
|
-
declare const Trash: React.FC<IconProps>;
|
|
387
|
-
declare const User: React.FC<IconProps>;
|
|
388
|
-
declare const UserMulti: React.FC<IconProps>;
|
|
389
|
-
declare const Warning: React.FC<IconProps>;
|
|
390
|
-
declare const Wrench: React.FC<IconProps>;
|
|
391
|
-
declare const Logout: React.FC<IconProps>;
|
|
349
|
+
declare const ChevronUp: React$1.FC<IconProps>;
|
|
350
|
+
declare const Calendar: React$1.FC<IconProps>;
|
|
351
|
+
declare const ChevronLeft: React$1.FC<IconProps>;
|
|
352
|
+
declare const ChevronRight: React$1.FC<IconProps>;
|
|
353
|
+
declare const CheckIcon: React$1.FC<IconProps>;
|
|
354
|
+
declare const ArrowDown: React$1.FC<IconProps>;
|
|
355
|
+
declare const ArrowUp: React$1.FC<IconProps>;
|
|
356
|
+
declare const ArrowLeft: React$1.FC<IconProps>;
|
|
357
|
+
declare const ArrowRight: React$1.FC<IconProps>;
|
|
358
|
+
declare const Bell: React$1.FC<IconProps>;
|
|
359
|
+
declare const Bookmark: React$1.FC<IconProps>;
|
|
360
|
+
declare const CaretDown: React$1.FC<IconProps>;
|
|
361
|
+
declare const CaretLeft: React$1.FC<IconProps>;
|
|
362
|
+
declare const CaretRight: React$1.FC<IconProps>;
|
|
363
|
+
declare const CaretUp: React$1.FC<IconProps>;
|
|
364
|
+
declare const Chat: React$1.FC<IconProps>;
|
|
365
|
+
declare const CheckmarkCircle: React$1.FC<IconProps>;
|
|
366
|
+
declare const CheckmarkSquare: React$1.FC<IconProps>;
|
|
367
|
+
declare const Close: React$1.FC<IconProps>;
|
|
368
|
+
declare const CloseSmall: React$1.FC<IconProps>;
|
|
369
|
+
declare const Cog: React$1.FC<IconProps>;
|
|
370
|
+
declare const Credentials: React$1.FC<IconProps>;
|
|
371
|
+
declare const Doc: React$1.FC<IconProps>;
|
|
372
|
+
declare const Dollar: React$1.FC<IconProps>;
|
|
373
|
+
declare const Edit: React$1.FC<IconProps>;
|
|
374
|
+
declare const Envelope: React$1.FC<IconProps>;
|
|
375
|
+
declare const Exclamation: React$1.FC<IconProps>;
|
|
376
|
+
declare const EyeClosed: React$1.FC<IconProps>;
|
|
377
|
+
declare const EyeOpen: React$1.FC<IconProps>;
|
|
378
|
+
declare const Filter: React$1.FC<IconProps>;
|
|
379
|
+
declare const FilterDescending: React$1.FC<IconProps>;
|
|
380
|
+
declare const GraphBar: React$1.FC<IconProps>;
|
|
381
|
+
declare const GraphDonut: React$1.FC<IconProps>;
|
|
382
|
+
declare const GraphLine: React$1.FC<IconProps>;
|
|
383
|
+
declare const GraphPie: React$1.FC<IconProps>;
|
|
384
|
+
declare const HamburgerMenu: React$1.FC<IconProps>;
|
|
385
|
+
declare const Home: React$1.FC<IconProps>;
|
|
386
|
+
declare const Information: React$1.FC<IconProps>;
|
|
387
|
+
declare const Location: React$1.FC<IconProps>;
|
|
388
|
+
declare const MagnifyingGlass: React$1.FC<IconProps>;
|
|
389
|
+
declare const Minus: React$1.FC<IconProps>;
|
|
390
|
+
declare const Plus: React$1.FC<IconProps>;
|
|
391
|
+
declare const MoreMenu: React$1.FC<IconProps>;
|
|
392
|
+
declare const Phone: React$1.FC<IconProps>;
|
|
393
|
+
declare const QuestionCircle: React$1.FC<IconProps>;
|
|
394
|
+
declare const Share: React$1.FC<IconProps>;
|
|
395
|
+
declare const Star: React$1.FC<IconProps>;
|
|
396
|
+
declare const Statement: React$1.FC<IconProps>;
|
|
397
|
+
declare const TableIcon: React$1.FC<IconProps>;
|
|
398
|
+
declare const Trash: React$1.FC<IconProps>;
|
|
399
|
+
declare const User: React$1.FC<IconProps>;
|
|
400
|
+
declare const UserMulti: React$1.FC<IconProps>;
|
|
401
|
+
declare const Warning: React$1.FC<IconProps>;
|
|
402
|
+
declare const Wrench: React$1.FC<IconProps>;
|
|
403
|
+
declare const Logout: React$1.FC<IconProps>;
|
|
392
404
|
|
|
393
405
|
/**
|
|
394
406
|
* @fileoverview Chart utilities for Altitude UI chart components.
|
|
@@ -781,7 +793,7 @@ interface BarChartProps {
|
|
|
781
793
|
* @param {boolean} [props.showLegend] - Whether to show legend
|
|
782
794
|
* @param {string} [props.layout] - Chart layout (vertical or horizontal)
|
|
783
795
|
*/
|
|
784
|
-
declare const BarChart: React.ForwardRefExoticComponent<BarChartProps & React.RefAttributes<HTMLDivElement>>;
|
|
796
|
+
declare const BarChart: React$1.ForwardRefExoticComponent<BarChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
785
797
|
|
|
786
798
|
/**
|
|
787
799
|
* LineChart data item structure.
|
|
@@ -830,7 +842,7 @@ interface LineChartProps {
|
|
|
830
842
|
* @param {function} [props.onDataPointClick] - Click handler for data points
|
|
831
843
|
* @param {boolean} [props.showLegend] - Whether to show legend
|
|
832
844
|
*/
|
|
833
|
-
declare const LineChart: React.ForwardRefExoticComponent<LineChartProps & React.RefAttributes<HTMLDivElement>>;
|
|
845
|
+
declare const LineChart: React$1.ForwardRefExoticComponent<LineChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
834
846
|
|
|
835
847
|
/**
|
|
836
848
|
* PieChart data item structure.
|
|
@@ -881,7 +893,7 @@ interface PieChartProps {
|
|
|
881
893
|
* @param {string | number} [props.outerRadius] - Outer radius
|
|
882
894
|
* @param {boolean} [props.showLabels] - Whether to show percentage labels
|
|
883
895
|
*/
|
|
884
|
-
declare const PieChart: React.ForwardRefExoticComponent<PieChartProps & React.RefAttributes<HTMLDivElement>>;
|
|
896
|
+
declare const PieChart: React$1.ForwardRefExoticComponent<PieChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
885
897
|
|
|
886
898
|
interface TableProps<T> {
|
|
887
899
|
table: Table$1<T>;
|
|
@@ -899,4 +911,4 @@ interface TableProps<T> {
|
|
|
899
911
|
*/
|
|
900
912
|
declare function Table<T>({ table, className, showPagination, paginationClassName, }: TableProps<T>): react_jsx_runtime.JSX.Element;
|
|
901
913
|
|
|
902
|
-
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Badge, type BadgeProps, BarChart, type BarChartData, type BarChartProps, Bell, Bookmark, Button, type ButtonProps, CHART_COLORS, CHART_CONSTANTS, COLOR_SCHEMES, Calendar, CaretDown, CaretLeft, CaretRight, CaretUp, type ChartColorScheme, ChartLegend, type ChartLegendProps, Chat, Check, CheckIcon, Checkbox, type CheckboxProps, CheckmarkCircle, CheckmarkSquare, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Close, CloseSmall, Cog, Credentials, DatePicker, type DatePickerProps, Doc, Dollar, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownMenuTriggerProps, Edit, Envelope, Exclamation, EyeClosed, EyeOpen, Filter, FilterDescending, FormField, type FormFieldProps, GenericTooltip, type GenericTooltipProps, GraphBar, GraphDonut, GraphLine, GraphPie, HamburgerMenu, Home, type IconProps, type IconVariant, Information,
|
|
914
|
+
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Badge, type BadgeProps, BarChart, type BarChartData, type BarChartProps, Bell, Bookmark, Button, type ButtonProps, CHART_COLORS, CHART_CONSTANTS, COLOR_SCHEMES, Calendar, CaretDown, CaretLeft, CaretRight, CaretUp, type ChartColorScheme, ChartLegend, type ChartLegendProps, Chat, Check, CheckIcon, Checkbox, type CheckboxProps, CheckmarkCircle, CheckmarkSquare, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Close, CloseSmall, Cog, Credentials, DatePicker, type DatePickerProps, Doc, Dollar, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownMenuTriggerProps, Edit, Envelope, Exclamation, EyeClosed, EyeOpen, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Filter, FilterDescending, FormField, type FormFieldProps, GenericTooltip, type GenericTooltipProps, GraphBar, GraphDonut, GraphLine, GraphPie, HamburgerMenu, Home, type IconProps, type IconVariant, Information, Input, type InputProps, Label, type LabelProps, type LegendItem, LineChart, type LineChartData, type LineChartProps, type LineSeries, Location, Lock, Logout, MagnifyingGlass, Minus, MoreMenu, Phone, PieChart, type PieChartData, type PieChartProps, type PieLabelProps, Plus, QuestionCircle, Select, SelectContent, type SelectContentProps, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Share, Star, Statement, Table, TableIcon, type TableProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, type TickProps, TooltipContainer, type TooltipContainerProps, TooltipItem, type TooltipItemProps, Trash, Typography, type TypographyProps, Upload, type UploadProps, User, UserMulti, Warning, Wrench, X, badgeVariants, buttonVariants, calculateYAxisWidth, checkboxVariants, createCustomXAxisLabel, createCustomYAxisLabel, createCustomYAxisRightLabel, createLegendItems, customXAxisTick, customXAxisTickRotated, customYAxisTick, formatLargeNumber, formatPercentage, getHeatmapColor, getPerformanceColor, getSeriesColor, selectTriggerVariants, tabsVariants, typographyVariants, uploadVariants };
|