@geowiki/design-system 0.16.12 → 0.16.15
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 +138 -124
- package/dist/index.d.ts +138 -124
- package/dist/index.js +341 -114
- package/dist/index.mjs +339 -113
- package/dist/styles.css +1 -1
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
|
@@ -4,7 +4,6 @@ import React__default, { ComponentProps, Dispatch, SetStateAction, ForwardRefExo
|
|
|
4
4
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
5
5
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
6
6
|
import { VariantProps } from 'class-variance-authority';
|
|
7
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
8
7
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
9
8
|
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
10
9
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
@@ -15,7 +14,6 @@ import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
|
15
14
|
import { DialogProps } from '@radix-ui/react-dialog';
|
|
16
15
|
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
17
16
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
18
|
-
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
19
17
|
import * as react_hook_form from 'react-hook-form';
|
|
20
18
|
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
21
19
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
@@ -57,11 +55,11 @@ declare const AlertDialogPortal: React$1.FC<AlertDialogPrimitive.AlertDialogPort
|
|
|
57
55
|
declare const AlertDialogOverlay: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
58
56
|
declare const AlertDialogContent: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
59
57
|
declare const AlertDialogHeader: {
|
|
60
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
58
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
61
59
|
displayName: string;
|
|
62
60
|
};
|
|
63
61
|
declare const AlertDialogFooter: {
|
|
64
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
62
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
65
63
|
displayName: string;
|
|
66
64
|
};
|
|
67
65
|
declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
@@ -80,7 +78,7 @@ declare const badgeVariants: (props?: ({
|
|
|
80
78
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
81
79
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
82
80
|
}
|
|
83
|
-
declare function Badge({ className, variant, ...props }: BadgeProps):
|
|
81
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): React$1.JSX.Element;
|
|
84
82
|
|
|
85
83
|
declare const buttonVariants: (props?: ({
|
|
86
84
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
@@ -92,7 +90,7 @@ interface ButtonProps$1 extends React$1.ButtonHTMLAttributes<HTMLButtonElement>,
|
|
|
92
90
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps$1 & React$1.RefAttributes<HTMLButtonElement>>;
|
|
93
91
|
|
|
94
92
|
type CalendarProps = React$1.ComponentProps<typeof DayPicker>;
|
|
95
|
-
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps):
|
|
93
|
+
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): React$1.JSX.Element;
|
|
96
94
|
declare namespace Calendar {
|
|
97
95
|
var displayName: string;
|
|
98
96
|
}
|
|
@@ -124,7 +122,7 @@ declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
|
124
122
|
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
125
123
|
interface CommandDialogProps extends DialogProps {
|
|
126
124
|
}
|
|
127
|
-
declare const CommandDialog: ({ children, ...props }: CommandDialogProps) =>
|
|
125
|
+
declare const CommandDialog: ({ children, ...props }: CommandDialogProps) => React$1.JSX.Element;
|
|
128
126
|
declare const CommandInput: React$1.ForwardRefExoticComponent<Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "type"> & {
|
|
129
127
|
value?: string | undefined;
|
|
130
128
|
onValueChange?: ((search: string) => void) | undefined;
|
|
@@ -154,7 +152,7 @@ declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
|
|
|
154
152
|
forceMount?: boolean | undefined;
|
|
155
153
|
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
156
154
|
declare const CommandShortcut: {
|
|
157
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>):
|
|
155
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): React$1.JSX.Element;
|
|
158
156
|
displayName: string;
|
|
159
157
|
};
|
|
160
158
|
|
|
@@ -179,7 +177,7 @@ declare const ContextMenuLabel: React$1.ForwardRefExoticComponent<Omit<ContextMe
|
|
|
179
177
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
180
178
|
declare const ContextMenuSeparator: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
181
179
|
declare const ContextMenuShortcut: {
|
|
182
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>):
|
|
180
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): React$1.JSX.Element;
|
|
183
181
|
displayName: string;
|
|
184
182
|
};
|
|
185
183
|
|
|
@@ -190,11 +188,11 @@ declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.Dia
|
|
|
190
188
|
declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
191
189
|
declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
192
190
|
declare const DialogHeader: {
|
|
193
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
191
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
194
192
|
displayName: string;
|
|
195
193
|
};
|
|
196
194
|
declare const DialogFooter: {
|
|
197
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
195
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
198
196
|
displayName: string;
|
|
199
197
|
};
|
|
200
198
|
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
@@ -221,12 +219,12 @@ declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<Dropdown
|
|
|
221
219
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
222
220
|
declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
223
221
|
declare const DropdownMenuShortcut: {
|
|
224
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>):
|
|
222
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): React$1.JSX.Element;
|
|
225
223
|
displayName: string;
|
|
226
224
|
};
|
|
227
225
|
|
|
228
|
-
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(
|
|
229
|
-
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) =>
|
|
226
|
+
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>({ children, watch, getValues, getErrors, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, resetDefaultValues, handleSubmit, unregister, control, register, setFocus, subscribe, }: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
227
|
+
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => React$1.JSX.Element;
|
|
230
228
|
declare const useFormField: () => {
|
|
231
229
|
invalid: boolean;
|
|
232
230
|
isDirty: boolean;
|
|
@@ -241,7 +239,9 @@ declare const useFormField: () => {
|
|
|
241
239
|
};
|
|
242
240
|
declare const FormItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
243
241
|
declare const FormLabel: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
244
|
-
declare const FormControl: React$1.ForwardRefExoticComponent<Omit<
|
|
242
|
+
declare const FormControl: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLElement> & {
|
|
243
|
+
children?: React$1.ReactNode;
|
|
244
|
+
} & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
245
245
|
declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
246
246
|
declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
247
247
|
|
|
@@ -277,7 +277,7 @@ declare const MenubarLabel: React$1.ForwardRefExoticComponent<Omit<MenubarPrimit
|
|
|
277
277
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
278
278
|
declare const MenubarSeparator: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
279
279
|
declare const MenubarShortcut: {
|
|
280
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>):
|
|
280
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): React$1.JSX.Element;
|
|
281
281
|
displayname: string;
|
|
282
282
|
};
|
|
283
283
|
|
|
@@ -327,17 +327,17 @@ interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof Dial
|
|
|
327
327
|
}
|
|
328
328
|
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
329
329
|
declare const SheetHeader: {
|
|
330
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
330
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
331
331
|
displayName: string;
|
|
332
332
|
};
|
|
333
333
|
declare const SheetFooter: {
|
|
334
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
334
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
335
335
|
displayName: string;
|
|
336
336
|
};
|
|
337
337
|
declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
338
338
|
declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
339
339
|
|
|
340
|
-
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>):
|
|
340
|
+
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
341
341
|
|
|
342
342
|
declare const Slider: React$1.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
343
343
|
|
|
@@ -361,13 +361,13 @@ interface TagProps {
|
|
|
361
361
|
tag: string;
|
|
362
362
|
className?: string;
|
|
363
363
|
}
|
|
364
|
-
declare const Tag: ({ tag, className }: TagProps) =>
|
|
364
|
+
declare const Tag: ({ tag, className }: TagProps) => React$1.JSX.Element;
|
|
365
365
|
|
|
366
366
|
interface Props$k {
|
|
367
367
|
tags?: string[];
|
|
368
368
|
tagColor?: string;
|
|
369
369
|
}
|
|
370
|
-
declare const TagList: (props: Props$k) =>
|
|
370
|
+
declare const TagList: (props: Props$k) => React$1.JSX.Element;
|
|
371
371
|
|
|
372
372
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
373
373
|
}
|
|
@@ -385,7 +385,7 @@ declare const ToastDescription: React$1.ForwardRefExoticComponent<Omit<ToastPrim
|
|
|
385
385
|
type ToastProps = React$1.ComponentPropsWithoutRef<typeof Toast$1>;
|
|
386
386
|
type ToastActionElement = React$1.ReactElement<typeof ToastAction>;
|
|
387
387
|
|
|
388
|
-
declare function Toaster():
|
|
388
|
+
declare function Toaster(): React$1.JSX.Element;
|
|
389
389
|
|
|
390
390
|
declare const toggleVariants: (props?: ({
|
|
391
391
|
variant?: "default" | "outline" | null | undefined;
|
|
@@ -445,127 +445,127 @@ declare function useToast(): {
|
|
|
445
445
|
|
|
446
446
|
declare const AccountIcon: ({ ...props }: {
|
|
447
447
|
[x: string]: any;
|
|
448
|
-
}) =>
|
|
448
|
+
}) => React$1.JSX.Element;
|
|
449
449
|
|
|
450
450
|
declare const AtomIcon: ({ ...props }: {
|
|
451
451
|
[x: string]: any;
|
|
452
|
-
}) =>
|
|
452
|
+
}) => React$1.JSX.Element;
|
|
453
453
|
|
|
454
454
|
declare const BookTextIcon: ({ ...props }: {
|
|
455
455
|
[x: string]: any;
|
|
456
|
-
}) =>
|
|
456
|
+
}) => React$1.JSX.Element;
|
|
457
457
|
|
|
458
458
|
declare const CalendarIcon: ({ ...props }: {
|
|
459
459
|
[x: string]: any;
|
|
460
|
-
}) =>
|
|
460
|
+
}) => React$1.JSX.Element;
|
|
461
461
|
|
|
462
462
|
declare const CameraIcon: ({ ...props }: {
|
|
463
463
|
[x: string]: any;
|
|
464
|
-
}) =>
|
|
464
|
+
}) => React$1.JSX.Element;
|
|
465
465
|
|
|
466
466
|
declare const ChartLineDotsIcon: ({ ...props }: {
|
|
467
467
|
[x: string]: any;
|
|
468
|
-
}) =>
|
|
468
|
+
}) => React$1.JSX.Element;
|
|
469
469
|
|
|
470
470
|
declare const ChatsIcons: ({ ...props }: {
|
|
471
471
|
[x: string]: any;
|
|
472
|
-
}) =>
|
|
472
|
+
}) => React$1.JSX.Element;
|
|
473
473
|
|
|
474
474
|
declare const ClipboardIcon: ({ ...props }: {
|
|
475
475
|
[x: string]: any;
|
|
476
|
-
}) =>
|
|
476
|
+
}) => React$1.JSX.Element;
|
|
477
477
|
|
|
478
478
|
declare const CpuIcon: ({ ...props }: {
|
|
479
479
|
[x: string]: any;
|
|
480
|
-
}) =>
|
|
480
|
+
}) => React$1.JSX.Element;
|
|
481
481
|
|
|
482
482
|
declare const DesktopCodeIcon: ({ ...props }: {
|
|
483
483
|
[x: string]: any;
|
|
484
|
-
}) =>
|
|
484
|
+
}) => React$1.JSX.Element;
|
|
485
485
|
|
|
486
486
|
declare const FarmerClustersIcon: ({ ...props }: {
|
|
487
487
|
[x: string]: any;
|
|
488
|
-
}) =>
|
|
488
|
+
}) => React$1.JSX.Element;
|
|
489
489
|
|
|
490
490
|
declare const GridDividersIcon: ({ ...props }: {
|
|
491
491
|
[x: string]: any;
|
|
492
|
-
}) =>
|
|
492
|
+
}) => React$1.JSX.Element;
|
|
493
493
|
|
|
494
494
|
declare const HardDriveIcon: ({ ...props }: {
|
|
495
495
|
[x: string]: any;
|
|
496
|
-
}) =>
|
|
496
|
+
}) => React$1.JSX.Element;
|
|
497
497
|
|
|
498
498
|
declare const HeadphonesIcon: ({ ...props }: {
|
|
499
499
|
[x: string]: any;
|
|
500
|
-
}) =>
|
|
500
|
+
}) => React$1.JSX.Element;
|
|
501
501
|
|
|
502
502
|
declare const Icon: ({ type, }: {
|
|
503
503
|
type: "Atom" | "Chats" | "Clipboard" | "Collection" | "Cpu" | "Dataset" | "Event" | "Image" | "InteractiveResource" | "Microscope" | "MovingImage" | "PhysicalObject" | "Service" | "Sound" | "StillImage" | "StopWatchCheck" | "TextBook";
|
|
504
|
-
}) =>
|
|
504
|
+
}) => React$1.JSX.Element;
|
|
505
505
|
|
|
506
506
|
declare const ImageIcon: ({ ...props }: {
|
|
507
507
|
[x: string]: any;
|
|
508
|
-
}) =>
|
|
508
|
+
}) => React$1.JSX.Element;
|
|
509
509
|
|
|
510
510
|
declare const LayerGroupIcon: ({ ...props }: {
|
|
511
511
|
[x: string]: any;
|
|
512
|
-
}) =>
|
|
512
|
+
}) => React$1.JSX.Element;
|
|
513
513
|
|
|
514
514
|
declare const LegendIcon: ({ ...props }: {
|
|
515
515
|
[x: string]: any;
|
|
516
|
-
}) =>
|
|
516
|
+
}) => React$1.JSX.Element;
|
|
517
517
|
|
|
518
|
-
declare const MapLayersIcon: () =>
|
|
518
|
+
declare const MapLayersIcon: () => React$1.JSX.Element;
|
|
519
519
|
|
|
520
520
|
declare const MicroscopeIcon: ({ ...props }: {
|
|
521
521
|
[x: string]: any;
|
|
522
|
-
}) =>
|
|
522
|
+
}) => React$1.JSX.Element;
|
|
523
523
|
|
|
524
524
|
declare const MinusIcon: ({ ...props }: {
|
|
525
525
|
[x: string]: any;
|
|
526
|
-
}) =>
|
|
526
|
+
}) => React$1.JSX.Element;
|
|
527
527
|
|
|
528
528
|
declare const PlusIcon: ({ ...props }: {
|
|
529
529
|
[x: string]: any;
|
|
530
|
-
}) =>
|
|
530
|
+
}) => React$1.JSX.Element;
|
|
531
531
|
|
|
532
532
|
declare const ResourcesIcon: ({ ...props }: {
|
|
533
533
|
[x: string]: any;
|
|
534
|
-
}) =>
|
|
534
|
+
}) => React$1.JSX.Element;
|
|
535
535
|
|
|
536
536
|
declare const SettingsIcon: ({ ...props }: {
|
|
537
537
|
[x: string]: any;
|
|
538
|
-
}) =>
|
|
538
|
+
}) => React$1.JSX.Element;
|
|
539
539
|
|
|
540
540
|
declare const StopWatchCheckIcon: ({ ...props }: {
|
|
541
541
|
[x: string]: any;
|
|
542
|
-
}) =>
|
|
542
|
+
}) => React$1.JSX.Element;
|
|
543
543
|
|
|
544
544
|
declare const UserGroupIcon: ({ ...props }: {
|
|
545
545
|
[x: string]: any;
|
|
546
|
-
}) =>
|
|
546
|
+
}) => React$1.JSX.Element;
|
|
547
547
|
|
|
548
548
|
declare const VideoPlayIcon: ({ ...props }: {
|
|
549
549
|
[x: string]: any;
|
|
550
|
-
}) =>
|
|
550
|
+
}) => React$1.JSX.Element;
|
|
551
551
|
|
|
552
552
|
declare const XIcon: ({ ...props }: {
|
|
553
553
|
[x: string]: any;
|
|
554
|
-
}) =>
|
|
554
|
+
}) => React$1.JSX.Element;
|
|
555
555
|
|
|
556
556
|
declare const GlobeIcon: ({ ...props }: {
|
|
557
557
|
[x: string]: any;
|
|
558
|
-
}) =>
|
|
558
|
+
}) => React$1.JSX.Element;
|
|
559
559
|
|
|
560
|
-
declare const DownloadIcon: () =>
|
|
560
|
+
declare const DownloadIcon: () => React$1.JSX.Element;
|
|
561
561
|
|
|
562
562
|
declare const FarmerClusterPin: ({ ...props }: {
|
|
563
563
|
[x: string]: any;
|
|
564
|
-
}) =>
|
|
564
|
+
}) => React$1.JSX.Element;
|
|
565
565
|
|
|
566
566
|
declare const Hexagon: ({ ...props }: {
|
|
567
567
|
[x: string]: any;
|
|
568
|
-
}) =>
|
|
568
|
+
}) => React$1.JSX.Element;
|
|
569
569
|
|
|
570
570
|
interface IconPathsType {
|
|
571
571
|
name: string;
|
|
@@ -573,45 +573,45 @@ interface IconPathsType {
|
|
|
573
573
|
}
|
|
574
574
|
declare const IconPaths: IconPathsType[];
|
|
575
575
|
|
|
576
|
-
declare const MapLegendIcon: () =>
|
|
576
|
+
declare const MapLegendIcon: () => React$1.JSX.Element;
|
|
577
577
|
|
|
578
578
|
interface LocationIconProps {
|
|
579
579
|
Icon: React.ElementType;
|
|
580
580
|
color?: string;
|
|
581
581
|
}
|
|
582
|
-
declare const LocationIcon: ({ Icon, color }: LocationIconProps) =>
|
|
582
|
+
declare const LocationIcon: ({ Icon, color }: LocationIconProps) => React$1.JSX.Element;
|
|
583
583
|
|
|
584
584
|
interface MapIconProps {
|
|
585
585
|
Icon: React.ElementType;
|
|
586
586
|
color?: string;
|
|
587
587
|
}
|
|
588
|
-
declare const MapIcon: ({ Icon, color }: MapIconProps) =>
|
|
588
|
+
declare const MapIcon: ({ Icon, color }: MapIconProps) => React$1.JSX.Element;
|
|
589
589
|
|
|
590
590
|
declare const Microscope: ({ ...props }: {
|
|
591
591
|
[x: string]: any;
|
|
592
|
-
}) =>
|
|
592
|
+
}) => React$1.JSX.Element;
|
|
593
593
|
|
|
594
594
|
declare const ObservationPin: ({ ...props }: {
|
|
595
595
|
[x: string]: any;
|
|
596
|
-
}) =>
|
|
596
|
+
}) => React$1.JSX.Element;
|
|
597
597
|
|
|
598
|
-
declare const OverlayIcon: () =>
|
|
598
|
+
declare const OverlayIcon: () => React$1.JSX.Element;
|
|
599
599
|
|
|
600
600
|
declare const UsersGroup: ({ ...props }: {
|
|
601
601
|
[x: string]: any;
|
|
602
|
-
}) =>
|
|
602
|
+
}) => React$1.JSX.Element;
|
|
603
603
|
|
|
604
604
|
type TableViewProps<T> = {
|
|
605
605
|
table: Table$1<T>;
|
|
606
606
|
totalCount: number;
|
|
607
607
|
pageSize: number;
|
|
608
608
|
};
|
|
609
|
-
declare const CustomTable: <T extends unknown>({ table, totalCount, pageSize, }: TableViewProps<T>) =>
|
|
609
|
+
declare const CustomTable: <T extends unknown>({ table, totalCount, pageSize, }: TableViewProps<T>) => React$1.JSX.Element;
|
|
610
610
|
|
|
611
611
|
interface FullPageLoaderProps {
|
|
612
612
|
show: boolean;
|
|
613
613
|
}
|
|
614
|
-
declare const FullPageLoader: ({ show }: FullPageLoaderProps) =>
|
|
614
|
+
declare const FullPageLoader: ({ show }: FullPageLoaderProps) => React$1.JSX.Element | null;
|
|
615
615
|
|
|
616
616
|
interface Props$j {
|
|
617
617
|
src: string;
|
|
@@ -620,23 +620,23 @@ interface Props$j {
|
|
|
620
620
|
width?: number | string;
|
|
621
621
|
height?: number | string;
|
|
622
622
|
}
|
|
623
|
-
declare const CustomImage: (props: Props$j) =>
|
|
623
|
+
declare const CustomImage: (props: Props$j) => React$1.JSX.Element;
|
|
624
624
|
|
|
625
|
-
declare const Loader: () =>
|
|
625
|
+
declare const Loader: () => React$1.JSX.Element;
|
|
626
626
|
|
|
627
627
|
type PaginationProps<T> = {
|
|
628
628
|
pageCount: number;
|
|
629
629
|
table: Table$1<T>;
|
|
630
630
|
};
|
|
631
|
-
declare const Pagination: <T extends unknown>({ pageCount, table, }: PaginationProps<T>) =>
|
|
631
|
+
declare const Pagination: <T extends unknown>({ pageCount, table, }: PaginationProps<T>) => React$1.JSX.Element;
|
|
632
632
|
|
|
633
633
|
type SearchProps = {
|
|
634
634
|
onUpdate: (searchStr: string) => void;
|
|
635
635
|
value: string;
|
|
636
636
|
};
|
|
637
|
-
declare const Search: React$1.MemoExoticComponent<({ onUpdate, value }: SearchProps) =>
|
|
637
|
+
declare const Search: React$1.MemoExoticComponent<({ onUpdate, value }: SearchProps) => React$1.JSX.Element>;
|
|
638
638
|
|
|
639
|
-
declare const ThemeSwitcher: () =>
|
|
639
|
+
declare const ThemeSwitcher: () => React$1.JSX.Element;
|
|
640
640
|
|
|
641
641
|
declare const useDebounce: <V extends unknown>(value: V, delay?: number) => V;
|
|
642
642
|
|
|
@@ -656,7 +656,7 @@ interface Props$i {
|
|
|
656
656
|
noDisplayTextAsLabel?: boolean;
|
|
657
657
|
cssClass?: string;
|
|
658
658
|
}
|
|
659
|
-
declare const OldCustomInput: (props: Props$i) =>
|
|
659
|
+
declare const OldCustomInput: (props: Props$i) => React$1.JSX.Element;
|
|
660
660
|
|
|
661
661
|
type Props$h = {
|
|
662
662
|
name: string;
|
|
@@ -674,7 +674,7 @@ type Props$h = {
|
|
|
674
674
|
Placeholder?: string;
|
|
675
675
|
showLabel?: boolean;
|
|
676
676
|
};
|
|
677
|
-
declare const MultiSelect: (props: Props$h) =>
|
|
677
|
+
declare const MultiSelect: (props: Props$h) => React$1.JSX.Element;
|
|
678
678
|
|
|
679
679
|
interface Props$g {
|
|
680
680
|
register: any;
|
|
@@ -690,7 +690,7 @@ interface Props$g {
|
|
|
690
690
|
isLabelBold?: boolean;
|
|
691
691
|
isPlaceholderItalic?: boolean;
|
|
692
692
|
}
|
|
693
|
-
declare const TextArea: (props: Props$g) =>
|
|
693
|
+
declare const TextArea: (props: Props$g) => React$1.JSX.Element;
|
|
694
694
|
|
|
695
695
|
interface UmamiAnalyticsProps {
|
|
696
696
|
scriptUrl?: string;
|
|
@@ -709,7 +709,7 @@ declare const UmamiAnalytics: React__default.FC<UmamiAnalyticsProps>;
|
|
|
709
709
|
type Props$f = {
|
|
710
710
|
onClick: any;
|
|
711
711
|
};
|
|
712
|
-
declare const DeleteButton: (props: Props$f) =>
|
|
712
|
+
declare const DeleteButton: (props: Props$f) => React$1.JSX.Element;
|
|
713
713
|
|
|
714
714
|
type Props$e = {
|
|
715
715
|
onClick?: () => void;
|
|
@@ -717,13 +717,13 @@ type Props$e = {
|
|
|
717
717
|
type: "button" | "submit";
|
|
718
718
|
style: "primary" | "secondary" | "danger";
|
|
719
719
|
};
|
|
720
|
-
declare const PrimaryButton: (props: Props$e) =>
|
|
720
|
+
declare const PrimaryButton: (props: Props$e) => React$1.JSX.Element;
|
|
721
721
|
|
|
722
722
|
interface AboutInfoItemProps {
|
|
723
723
|
title: string;
|
|
724
724
|
description: string;
|
|
725
725
|
}
|
|
726
|
-
declare const AboutInfoItem: ({ title, description }: AboutInfoItemProps) =>
|
|
726
|
+
declare const AboutInfoItem: ({ title, description }: AboutInfoItemProps) => React$1.JSX.Element | null;
|
|
727
727
|
|
|
728
728
|
declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
729
729
|
separator?: React$1.ReactNode;
|
|
@@ -735,11 +735,11 @@ declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<Omit<React$1.Det
|
|
|
735
735
|
} & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
736
736
|
declare const BreadcrumbPage: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
737
737
|
declare const BreadcrumbSeparator: {
|
|
738
|
-
({ children, className, ...props }: React$1.ComponentProps<"li">):
|
|
738
|
+
({ children, className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
|
|
739
739
|
displayName: string;
|
|
740
740
|
};
|
|
741
741
|
declare const BreadcrumbEllipsis: {
|
|
742
|
-
({ className, ...props }: React$1.ComponentProps<"span">):
|
|
742
|
+
({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
|
|
743
743
|
displayName: string;
|
|
744
744
|
};
|
|
745
745
|
|
|
@@ -779,18 +779,18 @@ interface CookiesProps {
|
|
|
779
779
|
handleAccept: () => void;
|
|
780
780
|
handleDecline: () => void;
|
|
781
781
|
}
|
|
782
|
-
declare const Cookies: ({ handleAccept, handleDecline }: CookiesProps) =>
|
|
782
|
+
declare const Cookies: ({ handleAccept, handleDecline }: CookiesProps) => React$1.JSX.Element | null;
|
|
783
783
|
|
|
784
784
|
interface Props$d {
|
|
785
785
|
country: string;
|
|
786
786
|
}
|
|
787
|
-
declare const CountryItem: ({ country }: Props$d) =>
|
|
787
|
+
declare const CountryItem: ({ country }: Props$d) => React$1.JSX.Element;
|
|
788
788
|
|
|
789
789
|
interface InfoBoxProps {
|
|
790
790
|
title: string;
|
|
791
791
|
text: string;
|
|
792
792
|
}
|
|
793
|
-
declare const InfoBox: ({ title, text }: InfoBoxProps) =>
|
|
793
|
+
declare const InfoBox: ({ title, text }: InfoBoxProps) => React$1.JSX.Element;
|
|
794
794
|
|
|
795
795
|
declare const designInputVariants: (props?: ({
|
|
796
796
|
variant?: "default" | "error" | "success" | null | undefined;
|
|
@@ -803,14 +803,14 @@ interface KeyInfoItemProps$1 {
|
|
|
803
803
|
label: string;
|
|
804
804
|
value: React.ReactNode;
|
|
805
805
|
}
|
|
806
|
-
declare const KeyInfoItem: ({ label, value }: KeyInfoItemProps$1) =>
|
|
806
|
+
declare const KeyInfoItem: ({ label, value }: KeyInfoItemProps$1) => React$1.JSX.Element;
|
|
807
807
|
|
|
808
808
|
interface Props$c {
|
|
809
809
|
date: string | number | Date;
|
|
810
810
|
}
|
|
811
|
-
declare const LastUpdatedTag: ({ date }: Props$c) =>
|
|
811
|
+
declare const LastUpdatedTag: ({ date }: Props$c) => React$1.JSX.Element;
|
|
812
812
|
|
|
813
|
-
declare const NoResults: () =>
|
|
813
|
+
declare const NoResults: () => React$1.JSX.Element;
|
|
814
814
|
|
|
815
815
|
declare const DesignRadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
816
816
|
declare const DesignRadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -825,35 +825,35 @@ type SelectTriggerProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitiv
|
|
|
825
825
|
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Trigger>>;
|
|
826
826
|
};
|
|
827
827
|
declare const DesignSelectTrigger: {
|
|
828
|
-
({ className, children, variant, ref, ...props }: SelectTriggerProps):
|
|
828
|
+
({ className, children, variant, ref, ...props }: SelectTriggerProps): React$1.JSX.Element;
|
|
829
829
|
displayName: string | undefined;
|
|
830
830
|
};
|
|
831
831
|
type SelectContentProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Content> & {
|
|
832
832
|
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Content>>;
|
|
833
833
|
};
|
|
834
834
|
declare const DesignSelectContent: {
|
|
835
|
-
({ className, children, position, ref, ...props }: SelectContentProps):
|
|
835
|
+
({ className, children, position, ref, ...props }: SelectContentProps): React$1.JSX.Element;
|
|
836
836
|
displayName: string | undefined;
|
|
837
837
|
};
|
|
838
838
|
type SelectLabelProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Label> & {
|
|
839
839
|
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Label>>;
|
|
840
840
|
};
|
|
841
841
|
declare const DesignSelectLabel: {
|
|
842
|
-
({ className, ref, ...props }: SelectLabelProps):
|
|
842
|
+
({ className, ref, ...props }: SelectLabelProps): React$1.JSX.Element;
|
|
843
843
|
displayName: string | undefined;
|
|
844
844
|
};
|
|
845
845
|
type SelectItemProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Item> & {
|
|
846
846
|
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Item>>;
|
|
847
847
|
};
|
|
848
848
|
declare const DesignSelectItem: {
|
|
849
|
-
({ className, children, ref, ...props }: SelectItemProps):
|
|
849
|
+
({ className, children, ref, ...props }: SelectItemProps): React$1.JSX.Element;
|
|
850
850
|
displayName: string | undefined;
|
|
851
851
|
};
|
|
852
852
|
type SelectSeparatorProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator> & {
|
|
853
853
|
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Separator>>;
|
|
854
854
|
};
|
|
855
855
|
declare const DesignSelectSeparator: {
|
|
856
|
-
({ className, ref, ...props }: SelectSeparatorProps):
|
|
856
|
+
({ className, ref, ...props }: SelectSeparatorProps): React$1.JSX.Element;
|
|
857
857
|
displayName: string | undefined;
|
|
858
858
|
};
|
|
859
859
|
|
|
@@ -864,7 +864,7 @@ declare const designSimpleTagVariants: (props?: ({
|
|
|
864
864
|
variant?: "blue" | "orange" | "purple" | "turquoise" | "yellow" | "darkGreen" | "darkBlue" | null | undefined;
|
|
865
865
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
866
866
|
type TagType$1 = VariantProps<typeof designSimpleTagVariants> & ComponentProps<"span">;
|
|
867
|
-
declare const DesignSimpleTag: ({ tag, variant, className, }: Props$b & TagType$1) =>
|
|
867
|
+
declare const DesignSimpleTag: ({ tag, variant, className, }: Props$b & TagType$1) => React$1.JSX.Element;
|
|
868
868
|
|
|
869
869
|
declare const DesignSwitch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
870
870
|
|
|
@@ -872,7 +872,7 @@ interface DesignResultTagProps {
|
|
|
872
872
|
name: string;
|
|
873
873
|
tag: string;
|
|
874
874
|
}
|
|
875
|
-
declare const DesignResultTag: ({ tag, name }: DesignResultTagProps) =>
|
|
875
|
+
declare const DesignResultTag: ({ tag, name }: DesignResultTagProps) => React$1.JSX.Element | null;
|
|
876
876
|
|
|
877
877
|
interface ResourceTagProps {
|
|
878
878
|
tag: string;
|
|
@@ -887,7 +887,7 @@ interface NotificationProps {
|
|
|
887
887
|
setOpen: Dispatch<SetStateAction<boolean>>;
|
|
888
888
|
icon?: "email" | "computer";
|
|
889
889
|
}
|
|
890
|
-
declare const Notification: ({ title, description, open, setOpen, icon, }: NotificationProps) =>
|
|
890
|
+
declare const Notification: ({ title, description, open, setOpen, icon, }: NotificationProps) => React$1.JSX.Element;
|
|
891
891
|
|
|
892
892
|
interface LinkProps {
|
|
893
893
|
title: string;
|
|
@@ -897,14 +897,14 @@ interface LinkProps {
|
|
|
897
897
|
interface Props$a {
|
|
898
898
|
link: LinkProps;
|
|
899
899
|
}
|
|
900
|
-
declare const SimpleLink: ({ link }: Props$a) =>
|
|
900
|
+
declare const SimpleLink: ({ link }: Props$a) => React$1.JSX.Element;
|
|
901
901
|
|
|
902
902
|
interface KeyInfoItemProps {
|
|
903
903
|
label: string;
|
|
904
904
|
tags?: string[];
|
|
905
905
|
variant: "darkGreen" | "turquoise" | "yellow" | "darkBlue" | "purple" | "blue" | "orange" | null | undefined;
|
|
906
906
|
}
|
|
907
|
-
declare const TagsGroup: ({ label, tags, variant }: KeyInfoItemProps) =>
|
|
907
|
+
declare const TagsGroup: ({ label, tags, variant }: KeyInfoItemProps) => React$1.JSX.Element;
|
|
908
908
|
|
|
909
909
|
interface Props$9 {
|
|
910
910
|
text: string;
|
|
@@ -913,14 +913,14 @@ declare const weightVariants: (props?: ({
|
|
|
913
913
|
variant?: "weight100" | "weight200" | "weight300" | "weight400" | "weight500" | "weight600" | "weight700" | "weight800" | "weight900" | null | undefined;
|
|
914
914
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
915
915
|
type TagType = VariantProps<typeof weightVariants> & ComponentProps<"div">;
|
|
916
|
-
declare const TestWeight: ({ text, variant, className }: Props$9 & TagType) =>
|
|
916
|
+
declare const TestWeight: ({ text, variant, className }: Props$9 & TagType) => React$1.JSX.Element;
|
|
917
917
|
|
|
918
918
|
interface Props$8 {
|
|
919
919
|
tag: string;
|
|
920
920
|
content: React.ReactNode;
|
|
921
921
|
TagClassName?: string;
|
|
922
922
|
}
|
|
923
|
-
declare const ThreeColumn: ({ tag, content, TagClassName }: Props$8) =>
|
|
923
|
+
declare const ThreeColumn: ({ tag, content, TagClassName }: Props$8) => React$1.JSX.Element;
|
|
924
924
|
|
|
925
925
|
declare const LandingTitle: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
926
926
|
declare const LandingTitleAccent: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
@@ -959,7 +959,7 @@ declare const Body12sb: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAtt
|
|
|
959
959
|
declare const Body12m: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">>;
|
|
960
960
|
declare const Body12: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">>;
|
|
961
961
|
|
|
962
|
-
declare const VersionDisplay: () =>
|
|
962
|
+
declare const VersionDisplay: () => React$1.JSX.Element | null;
|
|
963
963
|
|
|
964
964
|
interface DesignHeaderProps {
|
|
965
965
|
branding: {
|
|
@@ -990,7 +990,7 @@ interface DesignHeaderProps {
|
|
|
990
990
|
privacy_policy_url?: string;
|
|
991
991
|
mobile_menu_color?: "light" | "dark";
|
|
992
992
|
}
|
|
993
|
-
declare const DesignHeader: ({ branding, mainMenu, sessionStatus, canLogin, canSignUp: canSignup, isAdmin, hasStickyNavBar, signIn, signOut, isFeatureEnabled, rootUrl, showLanguageSwitcher, termsUrl, privacy_policy_url, mobile_menu_color }: DesignHeaderProps) =>
|
|
993
|
+
declare const DesignHeader: ({ branding, mainMenu, sessionStatus, canLogin, canSignUp: canSignup, isAdmin, hasStickyNavBar, signIn, signOut, isFeatureEnabled, rootUrl, showLanguageSwitcher, termsUrl, privacy_policy_url, mobile_menu_color }: DesignHeaderProps) => React$1.JSX.Element;
|
|
994
994
|
|
|
995
995
|
interface ResourcesQuickFindProps {
|
|
996
996
|
id: string;
|
|
@@ -1015,7 +1015,7 @@ interface ResourcesQuickFindProps {
|
|
|
1015
1015
|
child_list_title?: string;
|
|
1016
1016
|
download_resource: boolean;
|
|
1017
1017
|
}
|
|
1018
|
-
declare const ResourcesQuickFind: (props: ResourcesQuickFindProps) =>
|
|
1018
|
+
declare const ResourcesQuickFind: (props: ResourcesQuickFindProps) => React$1.JSX.Element;
|
|
1019
1019
|
|
|
1020
1020
|
interface FAQProps {
|
|
1021
1021
|
faqs: {
|
|
@@ -1034,7 +1034,7 @@ interface Props$7 {
|
|
|
1034
1034
|
faqs?: FAQProps["faqs"];
|
|
1035
1035
|
backgroundColor?: string;
|
|
1036
1036
|
}
|
|
1037
|
-
declare const FaqComponent: (props: Props$7) =>
|
|
1037
|
+
declare const FaqComponent: (props: Props$7) => React$1.JSX.Element;
|
|
1038
1038
|
|
|
1039
1039
|
interface BasicFooterProps {
|
|
1040
1040
|
privacy_policy_url: string;
|
|
@@ -1071,8 +1071,8 @@ interface FooterProps {
|
|
|
1071
1071
|
isNewTab?: boolean;
|
|
1072
1072
|
}[];
|
|
1073
1073
|
}
|
|
1074
|
-
declare const DesignFooter: (props: FooterProps) =>
|
|
1075
|
-
declare const BasicFooter: (props: BasicFooterProps) =>
|
|
1074
|
+
declare const DesignFooter: (props: FooterProps) => React$1.JSX.Element;
|
|
1075
|
+
declare const BasicFooter: (props: BasicFooterProps) => React$1.JSX.Element;
|
|
1076
1076
|
|
|
1077
1077
|
interface AppItemProps {
|
|
1078
1078
|
item: {
|
|
@@ -1088,7 +1088,7 @@ interface AppItemProps {
|
|
|
1088
1088
|
totalUsers?: number;
|
|
1089
1089
|
};
|
|
1090
1090
|
}
|
|
1091
|
-
declare const AppItem: (props: AppItemProps) =>
|
|
1091
|
+
declare const AppItem: (props: AppItemProps) => React$1.JSX.Element;
|
|
1092
1092
|
|
|
1093
1093
|
interface AppItemListProps {
|
|
1094
1094
|
id: string;
|
|
@@ -1107,7 +1107,7 @@ interface AppItemListProps {
|
|
|
1107
1107
|
totalUsers?: number;
|
|
1108
1108
|
}[];
|
|
1109
1109
|
}
|
|
1110
|
-
declare const AppItemsList: (props: AppItemListProps) =>
|
|
1110
|
+
declare const AppItemsList: (props: AppItemListProps) => React$1.JSX.Element;
|
|
1111
1111
|
|
|
1112
1112
|
interface SummaryCardProps {
|
|
1113
1113
|
name: string;
|
|
@@ -1115,7 +1115,7 @@ interface SummaryCardProps {
|
|
|
1115
1115
|
imageSrc: "document" | "photo" | "group";
|
|
1116
1116
|
iconColor?: string;
|
|
1117
1117
|
}
|
|
1118
|
-
declare const SummaryCard: (props: SummaryCardProps) =>
|
|
1118
|
+
declare const SummaryCard: (props: SummaryCardProps) => React$1.JSX.Element;
|
|
1119
1119
|
|
|
1120
1120
|
interface CarouselGalleryItemProps {
|
|
1121
1121
|
text: string;
|
|
@@ -1125,37 +1125,40 @@ interface CarouselGalleryItemProps {
|
|
|
1125
1125
|
|
|
1126
1126
|
interface Props$6 {
|
|
1127
1127
|
galleryItems: CarouselGalleryItemProps[];
|
|
1128
|
+
orientation?: "horizontal" | "vertical";
|
|
1129
|
+
allowZoom?: boolean;
|
|
1130
|
+
onHover?: (id: string) => void;
|
|
1128
1131
|
saveRotationChanges?: (base64: string | null, id?: any) => void;
|
|
1129
1132
|
}
|
|
1130
|
-
declare const CarouselItemList: (
|
|
1133
|
+
declare const CarouselItemList: (props: Props$6) => React$1.JSX.Element;
|
|
1131
1134
|
|
|
1132
|
-
declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) =>
|
|
1135
|
+
declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) => React$1.JSX.Element;
|
|
1133
1136
|
|
|
1134
1137
|
interface Props$5 {
|
|
1135
1138
|
button: any;
|
|
1136
1139
|
appearance: any;
|
|
1137
1140
|
compact: any;
|
|
1138
1141
|
}
|
|
1139
|
-
declare const ButtonContent: ({ button, appearance, compact }: Props$5) =>
|
|
1142
|
+
declare const ButtonContent: ({ button, appearance, compact }: Props$5) => React$1.JSX.Element;
|
|
1140
1143
|
interface ButtonLinkProps {
|
|
1141
1144
|
button: any;
|
|
1142
1145
|
appearance: any;
|
|
1143
1146
|
compact: any;
|
|
1144
1147
|
}
|
|
1145
|
-
declare const ButtonLink: ({ button, appearance, compact, }: ButtonLinkProps) =>
|
|
1148
|
+
declare const ButtonLink: ({ button, appearance, compact, }: ButtonLinkProps) => React$1.JSX.Element;
|
|
1146
1149
|
|
|
1147
1150
|
interface Props$4 {
|
|
1148
1151
|
message?: string;
|
|
1149
1152
|
}
|
|
1150
|
-
declare const ErrorMessage: (props: Props$4) =>
|
|
1153
|
+
declare const ErrorMessage: (props: Props$4) => React$1.JSX.Element;
|
|
1151
1154
|
|
|
1152
|
-
declare const FeatureDisabled: () =>
|
|
1155
|
+
declare const FeatureDisabled: () => React$1.JSX.Element;
|
|
1153
1156
|
|
|
1154
1157
|
interface RawHtmlEmbedViewProps {
|
|
1155
1158
|
html: string;
|
|
1156
1159
|
className?: string;
|
|
1157
1160
|
}
|
|
1158
|
-
declare const IframeViewer: ({ html, className }: RawHtmlEmbedViewProps) =>
|
|
1161
|
+
declare const IframeViewer: ({ html, className }: RawHtmlEmbedViewProps) => React$1.JSX.Element;
|
|
1159
1162
|
|
|
1160
1163
|
interface ILoaderFullProps {
|
|
1161
1164
|
showInCenter?: boolean;
|
|
@@ -1163,28 +1166,28 @@ interface ILoaderFullProps {
|
|
|
1163
1166
|
}
|
|
1164
1167
|
declare const LoaderFull: React__default.FC<ILoaderFullProps>;
|
|
1165
1168
|
|
|
1166
|
-
declare const LocalLoader: () =>
|
|
1169
|
+
declare const LocalLoader: () => React$1.JSX.Element;
|
|
1167
1170
|
|
|
1168
1171
|
interface MediaEmbedItemProps {
|
|
1169
1172
|
alt: string;
|
|
1170
1173
|
src: string;
|
|
1171
1174
|
}
|
|
1172
|
-
declare const MediaEmbedItem: ({ alt, src }: MediaEmbedItemProps) =>
|
|
1175
|
+
declare const MediaEmbedItem: ({ alt, src }: MediaEmbedItemProps) => React$1.JSX.Element;
|
|
1173
1176
|
|
|
1174
|
-
declare const PermissionDisabled: () =>
|
|
1177
|
+
declare const PermissionDisabled: () => React$1.JSX.Element;
|
|
1175
1178
|
|
|
1176
1179
|
interface Props$3 {
|
|
1177
1180
|
label: string;
|
|
1178
1181
|
value?: string;
|
|
1179
1182
|
colSpan?: number;
|
|
1180
1183
|
}
|
|
1181
|
-
declare const ShowLargeText: (props: Props$3) =>
|
|
1184
|
+
declare const ShowLargeText: (props: Props$3) => React$1.JSX.Element;
|
|
1182
1185
|
|
|
1183
1186
|
interface Props$2 {
|
|
1184
1187
|
label: string;
|
|
1185
1188
|
value?: string;
|
|
1186
1189
|
}
|
|
1187
|
-
declare const ShowShortText: (props: Props$2) =>
|
|
1190
|
+
declare const ShowShortText: (props: Props$2) => React$1.JSX.Element;
|
|
1188
1191
|
|
|
1189
1192
|
type Props$1 = {
|
|
1190
1193
|
src: string;
|
|
@@ -1193,9 +1196,9 @@ type Props$1 = {
|
|
|
1193
1196
|
alt?: string;
|
|
1194
1197
|
className?: string;
|
|
1195
1198
|
};
|
|
1196
|
-
declare const SizedImage: (props: Props$1) =>
|
|
1199
|
+
declare const SizedImage: (props: Props$1) => React$1.JSX.Element;
|
|
1197
1200
|
|
|
1198
|
-
declare const UnderConstruction: () =>
|
|
1201
|
+
declare const UnderConstruction: () => React$1.JSX.Element;
|
|
1199
1202
|
|
|
1200
1203
|
type DisplayItem = {
|
|
1201
1204
|
value: any;
|
|
@@ -1215,13 +1218,24 @@ interface FeaturedItemProps {
|
|
|
1215
1218
|
externalWebsiteLink?: string;
|
|
1216
1219
|
};
|
|
1217
1220
|
}
|
|
1218
|
-
declare const FeaturedItemWithBannerImage: (props: FeaturedItemProps) =>
|
|
1221
|
+
declare const FeaturedItemWithBannerImage: (props: FeaturedItemProps) => React$1.JSX.Element;
|
|
1222
|
+
|
|
1223
|
+
interface NewsLetterProps {
|
|
1224
|
+
MainText?: string | null;
|
|
1225
|
+
MailChimpListId?: string | null;
|
|
1226
|
+
SubText?: string | null;
|
|
1227
|
+
TermsOfUseUrl?: string | null;
|
|
1228
|
+
APIBaseUrl?: string | null;
|
|
1229
|
+
EmailPlaceholder?: string | null;
|
|
1230
|
+
IconColor?: string | null;
|
|
1231
|
+
}
|
|
1232
|
+
declare const NewsLetter: (props: NewsLetterProps) => React$1.JSX.Element;
|
|
1219
1233
|
|
|
1220
1234
|
interface HeroImageProps {
|
|
1221
1235
|
path: string | undefined;
|
|
1222
1236
|
cmsUrl: string;
|
|
1223
1237
|
}
|
|
1224
|
-
declare const HeroImage: ({ path, cmsUrl }: HeroImageProps) =>
|
|
1238
|
+
declare const HeroImage: ({ path, cmsUrl }: HeroImageProps) => React$1.JSX.Element;
|
|
1225
1239
|
|
|
1226
1240
|
interface HeroProps {
|
|
1227
1241
|
path: string | undefined;
|
|
@@ -1231,7 +1245,7 @@ interface HeroProps {
|
|
|
1231
1245
|
google_marketplace_link?: string;
|
|
1232
1246
|
app_store_link?: string;
|
|
1233
1247
|
}
|
|
1234
|
-
declare const HeroImageRightWithAppButtons: (props: HeroProps) =>
|
|
1248
|
+
declare const HeroImageRightWithAppButtons: (props: HeroProps) => React$1.JSX.Element;
|
|
1235
1249
|
|
|
1236
1250
|
interface IPanelHorizontalProps {
|
|
1237
1251
|
children: React.ReactNode;
|
|
@@ -1253,14 +1267,14 @@ interface Props {
|
|
|
1253
1267
|
bottomPadding?: string;
|
|
1254
1268
|
noContainer?: boolean;
|
|
1255
1269
|
}
|
|
1256
|
-
declare const H2BodyButton: (props: Props) =>
|
|
1270
|
+
declare const H2BodyButton: (props: Props) => React$1.JSX.Element;
|
|
1257
1271
|
|
|
1258
1272
|
interface H1BodyButtonProps {
|
|
1259
1273
|
title: string;
|
|
1260
1274
|
textBody?: string;
|
|
1261
1275
|
button?: LinkButtonItem;
|
|
1262
1276
|
}
|
|
1263
|
-
declare const H1BodyButton: (props: H1BodyButtonProps) =>
|
|
1277
|
+
declare const H1BodyButton: (props: H1BodyButtonProps) => React$1.JSX.Element;
|
|
1264
1278
|
interface H1BodyButtonWithAppProps {
|
|
1265
1279
|
title: string;
|
|
1266
1280
|
textBody?: string;
|
|
@@ -1269,6 +1283,6 @@ interface H1BodyButtonWithAppProps {
|
|
|
1269
1283
|
google_marketplace_link?: string;
|
|
1270
1284
|
apple_store_link?: string;
|
|
1271
1285
|
}
|
|
1272
|
-
declare const H1BodyButtonWithApp: (props: H1BodyButtonWithAppProps) =>
|
|
1286
|
+
declare const H1BodyButtonWithApp: (props: H1BodyButtonWithAppProps) => React$1.JSX.Element;
|
|
1273
1287
|
|
|
1274
|
-
export { AboutInfoItem, Accordion, AccordionContent, AccordionItem, AccordionTrigger, AccountIcon, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppItem, AppItemsList, AspectRatio, AtomIcon, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, BasicFooter, BigLandingTitle, BigLandingTitleAccent, Body12, Body12m, Body12sb, Body14, Body14m, Body14sb, Body15, Body15it, Body15m, Body15sb, Body16, Body16it, Body16m, Body16sb, Body18, Body18m, Body18sb, Body20, Body20m, Body20sb, BookTextIcon, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonContent, ButtonLink, type ButtonProps$1 as ButtonProps, Calendar, CalendarIcon, type CalendarProps, CameraIcon, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselItemList, CarouselNext, CarouselPrevious, ChartLineDotsIcon, ChatsIcons, Checkbox$1 as Checkbox, ClipboardIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Cookies, CountryItem, CpuIcon, CustomImage, CustomTable, DeleteButton, DesignButton, Checkbox as DesignCheckbox, DesignFooter, DesignHeader, type DesignHeaderProps, DesignInput, type DesignInputProps, DesignRadioGroup, DesignRadioGroupItem, DesignResultTag, DesignSelect, DesignSelectContent, DesignSelectGroup, DesignSelectItem, DesignSelectLabel, DesignSelectSeparator, DesignSelectTrigger, DesignSelectValue, DesignSimpleTag, DesignSwitch, DesktopCodeIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type DisplayItem, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ErrorMessage, FaqComponent, FarmerClusterPin, FarmerClustersIcon, FeatureDisabled, FeaturedItemWithBannerImage, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullPageLoader, GlobeIcon, GridDividersIcon, H1AccentDesign, H1BodyButton, type H1BodyButtonProps, H1BodyButtonWithApp, type H1BodyButtonWithAppProps, H1Design, H2AccentDesign, H2BodyButton, H2Design, H3Design, H4Design, H5Design, H6Design, H7Design, H8Design, H9Design, HardDriveIcon, HeadphonesIcon, HeroImage, HeroImageRightWithAppButtons, Hexagon, HoverCard, HoverCardContent, HoverCardTrigger, type IPanelHorizontalProps, Icon, IconPaths, IframeViewer, ImageIcon, InfoBox, Input, type InputProps, KeyInfoItem, Label, LandingTitle, LandingTitleAccent, LastUpdatedTag, LayerGroupIcon, LegendIcon, type LinkButtonItem, Loader, LoaderFull, LocalLoader, LocationIcon, MapIcon, MapLayersIcon, MapLegendIcon, MediaEmbedItem, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Microscope, MicroscopeIcon, MinusIcon, MultiSelect, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoResults, Notification, ObservationPin, OldButton, OldCustomInput, OverlayIcon, Pagination, PanelHorizontal, PermissionDisabled, PlusIcon, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PrimaryButton, Progress, RadioGroup, RadioGroupItem, ResourceTag, ResourcesIcon, ResourcesQuickFind, ScrollArea, ScrollBar, Search, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, ShowLargeText, ShowShortText, SimpleLink, SizedImage, Skeleton, Slider, StopWatchCheckIcon, SummaryCard, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, type TableViewProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagList, TagsGroup, TestWeight, TextArea, Textarea, type TextareaProps, ThemeSwitcher, ThreeColumn, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UmamiAnalytics, UnderConstruction, UserGroupIcon, UsersGroup, VersionDisplay, VideoPlayIcon, XIcon, badgeVariants, buttonVariants, cn, designButtonVariants, getPages, navigationMenuTriggerStyle, reducer, toast, toggleVariants, useDebounce, useFormField, useToast };
|
|
1288
|
+
export { AboutInfoItem, Accordion, AccordionContent, AccordionItem, AccordionTrigger, AccountIcon, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppItem, AppItemsList, AspectRatio, AtomIcon, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, BasicFooter, BigLandingTitle, BigLandingTitleAccent, Body12, Body12m, Body12sb, Body14, Body14m, Body14sb, Body15, Body15it, Body15m, Body15sb, Body16, Body16it, Body16m, Body16sb, Body18, Body18m, Body18sb, Body20, Body20m, Body20sb, BookTextIcon, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonContent, ButtonLink, type ButtonProps$1 as ButtonProps, Calendar, CalendarIcon, type CalendarProps, CameraIcon, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselItemList, CarouselNext, CarouselPrevious, ChartLineDotsIcon, ChatsIcons, Checkbox$1 as Checkbox, ClipboardIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Cookies, CountryItem, CpuIcon, CustomImage, CustomTable, DeleteButton, DesignButton, Checkbox as DesignCheckbox, DesignFooter, DesignHeader, type DesignHeaderProps, DesignInput, type DesignInputProps, DesignRadioGroup, DesignRadioGroupItem, DesignResultTag, DesignSelect, DesignSelectContent, DesignSelectGroup, DesignSelectItem, DesignSelectLabel, DesignSelectSeparator, DesignSelectTrigger, DesignSelectValue, DesignSimpleTag, DesignSwitch, DesktopCodeIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type DisplayItem, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ErrorMessage, FaqComponent, FarmerClusterPin, FarmerClustersIcon, FeatureDisabled, FeaturedItemWithBannerImage, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullPageLoader, GlobeIcon, GridDividersIcon, H1AccentDesign, H1BodyButton, type H1BodyButtonProps, H1BodyButtonWithApp, type H1BodyButtonWithAppProps, H1Design, H2AccentDesign, H2BodyButton, H2Design, H3Design, H4Design, H5Design, H6Design, H7Design, H8Design, H9Design, HardDriveIcon, HeadphonesIcon, HeroImage, HeroImageRightWithAppButtons, Hexagon, HoverCard, HoverCardContent, HoverCardTrigger, type IPanelHorizontalProps, Icon, IconPaths, IframeViewer, ImageIcon, InfoBox, Input, type InputProps, KeyInfoItem, Label, LandingTitle, LandingTitleAccent, LastUpdatedTag, LayerGroupIcon, LegendIcon, type LinkButtonItem, Loader, LoaderFull, LocalLoader, LocationIcon, MapIcon, MapLayersIcon, MapLegendIcon, MediaEmbedItem, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Microscope, MicroscopeIcon, MinusIcon, MultiSelect, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NewsLetter, NoResults, Notification, ObservationPin, OldButton, OldCustomInput, OverlayIcon, Pagination, PanelHorizontal, PermissionDisabled, PlusIcon, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PrimaryButton, Progress, RadioGroup, RadioGroupItem, ResourceTag, ResourcesIcon, ResourcesQuickFind, ScrollArea, ScrollBar, Search, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, ShowLargeText, ShowShortText, SimpleLink, SizedImage, Skeleton, Slider, StopWatchCheckIcon, SummaryCard, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, type TableViewProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagList, TagsGroup, TestWeight, TextArea, Textarea, type TextareaProps, ThemeSwitcher, ThreeColumn, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UmamiAnalytics, UnderConstruction, UserGroupIcon, UsersGroup, VersionDisplay, VideoPlayIcon, XIcon, badgeVariants, buttonVariants, cn, designButtonVariants, getPages, navigationMenuTriggerStyle, reducer, toast, toggleVariants, useDebounce, useFormField, useToast };
|