@geowiki/design-system 0.16.9-dev.9 → 0.16.10-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -116,9 +116,11 @@ declare const Command: React$1.ForwardRefExoticComponent<Omit<{
116
116
  label?: string | undefined;
117
117
  shouldFilter?: boolean | undefined;
118
118
  filter?: ((value: string, search: string) => number) | undefined;
119
+ defaultValue?: string | undefined;
119
120
  value?: string | undefined;
120
121
  onValueChange?: ((value: string) => void) | undefined;
121
122
  loop?: boolean | undefined;
123
+ vimBindings?: boolean | undefined;
122
124
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
123
125
  interface CommandDialogProps extends DialogProps {
124
126
  }
@@ -135,9 +137,10 @@ declare const CommandEmpty: React$1.ForwardRefExoticComponent<Omit<{
135
137
  } & React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
136
138
  declare const CommandGroup: React$1.ForwardRefExoticComponent<Omit<{
137
139
  children?: React$1.ReactNode;
138
- } & Omit<React$1.HTMLAttributes<HTMLDivElement>, "value" | "heading"> & {
140
+ } & Omit<React$1.HTMLAttributes<HTMLDivElement>, "heading" | "value"> & {
139
141
  heading?: React$1.ReactNode;
140
142
  value?: string | undefined;
143
+ forceMount?: boolean | undefined;
141
144
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
142
145
  declare const CommandSeparator: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement> & {
143
146
  alwaysRender?: boolean | undefined;
@@ -148,6 +151,7 @@ declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
148
151
  disabled?: boolean | undefined;
149
152
  onSelect?: ((value: string) => void) | undefined;
150
153
  value?: string | undefined;
154
+ forceMount?: boolean | undefined;
151
155
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
152
156
  declare const CommandShortcut: {
153
157
  ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
@@ -221,7 +225,7 @@ declare const DropdownMenuShortcut: {
221
225
  displayName: string;
222
226
  };
223
227
 
224
- declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues extends FieldValues | undefined = undefined>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
228
+ declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
225
229
  declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
226
230
  declare const useFormField: () => {
227
231
  invalid: boolean;
@@ -359,11 +363,11 @@ interface TagProps {
359
363
  }
360
364
  declare const Tag: ({ tag, className }: TagProps) => react_jsx_runtime.JSX.Element;
361
365
 
362
- interface Props$j {
366
+ interface Props$k {
363
367
  tags?: string[];
364
368
  tagColor?: string;
365
369
  }
366
- declare const TagList: (props: Props$j) => react_jsx_runtime.JSX.Element;
370
+ declare const TagList: (props: Props$k) => react_jsx_runtime.JSX.Element;
367
371
 
368
372
  interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
369
373
  }
@@ -609,14 +613,14 @@ interface FullPageLoaderProps {
609
613
  }
610
614
  declare const FullPageLoader: ({ show }: FullPageLoaderProps) => react_jsx_runtime.JSX.Element | null;
611
615
 
612
- interface Props$i {
616
+ interface Props$j {
613
617
  src: string;
614
618
  className?: string;
615
619
  alternativeText?: string;
616
620
  width?: number | string;
617
621
  height?: number | string;
618
622
  }
619
- declare const CustomImage: (props: Props$i) => react_jsx_runtime.JSX.Element;
623
+ declare const CustomImage: (props: Props$j) => react_jsx_runtime.JSX.Element;
620
624
 
621
625
  declare const Loader: () => react_jsx_runtime.JSX.Element;
622
626
 
@@ -636,7 +640,7 @@ declare const ThemeSwitcher: () => react_jsx_runtime.JSX.Element;
636
640
 
637
641
  declare const useDebounce: <V extends unknown>(value: V, delay?: number) => V;
638
642
 
639
- interface Props$h {
643
+ interface Props$i {
640
644
  register?: any;
641
645
  value?: any;
642
646
  defaultValue?: any;
@@ -652,9 +656,9 @@ interface Props$h {
652
656
  noDisplayTextAsLabel?: boolean;
653
657
  cssClass?: string;
654
658
  }
655
- declare const OldCustomInput: (props: Props$h) => react_jsx_runtime.JSX.Element;
659
+ declare const OldCustomInput: (props: Props$i) => react_jsx_runtime.JSX.Element;
656
660
 
657
- type Props$g = {
661
+ type Props$h = {
658
662
  name: string;
659
663
  displayText: string;
660
664
  register: any;
@@ -670,9 +674,9 @@ type Props$g = {
670
674
  Placeholder?: string;
671
675
  showLabel?: boolean;
672
676
  };
673
- declare const MultiSelect: (props: Props$g) => react_jsx_runtime.JSX.Element;
677
+ declare const MultiSelect: (props: Props$h) => react_jsx_runtime.JSX.Element;
674
678
 
675
- interface Props$f {
679
+ interface Props$g {
676
680
  register: any;
677
681
  value: any;
678
682
  defaultValue?: any;
@@ -686,7 +690,7 @@ interface Props$f {
686
690
  isLabelBold?: boolean;
687
691
  isPlaceholderItalic?: boolean;
688
692
  }
689
- declare const TextArea: (props: Props$f) => react_jsx_runtime.JSX.Element;
693
+ declare const TextArea: (props: Props$g) => react_jsx_runtime.JSX.Element;
690
694
 
691
695
  interface UmamiAnalyticsProps {
692
696
  scriptUrl?: string;
@@ -702,18 +706,18 @@ interface UmamiAnalyticsProps {
702
706
  */
703
707
  declare const UmamiAnalytics: React__default.FC<UmamiAnalyticsProps>;
704
708
 
705
- type Props$e = {
709
+ type Props$f = {
706
710
  onClick: any;
707
711
  };
708
- declare const DeleteButton: (props: Props$e) => react_jsx_runtime.JSX.Element;
712
+ declare const DeleteButton: (props: Props$f) => react_jsx_runtime.JSX.Element;
709
713
 
710
- type Props$d = {
714
+ type Props$e = {
711
715
  onClick?: () => void;
712
716
  label: string;
713
717
  type: "button" | "submit";
714
718
  style: "primary" | "secondary" | "danger";
715
719
  };
716
- declare const PrimaryButton: (props: Props$d) => react_jsx_runtime.JSX.Element;
720
+ declare const PrimaryButton: (props: Props$e) => react_jsx_runtime.JSX.Element;
717
721
 
718
722
  interface AboutInfoItemProps {
719
723
  title: string;
@@ -777,10 +781,10 @@ interface CookiesProps {
777
781
  }
778
782
  declare const Cookies: ({ handleAccept, handleDecline }: CookiesProps) => react_jsx_runtime.JSX.Element | null;
779
783
 
780
- interface Props$c {
784
+ interface Props$d {
781
785
  country: string;
782
786
  }
783
- declare const CountryItem: ({ country }: Props$c) => react_jsx_runtime.JSX.Element;
787
+ declare const CountryItem: ({ country }: Props$d) => react_jsx_runtime.JSX.Element;
784
788
 
785
789
  interface InfoBoxProps {
786
790
  title: string;
@@ -801,10 +805,10 @@ interface KeyInfoItemProps$1 {
801
805
  }
802
806
  declare const KeyInfoItem: ({ label, value }: KeyInfoItemProps$1) => react_jsx_runtime.JSX.Element;
803
807
 
804
- interface Props$b {
808
+ interface Props$c {
805
809
  date: string | number | Date;
806
810
  }
807
- declare const LastUpdatedTag: ({ date }: Props$b) => react_jsx_runtime.JSX.Element;
811
+ declare const LastUpdatedTag: ({ date }: Props$c) => react_jsx_runtime.JSX.Element;
808
812
 
809
813
  declare const NoResults: () => react_jsx_runtime.JSX.Element;
810
814
 
@@ -853,14 +857,14 @@ declare const DesignSelectSeparator: {
853
857
  displayName: string | undefined;
854
858
  };
855
859
 
856
- interface Props$a {
860
+ interface Props$b {
857
861
  tag: string;
858
862
  }
859
863
  declare const designSimpleTagVariants: (props?: ({
860
864
  variant?: "blue" | "orange" | "purple" | "turquoise" | "yellow" | "darkGreen" | "darkBlue" | null | undefined;
861
865
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
862
866
  type TagType$1 = VariantProps<typeof designSimpleTagVariants> & ComponentProps<"span">;
863
- declare const DesignSimpleTag: ({ tag, variant, className, }: Props$a & TagType$1) => react_jsx_runtime.JSX.Element;
867
+ declare const DesignSimpleTag: ({ tag, variant, className, }: Props$b & TagType$1) => react_jsx_runtime.JSX.Element;
864
868
 
865
869
  declare const DesignSwitch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
866
870
 
@@ -890,10 +894,10 @@ interface LinkProps {
890
894
  href: string;
891
895
  isNewTab: boolean;
892
896
  }
893
- interface Props$9 {
897
+ interface Props$a {
894
898
  link: LinkProps;
895
899
  }
896
- declare const SimpleLink: ({ link }: Props$9) => react_jsx_runtime.JSX.Element;
900
+ declare const SimpleLink: ({ link }: Props$a) => react_jsx_runtime.JSX.Element;
897
901
 
898
902
  interface KeyInfoItemProps {
899
903
  label: string;
@@ -902,21 +906,21 @@ interface KeyInfoItemProps {
902
906
  }
903
907
  declare const TagsGroup: ({ label, tags, variant }: KeyInfoItemProps) => react_jsx_runtime.JSX.Element;
904
908
 
905
- interface Props$8 {
909
+ interface Props$9 {
906
910
  text: string;
907
911
  }
908
912
  declare const weightVariants: (props?: ({
909
913
  variant?: "weight100" | "weight200" | "weight300" | "weight400" | "weight500" | "weight600" | "weight700" | "weight800" | "weight900" | null | undefined;
910
914
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
911
915
  type TagType = VariantProps<typeof weightVariants> & ComponentProps<"div">;
912
- declare const TestWeight: ({ text, variant, className }: Props$8 & TagType) => react_jsx_runtime.JSX.Element;
916
+ declare const TestWeight: ({ text, variant, className }: Props$9 & TagType) => react_jsx_runtime.JSX.Element;
913
917
 
914
- interface Props$7 {
918
+ interface Props$8 {
915
919
  tag: string;
916
920
  content: React.ReactNode;
917
921
  TagClassName?: string;
918
922
  }
919
- declare const ThreeColumn: ({ tag, content, TagClassName }: Props$7) => react_jsx_runtime.JSX.Element;
923
+ declare const ThreeColumn: ({ tag, content, TagClassName }: Props$8) => react_jsx_runtime.JSX.Element;
920
924
 
921
925
  declare const LandingTitle: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
922
926
  declare const LandingTitleAccent: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
@@ -1022,7 +1026,7 @@ interface FAQProps {
1022
1026
  backgroundColor?: string;
1023
1027
  }
1024
1028
 
1025
- interface Props$6 {
1029
+ interface Props$7 {
1026
1030
  id: string;
1027
1031
  title: string;
1028
1032
  subtitle: string;
@@ -1030,13 +1034,14 @@ interface Props$6 {
1030
1034
  faqs?: FAQProps["faqs"];
1031
1035
  backgroundColor?: string;
1032
1036
  }
1033
- declare const FaqComponent: (props: Props$6) => react_jsx_runtime.JSX.Element;
1037
+ declare const FaqComponent: (props: Props$7) => react_jsx_runtime.JSX.Element;
1034
1038
 
1035
1039
  interface BasicFooterProps {
1036
- version: string;
1037
1040
  privacy_policy_url: string;
1038
1041
  termsUrl: string;
1039
1042
  showGeoWiki: boolean;
1043
+ openInNewTab: boolean;
1044
+ version?: string;
1040
1045
  }
1041
1046
  interface ItemProps {
1042
1047
  name: string;
@@ -1104,6 +1109,24 @@ interface AppItemListProps {
1104
1109
  }
1105
1110
  declare const AppItemsList: (props: AppItemListProps) => react_jsx_runtime.JSX.Element;
1106
1111
 
1112
+ interface SummaryCardProps {
1113
+ name: string;
1114
+ count: number;
1115
+ imageSrc: "document" | "photo" | "group";
1116
+ iconColor?: string;
1117
+ }
1118
+ declare const SummaryCard: (props: SummaryCardProps) => react_jsx_runtime.JSX.Element;
1119
+
1120
+ interface CarouselGalleryItemProps {
1121
+ text: string;
1122
+ url: string;
1123
+ }
1124
+
1125
+ interface Props$6 {
1126
+ galleryItems: CarouselGalleryItemProps[];
1127
+ }
1128
+ declare const CarouselItemList: ({ galleryItems }: Props$6) => react_jsx_runtime.JSX.Element;
1129
+
1107
1130
  declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) => react_jsx_runtime.JSX.Element;
1108
1131
 
1109
1132
  interface Props$5 {
@@ -1246,4 +1269,4 @@ interface H1BodyButtonWithAppProps {
1246
1269
  }
1247
1270
  declare const H1BodyButtonWithApp: (props: H1BodyButtonWithAppProps) => react_jsx_runtime.JSX.Element;
1248
1271
 
1249
- 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, 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, ButtonProps$1 as ButtonProps, Calendar, CalendarIcon, CalendarProps, CameraIcon, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, 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, DesignHeaderProps, DesignInput, 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, 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, H1BodyButtonProps, H1BodyButtonWithApp, H1BodyButtonWithAppProps, H1Design, H2AccentDesign, H2BodyButton, H2Design, H3Design, H4Design, H5Design, H6Design, H7Design, H8Design, H9Design, HardDriveIcon, HeadphonesIcon, HeroImage, HeroImageRightWithAppButtons, Hexagon, HoverCard, HoverCardContent, HoverCardTrigger, IPanelHorizontalProps, Icon, IconPaths, IframeViewer, ImageIcon, InfoBox, Input, InputProps, KeyInfoItem, Label, LandingTitle, LandingTitleAccent, LastUpdatedTag, LayerGroupIcon, LegendIcon, 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, TableViewProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagList, TagsGroup, TestWeight, TextArea, Textarea, TextareaProps, ThemeSwitcher, ThreeColumn, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, 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 };
1272
+ 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 };