@geowiki/design-system 0.16.7-dev.1 → 0.16.7-dev.3
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 +8 -0
- package/dist/index.js +626 -285
- package/dist/index.mjs +613 -272
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1017,10 +1017,14 @@ interface AppItemProps {
|
|
|
1017
1017
|
item: {
|
|
1018
1018
|
id: string;
|
|
1019
1019
|
name: string;
|
|
1020
|
+
description?: string;
|
|
1020
1021
|
logoUrl: string;
|
|
1021
1022
|
locationType: string;
|
|
1022
1023
|
dataDownloadLinks?: string[];
|
|
1023
1024
|
externalWebsiteLink?: string;
|
|
1025
|
+
totalImages?: number;
|
|
1026
|
+
totalSubmissions?: number;
|
|
1027
|
+
totalUsers?: number;
|
|
1024
1028
|
};
|
|
1025
1029
|
}
|
|
1026
1030
|
declare const AppItem: (props: AppItemProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1032,10 +1036,14 @@ interface AppItemListProps {
|
|
|
1032
1036
|
allItems: {
|
|
1033
1037
|
id: string;
|
|
1034
1038
|
name: string;
|
|
1039
|
+
description?: string;
|
|
1035
1040
|
logoUrl: string;
|
|
1036
1041
|
locationType: string;
|
|
1037
1042
|
dataDownloadLinks?: string[];
|
|
1038
1043
|
externalWebsiteLink?: string;
|
|
1044
|
+
totalImages?: number;
|
|
1045
|
+
totalSubmissions?: number;
|
|
1046
|
+
totalUsers?: number;
|
|
1039
1047
|
}[];
|
|
1040
1048
|
}
|
|
1041
1049
|
declare const AppItemsList: (props: AppItemListProps) => react_jsx_runtime.JSX.Element;
|