@northslopetech/altitude-ui 2.0.17 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -16
- package/dist/index.d.mts +164 -176
- package/dist/index.d.ts +164 -176
- package/dist/index.js +506 -367
- package/dist/index.mjs +444 -316
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -232,22 +232,6 @@ function Example() {
|
|
|
232
232
|
}
|
|
233
233
|
```
|
|
234
234
|
|
|
235
|
-
### FormField
|
|
236
|
-
|
|
237
|
-
A form field wrapper that provides consistent styling and error handling:
|
|
238
|
-
|
|
239
|
-
```tsx
|
|
240
|
-
import { FormField, Input } from "@northslopetech/altitude-ui";
|
|
241
|
-
|
|
242
|
-
function Example() {
|
|
243
|
-
return (
|
|
244
|
-
<FormField label="Email Address" error="Please enter a valid email">
|
|
245
|
-
<Input type="email" placeholder="Enter your email" />
|
|
246
|
-
</FormField>
|
|
247
|
-
);
|
|
248
|
-
}
|
|
249
|
-
```
|
|
250
|
-
|
|
251
235
|
### Badge
|
|
252
236
|
|
|
253
237
|
Small status and informational labels:
|
package/dist/index.d.mts
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,40 +77,41 @@ 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
|
-
|
|
89
|
-
* @fileoverview FormField component for Altitude UI.
|
|
90
|
-
*/
|
|
90
|
+
declare function Label({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
91
91
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
92
|
+
declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
|
|
94
|
+
variant?: "legend" | "label";
|
|
95
|
+
}): react_jsx_runtime.JSX.Element;
|
|
96
|
+
declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
97
|
+
declare const fieldVariants: (props?: ({
|
|
98
|
+
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
99
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
100
|
+
declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
|
|
101
|
+
declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
102
|
+
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
|
|
103
|
+
declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
104
|
+
declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
105
|
+
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & {
|
|
106
|
+
children?: React.ReactNode;
|
|
107
|
+
}): react_jsx_runtime.JSX.Element;
|
|
108
|
+
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & {
|
|
109
|
+
errors?: Array<{
|
|
110
|
+
message?: string;
|
|
111
|
+
} | undefined>;
|
|
112
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
113
|
+
|
|
114
|
+
declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
112
115
|
|
|
113
116
|
/**
|
|
114
117
|
* @fileoverview DatePicker component for Altitude UI.
|
|
@@ -134,7 +137,7 @@ interface DatePickerProps {
|
|
|
134
137
|
* @param {Date} [props.minDate] - Minimum selectable date
|
|
135
138
|
* @param {Date} [props.maxDate] - Maximum selectable date
|
|
136
139
|
*/
|
|
137
|
-
declare const DatePicker: React.ForwardRefExoticComponent<DatePickerProps & React.RefAttributes<HTMLInputElement>>;
|
|
140
|
+
declare const DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
138
141
|
|
|
139
142
|
/**
|
|
140
143
|
* Upload variant styles for different states.
|
|
@@ -143,7 +146,7 @@ declare const uploadVariants: (props?: ({
|
|
|
143
146
|
state?: "default" | "error" | "dragOver" | "uploading" | "success" | null | undefined;
|
|
144
147
|
disabled?: boolean | null | undefined;
|
|
145
148
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
146
|
-
interface UploadProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onError"> {
|
|
149
|
+
interface UploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onError"> {
|
|
147
150
|
onFileSelect?: (files: File[]) => void;
|
|
148
151
|
acceptedFileTypes?: string[];
|
|
149
152
|
disabled?: boolean;
|
|
@@ -164,13 +167,13 @@ interface UploadProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onErro
|
|
|
164
167
|
* @param {File[]} [props.selectedFiles] - Currently selected files
|
|
165
168
|
* @param {number} [props.maxFileSize] - Maximum file size in bytes
|
|
166
169
|
*/
|
|
167
|
-
declare const Upload: React.ForwardRefExoticComponent<UploadProps & React.RefAttributes<HTMLDivElement>>;
|
|
170
|
+
declare const Upload: React$1.ForwardRefExoticComponent<UploadProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
168
171
|
|
|
169
172
|
/**
|
|
170
173
|
* Checkbox variant styles.
|
|
171
174
|
*/
|
|
172
175
|
declare const checkboxVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
173
|
-
interface CheckboxProps extends React.ComponentProps<typeof CheckboxPrimitive.Root> {
|
|
176
|
+
interface CheckboxProps extends React$1.ComponentProps<typeof CheckboxPrimitive.Root> {
|
|
174
177
|
className?: string;
|
|
175
178
|
}
|
|
176
179
|
/**
|
|
@@ -180,48 +183,33 @@ interface CheckboxProps extends React.ComponentProps<typeof CheckboxPrimitive.Ro
|
|
|
180
183
|
* @param {boolean} [props.disabled] - Whether checkbox is disabled
|
|
181
184
|
* @param {string} [props.className] - Additional CSS classes
|
|
182
185
|
*/
|
|
183
|
-
declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
186
|
+
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
184
187
|
|
|
185
188
|
/**
|
|
186
|
-
* Input
|
|
189
|
+
* @fileoverview Input component for Altitude UI.
|
|
187
190
|
*/
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Props for standard text input.
|
|
194
|
+
*/
|
|
195
|
+
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "style"> {
|
|
192
196
|
className?: string;
|
|
193
|
-
style?: React.CSSProperties;
|
|
197
|
+
style?: React$1.CSSProperties;
|
|
194
198
|
onClear?: () => void;
|
|
195
199
|
showClear?: boolean;
|
|
196
200
|
}
|
|
197
201
|
/**
|
|
198
|
-
*
|
|
202
|
+
* Input component for single-line text entry.
|
|
203
|
+
* @param {function} [props.onClear] - Callback when clear button is clicked
|
|
204
|
+
* @param {boolean} [props.showClear] - Whether to show clear button
|
|
199
205
|
*/
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
*/
|
|
206
|
-
interface TextareaFieldProps extends BaseInputProps, Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "style"> {
|
|
207
|
-
variant: "textarea";
|
|
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;
|
|
206
|
+
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
207
|
+
|
|
208
|
+
interface TextareaProps extends Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, "style"> {
|
|
209
|
+
className?: string;
|
|
210
|
+
style?: React$1.CSSProperties;
|
|
223
211
|
}
|
|
224
|
-
declare const
|
|
212
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
225
213
|
|
|
226
214
|
/**
|
|
227
215
|
* Badge variant styles.
|
|
@@ -229,13 +217,13 @@ declare const TypedInput: InputComponent;
|
|
|
229
217
|
declare const badgeVariants: (props?: ({
|
|
230
218
|
variant?: "error" | "warning" | "success" | "primary" | "secondary" | "accent" | "neutral" | null | undefined;
|
|
231
219
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
232
|
-
interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
220
|
+
interface BadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
233
221
|
}
|
|
234
222
|
/**
|
|
235
223
|
* Badge component for status and informational labels.
|
|
236
224
|
* @param {string} [props.variant] - Badge color variant
|
|
237
225
|
*/
|
|
238
|
-
declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
226
|
+
declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
239
227
|
|
|
240
228
|
/**
|
|
241
229
|
* Tabs trigger variant styles.
|
|
@@ -243,7 +231,7 @@ declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttri
|
|
|
243
231
|
declare const tabsVariants: (props?: ({
|
|
244
232
|
variant?: "default" | null | undefined;
|
|
245
233
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
246
|
-
interface TabsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
234
|
+
interface TabsProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
247
235
|
value: string;
|
|
248
236
|
onValueChange: (value: string) => void;
|
|
249
237
|
variant?: "default";
|
|
@@ -254,52 +242,52 @@ interface TabsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
254
242
|
* @param {function} props.onValueChange - Callback when active tab changes
|
|
255
243
|
* @param {string} [props.variant] - Visual variant
|
|
256
244
|
*/
|
|
257
|
-
declare const Tabs: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<HTMLDivElement>>;
|
|
258
|
-
interface TabsListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
259
|
-
children: React.ReactNode;
|
|
245
|
+
declare const Tabs: React$1.ForwardRefExoticComponent<TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
246
|
+
interface TabsListProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
247
|
+
children: React$1.ReactNode;
|
|
260
248
|
}
|
|
261
|
-
declare const TabsList: React.ForwardRefExoticComponent<TabsListProps & React.RefAttributes<HTMLDivElement>>;
|
|
262
|
-
interface TabsTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof tabsVariants> {
|
|
249
|
+
declare const TabsList: React$1.ForwardRefExoticComponent<TabsListProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
250
|
+
interface TabsTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof tabsVariants> {
|
|
263
251
|
value: string;
|
|
264
252
|
}
|
|
265
|
-
declare const TabsTrigger: React.ForwardRefExoticComponent<TabsTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
266
|
-
interface TabsContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
253
|
+
declare const TabsTrigger: React$1.ForwardRefExoticComponent<TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
254
|
+
interface TabsContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
267
255
|
value: string;
|
|
268
256
|
}
|
|
269
|
-
declare const TabsContent: React.ForwardRefExoticComponent<TabsContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
257
|
+
declare const TabsContent: React$1.ForwardRefExoticComponent<TabsContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
270
258
|
|
|
271
259
|
/**
|
|
272
260
|
* DropdownMenu root component.
|
|
273
261
|
*/
|
|
274
|
-
declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
275
|
-
interface DropdownMenuTriggerProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Trigger> {
|
|
276
|
-
icon?: React.ReactNode;
|
|
262
|
+
declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
263
|
+
interface DropdownMenuTriggerProps extends React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Trigger> {
|
|
264
|
+
icon?: React$1.ReactNode;
|
|
277
265
|
}
|
|
278
266
|
/**
|
|
279
267
|
* DropdownMenuTrigger component.
|
|
280
268
|
* @param {React.ReactNode} [props.icon] - Custom icon element
|
|
281
269
|
*/
|
|
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"> & {
|
|
270
|
+
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
271
|
+
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
272
|
+
declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
273
|
+
declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
274
|
+
declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
275
|
+
declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
288
276
|
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"> & {
|
|
277
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
278
|
+
declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
279
|
+
declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
280
|
+
declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
293
281
|
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"> & {
|
|
282
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
283
|
+
declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
284
|
+
declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
285
|
+
declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
298
286
|
inset?: boolean;
|
|
299
|
-
} & React.RefAttributes<HTMLDivElement>>;
|
|
300
|
-
declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
287
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
288
|
+
declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
301
289
|
declare const DropdownMenuShortcut: {
|
|
302
|
-
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
290
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
303
291
|
displayName: string;
|
|
304
292
|
};
|
|
305
293
|
|
|
@@ -311,84 +299,84 @@ declare const DropdownMenuShortcut: {
|
|
|
311
299
|
* Icon color variant type.
|
|
312
300
|
*/
|
|
313
301
|
type IconVariant = "dark" | "light" | "gray" | "error" | "warning";
|
|
314
|
-
interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
302
|
+
interface IconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
315
303
|
className?: string;
|
|
316
304
|
variant?: IconVariant;
|
|
317
305
|
}
|
|
318
306
|
/**
|
|
319
307
|
* X (close) icon component.
|
|
320
308
|
*/
|
|
321
|
-
declare const X: React.FC<IconProps>;
|
|
309
|
+
declare const X: React$1.FC<IconProps>;
|
|
322
310
|
/**
|
|
323
311
|
* Lock icon component.
|
|
324
312
|
*/
|
|
325
|
-
declare const Lock: React.FC<IconProps>;
|
|
313
|
+
declare const Lock: React$1.FC<IconProps>;
|
|
326
314
|
/**
|
|
327
315
|
* Check icon component (circle with checkmark).
|
|
328
316
|
*/
|
|
329
|
-
declare const Check: React.FC<IconProps>;
|
|
317
|
+
declare const Check: React$1.FC<IconProps>;
|
|
330
318
|
/**
|
|
331
319
|
* ChevronDown icon component (downward pointing chevron).
|
|
332
320
|
*/
|
|
333
|
-
declare const ChevronDown: React.FC<IconProps>;
|
|
321
|
+
declare const ChevronDown: React$1.FC<IconProps>;
|
|
334
322
|
/**
|
|
335
323
|
* ChevronUp icon component (upward pointing chevron).
|
|
336
324
|
*/
|
|
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>;
|
|
325
|
+
declare const ChevronUp: React$1.FC<IconProps>;
|
|
326
|
+
declare const Calendar: React$1.FC<IconProps>;
|
|
327
|
+
declare const ChevronLeft: React$1.FC<IconProps>;
|
|
328
|
+
declare const ChevronRight: React$1.FC<IconProps>;
|
|
329
|
+
declare const CheckIcon: React$1.FC<IconProps>;
|
|
330
|
+
declare const ArrowDown: React$1.FC<IconProps>;
|
|
331
|
+
declare const ArrowUp: React$1.FC<IconProps>;
|
|
332
|
+
declare const ArrowLeft: React$1.FC<IconProps>;
|
|
333
|
+
declare const ArrowRight: React$1.FC<IconProps>;
|
|
334
|
+
declare const Bell: React$1.FC<IconProps>;
|
|
335
|
+
declare const Bookmark: React$1.FC<IconProps>;
|
|
336
|
+
declare const CaretDown: React$1.FC<IconProps>;
|
|
337
|
+
declare const CaretLeft: React$1.FC<IconProps>;
|
|
338
|
+
declare const CaretRight: React$1.FC<IconProps>;
|
|
339
|
+
declare const CaretUp: React$1.FC<IconProps>;
|
|
340
|
+
declare const Chat: React$1.FC<IconProps>;
|
|
341
|
+
declare const CheckmarkCircle: React$1.FC<IconProps>;
|
|
342
|
+
declare const CheckmarkSquare: React$1.FC<IconProps>;
|
|
343
|
+
declare const Close: React$1.FC<IconProps>;
|
|
344
|
+
declare const CloseSmall: React$1.FC<IconProps>;
|
|
345
|
+
declare const Cog: React$1.FC<IconProps>;
|
|
346
|
+
declare const Credentials: React$1.FC<IconProps>;
|
|
347
|
+
declare const Doc: React$1.FC<IconProps>;
|
|
348
|
+
declare const Dollar: React$1.FC<IconProps>;
|
|
349
|
+
declare const Edit: React$1.FC<IconProps>;
|
|
350
|
+
declare const Envelope: React$1.FC<IconProps>;
|
|
351
|
+
declare const Exclamation: React$1.FC<IconProps>;
|
|
352
|
+
declare const EyeClosed: React$1.FC<IconProps>;
|
|
353
|
+
declare const EyeOpen: React$1.FC<IconProps>;
|
|
354
|
+
declare const Filter: React$1.FC<IconProps>;
|
|
355
|
+
declare const FilterDescending: React$1.FC<IconProps>;
|
|
356
|
+
declare const GraphBar: React$1.FC<IconProps>;
|
|
357
|
+
declare const GraphDonut: React$1.FC<IconProps>;
|
|
358
|
+
declare const GraphLine: React$1.FC<IconProps>;
|
|
359
|
+
declare const GraphPie: React$1.FC<IconProps>;
|
|
360
|
+
declare const HamburgerMenu: React$1.FC<IconProps>;
|
|
361
|
+
declare const Home: React$1.FC<IconProps>;
|
|
362
|
+
declare const Information: React$1.FC<IconProps>;
|
|
363
|
+
declare const Location: React$1.FC<IconProps>;
|
|
364
|
+
declare const MagnifyingGlass: React$1.FC<IconProps>;
|
|
365
|
+
declare const Minus: React$1.FC<IconProps>;
|
|
366
|
+
declare const Plus: React$1.FC<IconProps>;
|
|
367
|
+
declare const MoreMenu: React$1.FC<IconProps>;
|
|
368
|
+
declare const Phone: React$1.FC<IconProps>;
|
|
369
|
+
declare const QuestionCircle: React$1.FC<IconProps>;
|
|
370
|
+
declare const Share: React$1.FC<IconProps>;
|
|
371
|
+
declare const Star: React$1.FC<IconProps>;
|
|
372
|
+
declare const Statement: React$1.FC<IconProps>;
|
|
373
|
+
declare const TableIcon: React$1.FC<IconProps>;
|
|
374
|
+
declare const Trash: React$1.FC<IconProps>;
|
|
375
|
+
declare const User: React$1.FC<IconProps>;
|
|
376
|
+
declare const UserMulti: React$1.FC<IconProps>;
|
|
377
|
+
declare const Warning: React$1.FC<IconProps>;
|
|
378
|
+
declare const Wrench: React$1.FC<IconProps>;
|
|
379
|
+
declare const Logout: React$1.FC<IconProps>;
|
|
392
380
|
|
|
393
381
|
/**
|
|
394
382
|
* @fileoverview Chart utilities for Altitude UI chart components.
|
|
@@ -781,7 +769,7 @@ interface BarChartProps {
|
|
|
781
769
|
* @param {boolean} [props.showLegend] - Whether to show legend
|
|
782
770
|
* @param {string} [props.layout] - Chart layout (vertical or horizontal)
|
|
783
771
|
*/
|
|
784
|
-
declare const BarChart: React.ForwardRefExoticComponent<BarChartProps & React.RefAttributes<HTMLDivElement>>;
|
|
772
|
+
declare const BarChart: React$1.ForwardRefExoticComponent<BarChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
785
773
|
|
|
786
774
|
/**
|
|
787
775
|
* LineChart data item structure.
|
|
@@ -830,7 +818,7 @@ interface LineChartProps {
|
|
|
830
818
|
* @param {function} [props.onDataPointClick] - Click handler for data points
|
|
831
819
|
* @param {boolean} [props.showLegend] - Whether to show legend
|
|
832
820
|
*/
|
|
833
|
-
declare const LineChart: React.ForwardRefExoticComponent<LineChartProps & React.RefAttributes<HTMLDivElement>>;
|
|
821
|
+
declare const LineChart: React$1.ForwardRefExoticComponent<LineChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
834
822
|
|
|
835
823
|
/**
|
|
836
824
|
* PieChart data item structure.
|
|
@@ -881,7 +869,7 @@ interface PieChartProps {
|
|
|
881
869
|
* @param {string | number} [props.outerRadius] - Outer radius
|
|
882
870
|
* @param {boolean} [props.showLabels] - Whether to show percentage labels
|
|
883
871
|
*/
|
|
884
|
-
declare const PieChart: React.ForwardRefExoticComponent<PieChartProps & React.RefAttributes<HTMLDivElement>>;
|
|
872
|
+
declare const PieChart: React$1.ForwardRefExoticComponent<PieChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
885
873
|
|
|
886
874
|
interface TableProps<T> {
|
|
887
875
|
table: Table$1<T>;
|
|
@@ -899,4 +887,4 @@ interface TableProps<T> {
|
|
|
899
887
|
*/
|
|
900
888
|
declare function Table<T>({ table, className, showPagination, paginationClassName, }: TableProps<T>): react_jsx_runtime.JSX.Element;
|
|
901
889
|
|
|
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,
|
|
890
|
+
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, 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 };
|