@ilo-org/react 0.2.1 → 0.4.0

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.
Files changed (95) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +1 -1
  3. package/lib/cjs/{DailyMotion-2aa7f048.js → DailyMotion-5654fa6e.js} +1 -1
  4. package/lib/cjs/{Facebook-87e24af8.js → Facebook-1924e510.js} +1 -1
  5. package/lib/cjs/{FilePlayer-e1216cc8.js → FilePlayer-9c697e42.js} +1 -1
  6. package/lib/cjs/{Kaltura-a673a8e9.js → Kaltura-177bb003.js} +1 -1
  7. package/lib/cjs/{Mixcloud-f9575c31.js → Mixcloud-91a772a6.js} +1 -1
  8. package/lib/cjs/{Preview-468c3a7f.js → Preview-8e2afb6a.js} +1 -1
  9. package/lib/cjs/{SoundCloud-7c59f293.js → SoundCloud-089e0f30.js} +1 -1
  10. package/lib/cjs/{Streamable-83e516e5.js → Streamable-4ca5b9c7.js} +1 -1
  11. package/lib/cjs/{Twitch-fdfa1c77.js → Twitch-dbc5c387.js} +1 -1
  12. package/lib/cjs/{VideoPlayer-9ce35136.js → VideoPlayer-874a52b0.js} +21 -16
  13. package/lib/cjs/{Vidyard-096bba3c.js → Vidyard-371acdcb.js} +1 -1
  14. package/lib/cjs/{Vimeo-2cb7476f.js → Vimeo-4d2029a8.js} +1 -1
  15. package/lib/cjs/{Wistia-5e830ac8.js → Wistia-cd0799ad.js} +1 -1
  16. package/lib/cjs/{YouTube-25a1d9a0.js → YouTube-23b7ec9e.js} +1 -1
  17. package/lib/cjs/components/Card/Card.js +43 -0
  18. package/lib/cjs/components/Card/CardGroup.js +25 -0
  19. package/lib/cjs/components/Card/index.js +21 -0
  20. package/lib/cjs/components/LocalNav/LocalNav.js +5 -3
  21. package/lib/cjs/components/LocalNav/index.js +1 -0
  22. package/lib/cjs/components/Logo/Logo.js +153 -0
  23. package/lib/cjs/components/Logo/index.js +13 -0
  24. package/lib/cjs/components/Navigation/Navigation.js +48 -0
  25. package/lib/cjs/components/Navigation/index.js +20 -0
  26. package/lib/cjs/components/Video/Video.js +1 -1
  27. package/lib/cjs/components/Video/VideoPlayer.js +1 -1
  28. package/lib/cjs/components/Video/index.js +1 -1
  29. package/lib/cjs/components/index.js +9 -1
  30. package/lib/cjs/index.js +9 -1
  31. package/lib/esm/{DailyMotion-66b6eff2.js → DailyMotion-88f6c379.js} +1 -1
  32. package/lib/esm/{Facebook-dbd1003d.js → Facebook-3a284039.js} +1 -1
  33. package/lib/esm/{FilePlayer-617ed2ce.js → FilePlayer-dee1f94b.js} +1 -1
  34. package/lib/esm/{Kaltura-bbcec33d.js → Kaltura-c5d42c88.js} +1 -1
  35. package/lib/esm/{Mixcloud-a681ec69.js → Mixcloud-430ab42a.js} +1 -1
  36. package/lib/esm/{Preview-407cc648.js → Preview-7f57e055.js} +1 -1
  37. package/lib/esm/{SoundCloud-16e78ee5.js → SoundCloud-d1ab591e.js} +1 -1
  38. package/lib/esm/{Streamable-ecb225c1.js → Streamable-042d61d5.js} +1 -1
  39. package/lib/esm/{Twitch-8d1b6769.js → Twitch-2f45534f.js} +1 -1
  40. package/lib/esm/{VideoPlayer-62e0ce79.js → VideoPlayer-719076c4.js} +21 -16
  41. package/lib/esm/{Vidyard-57e2834a.js → Vidyard-4625527b.js} +1 -1
  42. package/lib/esm/{Vimeo-faa058a2.js → Vimeo-03b960e6.js} +1 -1
  43. package/lib/esm/{Wistia-24fb5120.js → Wistia-48f9c303.js} +1 -1
  44. package/lib/esm/{YouTube-01b3e51f.js → YouTube-5b29a3d9.js} +1 -1
  45. package/lib/esm/components/Card/Card.js +41 -0
  46. package/lib/esm/components/Card/CardGroup.js +23 -0
  47. package/lib/esm/components/Card/index.js +14 -0
  48. package/lib/esm/components/LocalNav/LocalNav.js +5 -3
  49. package/lib/esm/components/LocalNav/index.js +1 -0
  50. package/lib/esm/components/Logo/Logo.js +151 -0
  51. package/lib/esm/components/Logo/index.js +7 -0
  52. package/lib/esm/components/Navigation/Navigation.js +46 -0
  53. package/lib/esm/components/Navigation/index.js +14 -0
  54. package/lib/esm/components/Video/Video.js +1 -1
  55. package/lib/esm/components/Video/VideoPlayer.js +1 -1
  56. package/lib/esm/components/Video/index.js +1 -1
  57. package/lib/esm/components/index.js +6 -1
  58. package/lib/esm/index.js +6 -1
  59. package/lib/types/react/src/components/Card/Card.d.ts +4 -0
  60. package/lib/types/react/src/components/Card/Card.props.d.ts +110 -0
  61. package/lib/types/react/src/components/Card/CardGroup.d.ts +4 -0
  62. package/lib/types/react/src/components/Card/CardGroup.props.d.ts +16 -0
  63. package/lib/types/react/src/components/Card/index.d.ts +2 -0
  64. package/lib/types/react/src/components/LocalNav/LocalNav.props.d.ts +4 -7
  65. package/lib/types/react/src/components/Logo/Logo.d.ts +4 -0
  66. package/lib/types/react/src/components/Logo/Logo.props.d.ts +55 -0
  67. package/lib/types/react/src/components/Logo/index.d.ts +1 -0
  68. package/lib/types/react/src/components/Navigation/Navigation.d.ts +4 -0
  69. package/lib/types/react/src/components/Navigation/Navigation.props.d.ts +99 -0
  70. package/lib/types/react/src/components/Navigation/index.d.ts +1 -0
  71. package/lib/types/react/src/components/index.d.ts +2 -0
  72. package/lib/types/react/src/types/index.d.ts +6 -0
  73. package/package.json +18 -17
  74. package/public/favicon.ico +0 -0
  75. package/src/components/Accordion/Accordion.args.ts +1 -4
  76. package/src/components/Card/Card.args.ts +215 -0
  77. package/src/components/Card/Card.props.ts +142 -0
  78. package/src/components/Card/Card.tsx +183 -0
  79. package/src/components/Card/CardGroup.args.ts +945 -0
  80. package/src/components/Card/CardGroup.props.ts +19 -0
  81. package/src/components/Card/CardGroup.tsx +55 -0
  82. package/src/components/Card/index.ts +2 -0
  83. package/src/components/LocalNav/LocalNav.args.ts +6 -6
  84. package/src/components/LocalNav/LocalNav.props.ts +4 -8
  85. package/src/components/LocalNav/LocalNav.tsx +21 -15
  86. package/src/components/Logo/Logo.args.ts +45 -0
  87. package/src/components/Logo/Logo.props.ts +67 -0
  88. package/src/components/Logo/Logo.tsx +247 -0
  89. package/src/components/Logo/index.ts +1 -0
  90. package/src/components/Navigation/Navigation.args.ts +112 -0
  91. package/src/components/Navigation/Navigation.props.ts +120 -0
  92. package/src/components/Navigation/Navigation.tsx +246 -0
  93. package/src/components/Navigation/index.ts +1 -0
  94. package/src/components/index.ts +2 -0
  95. package/src/types/index.ts +14 -0
