@geowiki/design-system 0.16.9-dev.20 → 0.16.9-dev.22
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 +39 -29
- package/dist/index.d.ts +39 -29
- package/dist/index.js +338 -172
- package/dist/index.mjs +333 -168
- package/dist/styles.css +1 -1
- package/package.json +21 -21
package/dist/index.d.mts
CHANGED
|
@@ -363,11 +363,11 @@ interface TagProps {
|
|
|
363
363
|
}
|
|
364
364
|
declare const Tag: ({ tag, className }: TagProps) => react_jsx_runtime.JSX.Element;
|
|
365
365
|
|
|
366
|
-
interface Props$
|
|
366
|
+
interface Props$k {
|
|
367
367
|
tags?: string[];
|
|
368
368
|
tagColor?: string;
|
|
369
369
|
}
|
|
370
|
-
declare const TagList: (props: Props$
|
|
370
|
+
declare const TagList: (props: Props$k) => react_jsx_runtime.JSX.Element;
|
|
371
371
|
|
|
372
372
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
373
373
|
}
|
|
@@ -613,14 +613,14 @@ interface FullPageLoaderProps {
|
|
|
613
613
|
}
|
|
614
614
|
declare const FullPageLoader: ({ show }: FullPageLoaderProps) => react_jsx_runtime.JSX.Element | null;
|
|
615
615
|
|
|
616
|
-
interface Props$
|
|
616
|
+
interface Props$j {
|
|
617
617
|
src: string;
|
|
618
618
|
className?: string;
|
|
619
619
|
alternativeText?: string;
|
|
620
620
|
width?: number | string;
|
|
621
621
|
height?: number | string;
|
|
622
622
|
}
|
|
623
|
-
declare const CustomImage: (props: Props$
|
|
623
|
+
declare const CustomImage: (props: Props$j) => react_jsx_runtime.JSX.Element;
|
|
624
624
|
|
|
625
625
|
declare const Loader: () => react_jsx_runtime.JSX.Element;
|
|
626
626
|
|
|
@@ -640,7 +640,7 @@ declare const ThemeSwitcher: () => react_jsx_runtime.JSX.Element;
|
|
|
640
640
|
|
|
641
641
|
declare const useDebounce: <V extends unknown>(value: V, delay?: number) => V;
|
|
642
642
|
|
|
643
|
-
interface Props$
|
|
643
|
+
interface Props$i {
|
|
644
644
|
register?: any;
|
|
645
645
|
value?: any;
|
|
646
646
|
defaultValue?: any;
|
|
@@ -656,9 +656,9 @@ interface Props$h {
|
|
|
656
656
|
noDisplayTextAsLabel?: boolean;
|
|
657
657
|
cssClass?: string;
|
|
658
658
|
}
|
|
659
|
-
declare const OldCustomInput: (props: Props$
|
|
659
|
+
declare const OldCustomInput: (props: Props$i) => react_jsx_runtime.JSX.Element;
|
|
660
660
|
|
|
661
|
-
type Props$
|
|
661
|
+
type Props$h = {
|
|
662
662
|
name: string;
|
|
663
663
|
displayText: string;
|
|
664
664
|
register: any;
|
|
@@ -674,9 +674,9 @@ type Props$g = {
|
|
|
674
674
|
Placeholder?: string;
|
|
675
675
|
showLabel?: boolean;
|
|
676
676
|
};
|
|
677
|
-
declare const MultiSelect: (props: Props$
|
|
677
|
+
declare const MultiSelect: (props: Props$h) => react_jsx_runtime.JSX.Element;
|
|
678
678
|
|
|
679
|
-
interface Props$
|
|
679
|
+
interface Props$g {
|
|
680
680
|
register: any;
|
|
681
681
|
value: any;
|
|
682
682
|
defaultValue?: any;
|
|
@@ -690,7 +690,7 @@ interface Props$f {
|
|
|
690
690
|
isLabelBold?: boolean;
|
|
691
691
|
isPlaceholderItalic?: boolean;
|
|
692
692
|
}
|
|
693
|
-
declare const TextArea: (props: Props$
|
|
693
|
+
declare const TextArea: (props: Props$g) => react_jsx_runtime.JSX.Element;
|
|
694
694
|
|
|
695
695
|
interface UmamiAnalyticsProps {
|
|
696
696
|
scriptUrl?: string;
|
|
@@ -706,18 +706,18 @@ interface UmamiAnalyticsProps {
|
|
|
706
706
|
*/
|
|
707
707
|
declare const UmamiAnalytics: React__default.FC<UmamiAnalyticsProps>;
|
|
708
708
|
|
|
709
|
-
type Props$
|
|
709
|
+
type Props$f = {
|
|
710
710
|
onClick: any;
|
|
711
711
|
};
|
|
712
|
-
declare const DeleteButton: (props: Props$
|
|
712
|
+
declare const DeleteButton: (props: Props$f) => react_jsx_runtime.JSX.Element;
|
|
713
713
|
|
|
714
|
-
type Props$
|
|
714
|
+
type Props$e = {
|
|
715
715
|
onClick?: () => void;
|
|
716
716
|
label: string;
|
|
717
717
|
type: "button" | "submit";
|
|
718
718
|
style: "primary" | "secondary" | "danger";
|
|
719
719
|
};
|
|
720
|
-
declare const PrimaryButton: (props: Props$
|
|
720
|
+
declare const PrimaryButton: (props: Props$e) => react_jsx_runtime.JSX.Element;
|
|
721
721
|
|
|
722
722
|
interface AboutInfoItemProps {
|
|
723
723
|
title: string;
|
|
@@ -781,10 +781,10 @@ interface CookiesProps {
|
|
|
781
781
|
}
|
|
782
782
|
declare const Cookies: ({ handleAccept, handleDecline }: CookiesProps) => react_jsx_runtime.JSX.Element | null;
|
|
783
783
|
|
|
784
|
-
interface Props$
|
|
784
|
+
interface Props$d {
|
|
785
785
|
country: string;
|
|
786
786
|
}
|
|
787
|
-
declare const CountryItem: ({ country }: Props$
|
|
787
|
+
declare const CountryItem: ({ country }: Props$d) => react_jsx_runtime.JSX.Element;
|
|
788
788
|
|
|
789
789
|
interface InfoBoxProps {
|
|
790
790
|
title: string;
|
|
@@ -805,10 +805,10 @@ interface KeyInfoItemProps$1 {
|
|
|
805
805
|
}
|
|
806
806
|
declare const KeyInfoItem: ({ label, value }: KeyInfoItemProps$1) => react_jsx_runtime.JSX.Element;
|
|
807
807
|
|
|
808
|
-
interface Props$
|
|
808
|
+
interface Props$c {
|
|
809
809
|
date: string | number | Date;
|
|
810
810
|
}
|
|
811
|
-
declare const LastUpdatedTag: ({ date }: Props$
|
|
811
|
+
declare const LastUpdatedTag: ({ date }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
812
812
|
|
|
813
813
|
declare const NoResults: () => react_jsx_runtime.JSX.Element;
|
|
814
814
|
|
|
@@ -857,14 +857,14 @@ declare const DesignSelectSeparator: {
|
|
|
857
857
|
displayName: string | undefined;
|
|
858
858
|
};
|
|
859
859
|
|
|
860
|
-
interface Props$
|
|
860
|
+
interface Props$b {
|
|
861
861
|
tag: string;
|
|
862
862
|
}
|
|
863
863
|
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$
|
|
867
|
+
declare const DesignSimpleTag: ({ tag, variant, className, }: Props$b & TagType$1) => react_jsx_runtime.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
|
|
|
@@ -894,10 +894,10 @@ interface LinkProps {
|
|
|
894
894
|
href: string;
|
|
895
895
|
isNewTab: boolean;
|
|
896
896
|
}
|
|
897
|
-
interface Props$
|
|
897
|
+
interface Props$a {
|
|
898
898
|
link: LinkProps;
|
|
899
899
|
}
|
|
900
|
-
declare const SimpleLink: ({ link }: Props$
|
|
900
|
+
declare const SimpleLink: ({ link }: Props$a) => react_jsx_runtime.JSX.Element;
|
|
901
901
|
|
|
902
902
|
interface KeyInfoItemProps {
|
|
903
903
|
label: string;
|
|
@@ -906,21 +906,21 @@ interface KeyInfoItemProps {
|
|
|
906
906
|
}
|
|
907
907
|
declare const TagsGroup: ({ label, tags, variant }: KeyInfoItemProps) => react_jsx_runtime.JSX.Element;
|
|
908
908
|
|
|
909
|
-
interface Props$
|
|
909
|
+
interface Props$9 {
|
|
910
910
|
text: string;
|
|
911
911
|
}
|
|
912
912
|
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$
|
|
916
|
+
declare const TestWeight: ({ text, variant, className }: Props$9 & TagType) => react_jsx_runtime.JSX.Element;
|
|
917
917
|
|
|
918
|
-
interface Props$
|
|
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$
|
|
923
|
+
declare const ThreeColumn: ({ tag, content, TagClassName }: Props$8) => react_jsx_runtime.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">>;
|
|
@@ -1026,7 +1026,7 @@ interface FAQProps {
|
|
|
1026
1026
|
backgroundColor?: string;
|
|
1027
1027
|
}
|
|
1028
1028
|
|
|
1029
|
-
interface Props$
|
|
1029
|
+
interface Props$7 {
|
|
1030
1030
|
id: string;
|
|
1031
1031
|
title: string;
|
|
1032
1032
|
subtitle: string;
|
|
@@ -1034,7 +1034,7 @@ interface Props$6 {
|
|
|
1034
1034
|
faqs?: FAQProps["faqs"];
|
|
1035
1035
|
backgroundColor?: string;
|
|
1036
1036
|
}
|
|
1037
|
-
declare const FaqComponent: (props: Props$
|
|
1037
|
+
declare const FaqComponent: (props: Props$7) => react_jsx_runtime.JSX.Element;
|
|
1038
1038
|
|
|
1039
1039
|
interface BasicFooterProps {
|
|
1040
1040
|
version: string;
|
|
@@ -1108,6 +1108,16 @@ interface AppItemListProps {
|
|
|
1108
1108
|
}
|
|
1109
1109
|
declare const AppItemsList: (props: AppItemListProps) => react_jsx_runtime.JSX.Element;
|
|
1110
1110
|
|
|
1111
|
+
interface CarouselGalleryItemProps {
|
|
1112
|
+
text: string;
|
|
1113
|
+
url: string;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
interface Props$6 {
|
|
1117
|
+
galleryItems: CarouselGalleryItemProps[];
|
|
1118
|
+
}
|
|
1119
|
+
declare const CarouselItemList: ({ galleryItems }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1120
|
+
|
|
1111
1121
|
declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) => react_jsx_runtime.JSX.Element;
|
|
1112
1122
|
|
|
1113
1123
|
interface Props$5 {
|
|
@@ -1250,4 +1260,4 @@ interface H1BodyButtonWithAppProps {
|
|
|
1250
1260
|
}
|
|
1251
1261
|
declare const H1BodyButtonWithApp: (props: H1BodyButtonWithAppProps) => react_jsx_runtime.JSX.Element;
|
|
1252
1262
|
|
|
1253
|
-
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, 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, 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 };
|
|
1263
|
+
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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -363,11 +363,11 @@ interface TagProps {
|
|
|
363
363
|
}
|
|
364
364
|
declare const Tag: ({ tag, className }: TagProps) => react_jsx_runtime.JSX.Element;
|
|
365
365
|
|
|
366
|
-
interface Props$
|
|
366
|
+
interface Props$k {
|
|
367
367
|
tags?: string[];
|
|
368
368
|
tagColor?: string;
|
|
369
369
|
}
|
|
370
|
-
declare const TagList: (props: Props$
|
|
370
|
+
declare const TagList: (props: Props$k) => react_jsx_runtime.JSX.Element;
|
|
371
371
|
|
|
372
372
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
373
373
|
}
|
|
@@ -613,14 +613,14 @@ interface FullPageLoaderProps {
|
|
|
613
613
|
}
|
|
614
614
|
declare const FullPageLoader: ({ show }: FullPageLoaderProps) => react_jsx_runtime.JSX.Element | null;
|
|
615
615
|
|
|
616
|
-
interface Props$
|
|
616
|
+
interface Props$j {
|
|
617
617
|
src: string;
|
|
618
618
|
className?: string;
|
|
619
619
|
alternativeText?: string;
|
|
620
620
|
width?: number | string;
|
|
621
621
|
height?: number | string;
|
|
622
622
|
}
|
|
623
|
-
declare const CustomImage: (props: Props$
|
|
623
|
+
declare const CustomImage: (props: Props$j) => react_jsx_runtime.JSX.Element;
|
|
624
624
|
|
|
625
625
|
declare const Loader: () => react_jsx_runtime.JSX.Element;
|
|
626
626
|
|
|
@@ -640,7 +640,7 @@ declare const ThemeSwitcher: () => react_jsx_runtime.JSX.Element;
|
|
|
640
640
|
|
|
641
641
|
declare const useDebounce: <V extends unknown>(value: V, delay?: number) => V;
|
|
642
642
|
|
|
643
|
-
interface Props$
|
|
643
|
+
interface Props$i {
|
|
644
644
|
register?: any;
|
|
645
645
|
value?: any;
|
|
646
646
|
defaultValue?: any;
|
|
@@ -656,9 +656,9 @@ interface Props$h {
|
|
|
656
656
|
noDisplayTextAsLabel?: boolean;
|
|
657
657
|
cssClass?: string;
|
|
658
658
|
}
|
|
659
|
-
declare const OldCustomInput: (props: Props$
|
|
659
|
+
declare const OldCustomInput: (props: Props$i) => react_jsx_runtime.JSX.Element;
|
|
660
660
|
|
|
661
|
-
type Props$
|
|
661
|
+
type Props$h = {
|
|
662
662
|
name: string;
|
|
663
663
|
displayText: string;
|
|
664
664
|
register: any;
|
|
@@ -674,9 +674,9 @@ type Props$g = {
|
|
|
674
674
|
Placeholder?: string;
|
|
675
675
|
showLabel?: boolean;
|
|
676
676
|
};
|
|
677
|
-
declare const MultiSelect: (props: Props$
|
|
677
|
+
declare const MultiSelect: (props: Props$h) => react_jsx_runtime.JSX.Element;
|
|
678
678
|
|
|
679
|
-
interface Props$
|
|
679
|
+
interface Props$g {
|
|
680
680
|
register: any;
|
|
681
681
|
value: any;
|
|
682
682
|
defaultValue?: any;
|
|
@@ -690,7 +690,7 @@ interface Props$f {
|
|
|
690
690
|
isLabelBold?: boolean;
|
|
691
691
|
isPlaceholderItalic?: boolean;
|
|
692
692
|
}
|
|
693
|
-
declare const TextArea: (props: Props$
|
|
693
|
+
declare const TextArea: (props: Props$g) => react_jsx_runtime.JSX.Element;
|
|
694
694
|
|
|
695
695
|
interface UmamiAnalyticsProps {
|
|
696
696
|
scriptUrl?: string;
|
|
@@ -706,18 +706,18 @@ interface UmamiAnalyticsProps {
|
|
|
706
706
|
*/
|
|
707
707
|
declare const UmamiAnalytics: React__default.FC<UmamiAnalyticsProps>;
|
|
708
708
|
|
|
709
|
-
type Props$
|
|
709
|
+
type Props$f = {
|
|
710
710
|
onClick: any;
|
|
711
711
|
};
|
|
712
|
-
declare const DeleteButton: (props: Props$
|
|
712
|
+
declare const DeleteButton: (props: Props$f) => react_jsx_runtime.JSX.Element;
|
|
713
713
|
|
|
714
|
-
type Props$
|
|
714
|
+
type Props$e = {
|
|
715
715
|
onClick?: () => void;
|
|
716
716
|
label: string;
|
|
717
717
|
type: "button" | "submit";
|
|
718
718
|
style: "primary" | "secondary" | "danger";
|
|
719
719
|
};
|
|
720
|
-
declare const PrimaryButton: (props: Props$
|
|
720
|
+
declare const PrimaryButton: (props: Props$e) => react_jsx_runtime.JSX.Element;
|
|
721
721
|
|
|
722
722
|
interface AboutInfoItemProps {
|
|
723
723
|
title: string;
|
|
@@ -781,10 +781,10 @@ interface CookiesProps {
|
|
|
781
781
|
}
|
|
782
782
|
declare const Cookies: ({ handleAccept, handleDecline }: CookiesProps) => react_jsx_runtime.JSX.Element | null;
|
|
783
783
|
|
|
784
|
-
interface Props$
|
|
784
|
+
interface Props$d {
|
|
785
785
|
country: string;
|
|
786
786
|
}
|
|
787
|
-
declare const CountryItem: ({ country }: Props$
|
|
787
|
+
declare const CountryItem: ({ country }: Props$d) => react_jsx_runtime.JSX.Element;
|
|
788
788
|
|
|
789
789
|
interface InfoBoxProps {
|
|
790
790
|
title: string;
|
|
@@ -805,10 +805,10 @@ interface KeyInfoItemProps$1 {
|
|
|
805
805
|
}
|
|
806
806
|
declare const KeyInfoItem: ({ label, value }: KeyInfoItemProps$1) => react_jsx_runtime.JSX.Element;
|
|
807
807
|
|
|
808
|
-
interface Props$
|
|
808
|
+
interface Props$c {
|
|
809
809
|
date: string | number | Date;
|
|
810
810
|
}
|
|
811
|
-
declare const LastUpdatedTag: ({ date }: Props$
|
|
811
|
+
declare const LastUpdatedTag: ({ date }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
812
812
|
|
|
813
813
|
declare const NoResults: () => react_jsx_runtime.JSX.Element;
|
|
814
814
|
|
|
@@ -857,14 +857,14 @@ declare const DesignSelectSeparator: {
|
|
|
857
857
|
displayName: string | undefined;
|
|
858
858
|
};
|
|
859
859
|
|
|
860
|
-
interface Props$
|
|
860
|
+
interface Props$b {
|
|
861
861
|
tag: string;
|
|
862
862
|
}
|
|
863
863
|
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$
|
|
867
|
+
declare const DesignSimpleTag: ({ tag, variant, className, }: Props$b & TagType$1) => react_jsx_runtime.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
|
|
|
@@ -894,10 +894,10 @@ interface LinkProps {
|
|
|
894
894
|
href: string;
|
|
895
895
|
isNewTab: boolean;
|
|
896
896
|
}
|
|
897
|
-
interface Props$
|
|
897
|
+
interface Props$a {
|
|
898
898
|
link: LinkProps;
|
|
899
899
|
}
|
|
900
|
-
declare const SimpleLink: ({ link }: Props$
|
|
900
|
+
declare const SimpleLink: ({ link }: Props$a) => react_jsx_runtime.JSX.Element;
|
|
901
901
|
|
|
902
902
|
interface KeyInfoItemProps {
|
|
903
903
|
label: string;
|
|
@@ -906,21 +906,21 @@ interface KeyInfoItemProps {
|
|
|
906
906
|
}
|
|
907
907
|
declare const TagsGroup: ({ label, tags, variant }: KeyInfoItemProps) => react_jsx_runtime.JSX.Element;
|
|
908
908
|
|
|
909
|
-
interface Props$
|
|
909
|
+
interface Props$9 {
|
|
910
910
|
text: string;
|
|
911
911
|
}
|
|
912
912
|
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$
|
|
916
|
+
declare const TestWeight: ({ text, variant, className }: Props$9 & TagType) => react_jsx_runtime.JSX.Element;
|
|
917
917
|
|
|
918
|
-
interface Props$
|
|
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$
|
|
923
|
+
declare const ThreeColumn: ({ tag, content, TagClassName }: Props$8) => react_jsx_runtime.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">>;
|
|
@@ -1026,7 +1026,7 @@ interface FAQProps {
|
|
|
1026
1026
|
backgroundColor?: string;
|
|
1027
1027
|
}
|
|
1028
1028
|
|
|
1029
|
-
interface Props$
|
|
1029
|
+
interface Props$7 {
|
|
1030
1030
|
id: string;
|
|
1031
1031
|
title: string;
|
|
1032
1032
|
subtitle: string;
|
|
@@ -1034,7 +1034,7 @@ interface Props$6 {
|
|
|
1034
1034
|
faqs?: FAQProps["faqs"];
|
|
1035
1035
|
backgroundColor?: string;
|
|
1036
1036
|
}
|
|
1037
|
-
declare const FaqComponent: (props: Props$
|
|
1037
|
+
declare const FaqComponent: (props: Props$7) => react_jsx_runtime.JSX.Element;
|
|
1038
1038
|
|
|
1039
1039
|
interface BasicFooterProps {
|
|
1040
1040
|
version: string;
|
|
@@ -1108,6 +1108,16 @@ interface AppItemListProps {
|
|
|
1108
1108
|
}
|
|
1109
1109
|
declare const AppItemsList: (props: AppItemListProps) => react_jsx_runtime.JSX.Element;
|
|
1110
1110
|
|
|
1111
|
+
interface CarouselGalleryItemProps {
|
|
1112
|
+
text: string;
|
|
1113
|
+
url: string;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
interface Props$6 {
|
|
1117
|
+
galleryItems: CarouselGalleryItemProps[];
|
|
1118
|
+
}
|
|
1119
|
+
declare const CarouselItemList: ({ galleryItems }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1120
|
+
|
|
1111
1121
|
declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) => react_jsx_runtime.JSX.Element;
|
|
1112
1122
|
|
|
1113
1123
|
interface Props$5 {
|
|
@@ -1250,4 +1260,4 @@ interface H1BodyButtonWithAppProps {
|
|
|
1250
1260
|
}
|
|
1251
1261
|
declare const H1BodyButtonWithApp: (props: H1BodyButtonWithAppProps) => react_jsx_runtime.JSX.Element;
|
|
1252
1262
|
|
|
1253
|
-
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, 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, 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 };
|
|
1263
|
+
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, 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 };
|