-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
7373 lines (6029 loc) · 288 KB
/
pnpm-lock.yaml
File metadata and controls
7373 lines (6029 loc) · 288 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
overrides:
vite: ^8.0.0-beta.15
importers:
.:
devDependencies:
'@rspack/cli':
specifier: ^1.7.6
version: 1.7.11(@rspack/core@1.7.11(@swc/helpers@0.5.21))(@types/express@4.17.25)(tslib@2.8.1)(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(esbuild@0.28.0))
'@swc/core':
specifier: ^1.15.11
version: 1.15.24(@swc/helpers@0.5.21)
envinfo:
specifier: ^7.21.0
version: 7.21.0
esbuild:
specifier: ^0.28.0
version: 0.28.0
glob:
specifier: ^13.0.6
version: 13.0.6
parcel:
specifier: ^2.16.4
version: 2.16.4(@swc/helpers@0.5.21)
process:
specifier: ^0.11.10
version: 0.11.10
rolldown:
specifier: ^1.0.0-rc.5
version: 1.0.0-rc.15
rollup-plugin-swc3:
specifier: ^0.12.1
version: 0.12.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(rollup@4.60.1)
vite:
specifier: ^8.0.0-beta.15
version: 8.0.8(@types/node@24.12.2)(esbuild@0.28.0)(terser@5.46.1)
packages/10000:
dependencies:
'@iconify-icons/material-symbols':
specifier: ^1.2.58
version: 1.2.58
'@iconify/react':
specifier: ^6.0.0
version: 6.0.2(react@19.2.5)
react:
specifier: ^19.0.0
version: 19.2.5
react-dom:
specifier: ^19.0.0
version: 19.2.5(react@19.2.5)
packages/lodash-es-basic:
dependencies:
lodash-es:
specifier: ^4.17.21
version: 4.18.1
packages/react-fluent-hydration:
dependencies:
'@fluentui/react-components':
specifier: ^9.54.2
version: 9.73.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(scheduler@0.27.0)
react:
specifier: ^19.0.0
version: 19.2.5
react-dom:
specifier: ^19.0.0
version: 19.2.5(react@19.2.5)
devDependencies:
'@swc/core':
specifier: ^1.6.5
version: 1.15.24(@swc/helpers@0.5.21)
swc-loader:
specifier: ^0.2.6
version: 0.2.7(@swc/core@1.15.24(@swc/helpers@0.5.21))(webpack@5.106.1(@swc/core@1.15.24(@swc/helpers@0.5.21))(esbuild@0.28.0))
web:
dependencies:
lodash-es:
specifier: ^4.17.21
version: 4.18.1
devDependencies:
'@types/lodash-es':
specifier: ^4.17.12
version: 4.17.12
'@types/node':
specifier: ^24.0.0
version: 24.12.2
packages:
'@babel/runtime@7.29.2':
resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==}
engines: {node: '>=6.9.0'}
'@ctrl/tinycolor@3.6.1':
resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
engines: {node: '>=10'}
'@discoveryjs/json-ext@0.5.7':
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
'@dual-bundle/import-meta-resolve@4.2.1':
resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==}
'@emnapi/core@1.9.2':
resolution: {integrity: sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==}
'@emnapi/runtime@1.9.2':
resolution: {integrity: sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==}
'@emnapi/wasi-threads@1.2.1':
resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
'@esbuild/aix-ppc64@0.28.0':
resolution: {integrity: sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.28.0':
resolution: {integrity: sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.28.0':
resolution: {integrity: sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.28.0':
resolution: {integrity: sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.28.0':
resolution: {integrity: sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.28.0':
resolution: {integrity: sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.28.0':
resolution: {integrity: sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.28.0':
resolution: {integrity: sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.28.0':
resolution: {integrity: sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.28.0':
resolution: {integrity: sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.28.0':
resolution: {integrity: sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.28.0':
resolution: {integrity: sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.28.0':
resolution: {integrity: sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.28.0':
resolution: {integrity: sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.28.0':
resolution: {integrity: sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.28.0':
resolution: {integrity: sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.28.0':
resolution: {integrity: sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.28.0':
resolution: {integrity: sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.28.0':
resolution: {integrity: sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.28.0':
resolution: {integrity: sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.28.0':
resolution: {integrity: sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/openharmony-arm64@0.28.0':
resolution: {integrity: sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
'@esbuild/sunos-x64@0.28.0':
resolution: {integrity: sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.28.0':
resolution: {integrity: sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.28.0':
resolution: {integrity: sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.28.0':
resolution: {integrity: sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
'@fastify/deepmerge@2.0.2':
resolution: {integrity: sha512-3wuLdX5iiiYeZWP6bQrjqhrcvBIf0NHbQH1Ur1WbHvoiuTYUEItgygea3zs8aHpiitn0lOB8gX20u1qO+FDm7Q==}
'@floating-ui/core@1.7.5':
resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
'@floating-ui/devtools@0.2.3':
resolution: {integrity: sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q==}
peerDependencies:
'@floating-ui/dom': ^1.0.0
'@floating-ui/dom@1.7.6':
resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
'@floating-ui/utils@0.2.11':
resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
'@fluentui/keyboard-keys@9.0.8':
resolution: {integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==}
'@fluentui/priority-overflow@9.3.0':
resolution: {integrity: sha512-yaBC0R4e+4ZlCWDulB5S+xBrlnLwfzdg68GaarCqQO8OHjLg7Ah05xTj7PsAYcoHeEg/9vYeBwGXBpRO8+Tjqw==}
'@fluentui/react-accordion@9.10.0':
resolution: {integrity: sha512-EwjRfBdC3esMEP++PddyF7bVMSv9+t2W8AY5GkNcwDsqAW3D4zhlvxXBAb3qmpgXy4qMxRWGL8cEaiWgMpH1sg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-alert@9.0.0-beta.138':
resolution: {integrity: sha512-mE3nMx1ngevvmFcp/2sePyJrdE8nme7eqCv1ppUT+mTIA1RYkR8hzBld1+DV1qJYc+F6DCeg4gImuQuu1OXiGA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-aria@9.17.10':
resolution: {integrity: sha512-KqS2XcdN84XsgVG4fAESyOBfixN7zbObWfQVLNZ2gZrp2b1hPGVYfQ6J4WOO0vXMKYp0rre/QMOgDm6/srL0XQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-avatar@9.11.0':
resolution: {integrity: sha512-3MogJIiOGilKh9y/sWy0Cali1tpvWQNwcs2ryL7EVXi5xwTfKQM/WEgEnW2z+KtumDQUsRqlCHCSoi+x+BF8Qg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-badge@9.5.1':
resolution: {integrity: sha512-OHS15ovGFPShrAA9U+hCyloJEyffC9gdif0a27AOIB9aVlF/hTzG7toxxulcg4ar4F9X3xXk/uccCCa2kzK0Gw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-breadcrumb@9.4.0':
resolution: {integrity: sha512-QpCjYlM3JTMnNwh/sDehDbuAVjTcgSfjkPdSmFaPk2lPHpER32CBcJVhheP9en2U5NbW1e+Gtvq8y06RN8FCWw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-button@9.9.0':
resolution: {integrity: sha512-aH3aSjKyxIiNb9jJOUaaIq47w7jP5ESFSRzvMjcWOETvlWo4QgNqEOOsYqpcltM1OrQZ0sTy/isxppRcyMDlcQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-card@9.6.0':
resolution: {integrity: sha512-vgBvhtSzQDa01aOP9zdhJXFLsZAiDVslRfX3HmlIo1pAMt8w+PBq+ypDp1wxM7HPFpj9+RYcERRKtf4MSNP9Nw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-carousel@9.9.6':
resolution: {integrity: sha512-Ae7DKwQsidRBjUQeiXffRUi8i/26jMgJd24rDVLeQUvoUhs+z/SA9iZN/QMuNl02E291MAEruENKzzkshvfYfg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-checkbox@9.6.0':
resolution: {integrity: sha512-GMgB1Yx2WP6cISIZoRTyXp2VkJBR8t1+wRyY63RRcofL/ziqqBhz++kl317lbVv7QxnXZh6KlVuoPROWFDQuaw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-color-picker@9.2.15':
resolution: {integrity: sha512-RMmawl7g4gUYLuTQG2QwCcR9fGC+vDD+snsBlXtObpj/cKpeDmYif46g88pYv86jeIXY1zsjINmLpELmz+uFmw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-combobox@9.17.0':
resolution: {integrity: sha512-04JTIrXCAbG8HnczFVzJsUJO+NJQ2d/JPynXlmTq7KCMw0BssiF//7IAPFnTiMYmS7jcwc9Uh4ZeFrw+czA79g==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-components@9.73.7':
resolution: {integrity: sha512-hLxXEAiiMEMmFR3jEYgFPOV5lnNzu6SJU0NtyMCn1Tf4HXgCfy4h700e+GzuAsL1RlQAYC35HplcZHcEffwTIQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-context-selector@9.2.15':
resolution: {integrity: sha512-QymBntFLJNZ9VfTOaBn2ApUSSSC5UuDW8ZcgPJPA+06XEFH+U9Zny2d9QAg1xYNYwIGWahWGQ+7ATOuLxtB8Jw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
scheduler: '>=0.19.0'
'@fluentui/react-dialog@9.17.3':
resolution: {integrity: sha512-rF5l8n5yhaB//ZHns0my3Tviir7R8NVyRgTtvV2gLhG58YM7qpm54oraG83uwlXCcZp0wlg2LuIe1cZ559ex1A==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-divider@9.7.0':
resolution: {integrity: sha512-U8Nhrghjeh+XCGM4B7aHYosd6fXaxHC3MpZi7DB0xQ20ljn5cSTpBt4Yvl+tB9ld2+/eM8wekx1GVKyI4yWa3g==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-drawer@9.11.6':
resolution: {integrity: sha512-E+k3eKVb/xKPm2RH5Q1xBjL89NeB1GXtYHO6qRlhQ9auYVTlaBCR7f/ZfIIJJ2x8MzfntQljyl94VARtmZYnyA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-field@9.5.0':
resolution: {integrity: sha512-yGjB9RXqKrolkkjyAsKVdrH2Xeinj+vromrSCJelgMJ3Q3D6YkExHQzgtdzqo0fVPppnEA4oDKL3Vqqnz/G5Ug==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-icons@2.0.323':
resolution: {integrity: sha512-BWFvdg8Er3668fri7o5RVqdfDO3jIg0OvJmUl5EWg6lO7TeC8A+OTggjzqO+J062ONaHPHpQ9IHbnYQ+QXGwXg==}
peerDependencies:
react: '>=16.8.0 <20.0.0'
'@fluentui/react-image@9.4.0':
resolution: {integrity: sha512-BpcBlmkukm7YYf6PTCbAIMkeCXc8+7aq2eMADsxF5gFD8j3d5lBY3cKByOWRM1NvXcMXmqXr/hQP+ovqNAHzEA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-infobutton@9.0.0-beta.114':
resolution: {integrity: sha512-3mqnlIcRc0PuW7rsxLFjzqnI/IITZIrHRt8Zwcm8NX7XZIK3wfODb9ytmQDYU/5IfwiSXC+xozqhI6kttaE3iw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-infolabel@9.4.19':
resolution: {integrity: sha512-b/3ETF5DPgHcRUcj85iGyiEXUFozFq+IY6tPcyCiUcmIoKScD8McFaHozjpaVqngLbCz0uKNNA0JDy1x/T2ItQ==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-input@9.8.1':
resolution: {integrity: sha512-ZlMeYBf1EQg4alI5+9gfx3Icmq3xibPiIYeARtFzOKJ2XzpnD4d/yswx3IDkzXCbqw9rSHtHV03vEeYLUPPTGw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-jsx-runtime@9.4.1':
resolution: {integrity: sha512-ZodSm7jRa4kaLKDi+emfHFMP/IDnYwFQQAI2BdtKbVrvfwvzPRprGcnTgivnqKBT1ROvKOCY2ddz7+yZzesnNw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
'@fluentui/react-label@9.4.0':
resolution: {integrity: sha512-joQ7YNz2dgwDd134sc7e8/vxfFKBUT5AdWx0apT0ohWKgh7RBjB3AdXsaJ8FaMKMNZIGTxZVsP4hHcGsWMTAFw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-link@9.8.0':
resolution: {integrity: sha512-TH5LS4iuQ4jYzlR84A4n7lQTKaJuiuuGFHMIxoEqtKeMoL9F5AiabuBs6m7Q7clSdTrrcRMNzXLuEFarQrzGTQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-list@9.6.13':
resolution: {integrity: sha512-MIP0XKxU68m8VsBCyNBame46nnZ94FCNUArw9T2JuumyKMgV07C+sNhXCe9BCVpUr8e2Hfofo7CZjAsXWDZ0nw==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-menu@9.24.0':
resolution: {integrity: sha512-HqIwEM6lPropSHUnbPFufLYdkAIVca87XbNQHCTes4QSLeaF4oEjlBH60rIqQ52k78FwZuUFIciWkSChxJ9ekg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-message-bar@9.6.23':
resolution: {integrity: sha512-mGnFmYWx6tq36OMTdVtJmxyn3j0p+Shll3+w4W2fW8fcOVSeyrnZ++HLmpurUkVzwI2xR2lL842kxC3GtbwmNw==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-motion-components-preview@0.15.3':
resolution: {integrity: sha512-dUH2+GmEWX9q2ojx70VfFLRqzA9fR4YISC6daXkz3iPx4PtesTDn7jwsuXXquaAhltJeBptJ8+K4jbtBrwCMYQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-motion@9.14.0':
resolution: {integrity: sha512-gOy8+fUP1KQRM/J6mRhioCMmUrHW9jbLF0DZ9T8nKPQsLrLaSXHxnnI8DcKZjlYc2fKuZitBnbpximgff6HajQ==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-nav@9.3.23':
resolution: {integrity: sha512-Z9hA70n5i62sO9IJItkX5+v1F7Lo/539joPaHCLHHca+rySQQZKqy8zLRIfLbh/qF8Nm04ywY19Qt14XjI59cQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-overflow@9.7.1':
resolution: {integrity: sha512-Ml1GlcLrAUv31d9WN15WGOZv32gzDtZD5Mp1MOQ3ichDfTtxrswIch7MDzZ8hLMGf/7Y2IzBpV8iFR1XdSrGBA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-persona@9.7.2':
resolution: {integrity: sha512-u6buhC6Haf8YewBnZAzi49YCwiC8vt0O0YPADemk+4uJ8bhCnayzLxMYGuQ95XO4HFhvVnSPEYjMDdKrMO1hIw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-popover@9.14.1':
resolution: {integrity: sha512-EODa5yWSfDLPDurjWoZXfkf2ccnbQQbk3s1XYRzxA6RDfdVqUI5W64RJzHWBiNhOLzQEhd6Qb4e6Mshj4FSbdQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-portal@9.8.11':
resolution: {integrity: sha512-2eg4MdW7e2UGRYWPg05GCytAjWYNd55YOP9+iUDINoQwwto9oeFTtZRyn08HYw37cSNqoH24qGz/VBctzTkqDA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-positioning@9.22.0':
resolution: {integrity: sha512-i3DLC4jd4MoYSZMYLKQNUTpkjKAJ0snIcihvkrjt2jpvv34CifKJhqVtjFQ470pRW4XNx/pBBX07vdXpA3poxA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-progress@9.5.0':
resolution: {integrity: sha512-VcWXI6UJfBkrDuC/e9oR4YBlpnLUE+FqRRjMG4mVXV+AJzFiljF3mQkFAj94G6dsr54TcoDXC6oydgXLCOTW2A==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-provider@9.22.15':
resolution: {integrity: sha512-a+ImgL9DOlylDM4UYPnxQTA3yXxbVj+O0iNEyTZ6fMzdMsHzpALU4GAq6tOyW4L7RaQtRBmNpVfwTCEKpqaTJQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-radio@9.6.1':
resolution: {integrity: sha512-QBoV6l8fVLP+H9Tigq/Y6boiEqMDRhhVMkIfUiWFbnsU/Uc7J5fxW8GoNqzMmoOmC7yvQ/g4jsoTQF27+PzK5w==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-rating@9.4.0':
resolution: {integrity: sha512-qVesFNgQ7uuX8z9d8xqxIXn5ax06xffgBr/eAuZfqVYZG5aRrPHHRoiWf0HDrYD4Lb/HRBLPtbNihNxhXj/LEA==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-search@9.4.1':
resolution: {integrity: sha512-Lv2zhPad7SDhMd5NeabXluw4y0Gov9YxDkJhjShMnkiN3yCOA5tlVviNvRXOXxy0gS//d8CiGJ5mBT1bzz2Rrw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-select@9.5.0':
resolution: {integrity: sha512-pGOD6MBwQsiHKkEdNmVrTavcfC9pOjt4nz/DRlFD444j6iR1PALlus5cNOp7A0JOnGDDvW+1afIvgySCqN0oiA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-shared-contexts@9.26.2':
resolution: {integrity: sha512-upKXkwlIp5oIhELr4clAZXQkuCd4GDXM6GZEz8BOmRO+PnxyqmycCXvxDxsmi6XN+0vkGM4joiIgkB14o/FctQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
'@fluentui/react-skeleton@9.7.1':
resolution: {integrity: sha512-9WniFEe6gbhkZuBurpQNFmMMhP/Ox84Xm9/iu6q8OmnRkFCyZrEuCFlWGDffnBREKIJqE0VJn5ZrUYWMMh45KA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-slider@9.6.1':
resolution: {integrity: sha512-ytF1gOEho8DrI817H8WCBsck1RXOlW7JRXYtu9VwH3SnDRM2Jz1CNxbou80+BpvyR1KKkvCc/JSgREgUAnkRAQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-spinbutton@9.6.1':
resolution: {integrity: sha512-szqGlEfeJYkBzszEWBjj7ux522ckw9YtKAH0CS0Npd0xcY1GFkdywPwJMOoRUhsO08BOhv6P70Wlx0eYqURgIA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-spinner@9.8.1':
resolution: {integrity: sha512-vSM5FwjASEor8NBOJx/1MLp8VCw7+pOJqZSvMn29LrUmMbgSZ6CifZFx0GfiX+1fM0EZ2/pqJzFFHpoQQubAyw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-swatch-picker@9.5.1':
resolution: {integrity: sha512-7rs4dgnFMV2m/2A1tkevrVfThVEJs9crnVWCiSE4XADb9hFp7mqVyN8dKbQCJJMXODLF/Bc90nTCtLV8WaEj4Q==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-switch@9.7.1':
resolution: {integrity: sha512-61zJhxG9UBcZ+5T/Dk9yzOJDCOc2ZMZef/ImgIMB4lVsyWs/3n/ec/PKPwjp9SNz2FhQvayhMytEbGzri00jGw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-table@9.19.14':
resolution: {integrity: sha512-IZ3tDqlQDC+R6nzX4thU8A7Aw3BMhbBZ5tgMOHnW733Xfton7wqKiumjsGJBnef3I48mqnBHJZQEzWBgzLsdqg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tabs@9.12.0':
resolution: {integrity: sha512-gKCi1XNDYRvF6R5wETeQptzQRVBlM7VETaQHS/ue1x7+Vo42MbWMtYOmvqeg5CPjqy2hAwch0IA9bzWEQAm2ZA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tabster@9.26.13':
resolution: {integrity: sha512-uOuJj7jn1ME52Vc685/Ielf6srK/sfFQA5zBIbXIvy2Eisfp7R1RmJe2sXWoszz/Fu/XDkPwdM/GLv23N3vrvQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tag-picker@9.8.5':
resolution: {integrity: sha512-uhZUWDdg7zmQNjb1/5YI3l6agSDg/yFFaYZDH4eQDOmKIm35jAT2GmEMZVomZZVW/dDhZpezfMWZA5r442cZYQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tags@9.8.0':
resolution: {integrity: sha512-O/Kf8pFgS0/eguzDCPm8FmrPG64dU36xTI1uYKwgF6iVOpmWFjk+7aPQtkoFHQzVwl1iLUL4mQFSutR4A8s38Q==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-teaching-popover@9.6.20':
resolution: {integrity: sha512-XB/SJXdJabulcDBp6z4NNSFOcAnaOoIUZdmzqpx09UxtQwU/eFnYvZw/k1SI8Nc7IpHBgjzId8gHy6jvaN8JHw==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-text@9.6.15':
resolution: {integrity: sha512-YB1azhq8MGfnYTGlEAX1mzcFZ6CvqkkaxaCogU4TM9BtPgQ1YUAxE01RMenl8VVi8W9hNbJKkuc8R8GzYwzT4Q==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-textarea@9.7.1':
resolution: {integrity: sha512-YG0j202PRLDLZZDn8QQgREd4Ery2fDYMYb2HUvFdfo6MuSXMvv0RCKEUBCgajIXsHwT31Hsg5+xzM40X4jlOBg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-theme@9.2.1':
resolution: {integrity: sha512-lJxfz7LmmglFz+c9C41qmMqaRRZZUPtPPl9DWQ79vH+JwZd4dkN7eA78OTRwcGCOTPEKoLTX72R+EFaWEDlX+w==}
'@fluentui/react-toast@9.7.16':
resolution: {integrity: sha512-Yq4yJboYqtdL5pNJBIYlSdT/kR6m449O95taJCh/msXJyRgqQZ46EmpTcwsxu3D55LTHbqI6Vxu+AikDYH1W7w==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-toolbar@9.7.7':
resolution: {integrity: sha512-49nrRvGqJfdXhwaKZfNIcTiZSqTbThNG8uCa0FvJ88cO11PRPGcr5s6u3plUVxDXUKXpZJ7PKr/TTA0MvP7yIg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tooltip@9.10.0':
resolution: {integrity: sha512-+aM0S1mcXy8XKKWgU3TocqTxHjcai7fHns3KwONLJPTp3jXTjyqEoj/o4XX1ka2IM3gdOFfyUU0Gfvw708dn9w==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tree@9.15.16':
resolution: {integrity: sha512-WP4WjbF/UWCp0JKaZsMFtah/kXu+mxqN8/kghppRYfVHWzLiMgFAPB/OzrGejLNwx+ai3t2dHOIHxXHnR1jYHA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-utilities@9.26.2':
resolution: {integrity: sha512-Yp2GGNoWifj8Z/VVir4HyRumRsqXnLJd4IP/Y70vEm9ruAvyqUvfn+1lQUuA+k/Reqw8GI+Ix7FTo3rogixZBg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
'@fluentui/react-virtualizer@9.0.0-alpha.111':
resolution: {integrity: sha512-yku++0779Ve1RNz6y/HWjlXKd2x1wCSbWMydT2IdCICBVwolXjPYMpkqqZUSjbJ0N9gl6BfsCBpU9Dfe2bR8Zg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/tokens@1.0.0-alpha.23':
resolution: {integrity: sha512-uxrzF9Z+J10naP0pGS7zPmzSkspSS+3OJDmYIK3o1nkntQrgBXq3dBob4xSlTDm5aOQ0kw6EvB9wQgtlyy4eKQ==}
'@griffel/core@1.20.1':
resolution: {integrity: sha512-ld1mX04zpmeHn8agx4slSEh8kJ+8or3Y0x9gsJNKSKn6GdCkZBSiGUh+oBXCBn8RKzz8l60TA9IhVSStnyKekA==}
'@griffel/react@1.6.1':
resolution: {integrity: sha512-mNM4/+dIXzqeHboWpVZ1/jiwTAYNc5/8y/V/HasnQ2QXnV6gSUYpeUk/0n6IFU3NJmVJly9JrLSfNo0hM/IFeA==}
peerDependencies:
react: '>=16.8.0 <20.0.0'
'@griffel/style-types@1.4.0':
resolution: {integrity: sha512-vNDfOGV7RN/XkA7vxgf7Z5HgW8eiBm5cHT9wQPhsKB4pxWom5u6eQ9CkYE5mCCTSPl9H6Nd1NBai04d4P6BD7Q==}
'@iconify-icons/material-symbols@1.2.58':
resolution: {integrity: sha512-v0ZfPXlmDcDPCejxhg5h2eHCEHClrpn+i44Ev766vkzPIEFRdgT+YK942KzyqBpH0RhKJfel4OZdL1DY1oa5Qg==}
'@iconify/react@6.0.2':
resolution: {integrity: sha512-SMmC2sactfpJD427WJEDN6PMyznTFMhByK9yLW0gOTtnjzzbsi/Ke/XqsumsavFPwNiXs8jSiYeZTmLCLwO+Fg==}
peerDependencies:
react: '>=16'
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/source-map@0.3.11':
resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
'@jridgewell/sourcemap-codec@1.5.5':
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
'@jsonjoy.com/base64@1.1.2':
resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/base64@17.67.0':
resolution: {integrity: sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/buffers@1.2.1':
resolution: {integrity: sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/buffers@17.67.0':
resolution: {integrity: sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/codegen@1.0.0':
resolution: {integrity: sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/codegen@17.67.0':
resolution: {integrity: sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/fs-core@4.57.1':
resolution: {integrity: sha512-YrEi/ZPmgc+GfdO0esBF04qv8boK9Dg9WpRQw/+vM8Qt3nnVIJWIa8HwZ/LXVZ0DB11XUROM8El/7yYTJX+WtA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/fs-fsa@4.57.1':
resolution: {integrity: sha512-ooEPvSW/HQDivPDPZMibHGKZf/QS4WRir1czGZmXmp3MsQqLECZEpN0JobrD8iV9BzsuwdIv+PxtWX9WpPLsIA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/fs-node-builtins@4.57.1':
resolution: {integrity: sha512-XHkFKQ5GSH3uxm8c3ZYXVrexGdscpWKIcMWKFQpMpMJc8gA3AwOMBJXJlgpdJqmrhPyQXxaY9nbkNeYpacC0Og==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/fs-node-to-fsa@4.57.1':
resolution: {integrity: sha512-pqGHyWWzNck4jRfaGV39hkqpY5QjRUQ/nRbNT7FYbBa0xf4bDG+TE1Gt2KWZrSkrkZZDE3qZUjYMbjwSliX6pg==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/fs-node-utils@4.57.1':
resolution: {integrity: sha512-vp+7ZzIB8v43G+GLXTS4oDUSQmhAsRz532QmmWBbdYA20s465JvwhkSFvX9cVTqRRAQg+vZ7zWDaIEh0lFe2gw==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/fs-node@4.57.1':
resolution: {integrity: sha512-3YaKhP8gXEKN+2O49GLNfNb5l2gbnCFHyAaybbA2JkkbQP3dpdef7WcUaHAulg/c5Dg4VncHsA3NWAUSZMR5KQ==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/fs-print@4.57.1':
resolution: {integrity: sha512-Ynct7ZJmfk6qoXDOKfpovNA36ITUx8rChLmRQtW08J73VOiuNsU8PB6d/Xs7fxJC2ohWR3a5AqyjmLojfrw5yw==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/fs-snapshot@4.57.1':
resolution: {integrity: sha512-/oG8xBNFMbDXTq9J7vepSA1kerS5vpgd3p5QZSPd+nX59uwodGJftI51gDYyHRpP57P3WCQf7LHtBYPqwUg2Bg==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/json-pack@1.21.0':
resolution: {integrity: sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/json-pack@17.67.0':
resolution: {integrity: sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/json-pointer@1.0.2':
resolution: {integrity: sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/json-pointer@17.67.0':
resolution: {integrity: sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/util@1.9.0':
resolution: {integrity: sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@jsonjoy.com/util@17.67.0':
resolution: {integrity: sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
'@leichtgewicht/ip-codec@2.0.5':
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
'@lezer/common@1.5.2':
resolution: {integrity: sha512-sxQE460fPZyU3sdc8lafxiPwJHBzZRy/udNFynGQky1SePYBdhkBl1kOagA9uT3pxR8K09bOrmTUqA9wb/PjSQ==}
'@lezer/lr@1.4.8':
resolution: {integrity: sha512-bPWa0Pgx69ylNlMlPvBPryqeLYQjyJjqPx+Aupm5zydLIF3NE+6MMLT8Yi23Bd9cif9VS00aUebn+6fDIGBcDA==}
'@lmdb/lmdb-darwin-arm64@2.8.5':
resolution: {integrity: sha512-KPDeVScZgA1oq0CiPBcOa3kHIqU+pTOwRFDIhxvmf8CTNvqdZQYp5cCKW0bUk69VygB2PuTiINFWbY78aR2pQw==}
cpu: [arm64]
os: [darwin]
'@lmdb/lmdb-darwin-x64@2.8.5':
resolution: {integrity: sha512-w/sLhN4T7MW1nB3R/U8WK5BgQLz904wh+/SmA2jD8NnF7BLLoUgflCNxOeSPOWp8geP6nP/+VjWzZVip7rZ1ug==}
cpu: [x64]
os: [darwin]
'@lmdb/lmdb-linux-arm64@2.8.5':
resolution: {integrity: sha512-vtbZRHH5UDlL01TT5jB576Zox3+hdyogvpcbvVJlmU5PdL3c5V7cj1EODdh1CHPksRl+cws/58ugEHi8bcj4Ww==}
cpu: [arm64]
os: [linux]
'@lmdb/lmdb-linux-arm@2.8.5':
resolution: {integrity: sha512-c0TGMbm2M55pwTDIfkDLB6BpIsgxV4PjYck2HiOX+cy/JWiBXz32lYbarPqejKs9Flm7YVAKSILUducU9g2RVg==}
cpu: [arm]