-
Notifications
You must be signed in to change notification settings - Fork 0
/
pnpm-lock.yaml
3676 lines (3292 loc) · 133 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: 5.4
specifiers:
'@fluentui/react-components': ^9.21.0
'@fluentui/react-icons': ^2.0.203
'@reduxjs/toolkit': ^1.9.3
'@types/node': 20.2.5
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
eslint: 8.42.0
eslint-config-next: 13.4.4
next: 13.4.4
normalize.css: ^8.0.1
react: 18.2.0
react-dom: 18.2.0
react-redux: ^8.0.5
scheduler: '>=0.19.0 <0.20.0 || >=0.20.0 <0.21.0'
typescript: 5.1.3
dependencies:
'@fluentui/react-components': 9.21.0_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@reduxjs/toolkit': 1.9.5_mdrgh7pftervsmldwkouzrv5ry
'@types/node': 20.2.5
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
eslint: 8.42.0
eslint-config-next: 13.4.4_tizxnkcvjrb4cldxgwq5h3lj5u
next: 13.4.4_biqbaboplfbrettd7655fr4n2y
normalize.css: 8.0.1
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
react-redux: 8.0.7_omsqbw434kltunquhsoi443bpa
typescript: 5.1.3
devDependencies:
scheduler: 0.20.2
packages:
/@babel/runtime/7.22.3:
resolution: {integrity: sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
dev: false
/@emotion/hash/0.9.1:
resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==}
dev: false
/@eslint-community/eslint-utils/4.4.0_eslint@8.42.0:
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: 8.42.0
eslint-visitor-keys: 3.4.1
dev: false
/@eslint-community/regexpp/4.5.1:
resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: false
/@eslint/eslintrc/2.0.3:
resolution: {integrity: sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
espree: 9.5.2
globals: 13.20.0
ignore: 5.2.4
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
dev: false
/@eslint/js/8.42.0:
resolution: {integrity: sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
/@floating-ui/core/1.2.6:
resolution: {integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==}
dev: false
/@floating-ui/dom/1.2.9:
resolution: {integrity: sha512-sosQxsqgxMNkV3C+3UqTS6LxP7isRLwX8WMepp843Rb3/b0Wz8+MdUkxJksByip3C2WwLugLHN1b4ibn//zKwQ==}
dependencies:
'@floating-ui/core': 1.2.6
dev: false
/@fluentui/keyboard-keys/9.0.3:
resolution: {integrity: sha512-40KBVJ9HzsvmPL3rwYaAvxCacNS0xnTmOt6TLxxrAVgVrZ1X7DLgd8OGFZcWROs0dhHdCk2D51bl4nK8Q1r3mQ==}
dependencies:
'@swc/helpers': 0.4.14
dev: false
/@fluentui/priority-overflow/9.0.3:
resolution: {integrity: sha512-lOUfZX3PMyb+nHWcNGQu+EBz2cvRxHgTObG97UTmGBB0nL0cEJCqVL7PKVWhto7zp3moSgRUWyUN/EQVVpZ/hg==}
dependencies:
'@swc/helpers': 0.4.14
dev: false
/@fluentui/react-accordion/9.1.16_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-nfvmDIbZU7Ioe3HU4TnRTLowgNS6ZrJOM0CVRtbxM3F0NAUqigjVnwWXnNyXHWSWKkzKVcF9CYvxQavtnvh2fg==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
scheduler: ^0.19.0 || ^0.20.0
dependencies:
'@fluentui/react-aria': 9.3.22_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-context-selector': 9.1.22_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scheduler: 0.20.2
dev: false
/@fluentui/react-alert/9.0.0-beta.51_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-0LR4ThWBZO3hA7n7yluvzm3ytE8QRj+WHVdmg21Iu6f8S9EECcMmOwN4TINzXuuyKBbjERl3heuqjeriRLzANg==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-avatar': 9.5.5_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-button': 9.3.16_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-aria/9.3.22_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-H/WUp2TKg9XkF5B12Vpv1NN2/UPoV6NTgZZtsHs1kaZvHiBwhgODE5f8DFyUhoWUH4577r5X1kxjlEmfIvg5gw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/keyboard-keys': 9.0.3
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-avatar/9.5.5_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-p9CwOxa7+AoMGSa/WPYY7NvgjuSYe54+F4OcuhoM5FVktPPmlDuwXkc7Z/Ud9AiEoqK1z2kUuqizW4k0cVqP0A==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
scheduler: ^0.19.0 || ^0.20.0
dependencies:
'@fluentui/react-badge': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-context-selector': 9.1.22_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-popover': 9.6.0_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-tooltip': 9.2.16_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scheduler: 0.20.2
dev: false
/@fluentui/react-badge/9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-CgxKzG0Kbm7GRewWn583nTxY41maSLpf99WOaa8TjaFjRx2SdWwh4qPrJj9NxnkqgItdS80ck1NnoSdoF0WueA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-button/9.3.16_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-fZ5hkmA/RIcke1/lt2YW4q2dyWHgF330yayu3JuR4nhmFqKM/eZFdwQS4mYDBCMkllcbBeeF69lRKGftQ6MX0A==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/keyboard-keys': 9.0.3
'@fluentui/react-aria': 9.3.22_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-card/9.0.14_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-HifE4x+kREZmeXD6YqtcpFIas12RoymeZFDyRx5iy58/H6sL6wwKHchoF5QGWGsQq7In+6QFfoWUPxWou46yMQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/keyboard-keys': 9.0.3
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-checkbox/9.1.17_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-qgH292TTOBlWGViLtMn4MxJxPaCJHoF1zuygMRgIb988E6W5NUpRZPbROKDyiAYDhAf8S9h1sL6ZkCwff03Bbw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-label': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-combobox/9.4.0_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-VFPY56PsoyYSdEgH2VsgOGIvwP6FqJ1+YIs77VFL20ZJteI0Escs9KqLukpPrEdQSfNoysKSZA6ntmt6t2rB+w==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
scheduler: ^0.19.0 || ^0.20.0
dependencies:
'@fluentui/keyboard-keys': 9.0.3
'@fluentui/react-context-selector': 9.1.22_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-portal': 9.2.12_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-positioning': 9.6.0_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scheduler: 0.20.2
dev: false
/@fluentui/react-components/9.21.0_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-SysBfRH7dCgfLC/HmyEcwuZFs/RjsNjlY5rTiKjdmQcHVb/mkXvNZD7uMdcDU9zHAkk9ZkV0/45EtDJaw95cTQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
scheduler: ^0.19.0 || ^0.20.0
dependencies:
'@fluentui/react-accordion': 9.1.16_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-alert': 9.0.0-beta.51_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-avatar': 9.5.5_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-badge': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-button': 9.3.16_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-card': 9.0.14_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-checkbox': 9.1.17_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-combobox': 9.4.0_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-dialog': 9.5.9_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-divider': 9.2.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-drawer': 9.0.0-beta.1_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-image': 9.1.12_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-infobutton': 9.0.0-beta.34_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-input': 9.4.16_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-label': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-link': 9.0.42_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-menu': 9.7.16_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-overflow': 9.0.19_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-persona': 9.2.15_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-popover': 9.6.0_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-portal': 9.2.12_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-positioning': 9.6.0_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-progress': 9.1.16_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-provider': 9.7.2_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-radio': 9.1.17_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-select': 9.1.16_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-skeleton': 9.0.4_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-slider': 9.1.17_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-spinbutton': 9.2.16_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-spinner': 9.2.2_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-switch': 9.1.17_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-table': 9.3.0_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-tabs': 9.3.17_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-text': 9.3.12_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-textarea': 9.3.16_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-theme': 9.1.8
'@fluentui/react-toolbar': 9.1.17_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-tooltip': 9.2.16_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-tree': 9.0.0-beta.18_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-virtualizer': 9.0.0-alpha.22_nt3dzwb3srfhvwd6kfpoey3m3m
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scheduler: 0.20.2
dev: false
/@fluentui/react-context-selector/9.1.22_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-iPXjx8QkEc8kV2YdAz7z17phb+ZDDDecRz/DygI7qdiZPtPTyJxZoelpzA8jb6cbz1+P7kzlbaNz9It24+a0qA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
scheduler: ^0.19.0 || ^0.20.0
dependencies:
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scheduler: 0.20.2
dev: false
/@fluentui/react-dialog/9.5.9_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-6kZafolihGDggZjH30rjwFBE/QDxTqRpHRLaPur5WBzGv0wkXyYLCVKomFUH4pN0fCPZ8tT7vy1Tm4GAe9SYMw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/keyboard-keys': 9.0.3
'@fluentui/react-aria': 9.3.22_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-context-selector': 9.1.22_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-portal': 9.2.12_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-divider/9.2.15_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-AHGFkd/g4hBQX5WmFyG9WKisnvloPS7aJuI8zIBPcJ8LQdaDhQKMdXenIBTknOm4mnnUG4ytPZVAijVhb/yxgQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-drawer/9.0.0-beta.1_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-lFlkMI2iJbFKhxLYZQLM+bDtCgg9x2VkznJx62yclcBOJ/BI2k1w7sQ3RBHl/VPxFJCdm5KpuyHDcuR86VJunA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-dialog': 9.5.9_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-field/9.1.6_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-vJqh8AFvo1G3gxHJglv5TyRgD1P+qEmN9BNaQvnr8sj+iquGDs3Mf7hal5rT+PetuF6Owrh6g0mOrzkaJMyTcQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-context-selector': 9.1.22_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-label': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-icons/2.0.203_react@18.2.0:
resolution: {integrity: sha512-eOV9GnCFzEIgllHEYenfkVB2MYChMRj2B8Vlr4qqdL0Kts7gRMfBIb+0+ADr5a3KIN0GtdAvG7KtsJ99O6gNmw==}
peerDependencies:
react: '>=16.8.0 <19.0.0'
dependencies:
'@griffel/react': 1.5.7_react@18.2.0
react: 18.2.0
tslib: 2.5.3
dev: false
/@fluentui/react-image/9.1.12_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-NI77BzDNO8wJJ0sDM9g86YC6cI1DH/hJQTqlHaXG8vRwM81qXrsPAqc/7Y9Jh+CBOe408E8d83yrEvoXUfj5cA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-infobutton/9.0.0-beta.34_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-0EhZ1iBFPbq1KH4dNTG3bB74fkzK5KLdBCaWlF1mGQyzGE5W1ukpn16Tr9Ul1O6tc8uAgTIJxf/VwRQO3amdjQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-label': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-popover': 9.6.0_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-input/9.4.16_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-xbeV9jG3C99NOFT89pIQR+P2vpIll2Cm4/Iio/Gu5+86Epa9Wv0aeRRmEYskVWMp69dl7LKqs7bkhpvKYOmu+w==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-jsx-runtime/9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u:
resolution: {integrity: sha512-in382HEVLAHfTVelJ0H+X5tpenydXe/8eaVTk64X/P48uLcye6MZBQG1jhUxCnRL7ZNu7bB8ya1VXF0GsdTt0g==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
react: 18.2.0
dev: false
/@fluentui/react-label/9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-LGPdzlOi6tasfFHqa+N3l9lgAQfipBniVpa0dd9IiGjNvx15ZZPGSSjGs6KkMiPxkIMizJN26OGZ8bXbR3ObgQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-link/9.0.42_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-PJYSUbxikQQVq01v0UwT5hfaZ0jT/aUDvnLDrH96boY8SOyh1zyTIFbrjnOvgLpFeoE4rO+koXb0mVxBW5t4yg==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/keyboard-keys': 9.0.3
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-menu/9.7.16_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-iVbBlFpQRO8STLa5cLF4v4wYdfPTVZsT27+E7JYhA1nmHJI8pwED22sTCVSPIGXVT58I5N8aVnQS4o6qf1YMmQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
scheduler: ^0.19.0 || ^0.20.0
dependencies:
'@fluentui/keyboard-keys': 9.0.3
'@fluentui/react-aria': 9.3.22_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-context-selector': 9.1.22_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-portal': 9.2.12_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-positioning': 9.6.0_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scheduler: 0.20.2
dev: false
/@fluentui/react-overflow/9.0.19_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-78bHljbIUiIkS9Qhdq7SSwefl7mUb92ps9N72P+AYz2oJITEXZyDtgt2LF7Ktb9qWTx1IOis4GzGeskhTTRZsw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
scheduler: ^0.19.0 || ^0.20.0
dependencies:
'@fluentui/priority-overflow': 9.0.3
'@fluentui/react-context-selector': 9.1.22_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scheduler: 0.20.2
dev: false
/@fluentui/react-persona/9.2.15_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-7CZ8H6cTomHA2iGtjscFoGoJO0oHVTnf56IZahoo34V06QLZnnIfotDv+t1B+20tv6e2pEpdZOJqp/bD9AjpFQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-avatar': 9.5.5_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-badge': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-popover/9.6.0_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-0OAjUICqP7UqNm0tMT+AfVs7OWmITfPThUsvEUJmQQsmFhAmHCgwIt5QwdLv5z5IGe+ZDWL8GBAkAgflECDcgw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
scheduler: ^0.19.0 || ^0.20.0
dependencies:
'@fluentui/keyboard-keys': 9.0.3
'@fluentui/react-aria': 9.3.22_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-context-selector': 9.1.22_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-portal': 9.2.12_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-positioning': 9.6.0_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scheduler: 0.20.2
dev: false
/@fluentui/react-portal/9.2.12_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-VEdd8v/12p+oIY37ZYf3FCqW2H7q/mwbcieDJI9NeziZoN/zQYPQgyU3bXh/OsafC5vnIIwbNhV/jKFOaKhqow==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
use-disposable: 1.0.1_nt3dzwb3srfhvwd6kfpoey3m3m
dev: false
/@fluentui/react-positioning/9.6.0_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-Sx1gXj2SMm+iF0bTDhevsCZkR6QpvBFuvJ8P447ts/1pN+XT9vXq/WJsrIbCLqK7TLeT9Xxl0rjevGoTt9yaSw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@floating-ui/dom': 1.2.9
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-progress/9.1.16_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-eVmKu1HcocQaDythgTZgSSzXt+f8NW6fOCdDX5hTG0Xug/5ohpBcbuumhNiZNTxyWHgN4l6ZzPr+h4jyHZdmvQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-provider/9.7.2_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-/D98JvSv8O7fEIv+h05LeWI9YeLw6azLSVG+9nhlETUXRVaLs0tPD94WF8hmFat9YE9CtWDcj/v502WpU/Dwdg==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/core': 1.11.0
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-radio/9.1.17_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-bmpGBmYzkN0G/XbtT+slxU9BsltdmcS2wTIYgkNT1SipHzd5oFErMs4j1zjS6kgIYOfNe3N+fAMB2THR6iB13Q==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
scheduler: ^0.19.0 || ^0.20.0
dependencies:
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-label': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
scheduler: 0.20.2
dev: false
/@fluentui/react-select/9.1.16_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-LDM+wOA91FDNuvkCJZrb8cQsG5/pG7gYDjBAsRQ1SSuxmKAEx5PcPM6QwmDaU7l6E6rcMI7dndzcB94LqehzZg==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-shared-contexts/9.5.0_i2bxsyfskhzbpjanbovidbfj7u:
resolution: {integrity: sha512-7mPrXx81eudpwloO44VREXc710RtZrzmQVw91EGJeTUfMRdg2MgjNGcwG6C3x+K0RkAgdQ8RAMfR3MSbCQvILA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-theme': 9.1.8
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
react: 18.2.0
dev: false
/@fluentui/react-skeleton/9.0.4_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-ImGcbjpI5URcG4v5PfCOS/PZgEBVHhMBJ9HEyLriQMjUgT8QgTiwg+y9JRA+uPq4siioffRkElOqKqJHZLRMlg==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-slider/9.1.17_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-2gg3JKyPb8O3bpsAEwoFLGMf6ZFeXvsvxtpHh0mbH6rVR6yazPAW0zSPGS+Y7xPw///A9iup8R9Ar46dWctlrw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-spinbutton/9.2.16_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-PO3IcV11evj0WFYQ5ntY05ISDtIRAE8E9Q0qe27lWGRDXEeuqRrydfbZuF02rLb6IzNAV+QYXXntxXcO/+ofLA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/keyboard-keys': 9.0.3
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false
/@fluentui/react-spinner/9.2.2_nt3dzwb3srfhvwd6kfpoey3m3m:
resolution: {integrity: sha512-QVzWLUbTZA/pIhmj3/6KYmS66S+cnVmtb4DXT1WbHFtjxaVNhbYzRPiEKqEv9uvXQdVDcWR55aAVGYtTa/AXpQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-label': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
/@fluentui/react-switch/9.1.17_di5tp42szlb4tl4cql66fs7hei:
resolution: {integrity: sha512-6lmzvASB2BIWy+bld29V+fNCQJZbUDxWhjni2fRz6g4mynIROB1zgqNa1E7wJMjx32c4PZCmJAQo3PomZTOi7w==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.8.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
dependencies:
'@fluentui/react-field': 9.1.6_di5tp42szlb4tl4cql66fs7hei
'@fluentui/react-icons': 2.0.203_react@18.2.0
'@fluentui/react-jsx-runtime': 9.0.0-alpha.6_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-label': 9.1.15_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-shared-contexts': 9.5.0_i2bxsyfskhzbpjanbovidbfj7u
'@fluentui/react-tabster': 9.7.5_nt3dzwb3srfhvwd6kfpoey3m3m
'@fluentui/react-theme': 9.1.8
'@fluentui/react-utilities': 9.9.2_i2bxsyfskhzbpjanbovidbfj7u
'@griffel/react': 1.5.7_react@18.2.0
'@swc/helpers': 0.4.14
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
transitivePeerDependencies:
- scheduler
dev: false