@paris-ias/trees 2.1.0 → 2.1.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/form/affiliations.cjs.js +134 -6
- package/dist/form/affiliations.js +134 -6
- package/dist/form/events.cjs.js +0 -1
- package/dist/form/events.d.ts +2 -2
- package/dist/form/events.js +0 -1
- package/dist/form/fellowships.cjs.js +2 -1
- package/dist/form/fellowships.d.ts +1 -0
- package/dist/form/fellowships.js +2 -1
- package/dist/form/news.d.ts +7 -7
- package/dist/form/people.cjs.js +65 -0
- package/dist/form/people.d.ts +2 -1
- package/dist/form/people.js +65 -0
- package/dist/form/projects.d.ts +6 -6
- package/dist/form/publications.cjs.js +45 -0
- package/dist/form/publications.d.ts +40 -12
- package/dist/form/publications.js +45 -0
- package/dist/graphql/client/publications/query.get.publications.gql +17 -0
- package/dist/graphql/client/publications/query.list.publications.gql +17 -1
- package/dist/graphql/schemas/schema.apex.graphql +20 -14
- package/dist/graphql/schemas/schema.website.graphql +20 -14
- package/dist/list/events.cjs.js +32 -1
- package/dist/list/events.d.ts +2 -2
- package/dist/list/events.js +32 -1
- package/dist/list/fellowships.cjs.js +2 -1
- package/dist/list/fellowships.d.ts +1 -0
- package/dist/list/fellowships.js +2 -1
- package/dist/list/news.d.ts +7 -7
- package/dist/list/people.cjs.js +62 -0
- package/dist/list/people.d.ts +2 -1
- package/dist/list/people.js +62 -0
- package/dist/list/projects.cjs.js +8 -0
- package/dist/list/projects.d.ts +6 -6
- package/dist/list/projects.js +8 -0
- package/dist/list/publications.cjs.js +1 -0
- package/dist/list/publications.d.ts +40 -12
- package/dist/list/publications.js +1 -0
- package/package.json +3 -3
|
@@ -58,11 +58,28 @@ const data = {
|
|
|
58
58
|
"fr": ""
|
|
59
59
|
},
|
|
60
60
|
"image": "",
|
|
61
|
-
"
|
|
61
|
+
"location": [
|
|
62
62
|
{
|
|
63
|
-
"
|
|
63
|
+
"location": {
|
|
64
|
+
"name": "",
|
|
65
|
+
"acronym": "",
|
|
66
|
+
"image": "",
|
|
67
|
+
"details": {
|
|
68
|
+
"en": "",
|
|
69
|
+
"fr": ""
|
|
70
|
+
},
|
|
71
|
+
"street": "",
|
|
72
|
+
"city": "",
|
|
73
|
+
"country": "",
|
|
74
|
+
"zip": "",
|
|
75
|
+
"geocode": {
|
|
76
|
+
"lat": "",
|
|
77
|
+
"lng": ""
|
|
78
|
+
}
|
|
79
|
+
}
|
|
64
80
|
}
|
|
65
81
|
],
|
|
82
|
+
"category": "",
|
|
66
83
|
"ror": "",
|
|
67
84
|
"url": ""
|
|
68
85
|
},
|
|
@@ -86,21 +103,132 @@ const data = {
|
|
|
86
103
|
"meta": "image",
|
|
87
104
|
"default": ""
|
|
88
105
|
},
|
|
89
|
-
"
|
|
106
|
+
"location": {
|
|
90
107
|
"label": "locations",
|
|
91
108
|
"component": "CollectionContainerPanel",
|
|
92
109
|
"type": "ARRAY",
|
|
93
110
|
"items": {
|
|
94
|
-
"
|
|
111
|
+
"location": {
|
|
95
112
|
"label": "location",
|
|
96
113
|
"component": "ObjectContainerPanel",
|
|
97
|
-
"type": "
|
|
114
|
+
"type": "OBJECT",
|
|
98
115
|
"meta": "location",
|
|
99
|
-
"items": {
|
|
116
|
+
"items": {
|
|
117
|
+
"name": {
|
|
118
|
+
"label": "name",
|
|
119
|
+
"component": "TextField",
|
|
120
|
+
"type": "PRIMITIVE",
|
|
121
|
+
"rules": {
|
|
122
|
+
"required": true,
|
|
123
|
+
"min": 5,
|
|
124
|
+
"max": 200
|
|
125
|
+
},
|
|
126
|
+
"meta": "name"
|
|
127
|
+
},
|
|
128
|
+
"acronym": {
|
|
129
|
+
"label": "acronym",
|
|
130
|
+
"component": "TextField",
|
|
131
|
+
"type": "PRIMITIVE",
|
|
132
|
+
"rules": {
|
|
133
|
+
"max": 20
|
|
134
|
+
},
|
|
135
|
+
"meta": "acronym"
|
|
136
|
+
},
|
|
137
|
+
"image": {
|
|
138
|
+
"label": "image",
|
|
139
|
+
"component": "ImagePicker",
|
|
140
|
+
"type": "DOCUMENT",
|
|
141
|
+
"rules": {},
|
|
142
|
+
"meta": "image",
|
|
143
|
+
"default": ""
|
|
144
|
+
},
|
|
145
|
+
"details": {
|
|
146
|
+
"label": "details",
|
|
147
|
+
"component": "TextArea",
|
|
148
|
+
"type": "PRIMITIVE",
|
|
149
|
+
"i18n": true,
|
|
150
|
+
"rules": {
|
|
151
|
+
"min": 5,
|
|
152
|
+
"max": 2000
|
|
153
|
+
},
|
|
154
|
+
"meta": "details"
|
|
155
|
+
},
|
|
156
|
+
"street": {
|
|
157
|
+
"label": "street",
|
|
158
|
+
"component": "TextField",
|
|
159
|
+
"type": "PRIMITIVE",
|
|
160
|
+
"rules": {
|
|
161
|
+
"required": true,
|
|
162
|
+
"max": 2000
|
|
163
|
+
},
|
|
164
|
+
"meta": "street"
|
|
165
|
+
},
|
|
166
|
+
"city": {
|
|
167
|
+
"label": "city",
|
|
168
|
+
"component": "TextField",
|
|
169
|
+
"type": "PRIMITIVE",
|
|
170
|
+
"rules": {
|
|
171
|
+
"required": true,
|
|
172
|
+
"max": 200
|
|
173
|
+
},
|
|
174
|
+
"meta": "city"
|
|
175
|
+
},
|
|
176
|
+
"country": {
|
|
177
|
+
"label": "country",
|
|
178
|
+
"component": "AutoComplete",
|
|
179
|
+
"type": "PRIMITIVE",
|
|
180
|
+
"meta": "country"
|
|
181
|
+
},
|
|
182
|
+
"zip": {
|
|
183
|
+
"label": "zip",
|
|
184
|
+
"component": "TextField",
|
|
185
|
+
"type": "PRIMITIVE",
|
|
186
|
+
"rules": {
|
|
187
|
+
"required": true,
|
|
188
|
+
"numerical": true
|
|
189
|
+
},
|
|
190
|
+
"meta": "zip"
|
|
191
|
+
},
|
|
192
|
+
"geocode": {
|
|
193
|
+
"label": "geocode",
|
|
194
|
+
"component": "GeocodePicker",
|
|
195
|
+
"type": "OBJECT",
|
|
196
|
+
"rules": {},
|
|
197
|
+
"items": {
|
|
198
|
+
"lat": {
|
|
199
|
+
"label": "latitude",
|
|
200
|
+
"component": false,
|
|
201
|
+
"type": "PRIMITIVE",
|
|
202
|
+
"meta": "latitude"
|
|
203
|
+
},
|
|
204
|
+
"lng": {
|
|
205
|
+
"label": "longitude",
|
|
206
|
+
"component": false,
|
|
207
|
+
"type": "PRIMITIVE",
|
|
208
|
+
"meta": "longitude"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"meta": "geocode"
|
|
212
|
+
}
|
|
213
|
+
}
|
|
100
214
|
}
|
|
101
215
|
},
|
|
102
216
|
"meta": "locations"
|
|
103
217
|
},
|
|
218
|
+
"category": {
|
|
219
|
+
"label": "category",
|
|
220
|
+
"component": "Select",
|
|
221
|
+
"type": "PRIMITIVE",
|
|
222
|
+
"items": {
|
|
223
|
+
"Member": "MEMBER",
|
|
224
|
+
"Support": "SUPPORT",
|
|
225
|
+
"Partner": "PARTNER",
|
|
226
|
+
"Other": "OTHER",
|
|
227
|
+
"Network": "NETWORK"
|
|
228
|
+
},
|
|
229
|
+
"multiple": true,
|
|
230
|
+
"meta": "category"
|
|
231
|
+
},
|
|
104
232
|
"ror": {
|
|
105
233
|
"label": "ror",
|
|
106
234
|
"component": "TextField",
|
|
@@ -56,11 +56,28 @@ const data = {
|
|
|
56
56
|
"fr": ""
|
|
57
57
|
},
|
|
58
58
|
"image": "",
|
|
59
|
-
"
|
|
59
|
+
"location": [
|
|
60
60
|
{
|
|
61
|
-
"
|
|
61
|
+
"location": {
|
|
62
|
+
"name": "",
|
|
63
|
+
"acronym": "",
|
|
64
|
+
"image": "",
|
|
65
|
+
"details": {
|
|
66
|
+
"en": "",
|
|
67
|
+
"fr": ""
|
|
68
|
+
},
|
|
69
|
+
"street": "",
|
|
70
|
+
"city": "",
|
|
71
|
+
"country": "",
|
|
72
|
+
"zip": "",
|
|
73
|
+
"geocode": {
|
|
74
|
+
"lat": "",
|
|
75
|
+
"lng": ""
|
|
76
|
+
}
|
|
77
|
+
}
|
|
62
78
|
}
|
|
63
79
|
],
|
|
80
|
+
"category": "",
|
|
64
81
|
"ror": "",
|
|
65
82
|
"url": ""
|
|
66
83
|
},
|
|
@@ -84,21 +101,132 @@ const data = {
|
|
|
84
101
|
"meta": "image",
|
|
85
102
|
"default": ""
|
|
86
103
|
},
|
|
87
|
-
"
|
|
104
|
+
"location": {
|
|
88
105
|
"label": "locations",
|
|
89
106
|
"component": "CollectionContainerPanel",
|
|
90
107
|
"type": "ARRAY",
|
|
91
108
|
"items": {
|
|
92
|
-
"
|
|
109
|
+
"location": {
|
|
93
110
|
"label": "location",
|
|
94
111
|
"component": "ObjectContainerPanel",
|
|
95
|
-
"type": "
|
|
112
|
+
"type": "OBJECT",
|
|
96
113
|
"meta": "location",
|
|
97
|
-
"items": {
|
|
114
|
+
"items": {
|
|
115
|
+
"name": {
|
|
116
|
+
"label": "name",
|
|
117
|
+
"component": "TextField",
|
|
118
|
+
"type": "PRIMITIVE",
|
|
119
|
+
"rules": {
|
|
120
|
+
"required": true,
|
|
121
|
+
"min": 5,
|
|
122
|
+
"max": 200
|
|
123
|
+
},
|
|
124
|
+
"meta": "name"
|
|
125
|
+
},
|
|
126
|
+
"acronym": {
|
|
127
|
+
"label": "acronym",
|
|
128
|
+
"component": "TextField",
|
|
129
|
+
"type": "PRIMITIVE",
|
|
130
|
+
"rules": {
|
|
131
|
+
"max": 20
|
|
132
|
+
},
|
|
133
|
+
"meta": "acronym"
|
|
134
|
+
},
|
|
135
|
+
"image": {
|
|
136
|
+
"label": "image",
|
|
137
|
+
"component": "ImagePicker",
|
|
138
|
+
"type": "DOCUMENT",
|
|
139
|
+
"rules": {},
|
|
140
|
+
"meta": "image",
|
|
141
|
+
"default": ""
|
|
142
|
+
},
|
|
143
|
+
"details": {
|
|
144
|
+
"label": "details",
|
|
145
|
+
"component": "TextArea",
|
|
146
|
+
"type": "PRIMITIVE",
|
|
147
|
+
"i18n": true,
|
|
148
|
+
"rules": {
|
|
149
|
+
"min": 5,
|
|
150
|
+
"max": 2000
|
|
151
|
+
},
|
|
152
|
+
"meta": "details"
|
|
153
|
+
},
|
|
154
|
+
"street": {
|
|
155
|
+
"label": "street",
|
|
156
|
+
"component": "TextField",
|
|
157
|
+
"type": "PRIMITIVE",
|
|
158
|
+
"rules": {
|
|
159
|
+
"required": true,
|
|
160
|
+
"max": 2000
|
|
161
|
+
},
|
|
162
|
+
"meta": "street"
|
|
163
|
+
},
|
|
164
|
+
"city": {
|
|
165
|
+
"label": "city",
|
|
166
|
+
"component": "TextField",
|
|
167
|
+
"type": "PRIMITIVE",
|
|
168
|
+
"rules": {
|
|
169
|
+
"required": true,
|
|
170
|
+
"max": 200
|
|
171
|
+
},
|
|
172
|
+
"meta": "city"
|
|
173
|
+
},
|
|
174
|
+
"country": {
|
|
175
|
+
"label": "country",
|
|
176
|
+
"component": "AutoComplete",
|
|
177
|
+
"type": "PRIMITIVE",
|
|
178
|
+
"meta": "country"
|
|
179
|
+
},
|
|
180
|
+
"zip": {
|
|
181
|
+
"label": "zip",
|
|
182
|
+
"component": "TextField",
|
|
183
|
+
"type": "PRIMITIVE",
|
|
184
|
+
"rules": {
|
|
185
|
+
"required": true,
|
|
186
|
+
"numerical": true
|
|
187
|
+
},
|
|
188
|
+
"meta": "zip"
|
|
189
|
+
},
|
|
190
|
+
"geocode": {
|
|
191
|
+
"label": "geocode",
|
|
192
|
+
"component": "GeocodePicker",
|
|
193
|
+
"type": "OBJECT",
|
|
194
|
+
"rules": {},
|
|
195
|
+
"items": {
|
|
196
|
+
"lat": {
|
|
197
|
+
"label": "latitude",
|
|
198
|
+
"component": false,
|
|
199
|
+
"type": "PRIMITIVE",
|
|
200
|
+
"meta": "latitude"
|
|
201
|
+
},
|
|
202
|
+
"lng": {
|
|
203
|
+
"label": "longitude",
|
|
204
|
+
"component": false,
|
|
205
|
+
"type": "PRIMITIVE",
|
|
206
|
+
"meta": "longitude"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"meta": "geocode"
|
|
210
|
+
}
|
|
211
|
+
}
|
|
98
212
|
}
|
|
99
213
|
},
|
|
100
214
|
"meta": "locations"
|
|
101
215
|
},
|
|
216
|
+
"category": {
|
|
217
|
+
"label": "category",
|
|
218
|
+
"component": "Select",
|
|
219
|
+
"type": "PRIMITIVE",
|
|
220
|
+
"items": {
|
|
221
|
+
"Member": "MEMBER",
|
|
222
|
+
"Support": "SUPPORT",
|
|
223
|
+
"Partner": "PARTNER",
|
|
224
|
+
"Other": "OTHER",
|
|
225
|
+
"Network": "NETWORK"
|
|
226
|
+
},
|
|
227
|
+
"multiple": true,
|
|
228
|
+
"meta": "category"
|
|
229
|
+
},
|
|
102
230
|
"ror": {
|
|
103
231
|
"label": "ror",
|
|
104
232
|
"component": "TextField",
|
package/dist/form/events.cjs.js
CHANGED
package/dist/form/events.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export interface Events {
|
|
|
12
12
|
delay?: number // 0 - Server & Client -
|
|
13
13
|
description: string // 0 - Server & Client -
|
|
14
14
|
details: String // 0 - Server & Client -
|
|
15
|
-
disciplines?:
|
|
15
|
+
disciplines?: DisciplinesOptions[] // 3 - Server & Client //Inside=> Presentation
|
|
16
16
|
discussants?: RelatedPeople[] // 0 - Server & Client -
|
|
17
17
|
files?: Files[] // 3 - Server & Client -
|
|
18
18
|
lang: string[]
|
|
@@ -36,6 +36,7 @@ export interface Events {
|
|
|
36
36
|
subtitle?: string // 0 - Server &
|
|
37
37
|
summary?: string // 0 - Server & Client -
|
|
38
38
|
tags?: Tag[] // 3 - Server & Client - Inside=> Presentation
|
|
39
|
+
thematics: Thematics[] // 0 - Server & Client
|
|
39
40
|
totalSlots: number // 0 - Server & Client
|
|
40
41
|
eventType: eventType // 0 : online, 1: physical, 2: hybrid// 0 - Server & Client -
|
|
41
42
|
updatedAt: Date // 0 - Server & Client -
|
|
@@ -43,7 +44,6 @@ export interface Events {
|
|
|
43
44
|
}
|
|
44
45
|
|
|
45
46
|
export enum eventState {
|
|
46
|
-
Draft = "DRAFT",
|
|
47
47
|
Published = "PUBLISHED",
|
|
48
48
|
Removed = "REMOVED",
|
|
49
49
|
Finished = "FINISHED",
|
package/dist/form/events.js
CHANGED
package/dist/form/fellowships.js
CHANGED
package/dist/form/news.d.ts
CHANGED
|
@@ -3,19 +3,19 @@ import type { Form } from "../../index"
|
|
|
3
3
|
// Inline type definitions
|
|
4
4
|
export interface News {
|
|
5
5
|
name: string
|
|
6
|
-
|
|
7
|
-
category?: newsCategories
|
|
6
|
+
subtitle?: string
|
|
8
7
|
description?: string
|
|
9
8
|
summary?: string
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
image?: Image
|
|
9
|
+
url?: URL
|
|
10
|
+
related?: Related[]
|
|
13
11
|
gallery?: Image[]
|
|
12
|
+
image?: Image
|
|
13
|
+
tags?: Tag[]
|
|
14
|
+
authors: [RelatedPeople]
|
|
15
|
+
category?: newsCategories
|
|
14
16
|
color?: string
|
|
15
|
-
url?: URL
|
|
16
17
|
date?: Date
|
|
17
18
|
featured?: Date
|
|
18
|
-
related?: Related[]
|
|
19
19
|
files?: Files
|
|
20
20
|
}
|
|
21
21
|
|
package/dist/form/people.cjs.js
CHANGED
|
@@ -92,6 +92,7 @@ const data = {
|
|
|
92
92
|
"youtube": ""
|
|
93
93
|
},
|
|
94
94
|
"disciplines": "",
|
|
95
|
+
"thematics": "",
|
|
95
96
|
"video": [
|
|
96
97
|
{
|
|
97
98
|
"video": {
|
|
@@ -397,6 +398,70 @@ const data = {
|
|
|
397
398
|
"component": "DocumentPicker",
|
|
398
399
|
"type": "DOCUMENT",
|
|
399
400
|
"meta": "disciplines",
|
|
401
|
+
"items": {
|
|
402
|
+
"AnthropologyAndEthnology": "ANTHROPOLOGY_AND_ETHNOLOGY",
|
|
403
|
+
"ArchitectureAndUrbanPlanning": "ARCHITECTURE_AND_URBAN_PLANNING",
|
|
404
|
+
"Archaeology": "ARCHAEOLOGY",
|
|
405
|
+
"ArtAndHistoryOfArt": "ART_AND_HISTORY_OF_ART",
|
|
406
|
+
"ClassicalStudies": "CLASSICAL_STUDIES",
|
|
407
|
+
"Demography": "DEMOGRAPHY",
|
|
408
|
+
"DigitalHumanities": "DIGITAL_HUMANITIES",
|
|
409
|
+
"Economics": "ECONOMICS",
|
|
410
|
+
"EducationSciences": "EDUCATION_SCIENCES",
|
|
411
|
+
"EnvironmentalSciences": "ENVIRONMENTAL_SCIENCES",
|
|
412
|
+
"Geography": "GEOGRAPHY",
|
|
413
|
+
"History": "HISTORY",
|
|
414
|
+
"InformationAndCommunicationSciences": "INFORMATION_AND_COMMUNICATION_SCIENCES",
|
|
415
|
+
"InternationalRelations": "INTERNATIONAL_RELATIONS",
|
|
416
|
+
"Law": "LAW",
|
|
417
|
+
"Linguistics": "LINGUISTICS",
|
|
418
|
+
"Literature": "LITERATURE",
|
|
419
|
+
"ManagementAndPublicAdministration": "MANAGEMENT_AND_PUBLIC_ADMINISTRATION",
|
|
420
|
+
"NeurosciencesAndCognitiveSciences": "NEUROSCIENCES_AND_COGNITIVE_SCIENCES",
|
|
421
|
+
"Philosophy": "PHILOSOPHY",
|
|
422
|
+
"PoliticalScience": "POLITICAL_SCIENCE",
|
|
423
|
+
"Psychology": "PSYCHOLOGY",
|
|
424
|
+
"Sociology": "SOCIOLOGY",
|
|
425
|
+
"StudiesInScienceAndTechnology": "STUDIES_IN_SCIENCE_AND_TECHNOLOGY",
|
|
426
|
+
"Theology": "THEOLOGY",
|
|
427
|
+
"Biology": "BIOLOGY",
|
|
428
|
+
"Chemistry": "CHEMISTRY",
|
|
429
|
+
"ComputerScience": "COMPUTER_SCIENCE",
|
|
430
|
+
"Medicine": "MEDICINE",
|
|
431
|
+
"PhysicsMathematicsAndEngineering": "PHYSICS_MATHEMATICS_AND_ENGINEERING"
|
|
432
|
+
},
|
|
433
|
+
"default": ""
|
|
434
|
+
},
|
|
435
|
+
"thematics": {
|
|
436
|
+
"label": "thematics",
|
|
437
|
+
"component": "DocumentPicker",
|
|
438
|
+
"type": "DOCUMENT",
|
|
439
|
+
"meta": "thematics",
|
|
440
|
+
"items": {
|
|
441
|
+
"AgricultureAndFood": "AGRICULTURE_AND_FOOD",
|
|
442
|
+
"ArtificialIntelligence": "ARTIFICIAL_INTELLIGENCE",
|
|
443
|
+
"CommunicationAndDigitalEconomy": "COMMUNICATION_AND_DIGITAL_ECONOMY",
|
|
444
|
+
"BehaviourPerceptionEmotions": "BEHAVIOUR_PERCEPTION_EMOTIONS",
|
|
445
|
+
"CitiesAndRegions": "CITIES_AND_REGIONS",
|
|
446
|
+
"CulturalHeritage": "CULTURAL_HERITAGE",
|
|
447
|
+
"DemocracyCitizenshipAndGovernance": "DEMOCRACY_CITIZENSHIP_AND_GOVERNANCE",
|
|
448
|
+
"EducationAndResearch": "EDUCATION_AND_RESEARCH",
|
|
449
|
+
"EnergyNaturalResources": "ENERGY_NATURAL_RESOURCES",
|
|
450
|
+
"EnvironmentAndClimate": "ENVIRONMENT_AND_CLIMATE",
|
|
451
|
+
"IdentitiesGenderAndSexualities": "IDENTITIES_GENDER_AND_SEXUALITIES",
|
|
452
|
+
"InequalitiesInclusionSocialInnovation": "INEQUALITIES_INCLUSION_SOCIAL_INNOVATION",
|
|
453
|
+
"Migrations": "MIGRATIONS",
|
|
454
|
+
"Oceans": "OCEANS",
|
|
455
|
+
"PublicPolicies": "PUBLIC_POLICIES",
|
|
456
|
+
"RadicalisationViolenceExtremism": "RADICALISATION_VIOLENCE_EXTREMISM",
|
|
457
|
+
"RegulationAndGlobalisation": "REGULATION_AND_GLOBALISATION",
|
|
458
|
+
"ReligionSecularismSocieties": "RELIGION_SECULARISM_SOCIETIES",
|
|
459
|
+
"HealthAndAgeing": "HEALTH_AND_AGEING",
|
|
460
|
+
"SecurityWarAndPeace": "SECURITY_WAR_AND_PEACE",
|
|
461
|
+
"Space": "SPACE",
|
|
462
|
+
"TransportMobilityTourism": "TRANSPORT_MOBILITY_TOURISM",
|
|
463
|
+
"WorkInnovationTechnology": "WORK_INNOVATION_TECHNOLOGY"
|
|
464
|
+
},
|
|
400
465
|
"default": ""
|
|
401
466
|
},
|
|
402
467
|
"video": {
|
package/dist/form/people.d.ts
CHANGED
package/dist/form/people.js
CHANGED
|
@@ -90,6 +90,7 @@ const data = {
|
|
|
90
90
|
"youtube": ""
|
|
91
91
|
},
|
|
92
92
|
"disciplines": "",
|
|
93
|
+
"thematics": "",
|
|
93
94
|
"video": [
|
|
94
95
|
{
|
|
95
96
|
"video": {
|
|
@@ -395,6 +396,70 @@ const data = {
|
|
|
395
396
|
"component": "DocumentPicker",
|
|
396
397
|
"type": "DOCUMENT",
|
|
397
398
|
"meta": "disciplines",
|
|
399
|
+
"items": {
|
|
400
|
+
"AnthropologyAndEthnology": "ANTHROPOLOGY_AND_ETHNOLOGY",
|
|
401
|
+
"ArchitectureAndUrbanPlanning": "ARCHITECTURE_AND_URBAN_PLANNING",
|
|
402
|
+
"Archaeology": "ARCHAEOLOGY",
|
|
403
|
+
"ArtAndHistoryOfArt": "ART_AND_HISTORY_OF_ART",
|
|
404
|
+
"ClassicalStudies": "CLASSICAL_STUDIES",
|
|
405
|
+
"Demography": "DEMOGRAPHY",
|
|
406
|
+
"DigitalHumanities": "DIGITAL_HUMANITIES",
|
|
407
|
+
"Economics": "ECONOMICS",
|
|
408
|
+
"EducationSciences": "EDUCATION_SCIENCES",
|
|
409
|
+
"EnvironmentalSciences": "ENVIRONMENTAL_SCIENCES",
|
|
410
|
+
"Geography": "GEOGRAPHY",
|
|
411
|
+
"History": "HISTORY",
|
|
412
|
+
"InformationAndCommunicationSciences": "INFORMATION_AND_COMMUNICATION_SCIENCES",
|
|
413
|
+
"InternationalRelations": "INTERNATIONAL_RELATIONS",
|
|
414
|
+
"Law": "LAW",
|
|
415
|
+
"Linguistics": "LINGUISTICS",
|
|
416
|
+
"Literature": "LITERATURE",
|
|
417
|
+
"ManagementAndPublicAdministration": "MANAGEMENT_AND_PUBLIC_ADMINISTRATION",
|
|
418
|
+
"NeurosciencesAndCognitiveSciences": "NEUROSCIENCES_AND_COGNITIVE_SCIENCES",
|
|
419
|
+
"Philosophy": "PHILOSOPHY",
|
|
420
|
+
"PoliticalScience": "POLITICAL_SCIENCE",
|
|
421
|
+
"Psychology": "PSYCHOLOGY",
|
|
422
|
+
"Sociology": "SOCIOLOGY",
|
|
423
|
+
"StudiesInScienceAndTechnology": "STUDIES_IN_SCIENCE_AND_TECHNOLOGY",
|
|
424
|
+
"Theology": "THEOLOGY",
|
|
425
|
+
"Biology": "BIOLOGY",
|
|
426
|
+
"Chemistry": "CHEMISTRY",
|
|
427
|
+
"ComputerScience": "COMPUTER_SCIENCE",
|
|
428
|
+
"Medicine": "MEDICINE",
|
|
429
|
+
"PhysicsMathematicsAndEngineering": "PHYSICS_MATHEMATICS_AND_ENGINEERING"
|
|
430
|
+
},
|
|
431
|
+
"default": ""
|
|
432
|
+
},
|
|
433
|
+
"thematics": {
|
|
434
|
+
"label": "thematics",
|
|
435
|
+
"component": "DocumentPicker",
|
|
436
|
+
"type": "DOCUMENT",
|
|
437
|
+
"meta": "thematics",
|
|
438
|
+
"items": {
|
|
439
|
+
"AgricultureAndFood": "AGRICULTURE_AND_FOOD",
|
|
440
|
+
"ArtificialIntelligence": "ARTIFICIAL_INTELLIGENCE",
|
|
441
|
+
"CommunicationAndDigitalEconomy": "COMMUNICATION_AND_DIGITAL_ECONOMY",
|
|
442
|
+
"BehaviourPerceptionEmotions": "BEHAVIOUR_PERCEPTION_EMOTIONS",
|
|
443
|
+
"CitiesAndRegions": "CITIES_AND_REGIONS",
|
|
444
|
+
"CulturalHeritage": "CULTURAL_HERITAGE",
|
|
445
|
+
"DemocracyCitizenshipAndGovernance": "DEMOCRACY_CITIZENSHIP_AND_GOVERNANCE",
|
|
446
|
+
"EducationAndResearch": "EDUCATION_AND_RESEARCH",
|
|
447
|
+
"EnergyNaturalResources": "ENERGY_NATURAL_RESOURCES",
|
|
448
|
+
"EnvironmentAndClimate": "ENVIRONMENT_AND_CLIMATE",
|
|
449
|
+
"IdentitiesGenderAndSexualities": "IDENTITIES_GENDER_AND_SEXUALITIES",
|
|
450
|
+
"InequalitiesInclusionSocialInnovation": "INEQUALITIES_INCLUSION_SOCIAL_INNOVATION",
|
|
451
|
+
"Migrations": "MIGRATIONS",
|
|
452
|
+
"Oceans": "OCEANS",
|
|
453
|
+
"PublicPolicies": "PUBLIC_POLICIES",
|
|
454
|
+
"RadicalisationViolenceExtremism": "RADICALISATION_VIOLENCE_EXTREMISM",
|
|
455
|
+
"RegulationAndGlobalisation": "REGULATION_AND_GLOBALISATION",
|
|
456
|
+
"ReligionSecularismSocieties": "RELIGION_SECULARISM_SOCIETIES",
|
|
457
|
+
"HealthAndAgeing": "HEALTH_AND_AGEING",
|
|
458
|
+
"SecurityWarAndPeace": "SECURITY_WAR_AND_PEACE",
|
|
459
|
+
"Space": "SPACE",
|
|
460
|
+
"TransportMobilityTourism": "TRANSPORT_MOBILITY_TOURISM",
|
|
461
|
+
"WorkInnovationTechnology": "WORK_INNOVATION_TECHNOLOGY"
|
|
462
|
+
},
|
|
398
463
|
"default": ""
|
|
399
464
|
},
|
|
400
465
|
"video": {
|
package/dist/form/projects.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import type { Form } from "../../index"
|
|
2
2
|
|
|
3
3
|
// Inline type definitions
|
|
4
|
+
export enum projectTypes {
|
|
5
|
+
Initiative = "INITIATIVE",
|
|
6
|
+
Platform = "PLATFORM",
|
|
7
|
+
Research = "RESEARCH",
|
|
8
|
+
}
|
|
9
|
+
|
|
4
10
|
export interface Projects {
|
|
5
11
|
name: string
|
|
6
12
|
subtitle?: string
|
|
@@ -21,12 +27,6 @@ export interface Projects {
|
|
|
21
27
|
type: projectTypes
|
|
22
28
|
}
|
|
23
29
|
|
|
24
|
-
export enum projectTypes {
|
|
25
|
-
Initiative = "INITIATIVE",
|
|
26
|
-
Platform = "PLATFORM",
|
|
27
|
-
Research = "RESEARCH",
|
|
28
|
-
}
|
|
29
|
-
|
|
30
30
|
export enum projectStatus {
|
|
31
31
|
Planned = "PLANNED",
|
|
32
32
|
InProgress = "IN_PROGRESS",
|