@geowiki/design-system 0.16.0-dev.2 → 0.16.0-dev.4
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 +221 -36
- package/dist/index.js +11181 -1804
- package/dist/index.mjs +11102 -1712
- package/dist/styles.css +1 -1
- package/package.json +10 -9
- package/dist/index.d.mts +0 -988
package/dist/index.d.ts
CHANGED
|
@@ -359,11 +359,11 @@ interface TagProps {
|
|
|
359
359
|
}
|
|
360
360
|
declare const Tag: ({ tag, className }: TagProps) => react_jsx_runtime.JSX.Element;
|
|
361
361
|
|
|
362
|
-
interface Props$
|
|
362
|
+
interface Props$i {
|
|
363
363
|
tags?: string[];
|
|
364
364
|
tagColor?: string;
|
|
365
365
|
}
|
|
366
|
-
declare const TagList: (props: Props$
|
|
366
|
+
declare const TagList: (props: Props$i) => react_jsx_runtime.JSX.Element;
|
|
367
367
|
|
|
368
368
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
369
369
|
}
|
|
@@ -605,14 +605,14 @@ interface FullPageLoaderProps {
|
|
|
605
605
|
}
|
|
606
606
|
declare const FullPageLoader: ({ show }: FullPageLoaderProps) => react_jsx_runtime.JSX.Element | null;
|
|
607
607
|
|
|
608
|
-
interface Props$
|
|
608
|
+
interface Props$h {
|
|
609
609
|
src: string;
|
|
610
610
|
className?: string;
|
|
611
611
|
alternativeText?: string;
|
|
612
612
|
width?: number | string;
|
|
613
613
|
height?: number | string;
|
|
614
614
|
}
|
|
615
|
-
declare const CustomImage: (props: Props$
|
|
615
|
+
declare const CustomImage: (props: Props$h) => react_jsx_runtime.JSX.Element;
|
|
616
616
|
|
|
617
617
|
declare const Loader: () => react_jsx_runtime.JSX.Element;
|
|
618
618
|
|
|
@@ -632,7 +632,7 @@ declare const ThemeSwitcher: () => react_jsx_runtime.JSX.Element;
|
|
|
632
632
|
|
|
633
633
|
declare const useDebounce: <V extends unknown>(value: V, delay?: number) => V;
|
|
634
634
|
|
|
635
|
-
interface Props$
|
|
635
|
+
interface Props$g {
|
|
636
636
|
register?: any;
|
|
637
637
|
value?: any;
|
|
638
638
|
defaultValue?: any;
|
|
@@ -648,9 +648,9 @@ interface Props$e {
|
|
|
648
648
|
noDisplayTextAsLabel?: boolean;
|
|
649
649
|
cssClass?: string;
|
|
650
650
|
}
|
|
651
|
-
declare const OldCustomInput: (props: Props$
|
|
651
|
+
declare const OldCustomInput: (props: Props$g) => react_jsx_runtime.JSX.Element;
|
|
652
652
|
|
|
653
|
-
type Props$
|
|
653
|
+
type Props$f = {
|
|
654
654
|
name: string;
|
|
655
655
|
displayText: string;
|
|
656
656
|
register: any;
|
|
@@ -666,9 +666,9 @@ type Props$d = {
|
|
|
666
666
|
Placeholder?: string;
|
|
667
667
|
showLabel?: boolean;
|
|
668
668
|
};
|
|
669
|
-
declare const MultiSelect: (props: Props$
|
|
669
|
+
declare const MultiSelect: (props: Props$f) => react_jsx_runtime.JSX.Element;
|
|
670
670
|
|
|
671
|
-
interface Props$
|
|
671
|
+
interface Props$e {
|
|
672
672
|
register: any;
|
|
673
673
|
value: any;
|
|
674
674
|
defaultValue?: any;
|
|
@@ -682,7 +682,7 @@ interface Props$c {
|
|
|
682
682
|
isLabelBold?: boolean;
|
|
683
683
|
isPlaceholderItalic?: boolean;
|
|
684
684
|
}
|
|
685
|
-
declare const TextArea: (props: Props$
|
|
685
|
+
declare const TextArea: (props: Props$e) => react_jsx_runtime.JSX.Element;
|
|
686
686
|
|
|
687
687
|
interface UmamiAnalyticsProps {
|
|
688
688
|
scriptUrl?: string;
|
|
@@ -698,18 +698,18 @@ interface UmamiAnalyticsProps {
|
|
|
698
698
|
*/
|
|
699
699
|
declare const UmamiAnalytics: React__default.FC<UmamiAnalyticsProps>;
|
|
700
700
|
|
|
701
|
-
type Props$
|
|
701
|
+
type Props$d = {
|
|
702
702
|
onClick: any;
|
|
703
703
|
};
|
|
704
|
-
declare const DeleteButton: (props: Props$
|
|
704
|
+
declare const DeleteButton: (props: Props$d) => react_jsx_runtime.JSX.Element;
|
|
705
705
|
|
|
706
|
-
type Props$
|
|
706
|
+
type Props$c = {
|
|
707
707
|
onClick?: () => void;
|
|
708
708
|
label: string;
|
|
709
709
|
type: "button" | "submit";
|
|
710
710
|
style: "primary" | "secondary" | "danger";
|
|
711
711
|
};
|
|
712
|
-
declare const PrimaryButton: (props: Props$
|
|
712
|
+
declare const PrimaryButton: (props: Props$c) => react_jsx_runtime.JSX.Element;
|
|
713
713
|
|
|
714
714
|
interface AboutInfoItemProps {
|
|
715
715
|
title: string;
|
|
@@ -773,10 +773,10 @@ interface CookiesProps {
|
|
|
773
773
|
}
|
|
774
774
|
declare const Cookies: ({ handleAccept, handleDecline }: CookiesProps) => react_jsx_runtime.JSX.Element | null;
|
|
775
775
|
|
|
776
|
-
interface Props$
|
|
776
|
+
interface Props$b {
|
|
777
777
|
country: string;
|
|
778
778
|
}
|
|
779
|
-
declare const CountryItem: ({ country }: Props$
|
|
779
|
+
declare const CountryItem: ({ country }: Props$b) => react_jsx_runtime.JSX.Element;
|
|
780
780
|
|
|
781
781
|
interface InfoBoxProps {
|
|
782
782
|
title: string;
|
|
@@ -797,10 +797,10 @@ interface KeyInfoItemProps$1 {
|
|
|
797
797
|
}
|
|
798
798
|
declare const KeyInfoItem: ({ label, value }: KeyInfoItemProps$1) => react_jsx_runtime.JSX.Element;
|
|
799
799
|
|
|
800
|
-
interface Props$
|
|
800
|
+
interface Props$a {
|
|
801
801
|
date: string | number | Date;
|
|
802
802
|
}
|
|
803
|
-
declare const LastUpdatedTag: ({ date }: Props$
|
|
803
|
+
declare const LastUpdatedTag: ({ date }: Props$a) => react_jsx_runtime.JSX.Element;
|
|
804
804
|
|
|
805
805
|
declare const NoResults: () => react_jsx_runtime.JSX.Element;
|
|
806
806
|
|
|
@@ -818,14 +818,14 @@ declare const DesignSelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPr
|
|
|
818
818
|
declare const DesignSelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
819
819
|
declare const DesignSelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
820
820
|
|
|
821
|
-
interface Props$
|
|
821
|
+
interface Props$9 {
|
|
822
822
|
tag: string;
|
|
823
823
|
}
|
|
824
824
|
declare const designSimpleTagVariants: (props?: ({
|
|
825
825
|
variant?: "blue" | "orange" | "purple" | "turquoise" | "yellow" | "darkGreen" | "darkBlue" | null | undefined;
|
|
826
826
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
827
827
|
type TagType$1 = VariantProps<typeof designSimpleTagVariants> & ComponentProps<"span">;
|
|
828
|
-
declare const DesignSimpleTag: ({ tag, variant, className, }: Props$
|
|
828
|
+
declare const DesignSimpleTag: ({ tag, variant, className, }: Props$9 & TagType$1) => react_jsx_runtime.JSX.Element;
|
|
829
829
|
|
|
830
830
|
declare const DesignSwitch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
831
831
|
|
|
@@ -842,24 +842,26 @@ interface KeyInfoItemProps {
|
|
|
842
842
|
}
|
|
843
843
|
declare const TagsGroup: ({ label, tags, variant }: KeyInfoItemProps) => react_jsx_runtime.JSX.Element;
|
|
844
844
|
|
|
845
|
-
interface Props$
|
|
845
|
+
interface Props$8 {
|
|
846
846
|
text: string;
|
|
847
847
|
}
|
|
848
848
|
declare const weightVariants: (props?: ({
|
|
849
849
|
variant?: "weight100" | "weight200" | "weight300" | "weight400" | "weight500" | "weight600" | "weight700" | "weight800" | "weight900" | null | undefined;
|
|
850
850
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
851
851
|
type TagType = VariantProps<typeof weightVariants> & ComponentProps<"div">;
|
|
852
|
-
declare const TestWeight: ({ text, variant, className }: Props$
|
|
852
|
+
declare const TestWeight: ({ text, variant, className }: Props$8 & TagType) => react_jsx_runtime.JSX.Element;
|
|
853
853
|
|
|
854
|
-
interface Props$
|
|
854
|
+
interface Props$7 {
|
|
855
855
|
tag: string;
|
|
856
856
|
content: React.ReactNode;
|
|
857
857
|
TagClassName?: string;
|
|
858
858
|
}
|
|
859
|
-
declare const ThreeColumn: ({ tag, content, TagClassName }: Props$
|
|
859
|
+
declare const ThreeColumn: ({ tag, content, TagClassName }: Props$7) => react_jsx_runtime.JSX.Element;
|
|
860
860
|
|
|
861
861
|
declare const LandingTitle: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
862
862
|
declare const LandingTitleAccent: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
863
|
+
declare const BigLandingTitle: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
864
|
+
declare const BigLandingTitleAccent: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
863
865
|
declare const H1Design: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
864
866
|
declare const H1AccentDesign: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
865
867
|
declare const H2Design: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
@@ -871,7 +873,7 @@ declare const H6Design: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAtt
|
|
|
871
873
|
declare const H7Design: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">>;
|
|
872
874
|
declare const H8Design: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">>;
|
|
873
875
|
declare const H9Design: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">>;
|
|
874
|
-
declare const Caption: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">>;
|
|
876
|
+
declare const Caption: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
875
877
|
declare const Body20sb: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">>;
|
|
876
878
|
declare const Body20m: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">>;
|
|
877
879
|
declare const Body20: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">>;
|
|
@@ -895,14 +897,148 @@ declare const Body12: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttri
|
|
|
895
897
|
|
|
896
898
|
declare const VersionDisplay: () => react_jsx_runtime.JSX.Element | null;
|
|
897
899
|
|
|
900
|
+
interface DesignHeaderProps {
|
|
901
|
+
branding: {
|
|
902
|
+
logo: string;
|
|
903
|
+
title: string;
|
|
904
|
+
};
|
|
905
|
+
mainMenu: {
|
|
906
|
+
link: string;
|
|
907
|
+
text: string;
|
|
908
|
+
isNewTab?: boolean;
|
|
909
|
+
subMenu?: {
|
|
910
|
+
link: string;
|
|
911
|
+
text: string;
|
|
912
|
+
isNewTab?: boolean;
|
|
913
|
+
}[];
|
|
914
|
+
}[];
|
|
915
|
+
sessionStatus: "authenticated" | "unauthenticated" | "loading";
|
|
916
|
+
canLogin: boolean;
|
|
917
|
+
canSignUp: boolean;
|
|
918
|
+
isAdmin: boolean;
|
|
919
|
+
hasStickyNavBar?: boolean;
|
|
920
|
+
isFeatureEnabled?: boolean;
|
|
921
|
+
rootUrl?: string;
|
|
922
|
+
signIn?: any;
|
|
923
|
+
signOut?: any;
|
|
924
|
+
}
|
|
925
|
+
declare const DesignHeader: ({ branding, mainMenu, sessionStatus, canLogin, canSignUp: canSignup, isAdmin, hasStickyNavBar, signIn, signOut, isFeatureEnabled, rootUrl, }: DesignHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
926
|
+
|
|
927
|
+
interface ResourcesQuickFindProps {
|
|
928
|
+
id: string;
|
|
929
|
+
background_color: string;
|
|
930
|
+
background_opacity: string;
|
|
931
|
+
title: string;
|
|
932
|
+
shouldParseTitle: boolean;
|
|
933
|
+
description: string;
|
|
934
|
+
resource_finder_text?: string;
|
|
935
|
+
resource_finder_url?: string;
|
|
936
|
+
parent_list_title: string;
|
|
937
|
+
parent_list: {
|
|
938
|
+
key: string;
|
|
939
|
+
value: string;
|
|
940
|
+
link?: string;
|
|
941
|
+
}[];
|
|
942
|
+
child_list?: {
|
|
943
|
+
key: string;
|
|
944
|
+
value: string;
|
|
945
|
+
}[];
|
|
946
|
+
child_list_title?: string;
|
|
947
|
+
download_resource: boolean;
|
|
948
|
+
}
|
|
949
|
+
declare const ResourcesQuickFind: (props: ResourcesQuickFindProps) => react_jsx_runtime.JSX.Element;
|
|
950
|
+
|
|
951
|
+
interface FAQProps {
|
|
952
|
+
faqs: {
|
|
953
|
+
question: string;
|
|
954
|
+
answer: React.ReactNode;
|
|
955
|
+
hint?: string;
|
|
956
|
+
}[];
|
|
957
|
+
backgroundColor?: string;
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
interface Props$6 {
|
|
961
|
+
id: string;
|
|
962
|
+
title: string;
|
|
963
|
+
subtitle: string;
|
|
964
|
+
description?: string;
|
|
965
|
+
faqs?: FAQProps["faqs"];
|
|
966
|
+
backgroundColor?: string;
|
|
967
|
+
}
|
|
968
|
+
declare const FaqComponent: (props: Props$6) => react_jsx_runtime.JSX.Element;
|
|
969
|
+
|
|
970
|
+
interface BasicFooterProps {
|
|
971
|
+
version: string;
|
|
972
|
+
privacy_policy_url: string;
|
|
973
|
+
termsUrl: string;
|
|
974
|
+
showGeoWiki: boolean;
|
|
975
|
+
}
|
|
976
|
+
interface ItemProps {
|
|
977
|
+
name: string;
|
|
978
|
+
href: string;
|
|
979
|
+
}
|
|
980
|
+
interface FooterProps {
|
|
981
|
+
branding: {
|
|
982
|
+
logo: string;
|
|
983
|
+
title: string;
|
|
984
|
+
};
|
|
985
|
+
navigation: {
|
|
986
|
+
category: string;
|
|
987
|
+
items: ItemProps[];
|
|
988
|
+
}[];
|
|
989
|
+
bottomMenu: {
|
|
990
|
+
name: string;
|
|
991
|
+
href: string;
|
|
992
|
+
iconPath?: string;
|
|
993
|
+
}[];
|
|
994
|
+
footerLogoPath: string | undefined;
|
|
995
|
+
footerText: string;
|
|
996
|
+
imagesPaths: string[] | undefined;
|
|
997
|
+
copyrights?: string | undefined;
|
|
998
|
+
socialLinks?: {
|
|
999
|
+
name: string;
|
|
1000
|
+
href: string;
|
|
1001
|
+
isNewTab?: boolean;
|
|
1002
|
+
}[];
|
|
1003
|
+
}
|
|
1004
|
+
declare const DesignFooter: (props: FooterProps) => react_jsx_runtime.JSX.Element;
|
|
1005
|
+
declare const BasicFooter: (props: BasicFooterProps) => react_jsx_runtime.JSX.Element;
|
|
1006
|
+
|
|
1007
|
+
interface AppItemProps {
|
|
1008
|
+
item: {
|
|
1009
|
+
id: string;
|
|
1010
|
+
name: string;
|
|
1011
|
+
logoUrl: string;
|
|
1012
|
+
locationType: string;
|
|
1013
|
+
dataDownloadLinks?: string[];
|
|
1014
|
+
externalWebsiteLink?: string;
|
|
1015
|
+
};
|
|
1016
|
+
}
|
|
1017
|
+
declare const AppItem: (props: AppItemProps) => react_jsx_runtime.JSX.Element;
|
|
1018
|
+
|
|
1019
|
+
interface AppItemListProps {
|
|
1020
|
+
id: string;
|
|
1021
|
+
name: string;
|
|
1022
|
+
title: string;
|
|
1023
|
+
allItems: {
|
|
1024
|
+
id: string;
|
|
1025
|
+
name: string;
|
|
1026
|
+
logoUrl: string;
|
|
1027
|
+
locationType: string;
|
|
1028
|
+
dataDownloadLinks?: string[];
|
|
1029
|
+
externalWebsiteLink?: string;
|
|
1030
|
+
}[];
|
|
1031
|
+
}
|
|
1032
|
+
declare const AppItemsList: (props: AppItemListProps) => react_jsx_runtime.JSX.Element;
|
|
1033
|
+
|
|
898
1034
|
declare const OldButton: ({ label, appearance, compact, handleClick, loading, type, }: any) => react_jsx_runtime.JSX.Element;
|
|
899
1035
|
|
|
900
|
-
interface Props$
|
|
1036
|
+
interface Props$5 {
|
|
901
1037
|
button: any;
|
|
902
1038
|
appearance: any;
|
|
903
1039
|
compact: any;
|
|
904
1040
|
}
|
|
905
|
-
declare const ButtonContent: ({ button, appearance, compact }: Props$
|
|
1041
|
+
declare const ButtonContent: ({ button, appearance, compact }: Props$5) => react_jsx_runtime.JSX.Element;
|
|
906
1042
|
interface ButtonLinkProps {
|
|
907
1043
|
button: any;
|
|
908
1044
|
appearance: any;
|
|
@@ -910,10 +1046,10 @@ interface ButtonLinkProps {
|
|
|
910
1046
|
}
|
|
911
1047
|
declare const ButtonLink: ({ button, appearance, compact, }: ButtonLinkProps) => react_jsx_runtime.JSX.Element;
|
|
912
1048
|
|
|
913
|
-
interface Props$
|
|
1049
|
+
interface Props$4 {
|
|
914
1050
|
message?: string;
|
|
915
1051
|
}
|
|
916
|
-
declare const ErrorMessage: (props: Props$
|
|
1052
|
+
declare const ErrorMessage: (props: Props$4) => react_jsx_runtime.JSX.Element;
|
|
917
1053
|
|
|
918
1054
|
declare const FeatureDisabled: () => react_jsx_runtime.JSX.Element;
|
|
919
1055
|
|
|
@@ -939,27 +1075,27 @@ declare const MediaEmbedItem: ({ alt, src }: MediaEmbedItemProps) => react_jsx_r
|
|
|
939
1075
|
|
|
940
1076
|
declare const PermissionDisabled: () => react_jsx_runtime.JSX.Element;
|
|
941
1077
|
|
|
942
|
-
interface Props$
|
|
1078
|
+
interface Props$3 {
|
|
943
1079
|
label: string;
|
|
944
1080
|
value?: string;
|
|
945
1081
|
colSpan?: number;
|
|
946
1082
|
}
|
|
947
|
-
declare const ShowLargeText: (props: Props$
|
|
1083
|
+
declare const ShowLargeText: (props: Props$3) => react_jsx_runtime.JSX.Element;
|
|
948
1084
|
|
|
949
|
-
interface Props$
|
|
1085
|
+
interface Props$2 {
|
|
950
1086
|
label: string;
|
|
951
1087
|
value?: string;
|
|
952
1088
|
}
|
|
953
|
-
declare const ShowShortText: (props: Props$
|
|
1089
|
+
declare const ShowShortText: (props: Props$2) => react_jsx_runtime.JSX.Element;
|
|
954
1090
|
|
|
955
|
-
type Props = {
|
|
1091
|
+
type Props$1 = {
|
|
956
1092
|
src: string;
|
|
957
1093
|
width: number;
|
|
958
1094
|
height: number;
|
|
959
1095
|
alt?: string;
|
|
960
1096
|
className?: string;
|
|
961
1097
|
};
|
|
962
|
-
declare const SizedImage: (props: Props) => react_jsx_runtime.JSX.Element;
|
|
1098
|
+
declare const SizedImage: (props: Props$1) => react_jsx_runtime.JSX.Element;
|
|
963
1099
|
|
|
964
1100
|
declare const UnderConstruction: () => react_jsx_runtime.JSX.Element;
|
|
965
1101
|
|
|
@@ -968,12 +1104,36 @@ type DisplayItem = {
|
|
|
968
1104
|
label: any;
|
|
969
1105
|
};
|
|
970
1106
|
|
|
1107
|
+
interface FeaturedItemProps {
|
|
1108
|
+
featuredItem: {
|
|
1109
|
+
name: string;
|
|
1110
|
+
bannerImageUrl: string;
|
|
1111
|
+
landscapeBannerUrl: string;
|
|
1112
|
+
portraitBannerUrl?: string;
|
|
1113
|
+
}[];
|
|
1114
|
+
itemDetails: {
|
|
1115
|
+
id: string;
|
|
1116
|
+
name: string;
|
|
1117
|
+
externalWebsiteLink?: string;
|
|
1118
|
+
};
|
|
1119
|
+
}
|
|
1120
|
+
declare const FeaturedItemWithBannerImage: (props: FeaturedItemProps) => react_jsx_runtime.JSX.Element;
|
|
1121
|
+
|
|
971
1122
|
interface HeroImageProps {
|
|
972
1123
|
path: string | undefined;
|
|
973
1124
|
cmsUrl: string;
|
|
974
1125
|
}
|
|
975
1126
|
declare const HeroImage: ({ path, cmsUrl }: HeroImageProps) => react_jsx_runtime.JSX.Element;
|
|
976
1127
|
|
|
1128
|
+
interface HeroProps {
|
|
1129
|
+
path: string | undefined;
|
|
1130
|
+
title: string | null | undefined;
|
|
1131
|
+
description: string | null | undefined;
|
|
1132
|
+
google_marketplace_app?: string;
|
|
1133
|
+
apple_store_app?: string;
|
|
1134
|
+
}
|
|
1135
|
+
declare const HeroImageRightWithAppButtons: (props: HeroProps) => react_jsx_runtime.JSX.Element;
|
|
1136
|
+
|
|
977
1137
|
interface IPanelHorizontalProps {
|
|
978
1138
|
children: React.ReactNode;
|
|
979
1139
|
}
|
|
@@ -985,4 +1145,29 @@ interface LinkButtonItem {
|
|
|
985
1145
|
link?: string;
|
|
986
1146
|
}
|
|
987
1147
|
|
|
988
|
-
|
|
1148
|
+
interface Props {
|
|
1149
|
+
id: string;
|
|
1150
|
+
title: string;
|
|
1151
|
+
textBody: string;
|
|
1152
|
+
tag: string;
|
|
1153
|
+
button?: LinkButtonItem;
|
|
1154
|
+
bottomPadding?: string;
|
|
1155
|
+
}
|
|
1156
|
+
declare const H2BodyButton: (props: Props) => react_jsx_runtime.JSX.Element;
|
|
1157
|
+
|
|
1158
|
+
interface H1BodyButtonProps {
|
|
1159
|
+
title: string;
|
|
1160
|
+
textBody?: string;
|
|
1161
|
+
button?: LinkButtonItem;
|
|
1162
|
+
}
|
|
1163
|
+
declare const H1BodyButton: ({ title, textBody, button }: H1BodyButtonProps) => react_jsx_runtime.JSX.Element;
|
|
1164
|
+
interface H1BodyButtonWithAppProps {
|
|
1165
|
+
title: string;
|
|
1166
|
+
textBody?: string;
|
|
1167
|
+
button?: LinkButtonItem;
|
|
1168
|
+
google_marketplace_app?: string;
|
|
1169
|
+
apple_store_app?: string;
|
|
1170
|
+
}
|
|
1171
|
+
declare const H1BodyButtonWithApp: ({ title, textBody, button, google_marketplace_app, apple_store_app }: H1BodyButtonWithAppProps) => react_jsx_runtime.JSX.Element;
|
|
1172
|
+
|
|
1173
|
+
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, 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, ObservationPin, OldButton, OldCustomInput, OverlayIcon, Pagination, PanelHorizontal, PermissionDisabled, PlusIcon, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PrimaryButton, Progress, RadioGroup, RadioGroupItem, 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, 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 };
|