@@ -0,0 +1,945 @@
1
+ import { CardGroupProps } from "./CardGroup.props";
2
+
3
+ const graphicCardGroup: CardGroupProps = {
4
+ cards: [
5
+ {
6
+ variant: "graphic",
7
+ title: "Why we need greater social justice",
8
+ eyebrow: "Podcast",
9
+ date: {
10
+ human: "20 September 2022",
11
+ unix: "1670389200",
12
+ },
13
+ theme: "dark",
14
+ link: "https:/www.ilo.org",
15
+ intro:
16
+ "A toxic combination of mutually-reinforcing crises – inflation, debt, food and fuel price rises, geopolitical tensions and conflict, climate change – are threatening to increase poverty, inequality and discrimination worldwide.",
17
+ profile: {
18
+ avatar: "/ilo-dg.jpg",
19
+ description:
20
+ "Gilbert Houngbo is the Director-General of the International Labour Organization",
21
+ name: "Gilbert Houngbo",
22
+ role: "ILO Director-General",
23
+ },
24
+ isvideo: false,
25
+ size: "standard",
26
+ color: "blue",
27
+ cornercut: "cornercut",
28
+ alignment: "left",
29
+ eventdetails: "",
30
+ listitems: [],
31
+ linklist: {},
32
+ cta: {},
33
+ dataset: {},
34
+ source: {},
35
+ image: "",
36
+ },
37
+ ],
38
+ cardcount: "one",
39
+ cta: {
40
+ label: "Discover our unique mission",
41
+ url: "https://www.ilo.org",
42
+ },
43
+ };
44
+
45
+ const statCardGroup: CardGroupProps = {
46
+ cards: [
47
+ {
48
+ variant: "stat",
49
+ title: "Global employment growth down by half in 2023",
50
+ eyebrow: "Report",
51
+ intro:
52
+ "The current global economic slowdown is likely to force more workers to accept lower quality, poorly paid jobs which lack job security and social protection, so accentuating inequalities exacerbated by the COVID-19 crisis.",
53
+ color: "blue",
54
+ source: {
55
+ label: "World Employment and Social Outlook: Trends 2023",
56
+ url: "https://www.ilo.org",
57
+ },
58
+ isvideo: false,
59
+ size: "standard",
60
+ cornercut: "cornercut",
61
+ alignment: "left",
62
+ eventdetails: "",
63
+ listitems: [],
64
+ linklist: {},
65
+ cta: {},
66
+ dataset: {},
67
+ image: "",
68
+ link: "",
69
+ profile: {},
70
+ theme: "light",
71
+ date: {},
72
+ },
73
+ {
74
+ variant: "stat",
75
+ title: "Global employment growth down by half in 2023",
76
+ eyebrow: "Report",
77
+ intro:
78
+ "The current global economic slowdown is likely to force more workers to accept lower quality, poorly paid jobs which lack job security and social protection, so accentuating inequalities exacerbated by the COVID-19 crisis.",
79
+ color: "yellow",
80
+ source: {
81
+ label: "World Employment and Social Outlook: Trends 2023",
82
+ url: "https://www.ilo.org",
83
+ },
84
+ isvideo: false,
85
+ size: "standard",
86
+ cornercut: "cornercut",
87
+ alignment: "left",
88
+ eventdetails: "",
89
+ listitems: [],
90
+ linklist: {},
91
+ cta: {},
92
+ dataset: {},
93
+ image: "",
94
+ link: "",
95
+ profile: {},
96
+ theme: "light",
97
+ date: {},
98
+ },
99
+ {
100
+ variant: "stat",
101
+ title: "Global employment growth down by half in 2023",
102
+ eyebrow: "Report",
103
+ intro:
104
+ "The current global economic slowdown is likely to force more workers to accept lower quality, poorly paid jobs which lack job security and social protection, so accentuating inequalities exacerbated by the COVID-19 crisis.",
105
+ color: "green",
106
+ source: {
107
+ label: "World Employment and Social Outlook: Trends 2023",
108
+ url: "https://www.ilo.org",
109
+ },
110
+ isvideo: false,
111
+ size: "standard",
112
+ cornercut: "cornercut",
113
+ alignment: "left",
114
+ eventdetails: "",
115
+ listitems: [],
116
+ linklist: {},
117
+ cta: {},
118
+ dataset: {},
119
+ image: "",
120
+ link: "",
121
+ profile: {},
122
+ theme: "light",
123
+ date: {},
124
+ },
125
+ {
126
+ variant: "stat",
127
+ title: "Global employment growth down by half in 2023",
128
+ eyebrow: "Report",
129
+ intro:
130
+ "The current global economic slowdown is likely to force more workers to accept lower quality, poorly paid jobs which lack job security and social protection, so accentuating inequalities exacerbated by the COVID-19 crisis.",
131
+ color: "turquoise",
132
+ source: {
133
+ label: "World Employment and Social Outlook: Trends 2023",
134
+ url: "https://www.ilo.org",
135
+ },
136
+ isvideo: false,
137
+ size: "standard",
138
+ cornercut: "cornercut",
139
+ alignment: "left",
140
+ eventdetails: "",
141
+ listitems: [],
142
+ linklist: {},
143
+ cta: {},
144
+ dataset: {},
145
+ image: "",
146
+ link: "",
147
+ profile: {},
148
+ theme: "light",
149
+ date: {},
150
+ },
151
+ ],
152
+ cardcount: "four",
153
+ cta: {
154
+ label: "Discover our unique mission",
155
+ url: "https://www.ilo.org",
156
+ },
157
+ };
158
+
159
+ const multilinkCardGroup: CardGroupProps = {
160
+ cards: [
161
+ {
162
+ variant: "multilink",
163
+ title:
164
+ "ILO welcomes G7 call to make a just transition to a green economy happen",
165
+ eyebrow: "High-level meeting",
166
+ intro:
167
+ "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
168
+ image: "/hero.jpg",
169
+ alignment: "left",
170
+ date: {
171
+ human: "6 September 2023",
172
+ unix: "1670389200",
173
+ },
174
+ linklist: {
175
+ headline: "",
176
+ linkgroup: [
177
+ {
178
+ links: [
179
+ {
180
+ label: "Read the press release",
181
+ url: "https://www.ilo.org",
182
+ },
183
+ {
184
+ label: "See the statement",
185
+ url: "https://www.ilo.org",
186
+ },
187
+ {
188
+ label: "Remarks to G7 Openening Session",
189
+ url: "https://www.ilo.org",
190
+ },
191
+ ],
192
+ },
193
+ ],
194
+ },
195
+ isvideo: false,
196
+ size: "standard",
197
+ color: "blue",
198
+ cornercut: "corner",
199
+ eventdetails: "",
200
+ listitems: [],
201
+ cta: {},
202
+ dataset: {},
203
+ source: {},
204
+ theme: "light",
205
+ profile: {},
206
+ link: "",
207
+ },
208
+ {
209
+ variant: "multilink",
210
+ title:
211
+ "ILO welcomes G7 call to make a just transition to a green economy happen",
212
+ eyebrow: "High-level meeting",
213
+ intro:
214
+ "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
215
+ image: "/hero.jpg",
216
+ alignment: "left",
217
+ date: {
218
+ human: "16 September 2023",
219
+ unix: "1670389200",
220
+ },
221
+ linklist: {
222
+ headline: "",
223
+ linkgroup: [
224
+ {
225
+ links: [
226
+ {
227
+ label: "Read the press release",
228
+ url: "https://www.ilo.org",
229
+ },
230
+ {
231
+ label: "See the statement",
232
+ url: "https://www.ilo.org",
233
+ },
234
+ {
235
+ label: "Remarks to G7 Openening Session",
236
+ url: "https://www.ilo.org",
237
+ },
238
+ ],
239
+ },
240
+ ],
241
+ },
242
+ isvideo: false,
243
+ size: "standard",
244
+ color: "blue",
245
+ cornercut: "corner",
246
+ eventdetails: "",
247
+ listitems: [],
248
+ cta: {},
249
+ dataset: {},
250
+ source: {},
251
+ theme: "light",
252
+ profile: {},
253
+ link: "",
254
+ },
255
+ ],
256
+ cardcount: "two",
257
+ cta: {
258
+ label: "Discover our unique mission",
259
+ url: "https://www.ilo.org",
260
+ },
261
+ };
262
+
263
+ const graphicPromoCardGroup: CardGroupProps = {
264
+ cards: [
265
+ {
266
+ variant: "graphicpromo",
267
+ title:
268
+ "ILO welcomes G7 call to make a just transition to a green economy happen",
269
+ eyebrow: "High-level meeting",
270
+ theme: "light",
271
+ cornercut: "cornercut",
272
+ intro:
273
+ "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
274
+ link: "https:/www.ilo.org",
275
+ cta: {
276
+ label: "Read the press release",
277
+ url: "https://www.ilo.org",
278
+ },
279
+ isvideo: false,
280
+ size: "standard",
281
+ color: "blue",
282
+ alignment: "left",
283
+ eventdetails: "",
284
+ listitems: [],
285
+ linklist: {},
286
+ dataset: {},
287
+ source: {},
288
+ image: "",
289
+ profile: {},
290
+ date: {},
291
+ },
292
+ {
293
+ variant: "graphicpromo",
294
+ title:
295
+ "ILO welcomes G7 call to make a just transition to a green economy happen",
296
+ eyebrow: "High-level meeting",
297
+ theme: "dark",
298
+ cornercut: "cornercut",
299
+ intro:
300
+ "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
301
+ link: "https:/www.ilo.org",
302
+ cta: {
303
+ label: "Read the press release",
304
+ url: "https://www.ilo.org",
305
+ },
306
+ isvideo: false,
307
+ size: "standard",
308
+ color: "blue",
309
+ alignment: "left",
310
+ eventdetails: "",
311
+ listitems: [],
312
+ linklist: {},
313
+ dataset: {},
314
+ source: {},
315
+ image: "",
316
+ profile: {},
317
+ date: {},
318
+ },
319
+ {
320
+ variant: "graphicpromo",
321
+ title:
322
+ "ILO welcomes G7 call to make a just transition to a green economy happen",
323
+ eyebrow: "High-level meeting",
324
+ theme: "light",
325
+ cornercut: "cornercut",
326
+ intro:
327
+ "At the end of their meeting the G7 Labour Ministers highlighted the urgent need to greater focus on rights and occupational safety and health.",
328
+ link: "https:/www.ilo.org",
329
+ cta: {
330
+ label: "Read the press release",
331
+ url: "https://www.ilo.org",
332
+ },
333
+ isvideo: false,
334
+ size: "standard",
335
+ color: "green",
336
+ alignment: "left",
337
+ eventdetails: "",
338
+ listitems: [],
339
+ linklist: {},
340
+ dataset: {},
341
+ source: {},
342
+ image: "",
343
+ profile: {},
344
+ date: {},
345
+ },
346
+ ],
347
+ cardcount: "three",
348
+ cta: {
349
+ label: "Discover our unique mission",
350
+ url: "https://www.ilo.org",
351
+ },
352
+ };
353
+
354
+ const featureCardGroup: CardGroupProps = {
355
+ cards: [
356
+ {
357
+ variant: "feature",
358
+ isvideo: false,
359
+ title:
360
+ "ILO welcomes G7 call to make a just transition to a green economy happen",
361
+ eyebrow: "High-level meeting",
362
+ theme: "light",
363
+ date: {
364
+ human: "18 March 2023",
365
+ unix: "1670389200",
366
+ },
367
+ image: "/hero.jpg",
368
+ link: "https:/www.ilo.org",
369
+ linklist: {
370
+ headline: "",
371
+ linkgroup: [
372
+ {
373
+ links: [
374
+ {
375
+ label: "Read the press release",
376
+ url: "http://www.google.com",
377
+ },
378
+ ],
379
+ },
380
+ ],
381
+ },
382
+ profile: {},
383
+ size: "standard",
384
+ color: "blue",
385
+ cornercut: "cornercut",
386
+ alignment: "left",
387
+ intro: "",
388
+ eventdetails: "",
389
+ listitems: [],
390
+ cta: {},
391
+ dataset: {},
392
+ source: {},
393
+ },
394
+ {
395
+ variant: "feature",
396
+ isvideo: true,
397
+ title:
398
+ "ILO welcomes G7 call to make a just transition to a green economy happen",
399
+ eyebrow: "High-level meeting",
400
+ theme: "dark",
401
+ date: {
402
+ human: "19 March 2023",
403
+ unix: "1670389200",
404
+ },
405
+ image: "/hero.jpg",
406
+ link: "https:/www.ilo.org",
407
+ linklist: {
408
+ headline: "",
409
+ linkgroup: [
410
+ {
411
+ links: [
412
+ {
413
+ label: "Read the press release",
414
+ url: "http://www.google.com",
415
+ },
416
+ ],
417
+ },
418
+ ],
419
+ },
420
+ profile: {},
421
+ size: "standard",
422
+ color: "blue",
423
+ cornercut: "cornercut",
424
+ alignment: "left",
425
+ intro: "",
426
+ eventdetails: "",
427
+ listitems: [],
428
+ cta: {},
429
+ dataset: {},
430
+ source: {},
431
+ },
432
+ {
433
+ variant: "feature",
434
+ isvideo: false,
435
+ title:
436
+ "ILO welcomes G7 call to make a just transition to a green economy happen",
437
+ eyebrow: "High-level meeting",
438
+ theme: "light",
439
+ date: {
440
+ human: "20 March 2023",
441
+ unix: "1670389200",
442
+ },
443
+ image: "/hero.jpg",
444
+ link: "https:/www.ilo.org",
445
+ linklist: {
446
+ headline: "",
447
+ linkgroup: [
448
+ {
449
+ links: [
450
+ {
451
+ label: "Read the press release",
452
+ url: "http://www.google.com",
453
+ },
454
+ ],
455
+ },
456
+ ],
457
+ },
458
+ profile: {},
459
+ size: "standard",
460
+ color: "blue",
461
+ cornercut: "cornercut",
462
+ alignment: "left",
463
+ intro: "",
464
+ eventdetails: "",
465
+ listitems: [],
466
+ cta: {},
467
+ dataset: {},
468
+ source: {},
469
+ },
470
+ {
471
+ variant: "feature",
472
+ isvideo: false,
473
+ title:
474
+ "ILO welcomes G7 call to make a just transition to a green economy happen",
475
+ eyebrow: "High-level meeting",
476
+ theme: "dark",
477
+ date: {
478
+ human: "22 March 2023",
479
+ unix: "1670389200",
480
+ },
481
+ image: "/hero.jpg",
482
+ link: "https:/www.ilo.org",
483
+ linklist: {
484
+ headline: "",
485
+ linkgroup: [
486
+ {
487
+ links: [
488
+ {
489
+ label: "Read the press release",
490
+ url: "http://www.google.com",
491
+ },
492
+ ],
493
+ },
494
+ ],
495
+ },
496
+ profile: {},
497
+ size: "standard",
498
+ color: "yellow",
499
+ cornercut: "corner",
500
+ alignment: "left",
501
+ intro: "",
502
+ eventdetails: "",
503
+ listitems: [],
504
+ cta: {},
505
+ dataset: {},
506
+ source: {},
507
+ },
508
+ ],
509
+ cardcount: "four",
510
+ cta: {
511
+ label: "Discover our unique mission",
512
+ url: "https://www.ilo.org",
513
+ },
514
+ };
515
+
516
+ const detailCardGroup: CardGroupProps = {
517
+ cards: [
518
+ {
519
+ variant: "detail",
520
+ title: "Technical meeting on digitalization in the construction sector",
521
+ eyebrow: "Meeting",
522
+ intro:
523
+ "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
524
+ date: {
525
+ human: "18 March 2023",
526
+ unix: "1670389200",
527
+ },
528
+ image: "/medium.jpg",
529
+ link: "https:/www.ilo.org",
530
+ eventdetails: "8:30 - 12:00 CET | Geneva",
531
+ theme: "light",
532
+ profile: {},
533
+ isvideo: false,
534
+ size: "standard",
535
+ color: "blue",
536
+ cornercut: "cornercut",
537
+ alignment: "left",
538
+ listitems: [],
539
+ linklist: {},
540
+ cta: {},
541
+ dataset: {},
542
+ source: {},
543
+ },
544
+ {
545
+ variant: "detail",
546
+ title: "Technical meeting on digitalization in the construction sector",
547
+ eyebrow: "Meeting",
548
+ intro:
549
+ "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
550
+ date: {
551
+ human: "20 March 2023",
552
+ unix: "1670389200",
553
+ },
554
+ image: "/medium.jpg",
555
+ link: "https:/www.ilo.org",
556
+ eventdetails: "8:30 - 12:00 CET | Geneva",
557
+ theme: "dark",
558
+ profile: {},
559
+ isvideo: false,
560
+ size: "standard",
561
+ color: "green",
562
+ cornercut: "corner",
563
+ alignment: "left",
564
+ listitems: [],
565
+ linklist: {},
566
+ cta: {},
567
+ dataset: {},
568
+ source: {},
569
+ },
570
+ ],
571
+ cardcount: "two",
572
+ cta: {
573
+ label: "Discover our unique mission",
574
+ url: "https://www.ilo.org",
575
+ },
576
+ };
577
+
578
+ const factListCardGroup: CardGroupProps = {
579
+ cards: [
580
+ {
581
+ variant: "factlist",
582
+ title:
583
+ "Economic slowdown likely to force workers to accept lower quality jobs",
584
+ eyebrow: "Report",
585
+ theme: "light",
586
+ cornercut: "cornercut",
587
+ intro:
588
+ "A toxic combination of mutually-reinforcing crises – inflation, debt, food and fuel price rises, geopolitical tensions and conflict, climate change – are threatening to increase poverty, inequality and discrimination worldwide.",
589
+ listitems: [
590
+ "Global employment growth will be only 1.0 per cent in 2023, less than half the level in 2022.",
591
+ "The labour market deterioration is mainly due to emerging geopolitical tensions and the Ukraine conflict.",
592
+ "The current slowdown means that many workers will have to accept lower quality jobs, often at very low pay.",
593
+ ],
594
+ link: "https:/www.ilo.org",
595
+ profile: {},
596
+ date: {},
597
+ isvideo: false,
598
+ size: "standard",
599
+ color: "blue",
600
+ alignment: "left",
601
+ eventdetails: "",
602
+ linklist: {},
603
+ cta: {},
604
+ dataset: {},
605
+ source: {},
606
+ image: "",
607
+ },
608
+ {
609
+ variant: "factlist",
610
+ title:
611
+ "Economic slowdown likely to force workers to accept lower quality jobs",
612
+ eyebrow: "Report",
613
+ theme: "dark",
614
+ cornercut: "cornercut",
615
+ intro:
616
+ "A toxic combination of mutually-reinforcing crises – inflation, debt, food and fuel price rises, geopolitical tensions and conflict, climate change – are threatening to increase poverty, inequality and discrimination worldwide.",
617
+ listitems: [
618
+ "Global employment growth will be only 1.0 per cent in 2023, less than half the level in 2022.",
619
+ "The labour market deterioration is mainly due to emerging geopolitical tensions and the Ukraine conflict.",
620
+ "The current slowdown means that many workers will have to accept lower quality jobs, often at very low pay.",
621
+ ],
622
+ link: "https:/www.ilo.org",
623
+ profile: {},
624
+ date: {},
625
+ isvideo: false,
626
+ size: "standard",
627
+ color: "blue",
628
+ alignment: "left",
629
+ eventdetails: "",
630
+ linklist: {},
631
+ cta: {},
632
+ dataset: {},
633
+ source: {},
634
+ image: "",
635
+ },
636
+ ],
637
+ cardcount: "two",
638
+ cta: {
639
+ label: "Discover our unique mission",
640
+ url: "https://www.ilo.org",
641
+ },
642
+ };
643
+
644
+ const dataCardGroup: CardGroupProps = {
645
+ cards: [
646
+ {
647
+ variant: "data",
648
+ title: "Technical meeting on digitalization in the construction sector",
649
+ eyebrow: "Meeting",
650
+ eventdetails:
651
+ "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
652
+ dataset: {
653
+ content: {
654
+ items: [
655
+ {
656
+ label: "Date",
657
+ copy: "18 March 2023",
658
+ },
659
+ {
660
+ label: "Event type",
661
+ copy: "Technical meeting of experts",
662
+ },
663
+ ],
664
+ },
665
+ files: {
666
+ headline: "Files",
667
+ items: [
668
+ {
669
+ label: "Meeting agenda",
670
+ url: "https://www.ilo.org",
671
+ },
672
+ {
673
+ label: "Briefing notes",
674
+ url: "https://www.ilo.org",
675
+ },
676
+ {
677
+ label: "Practical info",
678
+ url: "https://www.ilo.org",
679
+ },
680
+ ],
681
+ },
682
+ links: {
683
+ headline: "Languages",
684
+ items: [
685
+ {
686
+ label: "English",
687
+ url: "https://www.ilo.org",
688
+ },
689
+ {
690
+ label: "Español",
691
+ url: "https://www.ilo.org",
692
+ },
693
+ {
694
+ label: "Français",
695
+ url: "https://www.ilo.org",
696
+ },
697
+ ],
698
+ },
699
+ },
700
+ date: {},
701
+ theme: "light",
702
+ link: "",
703
+ profile: {},
704
+ isvideo: false,
705
+ size: "standard",
706
+ color: "blue",
707
+ cornercut: "cornercut",
708
+ alignment: "left",
709
+ intro: "",
710
+ listitems: [],
711
+ linklist: {},
712
+ cta: {},
713
+ source: {},
714
+ image: "",
715
+ },
716
+ {
717
+ variant: "data",
718
+ title: "Technical meeting on digitalization in the construction sector",
719
+ eyebrow: "Meeting",
720
+ eventdetails:
721
+ "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
722
+ dataset: {
723
+ content: {
724
+ items: [
725
+ {
726
+ label: "Date",
727
+ copy: "19 March 2023",
728
+ },
729
+ {
730
+ label: "Event type",
731
+ copy: "Technical meeting of experts",
732
+ },
733
+ ],
734
+ },
735
+ files: {
736
+ headline: "Files",
737
+ items: [
738
+ {
739
+ label: "Meeting agenda",
740
+ url: "https://www.ilo.org",
741
+ },
742
+ {
743
+ label: "Briefing notes",
744
+ url: "https://www.ilo.org",
745
+ },
746
+ {
747
+ label: "Practical info",
748
+ url: "https://www.ilo.org",
749
+ },
750
+ ],
751
+ },
752
+ links: {
753
+ headline: "Languages",
754
+ items: [
755
+ {
756
+ label: "English",
757
+ url: "https://www.ilo.org",
758
+ },
759
+ {
760
+ label: "Español",
761
+ url: "https://www.ilo.org",
762
+ },
763
+ {
764
+ label: "Français",
765
+ url: "https://www.ilo.org",
766
+ },
767
+ ],
768
+ },
769
+ },
770
+ date: {},
771
+ theme: "light",
772
+ link: "",
773
+ profile: {},
774
+ isvideo: false,
775
+ size: "standard",
776
+ color: "blue",
777
+ cornercut: "cornercut",
778
+ alignment: "left",
779
+ intro: "",
780
+ listitems: [],
781
+ linklist: {},
782
+ cta: {},
783
+ source: {},
784
+ image: "",
785
+ },
786
+ {
787
+ variant: "data",
788
+ title: "Technical meeting on digitalization in the construction sector",
789
+ eyebrow: "Meeting",
790
+ eventdetails:
791
+ "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
792
+ dataset: {
793
+ content: {
794
+ items: [
795
+ {
796
+ label: "Date",
797
+ copy: "21 March 2023",
798
+ },
799
+ {
800
+ label: "Event type",
801
+ copy: "Technical meeting of experts",
802
+ },
803
+ ],
804
+ },
805
+ files: {
806
+ headline: "Files",
807
+ items: [
808
+ {
809
+ label: "Meeting agenda",
810
+ url: "https://www.ilo.org",
811
+ },
812
+ {
813
+ label: "Briefing notes",
814
+ url: "https://www.ilo.org",
815
+ },
816
+ {
817
+ label: "Practical info",
818
+ url: "https://www.ilo.org",
819
+ },
820
+ ],
821
+ },
822
+ links: {
823
+ headline: "Languages",
824
+ items: [
825
+ {
826
+ label: "English",
827
+ url: "https://www.ilo.org",
828
+ },
829
+ {
830
+ label: "Español",
831
+ url: "https://www.ilo.org",
832
+ },
833
+ {
834
+ label: "Français",
835
+ url: "https://www.ilo.org",
836
+ },
837
+ ],
838
+ },
839
+ },
840
+ date: {},
841
+ theme: "light",
842
+ link: "",
843
+ profile: {},
844
+ isvideo: false,
845
+ size: "standard",
846
+ color: "blue",
847
+ cornercut: "cornercut",
848
+ alignment: "left",
849
+ intro: "",
850
+ listitems: [],
851
+ linklist: {},
852
+ cta: {},
853
+ source: {},
854
+ image: "",
855
+ },
856
+ {
857
+ variant: "data",
858
+ title: "Technical meeting on digitalization in the construction sector",
859
+ eyebrow: "Meeting",
860
+ eventdetails:
861
+ "The purpose of the meeting will be to discuss opportunities and challenges for the future of work in the construction industry as a vehicle to ensure a human-centred economic recovery.",
862
+ dataset: {
863
+ content: {
864
+ items: [
865
+ {
866
+ label: "Date",
867
+ copy: "22 March 2023",
868
+ },
869
+ {
870
+ label: "Event type",
871
+ copy: "Technical meeting of experts",
872
+ },
873
+ ],
874
+ },
875
+ files: {
876
+ headline: "Files",
877
+ items: [
878
+ {
879
+ label: "Meeting agenda",
880
+ url: "https://www.ilo.org",
881
+ },
882
+ {
883
+ label: "Briefing notes",
884
+ url: "https://www.ilo.org",
885
+ },
886
+ {
887
+ label: "Practical info",
888
+ url: "https://www.ilo.org",
889
+ },
890
+ ],
891
+ },
892
+ links: {
893
+ headline: "Languages",
894
+ items: [
895
+ {
896
+ label: "English",
897
+ url: "https://www.ilo.org",
898
+ },
899
+ {
900
+ label: "Español",
901
+ url: "https://www.ilo.org",
902
+ },
903
+ {
904
+ label: "Français",
905
+ url: "https://www.ilo.org",
906
+ },
907
+ ],
908
+ },
909
+ },
910
+ date: {},
911
+ theme: "light",
912
+ link: "",
913
+ profile: {},
914
+ isvideo: false,
915
+ size: "standard",
916
+ color: "blue",
917
+ cornercut: "cornercut",
918
+ alignment: "left",
919
+ intro: "",
920
+ listitems: [],
921
+ linklist: {},
922
+ cta: {},
923
+ source: {},
924
+ image: "",
925
+ },
926
+ ],
927
+ cardcount: "four",
928
+ cta: {
929
+ label: "Discover our unique mission",
930
+ url: "https://www.ilo.org",
931
+ },
932
+ };
933
+
934
+ const CardGroupArgs = {
935
+ graphicCardGroup,
936
+ statCardGroup,
937
+ multilinkCardGroup,
938
+ graphicPromoCardGroup,
939
+ featureCardGroup,
940
+ detailCardGroup,
941
+ factListCardGroup,
942
+ dataCardGroup,
943
+ };
944
+
945
+ export default CardGroupArgs;