-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
7293 lines (5822 loc) · 273 KB
/
pnpm-lock.yaml
File metadata and controls
7293 lines (5822 loc) · 273 KB
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: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@fluentui/react-components':
specifier: ^9.57.0
version: 9.57.0(@types/react-dom@19.0.3(@types/react@19.0.7))(@types/react@19.0.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(scheduler@0.25.0)
'@telekom/scale-components':
specifier: 3.0.0-beta.155
version: 3.0.0-beta.155
'@telekom/scale-components-react':
specifier: 3.0.0-beta.155
version: 3.0.0-beta.155(@types/react@19.0.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
ahooks:
specifier: ^3.8.4
version: 3.8.4(react@19.0.0)
dayjs:
specifier: ^1.11.13
version: 1.11.13
idb:
specifier: ^8.0.1
version: 8.0.1
lodash:
specifier: ^4.17.21
version: 4.17.21
oidc-client-ts:
specifier: ^3.1.0
version: 3.1.0
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
react-helmet:
specifier: ^6.1.0
version: 6.1.0(react@19.0.0)
react-oidc-context:
specifier: ^3.2.0
version: 3.2.0(oidc-client-ts@3.1.0)(react@19.0.0)
rxjs:
specifier: ^7.8.1
version: 7.8.1
devDependencies:
'@farmfe/cli':
specifier: ^1.0.4
version: 1.0.4
'@farmfe/core':
specifier: ^1.6.6
version: 1.6.6
'@farmfe/js-plugin-postcss':
specifier: ^1.11.1
version: 1.11.1(@farmfe/core@1.6.6)(postcss@8.5.1)
'@farmfe/plugin-react':
specifier: ^1.2.6
version: 1.2.6
'@testing-library/jest-dom':
specifier: ^6.6.3
version: 6.6.3
'@testing-library/react':
specifier: ^16.2.0
version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.3(@types/react@19.0.7))(@types/react@19.0.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/lodash':
specifier: ^4.17.14
version: 4.17.14
'@types/node':
specifier: ^22.10.7
version: 22.10.7
'@types/react':
specifier: ^19.0.7
version: 19.0.7
'@types/react-dom':
specifier: ^19.0.3
version: 19.0.3(@types/react@19.0.7)
'@types/react-helmet':
specifier: ^6.1.11
version: 6.1.11
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.5.1)
core-js:
specifier: ^3.40.0
version: 3.40.0
eslint:
specifier: ^9.18.0
version: 9.18.0(jiti@1.21.7)
fake-indexeddb:
specifier: ^6.0.0
version: 6.0.0
globals:
specifier: ^15.14.0
version: 15.14.0
jsdom:
specifier: ^26.0.0
version: 26.0.0
postcss:
specifier: ^8.5.1
version: 8.5.1
react-refresh:
specifier: ^0.16.0
version: 0.16.0
tailwindcss:
specifier: ^3.4.17
version: 3.4.17
tailwindcss-scoped-preflight:
specifier: ^3.4.10
version: 3.4.10(postcss@8.5.1)(tailwindcss@3.4.17)
typescript-eslint:
specifier: ^8.20.0
version: 8.20.0(eslint@9.18.0(jiti@1.21.7))(typescript@5.6.3)
vite:
specifier: ^6.0.7
version: 6.0.7(@types/node@22.10.7)(jiti@1.21.7)(yaml@2.7.0)
vitest:
specifier: ^3.0.2
version: 3.0.2(@types/node@22.10.7)(jiti@1.21.7)(jsdom@26.0.0)(yaml@2.7.0)
packages:
'@adobe/css-tools@4.4.1':
resolution: {integrity: sha512-12WGKBQzjUAI4ayyF4IAtfw2QR/IDoqk6jTddXDhtYTJF9ASmoE1zst7cVtP0aL/F1jUJL5r+JxKXKEgHNbEUQ==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@asamuzakjp/css-color@2.8.3':
resolution: {integrity: sha512-GIc76d9UI1hCvOATjZPyHFmE5qhRccp3/zGfMPapK3jBi+yocEzp6BBB0UnfRYP9NP4FANqUZYb0hnfs3TM3hw==}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@changesets/apply-release-plan@7.0.7':
resolution: {integrity: sha512-qnPOcmmmnD0MfMg9DjU1/onORFyRpDXkMMl2IJg9mECY6RnxL3wN0TCCc92b2sXt1jt8DgjAUUsZYGUGTdYIXA==}
'@changesets/assemble-release-plan@6.0.5':
resolution: {integrity: sha512-IgvBWLNKZd6k4t72MBTBK3nkygi0j3t3zdC1zrfusYo0KpdsvnDjrMM9vPnTCLCMlfNs55jRL4gIMybxa64FCQ==}
'@changesets/changelog-git@0.2.0':
resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
'@changesets/cli@2.27.11':
resolution: {integrity: sha512-1QislpE+nvJgSZZo9+Lj3Lno5pKBgN46dAV8IVxKJy9wX8AOrs9nn5pYVZuDpoxWJJCALmbfOsHkyxujgetQSg==}
hasBin: true
'@changesets/config@3.0.5':
resolution: {integrity: sha512-QyXLSSd10GquX7hY0Mt4yQFMEeqnO5z/XLpbIr4PAkNNoQNKwDyiSrx4yd749WddusH1v3OSiA0NRAYmH/APpQ==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
'@changesets/get-dependents-graph@2.1.2':
resolution: {integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==}
'@changesets/get-release-plan@4.0.6':
resolution: {integrity: sha512-FHRwBkY7Eili04Y5YMOZb0ezQzKikTka4wL753vfUA5COSebt7KThqiuCN9BewE4/qFGgF/5t3AuzXx1/UAY4w==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
'@changesets/git@3.0.2':
resolution: {integrity: sha512-r1/Kju9Y8OxRRdvna+nxpQIsMsRQn9dhhAZt94FLDeu0Hij2hnOozW8iqnHBgvu+KdnJppCveQwK4odwfw/aWQ==}
'@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
'@changesets/parse@0.4.0':
resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
'@changesets/pre@2.0.1':
resolution: {integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==}
'@changesets/read@0.6.2':
resolution: {integrity: sha512-wjfQpJvryY3zD61p8jR87mJdyx2FIhEcdXhKUqkja87toMrP/3jtg/Yg29upN+N4Ckf525/uvV7a4tzBlpk6gg==}
'@changesets/should-skip-package@0.1.1':
resolution: {integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==}
'@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
'@changesets/types@6.0.0':
resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
'@changesets/write@0.3.2':
resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==}
'@csstools/color-helpers@5.0.1':
resolution: {integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==}
engines: {node: '>=18'}
'@csstools/css-calc@2.1.1':
resolution: {integrity: sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
'@csstools/css-tokenizer': ^3.0.3
'@csstools/css-color-parser@3.0.7':
resolution: {integrity: sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
'@csstools/css-tokenizer': ^3.0.3
'@csstools/css-parser-algorithms@3.0.4':
resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-tokenizer': ^3.0.3
'@csstools/css-tokenizer@3.0.3':
resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
engines: {node: '>=18'}
'@duetds/date-picker@1.2.0':
resolution: {integrity: sha512-8uIbQLYrUHgUtJdF9Q6GANGFZw/R6luATyLZYMb0211Nv/nK+o5tWdCbJPcvszV7Ggi3y+8vb41OKgfP8KIWnQ==}
engines: {node: '>= 12.17.0', npm: '>= 6.14.0'}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
'@esbuild/aix-ppc64@0.24.2':
resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.24.2':
resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.24.2':
resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.24.2':
resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.24.2':
resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.24.2':
resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.24.2':
resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.24.2':
resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.24.2':
resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.24.2':
resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.24.2':
resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.24.2':
resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.24.2':
resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.24.2':
resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.24.2':
resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.24.2':
resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.24.2':
resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.24.2':
resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.24.2':
resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.24.2':
resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.24.2':
resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.24.2':
resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.24.2':
resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.24.2':
resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.24.2':
resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
'@eslint-community/eslint-utils@4.4.1':
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/regexpp@4.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/config-array@0.19.1':
resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.10.0':
resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.2.0':
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@9.18.0':
resolution: {integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.5':
resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/plugin-kit@0.2.5':
resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@farmfe/cli@1.0.4':
resolution: {integrity: sha512-bau/2P7DylHUDksUvbvJod/Ew4dl5ZICYVgTNn0EfrJM/ZuwLaV8LjmPo0pM4y1QOZmg/N3B9DwkXO89DrutYQ==}
engines: {node: '>= 16'}
hasBin: true
'@farmfe/core-darwin-arm64@1.6.6':
resolution: {integrity: sha512-WOqSRkFUsgOMYFlLvAO5lc2webJoknEFX/q++N4MrwmJHPNkKGZsnBWtxM4KLPuBQ4fyfQYd7pcyhySofQgOrw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@farmfe/core-darwin-x64@1.6.6':
resolution: {integrity: sha512-hay07tXfj/T/BIHjT8Cq1oE7GG/tAqqiQOGJXIyfEF5Bos3zW+xUZIOuots0mwnGKhmflO16+WdtVtqYkr8neQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@farmfe/core-linux-arm64-gnu@1.6.6':
resolution: {integrity: sha512-lvo9O2ODA+3yZN3dc9NvglfopV/f6wozA/KogH7Lj+rp6I4UBl3ONXqFDT7cwI0nPcegf4gUYOvyXY7iW1nYyQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@farmfe/core-linux-arm64-musl@1.6.6':
resolution: {integrity: sha512-oW32wsVhxrD9L+gqNo9Ic3FH2zeXW16yKGbfmGMfdoAo8zE+fR1dvT5qlhIPOgKi1gpYciIMVk1yiQlCj4IY0Q==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@farmfe/core-linux-x64-gnu@1.6.6':
resolution: {integrity: sha512-XPSYBPlYZStxESlKVVNdq2TX4cJ5HEjQakjoQuBdlpImMeFQGgur0MO3fze6wIBh525UjTkN+G1nz6RagZdghA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@farmfe/core-linux-x64-musl@1.6.6':
resolution: {integrity: sha512-h8FoBNbe5LoYZrq27JriaS6JJJHK9sc92jKOTrNes5u1qixw5GAPgMq4smq97koEkOwPaQfueQUTfa8pHiIg1Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@farmfe/core-win32-arm64-msvc@1.6.6':
resolution: {integrity: sha512-X4gIoSwbPmf0Lx0ZLC5dzcOm4DZR+4i+7u4sF3f7jb95GQuWR6vF1L6tk6IY5ftyaz8xFuFcDpd6WO2km+VMwQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@farmfe/core-win32-ia32-msvc@1.6.6':
resolution: {integrity: sha512-7GTJVsxNP3InrTVGYHtAJrfWMPntKUv+Ffl3rR2kxpgLbB9ZHZ0XKvj30VN3gXBWIu3y5Q58NtVAmvx79QbQ7g==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
'@farmfe/core-win32-x64-msvc@1.6.6':
resolution: {integrity: sha512-fXS1zpGE+9yed0Y2tRY3NS6otZT6rGMETf6W2llTKP3UbVzh1qYjKm2Yitf4YsY6951MAamcooZVhadjXU2jrA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@farmfe/core@1.6.6':
resolution: {integrity: sha512-xHL3MdF539rBBOhYoV/i7WCaEamtZtf9/Dw2uhfYD6LzxDuP+QmtePhk4nJy8fbZvTrd/+JC/uZ7Q85wrqQkHQ==}
engines: {node: '>=16.15.1'}
'@farmfe/js-plugin-postcss@1.11.1':
resolution: {integrity: sha512-wrnTwmOQ6AhjgAx+g2aanzQoOrY9voxGGBBguWOsJzQZ+FT/MIYcUpZIaen9Ee9F1cWuVOZVGu1v+9vT/KU5fQ==}
peerDependencies:
'@farmfe/core': ^1.6.6
postcss: '>=8.0.0'
'@farmfe/plugin-react-darwin-arm64@1.2.6':
resolution: {integrity: sha512-LcIZs2dIZWXEp05wnBmCxYMeXAu66tJSyWamdSDengbyzgvIrD0Ap1+QIDlluEnz7XOFxSH3jJZuuZP8h8qNfA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@farmfe/plugin-react-darwin-x64@1.2.6':
resolution: {integrity: sha512-E2HarfTjYIgZO454YGqnu84kOefddRyKqLtEMkG6j7Sij+uP1uEgi5mjWIwsJY9TWv5DYbx1FPmiLigC5IKP9w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@farmfe/plugin-react-linux-arm64-gnu@1.2.6':
resolution: {integrity: sha512-VK+4AtqUcAKQvAmUgWnQK3M2bXQaptMyGN/28xo/wuUjz88wso27ay5bfPxEfDHeorRwcSq5l4Gf4rQFRGc+Wg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@farmfe/plugin-react-linux-arm64-musl@1.2.6':
resolution: {integrity: sha512-e1OFg8d1VnEGcg08ewTxJVbv6ie1e8U8fUSABbEUePKzeom8cfC9P4jadACw08M2Ls4YnOlLPFLTSlVCg9Xhew==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@farmfe/plugin-react-linux-x64-gnu@1.2.6':
resolution: {integrity: sha512-0WFKSkPv/NK7A/czyluS0V+h/qxIb6jILUh82RyOfVjCit0WGPDVN/IH/ZIp2qMGdjtP9er8u4yt4zNGKrHZNQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@farmfe/plugin-react-linux-x64-musl@1.2.6':
resolution: {integrity: sha512-X386lU5+4ELeaIS3c2xgB4cUjry12HUF3/lJWje2hV0SvGHwErkM07HhjbQd/XsJyg6dP8YnAn3RkuYFiwoTog==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@farmfe/plugin-react-win32-arm64-msvc@1.2.6':
resolution: {integrity: sha512-Ufr59JWTYv5Yq/FBBnCWtX136sVilqYDX4CfpBDEUxSEqFgaXGyslme1qDmh1248bscqbbvYI4zbn7ECV209ow==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@farmfe/plugin-react-win32-ia32-msvc@1.2.6':
resolution: {integrity: sha512-qzbeV639ywoGBGUAboi31+9vzpmS+llvRcxdpkKVTVrDQ7Wb0SO1Dmd7g2gItip6jAj8md+5sL9WudYJ/EOA5g==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
'@farmfe/plugin-react-win32-x64-msvc@1.2.6':
resolution: {integrity: sha512-Og2yvMOpR2VSLgUEthhJ1W0kM4FQjupHN+gPMr97KyoM+dh6xYwnbZ0Cs9JnNIqQFPlYiPuq9EzLPVffxX8xHg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@farmfe/plugin-react@1.2.6':
resolution: {integrity: sha512-AVXMnqwekp+Cke6a16/xWnviUnQiFeY1FhxkTGJVamHQFgGmm+uAhPXJ85sQDQLAwtkAMd8rimEhNFVeHIKkaw==}
'@farmfe/runtime-plugin-hmr@3.5.10':
resolution: {integrity: sha512-ZFwAGDJ1sNuwX77ADdPSO+PoMImrGl0k+nvW/TnzOy72k8JxC8OwaeOiuPgNkYxDGldp55l9mPE9NvcoxR8uzQ==}
'@farmfe/runtime-plugin-import-meta@0.2.3':
resolution: {integrity: sha512-BEHPjfXj/DXpwKxyM4rMqT9NFRfivTGS+b02uchjV9MSTi8mZqm3QhtJ+znlpgHUBABBtZYKdayQEDhyK4izYw==}
'@farmfe/runtime@0.12.10':
resolution: {integrity: sha512-2/jebNFaVC+yctEeFZrmbfjaKJOg2Ib9iJ8ypjcUnnETfR4zbZnYuErfIO1Af44anvpONwWDhQ8RVcmy+WyY5w==}
'@farmfe/utils@0.0.1':
resolution: {integrity: sha512-QLbgNrojcvxfumXA/H329XAXhoCahmeSH3JmaiwwJEGS2QAmWfgAJMegjwlt6OmArGVO4gSbJ7Xbmm1idZZs+g==}
'@farmfe/utils@0.1.0':
resolution: {integrity: sha512-neNJQGqV7XL4XifG1uHOBFSFLy2yx1/DVZNRA7nfeEAXEksVZTwWA+fZrYEaI0w7Sw6K/9NYn9Jgpn+NAT0mcg==}
'@floating-ui/core@1.6.9':
resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
'@floating-ui/devtools@0.2.1':
resolution: {integrity: sha512-8PHJLbD6VhBh+LJ1uty/Bz30qs02NXCE5u8WpOhSewlYXUWl03GNXknr9AS2yaAWJEQaY27x7eByJs44gODBcw==}
peerDependencies:
'@floating-ui/dom': '>=1.5.4'
'@floating-ui/dom@1.6.13':
resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
'@floating-ui/utils@0.2.9':
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
'@fluentui/keyboard-keys@9.0.8':
resolution: {integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==}
'@fluentui/priority-overflow@9.1.14':
resolution: {integrity: sha512-tIH8EhvjZF4MhxSjqrWOyodrQQW+RlVZqxuNFQF5OWRdSqcIK8g+Z+UbC5fYHQooCgVsthk2mFurfGMKFtf9ug==}
'@fluentui/react-accordion@9.5.13':
resolution: {integrity: sha512-htIgDVU3LmWeU4J1eZ+2MBl9VC25z0U1vXFI4cLMqDiqHelWv+78bMTj/2jCO3MQPqHdwrBMwiajVfKAXnugBw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-alert@9.0.0-beta.124':
resolution: {integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-aria@9.13.13':
resolution: {integrity: sha512-8IQske0+zXJPztyLqOcwdL/AXUwPjIIKR7Gobwtf6Z9NA1wxeBk5jAppuspMSUdhOQVvNFeeP11eG24xl58TsQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-avatar@9.6.48':
resolution: {integrity: sha512-65fzyCanfAJmJ75rMjk0G5N5wo2u5brBJUDPuGrhaYThkae3WF2J1M8qfTSFaqY3F4ufihgUuesXbBFP5jpnww==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-badge@9.2.49':
resolution: {integrity: sha512-AtAwAcFIhRhaLnfGQlyQGP3aXK3AL6WUg/phS0pYgj9bpZEyjAYYYYCklaB3RtFUSR0h7cEsdkBXnAcoN7ItlQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-breadcrumb@9.0.48':
resolution: {integrity: sha512-3XUt8eZ4brdr7qNLDqR2xIrQAd2f49E8bhhh9ZFG3QqHkWPuBhL/FoWvdKWUSQGNTY4g2nv7p9iNjt2+CG+RaA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-button@9.3.99':
resolution: {integrity: sha512-GKRKZXtQUEOLbtaD/xDVRsj+orIKrJFxMCwsN71ANfJYP+dN13BN6u/RmsLEg4oIU+UZPhgw1gvAdHyNbuSEbQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-card@9.0.101':
resolution: {integrity: sha512-ANCa1WyGDhHQZ0gvaaZ4RL0yHtIopDQcNb1BuQboqcp0+37qUK79AcUDRJUxJaoNOloMPpXThDoI8rcdBV0/zQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-carousel@9.4.4':
resolution: {integrity: sha512-HXSpSmEDzMh5V5KRTH+QP58kGMlzIje0rAAESgtKn4Bg9SrVGzY0ObI0ldUxMJOoY1l7I+vT2FlPtuzfglqRZg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-checkbox@9.2.45':
resolution: {integrity: sha512-BLv1HkT3J81ToDflc1AqgBr3H4tZeelDZH5gJLKqKn3wJb5AyZt98Dq8ROwHUh/SAYftaUa3FEnNc4FpaoaHFA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-combobox@9.13.16':
resolution: {integrity: sha512-3fnrpRXrQSzsI2J1gPaOzSvLF3ptMqme4wW26tfeQi/tfYLZ6GBXMzHHOGhkHQVqtd3gcgXwsgIq5zQxnjy2mQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-components@9.57.0':
resolution: {integrity: sha512-YCWT2X1mKTEP2tunSASh95cKOKI4pM42gqmUCrVlZOeT6EXeAW6CAsAlGEygQwR/hV/RStCFS+J8Hqxk8yTuJw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-context-selector@9.1.71':
resolution: {integrity: sha512-rBm3+e/RPERRdW8xbL7+JgUHApNkoVOXoRfzva4qWF4dOudmDytPobzNNAyNXQXSbFZoeBYiCQ62OZf7wVpE5A==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
scheduler: '>=0.19.0 <=0.23.0'
'@fluentui/react-dialog@9.11.27':
resolution: {integrity: sha512-U+b60RQHgEb2ECriw0eIfvaBO7c9CgQM+eJb5oLqa0YC6fgeA1v/NqtGSq6BHqdQ//2EdQZQeO7+tFrdplekKw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-divider@9.2.81':
resolution: {integrity: sha512-1SAEKNLbZIS9ZKrIJdUoDMDugpWO9wQ9OaiCUTN272JKamhPswA3PPYIkrLeu3slZ3ZxgtMAAvEZzYUk38PxTQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-drawer@9.6.7':
resolution: {integrity: sha512-MIVxVdPdWNoPYz+nMVruF4/xjI+GW4hr0wXAP41pGv8O1b/Hvuekq13KKH7NeXmx0fBTDLsGDsBkfYPTAnnO6Q==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-field@9.1.84':
resolution: {integrity: sha512-lj8fnwz4IcTNe4xIZnURZ59ppmQnESiOmqso2anuxEUUEJ4bYoBVMJnhyl80BI84Lme6F+aqxHt1oOrExZ7i+g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-icons@2.0.270':
resolution: {integrity: sha512-XFAUxbOTH5gb/eTZ5UDR/841tbNskr2SNa/hshsQdojyEKMjBxNNcXo2ruesdfCGKsz/KOlmSh2sZu7NmN2N7Q==}
peerDependencies:
react: '>=16.8.0 <19.0.0'
'@fluentui/react-image@9.1.79':
resolution: {integrity: sha512-3p8nUK72+kMyIqWt+Um7knDa3mNjQY0ldyDIAqvc7okQSKwD1+M69AwcEkpLzrNTBylN/WrAii76SCYhcLqSQg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-infobutton@9.0.0-beta.102':
resolution: {integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-infolabel@9.0.55':
resolution: {integrity: sha512-NmU3ptHSyL3PgkLQI9nWNY2TvUcKueFqLYUNXs7oxizPrYdyvEatPvSjsyfhi/o908R+wWRndNqt2OFqQMYJnw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-input@9.4.97':
resolution: {integrity: sha512-HZGgw57d6Jjo4pEG4MKLuMCTQ+XNMfDfM1i51qOc81ONt7k3UXqV9oBJC/rk2d+PAabXiPQ7ClEMZppfOc4sfQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-jsx-runtime@9.0.49':
resolution: {integrity: sha512-/ALjAanMoC+kLsQvbK1u5YncXa36OvFiLtPqQMKwagMHIHIFwdVYYkAR34hhqzDQniv05kOfHVTrzDzsi25pxw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-label@9.1.82':
resolution: {integrity: sha512-H74Mn1VPB98Hd/kjATAT6+uezxPC95dzQd9zl9SPN/EefZFrJ1Ck0tx0TV/YU6pJSHz43B2fequd8XdEOFWa0w==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-link@9.3.6':
resolution: {integrity: sha512-qqtJXX3hBo4IFHlTk1rXSMDZ50tGoj5g019KlTG1kJA7AkcLMg5FYoOe0wWkLrnwQYYj1ZIBObEm4+O/N3OGyg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-list@9.0.0':
resolution: {integrity: sha512-lri3az+KGSvLH6U2+f72rlujd8t2NWhkUhrEGIVRXVF0FepE0PCshba1rUpvDdqtdm4c6oKyyS32DwX2ZmseUw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-menu@9.14.25':
resolution: {integrity: sha512-xdIJfzhTmOjYG++SjsaLGbrZNKCl37llzRTve0v+uqZ4BzcMx4jl8s07xfqAC1yCaUPHtL84SBrYA7WXS6hLqg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-message-bar@9.3.0':
resolution: {integrity: sha512-rPrQV2rM7QTGZ0IiZ5Cb11N8B01AQ8oizVCwB1WSDH0m5qCuKA5MW8UME/bzR7SKipgQ1mQIZjoq8MMYdeDrjQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-motion-components-preview@0.4.2':
resolution: {integrity: sha512-xWMCqpJjTdtAbL0CnAjkgoPJ9jAOUW+z8Lz+JnIcj4xSidJdURagfTQku39G96BIv+xGHbGxlmyU6N9eV5EnHA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-motion@9.6.6':
resolution: {integrity: sha512-g75dEKNuy2Fp44/T93tCS+gW56VrwXkpwX4CcJsPQWb7HO0qLjJAId4DrsfNY9xplb8emrhfHVOs0kKpf/7Rtw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-overflow@9.2.6':
resolution: {integrity: sha512-2qvtvBt2zIoSd3y5GpILpPW+ZUImTnbSD0lN0N61CuxrbRkNy6vFrkpoG8QCrrewVWL/UZSdoJQYkMJnLgiWGg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-persona@9.2.107':
resolution: {integrity: sha512-UBHtPwuS+HvSiocUp2s6LIGf09jKgE/3qKhEne5JJwukL5/dBxtKRLeo6moYmlmrP67g1XS+m0JZtsWUfj9wLg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-popover@9.9.30':
resolution: {integrity: sha512-jBekpPbrjuZ89csZ0ES7uYWRLC5aR2peOGeTditYYR92Lvby80wXtmgSWWsfTJoVH8kHXEYvi9GSIIL1RYtgzA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-portal@9.4.41':
resolution: {integrity: sha512-A+roO2ccYGSITnnPUbx0qKg04azo5VznQ3jhY6WlRBrEESxHS/EL5hbfEx3w8WXBH6iihi0J4qjMUYrHfeuvJg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-positioning@9.16.1':
resolution: {integrity: sha512-kR8MSpMy+A81O9iRa8oEb4frL2rgozX+V+HB9ZJcCG9pLmsdkg9j8/DJyJjgSM4xSWza+1qvSHw/l7g2nmaSTg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-progress@9.1.95':
resolution: {integrity: sha512-E8VW+i+vM3DYDj9TNm9Eq2Bz3Q6sgGqAA2sHPwfg9PWQlvCA9dlrYZ7+BwG4zJXP5lgNM8JPbkzsMcE1p9Rwpg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-provider@9.18.3':
resolution: {integrity: sha512-fjrEwPc4/qtp7dBEZcefx8+nu28USylH7Q/wHlbOv27qIpoo3VfepG1f+SJmfxqKADqvc4hS3pGsxiiYhebAHg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-radio@9.2.40':
resolution: {integrity: sha512-bE0rl0fSDCtUYvwTeTM/+A5zCxNlt8J8Q+x+ALaMl8e4eeVBLr4nrUSwFpDXC0LWlxb3FTb6Q8d3u2ouvn4U1w==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-rating@9.0.27':
resolution: {integrity: sha512-YF/88xrB6rQeEd57QyMfar22PBG1Na7neMbIkVHpyAnXspZ83oGJbmzunzsEzT5WkIJiMKWpXuHlkm/dgizrgA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-search@9.0.27':
resolution: {integrity: sha512-2YXTr2xdUFTPdx1T99el9SE5gZ9AZBFlNkFi5Wqv0rWxlJG5hZzCbJFDK1daQv6FLsFSDGcrnbGASiBmxETJgg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-select@9.1.95':
resolution: {integrity: sha512-pijHr3DBof6QU9YhzrnUOiY3LOVuzvYHXNOMP5kNv53CT7IFWjfyjJSf+9qPniw9m4wtDOA8Pxw5OpdwATM8Iw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-shared-contexts@9.21.2':
resolution: {integrity: sha512-5hw9CfCmKaEbxmFi+ZF4EZzYWFKrfRLq9pXFIoJWprP1D3ZAds/ymtIOG/CsJzig8zQ1LQ3cNSUzNB75XWg6IQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-skeleton@9.1.24':
resolution: {integrity: sha512-2VgfZxdeeGCZGH5Lu0ycx4dVLRptRmf61PzV9VPO9uA4SXQfRNp/4OUoEmYBR6bIwE0rHbK55cdZSPDX1/WuQw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-slider@9.2.4':
resolution: {integrity: sha512-4qSrn+oXXBP29e/rO40Y3NdvfCeSydZv8qDXEogoBHm1zLYFjF/abSLDgtJQx4qt8urwyu8dild2XUhDaPa+5w==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-spinbutton@9.2.96':
resolution: {integrity: sha512-Le5bf7hG5U/YshhOKaHXL3gqgG/24lvlR5vlgCrqOsdGx6GsBnfWfaHYhYgMt05Cq/bmSjd1qaEeEVz9zzIFhQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-spinner@9.5.6':
resolution: {integrity: sha512-kC9/fQgFj3MwO88xIowjYBfjiWdKis7sQHbV2gKq3Se6ysBaOSmJbJhH0VwJhj4CroCCQv9z4vkPALsCBvPFJg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-swatch-picker@9.1.18':
resolution: {integrity: sha512-7/ZCG4tbqiCDZwrIDcQIDllTCBDr+/4nXkMaL3iP7LFZyw9OHEzBJ2Hk7hfoKHm42jqDDU+VD/QsJXltKhLgIA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-switch@9.1.102':
resolution: {integrity: sha512-mwTe3YSht8JTSnK3vJn09D89Fu6KuyVJ1cTmCubypMfaW3KdzcQOULwjbCM5Ji31NfrziA+E7zDUcn+/94HRzg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-table@9.15.27':
resolution: {integrity: sha512-CCuWEPo6Lqpp05vae9llxVm4MrKcC0JER4T9dZCyBEPpF1kLKZgz/voOl7vculO05pLYrwHKOdGqPnYqOX0tKg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tabs@9.6.6':
resolution: {integrity: sha512-cBUDd1L7r5BIZYNcAu608qQX/4l4JqXR+CTqAqteMDk2wWm3zCPZ5QcCteu8CVZvPeNzcoIUuWBlqsco1TSovg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tabster@9.23.2':
resolution: {integrity: sha512-DG1rZy8dkD24urQQywhRPfo13qEALCHUWSBmuAYnZ9wAHkGRbDVgdGZLEEUkvP5a6PxdDsFD5AGnC4C+56gKOg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tag-picker@9.3.14':
resolution: {integrity: sha512-+t12e6uFSKZnDq0dfCEysJC0Sgs888zc7a6uZqa63kjjYGHmAnNXtSJPs8wNmjgGJp0f9Tv7odERvDgz05UqCA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tags@9.3.28':
resolution: {integrity: sha512-MZG1ny7B3zCsX1oxMeY1FA0o19am9cXrMXb8/JJ+Oo8+lWyl/LWf/M2l+pUiPPs9HXb9y0ZHHdKUJPqqXFmIwA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'