-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
2352 lines (2352 loc) Β· 92.7 KB
/
package-lock.json
File metadata and controls
2352 lines (2352 loc) Β· 92.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "@sheet-ui/sheet",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@sheet-ui/sheet",
"license": "MIT",
"dependencies": {
"react-aria-components": "^1.4.0"
},
"devDependencies": {
"@types/react": "^18.3.11",
"esbuild": "0.24.0",
"typescript": "^5.6.2",
"vite": "^5.4.8"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"framer-motion": "^11.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"version": "1.1.1"
},
"node_modules/@esbuild/darwin-arm64": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz",
"integrity": "sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=18"
}
},
"node_modules/@formatjs/ecma402-abstract": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.0.0.tgz",
"integrity": "sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g==",
"dependencies": {
"@formatjs/intl-localematcher": "0.5.4",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/fast-memoize": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz",
"integrity": "sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-messageformat-parser": {
"version": "2.7.8",
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.7.8.tgz",
"integrity": "sha512-nBZJYmhpcSX0WeJ5SDYUkZ42AgR3xiyhNCsQweFx3cz/ULJjym8bHAzWKvG5e2+1XO98dBYC0fWeeAECAVSwLA==",
"dependencies": {
"@formatjs/ecma402-abstract": "2.0.0",
"@formatjs/icu-skeleton-parser": "1.8.2",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.2.tgz",
"integrity": "sha512-k4ERKgw7aKGWJZgTarIcNEmvyTVD9FYh0mTrrBMHZ1b8hUu6iOJ4SzsZlo3UNAvHYa+PnvntIwRPt1/vy4nA9Q==",
"dependencies": {
"@formatjs/ecma402-abstract": "2.0.0",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/intl-localematcher": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.4.tgz",
"integrity": "sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@internationalized/date": {
"version": "3.5.6",
"resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.5.6.tgz",
"integrity": "sha512-jLxQjefH9VI5P9UQuqB6qNKnvFt1Ky1TPIzHGsIlCi7sZZoMR8SdYbBGRvM0y+Jtb+ez4ieBzmiAUcpmPYpyOw==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/message": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.5.tgz",
"integrity": "sha512-hjEpLKFlYA3m5apldLqzHqw531qqfOEq0HlTWdfyZmcloWiUbWsYXD6YTiUmQmOtarthzhdjCAwMVrB8a4E7uA==",
"dependencies": {
"@swc/helpers": "^0.5.0",
"intl-messageformat": "^10.1.0"
}
},
"node_modules/@internationalized/number": {
"version": "3.5.4",
"resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.5.4.tgz",
"integrity": "sha512-h9huwWjNqYyE2FXZZewWqmCdkw1HeFds5q4Siuoms3hUQC5iPJK3aBmkFZoDSLN4UD0Bl8G22L/NdHpeOr+/7A==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/string": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.2.4.tgz",
"integrity": "sha512-BcyadXPn89Ae190QGZGDUZPqxLj/xsP4U1Br1oSy8yfIjmpJ8cJtGYleaodqW/EmzFjwELtwDojLkf3FhV6SjA==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@react-aria/accordion": {
"version": "3.0.0-alpha.34",
"resolved": "https://registry.npmjs.org/@react-aria/accordion/-/accordion-3.0.0-alpha.34.tgz",
"integrity": "sha512-3Qoj3StyQbdTYvAXVIbAIk11WtRyo3cdgn6OgwPAvN6c1r8R7X/J9DHTykZRrlF6TOGcdE0H0yrmPrlG92ObmA==",
"dependencies": {
"@react-aria/button": "^3.10.0",
"@react-aria/selection": "^3.20.0",
"@react-aria/utils": "^3.25.3",
"@react-stately/tree": "^3.8.5",
"@react-types/accordion": "3.0.0-alpha.24",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/breadcrumbs": {
"version": "3.5.17",
"resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.17.tgz",
"integrity": "sha512-LJQ+u3TbPmtAWZ3/qC6VfLCzXiwVoB6GmI+HJ2pbjs6H9L8MoiLHsA4mgcz+P0rvx7SCs0Rhvy4JurV6R/R4xw==",
"dependencies": {
"@react-aria/i18n": "^3.12.3",
"@react-aria/link": "^3.7.5",
"@react-aria/utils": "^3.25.3",
"@react-types/breadcrumbs": "^3.7.8",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/button": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.10.0.tgz",
"integrity": "sha512-mhbn2tEsr991sjG6YMH6oN3ELWb4YvZZ8mnZHMNLa3l8T00PV0ClvQBsUndo6uSvuTHhpFzmMMkJFhYYUwCKlw==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/utils": "^3.25.3",
"@react-stately/toggle": "^3.7.8",
"@react-types/button": "^3.10.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/calendar": {
"version": "3.5.12",
"resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.5.12.tgz",
"integrity": "sha512-C8VRjRwEVPaGoCtjOlC0lb3mVSz4ajbal8jfvcbp7LOqCcmOVTUbiM7EPTy60EfZRanFNSp2D1ZstEZDU+cqsg==",
"dependencies": {
"@internationalized/date": "^3.5.6",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/live-announcer": "^3.4.0",
"@react-aria/utils": "^3.25.3",
"@react-stately/calendar": "^3.5.5",
"@react-types/button": "^3.10.0",
"@react-types/calendar": "^3.4.10",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/checkbox": {
"version": "3.14.7",
"resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.14.7.tgz",
"integrity": "sha512-aqVxXcr/8P7pQ7R34DlJX2SdBvWtHof9lLTVBY/9tgMplcKIoVBdlVUYPtqWxT3tGan+rruPQHbzTx8zJRFJyg==",
"dependencies": {
"@react-aria/form": "^3.0.9",
"@react-aria/interactions": "^3.22.3",
"@react-aria/label": "^3.7.12",
"@react-aria/toggle": "^3.10.8",
"@react-aria/utils": "^3.25.3",
"@react-stately/checkbox": "^3.6.9",
"@react-stately/form": "^3.0.6",
"@react-stately/toggle": "^3.7.8",
"@react-types/checkbox": "^3.8.4",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/collections": {
"version": "3.0.0-alpha.5",
"resolved": "https://registry.npmjs.org/@react-aria/collections/-/collections-3.0.0-alpha.5.tgz",
"integrity": "sha512-8m8yZe1c5PYCylEN4lcG3ZL/1nyrON95nVsoknC8shY1uKP01oJd7w+f6hvVza0tJRQuVe4zW3gO4FVjv33a5g==",
"dependencies": {
"@react-aria/ssr": "^3.9.6",
"@react-aria/utils": "^3.25.3",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0",
"use-sync-external-store": "^1.2.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/color": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@react-aria/color/-/color-3.0.0.tgz",
"integrity": "sha512-IwHI4e2fUHUOZHRrL2MsxGZFp/RCR2cLjm39gT41jVSuH4zjxueUf96NDm6c7FD0mB5vfk0jo+KJMnShL1a2rg==",
"dependencies": {
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/numberfield": "^3.11.7",
"@react-aria/slider": "^3.7.12",
"@react-aria/spinbutton": "^3.6.9",
"@react-aria/textfield": "^3.14.9",
"@react-aria/utils": "^3.25.3",
"@react-aria/visually-hidden": "^3.8.16",
"@react-stately/color": "^3.8.0",
"@react-stately/form": "^3.0.6",
"@react-types/color": "^3.0.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/combobox": {
"version": "3.10.4",
"resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.10.4.tgz",
"integrity": "sha512-jzLyRwpwH5SCfQl5giLSwLaw9EKlRiMG39kDZLRB4MQ1MN4sIdIP2TXBbdYcSLtYjduJm2JfRvs2ezI+QI+umA==",
"dependencies": {
"@react-aria/i18n": "^3.12.3",
"@react-aria/listbox": "^3.13.4",
"@react-aria/live-announcer": "^3.4.0",
"@react-aria/menu": "^3.15.4",
"@react-aria/overlays": "^3.23.3",
"@react-aria/selection": "^3.20.0",
"@react-aria/textfield": "^3.14.9",
"@react-aria/utils": "^3.25.3",
"@react-stately/collections": "^3.11.0",
"@react-stately/combobox": "^3.10.0",
"@react-stately/form": "^3.0.6",
"@react-types/button": "^3.10.0",
"@react-types/combobox": "^3.13.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/datepicker": {
"version": "3.11.3",
"resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.11.3.tgz",
"integrity": "sha512-HwGxDctFry5ew3Cu7gWpUVodaCg//V6NCihSRjLvnW/TWG+UFLzTafxTqqm8eRbicT3DJlXCLOUPk8Ek0txW6A==",
"dependencies": {
"@internationalized/date": "^3.5.6",
"@internationalized/number": "^3.5.4",
"@internationalized/string": "^3.2.4",
"@react-aria/focus": "^3.18.3",
"@react-aria/form": "^3.0.9",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/label": "^3.7.12",
"@react-aria/spinbutton": "^3.6.9",
"@react-aria/utils": "^3.25.3",
"@react-stately/datepicker": "^3.10.3",
"@react-stately/form": "^3.0.6",
"@react-types/button": "^3.10.0",
"@react-types/calendar": "^3.4.10",
"@react-types/datepicker": "^3.8.3",
"@react-types/dialog": "^3.5.13",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/dialog": {
"version": "3.5.18",
"resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.18.tgz",
"integrity": "sha512-j0x0OwDZKyW2GqBZl2Dw/pHl0uSCzhHOg5jNeulkZC8xQa8COuksQf5NFzPmgRPnzqpbgvSzCSs41ymS8spmFg==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/overlays": "^3.23.3",
"@react-aria/utils": "^3.25.3",
"@react-types/dialog": "^3.5.13",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/disclosure": {
"version": "3.0.0-alpha.0",
"resolved": "https://registry.npmjs.org/@react-aria/disclosure/-/disclosure-3.0.0-alpha.0.tgz",
"integrity": "sha512-/tleriRORdkRJf2JXjiRfhLfXA5WY0nPT3DoodZJgD5Fj/aCjrWXarVGUQuEk9vsH5pwinQiQB5So+cA+xF+UQ==",
"dependencies": {
"@react-aria/button": "^3.10.0",
"@react-aria/selection": "^3.20.0",
"@react-aria/ssr": "^3.9.6",
"@react-aria/utils": "^3.25.3",
"@react-stately/disclosure": "3.0.0-alpha.0",
"@react-stately/toggle": "^3.7.8",
"@react-stately/tree": "^3.8.5",
"@react-types/button": "^3.10.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/dnd": {
"version": "3.7.3",
"resolved": "https://registry.npmjs.org/@react-aria/dnd/-/dnd-3.7.3.tgz",
"integrity": "sha512-SF7v1AzpXr4CSf98pSzjcSBCaezpP6rsSnSJTz0j2jrYfdQhX0MPA2lyxS+kgU1AEzkK19THQeHuj8hxQc0bVw==",
"dependencies": {
"@internationalized/string": "^3.2.4",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/live-announcer": "^3.4.0",
"@react-aria/overlays": "^3.23.3",
"@react-aria/utils": "^3.25.3",
"@react-stately/dnd": "^3.4.3",
"@react-types/button": "^3.10.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/focus": {
"version": "3.18.3",
"resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.18.3.tgz",
"integrity": "sha512-WKUElg+5zS0D3xlVn8MntNnkzJql2J6MuzAMP8Sv5WTgFDse/XGR842dsxPTIyKKdrWVCRegCuwa4m3n/GzgJw==",
"dependencies": {
"@react-aria/interactions": "^3.22.3",
"@react-aria/utils": "^3.25.3",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0",
"clsx": "^2.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/form": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/@react-aria/form/-/form-3.0.9.tgz",
"integrity": "sha512-9M6IfC5t47G19c8roHWnkKd275BrECTzyTsc4rzf5OepJfHfG4evST6x+4gGOFYi8soC9XoQdJl4TRh/mft+gw==",
"dependencies": {
"@react-aria/interactions": "^3.22.3",
"@react-aria/utils": "^3.25.3",
"@react-stately/form": "^3.0.6",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/grid": {
"version": "3.10.4",
"resolved": "https://registry.npmjs.org/@react-aria/grid/-/grid-3.10.4.tgz",
"integrity": "sha512-3AjJ0hwRhOCIHThIZrGWrjAuKDpaZuBkODW3dvgLqtsNm3tL46DI6U9O3vfp8lNbrWMsXJgjRXwvXvdv0/gwCA==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/live-announcer": "^3.4.0",
"@react-aria/selection": "^3.20.0",
"@react-aria/utils": "^3.25.3",
"@react-stately/collections": "^3.11.0",
"@react-stately/grid": "^3.9.3",
"@react-stately/selection": "^3.17.0",
"@react-types/checkbox": "^3.8.4",
"@react-types/grid": "^3.2.9",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/gridlist": {
"version": "3.9.4",
"resolved": "https://registry.npmjs.org/@react-aria/gridlist/-/gridlist-3.9.4.tgz",
"integrity": "sha512-gGzS4ToSynn2KBycf9UCsWIJIbVl4RjoCjPF4NnukwzHmrXwbtZnlF0xsORQ5QxfqHH9UehTAHWFvOOHJSZZ2w==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/grid": "^3.10.4",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/selection": "^3.20.0",
"@react-aria/utils": "^3.25.3",
"@react-stately/collections": "^3.11.0",
"@react-stately/list": "^3.11.0",
"@react-stately/tree": "^3.8.5",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/i18n": {
"version": "3.12.3",
"resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.3.tgz",
"integrity": "sha512-0Tp/4JwnCVNKDfuknPF+/xf3/woOc8gUjTU2nCjO3mCVb4FU7KFtjxQ2rrx+6hpIVG6g+N9qfMjRa/ggVH0CJg==",
"dependencies": {
"@internationalized/date": "^3.5.6",
"@internationalized/message": "^3.1.5",
"@internationalized/number": "^3.5.4",
"@internationalized/string": "^3.2.4",
"@react-aria/ssr": "^3.9.6",
"@react-aria/utils": "^3.25.3",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/interactions": {
"version": "3.22.3",
"resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.22.3.tgz",
"integrity": "sha512-RRUb/aG+P0IKTIWikY/SylB6bIbLZeztnZY2vbe7RAG5MgVaCgn5HQ45SI15GlTmhsFG8CnF6slJsUFJiNHpbQ==",
"dependencies": {
"@react-aria/ssr": "^3.9.6",
"@react-aria/utils": "^3.25.3",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/label": {
"version": "3.7.12",
"resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.7.12.tgz",
"integrity": "sha512-u9xT90lAlgb7xiv+p0md9QwCHz65XL7tjS5e29e88Rs3ptkv3aQubTqxVOUTEwzbNUT4A1QqTjUm1yfHewIRUw==",
"dependencies": {
"@react-aria/utils": "^3.25.3",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/link": {
"version": "3.7.5",
"resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.7.5.tgz",
"integrity": "sha512-j0F1BIdNoE7Tl+0KzzjbrmYuxt4aWAmDZDHvJKiYg71Jb1BAPz71eE1O1ybMoO04+OG/6HrRZTragfSQLAJ58A==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/utils": "^3.25.3",
"@react-types/link": "^3.5.8",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/listbox": {
"version": "3.13.4",
"resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.13.4.tgz",
"integrity": "sha512-2aG4jzlB+srYBeM9ap/BNZe0E04yMjY2dPGXcigkaSJt6/yYAHCygXuouf2MzvBfkdV4QWyHIIgWZmAXXl6reg==",
"dependencies": {
"@react-aria/interactions": "^3.22.3",
"@react-aria/label": "^3.7.12",
"@react-aria/selection": "^3.20.0",
"@react-aria/utils": "^3.25.3",
"@react-stately/collections": "^3.11.0",
"@react-stately/list": "^3.11.0",
"@react-types/listbox": "^3.5.2",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/live-announcer": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.4.0.tgz",
"integrity": "sha512-VBxEdMq2SbtRbNTQNcDR2G6E3lEl5cJSBiHTTO8Ln1AL76LiazrylIXGgoktqzCfRQmyq0v8CHk1cNKDU9mvJg==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@react-aria/menu": {
"version": "3.15.4",
"resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.15.4.tgz",
"integrity": "sha512-4wfq8Lb7AltgSzBHdtypiPOnsRm8hHv7PUuHhlq/VT9yAkEFk4Flc7vKVF6VSFqrnCfyCf66B5aeapjNInAONg==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/overlays": "^3.23.3",
"@react-aria/selection": "^3.20.0",
"@react-aria/utils": "^3.25.3",
"@react-stately/collections": "^3.11.0",
"@react-stately/menu": "^3.8.3",
"@react-stately/tree": "^3.8.5",
"@react-types/button": "^3.10.0",
"@react-types/menu": "^3.9.12",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/meter": {
"version": "3.4.17",
"resolved": "https://registry.npmjs.org/@react-aria/meter/-/meter-3.4.17.tgz",
"integrity": "sha512-08wbQhfvVWzpWilhn/WD7cQ7TqafS/66umTk7+X6BW6TrS1//6loNNJV62IC3F7sskel4iEAtl2gW0WpW8zEdg==",
"dependencies": {
"@react-aria/progress": "^3.4.17",
"@react-types/meter": "^3.4.4",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/numberfield": {
"version": "3.11.7",
"resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.11.7.tgz",
"integrity": "sha512-9bqg4sKqc5XLppHzJFRhgtkoeMu0N6Zg0AuVSiE/3CxE5Ad+y8tKpFEx9zh4o5BItyOWy18w5ZXnKjJGjd7waQ==",
"dependencies": {
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/spinbutton": "^3.6.9",
"@react-aria/textfield": "^3.14.9",
"@react-aria/utils": "^3.25.3",
"@react-stately/form": "^3.0.6",
"@react-stately/numberfield": "^3.9.7",
"@react-types/button": "^3.10.0",
"@react-types/numberfield": "^3.8.6",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/overlays": {
"version": "3.23.3",
"resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.23.3.tgz",
"integrity": "sha512-vRW4DL466a27BBIP6dQqmmei4nX/nsur6DyF0Hmd46ygwOdvdA+5MwvXZUz9yUamB79UeS9BMQZuBVwhjoMwBQ==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/ssr": "^3.9.6",
"@react-aria/utils": "^3.25.3",
"@react-aria/visually-hidden": "^3.8.16",
"@react-stately/overlays": "^3.6.11",
"@react-types/button": "^3.10.0",
"@react-types/overlays": "^3.8.10",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/progress": {
"version": "3.4.17",
"resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.4.17.tgz",
"integrity": "sha512-5+01WNibLoNS5KcfU5p6vg7Lhz17plqqzv/uITx28zzj3saaj0VLR7n57Ig2fXe8ZEQoUS89BS3sIEsIf96S1A==",
"dependencies": {
"@react-aria/i18n": "^3.12.3",
"@react-aria/label": "^3.7.12",
"@react-aria/utils": "^3.25.3",
"@react-types/progress": "^3.5.7",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/radio": {
"version": "3.10.8",
"resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.10.8.tgz",
"integrity": "sha512-/vKQhKqpoCB/VqHuc46OOU+31HFtg6svcYzHBbz0wN/DSVCygYeTfB/36kY7x2GWWkT0pCsB4OcHJ+/0G3EfkQ==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/form": "^3.0.9",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/label": "^3.7.12",
"@react-aria/utils": "^3.25.3",
"@react-stately/radio": "^3.10.8",
"@react-types/radio": "^3.8.4",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/searchfield": {
"version": "3.7.9",
"resolved": "https://registry.npmjs.org/@react-aria/searchfield/-/searchfield-3.7.9.tgz",
"integrity": "sha512-EHODG7HDFthwG5tx4fh+WP2hjNOp/rPAqdNScKBAN73nEf0F/qQpIwmdZF0EycCOzGSM5hhihjm0yMtTFYuzOQ==",
"dependencies": {
"@react-aria/i18n": "^3.12.3",
"@react-aria/textfield": "^3.14.9",
"@react-aria/utils": "^3.25.3",
"@react-stately/searchfield": "^3.5.7",
"@react-types/button": "^3.10.0",
"@react-types/searchfield": "^3.5.9",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/select": {
"version": "3.14.10",
"resolved": "https://registry.npmjs.org/@react-aria/select/-/select-3.14.10.tgz",
"integrity": "sha512-xHkAJqvfKgnH5mVYwZj3ME7/Q3wUzgUZDK/iVuXUs3cAYap8ybM2d/2zOGcqv1keZHBUzwp9QtaN//FYK13jIA==",
"dependencies": {
"@react-aria/form": "^3.0.9",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/label": "^3.7.12",
"@react-aria/listbox": "^3.13.4",
"@react-aria/menu": "^3.15.4",
"@react-aria/selection": "^3.20.0",
"@react-aria/utils": "^3.25.3",
"@react-aria/visually-hidden": "^3.8.16",
"@react-stately/select": "^3.6.8",
"@react-types/button": "^3.10.0",
"@react-types/select": "^3.9.7",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/selection": {
"version": "3.20.0",
"resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.20.0.tgz",
"integrity": "sha512-h3giMcXo4SMZRL5HrqZvOLNTsdh5jCXwLUx0wpj/2EF0tcYQL6WDfn1iJ+rHARkUIs7X70fUV8iwlbUySZy1xg==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/utils": "^3.25.3",
"@react-stately/selection": "^3.17.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/separator": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/@react-aria/separator/-/separator-3.4.3.tgz",
"integrity": "sha512-L+eCmSGfRJ9jScHZqBkmOkp44LBARisDjRdYbGrLlsAEcOiHUXufnfpxz2rgkUGBdUgnI9hIk12q5kdy0UxGjg==",
"dependencies": {
"@react-aria/utils": "^3.25.3",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/slider": {
"version": "3.7.12",
"resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.7.12.tgz",
"integrity": "sha512-yZWBGxDHBL5Gjjdnz+igdO7VfYND9iZsSqynadZthWtfy1jA+qBR25I+Soc0D9gkr/2/JUJkFgkllYF1RzWMUQ==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/label": "^3.7.12",
"@react-aria/utils": "^3.25.3",
"@react-stately/slider": "^3.5.8",
"@react-types/shared": "^3.25.0",
"@react-types/slider": "^3.7.6",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/spinbutton": {
"version": "3.6.9",
"resolved": "https://registry.npmjs.org/@react-aria/spinbutton/-/spinbutton-3.6.9.tgz",
"integrity": "sha512-m+uVJdiIc2LrLVDGjU7p8P2O2gUvTN26GR+NgH4rl+tUSuAB0+T1rjls/C+oXEqQjCpQihEB9Bt4M+VHpzmyjA==",
"dependencies": {
"@react-aria/i18n": "^3.12.3",
"@react-aria/live-announcer": "^3.4.0",
"@react-aria/utils": "^3.25.3",
"@react-types/button": "^3.10.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/ssr": {
"version": "3.9.6",
"resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.6.tgz",
"integrity": "sha512-iLo82l82ilMiVGy342SELjshuWottlb5+VefO3jOQqQRNYnJBFpUSadswDPbRimSgJUZuFwIEYs6AabkP038fA==",
"dependencies": {
"@swc/helpers": "^0.5.0"
},
"engines": {
"node": ">= 12"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/switch": {
"version": "3.6.8",
"resolved": "https://registry.npmjs.org/@react-aria/switch/-/switch-3.6.8.tgz",
"integrity": "sha512-6Q0w7o+liB0ztKPL9UaRfX+hPPuy71AL3SuVCMK7RKfPqZwcmlwUDp2gr3j5fvs8gLev0r42XtEBqmGwkHTkEw==",
"dependencies": {
"@react-aria/toggle": "^3.10.8",
"@react-stately/toggle": "^3.7.8",
"@react-types/shared": "^3.25.0",
"@react-types/switch": "^3.5.6",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/table": {
"version": "3.15.4",
"resolved": "https://registry.npmjs.org/@react-aria/table/-/table-3.15.4.tgz",
"integrity": "sha512-t4+vtUF63i6OrXmZ0AA/RmWyIt8cieUm7cSXhQMooAgUjkvVqTNkQQRsntVOb+UNI5KmiGSe4jB3H4GVXz2X9w==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/grid": "^3.10.4",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/live-announcer": "^3.4.0",
"@react-aria/utils": "^3.25.3",
"@react-aria/visually-hidden": "^3.8.16",
"@react-stately/collections": "^3.11.0",
"@react-stately/flags": "^3.0.4",
"@react-stately/table": "^3.12.3",
"@react-types/checkbox": "^3.8.4",
"@react-types/grid": "^3.2.9",
"@react-types/shared": "^3.25.0",
"@react-types/table": "^3.10.2",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/tabs": {
"version": "3.9.6",
"resolved": "https://registry.npmjs.org/@react-aria/tabs/-/tabs-3.9.6.tgz",
"integrity": "sha512-iPQ2Im+srnSB06xIdVNHZZDJnZmUR0IG0MZAp6FXmbkCeLAd9tZQHgSFYwswBfgAStNnyFQHP5aSBJOJMRCACg==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/i18n": "^3.12.3",
"@react-aria/selection": "^3.20.0",
"@react-aria/utils": "^3.25.3",
"@react-stately/tabs": "^3.6.10",
"@react-types/shared": "^3.25.0",
"@react-types/tabs": "^3.3.10",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/tag": {
"version": "3.4.6",
"resolved": "https://registry.npmjs.org/@react-aria/tag/-/tag-3.4.6.tgz",
"integrity": "sha512-Uf1sPabwJx99diyXJTaVguiYozS49opjQxmK1PPbb87ipNN1YlSDVbP05IelVMbnbxXHudsRmzPOBmmblcj1GQ==",
"dependencies": {
"@react-aria/gridlist": "^3.9.4",
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/label": "^3.7.12",
"@react-aria/selection": "^3.20.0",
"@react-aria/utils": "^3.25.3",
"@react-stately/list": "^3.11.0",
"@react-types/button": "^3.10.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/textfield": {
"version": "3.14.9",
"resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.14.9.tgz",
"integrity": "sha512-LPwZhthDVLyvnzXWco4eyYCD2pFmQ4Vw9ha9tb3QkZUIP6j8E52y76j0c59Nq7XYus3IHatVe7yYQk7kbo8Zrg==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/form": "^3.0.9",
"@react-aria/label": "^3.7.12",
"@react-aria/utils": "^3.25.3",
"@react-stately/form": "^3.0.6",
"@react-stately/utils": "^3.10.4",
"@react-types/shared": "^3.25.0",
"@react-types/textfield": "^3.9.7",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/toggle": {
"version": "3.10.8",
"resolved": "https://registry.npmjs.org/@react-aria/toggle/-/toggle-3.10.8.tgz",
"integrity": "sha512-N6WTgE8ByMYY+ZygUUPGON2vW5NrxwU91H98+Nozl+Rq6ZYR2fD9i8oRtLtrYPxjU2HmaFwDyQdWvmMJZuDxig==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/utils": "^3.25.3",
"@react-stately/toggle": "^3.7.8",
"@react-types/checkbox": "^3.8.4",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/toolbar": {
"version": "3.0.0-beta.9",
"resolved": "https://registry.npmjs.org/@react-aria/toolbar/-/toolbar-3.0.0-beta.9.tgz",
"integrity": "sha512-P80zgbPb0aIg22fHlgHRXXUSpNSAOnh1ljsLiSHAGdXPrC5nRijYwwKi7DNRsXqD+ljEJwF6ekZPo95dXXeYAA==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/i18n": "^3.12.3",
"@react-aria/utils": "^3.25.3",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/tooltip": {
"version": "3.7.8",
"resolved": "https://registry.npmjs.org/@react-aria/tooltip/-/tooltip-3.7.8.tgz",
"integrity": "sha512-dlWfS3w8E6dw5Xoist4cVX2GQE5oh3VQr88dRyLto7BAPLFrp3I+8c9mZCVUobLS/f5QcQzLkqw750s4ENCyiw==",
"dependencies": {
"@react-aria/focus": "^3.18.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/utils": "^3.25.3",
"@react-stately/tooltip": "^3.4.13",
"@react-types/shared": "^3.25.0",
"@react-types/tooltip": "^3.4.12",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/tree": {
"version": "3.0.0-beta.0",
"resolved": "https://registry.npmjs.org/@react-aria/tree/-/tree-3.0.0-beta.0.tgz",
"integrity": "sha512-bF9sp7x+Ciy0N2KJwy8epmDoNblyVmeB4vR/KWLVIKMjANCpzTbvhWZUBpQxkpO0eupInU2uN+FMNr0WKMyd7Q==",
"dependencies": {
"@react-aria/gridlist": "^3.9.4",
"@react-aria/i18n": "^3.12.3",
"@react-aria/selection": "^3.20.0",
"@react-aria/utils": "^3.25.3",
"@react-stately/tree": "^3.8.5",
"@react-types/button": "^3.10.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/utils": {
"version": "3.25.3",
"resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.25.3.tgz",
"integrity": "sha512-PR5H/2vaD8fSq0H/UB9inNbc8KDcVmW6fYAfSWkkn+OAdhTTMVKqXXrZuZBWyFfSD5Ze7VN6acr4hrOQm2bmrA==",
"dependencies": {
"@react-aria/ssr": "^3.9.6",
"@react-stately/utils": "^3.10.4",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0",
"clsx": "^2.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/virtualizer": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/@react-aria/virtualizer/-/virtualizer-4.0.3.tgz",
"integrity": "sha512-neSf+EXtqmQiccHcp9CS2RbH3xA6FuZggLzGsM1NoqDdXIL7TLfc7lhaqi8VAZ03e1FCUSye08BCRk3DdpUiyA==",
"dependencies": {
"@react-aria/i18n": "^3.12.3",
"@react-aria/interactions": "^3.22.3",
"@react-aria/utils": "^3.25.3",
"@react-stately/virtualizer": "^4.1.0",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-aria/visually-hidden": {
"version": "3.8.16",
"resolved": "https://registry.npmjs.org/@react-aria/visually-hidden/-/visually-hidden-3.8.16.tgz",
"integrity": "sha512-3zThVIzEprez4A/GajOut6/JQ4WCu2ROHGZ1xH1+2GFjBJQaTfPBIjg6UIwaT7sgHRQIik8QidogLqXHbp81yA==",
"dependencies": {
"@react-aria/interactions": "^3.22.3",
"@react-aria/utils": "^3.25.3",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@react-stately/calendar": {
"version": "3.5.5",
"resolved": "https://registry.npmjs.org/@react-stately/calendar/-/calendar-3.5.5.tgz",
"integrity": "sha512-HzaiDRhrmaYIly8hRsjjIrydLkldiw1Ws6T/130NLQOt+VPwRW/x0R+nil42mA9LZ6oV0XN0NpmG5tn7TaKRGw==",
"dependencies": {
"@internationalized/date": "^3.5.6",
"@react-stately/utils": "^3.10.4",
"@react-types/calendar": "^3.4.10",
"@react-types/shared": "^3.25.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {