@paris-ias/trees 2.0.21 → 2.0.23
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/actions.cjs.js +17 -17
- package/dist/form/actions.d.ts +11 -0
- package/dist/form/actions.js +17 -17
- package/dist/form/affiliations.cjs.js +19 -124
- package/dist/form/affiliations.js +19 -124
- package/dist/form/apps.cjs.js +1 -1
- package/dist/form/apps.js +1 -1
- package/dist/form/disciplines.cjs.js +13 -2
- package/dist/form/disciplines.js +13 -2
- package/dist/form/events.cjs.js +106 -131
- package/dist/form/events.js +106 -131
- package/dist/form/fellowships.cjs.js +92 -100
- package/dist/form/fellowships.js +92 -100
- package/dist/form/mailing.cjs.js +3 -4
- package/dist/form/mailing.d.ts +1 -0
- package/dist/form/mailing.js +3 -4
- package/dist/form/news.cjs.js +49 -61
- package/dist/form/news.js +49 -61
- package/dist/form/people.cjs.js +1 -6
- package/dist/form/people.js +1 -6
- package/dist/form/projects.cjs.js +17 -17
- package/dist/form/projects.js +17 -17
- package/dist/form/publications.cjs.js +3 -10
- package/dist/form/publications.js +3 -10
- package/dist/form/tags.cjs.js +9 -0
- package/dist/form/tags.js +9 -0
- package/dist/form/users.cjs.js +1 -6
- package/dist/form/users.js +1 -6
- package/dist/list/actions.d.ts +11 -0
- package/dist/list/affiliations.cjs.js +1 -7
- package/dist/list/affiliations.js +1 -7
- package/dist/list/mailing.d.ts +1 -0
- package/package.json +1 -1
package/dist/form/events.js
CHANGED
|
@@ -57,6 +57,7 @@ const data = {
|
|
|
57
57
|
},
|
|
58
58
|
"start": "",
|
|
59
59
|
"stop": "",
|
|
60
|
+
"image": "",
|
|
60
61
|
"subtitle": {
|
|
61
62
|
"en": "",
|
|
62
63
|
"fr": ""
|
|
@@ -79,7 +80,7 @@ const data = {
|
|
|
79
80
|
"en": "",
|
|
80
81
|
"fr": ""
|
|
81
82
|
},
|
|
82
|
-
"
|
|
83
|
+
"affiliations": "",
|
|
83
84
|
"appId": "",
|
|
84
85
|
"bookingState": "",
|
|
85
86
|
"delay": "",
|
|
@@ -88,15 +89,10 @@ const data = {
|
|
|
88
89
|
"fr": ""
|
|
89
90
|
},
|
|
90
91
|
"disciplines": "",
|
|
91
|
-
"discussants":
|
|
92
|
-
{
|
|
93
|
-
"discussants": ""
|
|
94
|
-
}
|
|
95
|
-
],
|
|
92
|
+
"discussants": "",
|
|
96
93
|
"organiserType": "",
|
|
97
94
|
"lang": "",
|
|
98
95
|
"files": "",
|
|
99
|
-
"image": "",
|
|
100
96
|
"gallery": "",
|
|
101
97
|
"eventSlot": [
|
|
102
98
|
{
|
|
@@ -107,17 +103,13 @@ const data = {
|
|
|
107
103
|
"lang": ""
|
|
108
104
|
}
|
|
109
105
|
],
|
|
110
|
-
"organizers":
|
|
111
|
-
{
|
|
112
|
-
"organizers": ""
|
|
113
|
-
}
|
|
114
|
-
],
|
|
115
|
-
"organizerState": "",
|
|
106
|
+
"organizers": "",
|
|
116
107
|
"outside": false,
|
|
117
108
|
"location": {
|
|
118
109
|
"name": "",
|
|
110
|
+
"acronym": "",
|
|
111
|
+
"image": "",
|
|
119
112
|
"details": "",
|
|
120
|
-
"alt": "",
|
|
121
113
|
"street": "",
|
|
122
114
|
"city": "",
|
|
123
115
|
"country": "",
|
|
@@ -135,11 +127,7 @@ const data = {
|
|
|
135
127
|
"projects": "",
|
|
136
128
|
"fellowships": ""
|
|
137
129
|
},
|
|
138
|
-
"speakers":
|
|
139
|
-
{
|
|
140
|
-
"speakers": ""
|
|
141
|
-
}
|
|
142
|
-
],
|
|
130
|
+
"speakers": "",
|
|
143
131
|
"state": "",
|
|
144
132
|
"tags": "",
|
|
145
133
|
"totalSlots": "",
|
|
@@ -155,7 +143,7 @@ const data = {
|
|
|
155
143
|
"rules": {
|
|
156
144
|
"required": true,
|
|
157
145
|
"min": 5,
|
|
158
|
-
"max":
|
|
146
|
+
"max": 300
|
|
159
147
|
},
|
|
160
148
|
"meta": "name"
|
|
161
149
|
},
|
|
@@ -179,6 +167,16 @@ const data = {
|
|
|
179
167
|
},
|
|
180
168
|
"meta": "stop"
|
|
181
169
|
},
|
|
170
|
+
"image": {
|
|
171
|
+
"label": "image",
|
|
172
|
+
"component": "ImagePicker",
|
|
173
|
+
"type": "DOCUMENT",
|
|
174
|
+
"rules": {
|
|
175
|
+
"required": true
|
|
176
|
+
},
|
|
177
|
+
"meta": "image",
|
|
178
|
+
"default": ""
|
|
179
|
+
},
|
|
182
180
|
"subtitle": {
|
|
183
181
|
"label": "subtitle",
|
|
184
182
|
"component": "TextArea",
|
|
@@ -187,7 +185,7 @@ const data = {
|
|
|
187
185
|
"rules": {
|
|
188
186
|
"required": true,
|
|
189
187
|
"min": 5,
|
|
190
|
-
"max":
|
|
188
|
+
"max": 400
|
|
191
189
|
},
|
|
192
190
|
"meta": "subtitle"
|
|
193
191
|
},
|
|
@@ -195,9 +193,9 @@ const data = {
|
|
|
195
193
|
"label": "summary",
|
|
196
194
|
"component": "TextArea",
|
|
197
195
|
"type": "PRIMITIVE",
|
|
196
|
+
"description": "Will be extracted from description if left empty",
|
|
198
197
|
"i18n": true,
|
|
199
198
|
"rules": {
|
|
200
|
-
"required": true,
|
|
201
199
|
"min": 5,
|
|
202
200
|
"max": 200
|
|
203
201
|
},
|
|
@@ -250,8 +248,11 @@ const data = {
|
|
|
250
248
|
"rules": {
|
|
251
249
|
"required": true,
|
|
252
250
|
"min": 5,
|
|
253
|
-
"max":
|
|
251
|
+
"max": 2000
|
|
254
252
|
},
|
|
253
|
+
"transformers": [
|
|
254
|
+
"CANDIDATES"
|
|
255
|
+
],
|
|
255
256
|
"meta": "description"
|
|
256
257
|
},
|
|
257
258
|
"details": {
|
|
@@ -262,8 +263,11 @@ const data = {
|
|
|
262
263
|
"rules": {
|
|
263
264
|
"required": true,
|
|
264
265
|
"min": 5,
|
|
265
|
-
"max":
|
|
266
|
+
"max": 2000
|
|
266
267
|
},
|
|
268
|
+
"transformers": [
|
|
269
|
+
"CANDIDATES"
|
|
270
|
+
],
|
|
267
271
|
"meta": "details"
|
|
268
272
|
},
|
|
269
273
|
"program": {
|
|
@@ -274,17 +278,17 @@ const data = {
|
|
|
274
278
|
"rules": {
|
|
275
279
|
"required": true,
|
|
276
280
|
"min": 5,
|
|
277
|
-
"max":
|
|
281
|
+
"max": 2000
|
|
278
282
|
},
|
|
283
|
+
"transformers": [
|
|
284
|
+
"CANDIDATES"
|
|
285
|
+
],
|
|
279
286
|
"meta": "program"
|
|
280
287
|
},
|
|
281
|
-
"
|
|
288
|
+
"affiliations": {
|
|
282
289
|
"label": "affiliations",
|
|
283
|
-
"component": "
|
|
290
|
+
"component": "DocumentPicker",
|
|
284
291
|
"type": "DOCUMENT",
|
|
285
|
-
"rules": {
|
|
286
|
-
"required": true
|
|
287
|
-
},
|
|
288
292
|
"meta": "affiliations",
|
|
289
293
|
"default": ""
|
|
290
294
|
},
|
|
@@ -307,15 +311,16 @@ const data = {
|
|
|
307
311
|
"type": "PRIMITIVE",
|
|
308
312
|
"default": 0,
|
|
309
313
|
"rules": {
|
|
310
|
-
"
|
|
314
|
+
"numerical": true
|
|
311
315
|
},
|
|
312
316
|
"meta": "delay"
|
|
313
317
|
},
|
|
314
318
|
"dateText": {
|
|
315
319
|
"label": "dateText",
|
|
316
|
-
"component": "
|
|
320
|
+
"component": "TextField",
|
|
317
321
|
"type": "PRIMITIVE",
|
|
318
322
|
"i18n": true,
|
|
323
|
+
"hint": "full text date for details and nuances, e.g. Mondays, Wednesdays and Fridays, from 10 am to 12 pm, from September 20 to December 15, 2023",
|
|
319
324
|
"rules": {
|
|
320
325
|
"min": 5,
|
|
321
326
|
"max": 200
|
|
@@ -336,18 +341,10 @@ const data = {
|
|
|
336
341
|
},
|
|
337
342
|
"discussants": {
|
|
338
343
|
"label": "discussants",
|
|
339
|
-
"component": "
|
|
340
|
-
"type": "
|
|
341
|
-
"
|
|
342
|
-
|
|
343
|
-
"label": "discussants",
|
|
344
|
-
"component": "DocumentPicker",
|
|
345
|
-
"type": "DOCUMENT",
|
|
346
|
-
"meta": "discussants",
|
|
347
|
-
"default": ""
|
|
348
|
-
}
|
|
349
|
-
},
|
|
350
|
-
"meta": "discussants"
|
|
344
|
+
"component": "DocumentPicker",
|
|
345
|
+
"type": "DOCUMENT",
|
|
346
|
+
"meta": "discussants",
|
|
347
|
+
"default": ""
|
|
351
348
|
},
|
|
352
349
|
"organiserType": {
|
|
353
350
|
"label": "organiserType",
|
|
@@ -368,6 +365,10 @@ const data = {
|
|
|
368
365
|
"label": "lang",
|
|
369
366
|
"component": "Select",
|
|
370
367
|
"type": "PRIMITIVE",
|
|
368
|
+
"items": {
|
|
369
|
+
"EN": "en",
|
|
370
|
+
"FR": "fr"
|
|
371
|
+
},
|
|
371
372
|
"rules": {
|
|
372
373
|
"required": true
|
|
373
374
|
},
|
|
@@ -383,16 +384,6 @@ const data = {
|
|
|
383
384
|
"meta": "files",
|
|
384
385
|
"default": ""
|
|
385
386
|
},
|
|
386
|
-
"image": {
|
|
387
|
-
"label": "image",
|
|
388
|
-
"component": "ImagePicker",
|
|
389
|
-
"type": "DOCUMENT",
|
|
390
|
-
"rules": {
|
|
391
|
-
"required": true
|
|
392
|
-
},
|
|
393
|
-
"meta": "image",
|
|
394
|
-
"default": ""
|
|
395
|
-
},
|
|
396
387
|
"gallery": {
|
|
397
388
|
"label": "gallery",
|
|
398
389
|
"component": "ImagePicker",
|
|
@@ -457,43 +448,29 @@ const data = {
|
|
|
457
448
|
"rules": {
|
|
458
449
|
"required": true
|
|
459
450
|
},
|
|
451
|
+
"items": {
|
|
452
|
+
"EN": "en",
|
|
453
|
+
"FR": "fr"
|
|
454
|
+
},
|
|
460
455
|
"meta": "lang"
|
|
461
456
|
}
|
|
462
457
|
}
|
|
463
458
|
},
|
|
464
459
|
"organizers": {
|
|
465
460
|
"label": "organizers",
|
|
466
|
-
"component": "
|
|
467
|
-
"type": "
|
|
468
|
-
"
|
|
469
|
-
"organizers": {
|
|
470
|
-
"label": "organizers",
|
|
471
|
-
"component": "DocumentPicker",
|
|
472
|
-
"type": "DOCUMENT",
|
|
473
|
-
"meta": "organizers",
|
|
474
|
-
"default": ""
|
|
475
|
-
}
|
|
476
|
-
},
|
|
477
|
-
"meta": "organizers"
|
|
478
|
-
},
|
|
479
|
-
"organizerState": {
|
|
480
|
-
"label": "organizerState",
|
|
481
|
-
"component": "ListRadio",
|
|
482
|
-
"type": "PRIMITIVE",
|
|
461
|
+
"component": "DocumentPicker",
|
|
462
|
+
"type": "DOCUMENT",
|
|
463
|
+
"meta": "organizers",
|
|
483
464
|
"rules": {
|
|
484
|
-
"
|
|
465
|
+
"max": 20
|
|
485
466
|
},
|
|
486
|
-
"
|
|
467
|
+
"default": ""
|
|
487
468
|
},
|
|
488
469
|
"outside": {
|
|
489
470
|
"label": "outside",
|
|
490
471
|
"component": "Checkbox",
|
|
472
|
+
"hint": "Tick this to indicate the event is not taking place at hotel de Lauzun",
|
|
491
473
|
"type": "PRIMITIVE",
|
|
492
|
-
"rules": {
|
|
493
|
-
"required": true,
|
|
494
|
-
"min": 5,
|
|
495
|
-
"max": 200
|
|
496
|
-
},
|
|
497
474
|
"meta": "outside"
|
|
498
475
|
},
|
|
499
476
|
"location": {
|
|
@@ -503,6 +480,15 @@ const data = {
|
|
|
503
480
|
"rules": {
|
|
504
481
|
"required": true
|
|
505
482
|
},
|
|
483
|
+
"show": {
|
|
484
|
+
"switchIf": [
|
|
485
|
+
{
|
|
486
|
+
"outside": false
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"default": true,
|
|
490
|
+
"disjonctive": false
|
|
491
|
+
},
|
|
506
492
|
"meta": "place",
|
|
507
493
|
"items": {
|
|
508
494
|
"name": {
|
|
@@ -516,27 +502,34 @@ const data = {
|
|
|
516
502
|
},
|
|
517
503
|
"meta": "name"
|
|
518
504
|
},
|
|
519
|
-
"
|
|
520
|
-
"label": "
|
|
521
|
-
"component": "
|
|
505
|
+
"acronym": {
|
|
506
|
+
"label": "acronym",
|
|
507
|
+
"component": "TextField",
|
|
522
508
|
"type": "PRIMITIVE",
|
|
523
509
|
"rules": {
|
|
524
|
-
"
|
|
525
|
-
"min": 5,
|
|
526
|
-
"max": 200
|
|
510
|
+
"max": 20
|
|
527
511
|
},
|
|
528
|
-
"meta": "
|
|
512
|
+
"meta": "acronym"
|
|
513
|
+
},
|
|
514
|
+
"image": {
|
|
515
|
+
"label": "image",
|
|
516
|
+
"component": "ImagePicker",
|
|
517
|
+
"type": "DOCUMENT",
|
|
518
|
+
"rules": {
|
|
519
|
+
"required": true
|
|
520
|
+
},
|
|
521
|
+
"meta": "image",
|
|
522
|
+
"default": ""
|
|
529
523
|
},
|
|
530
|
-
"
|
|
531
|
-
"label": "
|
|
524
|
+
"details": {
|
|
525
|
+
"label": "details",
|
|
532
526
|
"component": "TextArea",
|
|
533
527
|
"type": "PRIMITIVE",
|
|
534
528
|
"rules": {
|
|
535
|
-
"required": true,
|
|
536
529
|
"min": 5,
|
|
537
|
-
"max":
|
|
530
|
+
"max": 2000
|
|
538
531
|
},
|
|
539
|
-
"meta": "
|
|
532
|
+
"meta": "details"
|
|
540
533
|
},
|
|
541
534
|
"street": {
|
|
542
535
|
"label": "street",
|
|
@@ -544,7 +537,7 @@ const data = {
|
|
|
544
537
|
"type": "PRIMITIVE",
|
|
545
538
|
"rules": {
|
|
546
539
|
"required": true,
|
|
547
|
-
"max":
|
|
540
|
+
"max": 2000
|
|
548
541
|
},
|
|
549
542
|
"meta": "street"
|
|
550
543
|
},
|
|
@@ -570,41 +563,26 @@ const data = {
|
|
|
570
563
|
"type": "PRIMITIVE",
|
|
571
564
|
"rules": {
|
|
572
565
|
"required": true,
|
|
573
|
-
"
|
|
574
|
-
"max": 200
|
|
566
|
+
"numerical": true
|
|
575
567
|
},
|
|
576
568
|
"meta": "zip"
|
|
577
569
|
},
|
|
578
570
|
"geocode": {
|
|
579
571
|
"label": "geocode",
|
|
580
|
-
"component": "
|
|
572
|
+
"component": "GeocodePicker",
|
|
581
573
|
"type": "OBJECT",
|
|
582
|
-
"rules": {
|
|
583
|
-
"required": true,
|
|
584
|
-
"min": 5,
|
|
585
|
-
"max": 200
|
|
586
|
-
},
|
|
574
|
+
"rules": {},
|
|
587
575
|
"items": {
|
|
588
576
|
"lat": {
|
|
589
577
|
"label": "latitude",
|
|
590
|
-
"component":
|
|
578
|
+
"component": false,
|
|
591
579
|
"type": "PRIMITIVE",
|
|
592
|
-
"rules": {
|
|
593
|
-
"required": true,
|
|
594
|
-
"min": 5,
|
|
595
|
-
"max": 200
|
|
596
|
-
},
|
|
597
580
|
"meta": "latitude"
|
|
598
581
|
},
|
|
599
582
|
"lng": {
|
|
600
583
|
"label": "longitude",
|
|
601
|
-
"component":
|
|
584
|
+
"component": false,
|
|
602
585
|
"type": "PRIMITIVE",
|
|
603
|
-
"rules": {
|
|
604
|
-
"required": true,
|
|
605
|
-
"min": 5,
|
|
606
|
-
"max": 200
|
|
607
|
-
},
|
|
608
586
|
"meta": "longitude"
|
|
609
587
|
}
|
|
610
588
|
},
|
|
@@ -616,11 +594,6 @@ const data = {
|
|
|
616
594
|
"label": "related",
|
|
617
595
|
"component": "ObjectContainerPanel",
|
|
618
596
|
"type": "OBJECT",
|
|
619
|
-
"rules": {
|
|
620
|
-
"required": true,
|
|
621
|
-
"min": 5,
|
|
622
|
-
"max": 200
|
|
623
|
-
},
|
|
624
597
|
"meta": "related",
|
|
625
598
|
"items": {
|
|
626
599
|
"events": {
|
|
@@ -669,18 +642,13 @@ const data = {
|
|
|
669
642
|
},
|
|
670
643
|
"speakers": {
|
|
671
644
|
"label": "speakers",
|
|
672
|
-
"component": "
|
|
673
|
-
"type": "
|
|
674
|
-
"
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
"component": "DocumentPicker",
|
|
678
|
-
"type": "DOCUMENT",
|
|
679
|
-
"meta": "speakers",
|
|
680
|
-
"default": ""
|
|
681
|
-
}
|
|
645
|
+
"component": "DocumentPicker",
|
|
646
|
+
"type": "DOCUMENT",
|
|
647
|
+
"meta": "speakers",
|
|
648
|
+
"rules": {
|
|
649
|
+
"max": 200
|
|
682
650
|
},
|
|
683
|
-
"
|
|
651
|
+
"default": ""
|
|
684
652
|
},
|
|
685
653
|
"state": {
|
|
686
654
|
"label": "state",
|
|
@@ -689,24 +657,32 @@ const data = {
|
|
|
689
657
|
"rules": {
|
|
690
658
|
"required": true
|
|
691
659
|
},
|
|
660
|
+
"items": {
|
|
661
|
+
"Draft": "DRAFT",
|
|
662
|
+
"Published": "PUBLISHED",
|
|
663
|
+
"Removed": "REMOVED",
|
|
664
|
+
"Finished": "FINISHED",
|
|
665
|
+
"Cancelled": "CANCELLED",
|
|
666
|
+
"Postponed": "POSTPONED",
|
|
667
|
+
"Rescheduled": "RESCHEDULED"
|
|
668
|
+
},
|
|
692
669
|
"meta": "state"
|
|
693
670
|
},
|
|
694
671
|
"tags": {
|
|
695
672
|
"label": "tags",
|
|
696
673
|
"component": "TagPicker",
|
|
697
674
|
"type": "DOCUMENT",
|
|
698
|
-
"rules": {
|
|
699
|
-
"required": true
|
|
700
|
-
},
|
|
701
675
|
"meta": "tags",
|
|
702
676
|
"default": ""
|
|
703
677
|
},
|
|
704
678
|
"totalSlots": {
|
|
705
679
|
"label": "totalSlots",
|
|
680
|
+
"hint": "Total number of slots available for booking. event will show up as full when all slots are booked.",
|
|
706
681
|
"component": false,
|
|
707
682
|
"type": "PRIMITIVE",
|
|
708
683
|
"rules": {
|
|
709
684
|
"required": true,
|
|
685
|
+
"numerical": true,
|
|
710
686
|
"min": 5,
|
|
711
687
|
"max": 200
|
|
712
688
|
},
|
|
@@ -727,7 +703,6 @@ const data = {
|
|
|
727
703
|
"component": "TextField",
|
|
728
704
|
"type": "PRIMITIVE",
|
|
729
705
|
"rules": {
|
|
730
|
-
"required": true,
|
|
731
706
|
"url": true
|
|
732
707
|
},
|
|
733
708
|
"meta": "url"
|