-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
7552 lines (6170 loc) · 294 KB
/
pnpm-lock.yaml
File metadata and controls
7552 lines (6170 loc) · 294 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.10(@rspack/core@1.7.8(@swc/helpers@0.5.19))(@types/express@4.17.25)(tslib@2.8.1)(webpack@5.105.4(@swc/core@1.15.21(@swc/helpers@0.5.19))(esbuild@0.27.4))
'@swc/core':
specifier: ^1.15.11
version: 1.15.21(@swc/helpers@0.5.19)
envinfo:
specifier: ^7.21.0
version: 7.21.0
esbuild:
specifier: ^0.27.3
version: 0.27.4
glob:
specifier: ^13.0.6
version: 13.0.6
parcel:
specifier: ^2.16.4
version: 2.16.4(@swc/helpers@0.5.19)
process:
specifier: ^0.11.10
version: 0.11.10
rolldown:
specifier: ^1.0.0-rc.5
version: 1.0.0-rc.12
rollup-plugin-swc3:
specifier: ^0.12.1
version: 0.12.1(@swc/core@1.15.21(@swc/helpers@0.5.19))(rollup@4.59.0)
vite:
specifier: ^8.0.0-beta.15
version: 8.0.2(@types/node@25.5.0)(esbuild@0.27.4)(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.4)
react:
specifier: ^19.0.0
version: 19.2.4
react-dom:
specifier: ^19.0.0
version: 19.2.4(react@19.2.4)
packages/lodash-es-basic:
dependencies:
lodash-es:
specifier: ^4.17.21
version: 4.17.23
packages/react-fluent-hydration:
dependencies:
'@fluentui/react-components':
specifier: ^9.54.2
version: 9.73.4(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(scheduler@0.27.0)
react:
specifier: ^19.0.0
version: 19.2.4
react-dom:
specifier: ^19.0.0
version: 19.2.4(react@19.2.4)
devDependencies:
'@swc/core':
specifier: ^1.6.5
version: 1.15.21(@swc/helpers@0.5.19)
swc-loader:
specifier: ^0.2.6
version: 0.2.7(@swc/core@1.15.21(@swc/helpers@0.5.19))(webpack@5.105.4(@swc/core@1.15.21(@swc/helpers@0.5.19))(esbuild@0.27.4))
web:
dependencies:
lodash-es:
specifier: ^4.17.21
version: 4.17.23
devDependencies:
'@types/lodash-es':
specifier: ^4.17.12
version: 4.17.12
'@types/node':
specifier: ^24.0.0
version: 24.12.0
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.1':
resolution: {integrity: sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==}
'@emnapi/runtime@1.9.1':
resolution: {integrity: sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==}
'@emnapi/wasi-threads@1.2.0':
resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
'@esbuild/aix-ppc64@0.27.4':
resolution: {integrity: sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.27.4':
resolution: {integrity: sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.27.4':
resolution: {integrity: sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.27.4':
resolution: {integrity: sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.27.4':
resolution: {integrity: sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.27.4':
resolution: {integrity: sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.27.4':
resolution: {integrity: sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.27.4':
resolution: {integrity: sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.27.4':
resolution: {integrity: sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.27.4':
resolution: {integrity: sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.27.4':
resolution: {integrity: sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.27.4':
resolution: {integrity: sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.27.4':
resolution: {integrity: sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.27.4':
resolution: {integrity: sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.27.4':
resolution: {integrity: sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.27.4':
resolution: {integrity: sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.27.4':
resolution: {integrity: sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.27.4':
resolution: {integrity: sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.27.4':
resolution: {integrity: sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.27.4':
resolution: {integrity: sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.27.4':
resolution: {integrity: sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/openharmony-arm64@0.27.4':
resolution: {integrity: sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
'@esbuild/sunos-x64@0.27.4':
resolution: {integrity: sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.27.4':
resolution: {integrity: sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.27.4':
resolution: {integrity: sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.27.4':
resolution: {integrity: sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==}
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.9.2':
resolution: {integrity: sha512-Mmi5nVKfQrBiBiD1JPVtCmIMrR1CpCy8hsWZLwv/pHt+uHHyW9HyrPXwiOitj3ookA5ec1kXyl34BN8RUi7DGQ==}
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.135':
resolution: {integrity: sha512-Qkr89e6tl4q0fhzfx9Wzb3ltiqbFtZj7AhT+CHZdW0I6KtpfGmJnvzaqvz0KXMdrKROTgvkA1Ny3Epf9ortc0Q==}
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.10.2':
resolution: {integrity: sha512-0qy3U1S80c2Z0A8O/3Ko8XmG4d/NCof1XZ1jclbneKLDT0PeoX3BUlDDgCalOEwb0s1x6TjLabam5FtY4E30cg==}
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.4.15':
resolution: {integrity: sha512-KgFUJHBHP76vE3EDuPg/ml7lGqxs9zJ634e+vtxn8D7ghCZ6h9P6A0WbmgsPcN6MZoBZYLzzYT3OJ6Vmu3BM8g==}
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.3.17':
resolution: {integrity: sha512-POnwCFyvXabq7lNtJRslASNkrm0iRoXpnrWwh0LyBTFZRDiGDKaV18Bpk0UiuQNTUurVQiH513164XKHIP+d7Q==}
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.8.2':
resolution: {integrity: sha512-T2xBn6s6DRNH17Y+kLO+uEOaRe89Q20WP1Rs6OzC45cSpOGc+q9ogbPbYBqU7Tr1fur+Xd8LRHxdQJ3j5ufbdw==}
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.5.11':
resolution: {integrity: sha512-0W3BmDER/aKx+7+ttGy+M6LO09DW7DkJlO8F0x13L1ssOVxJ0OhyhSGiCF0cJliOK1tiGPveYf6+X2xMq2MT6g==}
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.4':
resolution: {integrity: sha512-mzGZUOe3tB+86/WPsQTgppYRoqeM1vl8LswISl7FVrxk7PREnzZLW4BEZnFOKuP29dThcjJNzF0mM/5kq1lKug==}
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.5.16':
resolution: {integrity: sha512-jjbj5RTy78OzFT95zj6SI7RMV1JF7FLT1CiYIL13bFTsL9tiPyAqXRcdXGJOnt/EuyD3uKs2nyOu4M3QFVy0ng==}
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.16.18':
resolution: {integrity: sha512-nmyleswOSS9O/3gn8AWQ9Uuyis0WTHO1zZnDVapFUdgd2+hAcUSjJXPQv6NGftuUB5bgS2qAx9prRJg17ZrZvA==}
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.4':
resolution: {integrity: sha512-8vqxsF1jtxWSx30+HL2w/+cAcVR4Cii7eXKh2vtMGf+qboezEuu4EIvdsanWAz/hm0CQoF9yuRJbA/Fq5v+pZg==}
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.2':
resolution: {integrity: sha512-mZdKylSvh2fRf0e3wMX3ZNccb9DahsOE7A5Y9LG97ghYvndMBVG2YwScIzUFVvLS206ari6HMOl0lC5JRB1bKA==}
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.6.2':
resolution: {integrity: sha512-jfHlpSoJys78STe/SSjqdcn+W7QjEO1xCGiedWp/MdTBi3pH5vEeYbt2u8RU+zP32IF0Clta85KsUEEG0DYELQ==}
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.5':
resolution: {integrity: sha512-eoZY+jKZwbJo1PUsb7Ico7u/8aObHL4BhPP6hd+HHNzB7seTpN7rLd0DpASLZsxJUy5yvch4QF2TrjOu6V8kRA==}
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.4.16':
resolution: {integrity: sha512-2mfuYGldeqr9Llt8QSfwdj1hQofScvNQ/1Rns9TE4QUP6cdqs3cPX2+FZNJzpgO9vq5bk0hJpKqo7lvXZdyEzw==}
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.321':
resolution: {integrity: sha512-29aafyoCrpl0OoJk0tNbHAFj/eOza3y9cljW2NurUF9+TcVmYpdLKIlcRFMWPFw7QeKhEbvWey3Lt8dzHWKs+A==}
peerDependencies:
react: '>=16.8.0 <20.0.0'
'@fluentui/react-image@9.3.15':
resolution: {integrity: sha512-k8ftGUc5G3Hj5W9nOFnWEKZ1oXmoZE3EvAEdyI6Cn9R8E6zW2PZ1+cug0p6rr01JCDG8kbry1LAITcObMrlPdw==}
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.112':
resolution: {integrity: sha512-Fhqoc6b1MQtHW+Mm5sBhfa5ZrRdOV4azuUa5WyBvwD4Ozq/z2pBOC/wi/A/WCjKMnGoMlQ2CggoLaMhQmenzAQ==}
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.17':
resolution: {integrity: sha512-zLw52jn2wAuEKWFzaNj3aKhuB4BAEI8LqblryCg0LKPKHcv/z9d9RllCqcVz+ngdK1tQGtCIPH/wxNlZXx/I3Q==}
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.7.16':
resolution: {integrity: sha512-dr6tBWbyDiP2KR7LDvJlxFwxucWfeFETumFo3fAtUSpjbTHMG0ZShh3cq0/c7Gqvq/ypl12jVB1Tj6E4RimV8g==}
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.3.15':
resolution: {integrity: sha512-ycmaQwC4tavA8WeDfgcay1Ywu/4goHq1NOeVxkyzWTPGA7rs+tdCgdZBQZLAsBK2XFaZiHs7l+KG9r1oIRKolA==}
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.7.4':
resolution: {integrity: sha512-ILKFpo/QH1SRsLN9gopAyZT/b/xsGcdO4JxthEeuTRvpLD6gImvRplum8ySIlbTskVVzog6038bHUSYLMdN7OA==}
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.11':
resolution: {integrity: sha512-ao1WdgWDrz4mTvic3dOD3Jk1V9XcppxX3Y3DI7Emsw2QI9Y2AsZBtiUrqYNEQ0ym3yFobURYJ3ZIhrW11VCKAw==}
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.23.0':
resolution: {integrity: sha512-KM08C5GQ+wcsZ6dcmjrMonsW1RRcuhygR7GBT6rnWxxx6qzKv6RCumckzL5NfSgvyJw4wWKs857k5sUczs+7VQ==}
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.21':
resolution: {integrity: sha512-Vba3+7+TuzH2Ma6YB/Sd5dy+dm4DWwacZc0a78CetVqCzYZ4u/5opdmiBs8JY1Qr8uYW38siHLbY8kLnu6OOjA==}
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.2':
resolution: {integrity: sha512-KqHRV8lLmVwOWiHBdpUFA+TwMbuYu9cyzNvmhbMFLVKzZyr3MPgN+97Tf+6QYPf22o99SMT0BPySDv/HiNYanA==}
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.13.0':
resolution: {integrity: sha512-YdOpW6e7qfvzoWKcqh8hReCqwYEoiEmNBcCprGaupKjWOi9jBbF/JESM1AHI9nOjPd8aY90WUG2+ahvrqfL9LA==}
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.20':
resolution: {integrity: sha512-YIObOcR92Nz4OUePrDhRdLQ5m9ph0y+U7U9NYgE/XFrLtWl+uqUS7u36m3NJl9QGgZVpUHO4nbNjizGLkncCCA==}
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.6.2':
resolution: {integrity: sha512-60kOmljlYjUiySWDN1bZh1FB4C7jbJS2dobtBJQh5agnKg34p3egO+6MwsBHRcwaGhVMh4T8XcbE6t2hw+iqyQ==}
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.0':
resolution: {integrity: sha512-XrZlSfSYhA12j5bna4Sq8N/If2vul7gl8woVrN8U3iQUjdaHB6OAMZ/WMNUdMm35Z+4e4rHClAZxU2dUsbHrmw==}
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.4.16':
resolution: {integrity: sha512-IWVuD1hQoyIBK+RIGOCTc3HUPkdtOQghJPZ5uGwRrUlxGgpUV1h7rdAApiuQTWitrFfN6bP4PrsJmHT2DM2OFw==}
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.5.16':
resolution: {integrity: sha512-xHRqm+MTkIf6JLEz/dMLlHSL9X+ysXAkig+VOV5QTPZwDIr3SqfJVvBmLNUVmtzf+cmWsRKrrIbVGpFGo/CvxA==}
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.3.15':
resolution: {integrity: sha512-MH/Jgoco8p+haf1d5Gi+d5VCjwd0qE6y/uP0YJsB9m11+DFnDxgKhzJKIiIzs3yzB2M4bMM8z9SqEHzQGCQEPg==}
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.3.16':
resolution: {integrity: sha512-7dKzGqIXzfhYxIKI1arGARkUDyQHYfwArlR6jKrhmYppXJh7U174xsjkMH62B78rDdNVer3G38MXXjpQ5MvNAQ==}
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.4.16':
resolution: {integrity: sha512-YsHMZsiKxH8suBtNTBXhtsvjM0u9UUXH641cEumgtjUz7SzeKNc/cWToLVyNz7GIoANL49rvubkByTeAQVCo2g==}
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.6.0':
resolution: {integrity: sha512-X3x80Z19ay7eZauhx6fkbs/qyTBN2Gx04tY5hrOunua3xvsUtG6X6x4/GGv/R84C5/iNkpibdPY79vLx8R43JA==}
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.5.16':
resolution: {integrity: sha512-IgFdKcnX1KXLpfaB9/CYPgAmC7lfJ0FGEl1Y1uHYiL2YV6Dc+4yoAsCBABC1/KcEeafqCiaFTdNhS62QRK7Tbg==}
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.5.16':
resolution: {integrity: sha512-V4U9PSJM26BXrFqJ9K/VYYQeusBf8ldx5KOlZZ7hRamPsKTS5hyytWrF39lTLqCRlGckXPCLNzJpb1DLB+ID1g==}
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.7.15':
resolution: {integrity: sha512-ZMJ7y08yvVXL9HuiMLLCy1cRn8plR9A4mL57CM2/otaXVWQbOwRaFD0/+Dx3u9A8sEtdYLo6O9gJIjU8fZGaYw==}
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.0':
resolution: {integrity: sha512-sl7MifqQGR4QGDhhgBIYc25YgPuFQW7+BOfNRMO5DYPq33lX5xHNcczhXywcBESAVHrjM0MC1lsE7glv6gU8RA==}
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.6.1':
resolution: {integrity: sha512-UVHJViXSR5jrNyjtU3yqhr1F14TbY8V59wMw9N1vP027ztrLx3Q30sEt0xG1TXv5BoAERnXhHws9HVIxBpRvEA==}
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.11':
resolution: {integrity: sha512-0ivIFR2JAp3HYlPnDrV5axBaOH06wtsQArBSOw6HXbQEz9JQ8Gi9SqEhQo6DBQ1/pcY3XeZjP+3r2HoFZXGaqA==}
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.11.2':
resolution: {integrity: sha512-zmWzySlPM9EwHJNW0/JhyxBCqBvmfZIj1OZLdRDpbPDsKjhO0aGZV6WjLHFYJmq58kbN0wHKUbxc7LfafHHUwA==}
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.2':
resolution: {integrity: sha512-j8a9X3jychd9KQ7uhzjoyDT8hcAH40d+ZeHXCLQ8PcYfDdoZSDWcmLNc+xCGmlf+UkhWQU1Ks7hdWqBjGpr0MA==}
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.7.17':
resolution: {integrity: sha512-LCJJqoXIiN+aNqFHC/5nddsQJqh56xzrywwpMbMrQYI/dbIk5UYlmZ6arIPhQ9HVKat3YzGKAvOGlhFhEHIwDg==}
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.18':
resolution: {integrity: sha512-cf76vSRZs40geZEw/RChfQvu6ioMyFKR0qvPc52QstPDC/cgGkOg+45G7SZo11IpYwBdkpUVWasnWUWSxTMiHw==}
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.6.16':
resolution: {integrity: sha512-d72Ufs//9T+X7lIrY1D28/9BiVqtKSjZ5hHVgBnJJwuPSFAKn5b4jlysXkNKHEdMjJz57kYMK4Ieneyz+Xkhrw==}
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.15':
resolution: {integrity: sha512-iuk4rf/WumpGrNIpRVLNamlPBY0rT9BhI4qTnVmzXqz5pY+8GmAq/TKUPER9/withtQW8V9srj91FWblxzpHRg==}
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.4':
resolution: {integrity: sha512-cpr+vJAzHJckN4S+JFSIeH4cg6q8pQuLVldH3ETrtNnWKERHeiY9ljAq3fbi/fU7ohgDit0DZnWUACrNu0pQQA==}
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.9.3':
resolution: {integrity: sha512-a351JFoaBAOn0SnQ76tzuNv2ieHzAS+VO8Ncy4m9/emrIs5lvBBfKX8fvA4/efVxY+683XEQdoL1LuApuJuTWw==}
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.13':
resolution: {integrity: sha512-ITT8SlYXfG+Wi0FYPJOqwROTa6Po2VZEtolUq9jPjMy5/q+Vto++fdHyWaVn3a5Joq6w576RDP1ZnlS7qoFPgg==}
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.1':
resolution: {integrity: sha512-6YRVG9vBkaY7p1IVxL4s44n5nUnaNnGM2/AckNgYOnxTG2kWh1vR8BMxPseWPjRNpb5VtXnMpeYAEAADoRV1Iw==}
'@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]