@geowiki/design-system 0.16.9-dev.2 → 0.16.9-dev.21
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 +1253 -0
- package/dist/index.d.ts +90 -176
- package/dist/index.js +7931 -17914
- package/dist/index.mjs +6468 -16479
- package/dist/styles.css +1 -1
- package/package.json +51 -49
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClassValue } from 'clsx';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, { ComponentProps, ForwardRefExoticComponent, DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
3
|
+
import React__default, { ComponentProps, Dispatch, SetStateAction, ForwardRefExoticComponent, DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
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';
|
|
@@ -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>, "
|
|
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
|
|
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$
|
|
366
|
+
interface Props$j {
|
|
363
367
|
tags?: string[];
|
|
364
368
|
tagColor?: string;
|
|
365
369
|
}
|
|
366
|
-
declare const TagList: (props: Props$
|
|
370
|
+
declare const TagList: (props: Props$j) => 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$
|
|
616
|
+
interface Props$i {
|
|
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$
|
|
623
|
+
declare const CustomImage: (props: Props$i) => 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$
|
|
643
|
+
interface Props$h {
|
|
640
644
|
register?: any;
|
|
641
645
|
value?: any;
|
|
642
646
|
defaultValue?: any;
|
|
@@ -652,9 +656,9 @@ interface Props$g {
|
|
|
652
656
|
noDisplayTextAsLabel?: boolean;
|
|
653
657
|
cssClass?: string;
|
|
654
658
|
}
|
|
655
|
-
declare const OldCustomInput: (props: Props$
|
|
659
|
+
declare const OldCustomInput: (props: Props$h) => react_jsx_runtime.JSX.Element;
|
|
656
660
|
|
|
657
|
-
type Props$
|
|
661
|
+
type Props$g = {
|
|
658
662
|
name: string;
|
|
659
663
|
displayText: string;
|
|
660
664
|
register: any;
|
|
@@ -670,9 +674,9 @@ type Props$f = {
|
|
|
670
674
|
Placeholder?: string;
|
|
671
675
|
showLabel?: boolean;
|
|
672
676
|
};
|
|
673
|
-
declare const MultiSelect: (props: Props$
|
|
677
|
+
declare const MultiSelect: (props: Props$g) => react_jsx_runtime.JSX.Element;
|
|
674
678
|
|
|
675
|
-
interface Props$
|
|
679
|
+
interface Props$f {
|
|
676
680
|
register: any;
|
|
677
681
|
value: any;
|
|
678
682
|
defaultValue?: any;
|
|
@@ -686,7 +690,7 @@ interface Props$e {
|
|
|
686
690
|
isLabelBold?: boolean;
|
|
687
691
|
isPlaceholderItalic?: boolean;
|
|
688
692
|
}
|
|
689
|
-
declare const TextArea: (props: Props$
|
|
693
|
+
declare const TextArea: (props: Props$f) => 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$
|
|
709
|
+
type Props$e = {
|
|
706
710
|
onClick: any;
|
|
707
711
|
};
|
|
708
|
-
declare const DeleteButton: (props: Props$
|
|
712
|
+
declare const DeleteButton: (props: Props$e) => react_jsx_runtime.JSX.Element;
|
|
709
713
|
|
|
710
|
-
type Props$
|
|
714
|
+
type Props$d = {
|
|
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$
|
|
720
|
+
declare const PrimaryButton: (props: Props$d) => 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$
|
|
784
|
+
interface Props$c {
|
|
781
785
|
country: string;
|
|
782
786
|
}
|
|
783
|
-
declare const CountryItem: ({ country }: Props$
|
|
787
|
+
declare const CountryItem: ({ country }: Props$c) => 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$
|
|
808
|
+
interface Props$b {
|
|
805
809
|
date: string | number | Date;
|
|
806
810
|
}
|
|
807
|
-
declare const LastUpdatedTag: ({ date }: Props$
|
|
811
|
+
declare const LastUpdatedTag: ({ date }: Props$b) => react_jsx_runtime.JSX.Element;
|
|
808
812
|
|
|
809
813
|
declare const NoResults: () => react_jsx_runtime.JSX.Element;
|
|
810
814
|
|
|
@@ -814,22 +818,53 @@ declare const DesignRadioGroupItem: React$1.ForwardRefExoticComponent<Omit<Radio
|
|
|
814
818
|
declare const DesignSelect: React$1.FC<SelectPrimitive.SelectProps>;
|
|
815
819
|
declare const DesignSelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
816
820
|
declare const DesignSelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
817
|
-
declare const
|
|
821
|
+
declare const selectVariants: (props?: ({
|
|
818
822
|
variant?: "input" | "default" | null | undefined;
|
|
819
|
-
} & class_variance_authority_dist_types.ClassProp) | undefined) => string
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
declare const
|
|
823
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
824
|
+
type SelectTriggerProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger> & VariantProps<typeof selectVariants> & {
|
|
825
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Trigger>>;
|
|
826
|
+
};
|
|
827
|
+
declare const DesignSelectTrigger: {
|
|
828
|
+
({ className, children, variant, ref, ...props }: SelectTriggerProps): react_jsx_runtime.JSX.Element;
|
|
829
|
+
displayName: string | undefined;
|
|
830
|
+
};
|
|
831
|
+
type SelectContentProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Content> & {
|
|
832
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Content>>;
|
|
833
|
+
};
|
|
834
|
+
declare const DesignSelectContent: {
|
|
835
|
+
({ className, children, position, ref, ...props }: SelectContentProps): react_jsx_runtime.JSX.Element;
|
|
836
|
+
displayName: string | undefined;
|
|
837
|
+
};
|
|
838
|
+
type SelectLabelProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Label> & {
|
|
839
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Label>>;
|
|
840
|
+
};
|
|
841
|
+
declare const DesignSelectLabel: {
|
|
842
|
+
({ className, ref, ...props }: SelectLabelProps): react_jsx_runtime.JSX.Element;
|
|
843
|
+
displayName: string | undefined;
|
|
844
|
+
};
|
|
845
|
+
type SelectItemProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Item> & {
|
|
846
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Item>>;
|
|
847
|
+
};
|
|
848
|
+
declare const DesignSelectItem: {
|
|
849
|
+
({ className, children, ref, ...props }: SelectItemProps): react_jsx_runtime.JSX.Element;
|
|
850
|
+
displayName: string | undefined;
|
|
851
|
+
};
|
|
852
|
+
type SelectSeparatorProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator> & {
|
|
853
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Separator>>;
|
|
854
|
+
};
|
|
855
|
+
declare const DesignSelectSeparator: {
|
|
856
|
+
({ className, ref, ...props }: SelectSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
857
|
+
displayName: string | undefined;
|
|
858
|
+
};
|
|
824
859
|
|
|
825
|
-
interface Props$
|
|
860
|
+
interface Props$a {
|
|
826
861
|
tag: string;
|
|
827
862
|
}
|
|
828
863
|
declare const designSimpleTagVariants: (props?: ({
|
|
829
864
|
variant?: "blue" | "orange" | "purple" | "turquoise" | "yellow" | "darkGreen" | "darkBlue" | null | undefined;
|
|
830
865
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
831
866
|
type TagType$1 = VariantProps<typeof designSimpleTagVariants> & ComponentProps<"span">;
|
|
832
|
-
declare const DesignSimpleTag: ({ tag, variant, className, }: Props$
|
|
867
|
+
declare const DesignSimpleTag: ({ tag, variant, className, }: Props$a & TagType$1) => react_jsx_runtime.JSX.Element;
|
|
833
868
|
|
|
834
869
|
declare const DesignSwitch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
835
870
|
|
|
@@ -839,6 +874,31 @@ interface DesignResultTagProps {
|
|
|
839
874
|
}
|
|
840
875
|
declare const DesignResultTag: ({ tag, name }: DesignResultTagProps) => react_jsx_runtime.JSX.Element | null;
|
|
841
876
|
|
|
877
|
+
interface ResourceTagProps {
|
|
878
|
+
tag: string;
|
|
879
|
+
type: "language" | "audience" | "topic" | "keyword" | "resourceType";
|
|
880
|
+
}
|
|
881
|
+
declare const ResourceTag: React.FC<ResourceTagProps>;
|
|
882
|
+
|
|
883
|
+
interface NotificationProps {
|
|
884
|
+
title: string;
|
|
885
|
+
description: string;
|
|
886
|
+
open: boolean;
|
|
887
|
+
setOpen: Dispatch<SetStateAction<boolean>>;
|
|
888
|
+
icon?: "email" | "computer";
|
|
889
|
+
}
|
|
890
|
+
declare const Notification: ({ title, description, open, setOpen, icon, }: NotificationProps) => react_jsx_runtime.JSX.Element;
|
|
891
|
+
|
|
892
|
+
interface LinkProps {
|
|
893
|
+
title: string;
|
|
894
|
+
href: string;
|
|
895
|
+
isNewTab: boolean;
|
|
896
|
+
}
|
|
897
|
+
interface Props$9 {
|
|
898
|
+
link: LinkProps;
|
|
899
|
+
}
|
|
900
|
+
declare const SimpleLink: ({ link }: Props$9) => react_jsx_runtime.JSX.Element;
|
|
901
|
+
|
|
842
902
|
interface KeyInfoItemProps {
|
|
843
903
|
label: string;
|
|
844
904
|
tags?: string[];
|
|
@@ -1190,150 +1250,4 @@ interface H1BodyButtonWithAppProps {
|
|
|
1190
1250
|
}
|
|
1191
1251
|
declare const H1BodyButtonWithApp: (props: H1BodyButtonWithAppProps) => react_jsx_runtime.JSX.Element;
|
|
1192
1252
|
|
|
1193
|
-
type
|
|
1194
|
-
type MapControlPopoverDirection = "top" | "right" | "bottom" | "left";
|
|
1195
|
-
interface MapControlToolbarItem {
|
|
1196
|
-
id: string;
|
|
1197
|
-
title?: string;
|
|
1198
|
-
icon: React$1.ComponentType<{
|
|
1199
|
-
className?: string;
|
|
1200
|
-
}>;
|
|
1201
|
-
panel?: React$1.ReactNode;
|
|
1202
|
-
onClick?: () => void;
|
|
1203
|
-
position?: MapControlPosition;
|
|
1204
|
-
isOpen?: boolean;
|
|
1205
|
-
isDisplayOnly?: boolean;
|
|
1206
|
-
popoverDirection?: MapControlPopoverDirection;
|
|
1207
|
-
isMobileFilter?: boolean;
|
|
1208
|
-
}
|
|
1209
|
-
interface MapControlToolbarProps {
|
|
1210
|
-
controls: MapControlToolbarItem[];
|
|
1211
|
-
onToggleControl: (id: string) => void;
|
|
1212
|
-
}
|
|
1213
|
-
declare const MapControlToolbar: {
|
|
1214
|
-
({ controls, onToggleControl, }: MapControlToolbarProps): react_jsx_runtime.JSX.Element;
|
|
1215
|
-
displayName: string;
|
|
1216
|
-
};
|
|
1217
|
-
|
|
1218
|
-
interface MapLayerInfo {
|
|
1219
|
-
citation?: string;
|
|
1220
|
-
dateOfContent?: string;
|
|
1221
|
-
description?: string;
|
|
1222
|
-
function?: string;
|
|
1223
|
-
geographicCoverage?: string;
|
|
1224
|
-
isVisible?: boolean;
|
|
1225
|
-
license?: string;
|
|
1226
|
-
source?: string;
|
|
1227
|
-
name?: string;
|
|
1228
|
-
resolution?: string;
|
|
1229
|
-
overview?: string;
|
|
1230
|
-
hoverCardText?: string;
|
|
1231
|
-
sourceLink?: {
|
|
1232
|
-
name?: string;
|
|
1233
|
-
href?: string;
|
|
1234
|
-
};
|
|
1235
|
-
citationLink?: {
|
|
1236
|
-
name?: string;
|
|
1237
|
-
href?: string;
|
|
1238
|
-
};
|
|
1239
|
-
}
|
|
1240
|
-
interface MapLayerWithInfo {
|
|
1241
|
-
id: string;
|
|
1242
|
-
title?: string;
|
|
1243
|
-
url: string;
|
|
1244
|
-
type: "WMS" | "GeoJson" | "GeoTrees" | "GoogleSheets" | "Marker" | "MarkerCluster";
|
|
1245
|
-
layerName: string;
|
|
1246
|
-
layerInfo?: MapLayerInfo;
|
|
1247
|
-
opacity: number;
|
|
1248
|
-
color: string;
|
|
1249
|
-
properties?: string;
|
|
1250
|
-
showPopup?: boolean;
|
|
1251
|
-
index: number;
|
|
1252
|
-
order?: number;
|
|
1253
|
-
legendConfig?: CustomLegendConfig;
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
interface CustomLegendItem {
|
|
1257
|
-
label: string;
|
|
1258
|
-
color: string;
|
|
1259
|
-
symbol?: "circle" | "square" | "line" | "polygon" | "hexagon" | "icon";
|
|
1260
|
-
iconPath?: string;
|
|
1261
|
-
size?: number;
|
|
1262
|
-
}
|
|
1263
|
-
interface CustomLegendConfig {
|
|
1264
|
-
title?: string;
|
|
1265
|
-
items: CustomLegendItem[];
|
|
1266
|
-
position?: "top" | "bottom" | "left" | "right";
|
|
1267
|
-
showTitle?: boolean;
|
|
1268
|
-
}
|
|
1269
|
-
interface PopupConfig {
|
|
1270
|
-
enabled: boolean;
|
|
1271
|
-
renderContent: (feature: any) => string;
|
|
1272
|
-
popupOptions?: {
|
|
1273
|
-
maxWidth?: number;
|
|
1274
|
-
maxHeight?: number;
|
|
1275
|
-
className?: string;
|
|
1276
|
-
[key: string]: any;
|
|
1277
|
-
};
|
|
1278
|
-
}
|
|
1279
|
-
interface CustomMapLayer extends MapLayerWithInfo {
|
|
1280
|
-
isCustom: true;
|
|
1281
|
-
legendConfig?: CustomLegendConfig;
|
|
1282
|
-
layerData?: any;
|
|
1283
|
-
styleConfig?: {
|
|
1284
|
-
fillColor?: string;
|
|
1285
|
-
strokeColor?: string;
|
|
1286
|
-
strokeWidth?: number;
|
|
1287
|
-
fillOpacity?: number;
|
|
1288
|
-
strokeOpacity?: number;
|
|
1289
|
-
statusColorMap?: Record<string, string>;
|
|
1290
|
-
};
|
|
1291
|
-
popupConfig?: PopupConfig;
|
|
1292
|
-
ontoggle?: () => void;
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
type MapMenuItemDto = {
|
|
1296
|
-
IconCSS?: string;
|
|
1297
|
-
IsVisible?: boolean;
|
|
1298
|
-
Order?: number;
|
|
1299
|
-
};
|
|
1300
|
-
type LayerInfo = {
|
|
1301
|
-
citation: string;
|
|
1302
|
-
dateOfContent: string;
|
|
1303
|
-
description: string;
|
|
1304
|
-
function: string;
|
|
1305
|
-
geographicCoverage: string;
|
|
1306
|
-
isVisible: string;
|
|
1307
|
-
license: string;
|
|
1308
|
-
source: string;
|
|
1309
|
-
name: string;
|
|
1310
|
-
resolution: string;
|
|
1311
|
-
overview: string;
|
|
1312
|
-
hoverCardText: string;
|
|
1313
|
-
sourceLink: [];
|
|
1314
|
-
citationLink: [];
|
|
1315
|
-
};
|
|
1316
|
-
type Layer = {
|
|
1317
|
-
id: string;
|
|
1318
|
-
title: string;
|
|
1319
|
-
url: string;
|
|
1320
|
-
type: string;
|
|
1321
|
-
layerName: string;
|
|
1322
|
-
color: string;
|
|
1323
|
-
properties: string;
|
|
1324
|
-
showPopup: boolean;
|
|
1325
|
-
order: number;
|
|
1326
|
-
layerInfo?: LayerInfo;
|
|
1327
|
-
};
|
|
1328
|
-
type MapMenuItemItemDto = {
|
|
1329
|
-
MapMenuItem?: MapMenuItemDto | null;
|
|
1330
|
-
Layers?: Layer[];
|
|
1331
|
-
Title?: string;
|
|
1332
|
-
};
|
|
1333
|
-
|
|
1334
|
-
declare const LayerSwitcher: React$1.MemoExoticComponent<({ mapMenuItems, customLayers }: {
|
|
1335
|
-
mapMenuItems: MapMenuItemItemDto[];
|
|
1336
|
-
customLayers: CustomMapLayer[];
|
|
1337
|
-
}) => react_jsx_runtime.JSX.Element>;
|
|
1338
|
-
|
|
1339
|
-
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, LayerSwitcher, LegendIcon, LinkButtonItem, Loader, LoaderFull, LocalLoader, LocationIcon, MapControlPopoverDirection, MapControlPosition, MapControlToolbar, MapControlToolbarItem, 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 };
|
|
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 };
|