-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
3868 lines (3217 loc) · 165 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@radix-ui/react-slot':
specifier: ^1.1.1
version: 1.1.1(@types/react@19.0.6)(react@19.0.0)
'@tauri-apps/api':
specifier: ^2.2.0
version: 2.2.0
'@tauri-apps/plugin-autostart':
specifier: ~2
version: 2.2.0
'@tauri-apps/plugin-deep-link':
specifier: ~2
version: 2.2.0
'@tauri-apps/plugin-os':
specifier: ~2
version: 2.2.0
'@tauri-apps/plugin-updater':
specifier: ~2
version: 2.3.1
class-variance-authority:
specifier: ^0.7.1
version: 0.7.1
clsx:
specifier: ^2.1.1
version: 2.1.1
lucide-react:
specifier: ^0.471.1
version: 0.471.1(react@19.0.0)
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
tailwind-merge:
specifier: ^2.6.0
version: 2.6.0
tailwindcss-animate:
specifier: ^1.0.7
version: 1.0.7(tailwindcss@3.4.17)
devDependencies:
'@fluentui/react-components':
specifier: ^9.57.0
version: 9.57.0(@types/react-dom@19.0.3(@types/react@19.0.6))(@types/react@19.0.6)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(scheduler@0.25.0)
'@tauri-apps/cli':
specifier: ^2.2.4
version: 2.2.4
'@types/node':
specifier: ^22.10.6
version: 22.10.6
'@types/react':
specifier: ^19.0.6
version: 19.0.6
'@types/react-dom':
specifier: ^19.0.3
version: 19.0.3(@types/react@19.0.6)
'@vitejs/plugin-react':
specifier: ^4.3.4
version: 4.3.4(vite@6.0.7(@types/node@22.10.6)(jiti@1.21.7)(yaml@2.7.0))
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.5.0)
daisyui:
specifier: ^4.12.23
version: 4.12.23(postcss@8.5.0)
postcss:
specifier: ^8.5.0
version: 8.5.0
tailwindcss:
specifier: ^3.4.17
version: 3.4.17
typescript:
specifier: ~5.7.3
version: 5.7.3
vite:
specifier: ^6.0.7
version: 6.0.7(@types/node@22.10.6)(jiti@1.21.7)(yaml@2.7.0)
packages:
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.26.5':
resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.0':
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.26.5':
resolution: {integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.26.5':
resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.26.0':
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-plugin-utils@7.26.5':
resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.26.0':
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.26.5':
resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-transform-react-jsx-self@7.25.9':
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-source@7.25.9':
resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.9':
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.26.5':
resolution: {integrity: sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.26.5':
resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==}
engines: {node: '>=6.9.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]
'@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'
'@fluentui/react-teaching-popover@9.2.0':
resolution: {integrity: sha512-N5/v3/onRiWYFqsVVhwDajDhy9SD9qqb7vvnTL/bIrpkzE/x0TRk80ItJzQgX7+jCcrFf4dBT5F+R9EAqCoLvg==}
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-text@9.4.31':
resolution: {integrity: sha512-xUX2J7jtR7Gp6QOL0C0BDHepn0mQoP0v0OdkbUX9bXcRCenugQBAXQHKWt1EW6LJMbmL4Juygu1qbdxXu56qRw==}
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-textarea@9.3.96':
resolution: {integrity: sha512-HlUIGa7fWJe7iPZwa51MiI/Rr85wQBA00iOg1Klqt1fQRsgb1xNa0buD2Y5wPnmEheRCpHdcW/gE26klQ4TZCg==}
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-theme@9.1.24':
resolution: {integrity: sha512-OhVKYD7CMYHxzJEn4PtIszledj8hbQJNWBMfIZsp4Sytdp9vCi0txIQUx4BhS1WqtQPhNGCF16eW9Q3NRrnIrQ==}
'@fluentui/react-toast@9.3.64':
resolution: {integrity: sha512-3my9ghLb1VdcAsjH7YpOaUYN9Oa1ulHsWAJ0F5NnFMXfuLzhff2gmFjtb3C7hUAfZjJ6QC0Rb3Pq34DI6jGfOQ==}
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-toolbar@9.2.14':
resolution: {integrity: sha512-zuAQDxtk9b1kJ2dvekVf+JFIww3yRPmo/FUhPQHhqmPPTD4Q1zfFfFMpbBxotWbHmxmKK+tlPWhrRapKPRILtA==}
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-tooltip@9.5.3':
resolution: {integrity: sha512-1sJZxyZWHa9gSRwTtHAPdgUEU1FFBm33tPmJqJ1vTejKS2fPmxyD3wYY9xze6CnPF18/de9xidUSvcEzTBYapA==}
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-tree@9.8.12':
resolution: {integrity: sha512-OBvNh0Pf6pFA2SF9CHTA7l9KrpxzCCjCanLL1scZ6eMLG5n/o1SkjAQqQSQVzpA9Qy2gpBQchuW+TIdMFmB4qA==}
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-utilities@9.18.19':
resolution: {integrity: sha512-cBYq2cRc+ofVv4DTgULX5ez6IN/DiZw8IC17giA7NyxGw9ed0Y2p7nqnz/tIa655tY/ZIw5oz+bRJrEPkpzA2g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-virtualizer@9.0.0-alpha.90':
resolution: {integrity: sha512-G/0fv98wBsUg3Ndk5Z3cCzkFAiVS4/OXCj7ESLpDyLiA4/wQX+SqGJqt6w+R84+wBGhhyZXoOJ3wk4Eq1S5tsQ==}
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/tokens@1.0.0-alpha.21':
resolution: {integrity: sha512-xQ1T56sNgDFGl+kJdIwhz67mHng8vcwO7Dvx5Uja4t+NRULQBgMcJ4reUo4FGF3TjufHj08pP0/OnKQgnOaSVg==}
'@griffel/core@1.18.2':
resolution: {integrity: sha512-odJspTMohsYZLSlO/oKsf6El6px1vg1461CpPverOzS9f0xaUKh/ZGenW+MjyyZ3aQ6adkPzcr/my6JFH/zdXQ==}
'@griffel/react@1.5.27':
resolution: {integrity: sha512-985A8iEBo++h9u96dbj3Kj5hdsBWbpkkwFpy0W8EGL0VRCzZmpb0AlWuq9pDJZACS6eZ2GAb/f9CqgVAgnTnOg==}
peerDependencies:
react: '>=16.8.0 <19.0.0'
'@griffel/style-types@1.3.0':
resolution: {integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==}
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
'@jridgewell/gen-mapping@0.3.8':
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/set-array@1.2.1':
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
'@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
'@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
'@radix-ui/react-compose-refs@1.1.1':
resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
'@radix-ui/react-slot@1.1.1':
resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
'@rollup/rollup-android-arm-eabi@4.30.1':
resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==}
cpu: [arm]
os: [android]
'@rollup/rollup-android-arm64@4.30.1':
resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==}
cpu: [arm64]
os: [android]
'@rollup/rollup-darwin-arm64@4.30.1':
resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==}
cpu: [arm64]
os: [darwin]
'@rollup/rollup-darwin-x64@4.30.1':
resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==}
cpu: [x64]
os: [darwin]
'@rollup/rollup-freebsd-arm64@4.30.1':
resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==}
cpu: [arm64]
os: [freebsd]
'@rollup/rollup-freebsd-x64@4.30.1':
resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==}
cpu: [x64]
os: [freebsd]
'@rollup/rollup-linux-arm-gnueabihf@4.30.1':
resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==}
cpu: [arm]
os: [linux]
'@rollup/rollup-linux-arm-musleabihf@4.30.1':
resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==}
cpu: [arm]
os: [linux]
'@rollup/rollup-linux-arm64-gnu@4.30.1':
resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==}
cpu: [arm64]
os: [linux]
'@rollup/rollup-linux-arm64-musl@4.30.1':
resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==}
cpu: [arm64]
os: [linux]
'@rollup/rollup-linux-loongarch64-gnu@4.30.1':
resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==}
cpu: [loong64]
os: [linux]
'@rollup/rollup-linux-powerpc64le-gnu@4.30.1':
resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==}
cpu: [ppc64]
os: [linux]
'@rollup/rollup-linux-riscv64-gnu@4.30.1':
resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==}
cpu: [riscv64]
os: [linux]
'@rollup/rollup-linux-s390x-gnu@4.30.1':
resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==}
cpu: [s390x]
os: [linux]
'@rollup/rollup-linux-x64-gnu@4.30.1':
resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==}
cpu: [x64]
os: [linux]
'@rollup/rollup-linux-x64-musl@4.30.1':
resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==}
cpu: [x64]
os: [linux]
'@rollup/rollup-win32-arm64-msvc@4.30.1':
resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==}
cpu: [arm64]
os: [win32]
'@rollup/rollup-win32-ia32-msvc@4.30.1':