@snapcall/design-system 1.5.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 +280 -169
- package/dist/index.d.ts +280 -169
- package/dist/index.js +1396 -657
- package/dist/index.mjs +1370 -655
- package/dist/tailwind.css +1 -1
- package/package.json +6 -2
package/dist/index.d.ts
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';
|
|
@@ -26,13 +26,13 @@ interface IconProps extends SVGAttributes {
|
|
|
26
26
|
duotone?: boolean;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
declare const AccordionItem:
|
|
30
|
-
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>>;
|
|
31
31
|
type TriggerIcon = {
|
|
32
|
-
icon?:
|
|
32
|
+
icon?: React__default.ReactElement<IconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
33
33
|
};
|
|
34
|
-
declare const AccordionTrigger:
|
|
35
|
-
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>>;
|
|
36
36
|
|
|
37
37
|
declare const buttonVariants: (props?: ({
|
|
38
38
|
variant?: "link" | "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | null | undefined;
|
|
@@ -43,88 +43,159 @@ declare const buttonSizes: (props?: ({
|
|
|
43
43
|
declare const iconButtonSizes: (props?: ({
|
|
44
44
|
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
45
45
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
46
|
-
interface ButtonProps extends
|
|
46
|
+
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants>, VariantProps<typeof buttonSizes> {
|
|
47
47
|
icon?: boolean;
|
|
48
48
|
asChild?: boolean;
|
|
49
49
|
}
|
|
50
|
-
declare const Button:
|
|
50
|
+
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
51
51
|
|
|
52
|
-
declare const AlertDialog:
|
|
53
|
-
declare const AlertDialogTrigger:
|
|
54
|
-
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>>;
|
|
55
55
|
declare const AlertDialogHeader: {
|
|
56
|
-
({ className, ...props }:
|
|
56
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
57
57
|
displayName: string;
|
|
58
58
|
};
|
|
59
59
|
declare const AlertDialogFooter: {
|
|
60
|
-
({ className, ...props }:
|
|
60
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
61
61
|
displayName: string;
|
|
62
62
|
};
|
|
63
|
-
declare const AlertDialogTitle:
|
|
64
|
-
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>>;
|
|
65
65
|
type AlertDialogActionVariant = {
|
|
66
66
|
variant?: VariantProps<typeof buttonVariants>['variant'];
|
|
67
67
|
};
|
|
68
|
-
declare const AlertDialogAction:
|
|
69
|
-
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>>;
|
|
70
84
|
|
|
71
85
|
declare const badgeVariants: (props?: ({
|
|
72
86
|
variant?: "fill" | "default" | "outline" | null | undefined;
|
|
73
|
-
color?: "
|
|
87
|
+
color?: "blue" | "red" | "green" | "crimson" | "violet" | "cyan" | "teal" | "brown" | "yellow" | "gray" | "orange" | null | undefined;
|
|
74
88
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
75
|
-
interface BadgeProps extends Omit<
|
|
89
|
+
interface BadgeProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof badgeVariants> {
|
|
76
90
|
}
|
|
77
91
|
declare function Badge({ className, variant, color, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
78
92
|
|
|
79
|
-
type CalendarProps =
|
|
93
|
+
type CalendarProps = React.ComponentProps<typeof DayPicker>;
|
|
80
94
|
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
81
95
|
declare namespace Calendar {
|
|
82
96
|
var displayName: string;
|
|
83
97
|
}
|
|
84
98
|
|
|
85
|
-
declare const Checkbox:
|
|
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>>;
|
|
86
152
|
|
|
87
|
-
declare const Dialog:
|
|
88
|
-
declare const DialogTrigger:
|
|
89
|
-
declare const DialogContent:
|
|
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>>;
|
|
90
156
|
declare const DialogHeader: {
|
|
91
|
-
({ className, ...props }:
|
|
157
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
92
158
|
displayName: string;
|
|
93
159
|
};
|
|
94
160
|
declare const DialogFooter: {
|
|
95
|
-
({ className, ...props }:
|
|
161
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
96
162
|
displayName: string;
|
|
97
163
|
};
|
|
98
|
-
declare const DialogTitle:
|
|
99
|
-
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>>;
|
|
100
166
|
|
|
101
|
-
declare const DropdownMenu:
|
|
167
|
+
declare const DropdownMenu: React__default.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
102
168
|
interface DropdownMenuItemExtension {
|
|
103
169
|
icon?: JSX.Element;
|
|
104
170
|
description?: JSX.Element;
|
|
105
171
|
destructive?: boolean;
|
|
106
172
|
}
|
|
107
|
-
declare const DropdownMenuCheckboxItem:
|
|
108
|
-
declare const DropdownMenuContent:
|
|
109
|
-
declare const DropdownMenuGroup:
|
|
110
|
-
declare const DropdownMenuItem:
|
|
111
|
-
declare const DropdownMenuLabel:
|
|
112
|
-
declare const DropdownMenuPortal:
|
|
113
|
-
declare const DropdownMenuRadioGroup:
|
|
114
|
-
declare const DropdownMenuRadioItem:
|
|
115
|
-
declare const DropdownMenuSeparator:
|
|
116
|
-
declare const DropdownMenuSub:
|
|
117
|
-
declare const DropdownMenuSubContent:
|
|
118
|
-
declare const DropdownMenuSubTrigger:
|
|
119
|
-
declare const DropdownMenuTrigger:
|
|
120
|
-
|
|
121
|
-
|
|
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;
|
|
122
193
|
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: {
|
|
123
194
|
render: ({ field, fieldState, formState, }: {
|
|
124
195
|
field: react_hook_form.ControllerRenderProps<TFieldValues, TName>;
|
|
125
196
|
fieldState: react_hook_form.ControllerFieldState;
|
|
126
197
|
formState: react_hook_form.UseFormStateReturn<TFieldValues>;
|
|
127
|
-
}) =>
|
|
198
|
+
}) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
|
|
128
199
|
} & react_hook_form.UseControllerProps<TFieldValues, TName> & {
|
|
129
200
|
disabled?: boolean | undefined;
|
|
130
201
|
}) => react_jsx_runtime.JSX.Element;
|
|
@@ -140,234 +211,274 @@ declare const useFormField: () => {
|
|
|
140
211
|
formDescriptionId: string;
|
|
141
212
|
formMessageId: string;
|
|
142
213
|
};
|
|
143
|
-
declare const FormItem:
|
|
144
|
-
declare const FormLabel:
|
|
145
|
-
declare const FormControl:
|
|
146
|
-
declare const FormDescription:
|
|
147
|
-
declare const FormMessage:
|
|
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>>;
|
|
148
219
|
|
|
149
|
-
interface InputProps extends
|
|
220
|
+
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
150
221
|
button?: JSX.Element;
|
|
151
222
|
prefixEnchancer?: JSX.Element | string;
|
|
152
223
|
suffixEnchancer?: JSX.Element | string;
|
|
153
224
|
'data-has-error'?: string;
|
|
154
225
|
'data-is-disabled'?: string;
|
|
155
226
|
}
|
|
156
|
-
declare const Input:
|
|
227
|
+
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
|
|
157
228
|
|
|
158
|
-
declare const Label:
|
|
229
|
+
declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & React.RefAttributes<HTMLLabelElement>>;
|
|
159
230
|
|
|
160
|
-
declare
|
|
161
|
-
|
|
162
|
-
|
|
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>>;
|
|
163
250
|
|
|
164
|
-
declare const Select:
|
|
165
|
-
declare const SelectGroup:
|
|
166
|
-
declare const SelectValue:
|
|
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>>;
|
|
167
254
|
type SelectTriggerExtraProps = {
|
|
168
255
|
'data-has-error'?: string;
|
|
169
256
|
'data-is-disabled'?: string;
|
|
170
257
|
};
|
|
171
|
-
declare const SelectTrigger:
|
|
172
|
-
declare const SelectContent:
|
|
173
|
-
declare const SelectLabel:
|
|
174
|
-
declare const SelectItem:
|
|
175
|
-
declare const SelectSeparator:
|
|
176
|
-
|
|
177
|
-
declare const Switch:
|
|
178
|
-
|
|
179
|
-
declare const
|
|
180
|
-
declare const
|
|
181
|
-
declare const
|
|
182
|
-
declare const
|
|
183
|
-
|
|
184
|
-
|
|
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> {
|
|
185
286
|
'data-has-error'?: string;
|
|
186
287
|
'data-is-disabled'?: string;
|
|
187
288
|
}
|
|
188
|
-
declare const Textarea:
|
|
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>>;
|
|
189
303
|
|
|
190
|
-
declare const
|
|
191
|
-
declare const Tooltip: react.FC<TooltipPrimitive.TooltipProps>;
|
|
192
|
-
declare const TooltipTrigger: react.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
193
|
-
declare const TooltipContent: react.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
304
|
+
declare const ArrowLeftIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
194
305
|
|
|
195
|
-
declare const
|
|
306
|
+
declare const ArrowRightIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
196
307
|
|
|
197
|
-
declare const
|
|
308
|
+
declare const ArrowUpIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
198
309
|
|
|
199
|
-
declare const
|
|
310
|
+
declare const AttachmentIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
311
|
|
|
201
|
-
declare const
|
|
312
|
+
declare const BellIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
202
313
|
|
|
203
|
-
declare const
|
|
314
|
+
declare const CalendarIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
204
315
|
|
|
205
|
-
declare const
|
|
316
|
+
declare const CalendarCheckIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
206
317
|
|
|
207
|
-
declare const
|
|
318
|
+
declare const CalendarPlusIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
208
319
|
|
|
209
|
-
declare const
|
|
320
|
+
declare const CameraIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
210
321
|
|
|
211
|
-
declare const
|
|
322
|
+
declare const CameraOffIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
212
323
|
|
|
213
|
-
declare const
|
|
324
|
+
declare const CheckIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
214
325
|
|
|
215
|
-
declare const
|
|
326
|
+
declare const CheckCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
216
327
|
|
|
217
|
-
declare const
|
|
328
|
+
declare const ChevronDownIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
218
329
|
|
|
219
|
-
declare const
|
|
330
|
+
declare const ChevronLeftIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
220
331
|
|
|
221
|
-
declare const
|
|
332
|
+
declare const ChevronLeftDoubleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
222
333
|
|
|
223
|
-
declare const
|
|
334
|
+
declare const ChevronRightIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
224
335
|
|
|
225
|
-
declare const
|
|
336
|
+
declare const ChevronRightDoubleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
226
337
|
|
|
227
|
-
declare const
|
|
338
|
+
declare const ChevronSelectorVerticalIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
228
339
|
|
|
229
|
-
declare const
|
|
340
|
+
declare const ChevronUpIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
230
341
|
|
|
231
|
-
declare const
|
|
342
|
+
declare const CopyIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
232
343
|
|
|
233
|
-
declare const
|
|
344
|
+
declare const CursorClickIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
234
345
|
|
|
235
|
-
declare const
|
|
346
|
+
declare const DotsHorizontalIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
347
|
|
|
237
|
-
declare const
|
|
348
|
+
declare const DotsGrid: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
238
349
|
|
|
239
|
-
declare const
|
|
350
|
+
declare const DownloadIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
240
351
|
|
|
241
|
-
declare const
|
|
352
|
+
declare const EditIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
242
353
|
|
|
243
|
-
declare const
|
|
354
|
+
declare const ExpandIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
244
355
|
|
|
245
|
-
declare const
|
|
356
|
+
declare const FileQuestionIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
246
357
|
|
|
247
|
-
declare const
|
|
358
|
+
declare const FilterLinesIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
248
359
|
|
|
249
|
-
declare const
|
|
360
|
+
declare const FlipBackwardIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
250
361
|
|
|
251
|
-
declare const
|
|
362
|
+
declare const FlipForwardIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
252
363
|
|
|
253
|
-
declare const
|
|
364
|
+
declare const HelpCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
365
|
|
|
255
|
-
declare const
|
|
366
|
+
declare const HomeIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
256
367
|
|
|
257
|
-
declare const
|
|
368
|
+
declare const ImageIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
258
369
|
|
|
259
|
-
declare const
|
|
370
|
+
declare const ImageDownIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
260
371
|
|
|
261
|
-
declare const
|
|
372
|
+
declare const ImageXIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
262
373
|
|
|
263
|
-
declare const
|
|
374
|
+
declare const InfoCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
264
375
|
|
|
265
|
-
declare const
|
|
376
|
+
declare const LightbulbIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
266
377
|
|
|
267
|
-
declare const
|
|
378
|
+
declare const LinkIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
268
379
|
|
|
269
|
-
declare const
|
|
380
|
+
declare const LockIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
270
381
|
|
|
271
|
-
declare const
|
|
382
|
+
declare const LogInIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
383
|
|
|
273
|
-
declare const
|
|
384
|
+
declare const MagicWandIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
274
385
|
|
|
275
|
-
declare const
|
|
386
|
+
declare const MailIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
276
387
|
|
|
277
|
-
declare const
|
|
388
|
+
declare const MenuIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
278
389
|
|
|
279
|
-
declare const
|
|
390
|
+
declare const MessageChatSquareIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
280
391
|
|
|
281
|
-
declare const
|
|
392
|
+
declare const MessagePlusSquareIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
282
393
|
|
|
283
|
-
declare const
|
|
394
|
+
declare const MessageTextSquareIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
284
395
|
|
|
285
|
-
declare const
|
|
396
|
+
declare const MicrophoneIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
286
397
|
|
|
287
|
-
declare const
|
|
398
|
+
declare const MicrophoneOffIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
288
399
|
|
|
289
|
-
declare const
|
|
400
|
+
declare const MonitorIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
401
|
|
|
291
|
-
declare const
|
|
402
|
+
declare const NotificationBoxIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
292
403
|
|
|
293
|
-
declare const
|
|
404
|
+
declare const PauseCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
294
405
|
|
|
295
|
-
declare const
|
|
406
|
+
declare const PhoneIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
296
407
|
|
|
297
|
-
declare const
|
|
408
|
+
declare const PhoneCallIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
298
409
|
|
|
299
|
-
declare const
|
|
410
|
+
declare const PieChartIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
300
411
|
|
|
301
|
-
declare const
|
|
412
|
+
declare const PlayIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
302
413
|
|
|
303
|
-
declare const
|
|
414
|
+
declare const PlayCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
304
415
|
|
|
305
|
-
declare const
|
|
416
|
+
declare const PlusIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
306
417
|
|
|
307
|
-
declare const
|
|
418
|
+
declare const PlusCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
419
|
|
|
309
|
-
declare const
|
|
420
|
+
declare const PuzzlePieceIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
310
421
|
|
|
311
|
-
declare const
|
|
422
|
+
declare const QrCodeIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
312
423
|
|
|
313
|
-
declare const
|
|
424
|
+
declare const ReceiptCheckIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
314
425
|
|
|
315
|
-
declare const
|
|
426
|
+
declare const RecordingIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
316
427
|
|
|
317
|
-
declare const
|
|
428
|
+
declare const RefreshCcwIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
318
429
|
|
|
319
|
-
declare const
|
|
430
|
+
declare const RefreshCwIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
320
431
|
|
|
321
|
-
declare const
|
|
432
|
+
declare const RocketIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
322
433
|
|
|
323
|
-
declare const
|
|
434
|
+
declare const SaveIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
324
435
|
|
|
325
|
-
declare const
|
|
436
|
+
declare const SearchMdIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
437
|
|
|
327
|
-
declare const
|
|
438
|
+
declare const SendIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
328
439
|
|
|
329
|
-
declare const
|
|
440
|
+
declare const SettingsIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
330
441
|
|
|
331
|
-
declare const
|
|
442
|
+
declare const ShareIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
332
443
|
|
|
333
|
-
declare const
|
|
444
|
+
declare const ShareArrowIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
334
445
|
|
|
335
|
-
declare const
|
|
446
|
+
declare const SkipBackIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
336
447
|
|
|
337
|
-
declare const
|
|
448
|
+
declare const SkipForwardIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
338
449
|
|
|
339
|
-
declare const
|
|
450
|
+
declare const SpinnerIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
340
451
|
|
|
341
|
-
declare const StarsIcon:
|
|
452
|
+
declare const StarsIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
342
453
|
|
|
343
|
-
declare const TrashIcon:
|
|
454
|
+
declare const TrashIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
455
|
|
|
345
|
-
declare const TrendDownIcon:
|
|
456
|
+
declare const TrendDownIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
346
457
|
|
|
347
|
-
declare const TrendUpIcon:
|
|
458
|
+
declare const TrendUpIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
348
459
|
|
|
349
|
-
declare const UserIcon:
|
|
460
|
+
declare const UserIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
350
461
|
|
|
351
|
-
declare const UserPlusIcon:
|
|
462
|
+
declare const UserPlusIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
352
463
|
|
|
353
|
-
declare const UserXIcon:
|
|
464
|
+
declare const UserXIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
354
465
|
|
|
355
|
-
declare const UsersIcon:
|
|
466
|
+
declare const UsersIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
356
467
|
|
|
357
|
-
declare const UsersPlusIcon:
|
|
468
|
+
declare const UsersPlusIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
358
469
|
|
|
359
|
-
declare const UsersXIcon:
|
|
470
|
+
declare const UsersXIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
360
471
|
|
|
361
|
-
declare const VideoRecorderIcon:
|
|
472
|
+
declare const VideoRecorderIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
362
473
|
|
|
363
|
-
declare const VideoRecorderOffIcon:
|
|
474
|
+
declare const VideoRecorderOffIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
364
475
|
|
|
365
|
-
declare const VolumeMaxIcon:
|
|
476
|
+
declare const VolumeMaxIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
366
477
|
|
|
367
|
-
declare const VolumeXIcon:
|
|
478
|
+
declare const VolumeXIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
368
479
|
|
|
369
|
-
declare const XCircleIcon:
|
|
480
|
+
declare const XCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
370
481
|
|
|
371
|
-
declare const XCloseIcon:
|
|
482
|
+
declare const XCloseIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
372
483
|
|
|
373
|
-
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, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronSelectorVerticalIcon, ChevronUpIcon, CopyIcon, CursorClickIcon, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DotsHorizontalIcon, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditIcon, ExpandIcon, FileQuestionIcon, 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, PauseCircleIcon, PhoneCallIcon, PhoneIcon, PieChartIcon, PlayCircleIcon, 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, StarsIcon, Switch, 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 };
|
|
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 };
|