-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpnpm-lock.yaml
2231 lines (1928 loc) · 101 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:
'@floating-ui/react':
specifier: ^0.26.12
version: 0.26.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@fluentui/react-components':
specifier: ^9.47.3
version: 9.47.3(@types/react-dom@18.2.14)(@types/react@18.2.33)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(scheduler@0.23.2)
'@fluentui/react-icons':
specifier: ^2.0.250
version: 2.0.250(react@18.2.0)
allotment:
specifier: ^1.20.2
version: 1.20.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
immer:
specifier: ^10.1.1
version: 10.1.1
js-sha512:
specifier: ^0.9.0
version: 0.9.0
lodash:
specifier: ^4.17.21
version: 4.17.21
next:
specifier: latest
version: 14.1.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
rangy:
specifier: ^1.3.2
version: 1.3.2
react:
specifier: ^18.2.0
version: 18.2.0
react-contexify:
specifier: ^6.0.0
version: 6.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-dom:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
react-table-column-resizer:
specifier: ^1.2.3
version: 1.2.4(react@18.2.0)
react-tracked:
specifier: ^2.0.1
version: 2.0.1(react@18.2.0)(scheduler@0.23.2)
scheduler:
specifier: ^0.23.2
version: 0.23.2
zustand:
specifier: ^5.0.1
version: 5.0.1(@types/react@18.2.33)(immer@10.1.1)(react@18.2.0)
devDependencies:
'@biomejs/biome':
specifier: 1.6.4
version: 1.6.4
'@types/lodash':
specifier: ^4.17.0
version: 4.17.0
'@types/node':
specifier: 20.8.10
version: 20.8.10
'@types/rangy':
specifier: ^0.0.38
version: 0.0.38
'@types/react':
specifier: 18.2.33
version: 18.2.33
'@types/react-dom':
specifier: 18.2.14
version: 18.2.14
typescript:
specifier: ^5.2.2
version: 5.4.3
packages:
'@babel/runtime@7.24.1':
resolution: {integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==}
engines: {node: '>=6.9.0'}
'@biomejs/biome@1.6.4':
resolution: {integrity: sha512-3groVd2oWsLC0ZU+XXgHSNbq31lUcOCBkCcA7sAQGBopHcmL+jmmdoWlY3S61zIh+f2mqQTQte1g6PZKb3JJjA==}
engines: {node: '>=14.21.3'}
hasBin: true
'@biomejs/cli-darwin-arm64@1.6.4':
resolution: {integrity: sha512-2WZef8byI9NRzGajGj5RTrroW9BxtfbP9etigW1QGAtwu/6+cLkdPOWRAs7uFtaxBNiKFYA8j/BxV5zeAo5QOQ==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [darwin]
'@biomejs/cli-darwin-x64@1.6.4':
resolution: {integrity: sha512-uo1zgM7jvzcoDpF6dbGizejDLCqNpUIRkCj/oEK0PB0NUw8re/cn1EnxuOLZqDpn+8G75COLQTOx8UQIBBN/Kg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [darwin]
'@biomejs/cli-linux-arm64-musl@1.6.4':
resolution: {integrity: sha512-Hp8Jwt6rjj0wCcYAEN6/cfwrrPLLlGOXZ56Lei4Pt4jy39+UuPeAVFPeclrrCfxyL1wQ2xPrhd/saTHSL6DoJg==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
'@biomejs/cli-linux-arm64@1.6.4':
resolution: {integrity: sha512-wAOieaMNIpLrxGc2/xNvM//CIZg7ueWy3V5A4T7gDZ3OL/Go27EKE59a+vMKsBCYmTt7jFl4yHz0TUkUbodA/w==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
'@biomejs/cli-linux-x64-musl@1.6.4':
resolution: {integrity: sha512-wqi0hr8KAx5kBO0B+m5u8QqiYFFBJOSJVSuRqTeGWW+GYLVUtXNidykNqf1JsW6jJDpbkSp2xHKE/bTlVaG2Kg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
'@biomejs/cli-linux-x64@1.6.4':
resolution: {integrity: sha512-qTWhuIw+/ePvOkjE9Zxf5OqSCYxtAvcTJtVmZT8YQnmY2I62JKNV2m7tf6O5ViKZUOP0mOQ6NgqHKcHH1eT8jw==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
'@biomejs/cli-win32-arm64@1.6.4':
resolution: {integrity: sha512-Wp3FiEeF6v6C5qMfLkHwf4YsoNHr/n0efvoC8jCKO/kX05OXaVExj+1uVQ1eGT7Pvx0XVm/TLprRO0vq/V6UzA==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [win32]
'@biomejs/cli-win32-x64@1.6.4':
resolution: {integrity: sha512-mz183Di5hTSGP7KjNWEhivcP1wnHLGmOxEROvoFsIxMYtDhzJDad4k5gI/1JbmA0xe4n52vsgqo09tBhrMT/Zg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [win32]
'@emotion/hash@0.9.1':
resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==}
'@floating-ui/core@1.6.0':
resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
'@floating-ui/devtools@0.2.1':
resolution: {integrity: sha512-8PHJLbD6VhBh+LJ1uty/Bz30qs02NXCE5u8WpOhSewlYXUWl03GNXknr9AS2yaAWJEQaY27x7eByJs44gODBcw==}
peerDependencies:
'@floating-ui/dom': '>=1.5.4'
'@floating-ui/dom@1.6.3':
resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==}
'@floating-ui/react-dom@2.0.8':
resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
'@floating-ui/react@0.26.12':
resolution: {integrity: sha512-D09o62HrWdIkstF2kGekIKAC0/N/Dl6wo3CQsnLcOmO3LkW6Ik8uIb3kw8JYkwxNCcg+uJ2bpWUiIijTBep05w==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
'@floating-ui/utils@0.2.1':
resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
'@fluentui/keyboard-keys@9.0.7':
resolution: {integrity: sha512-vaQ+lOveQTdoXJYqDQXWb30udSfTVcIuKk1rV0X0eGAgcHeSDeP1HxMy+OgHOQZH3OiBH4ZYeWxb+tmfiDiygQ==}
'@fluentui/priority-overflow@9.1.11':
resolution: {integrity: sha512-sdrpavvKX2kepQ1d6IaI3ObLq5SAQBPRHPGx2+wiMWL7cEx9vGGM0fmeicl3soqqmM5uwCmWnZk9QZv9XOY98w==}
'@fluentui/react-accordion@9.3.47':
resolution: {integrity: sha512-hb/CYIRgtudSwXPObnIlE0TOATq4wmUb1vTgp1DorXE5A/PipVeGNBmru7JPhKNhJCT7Wud7i2FLMs5htc0bmA==}
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.115':
resolution: {integrity: sha512-9Ec73jrJCyTy8wVVmBDoYMIf13f+S6kJiwgnmN1dl4rCDQtEUfS9f/ivC6BNmWMguUnqlSEgf1DcT458g3foRQ==}
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.10.3':
resolution: {integrity: sha512-2LXI1pm39ET0FK7o/U7qBrjbAqZctCaMrOs40tfY0tcfK/jPwAblsighOgHfdJVzVm0dnfyeggrYtQVfD+UKvw==}
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.20':
resolution: {integrity: sha512-61NQ1UGHI050FFn4ECycY+/mNRtd8neUjPyVlNoVFkAK8JsiCDY2wDkIgUEZcoVM21R/nbda4ap1xeXDSLEiWA==}
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.30':
resolution: {integrity: sha512-WHr0WYE7mpciu/zkCbMBqHkTC/woV9kUfjxMQ2kICoCYxoSEAgsiqkUCkPoG37Ce4jJAl6nIrqtXikXYLltqrw==}
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.20':
resolution: {integrity: sha512-eW7SqvrOjllf0j72sA68m/kbGE6Da2RSMZPtI3LMdlBZzIniSunlrO3R38U5KABd1WyS/gavjucfmhIEFMzjdA==}
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.74':
resolution: {integrity: sha512-1n6S/6q5BJfjYuS6xaRHXE36Qki0pqfFuFCpCVe8lD+H2ed9irbL8XWe3efLElHWyg1c5CkYTmiY2UtcQD/qFA==}
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.73':
resolution: {integrity: sha512-t2vuULzTLSN9op7dAaelHtdrInzQJBNJqT4dDmc8VgZTgy6yjmDJTXtC6IQRftaSMcrqySssEixRfgeE/FFhRQ==}
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.19':
resolution: {integrity: sha512-74jVl7fTi/EEYhQyXiKiCX9vHG4L0W1kw7Vo5becAgCYR6EwTOwLo/NPRkApicj7wTUgcly4BU1UCiHQj3qPbQ==}
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.9.5':
resolution: {integrity: sha512-YbGbZWwBiogqUeVsvEmCoiV0lIew+V+gt/MjII6w7ZLMpa1EyY7N+SBjaf0NfYwLl/EVVa8C/2sp4b4Crpy1jA==}
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.47.3':
resolution: {integrity: sha512-bWHA9JCoxd83T0FCgVL6R+4FYa/fLQyrBimKgRsYSFii8B4HrTam6ogeyolLPiA4y2Cizx35osTDMFIPeOjtWg==}
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.57':
resolution: {integrity: sha512-cxUBg7GFnhYzOTpY3bhwR8jFA/74cqnKyE3YwNmN3HNjwCjj6c5qBRmHTl0B9NsXkEzXiDqa7P+xhb0H7/3y0g==}
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.9.16':
resolution: {integrity: sha512-chqT+73wzxAgPEVkO+pTcL5JZ5iahiKCE4kLANQzKpUTWIwFY8ndY+LXlWnKmXbBD20ZEmus47wh7RgWLWmPkQ==}
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.66':
resolution: {integrity: sha512-8syTKPiyvXygwELw7S3uX/KHE8AFfLbv0bfmwMSfKwayUMuxQhLJongRFYBK30djEVwKLnh7/PwuCz26ul1B/A==}
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.1.10':
resolution: {integrity: sha512-iCtWseQMpi5gzA9zSZA3VnNvqwePaRwIAZpLSc5XoEtVA5xig2GVe+fotZFY5UfoVEPb7oXGeQpa0brfZ+2iig==}
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.60':
resolution: {integrity: sha512-ZVBNYlxG51K9DOdO8HIZqigJaumbeZaeL3PZkGSsZqq2/VHPVri73YeCocQHd68uSiq6yy9qAYq8rv7tzvBPow==}
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.250':
resolution: {integrity: sha512-djbzvrKtn2M3C35fOxvNSJ3c8KlD4kts0rEvyxVi75hu80e64GS91ttCqbgKovF1EOzISusCaAJ1bUsxvKTbIA==}
peerDependencies:
react: '>=16.8.0 <19.0.0'
'@fluentui/react-image@9.1.63':
resolution: {integrity: sha512-52LSN84DYYhX5Q4AimNjrAD7lNFlKsNRbQwnSr+7Qo0liBJv7Qz0Hdo1AjEXqVdbmHA9i6b8GFtj0idHaoy9tA==}
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.99':
resolution: {integrity: sha512-egrYTSoOvbvWl3aYAgU1M6sBPJbsxeSQuqXpbZvn0AXH99AhMOjVLsiDUkolNWRbbxp5V2zh22Q/1Hg0bSp+Og==}
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.27':
resolution: {integrity: sha512-I2GSztwZKEyjesrGfjIMSouq+IH6CdFqegtSsIlAhBfAjsNBE4FDPl9SEa1DWrXvrM1oyMrEh8QfM6/n1rLzxA==}
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'
'@fluentui/react-input@9.4.70':
resolution: {integrity: sha512-pj4Y/cslUXncuCgXgsDEHgJkp7Ot/MX1vL+Ei/I3uXEBwRyTp/mmYf+dK0p5BvD4c1xDtKM4kzm8+ks0dnrFsA==}
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.35':
resolution: {integrity: sha512-UDLN0nqTfnc3i809F/6pn15CslU8l71zY8nBBF14PHht/5fsp529hABOjF/QXUZsHGUTVWolMJnVXt2SmNFD4w==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-label@9.1.67':
resolution: {integrity: sha512-TiFrx9hIdnIrPg9vGSvAGt9jNiX2tmAr7INQmuXOuIMcnMWdkwmJxvTgft4oh906DjglHq2mfJbsVrCOMRKBoA==}
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.2.16':
resolution: {integrity: sha512-s4G+hgSlXx0kdYx0OgH8La3j5AVyvE86RxJ54B6kJSXIuowr1tK8E6fAZQL6K875XJ+TwLfiow/Dla285fx3Wg==}
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-menu@9.13.6':
resolution: {integrity: sha512-o8NKoOhL0NtD/Zlgf3TvHx3WA184Awq/8Le4Pkv+vfB/lOs/JJQaqXr5pChA1l8+jVSfxfO2HS2PLt7vblBUpA==}
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.0.25':
resolution: {integrity: sha512-9jgSV9nPyhCY9YuDM/nK+TuRGVXJs7GuNiQk5orDR7OiDdZNpiBmD1XJQaNM4hbU19HuWeraHkZfFazJYFnJbA==}
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'
'@fluentui/react-motion-preview@0.5.18':
resolution: {integrity: sha512-UfD0f1CSWOrQOgIiO4a41hVwAYcITc3UgcjLy0Gh0Nw5+Vv1/ERKAD9XPiniN7dC4N3z7v89NzWvxTA5ZVMDig==}
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-overflow@9.1.16':
resolution: {integrity: sha512-mBDZDBIthlWLj3aW7qh+PQiVzeUWBzM4U1PRsZ2XhiGWqcYVu/YrY20ilV8u6W26Zlj9r88M6j/qin1euu+2Dw==}
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.79':
resolution: {integrity: sha512-04N3PaEIUMVr0x9j2PXKVQ9NsDRGtIHhy9eoFeYwB9HTu5F/xF4L27F8JePoHdMaKZ/pKIa/2X8lTOTY2+r5FQ==}
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.3':
resolution: {integrity: sha512-OuYJYUJSTUZirHnKaIlBZgNhF4wkbZbMJUaHX2W00gf1VLh5gkV8/vFKgKsQEddYFkQekis2wqRqetbVkMMKfQ==}
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.19':
resolution: {integrity: sha512-IIYgzfsGhVBH2vU/dBRv2c55hJ8Vd5HQjE+WUvhOm7gnuMtX/xUUWL8ydxLMfdvEwxHiicdbjHPmiQqV4BmlUw==}
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.14.3':
resolution: {integrity: sha512-8u91AfNzEGhZJnx+Y/4EC5dMgHnHPYzMrg86FawmLyoA8MyGuTzznC38bFKG20Bti3MxfFuLASUrrGOO0oo+nw==}
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.70':
resolution: {integrity: sha512-5Y3zQhEQZsqZByHh2ASCC4dSwZj8FOD1YdodtPeQWsqsglZPNxsptL6dhnRgLfoMjXvwbizmd4mrYV2ACTR02Q==}
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.13.17':
resolution: {integrity: sha512-txhCPs9Q0ngM1LpDvpzB/0XHXrgWf/rVjDudepUBaIjE0T1nQaPQRsQgJG7TFLVt+kD8KqG3+lS/W+W88FYl7Q==}
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.14':
resolution: {integrity: sha512-5UFA9WKtC1n22GXc23n2IwmFFKEe0PB/WrgYRGypK28vIUs9RgKQbghofjLJ7WngAaVIjMIYJ6qxyiq+V8dHVg==}
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.2':
resolution: {integrity: sha512-Ut0DX33B4aNfcDNnt5//uRp3vY3XieUTFWqB6EdeujsMtAaDJqexFS0IvDInCJVaZYfehZF4Iv3fn6/BZVSBng==}
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'
'@fluentui/react-select@9.1.70':
resolution: {integrity: sha512-EvrgS6gazxiuOgmxLO0XM0tXqlPMC1A7Bpj7htovEZP6nRZUmYZc18a14YKofnK4Nx8iaeZyTzcLWt9m1s18FQ==}
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.16.0':
resolution: {integrity: sha512-KUfjbVKQOK3bEZ4ImZZDMtEQWQToRqfmLVGilKV9m5ksfcgk/B5v0ny08LCFPRSmtCW/WB1N+eaMLYQm6y9vkA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-skeleton@9.0.58':
resolution: {integrity: sha512-8zDepUXATMms1CbD9NQMuh8OvpvNcatmWGTsskRJMrEmJJUOP+IROzXTKhRFRU4/6+uOqBnliXG2lRNyVNJGaA==}
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.1.76':
resolution: {integrity: sha512-NGya9wotz3/vgLWLPuOvgi/wwHiccM1IP+a0HaKe5tqZFbYX23KudXEfitnQ6ecwzLHkT4Uo5DslBgpYRf7wYA==}
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.70':
resolution: {integrity: sha512-oGqfLss3TQYQb9rhke+jciw1I8L/I2/lvZpIi9EjqLL2BqCDCJTskhhUPqmXMI60MmYewUhu+UdqrL66XJJcCg==}
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.4.3':
resolution: {integrity: sha512-ashVswTGAcl/pO74A7ZtB6BDseTzeQaYoIQJFSiORcIHXgMNUPiobZckiq9wjoXqga65SaV/1OXLAt4hXvPABQ==}
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-switch@9.1.76':
resolution: {integrity: sha512-6OAOrw7tc07PeEO9Z0Q7cIkBYkh9lGu/caXkIl1BtRItOJusGlbC/5UNKH7hroe1aE4L4R3HihGiUC6Ry97sEA==}
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.12.1':
resolution: {integrity: sha512-lMF7NWxdzKnepl+OSiUNMaL9BsP7mtS4xk6bi4yUStSFoU95Ej+7dwvJoKHfoF3qRCwNZHOcGjzkttZhvUA33A==}
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.4.15':
resolution: {integrity: sha512-q/3Q3zl+lE+vXQo5968kpK5prQNoaqfUnZBgZZwNXugqRfWXtyObAq1PE0oW/HQL7QfDPrKjdbgA3583qGzvQg==}
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.19.6':
resolution: {integrity: sha512-nu0SwKP0pNT+9whuJXwvquKziTEEnKDDkCjEIzHurIY2eP8vragkUB7RmDN1TScDN2MoQHeoVkiJy5M4G4oLfA==}
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.2.1':
resolution: {integrity: sha512-6bDP6weVX9mLHVqVtjECIcIsHn66Xn1a52QfWyGPyPI3H4mFu4qt2MlwTAZxv+emGjnCIStfUgx5vQbxIJxC1Q==}
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-text@9.4.15':
resolution: {integrity: sha512-sm2DflTLAwppfC0zt+Ev0uXgLQOEyN/Gaccp2v1618ghtwu+i6O9AaRB74dErsIRvqsKGmk0tlm3RswNpEaHmA==}
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.70':
resolution: {integrity: sha512-Y9VqxOv8UISP0d1qMM/bkJhchO2CKhXtwW6dW7Vig2KapT2cMD+bWFNnQdnvUhurgpb9VWH30YDD5wxsQsrpBQ==}
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.19':
resolution: {integrity: sha512-mrVhKbr4o9UKERPxgghIRDU59S7gRizrgz3/wwyMt7elkr8Sw+OpwKIeEw9x6P0RTcFDC00nggaMJhBGs7Xo4A==}
'@fluentui/react-toast@9.3.36':
resolution: {integrity: sha512-iDYwcfjeMuy2jOVEEwlUvWWv0HJ687k1VUfES7N9m0WCDPHbAmTaVetRhK7cwLBGD7C0IaNWSb9/ykWGQggIBA==}
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.1.77':
resolution: {integrity: sha512-7tZ7khciYvzJNBB+nVm8mFPUIwNpa023vzJww+v8V52TmLw3vKIPA9ex1TfvCLvjdddrv5fdtrTEVGqRB82xvQ==}
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.4.22':
resolution: {integrity: sha512-SyNXFoCjabNVahw+wjofFN2Zng10EJMfR8+BaO4mulhK+Q8Hgwzd40S4p1J4Volse/2Ychvk7bMuZ2eL6NQT3w==}
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.4.37':
resolution: {integrity: sha512-7xUTKgsQj+Y9Efsw7JMQ/pfkqmZsN//08JpLPgBBZHsLP8YIGJvoS0FNzf+Q0ZPYRY5AwpEho4CGhBcj/ln+PQ==}
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.6':
resolution: {integrity: sha512-TLWL0jqArzZXZLLzA/Mi7gMDBr8tc7LcCnCnZBIHniVB/eESMKgTYl6EwbepHfkkcPfp+amH9U4CbXADNqQQsw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-virtualizer@9.0.0-alpha.74':
resolution: {integrity: sha512-f6Cck3Fh6ov+zKSAblLpOdaM8Sq/SW2OKnQmBZQBCj4e8feyhx5eoaJo8be8afteqAczsovt2QB049a+NtaFhw==}
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.16':
resolution: {integrity: sha512-Gr9G8LIlUhZYX5j6CfDQrofQqsWAz/q54KabWn1tWV/1083WwyoTZXiG1k6b37NnK7Feye7D7Nz+4MNqoKpXGw==}
'@griffel/core@1.15.3':
resolution: {integrity: sha512-5ksBpOjFJ75HijGehQ06Ri9cQjhd/rqQ0N/jJzXDDXQFYdOOzib/QL7BXNwhkLtTyHvN391cD4/BqcTdynfLUg==}
'@griffel/react@1.5.21':
resolution: {integrity: sha512-7wuY9uFSt/0E7kLAKX//ue8NILx0IGoOtIx6WVuavEUFJXPCrvFn4uCDgnJC0211LZtJ+XH7zZGPNUtSb7nijw==}
peerDependencies:
react: '>=16.8.0 <19.0.0'
'@griffel/style-types@1.0.4':
resolution: {integrity: sha512-geZomjQTIHXoQZFFB811PUMXYAr8LuBNOMPcR2YJAl1pslbHYYiZKCa2FgZCw00hnQFP4uB4JIJ2CiPJqKZYmw==}
'@juggle/resize-observer@3.4.0':
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
'@next/env@14.1.4':
resolution: {integrity: sha512-e7X7bbn3Z6DWnDi75UWn+REgAbLEqxI8Tq2pkFOFAMpWAWApz/YCUhtWMWn410h8Q2fYiYL7Yg5OlxMOCfFjJQ==}
'@next/swc-darwin-arm64@14.1.4':
resolution: {integrity: sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@next/swc-darwin-x64@14.1.4':
resolution: {integrity: sha512-b0Xo1ELj3u7IkZWAKcJPJEhBop117U78l70nfoQGo4xUSvv0PJSTaV4U9xQBLvZlnjsYkc8RwQN1HoH/oQmLlQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@next/swc-linux-arm64-gnu@14.1.4':
resolution: {integrity: sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@next/swc-linux-arm64-musl@14.1.4':
resolution: {integrity: sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@next/swc-linux-x64-gnu@14.1.4':
resolution: {integrity: sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@next/swc-linux-x64-musl@14.1.4':
resolution: {integrity: sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@next/swc-win32-arm64-msvc@14.1.4':
resolution: {integrity: sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@next/swc-win32-ia32-msvc@14.1.4':
resolution: {integrity: sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
'@next/swc-win32-x64-msvc@14.1.4':
resolution: {integrity: sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@swc/helpers@0.5.2':
resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
'@types/lodash@4.17.0':
resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==}
'@types/node@20.8.10':
resolution: {integrity: sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w==}
'@types/prop-types@15.7.12':
resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
'@types/rangy@0.0.38':
resolution: {integrity: sha512-KMybA3NQLSc5Fl5VOyLVSZ10AMSY6anQqLxP8dxgNsui3dScPIB7smywq69gwJkud2ODVTIImMNN3RtHcFKYgA==}
'@types/react-dom@18.2.14':
resolution: {integrity: sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==}
'@types/react@18.2.33':
resolution: {integrity: sha512-v+I7S+hu3PIBoVkKGpSYYpiBT1ijqEzWpzQD62/jm4K74hPpSP7FF9BnKG6+fg2+62weJYkkBWDJlZt5JO/9hg==}
'@types/scheduler@0.23.0':
resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
allotment@1.20.2:
resolution: {integrity: sha512-TaCuHfYNcsJS9EPk04M7TlG5Rl3vbAdHeAyrTE9D5vbpzV+wxnRoUrulDbfnzaQcPIZKpHJNixDOoZNuzliKEA==}
peerDependencies:
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
caniuse-lite@1.0.30001605:
resolution: {integrity: sha512-nXwGlFWo34uliI9z3n6Qc0wZaf7zaZWA1CPZ169La5mV3I/gem7bst0vr5XQH5TJXZIMfDeZyOrZnSlVzKxxHQ==}
classnames@2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
clsx@1.2.1:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
eventemitter3@5.0.1:
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
immer@10.1.1:
resolution: {integrity: sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw==}
js-sha512@0.9.0:
resolution: {integrity: sha512-mirki9WS/SUahm+1TbAPkqvbCiCfOAAsyXeHxK1UkullnJVVqoJG2pL9ObvT05CN+tM7fxhfYm0NbXn+1hWoZg==}
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
keyborg@2.5.0:
resolution: {integrity: sha512-nb4Ji1suqWqj6VXb61Jrs4ab/UWgtGph4wDch2NIZDfLBUObmLcZE0aiDjZY49ghtu03fvwxDNvS9ZB0XMz6/g==}
lodash.clamp@4.0.3:
resolution: {integrity: sha512-HvzRFWjtcguTW7yd8NJBshuNaCa8aqNFtnswdT7f/cMd/1YKy5Zzoq4W/Oxvnx9l7aeY258uSdDfM793+eLsVg==}
lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
next@14.1.4:
resolution: {integrity: sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ==}
engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
react: ^18.2.0
react-dom: ^18.2.0
sass: ^1.3.0
peerDependenciesMeta:
'@opentelemetry/api':
optional: true
sass:
optional: true
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
postcss@8.4.31:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
proxy-compare@3.0.0:
resolution: {integrity: sha512-y44MCkgtZUCT9tZGuE278fB7PWVf7fRYy0vbRXAts2o5F0EfC4fIQrvQQGBJo1WJbFcVLXzApOscyJuZqHQc1w==}
rangy@1.3.2:
resolution: {integrity: sha512-fS1C4MOyk8T+ZJZdLcgrukPWxkyDXa+Hd2Kj+Zg4wIK71yrWgmjzHubzPMY1G+WD9EgGxMp3fIL0zQ1ickmSWA==}
react-contexify@6.0.0:
resolution: {integrity: sha512-jMhz6yZI81Jv3UDj7TXqCkhdkCFEEmvwGCPXsQuA2ZUC8EbCuVQ6Cy8FzKMXa0y454XTDClBN2YFvvmoFlrFkg==}
peerDependencies:
react: '>=16'
react-dom: '>=16'
react-dom@18.2.0:
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies:
react: ^18.2.0
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
react-table-column-resizer@1.2.4:
resolution: {integrity: sha512-G2zm4n0dbGmSdMCcvUIhctUX7WZ2qdGYmN7fk3oNApsRxXBFTCt3JPbtyEgSxSmltSweTfVTK7ZApYQ9Qz/TRw==}
peerDependencies:
react: ^18.2.0
react-tracked@2.0.1:
resolution: {integrity: sha512-qjbmtkO2IcW+rB2cFskRWDTjKs/w9poxvNnduacjQA04LWxOoLy9J8WfIEq1ahifQ/tVJQECrQPBm+UEzKRDtg==}
peerDependencies:
react: '>=18.0.0'
scheduler: '>=0.19.0'
react-transition-group@4.4.5:
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
react-dom: '>=16.6.0'
react@18.2.0:
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
engines: {node: '>=0.10.0'}
regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
rtl-css-js@1.16.1:
resolution: {integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==}
scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
source-map-js@1.2.0:
resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
streamsearch@1.1.0:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
styled-jsx@5.1.1:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
'@babel/core': '*'
babel-plugin-macros: '*'
react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
peerDependenciesMeta:
'@babel/core':
optional: true
babel-plugin-macros:
optional: true
stylis@4.3.1:
resolution: {integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==}
tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
tabster@6.1.0:
resolution: {integrity: sha512-wTPy2d6WVmU/YjT0ERY9jc+et1P/B8FoSQ4qhr1xi7liwTezRbRV6yA1pKx8kdPWmLdIOBA4fn07x9c0x/wnow==}
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
typescript@5.4.3:
resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==}
engines: {node: '>=14.17'}
hasBin: true
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
use-context-selector@2.0.0:
resolution: {integrity: sha512-owfuSmUNd3eNp3J9CdDl0kMgfidV+MkDvHPpvthN5ThqM+ibMccNE0k+Iq7TWC6JPFvGZqanqiGCuQx6DyV24g==}
peerDependencies:
react: '>=18.0.0'
scheduler: '>=0.19.0'
use-disposable@1.0.2:
resolution: {integrity: sha512-UMaXVlV77dWOu4GqAFNjRzHzowYKUKbJBQfCexvahrYeIz4OkUYUjna4Tjjdf92NH8Nm8J7wEfFRgTIwYjO5jg==}
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'
use-resize-observer@9.1.0:
resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==}
peerDependencies:
react: 16.8.0 - 18
react-dom: 16.8.0 - 18
zustand@5.0.1:
resolution: {integrity: sha512-pRET7Lao2z+n5R/HduXMio35TncTlSW68WsYBq2Lg1ASspsNGjpwLAsij3RpouyV6+kHMwwwzP0bZPD70/Jx/w==}
engines: {node: '>=12.20.0'}
peerDependencies:
'@types/react': '>=18.0.0'
immer: '>=9.0.6'
react: '>=18.0.0'
use-sync-external-store: '>=1.2.0'
peerDependenciesMeta:
'@types/react':
optional: true
immer:
optional: true
react:
optional: true
use-sync-external-store:
optional: true
snapshots:
'@babel/runtime@7.24.1':
dependencies:
regenerator-runtime: 0.14.1
'@biomejs/biome@1.6.4':
optionalDependencies:
'@biomejs/cli-darwin-arm64': 1.6.4
'@biomejs/cli-darwin-x64': 1.6.4
'@biomejs/cli-linux-arm64': 1.6.4
'@biomejs/cli-linux-arm64-musl': 1.6.4
'@biomejs/cli-linux-x64': 1.6.4
'@biomejs/cli-linux-x64-musl': 1.6.4
'@biomejs/cli-win32-arm64': 1.6.4
'@biomejs/cli-win32-x64': 1.6.4
'@biomejs/cli-darwin-arm64@1.6.4':
optional: true
'@biomejs/cli-darwin-x64@1.6.4':
optional: true
'@biomejs/cli-linux-arm64-musl@1.6.4':
optional: true
'@biomejs/cli-linux-arm64@1.6.4':
optional: true
'@biomejs/cli-linux-x64-musl@1.6.4':
optional: true
'@biomejs/cli-linux-x64@1.6.4':
optional: true
'@biomejs/cli-win32-arm64@1.6.4':
optional: true
'@biomejs/cli-win32-x64@1.6.4':
optional: true
'@emotion/hash@0.9.1': {}
'@floating-ui/core@1.6.0':
dependencies:
'@floating-ui/utils': 0.2.1
'@floating-ui/devtools@0.2.1(@floating-ui/dom@1.6.3)':
dependencies:
'@floating-ui/dom': 1.6.3
'@floating-ui/dom@1.6.3':
dependencies:
'@floating-ui/core': 1.6.0
'@floating-ui/utils': 0.2.1
'@floating-ui/react-dom@2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@floating-ui/dom': 1.6.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
'@floating-ui/react@0.26.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':