-
Notifications
You must be signed in to change notification settings - Fork 4
/
pnpm-lock.yaml
3689 lines (3244 loc) · 132 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@contentful/app-sdk':
specifier: ^4.25.0
version: 4.25.0
'@contentful/f36-components':
specifier: ^4.61.0
version: 4.61.0(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons':
specifier: ^4.27.0
version: 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens':
specifier: ^4.0.5
version: 4.0.5
'@contentful/react-apps-toolkit':
specifier: 1.2.16
version: 1.2.16(@contentful/app-sdk@4.25.0)(react@17.0.2)
'@sindresorhus/slugify':
specifier: ^2.2.1
version: 2.2.1
contentful-management:
specifier: ^11.24.3
version: 11.24.3
emotion:
specifier: ^10.0.27
version: 10.0.27
react:
specifier: ^17.0.2
version: 17.0.2
react-dom:
specifier: ^17.0.2
version: 17.0.2(react@17.0.2)
devDependencies:
'@contentful/app-scripts':
specifier: ^1.18.0
version: 1.18.0
'@testing-library/react':
specifier: ^12.1.5
version: 12.1.5(react-dom@17.0.2)(react@17.0.2)
'@types/node':
specifier: ^18.19.29
version: 18.19.29
'@types/react':
specifier: ^17.0.80
version: 17.0.80
'@types/react-dom':
specifier: ^17.0.25
version: 17.0.25
'@vitejs/plugin-react':
specifier: ^1.3.2
version: 1.3.2
happy-dom:
specifier: ^6.0.4
version: 6.0.4
typescript:
specifier: ^4.9.5
version: 4.9.5
vite:
specifier: ^3.2.10
version: 3.2.10(@types/node@18.19.29)
vitest:
specifier: ^0.18.1
version: 0.18.1(happy-dom@6.0.4)
packages:
/@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
dev: true
/@babel/code-frame@7.21.4:
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
/@babel/compat-data@7.22.3:
resolution: {integrity: sha512-aNtko9OPOwVESUFp3MZfD8Uzxl7JzSeJpd7npIoxCasU37PFbAQRpKglkaKwlHOyeJdrREpo8TW8ldrkYWwvIQ==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/core@7.22.1:
resolution: {integrity: sha512-Hkqu7J4ynysSXxmAahpN1jjRwVJ+NdpraFLIWflgjpVob3KNyK3/tIUc7Q7szed8WMp0JNa7Qtd1E9Oo22F9gA==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.21.4
'@babel/generator': 7.22.3
'@babel/helper-compilation-targets': 7.22.1(@babel/core@7.22.1)
'@babel/helper-module-transforms': 7.22.1
'@babel/helpers': 7.22.3
'@babel/parser': 7.22.4
'@babel/template': 7.21.9
'@babel/traverse': 7.22.4
'@babel/types': 7.22.4
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/generator@7.22.3:
resolution: {integrity: sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.4
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
jsesc: 2.5.2
dev: true
/@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.4
dev: true
/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1):
resolution: {integrity: sha512-Rqx13UM3yVB5q0D/KwQ8+SPfX/+Rnsy1Lw1k/UwOC4KC6qrzIQoY3lYnBu5EHKBlEHHcj0M0W8ltPSkD8rqfsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.22.3
'@babel/core': 7.22.1
'@babel/helper-validator-option': 7.21.0
browserslist: 4.21.7
lru-cache: 5.1.1
semver: 6.3.0
dev: true
/@babel/helper-environment-visitor@7.22.1:
resolution: {integrity: sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/helper-function-name@7.21.0:
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.21.9
'@babel/types': 7.22.4
dev: true
/@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.4
dev: true
/@babel/helper-module-imports@7.21.4:
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.4
/@babel/helper-module-transforms@7.22.1:
resolution: {integrity: sha512-dxAe9E7ySDGbQdCVOY/4+UcD8M9ZFqZcZhSPsPacvCG4M+9lwtDDQfI2EoaSvmf7W/8yCBkGU0m7Pvt1ru3UZw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.22.1
'@babel/helper-module-imports': 7.21.4
'@babel/helper-simple-access': 7.21.5
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.21.9
'@babel/traverse': 7.22.4
'@babel/types': 7.22.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/helper-plugin-utils@7.21.5:
resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/helper-simple-access@7.21.5:
resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.4
dev: true
/@babel/helper-split-export-declaration@7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.4
dev: true
/@babel/helper-string-parser@7.21.5:
resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-option@7.21.0:
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/helpers@7.22.3:
resolution: {integrity: sha512-jBJ7jWblbgr7r6wYZHMdIqKc73ycaTcCaWRq4/2LpuPHcx7xMlZvpGQkOYc9HeSjn6rcx15CPlgVcBtZ4WZJ2w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.21.9
'@babel/traverse': 7.22.4
'@babel/types': 7.22.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.19.1
chalk: 2.4.2
js-tokens: 4.0.0
/@babel/parser@7.22.4:
resolution: {integrity: sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.22.4
dev: true
/@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.22.1):
resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
'@babel/helper-plugin-utils': 7.21.5
dev: true
/@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.1):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
'@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.22.1)
dev: true
/@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.22.1):
resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
'@babel/helper-plugin-utils': 7.21.5
dev: true
/@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.1):
resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
'@babel/helper-plugin-utils': 7.21.5
dev: true
/@babel/plugin-transform-react-jsx@7.22.3(@babel/core@7.22.1):
resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.21.4
'@babel/helper-plugin-utils': 7.21.5
'@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.22.1)
'@babel/types': 7.22.4
dev: true
/@babel/runtime@7.22.3:
resolution: {integrity: sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
/@babel/runtime@7.24.4:
resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
dev: false
/@babel/template@7.21.9:
resolution: {integrity: sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.21.4
'@babel/parser': 7.22.4
'@babel/types': 7.22.4
dev: true
/@babel/traverse@7.22.4:
resolution: {integrity: sha512-Tn1pDsjIcI+JcLKq1AVlZEr4226gpuAQTsLMorsYg9tuS/kG7nuwwJ4AB8jfQuEgb/COBwR/DqJxmoiYFu5/rQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.21.4
'@babel/generator': 7.22.3
'@babel/helper-environment-visitor': 7.22.1
'@babel/helper-function-name': 7.21.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.22.4
'@babel/types': 7.22.4
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/types@7.22.4:
resolution: {integrity: sha512-Tx9x3UBHTTsMSW85WB2kphxYQVvrZ/t1FxD88IpSgIjiUJlCm9z+xWIDwyo1vffTwSqteqyznB8ZE9vYYk16zA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.21.5
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
/@contentful/app-scripts@1.18.0:
resolution: {integrity: sha512-13UG7JTYOpjlLd6Wi/vzU2GYLJ7lv/xixCVPhR4UkhC6Awm3Lqz5LZmEO7l9DGd3gx4jU4vVsfVUYMlzReo8Cg==}
engines: {node: '>=14', npm: '>=6'}
hasBin: true
dependencies:
'@segment/analytics-node': 2.1.0
adm-zip: 0.5.12
bottleneck: 2.19.5
chalk: 4.1.2
commander: 12.0.0
contentful-management: 11.24.3
dotenv: 16.4.5
ignore: 5.3.1
inquirer: 8.2.6
lodash: 4.17.21
open: 8.4.2
ora: 5.4.1
transitivePeerDependencies:
- debug
- encoding
dev: true
/@contentful/app-sdk@4.25.0:
resolution: {integrity: sha512-Aw5Yq3zduwHonNJPQtBTNzZ4MC17UtH8zaSnq8cdbDLfyJOYiTgPDDh15AzgwAkfyOovoXCBcyajjra9Cm45Qg==}
dependencies:
contentful-management: 11.24.3
transitivePeerDependencies:
- debug
dev: false
/@contentful/f36-accordion@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-ebsuPhCKI0ac8nug/z13govS5SBEmLLOO2lV7/EYlVmtq2po4JPicqMMzaXxJJ/S40Eaagtzph+8D84g41fjTg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-collapse': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-asset@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-5TEI1xQ539L2aYf+FbyXsFTgZ4BOe1MdqisU+77xFbQQSWbMqwjxhzXbKv4MdlGpLGyVd3Yqmt/WvqdCUDi1QQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icon': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-autocomplete@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-nK48FBmltjpufISIa9aMb0ODb/fGe0EjVUggZV58t9i8Ocic0l3VNTU5Ix0xkhoyDTKTLuxesA5aKLRVBgfEAg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-forms': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-popover': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-skeleton': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
downshift: 6.1.12(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-badge@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-EzAhl9K4g6RYd9zr9XEsErUyFhVA8FF+5b7tifhnvlVJisQdfrg9KCLAAVafGfKm1jvD3KdFpCoRGuj+X3gAsg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-button@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-LtPzg5z5jsj7mT+7WcfT1IFMWZOl0zWQEtg7P44xmpipC7WJ7WED8snyZguWT1eclbsfbSuVWIhL28LGVa1sjg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-spinner': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-card@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-xoU/OAL/BCizB/EgMBBCRNSREOFBFSi2SLP/cYKb+PwfVK8N244ib6txY+n5oN2D5KxUGRmp66YfZk2tUyA2/g==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-asset': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-badge': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-drag-handle': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icon': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-menu': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-skeleton': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-tooltip': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
truncate: 3.0.0
dev: false
/@contentful/f36-collapse@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-YYOzylpR2XYcJC9ZSUgSavizKBs6T3w18LMSgTGiPFZ7IRlfX5KbB747FRgsQsYysYWEHW1tXdqQxAVI7xAb3w==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-components@4.61.0(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-Es0n/hoBzqNfw6OhXhtIA0IxuHTSfXPo1WOQyZktjYW80OSRSCiB4nv8phd9yKOlPbVNjgXvEVoABlhJJ12z2A==}
peerDependencies:
'@types/react': '>=16.8'
'@types/react-dom': '>=16.8'
react: '>=16.8'
react-dom: '>=16.8'
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
dependencies:
'@contentful/f36-accordion': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-asset': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-autocomplete': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-badge': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-card': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-collapse': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-copybutton': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-datepicker': 4.61.0(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-datetime': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-drag-handle': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-empty-state': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-entity-list': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-forms': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icon': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-list': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-menu': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-modal': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-navbar': 4.1.1(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-note': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-notification': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-pagination': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-pill': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-popover': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-skeleton': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-spinner': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-table': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tabs': 4.61.0(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-text-link': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-tooltip': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
'@types/react': 17.0.80
'@types/react-dom': 17.0.25
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-copybutton@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-obg8GPPa6lLObngd9kNfuA9+/pIsnq/akMaal+hE70xBB5jLoazwY59rX4sXTYS48B/LRJ5aTZUI6NiEIougEA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-tooltip': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-core@4.52.3(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-amiKICOzlUkyO8Ef6BVqnUBw25RA8PqL7mEWRtBV3DUEVNMebKSFrMlyS1eEDt7E4kUBoBKZ8vEf4Lyper9wbQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-tokens': 4.0.5
'@emotion/core': 10.3.1(react@17.0.2)
'@emotion/is-prop-valid': 1.2.1
csstype: 3.1.2
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-core@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-yyZrmn92lbNeyzjY+o83rs6fPWa4WbWZWuWIMOw9bg/bzzmSWMAa7VLQQGwSeckhROTXylnlLoBNvTU5cYfRPg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-tokens': 4.0.5
'@emotion/core': 10.3.1(react@17.0.2)
'@emotion/is-prop-valid': 1.2.2
csstype: 3.1.3
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-datepicker@4.61.0(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-K0NbD4kPIFQlM6DaUktktrHCbC6spBcOdiBbCeqqQvUCcpMf3KeEMcj2g4jNewSWoHrw44vul8VUiPIg7Wyz1A==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-forms': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-popover': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
date-fns: 2.30.0
emotion: 10.0.27
react: 17.0.2
react-day-picker: 8.10.0(date-fns@2.30.0)(react@17.0.2)
react-dom: 17.0.2(react@17.0.2)
react-focus-lock: 2.11.2(@types/react@17.0.80)(react@17.0.2)
transitivePeerDependencies:
- '@types/react'
dev: false
/@contentful/f36-datetime@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-dhzLfQrntCxFGUyyUw4BLaEPKPAq0+2MRDPEJMikEGkCV8jXG3lwWpkvWnH1JDwIvwLLtTlZvu9Ig0eznpiWvg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
dayjs: 1.11.10
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-drag-handle@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-UIAY7QjbuVVhP38piqDSwcDxjy5NZAyJwA7wQWVSa3QRWc+DjGpnZk2w14v3s5D9eyEowR+7kApjQmjwaLi8LQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-empty-state@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-8gBp+0hu+zxI/ZE/fXMQ9Yu7id1VrAoquJLfvyvElaikCsYJyGwt7JKyVqhOVYwMSgBKbyKE4EkKpTCbGzwZ7A==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-entity-list@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-KLGFG0jh+Q71hvA47ukAd7TXOHPKgTTbNBPjVpgUnbhnOyQ+Z2SKbAPFDDpiiPBOsieJZkxQ9dl+3qNPtV6DdA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-badge': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-drag-handle': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icon': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-menu': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-skeleton': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-forms@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-5Ovp9X1aiP/In0h6DBvWWf+gxQStpP0fSqU0L5wBSJ/t5NuhD8Ke3BAKIv64+9hfBPyQsdkVFcmLwY3uwLkTYg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-icon@4.52.3(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-kobypjFcH5FvhkJ3sPgiZUR9qSUEBtQk/c79FnWlefIBqEdWGYYmduMjQ4eSOMEhnJo8ZUqs7f/NB/6akrvHag==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-icon@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-ta2iRHqbKSlMMB0nRveux13yt+Njvmbclt/cB1/VeH3orTcYDOlhWx/a4RPCoBNY29nXeosq5a+7oel1pTI5hw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-icons@4.27.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-sEQ5xorjQ2zMOCCv6uljpM+z46Miw5WTa5e1jf0bvRXPWLFYF0hkuQestL/JedObaB3ZEnq0B4NpfI2fslWH+Q==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icon': 4.52.3(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-list@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-7QPXkluTSrOBq2O2hscZ2vkjIPFfbxIXa5XJRCbe9nGhaqf3mgWKsUO8Xbcbgwi8M5epvy3mhyk19z6mIzkx/w==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-menu@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-9H9UQoQPzgnLcX+GkBJdQs59j/AMBbvzjR95tEP2iedcxuJY1QqbQ4xq//Ilm5MVxn4QXvQBWqZ6yikav21yWg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-popover': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-modal@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-8DrJg4O3ydJAEnPtiFt3V3/3Y+aSg507tTuW/1Esfw2dpM/lpV/wCHen+a86KelqIP9/Qf/9IY8F1W0n2XvEZQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@types/react-modal': 3.16.3
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
react-modal: 3.16.1(react-dom@17.0.2)(react@17.0.2)
dev: false
/@contentful/f36-navbar@4.1.1(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-nCLtZ7EgfKhmXWrGZYrZEQOoulOOVPOuZBk0CC4JgQRQmCYeYr2iAnM8zualISFaxX/O+GVvHPQf2hKeoeFRPA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icon': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-menu': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-skeleton': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-note@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-+0eA4rNIncHoDCAb3BdBIc04nJ1ff3K36rtBI1DdO+XRxahq2F3wdh3p6EDkFNDQXUIFckVSztlVFlm/I2DcqQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icon': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-notification@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-QY2HzwRsAjiJQ4krcWTYKhIgz0dwubdGZ0oHYDhnmGtUQ7w+0RZg6+wbG0G2UL/F7GxyoJJrCwW/cWFDWAVzmQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-text-link': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@swc/helpers': 0.4.36
emotion: 10.0.27
react: 17.0.2
react-animate-height: 3.2.3(react-dom@17.0.2)(react@17.0.2)
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-pagination@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-S62ZdtKU/wONVS8Ue2GxfBiItrkj0VqYV2QErI1xn8yDsLGaQwD91GmSZDP1aaZS0TQiJfrbk/ZybD0fM6bQAw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-forms': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-pill@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-1WcXniHsXgtpUIrM5wN2EfNXuoIwk0TAA/MFwcshRHuRCJ1FvwXsO+c9hgONnzsqU/saKQTI9FMHBKH2i3apgA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-drag-handle': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-tooltip': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-popover@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-PW8lC9kw8JMsig8rK1wnJlli6KpVgf0j/yhiRaQFpJE9tI6kjorRGUfZTWvoa8IteRp91el+EZbpZ2ByymulLw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
'@popperjs/core': 2.11.8
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@17.0.2)(react@17.0.2)
dev: false
/@contentful/f36-skeleton@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-KLUzfY/pyrrvuTLJ17uNWvaJbtT0yBtsab1jhW6YeUJ3RZioSkxiTg6gVWC9OSRNTnWipmTj48/9ZGmSBtn/UQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-table': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-spinner@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-HKvW+zj95i+qDu2CiuqsiWk9AkvzOlJLVtF/kzoxUCC/ovXkgeb4x8QVx/aVYOU4WbWlESCK22znNsAKo53krQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-table@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-YTwl1YAjKej3qAPrvunddH6r9ExhgRfUjFJ4NC1xqyE3JKgM0zjF1pyGScy4lJ3wgJpZMIzJuvUZyX56k8G9Sg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-icons': 4.27.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-typography': 4.61.0(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-tabs@4.61.0(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-bdAvWUdZ7sMFddMDfH9Xh1ZoHbZk1DFGISGVG9QxLgqPqfvRK02Ls0J/diGMKpYxYX27yApN2zXHeareLMFF1g==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@radix-ui/react-tabs': 1.0.4(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
dev: false
/@contentful/f36-text-link@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-D3RuVThc+jKu2H6Vm3mt7jToJMzqW5hUqxX+Y8dkfX2KoRXBriod8uiVXbA+zy9CXOGUKI9orFktop+Ie+7mpw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-tokens@4.0.5:
resolution: {integrity: sha512-s2EB5De7ZCRASS6LnUIg42nyckP3yvZXAK+unROeYEzsV1hyV2WtdCfedHrNa3FA/mYnkPE7U/2XTUXNMKk+mA==}
dev: false
/@contentful/f36-tooltip@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-Vs8YS1KLA6RrDkv+y7EfSJvqceJ20jwMpsZfE9SoewkT3a15v1+TuGkzrjKHJmtHBmuFzaHT3vqWW9N/cOwD3w==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
'@popperjs/core': 2.11.8
csstype: 3.1.3
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@17.0.2)(react@17.0.2)
dev: false
/@contentful/f36-typography@4.61.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-InO+KeJWdUefklsqfkp2rMP5g9JYlXu/ApAPbkP2r8Ib4pRgQk0uB4nqJKTxj2Io/N3233tavL1rRTVVubs33Q==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.61.0(react-dom@17.0.2)(react@17.0.2)
'@contentful/f36-tokens': 4.0.5
'@contentful/f36-utils': 4.24.3(react-dom@17.0.2)(react@17.0.2)
emotion: 10.0.27
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
dev: false
/@contentful/f36-utils@4.24.3(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-9+tyDOCjEhW7m4X7Sam0VYlmcgjhLVMiapCnv1EmRstlMaeI5ti9y0y/2aQ04Na2ScoHwrMTjveoZ6V62J62tA==}