@geowiki/recodo 0.15.0-dev.1
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/LICENSE +201 -0
- package/README.md +58 -0
- package/dist/cluster-map-LVG5YKOI.mjs +186 -0
- package/dist/index.d.mts +262 -0
- package/dist/index.d.ts +262 -0
- package/dist/index.js +6993 -0
- package/dist/index.mjs +6907 -0
- package/dist/styles.css +1 -0
- package/package.json +91 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ViewStatus, DefaultSettings } from '@geowiki/core';
|
|
3
|
+
import { ClusterDto, ResourceFilterInput, ResourceDto, CreateUpdateResourceDto } from '@geowiki/api-proxy';
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
import React$1 from 'react';
|
|
6
|
+
import { NextPage } from 'next';
|
|
7
|
+
|
|
8
|
+
interface Props$9 {
|
|
9
|
+
clusterId: any;
|
|
10
|
+
newsId: any;
|
|
11
|
+
status?: ViewStatus;
|
|
12
|
+
setStatus?: any;
|
|
13
|
+
}
|
|
14
|
+
declare const ClusterViewNews: (props: Props$9) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
interface Props$8 {
|
|
17
|
+
status: ViewStatus;
|
|
18
|
+
setStatus: any;
|
|
19
|
+
clusterId: any;
|
|
20
|
+
newsId: any;
|
|
21
|
+
settings: DefaultSettings;
|
|
22
|
+
refresh?: boolean;
|
|
23
|
+
setRefresh?: any;
|
|
24
|
+
}
|
|
25
|
+
declare const ClusterEditNews: (props: Props$8) => react_jsx_runtime.JSX.Element;
|
|
26
|
+
|
|
27
|
+
interface Props$7 {
|
|
28
|
+
status?: ViewStatus;
|
|
29
|
+
setStatus?: any;
|
|
30
|
+
onEdit?: any;
|
|
31
|
+
onDelete?: any;
|
|
32
|
+
refresh: boolean;
|
|
33
|
+
clusterId: string;
|
|
34
|
+
}
|
|
35
|
+
declare const ClusterNewsList: (props: Props$7) => react_jsx_runtime.JSX.Element;
|
|
36
|
+
|
|
37
|
+
declare const ClusterNewsItem: ({ newsId }: {
|
|
38
|
+
newsId: string;
|
|
39
|
+
}) => react_jsx_runtime.JSX.Element | null;
|
|
40
|
+
|
|
41
|
+
declare const FarmerClusterBasicInfo: () => react_jsx_runtime.JSX.Element;
|
|
42
|
+
|
|
43
|
+
declare const FarmerClusterDescription: () => react_jsx_runtime.JSX.Element;
|
|
44
|
+
|
|
45
|
+
declare const FarmerClusterImages: () => react_jsx_runtime.JSX.Element;
|
|
46
|
+
|
|
47
|
+
interface FarmerClusterMembersProps {
|
|
48
|
+
clusterId: string;
|
|
49
|
+
}
|
|
50
|
+
declare const FarmerClusterMembers: (props: FarmerClusterMembersProps) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
interface FarmerClusterNewsProps {
|
|
53
|
+
clusterId: any;
|
|
54
|
+
route?: any;
|
|
55
|
+
setRoute?: any;
|
|
56
|
+
settings: any;
|
|
57
|
+
}
|
|
58
|
+
declare const FarmerClusterNews: (props: FarmerClusterNewsProps) => react_jsx_runtime.JSX.Element;
|
|
59
|
+
|
|
60
|
+
declare const FarmerClusterList: () => react_jsx_runtime.JSX.Element;
|
|
61
|
+
|
|
62
|
+
interface ViewFarmerClusterProps$1 {
|
|
63
|
+
cluster: ClusterDto;
|
|
64
|
+
}
|
|
65
|
+
declare const ViewFarmerCluster: ({ cluster }: ViewFarmerClusterProps$1) => react_jsx_runtime.JSX.Element;
|
|
66
|
+
|
|
67
|
+
type FarmerClusterFilterInput = {
|
|
68
|
+
pageSize: number;
|
|
69
|
+
currentPage: number;
|
|
70
|
+
skip: number;
|
|
71
|
+
take: number;
|
|
72
|
+
country: string;
|
|
73
|
+
activityStatus: string;
|
|
74
|
+
farmingSystem: string;
|
|
75
|
+
mainCrop: string;
|
|
76
|
+
mainAgriculturalAreas: string;
|
|
77
|
+
sort: string;
|
|
78
|
+
};
|
|
79
|
+
declare const FarmerClusterFinder: () => react_jsx_runtime.JSX.Element;
|
|
80
|
+
|
|
81
|
+
interface ViewFarmerClusterProps {
|
|
82
|
+
cluster: ClusterDto;
|
|
83
|
+
}
|
|
84
|
+
declare const RecodoViewFarmerCluster: ({ cluster, }: ViewFarmerClusterProps) => react_jsx_runtime.JSX.Element;
|
|
85
|
+
|
|
86
|
+
interface ResourcesQuickFindProps {
|
|
87
|
+
}
|
|
88
|
+
declare const ResourcesQuickFind: ({}: ResourcesQuickFindProps) => react_jsx_runtime.JSX.Element;
|
|
89
|
+
|
|
90
|
+
declare const LinkPartnerSchema: z.ZodObject<{
|
|
91
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
92
|
+
name: z.ZodString;
|
|
93
|
+
link: z.ZodString;
|
|
94
|
+
order: z.ZodNumber;
|
|
95
|
+
}, "strip", z.ZodTypeAny, {
|
|
96
|
+
link: string;
|
|
97
|
+
name: string;
|
|
98
|
+
order: number;
|
|
99
|
+
}, {
|
|
100
|
+
link: string;
|
|
101
|
+
name: string;
|
|
102
|
+
order: number;
|
|
103
|
+
}>, "many">>;
|
|
104
|
+
partners: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
105
|
+
name: z.ZodString;
|
|
106
|
+
link: z.ZodString;
|
|
107
|
+
order: z.ZodNumber;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
link: string;
|
|
110
|
+
name: string;
|
|
111
|
+
order: number;
|
|
112
|
+
}, {
|
|
113
|
+
link: string;
|
|
114
|
+
name: string;
|
|
115
|
+
order: number;
|
|
116
|
+
}>, "many">>;
|
|
117
|
+
}, "strip", z.ZodTypeAny, {
|
|
118
|
+
links?: {
|
|
119
|
+
link: string;
|
|
120
|
+
name: string;
|
|
121
|
+
order: number;
|
|
122
|
+
}[] | undefined;
|
|
123
|
+
partners?: {
|
|
124
|
+
link: string;
|
|
125
|
+
name: string;
|
|
126
|
+
order: number;
|
|
127
|
+
}[] | undefined;
|
|
128
|
+
}, {
|
|
129
|
+
links?: {
|
|
130
|
+
link: string;
|
|
131
|
+
name: string;
|
|
132
|
+
order: number;
|
|
133
|
+
}[] | undefined;
|
|
134
|
+
partners?: {
|
|
135
|
+
link: string;
|
|
136
|
+
name: string;
|
|
137
|
+
order: number;
|
|
138
|
+
}[] | undefined;
|
|
139
|
+
}>;
|
|
140
|
+
declare const FarmerClusterLinkPartner: () => react_jsx_runtime.JSX.Element;
|
|
141
|
+
|
|
142
|
+
declare const FarmerClusterCreate: () => react_jsx_runtime.JSX.Element;
|
|
143
|
+
|
|
144
|
+
interface SearchFilterProps {
|
|
145
|
+
filter: ResourceFilterInput;
|
|
146
|
+
setFilter: any;
|
|
147
|
+
}
|
|
148
|
+
declare const SearchFilter: ({ filter, setFilter }: SearchFilterProps) => react_jsx_runtime.JSX.Element;
|
|
149
|
+
|
|
150
|
+
interface ResourceCardProps {
|
|
151
|
+
resource: ResourceDto;
|
|
152
|
+
}
|
|
153
|
+
declare const ResourceCard: ({ resource }: ResourceCardProps) => react_jsx_runtime.JSX.Element;
|
|
154
|
+
|
|
155
|
+
interface ResourceCreateProps {
|
|
156
|
+
resource: CreateUpdateResourceDto;
|
|
157
|
+
setResource: React$1.Dispatch<React$1.SetStateAction<CreateUpdateResourceDto | undefined>>;
|
|
158
|
+
}
|
|
159
|
+
declare const ResourceCreate: ({ resource }: ResourceCreateProps) => react_jsx_runtime.JSX.Element;
|
|
160
|
+
|
|
161
|
+
interface ResourceEditProps {
|
|
162
|
+
}
|
|
163
|
+
declare const ResourceEdit: (_props: ResourceEditProps) => react_jsx_runtime.JSX.Element;
|
|
164
|
+
|
|
165
|
+
declare const ResourceList: () => react_jsx_runtime.JSX.Element;
|
|
166
|
+
|
|
167
|
+
interface ResourceTagProps {
|
|
168
|
+
tag: string;
|
|
169
|
+
type: "language" | "audience" | "topic" | "keyword" | "resourceType";
|
|
170
|
+
}
|
|
171
|
+
declare const ResourceTag: React.FC<ResourceTagProps>;
|
|
172
|
+
|
|
173
|
+
interface ResourceProps {
|
|
174
|
+
resource: ResourceDto;
|
|
175
|
+
}
|
|
176
|
+
declare const ResourceItem: ({ resource }: ResourceProps) => react_jsx_runtime.JSX.Element;
|
|
177
|
+
|
|
178
|
+
interface Props$6 {
|
|
179
|
+
resources: ResourceDto[];
|
|
180
|
+
}
|
|
181
|
+
declare const ResourceDisplayList: ({ resources }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
182
|
+
|
|
183
|
+
declare const ResourceIcon: ({ type, }: {
|
|
184
|
+
type: "Collection" | "Dataset" | "Event" | "Image" | "InteractiveResource" | "MovingImage" | "PhysicalObject" | "Service" | "Software" | "Sound" | "StillImage" | "TextBook" | "TextGuideline" | "TextGuidelines" | "TextCaseStudy" | "TextReport" | "TextPolicyBrief" | "TextScientificPublication" | "TextOther";
|
|
185
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
186
|
+
|
|
187
|
+
interface ButtonProps$1 {
|
|
188
|
+
link: string;
|
|
189
|
+
isNewTab: boolean;
|
|
190
|
+
}
|
|
191
|
+
interface ResourceCollectionItemProps {
|
|
192
|
+
title: string;
|
|
193
|
+
text: string;
|
|
194
|
+
button: ButtonProps$1;
|
|
195
|
+
type: string;
|
|
196
|
+
icon: string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
interface Props$5 {
|
|
200
|
+
title: string;
|
|
201
|
+
subtitle: string;
|
|
202
|
+
resourceCollections: ResourceCollectionItemProps[];
|
|
203
|
+
}
|
|
204
|
+
declare const SubtitleH3ResourceCollections: ({ title, subtitle, resourceCollections, }: Props$5) => react_jsx_runtime.JSX.Element;
|
|
205
|
+
|
|
206
|
+
declare const ResourcesSelectedTags: () => react_jsx_runtime.JSX.Element | null;
|
|
207
|
+
|
|
208
|
+
interface KeyResourceItemProps {
|
|
209
|
+
title: string | null | undefined;
|
|
210
|
+
subtitle: string | null | undefined;
|
|
211
|
+
path: string;
|
|
212
|
+
imageId?: string;
|
|
213
|
+
imagePath?: string;
|
|
214
|
+
}
|
|
215
|
+
declare const KeyResourceItem: ({ title, subtitle, path, imageId, imagePath, }: KeyResourceItemProps) => react_jsx_runtime.JSX.Element;
|
|
216
|
+
|
|
217
|
+
interface Props$4 {
|
|
218
|
+
keyResources: KeyResourceItemProps[];
|
|
219
|
+
}
|
|
220
|
+
declare const KeyResourceItemList: ({ keyResources }: Props$4) => react_jsx_runtime.JSX.Element;
|
|
221
|
+
|
|
222
|
+
interface Props$3 {
|
|
223
|
+
title: string;
|
|
224
|
+
subtitle: string;
|
|
225
|
+
keyResources: KeyResourceItemProps[];
|
|
226
|
+
}
|
|
227
|
+
declare const SubtitleH3KeyResources: ({ title, subtitle, keyResources, }: Props$3) => react_jsx_runtime.JSX.Element;
|
|
228
|
+
|
|
229
|
+
interface Props$2 {
|
|
230
|
+
}
|
|
231
|
+
declare const UserInfoPage: NextPage<Props$2>;
|
|
232
|
+
|
|
233
|
+
declare const UpdateUser: () => react_jsx_runtime.JSX.Element;
|
|
234
|
+
|
|
235
|
+
interface ButtonProps {
|
|
236
|
+
link: string;
|
|
237
|
+
isNewTab: boolean;
|
|
238
|
+
contents: React.ReactNode;
|
|
239
|
+
}
|
|
240
|
+
interface FeatureResourcesProps {
|
|
241
|
+
title: string;
|
|
242
|
+
tag: string;
|
|
243
|
+
text: string;
|
|
244
|
+
button: ButtonProps;
|
|
245
|
+
imageType: string;
|
|
246
|
+
}
|
|
247
|
+
declare const FeatureResources: (props: FeatureResourcesProps) => react_jsx_runtime.JSX.Element;
|
|
248
|
+
|
|
249
|
+
interface Props$1 {
|
|
250
|
+
featureResources: FeatureResourcesProps[];
|
|
251
|
+
}
|
|
252
|
+
declare const FeatureResourcesList: ({ featureResources }: Props$1) => react_jsx_runtime.JSX.Element;
|
|
253
|
+
|
|
254
|
+
interface Props {
|
|
255
|
+
title: string;
|
|
256
|
+
subtitle: string;
|
|
257
|
+
description: string;
|
|
258
|
+
featureResources: FeatureResourcesProps[];
|
|
259
|
+
}
|
|
260
|
+
declare const SubtitleH3BodySpecialFeatureResourceCollections: ({ title, subtitle, description, featureResources, }: Props) => react_jsx_runtime.JSX.Element;
|
|
261
|
+
|
|
262
|
+
export { ClusterEditNews, ClusterNewsItem, ClusterNewsList, ClusterViewNews, FarmerClusterBasicInfo, FarmerClusterCreate, FarmerClusterDescription, type FarmerClusterFilterInput, FarmerClusterFinder, FarmerClusterImages, FarmerClusterLinkPartner, FarmerClusterList, FarmerClusterMembers, FarmerClusterNews, FeatureResources, FeatureResourcesList, type FeatureResourcesProps, KeyResourceItem, KeyResourceItemList, type KeyResourceItemProps, LinkPartnerSchema, RecodoViewFarmerCluster, ResourceCard, ResourceCreate, ResourceDisplayList, ResourceEdit, ResourceIcon, ResourceItem, ResourceList, type ResourceProps, ResourceTag, ResourcesQuickFind, ResourcesSelectedTags, SearchFilter, SubtitleH3BodySpecialFeatureResourceCollections, SubtitleH3KeyResources, SubtitleH3ResourceCollections, UpdateUser, UserInfoPage, ViewFarmerCluster };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ViewStatus, DefaultSettings } from '@geowiki/core';
|
|
3
|
+
import { ClusterDto, ResourceFilterInput, ResourceDto, CreateUpdateResourceDto } from '@geowiki/api-proxy';
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
import React$1 from 'react';
|
|
6
|
+
import { NextPage } from 'next';
|
|
7
|
+
|
|
8
|
+
interface Props$9 {
|
|
9
|
+
clusterId: any;
|
|
10
|
+
newsId: any;
|
|
11
|
+
status?: ViewStatus;
|
|
12
|
+
setStatus?: any;
|
|
13
|
+
}
|
|
14
|
+
declare const ClusterViewNews: (props: Props$9) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
interface Props$8 {
|
|
17
|
+
status: ViewStatus;
|
|
18
|
+
setStatus: any;
|
|
19
|
+
clusterId: any;
|
|
20
|
+
newsId: any;
|
|
21
|
+
settings: DefaultSettings;
|
|
22
|
+
refresh?: boolean;
|
|
23
|
+
setRefresh?: any;
|
|
24
|
+
}
|
|
25
|
+
declare const ClusterEditNews: (props: Props$8) => react_jsx_runtime.JSX.Element;
|
|
26
|
+
|
|
27
|
+
interface Props$7 {
|
|
28
|
+
status?: ViewStatus;
|
|
29
|
+
setStatus?: any;
|
|
30
|
+
onEdit?: any;
|
|
31
|
+
onDelete?: any;
|
|
32
|
+
refresh: boolean;
|
|
33
|
+
clusterId: string;
|
|
34
|
+
}
|
|
35
|
+
declare const ClusterNewsList: (props: Props$7) => react_jsx_runtime.JSX.Element;
|
|
36
|
+
|
|
37
|
+
declare const ClusterNewsItem: ({ newsId }: {
|
|
38
|
+
newsId: string;
|
|
39
|
+
}) => react_jsx_runtime.JSX.Element | null;
|
|
40
|
+
|
|
41
|
+
declare const FarmerClusterBasicInfo: () => react_jsx_runtime.JSX.Element;
|
|
42
|
+
|
|
43
|
+
declare const FarmerClusterDescription: () => react_jsx_runtime.JSX.Element;
|
|
44
|
+
|
|
45
|
+
declare const FarmerClusterImages: () => react_jsx_runtime.JSX.Element;
|
|
46
|
+
|
|
47
|
+
interface FarmerClusterMembersProps {
|
|
48
|
+
clusterId: string;
|
|
49
|
+
}
|
|
50
|
+
declare const FarmerClusterMembers: (props: FarmerClusterMembersProps) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
interface FarmerClusterNewsProps {
|
|
53
|
+
clusterId: any;
|
|
54
|
+
route?: any;
|
|
55
|
+
setRoute?: any;
|
|
56
|
+
settings: any;
|
|
57
|
+
}
|
|
58
|
+
declare const FarmerClusterNews: (props: FarmerClusterNewsProps) => react_jsx_runtime.JSX.Element;
|
|
59
|
+
|
|
60
|
+
declare const FarmerClusterList: () => react_jsx_runtime.JSX.Element;
|
|
61
|
+
|
|
62
|
+
interface ViewFarmerClusterProps$1 {
|
|
63
|
+
cluster: ClusterDto;
|
|
64
|
+
}
|
|
65
|
+
declare const ViewFarmerCluster: ({ cluster }: ViewFarmerClusterProps$1) => react_jsx_runtime.JSX.Element;
|
|
66
|
+
|
|
67
|
+
type FarmerClusterFilterInput = {
|
|
68
|
+
pageSize: number;
|
|
69
|
+
currentPage: number;
|
|
70
|
+
skip: number;
|
|
71
|
+
take: number;
|
|
72
|
+
country: string;
|
|
73
|
+
activityStatus: string;
|
|
74
|
+
farmingSystem: string;
|
|
75
|
+
mainCrop: string;
|
|
76
|
+
mainAgriculturalAreas: string;
|
|
77
|
+
sort: string;
|
|
78
|
+
};
|
|
79
|
+
declare const FarmerClusterFinder: () => react_jsx_runtime.JSX.Element;
|
|
80
|
+
|
|
81
|
+
interface ViewFarmerClusterProps {
|
|
82
|
+
cluster: ClusterDto;
|
|
83
|
+
}
|
|
84
|
+
declare const RecodoViewFarmerCluster: ({ cluster, }: ViewFarmerClusterProps) => react_jsx_runtime.JSX.Element;
|
|
85
|
+
|
|
86
|
+
interface ResourcesQuickFindProps {
|
|
87
|
+
}
|
|
88
|
+
declare const ResourcesQuickFind: ({}: ResourcesQuickFindProps) => react_jsx_runtime.JSX.Element;
|
|
89
|
+
|
|
90
|
+
declare const LinkPartnerSchema: z.ZodObject<{
|
|
91
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
92
|
+
name: z.ZodString;
|
|
93
|
+
link: z.ZodString;
|
|
94
|
+
order: z.ZodNumber;
|
|
95
|
+
}, "strip", z.ZodTypeAny, {
|
|
96
|
+
link: string;
|
|
97
|
+
name: string;
|
|
98
|
+
order: number;
|
|
99
|
+
}, {
|
|
100
|
+
link: string;
|
|
101
|
+
name: string;
|
|
102
|
+
order: number;
|
|
103
|
+
}>, "many">>;
|
|
104
|
+
partners: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
105
|
+
name: z.ZodString;
|
|
106
|
+
link: z.ZodString;
|
|
107
|
+
order: z.ZodNumber;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
link: string;
|
|
110
|
+
name: string;
|
|
111
|
+
order: number;
|
|
112
|
+
}, {
|
|
113
|
+
link: string;
|
|
114
|
+
name: string;
|
|
115
|
+
order: number;
|
|
116
|
+
}>, "many">>;
|
|
117
|
+
}, "strip", z.ZodTypeAny, {
|
|
118
|
+
links?: {
|
|
119
|
+
link: string;
|
|
120
|
+
name: string;
|
|
121
|
+
order: number;
|
|
122
|
+
}[] | undefined;
|
|
123
|
+
partners?: {
|
|
124
|
+
link: string;
|
|
125
|
+
name: string;
|
|
126
|
+
order: number;
|
|
127
|
+
}[] | undefined;
|
|
128
|
+
}, {
|
|
129
|
+
links?: {
|
|
130
|
+
link: string;
|
|
131
|
+
name: string;
|
|
132
|
+
order: number;
|
|
133
|
+
}[] | undefined;
|
|
134
|
+
partners?: {
|
|
135
|
+
link: string;
|
|
136
|
+
name: string;
|
|
137
|
+
order: number;
|
|
138
|
+
}[] | undefined;
|
|
139
|
+
}>;
|
|
140
|
+
declare const FarmerClusterLinkPartner: () => react_jsx_runtime.JSX.Element;
|
|
141
|
+
|
|
142
|
+
declare const FarmerClusterCreate: () => react_jsx_runtime.JSX.Element;
|
|
143
|
+
|
|
144
|
+
interface SearchFilterProps {
|
|
145
|
+
filter: ResourceFilterInput;
|
|
146
|
+
setFilter: any;
|
|
147
|
+
}
|
|
148
|
+
declare const SearchFilter: ({ filter, setFilter }: SearchFilterProps) => react_jsx_runtime.JSX.Element;
|
|
149
|
+
|
|
150
|
+
interface ResourceCardProps {
|
|
151
|
+
resource: ResourceDto;
|
|
152
|
+
}
|
|
153
|
+
declare const ResourceCard: ({ resource }: ResourceCardProps) => react_jsx_runtime.JSX.Element;
|
|
154
|
+
|
|
155
|
+
interface ResourceCreateProps {
|
|
156
|
+
resource: CreateUpdateResourceDto;
|
|
157
|
+
setResource: React$1.Dispatch<React$1.SetStateAction<CreateUpdateResourceDto | undefined>>;
|
|
158
|
+
}
|
|
159
|
+
declare const ResourceCreate: ({ resource }: ResourceCreateProps) => react_jsx_runtime.JSX.Element;
|
|
160
|
+
|
|
161
|
+
interface ResourceEditProps {
|
|
162
|
+
}
|
|
163
|
+
declare const ResourceEdit: (_props: ResourceEditProps) => react_jsx_runtime.JSX.Element;
|
|
164
|
+
|
|
165
|
+
declare const ResourceList: () => react_jsx_runtime.JSX.Element;
|
|
166
|
+
|
|
167
|
+
interface ResourceTagProps {
|
|
168
|
+
tag: string;
|
|
169
|
+
type: "language" | "audience" | "topic" | "keyword" | "resourceType";
|
|
170
|
+
}
|
|
171
|
+
declare const ResourceTag: React.FC<ResourceTagProps>;
|
|
172
|
+
|
|
173
|
+
interface ResourceProps {
|
|
174
|
+
resource: ResourceDto;
|
|
175
|
+
}
|
|
176
|
+
declare const ResourceItem: ({ resource }: ResourceProps) => react_jsx_runtime.JSX.Element;
|
|
177
|
+
|
|
178
|
+
interface Props$6 {
|
|
179
|
+
resources: ResourceDto[];
|
|
180
|
+
}
|
|
181
|
+
declare const ResourceDisplayList: ({ resources }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
182
|
+
|
|
183
|
+
declare const ResourceIcon: ({ type, }: {
|
|
184
|
+
type: "Collection" | "Dataset" | "Event" | "Image" | "InteractiveResource" | "MovingImage" | "PhysicalObject" | "Service" | "Software" | "Sound" | "StillImage" | "TextBook" | "TextGuideline" | "TextGuidelines" | "TextCaseStudy" | "TextReport" | "TextPolicyBrief" | "TextScientificPublication" | "TextOther";
|
|
185
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
186
|
+
|
|
187
|
+
interface ButtonProps$1 {
|
|
188
|
+
link: string;
|
|
189
|
+
isNewTab: boolean;
|
|
190
|
+
}
|
|
191
|
+
interface ResourceCollectionItemProps {
|
|
192
|
+
title: string;
|
|
193
|
+
text: string;
|
|
194
|
+
button: ButtonProps$1;
|
|
195
|
+
type: string;
|
|
196
|
+
icon: string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
interface Props$5 {
|
|
200
|
+
title: string;
|
|
201
|
+
subtitle: string;
|
|
202
|
+
resourceCollections: ResourceCollectionItemProps[];
|
|
203
|
+
}
|
|
204
|
+
declare const SubtitleH3ResourceCollections: ({ title, subtitle, resourceCollections, }: Props$5) => react_jsx_runtime.JSX.Element;
|
|
205
|
+
|
|
206
|
+
declare const ResourcesSelectedTags: () => react_jsx_runtime.JSX.Element | null;
|
|
207
|
+
|
|
208
|
+
interface KeyResourceItemProps {
|
|
209
|
+
title: string | null | undefined;
|
|
210
|
+
subtitle: string | null | undefined;
|
|
211
|
+
path: string;
|
|
212
|
+
imageId?: string;
|
|
213
|
+
imagePath?: string;
|
|
214
|
+
}
|
|
215
|
+
declare const KeyResourceItem: ({ title, subtitle, path, imageId, imagePath, }: KeyResourceItemProps) => react_jsx_runtime.JSX.Element;
|
|
216
|
+
|
|
217
|
+
interface Props$4 {
|
|
218
|
+
keyResources: KeyResourceItemProps[];
|
|
219
|
+
}
|
|
220
|
+
declare const KeyResourceItemList: ({ keyResources }: Props$4) => react_jsx_runtime.JSX.Element;
|
|
221
|
+
|
|
222
|
+
interface Props$3 {
|
|
223
|
+
title: string;
|
|
224
|
+
subtitle: string;
|
|
225
|
+
keyResources: KeyResourceItemProps[];
|
|
226
|
+
}
|
|
227
|
+
declare const SubtitleH3KeyResources: ({ title, subtitle, keyResources, }: Props$3) => react_jsx_runtime.JSX.Element;
|
|
228
|
+
|
|
229
|
+
interface Props$2 {
|
|
230
|
+
}
|
|
231
|
+
declare const UserInfoPage: NextPage<Props$2>;
|
|
232
|
+
|
|
233
|
+
declare const UpdateUser: () => react_jsx_runtime.JSX.Element;
|
|
234
|
+
|
|
235
|
+
interface ButtonProps {
|
|
236
|
+
link: string;
|
|
237
|
+
isNewTab: boolean;
|
|
238
|
+
contents: React.ReactNode;
|
|
239
|
+
}
|
|
240
|
+
interface FeatureResourcesProps {
|
|
241
|
+
title: string;
|
|
242
|
+
tag: string;
|
|
243
|
+
text: string;
|
|
244
|
+
button: ButtonProps;
|
|
245
|
+
imageType: string;
|
|
246
|
+
}
|
|
247
|
+
declare const FeatureResources: (props: FeatureResourcesProps) => react_jsx_runtime.JSX.Element;
|
|
248
|
+
|
|
249
|
+
interface Props$1 {
|
|
250
|
+
featureResources: FeatureResourcesProps[];
|
|
251
|
+
}
|
|
252
|
+
declare const FeatureResourcesList: ({ featureResources }: Props$1) => react_jsx_runtime.JSX.Element;
|
|
253
|
+
|
|
254
|
+
interface Props {
|
|
255
|
+
title: string;
|
|
256
|
+
subtitle: string;
|
|
257
|
+
description: string;
|
|
258
|
+
featureResources: FeatureResourcesProps[];
|
|
259
|
+
}
|
|
260
|
+
declare const SubtitleH3BodySpecialFeatureResourceCollections: ({ title, subtitle, description, featureResources, }: Props) => react_jsx_runtime.JSX.Element;
|
|
261
|
+
|
|
262
|
+
export { ClusterEditNews, ClusterNewsItem, ClusterNewsList, ClusterViewNews, FarmerClusterBasicInfo, FarmerClusterCreate, FarmerClusterDescription, type FarmerClusterFilterInput, FarmerClusterFinder, FarmerClusterImages, FarmerClusterLinkPartner, FarmerClusterList, FarmerClusterMembers, FarmerClusterNews, FeatureResources, FeatureResourcesList, type FeatureResourcesProps, KeyResourceItem, KeyResourceItemList, type KeyResourceItemProps, LinkPartnerSchema, RecodoViewFarmerCluster, ResourceCard, ResourceCreate, ResourceDisplayList, ResourceEdit, ResourceIcon, ResourceItem, ResourceList, type ResourceProps, ResourceTag, ResourcesQuickFind, ResourcesSelectedTags, SearchFilter, SubtitleH3BodySpecialFeatureResourceCollections, SubtitleH3KeyResources, SubtitleH3ResourceCollections, UpdateUser, UserInfoPage, ViewFarmerCluster };
|