@snapcall/design-system 1.4.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +333 -123
- package/dist/index.d.ts +333 -123
- package/dist/index.js +2169 -639
- package/dist/index.mjs +2072 -603
- package/dist/tailwind.config.js +8 -6
- package/dist/tailwind.css +1 -1
- package/package.json +24 -6
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import React__default, { SVGProps } from 'react';
|
|
3
3
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
@@ -7,10 +7,18 @@ import { VariantProps } from 'class-variance-authority';
|
|
|
7
7
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
8
8
|
import { DayPicker } from 'react-day-picker';
|
|
9
9
|
export { DateRange } from 'react-day-picker';
|
|
10
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
10
11
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
12
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
13
|
+
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
14
|
+
import * as react_hook_form from 'react-hook-form';
|
|
15
|
+
import { FieldValues, FieldPath } from 'react-hook-form';
|
|
16
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
11
17
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
18
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
12
19
|
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
13
20
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
21
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
14
22
|
|
|
15
23
|
type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
|
|
16
24
|
interface IconProps extends SVGAttributes {
|
|
@@ -18,13 +26,13 @@ interface IconProps extends SVGAttributes {
|
|
|
18
26
|
duotone?: boolean;
|
|
19
27
|
}
|
|
20
28
|
|
|
21
|
-
declare const AccordionItem:
|
|
22
|
-
declare const Accordion:
|
|
29
|
+
declare const AccordionItem: React__default.ForwardRefExoticComponent<AccordionPrimitive.AccordionItemProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
30
|
+
declare const Accordion: React__default.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React__default.RefAttributes<HTMLDivElement>>;
|
|
23
31
|
type TriggerIcon = {
|
|
24
|
-
icon?:
|
|
32
|
+
icon?: React__default.ReactElement<IconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
25
33
|
};
|
|
26
|
-
declare const AccordionTrigger:
|
|
27
|
-
declare const AccordionContent:
|
|
34
|
+
declare const AccordionTrigger: React__default.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React__default.RefAttributes<HTMLButtonElement>, "ref"> & TriggerIcon & React__default.RefAttributes<HTMLButtonElement & TriggerIcon>>;
|
|
35
|
+
declare const AccordionContent: React__default.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
28
36
|
|
|
29
37
|
declare const buttonVariants: (props?: ({
|
|
30
38
|
variant?: "link" | "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | null | undefined;
|
|
@@ -35,240 +43,442 @@ declare const buttonSizes: (props?: ({
|
|
|
35
43
|
declare const iconButtonSizes: (props?: ({
|
|
36
44
|
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
37
45
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
38
|
-
interface ButtonProps extends
|
|
46
|
+
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants>, VariantProps<typeof buttonSizes> {
|
|
39
47
|
icon?: boolean;
|
|
40
48
|
asChild?: boolean;
|
|
41
49
|
}
|
|
42
|
-
declare const Button:
|
|
50
|
+
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
43
51
|
|
|
44
|
-
declare const AlertDialog:
|
|
45
|
-
declare const AlertDialogTrigger:
|
|
46
|
-
declare const AlertDialogContent:
|
|
52
|
+
declare const AlertDialog: React.FC<AlertDialogPrimitive.AlertDialogProps>;
|
|
53
|
+
declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
54
|
+
declare const AlertDialogContent: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
47
55
|
declare const AlertDialogHeader: {
|
|
48
|
-
({ className, ...props }:
|
|
56
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
49
57
|
displayName: string;
|
|
50
58
|
};
|
|
51
59
|
declare const AlertDialogFooter: {
|
|
52
|
-
({ className, ...props }:
|
|
60
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
53
61
|
displayName: string;
|
|
54
62
|
};
|
|
55
|
-
declare const AlertDialogTitle:
|
|
56
|
-
declare const AlertDialogDescription:
|
|
63
|
+
declare const AlertDialogTitle: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
64
|
+
declare const AlertDialogDescription: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
57
65
|
type AlertDialogActionVariant = {
|
|
58
66
|
variant?: VariantProps<typeof buttonVariants>['variant'];
|
|
59
67
|
};
|
|
60
|
-
declare const AlertDialogAction:
|
|
61
|
-
declare const AlertDialogCancel:
|
|
68
|
+
declare const AlertDialogAction: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & AlertDialogActionVariant & React.RefAttributes<HTMLButtonElement>>;
|
|
69
|
+
declare const AlertDialogCancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
70
|
+
|
|
71
|
+
interface AvatarProps extends VariantProps<typeof avatarVariants>, VariantProps<typeof avatarSizes> {
|
|
72
|
+
className?: string;
|
|
73
|
+
icon?: JSX.Element;
|
|
74
|
+
name: string;
|
|
75
|
+
image?: JSX.Element;
|
|
76
|
+
}
|
|
77
|
+
declare const avatarSizes: (props?: ({
|
|
78
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
79
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
80
|
+
declare const avatarVariants: (props?: ({
|
|
81
|
+
variant?: "blue" | "amber" | "red" | "green" | "plum" | "crimson" | "purple" | "violet" | "indigo" | "cyan" | "teal" | "grass" | "brown" | "lime" | "yellow" | "gold" | "bronze" | "gray" | null | undefined;
|
|
82
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
83
|
+
declare const Avatar: React__default.ForwardRefExoticComponent<AvatarProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
62
84
|
|
|
63
85
|
declare const badgeVariants: (props?: ({
|
|
64
86
|
variant?: "fill" | "default" | "outline" | null | undefined;
|
|
65
|
-
color?: "
|
|
87
|
+
color?: "blue" | "red" | "green" | "crimson" | "violet" | "cyan" | "teal" | "brown" | "yellow" | "gray" | "orange" | null | undefined;
|
|
66
88
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
67
|
-
interface BadgeProps extends Omit<
|
|
89
|
+
interface BadgeProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof badgeVariants> {
|
|
68
90
|
}
|
|
69
91
|
declare function Badge({ className, variant, color, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
70
92
|
|
|
71
|
-
type CalendarProps =
|
|
93
|
+
type CalendarProps = React.ComponentProps<typeof DayPicker>;
|
|
72
94
|
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
73
95
|
declare namespace Calendar {
|
|
74
96
|
var displayName: string;
|
|
75
97
|
}
|
|
76
98
|
|
|
77
|
-
declare const
|
|
78
|
-
|
|
79
|
-
declare const
|
|
99
|
+
declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
100
|
+
|
|
101
|
+
declare const Command: React.ForwardRefExoticComponent<Omit<{
|
|
102
|
+
children?: React.ReactNode;
|
|
103
|
+
} & React.HTMLAttributes<HTMLDivElement> & {
|
|
104
|
+
label?: string | undefined;
|
|
105
|
+
shouldFilter?: boolean | undefined;
|
|
106
|
+
filter?: ((value: string, search: string) => number) | undefined;
|
|
107
|
+
value?: string | undefined;
|
|
108
|
+
onValueChange?: ((value: string) => void) | undefined;
|
|
109
|
+
loop?: boolean | undefined;
|
|
110
|
+
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
111
|
+
declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "type" | "onChange" | "value"> & {
|
|
112
|
+
value?: string | undefined;
|
|
113
|
+
onValueChange?: ((search: string) => void) | undefined;
|
|
114
|
+
} & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
115
|
+
declare const CommandList: React.ForwardRefExoticComponent<Omit<{
|
|
116
|
+
children?: React.ReactNode;
|
|
117
|
+
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
118
|
+
interface CommandEmptyExtension {
|
|
119
|
+
title?: string;
|
|
120
|
+
description?: string;
|
|
121
|
+
}
|
|
122
|
+
declare const CommandEmpty: React.ForwardRefExoticComponent<Omit<{
|
|
123
|
+
children?: React.ReactNode;
|
|
124
|
+
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "ref"> & CommandEmptyExtension & React.RefAttributes<HTMLDivElement & CommandEmptyExtension>>;
|
|
125
|
+
declare const CommandLoading: React.ForwardRefExoticComponent<Omit<{
|
|
126
|
+
children?: React.ReactNode;
|
|
127
|
+
} & {
|
|
128
|
+
progress?: number | undefined;
|
|
129
|
+
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
130
|
+
declare const CommandGroup: React.ForwardRefExoticComponent<Omit<{
|
|
131
|
+
children?: React.ReactNode;
|
|
132
|
+
} & Omit<React.HTMLAttributes<HTMLDivElement>, "heading" | "value"> & {
|
|
133
|
+
heading?: React.ReactNode;
|
|
134
|
+
value?: string | undefined;
|
|
135
|
+
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
136
|
+
declare const CommandSeparator: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLDivElement> & {
|
|
137
|
+
alwaysRender?: boolean | undefined;
|
|
138
|
+
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
139
|
+
type CommandItemExtension = {
|
|
140
|
+
icon?: JSX.Element;
|
|
141
|
+
checkbox?: boolean;
|
|
142
|
+
checked?: boolean;
|
|
143
|
+
description?: string;
|
|
144
|
+
};
|
|
145
|
+
declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
|
|
146
|
+
children?: React.ReactNode;
|
|
147
|
+
} & Omit<React.HTMLAttributes<HTMLDivElement>, "onSelect" | "disabled" | "value"> & {
|
|
148
|
+
disabled?: boolean | undefined;
|
|
149
|
+
onSelect?: ((value: string) => void) | undefined;
|
|
150
|
+
value?: string | undefined;
|
|
151
|
+
} & React.RefAttributes<HTMLDivElement>, "ref"> & CommandItemExtension & React.RefAttributes<HTMLDivElement & CommandItemExtension>>;
|
|
152
|
+
|
|
153
|
+
declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
|
|
154
|
+
declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
155
|
+
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
80
156
|
declare const DialogHeader: {
|
|
81
|
-
({ className, ...props }:
|
|
157
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
82
158
|
displayName: string;
|
|
83
159
|
};
|
|
84
160
|
declare const DialogFooter: {
|
|
85
|
-
({ className, ...props }:
|
|
161
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
86
162
|
displayName: string;
|
|
87
163
|
};
|
|
88
|
-
declare const DialogTitle:
|
|
89
|
-
declare const DialogDescription:
|
|
164
|
+
declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
165
|
+
declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
166
|
+
|
|
167
|
+
declare const DropdownMenu: React__default.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
168
|
+
interface DropdownMenuItemExtension {
|
|
169
|
+
icon?: JSX.Element;
|
|
170
|
+
description?: JSX.Element;
|
|
171
|
+
destructive?: boolean;
|
|
172
|
+
}
|
|
173
|
+
declare const DropdownMenuCheckboxItem: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuItemExtension & React__default.RefAttributes<HTMLDivElement & DropdownMenuItemExtension>>;
|
|
174
|
+
declare const DropdownMenuContent: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
175
|
+
declare const DropdownMenuGroup: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
176
|
+
declare const DropdownMenuItem: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuItemExtension & React__default.RefAttributes<HTMLDivElement & DropdownMenuItemExtension>>;
|
|
177
|
+
declare const DropdownMenuLabel: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
178
|
+
declare const DropdownMenuPortal: React__default.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
179
|
+
declare const DropdownMenuRadioGroup: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
180
|
+
declare const DropdownMenuRadioItem: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuItemExtension & React__default.RefAttributes<HTMLDivElement & DropdownMenuItemExtension>>;
|
|
181
|
+
declare const DropdownMenuSeparator: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
182
|
+
declare const DropdownMenuSub: React__default.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
183
|
+
declare const DropdownMenuSubContent: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
184
|
+
declare const DropdownMenuSubTrigger: React__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuItemExtension & React__default.RefAttributes<HTMLDivElement & DropdownMenuItemExtension>>;
|
|
185
|
+
declare const DropdownMenuTrigger: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
186
|
+
|
|
187
|
+
interface FilterButtonProps extends ButtonProps {
|
|
188
|
+
selectedCount?: number;
|
|
189
|
+
}
|
|
190
|
+
declare const FilterButton: React__default.ForwardRefExoticComponent<FilterButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
191
|
+
|
|
192
|
+
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues extends FieldValues | undefined = undefined>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
193
|
+
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: {
|
|
194
|
+
render: ({ field, fieldState, formState, }: {
|
|
195
|
+
field: react_hook_form.ControllerRenderProps<TFieldValues, TName>;
|
|
196
|
+
fieldState: react_hook_form.ControllerFieldState;
|
|
197
|
+
formState: react_hook_form.UseFormStateReturn<TFieldValues>;
|
|
198
|
+
}) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
199
|
+
} & react_hook_form.UseControllerProps<TFieldValues, TName> & {
|
|
200
|
+
disabled?: boolean | undefined;
|
|
201
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
202
|
+
declare const useFormField: () => {
|
|
203
|
+
invalid: boolean;
|
|
204
|
+
isDirty: boolean;
|
|
205
|
+
isTouched: boolean;
|
|
206
|
+
error?: react_hook_form.FieldError | undefined;
|
|
207
|
+
id: string;
|
|
208
|
+
name: string;
|
|
209
|
+
isDisabled: boolean | undefined;
|
|
210
|
+
formItemId: string;
|
|
211
|
+
formDescriptionId: string;
|
|
212
|
+
formMessageId: string;
|
|
213
|
+
};
|
|
214
|
+
declare const FormItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
215
|
+
declare const FormLabel: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & React.RefAttributes<HTMLLabelElement>>;
|
|
216
|
+
declare const FormControl: React.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
217
|
+
declare const FormDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
218
|
+
declare const FormMessage: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
219
|
+
|
|
220
|
+
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
221
|
+
button?: JSX.Element;
|
|
222
|
+
prefixEnchancer?: JSX.Element | string;
|
|
223
|
+
suffixEnchancer?: JSX.Element | string;
|
|
224
|
+
'data-has-error'?: string;
|
|
225
|
+
'data-is-disabled'?: string;
|
|
226
|
+
}
|
|
227
|
+
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
|
|
228
|
+
|
|
229
|
+
declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & React.RefAttributes<HTMLLabelElement>>;
|
|
230
|
+
|
|
231
|
+
declare enum PaginationPageChoice {
|
|
232
|
+
FIRST = "FIRST",
|
|
233
|
+
PREVIOUS = "PREVIOUS",
|
|
234
|
+
NEXT = "NEXT",
|
|
235
|
+
LAST = "LAST"
|
|
236
|
+
}
|
|
237
|
+
interface PaginationProps {
|
|
238
|
+
totalRowsCaption?: string;
|
|
239
|
+
nextPageAvailable: boolean;
|
|
240
|
+
previousPageAvailable: boolean;
|
|
241
|
+
currentPageCation?: string;
|
|
242
|
+
onPageChange: (page: PaginationPageChoice) => void;
|
|
243
|
+
className?: string;
|
|
244
|
+
}
|
|
245
|
+
declare const Pagination: ({ totalRowsCaption, nextPageAvailable, previousPageAvailable, currentPageCation, onPageChange, className, }: PaginationProps) => react_jsx_runtime.JSX.Element;
|
|
246
|
+
|
|
247
|
+
declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
|
|
248
|
+
declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
249
|
+
declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
250
|
+
|
|
251
|
+
declare const Select: React.FC<SelectPrimitive.SelectProps>;
|
|
252
|
+
declare const SelectGroup: React.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
253
|
+
declare const SelectValue: React.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>>;
|
|
254
|
+
type SelectTriggerExtraProps = {
|
|
255
|
+
'data-has-error'?: string;
|
|
256
|
+
'data-is-disabled'?: string;
|
|
257
|
+
};
|
|
258
|
+
declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & SelectTriggerExtraProps & React.RefAttributes<HTMLButtonElement & SelectTriggerExtraProps>>;
|
|
259
|
+
declare const SelectContent: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
260
|
+
declare const SelectLabel: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
261
|
+
declare const SelectItem: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
262
|
+
declare const SelectSeparator: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
263
|
+
|
|
264
|
+
declare const Switch: React.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
265
|
+
|
|
266
|
+
declare const Table: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableElement> & React.RefAttributes<HTMLTableElement>>;
|
|
267
|
+
declare const TableHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
268
|
+
declare const TableBody: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
269
|
+
declare const TableRow: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableRowElement> & React.RefAttributes<HTMLTableRowElement>>;
|
|
270
|
+
declare const TableHead: React.ForwardRefExoticComponent<React.ThHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
271
|
+
declare const TableCell: React.ForwardRefExoticComponent<React.TdHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
272
|
+
declare const TableEmpty: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
273
|
+
title?: string | undefined;
|
|
274
|
+
description?: string | undefined;
|
|
275
|
+
} & React.RefAttributes<HTMLDivElement & {
|
|
276
|
+
title?: string | undefined;
|
|
277
|
+
description?: string | undefined;
|
|
278
|
+
}>>;
|
|
279
|
+
|
|
280
|
+
declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
|
|
281
|
+
declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
282
|
+
declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
283
|
+
declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
284
|
+
|
|
285
|
+
interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
286
|
+
'data-has-error'?: string;
|
|
287
|
+
'data-is-disabled'?: string;
|
|
288
|
+
}
|
|
289
|
+
declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
290
|
+
|
|
291
|
+
declare const TooltipProvider: ({ delayDuration, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>) => react_jsx_runtime.JSX.Element;
|
|
292
|
+
declare const Tooltip: React.FC<TooltipPrimitive.TooltipProps>;
|
|
293
|
+
declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
294
|
+
declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
295
|
+
|
|
296
|
+
declare const ActivityIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
297
|
+
|
|
298
|
+
declare const AlertCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
299
|
+
|
|
300
|
+
declare const ArrowCircleUpIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
301
|
+
|
|
302
|
+
declare const ArrowDownIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
303
|
+
|
|
304
|
+
declare const ArrowLeftIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
90
305
|
|
|
91
|
-
declare const
|
|
92
|
-
declare const PopoverTrigger: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
93
|
-
declare const PopoverContent: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
306
|
+
declare const ArrowRightIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
94
307
|
|
|
95
|
-
declare const
|
|
308
|
+
declare const ArrowUpIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
96
309
|
|
|
97
|
-
declare const
|
|
98
|
-
declare const TabsList: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
99
|
-
declare const TabsTrigger: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
100
|
-
declare const TabsContent: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
310
|
+
declare const AttachmentIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
101
311
|
|
|
102
|
-
declare const
|
|
312
|
+
declare const BellIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
103
313
|
|
|
104
|
-
declare const
|
|
314
|
+
declare const CalendarIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
105
315
|
|
|
106
|
-
declare const
|
|
316
|
+
declare const CalendarCheckIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
107
317
|
|
|
108
|
-
declare const
|
|
318
|
+
declare const CalendarPlusIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
109
319
|
|
|
110
|
-
declare const
|
|
320
|
+
declare const CameraIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
111
321
|
|
|
112
|
-
declare const
|
|
322
|
+
declare const CameraOffIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
113
323
|
|
|
114
|
-
declare const
|
|
324
|
+
declare const CheckIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
115
325
|
|
|
116
|
-
declare const
|
|
326
|
+
declare const CheckCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
117
327
|
|
|
118
|
-
declare const
|
|
328
|
+
declare const ChevronDownIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
119
329
|
|
|
120
|
-
declare const
|
|
330
|
+
declare const ChevronLeftIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
121
331
|
|
|
122
|
-
declare const
|
|
332
|
+
declare const ChevronLeftDoubleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
123
333
|
|
|
124
|
-
declare const
|
|
334
|
+
declare const ChevronRightIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
125
335
|
|
|
126
|
-
declare const
|
|
336
|
+
declare const ChevronRightDoubleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
127
337
|
|
|
128
|
-
declare const
|
|
338
|
+
declare const ChevronSelectorVerticalIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
129
339
|
|
|
130
|
-
declare const
|
|
340
|
+
declare const ChevronUpIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
131
341
|
|
|
132
|
-
declare const
|
|
342
|
+
declare const CopyIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
133
343
|
|
|
134
|
-
declare const
|
|
344
|
+
declare const CursorClickIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
135
345
|
|
|
136
|
-
declare const
|
|
346
|
+
declare const DotsHorizontalIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
137
347
|
|
|
138
|
-
declare const
|
|
348
|
+
declare const DotsGrid: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
139
349
|
|
|
140
|
-
declare const
|
|
350
|
+
declare const DownloadIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
141
351
|
|
|
142
|
-
declare const
|
|
352
|
+
declare const EditIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
143
353
|
|
|
144
|
-
declare const
|
|
354
|
+
declare const ExpandIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
145
355
|
|
|
146
|
-
declare const
|
|
356
|
+
declare const FileQuestionIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
147
357
|
|
|
148
|
-
declare const
|
|
358
|
+
declare const FilterLinesIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
149
359
|
|
|
150
|
-
declare const
|
|
360
|
+
declare const FlipBackwardIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
151
361
|
|
|
152
|
-
declare const
|
|
362
|
+
declare const FlipForwardIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
153
363
|
|
|
154
|
-
declare const
|
|
364
|
+
declare const HelpCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
155
365
|
|
|
156
|
-
declare const
|
|
366
|
+
declare const HomeIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
157
367
|
|
|
158
|
-
declare const
|
|
368
|
+
declare const ImageIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
159
369
|
|
|
160
|
-
declare const
|
|
370
|
+
declare const ImageDownIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
161
371
|
|
|
162
|
-
declare const
|
|
372
|
+
declare const ImageXIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
163
373
|
|
|
164
|
-
declare const
|
|
374
|
+
declare const InfoCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
165
375
|
|
|
166
|
-
declare const
|
|
376
|
+
declare const LightbulbIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
167
377
|
|
|
168
|
-
declare const
|
|
378
|
+
declare const LinkIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
169
379
|
|
|
170
|
-
declare const
|
|
380
|
+
declare const LockIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
171
381
|
|
|
172
|
-
declare const
|
|
382
|
+
declare const LogInIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
173
383
|
|
|
174
|
-
declare const
|
|
384
|
+
declare const MagicWandIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
175
385
|
|
|
176
|
-
declare const
|
|
386
|
+
declare const MailIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
177
387
|
|
|
178
|
-
declare const
|
|
388
|
+
declare const MenuIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
179
389
|
|
|
180
|
-
declare const
|
|
390
|
+
declare const MessageChatSquareIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
181
391
|
|
|
182
|
-
declare const
|
|
392
|
+
declare const MessagePlusSquareIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
183
393
|
|
|
184
|
-
declare const
|
|
394
|
+
declare const MessageTextSquareIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
185
395
|
|
|
186
|
-
declare const
|
|
396
|
+
declare const MicrophoneIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
187
397
|
|
|
188
|
-
declare const
|
|
398
|
+
declare const MicrophoneOffIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
189
399
|
|
|
190
|
-
declare const
|
|
400
|
+
declare const MonitorIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
191
401
|
|
|
192
|
-
declare const
|
|
402
|
+
declare const NotificationBoxIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
193
403
|
|
|
194
|
-
declare const
|
|
404
|
+
declare const PauseCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
195
405
|
|
|
196
|
-
declare const
|
|
406
|
+
declare const PhoneIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
197
407
|
|
|
198
|
-
declare const
|
|
408
|
+
declare const PhoneCallIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
199
409
|
|
|
200
|
-
declare const
|
|
410
|
+
declare const PieChartIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
201
411
|
|
|
202
|
-
declare const
|
|
412
|
+
declare const PlayIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
203
413
|
|
|
204
|
-
declare const
|
|
414
|
+
declare const PlayCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
205
415
|
|
|
206
|
-
declare const
|
|
416
|
+
declare const PlusIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
207
417
|
|
|
208
|
-
declare const
|
|
418
|
+
declare const PlusCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
209
419
|
|
|
210
|
-
declare const
|
|
420
|
+
declare const PuzzlePieceIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
211
421
|
|
|
212
|
-
declare const
|
|
422
|
+
declare const QrCodeIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
213
423
|
|
|
214
|
-
declare const
|
|
424
|
+
declare const ReceiptCheckIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
215
425
|
|
|
216
|
-
declare const
|
|
426
|
+
declare const RecordingIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
217
427
|
|
|
218
|
-
declare const
|
|
428
|
+
declare const RefreshCcwIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
219
429
|
|
|
220
|
-
declare const
|
|
430
|
+
declare const RefreshCwIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
221
431
|
|
|
222
|
-
declare const
|
|
432
|
+
declare const RocketIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
223
433
|
|
|
224
|
-
declare const
|
|
434
|
+
declare const SaveIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
225
435
|
|
|
226
|
-
declare const
|
|
436
|
+
declare const SearchMdIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
227
437
|
|
|
228
|
-
declare const
|
|
438
|
+
declare const SendIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
229
439
|
|
|
230
|
-
declare const
|
|
440
|
+
declare const SettingsIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
231
441
|
|
|
232
|
-
declare const
|
|
442
|
+
declare const ShareIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
233
443
|
|
|
234
|
-
declare const
|
|
444
|
+
declare const ShareArrowIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
235
445
|
|
|
236
|
-
declare const
|
|
446
|
+
declare const SkipBackIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
237
447
|
|
|
238
|
-
declare const
|
|
448
|
+
declare const SkipForwardIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
239
449
|
|
|
240
|
-
declare const
|
|
450
|
+
declare const SpinnerIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
241
451
|
|
|
242
|
-
declare const StarsIcon:
|
|
452
|
+
declare const StarsIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
243
453
|
|
|
244
|
-
declare const TrashIcon:
|
|
454
|
+
declare const TrashIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
245
455
|
|
|
246
|
-
declare const TrendDownIcon:
|
|
456
|
+
declare const TrendDownIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
247
457
|
|
|
248
|
-
declare const TrendUpIcon:
|
|
458
|
+
declare const TrendUpIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
249
459
|
|
|
250
|
-
declare const UserIcon:
|
|
460
|
+
declare const UserIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
251
461
|
|
|
252
|
-
declare const UserPlusIcon:
|
|
462
|
+
declare const UserPlusIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
253
463
|
|
|
254
|
-
declare const UserXIcon:
|
|
464
|
+
declare const UserXIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
255
465
|
|
|
256
|
-
declare const UsersIcon:
|
|
466
|
+
declare const UsersIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
257
467
|
|
|
258
|
-
declare const UsersPlusIcon:
|
|
468
|
+
declare const UsersPlusIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
259
469
|
|
|
260
|
-
declare const UsersXIcon:
|
|
470
|
+
declare const UsersXIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
261
471
|
|
|
262
|
-
declare const VideoRecorderIcon:
|
|
472
|
+
declare const VideoRecorderIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
263
473
|
|
|
264
|
-
declare const VideoRecorderOffIcon:
|
|
474
|
+
declare const VideoRecorderOffIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
265
475
|
|
|
266
|
-
declare const VolumeMaxIcon:
|
|
476
|
+
declare const VolumeMaxIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
267
477
|
|
|
268
|
-
declare const VolumeXIcon:
|
|
478
|
+
declare const VolumeXIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
269
479
|
|
|
270
|
-
declare const XCircleIcon:
|
|
480
|
+
declare const XCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
271
481
|
|
|
272
|
-
declare const XCloseIcon:
|
|
482
|
+
declare const XCloseIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
273
483
|
|
|
274
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityIcon, AlertCircleIcon, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, ArrowCircleUpIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AttachmentIcon, Badge, BadgeProps, BellIcon, Button, ButtonProps, Calendar, CalendarCheckIcon, CalendarIcon, CalendarPlusIcon, CameraIcon, CameraOffIcon, CheckCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CopyIcon, CursorClickIcon, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DotsHorizontalIcon, DownloadIcon, EditIcon, ExpandIcon, FilterLinesIcon, FlipBackwardIcon, FlipForwardIcon, HelpCircleIcon, HomeIcon, ImageDownIcon, ImageIcon, ImageXIcon, InfoCircleIcon, LightbulbIcon, LinkIcon, LockIcon, LogInIcon, MagicWandIcon, MailIcon, MenuIcon, MessageChatSquareIcon, MessagePlusSquareIcon, MessageTextSquareIcon, MicrophoneIcon, MicrophoneOffIcon, MonitorIcon, NotificationBoxIcon, PauseCircleIcon, PhoneCallIcon, PhoneIcon, PieChartIcon, PlayCircleIcon, PlusCircleIcon, PlusIcon, Popover, PopoverContent, PopoverTrigger, PuzzlePieceIcon, QrCodeIcon, ReceiptCheckIcon, RecordingIcon, RefreshCcwIcon, RefreshCwIcon, RocketIcon, SaveIcon, SearchMdIcon, SendIcon, SettingsIcon, ShareArrowIcon, ShareIcon, SkipBackIcon, SkipForwardIcon, StarsIcon, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon, buttonSizes, buttonVariants, iconButtonSizes };
|
|
484
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityIcon, AlertCircleIcon, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, ArrowCircleUpIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AttachmentIcon, Avatar, Badge, BadgeProps, BellIcon, Button, ButtonProps, Calendar, CalendarCheckIcon, CalendarIcon, CalendarPlusIcon, CameraIcon, CameraOffIcon, CheckCircleIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftDoubleIcon, ChevronLeftIcon, ChevronRightDoubleIcon, ChevronRightIcon, ChevronSelectorVerticalIcon, ChevronUpIcon, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandLoading, CommandSeparator, CopyIcon, CursorClickIcon, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DotsGrid, DotsHorizontalIcon, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditIcon, ExpandIcon, FileQuestionIcon, FilterButton, FilterLinesIcon, FlipBackwardIcon, FlipForwardIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HelpCircleIcon, HomeIcon, ImageDownIcon, ImageIcon, ImageXIcon, InfoCircleIcon, Input, Label, LightbulbIcon, LinkIcon, LockIcon, LogInIcon, MagicWandIcon, MailIcon, MenuIcon, MessageChatSquareIcon, MessagePlusSquareIcon, MessageTextSquareIcon, MicrophoneIcon, MicrophoneOffIcon, MonitorIcon, NotificationBoxIcon, Pagination, PaginationPageChoice, PauseCircleIcon, PhoneCallIcon, PhoneIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, Popover, PopoverContent, PopoverTrigger, PuzzlePieceIcon, QrCodeIcon, ReceiptCheckIcon, RecordingIcon, RefreshCcwIcon, RefreshCwIcon, RocketIcon, SaveIcon, SearchMdIcon, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SendIcon, SettingsIcon, ShareArrowIcon, ShareIcon, SkipBackIcon, SkipForwardIcon, SpinnerIcon, StarsIcon, Switch, Table, TableBody, TableCell, TableEmpty, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon, buttonSizes, buttonVariants, iconButtonSizes, useFormField };
|