-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
9310 lines (8512 loc) · 336 KB
/
yarn.lock
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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@babel/runtime@npm:^7.20.13":
version: 7.26.0
resolution: "@babel/runtime@npm:7.26.0"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/12c01357e0345f89f4f7e8c0e81921f2a3e3e101f06e8eaa18a382b517376520cd2fa8c237726eb094dab25532855df28a7baaf1c26342b52782f6936b07c287
languageName: node
linkType: hard
"@corex/deepmerge@npm:^4.0.43":
version: 4.0.43
resolution: "@corex/deepmerge@npm:4.0.43"
checksum: 10c0/3dc31721d10c0552c667392e01a67034d9f39417d275fb2f986140592fbdb5cbcf5ac82b45bcbaf9747fd659017bc7857283019d11929e8b03e8966934ab34b9
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.2.0":
version: 1.3.1
resolution: "@emnapi/runtime@npm:1.3.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/060ffede50f1b619c15083312b80a9e62a5b0c87aa8c1b54854c49766c9d69f8d1d3d87bd963a647071263a320db41b25eaa50b74d6a80dcc763c23dbeaafd6c
languageName: node
linkType: hard
"@emotion/is-prop-valid@npm:1.2.2":
version: 1.2.2
resolution: "@emotion/is-prop-valid@npm:1.2.2"
dependencies:
"@emotion/memoize": "npm:^0.8.1"
checksum: 10c0/bb1530dcb4e0e5a4fabb219279f2d0bc35796baf66f6241f98b0d03db1985c890a8cafbea268e0edefd5eeda143dbd5c09a54b5fba74cee8c69b98b13194af50
languageName: node
linkType: hard
"@emotion/memoize@npm:^0.8.1":
version: 0.8.1
resolution: "@emotion/memoize@npm:0.8.1"
checksum: 10c0/dffed372fc3b9fa2ba411e76af22b6bb686fb0cb07694fdfaa6dd2baeb0d5e4968c1a7caa472bfcf06a5997d5e7c7d16b90e993f9a6ffae79a2c3dbdc76dfe78
languageName: node
linkType: hard
"@emotion/unitless@npm:0.8.1":
version: 0.8.1
resolution: "@emotion/unitless@npm:0.8.1"
checksum: 10c0/a1ed508628288f40bfe6dd17d431ed899c067a899fa293a13afe3aed1d70fac0412b8a215fafab0b42829360db687fecd763e5f01a64ddc4a4b58ec3112ff548
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.1
resolution: "@eslint-community/eslint-utils@npm:4.4.1"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.57.1":
version: 8.57.1
resolution: "@eslint/js@npm:8.57.1"
checksum: 10c0/b489c474a3b5b54381c62e82b3f7f65f4b8a5eaaed126546520bf2fede5532a8ed53212919fed1e9048dcf7f37167c8561d58d0ba4492a4244004e7793805223
languageName: node
linkType: hard
"@formatjs/ecma402-abstract@npm:2.2.1":
version: 2.2.1
resolution: "@formatjs/ecma402-abstract@npm:2.2.1"
dependencies:
"@formatjs/fast-memoize": "npm:2.2.2"
"@formatjs/intl-localematcher": "npm:0.5.6"
tslib: "npm:2"
checksum: 10c0/bb0b01282368d201d9bcfb3232963af90069f6048da5824d38a674118fd49a0cb92b05d19d2526fe6d035428b2e47e1abd671bb59a673317f1418e67974253fa
languageName: node
linkType: hard
"@formatjs/ecma402-abstract@npm:2.2.2":
version: 2.2.2
resolution: "@formatjs/ecma402-abstract@npm:2.2.2"
dependencies:
"@formatjs/fast-memoize": "npm:2.2.3"
"@formatjs/intl-localematcher": "npm:0.5.7"
tslib: "npm:2"
checksum: 10c0/dc712dd9959c9caa161282e3fb8f4a45c7368c4ada07576619d22b72678ece83459d6ec8b5ac3eee7def3b4398b68483c0ee91b49241024b41906333fd94ce21
languageName: node
linkType: hard
"@formatjs/fast-memoize@npm:2.2.2":
version: 2.2.2
resolution: "@formatjs/fast-memoize@npm:2.2.2"
dependencies:
tslib: "npm:2"
checksum: 10c0/cebbf632a6ed8798ed67dba59d05be8bbe81c9ada7bcbc8ce69798fbaa5e0117c35792f212097d28b8b06fb99cf73bdbc7754702c06cda34f847e5082814643b
languageName: node
linkType: hard
"@formatjs/fast-memoize@npm:2.2.3":
version: 2.2.3
resolution: "@formatjs/fast-memoize@npm:2.2.3"
dependencies:
tslib: "npm:2"
checksum: 10c0/f1004c3b280de7e362bd37c5f48ff34c2ba1d6271d4a7b695fed561d1201a3379397824d8bffbf15fecee344d1e70398393bbb04297f242692310a305f12e75b
languageName: node
linkType: hard
"@formatjs/icu-messageformat-parser@npm:2.9.1":
version: 2.9.1
resolution: "@formatjs/icu-messageformat-parser@npm:2.9.1"
dependencies:
"@formatjs/ecma402-abstract": "npm:2.2.1"
"@formatjs/icu-skeleton-parser": "npm:1.8.5"
tslib: "npm:2"
checksum: 10c0/53554edc7d41f6bd737dc3bb3e03dcd4b4081b4fc9a70383612b87993c1639747d1d3827d8ebb13f8bf3566c60442549a0a42df4959699eef76633d4c7b49b25
languageName: node
linkType: hard
"@formatjs/icu-messageformat-parser@npm:2.9.2":
version: 2.9.2
resolution: "@formatjs/icu-messageformat-parser@npm:2.9.2"
dependencies:
"@formatjs/ecma402-abstract": "npm:2.2.2"
"@formatjs/icu-skeleton-parser": "npm:1.8.6"
tslib: "npm:2"
checksum: 10c0/5f65377e56a2f0426240f05c015584b629713f0c9e1b7bc6db78c6d2e94b4d28bdd4c674ee32be695e493cd2f80a8168b7cd3c64a23ec36f9e18db2ae080e51b
languageName: node
linkType: hard
"@formatjs/icu-skeleton-parser@npm:1.8.5":
version: 1.8.5
resolution: "@formatjs/icu-skeleton-parser@npm:1.8.5"
dependencies:
"@formatjs/ecma402-abstract": "npm:2.2.1"
tslib: "npm:2"
checksum: 10c0/3e5ddd26e5dc983547320ca09b4a5daa692a00c15382e85474a9a539c223b581dba2290708d71aae12589c3ddd053b3bfd0dab0a07a11c44033fb313605566bc
languageName: node
linkType: hard
"@formatjs/icu-skeleton-parser@npm:1.8.6":
version: 1.8.6
resolution: "@formatjs/icu-skeleton-parser@npm:1.8.6"
dependencies:
"@formatjs/ecma402-abstract": "npm:2.2.2"
tslib: "npm:2"
checksum: 10c0/16993372de234aed52a75877247d911125e063aef77daf779e839a3c7a1213b37ffc8c95350375d303e43e30245711a0db693c4d856e6b0c2f3402644a8fb72d
languageName: node
linkType: hard
"@formatjs/intl-localematcher@npm:0.5.6":
version: 0.5.6
resolution: "@formatjs/intl-localematcher@npm:0.5.6"
dependencies:
tslib: "npm:2"
checksum: 10c0/39fc454641b7871f4b37416a01c7851624db6f1bf6cdcd5c854dfe06b95c0ca7540ec7c803a654140fc3f1c758596a684de8054bc95c4d6c7962091c251f5671
languageName: node
linkType: hard
"@formatjs/intl-localematcher@npm:0.5.7":
version: 0.5.7
resolution: "@formatjs/intl-localematcher@npm:0.5.7"
dependencies:
tslib: "npm:2"
checksum: 10c0/1ae374ca146a0d7457794926eed808c99971628e594f704a42ae2540b1f38928b26cbf942a7bbcc2796cc9fe8d9d7a603ac422bd9b89b714d2f91b506da40792
languageName: node
linkType: hard
"@heroui/accordion@npm:2.2.8":
version: 2.2.8
resolution: "@heroui/accordion@npm:2.2.8"
dependencies:
"@heroui/aria-utils": "npm:2.2.8"
"@heroui/divider": "npm:2.2.6"
"@heroui/dom-animation": "npm:2.1.2"
"@heroui/framer-utils": "npm:2.1.7"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-aria-accordion": "npm:2.2.3"
"@react-aria/button": "npm:3.11.0"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/tree": "npm:3.8.6"
"@react-types/accordion": "npm:3.0.0-alpha.25"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/504fa199aa00fc68d0a310c3d9835695a205811575dd2b34bd30dcabd2d77915a44df6b38105699936d8df93b4b947cf08141a17f7eb5ab97bec2b1dbafb0409
languageName: node
linkType: hard
"@heroui/alert@npm:2.2.10":
version: 2.2.10
resolution: "@heroui/alert@npm:2.2.10"
dependencies:
"@heroui/button": "npm:2.2.10"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/utils": "npm:3.10.5"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/1b309ca323129121be9ebac35b90ca17b104bd694d56433d4e5fbb560dd2f5aea9475b39a4ea4eb846ec3128e9ebcca5e02dfe32468086ae7a0defdf03113e61
languageName: node
linkType: hard
"@heroui/aria-utils@npm:2.2.8":
version: 2.2.8
resolution: "@heroui/aria-utils@npm:2.2.8"
dependencies:
"@heroui/react-rsc-utils": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/system": "npm:2.4.7"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/collections": "npm:3.12.0"
"@react-stately/overlays": "npm:3.6.12"
"@react-types/overlays": "npm:3.8.11"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/7032987eaf99a7e21b2c13de01d9e6710d889b99def75d2d695ee670183ffa03c7b199b55cab766a623447ce5d20f3b70fdf3c852163f4c3433bc9e8059fb2b5
languageName: node
linkType: hard
"@heroui/autocomplete@npm:2.3.11":
version: 2.3.11
resolution: "@heroui/autocomplete@npm:2.3.11"
dependencies:
"@heroui/aria-utils": "npm:2.2.8"
"@heroui/button": "npm:2.2.10"
"@heroui/form": "npm:2.1.9"
"@heroui/input": "npm:2.4.10"
"@heroui/listbox": "npm:2.3.10"
"@heroui/popover": "npm:2.3.10"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/scroll-shadow": "npm:2.3.6"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/spinner": "npm:2.2.7"
"@heroui/use-aria-button": "npm:2.2.5"
"@heroui/use-safe-layout-effect": "npm:2.1.2"
"@react-aria/combobox": "npm:3.11.0"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/i18n": "npm:3.12.4"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/utils": "npm:3.26.0"
"@react-aria/visually-hidden": "npm:3.8.18"
"@react-stately/combobox": "npm:3.10.1"
"@react-types/combobox": "npm:3.13.1"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/709b6aff886a84bcaaefac953c093386dbf7bf97f3943c0c25215fc2201b9dd08ccb215d26d91a7aa41f87ecd9d3accb72b1a945fef39ad83df30134bdf2ddcb
languageName: node
linkType: hard
"@heroui/avatar@npm:2.2.7":
version: 2.2.7
resolution: "@heroui/avatar@npm:2.2.7"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-image": "npm:2.1.3"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/utils": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/443763e653c6cac33e99c249f814e539da5e190f7f8e3b335fccce668f482d49ce739a8ebde3d6ff25c5ed06e90772014bc0ba1cf4335bd8c2a4ed9a492f90da
languageName: node
linkType: hard
"@heroui/badge@npm:2.2.6":
version: 2.2.6
resolution: "@heroui/badge@npm:2.2.6"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/607eefbed76a3c72d6d347efab19d8e8559631cb2d664b70129495e2e182dcc9ab916a25fc939a040c6e0c8920c2cd41fb12aa589e8a0ffe1549a71ee44c1bfe
languageName: node
linkType: hard
"@heroui/breadcrumbs@npm:2.2.7":
version: 2.2.7
resolution: "@heroui/breadcrumbs@npm:2.2.7"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@react-aria/breadcrumbs": "npm:3.5.19"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/utils": "npm:3.26.0"
"@react-types/breadcrumbs": "npm:3.7.9"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/e14d098f5df1f60577e04a0ed9788066234761b75a02910d885fd70c6f7ada6c9a5cb7e501c7c7353541f5b11e4e9a64ffdbdfb0723f9924e61daa80758728b9
languageName: node
linkType: hard
"@heroui/button@npm:2.2.10":
version: 2.2.10
resolution: "@heroui/button@npm:2.2.10"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/ripple": "npm:2.2.8"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/spinner": "npm:2.2.7"
"@heroui/use-aria-button": "npm:2.2.5"
"@react-aria/button": "npm:3.11.0"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/utils": "npm:3.26.0"
"@react-types/button": "npm:3.10.1"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/86dc8c5481bce983e61f0e0e0131de7f9dc53c8f18df073ee76beba3372adb732df948981d965d40fe81142175bddd5711306774bb5991733247130e3815870e
languageName: node
linkType: hard
"@heroui/calendar@npm:2.2.10":
version: 2.2.10
resolution: "@heroui/calendar@npm:2.2.10"
dependencies:
"@heroui/button": "npm:2.2.10"
"@heroui/dom-animation": "npm:2.1.2"
"@heroui/framer-utils": "npm:2.1.7"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-aria-button": "npm:2.2.5"
"@internationalized/date": "npm:3.6.0"
"@react-aria/calendar": "npm:3.6.0"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/i18n": "npm:3.12.4"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/utils": "npm:3.26.0"
"@react-aria/visually-hidden": "npm:3.8.18"
"@react-stately/calendar": "npm:3.6.0"
"@react-stately/utils": "npm:3.10.5"
"@react-types/button": "npm:3.10.1"
"@react-types/calendar": "npm:3.5.0"
"@react-types/shared": "npm:3.26.0"
"@types/lodash.debounce": "npm:^4.0.7"
scroll-into-view-if-needed: "npm:3.0.10"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/0778e5eafa988395add2db9192009a6f090331d9d656617e14b90cdd2eaf99a68cdfc8b2fe898586f455c8229c4d16cdcc82851f1020a372e94e1580b65cc3bd
languageName: node
linkType: hard
"@heroui/card@npm:2.2.10":
version: 2.2.10
resolution: "@heroui/card@npm:2.2.10"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/ripple": "npm:2.2.8"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-aria-button": "npm:2.2.5"
"@react-aria/button": "npm:3.11.0"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/utils": "npm:3.26.0"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/02e1d78cc50e576c986264211e92c04e5de84b95e9269af49affce1a9215d8a8d97e248d7b931306c9463c93952f84d37eb41386bf01d90bda3d5cc6f147640b
languageName: node
linkType: hard
"@heroui/checkbox@npm:2.3.9":
version: 2.3.9
resolution: "@heroui/checkbox@npm:2.3.9"
dependencies:
"@heroui/form": "npm:2.1.9"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-callback-ref": "npm:2.1.2"
"@heroui/use-safe-layout-effect": "npm:2.1.2"
"@react-aria/checkbox": "npm:3.15.0"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/utils": "npm:3.26.0"
"@react-aria/visually-hidden": "npm:3.8.18"
"@react-stately/checkbox": "npm:3.6.10"
"@react-stately/toggle": "npm:3.8.0"
"@react-types/checkbox": "npm:3.9.0"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.3"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/50cb9dc9aa472f9d85e83f338dc031ed563af6da8bba65a599df5093a9d6bd6f64736ba960df1879d365b0fe2ef825106812f3215d60d6e051c137744a824f69
languageName: node
linkType: hard
"@heroui/chip@npm:2.2.7":
version: 2.2.7
resolution: "@heroui/chip@npm:2.2.7"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/utils": "npm:3.26.0"
"@react-types/checkbox": "npm:3.9.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/f3b5785132160b18210f1b8c02907d9d5c4f4929abf4fbf97da957f61c666c5a4aea4fd094b809d0bb2c86ff0d281c97a7039bd2ea18a70c8bb5bde0a5107b1b
languageName: node
linkType: hard
"@heroui/code@npm:2.2.7":
version: 2.2.7
resolution: "@heroui/code@npm:2.2.7"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/system-rsc": "npm:2.3.6"
peerDependencies:
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/c99ccaa391cde9cd2577d25809c75cfaf8c2b981605e300600510313a1123736812cc614fd15a0b2ffffbdfd9387abaefd1e78fb74ad9315c31a05cbfcd1db18
languageName: node
linkType: hard
"@heroui/date-input@npm:2.3.9":
version: 2.3.9
resolution: "@heroui/date-input@npm:2.3.9"
dependencies:
"@heroui/form": "npm:2.1.9"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@internationalized/date": "npm:3.6.0"
"@react-aria/datepicker": "npm:3.12.0"
"@react-aria/i18n": "npm:3.12.4"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/datepicker": "npm:3.11.0"
"@react-types/datepicker": "npm:3.9.0"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/701525c48d70a1389588168b910091054799d4164e5fdaa49b1039a975b526ad35ee072f353a579a053a8beaad41a9e421de848ff75246c9b69ad6b56aa1b043
languageName: node
linkType: hard
"@heroui/date-picker@npm:2.3.10":
version: 2.3.10
resolution: "@heroui/date-picker@npm:2.3.10"
dependencies:
"@heroui/aria-utils": "npm:2.2.8"
"@heroui/button": "npm:2.2.10"
"@heroui/calendar": "npm:2.2.10"
"@heroui/date-input": "npm:2.3.9"
"@heroui/form": "npm:2.1.9"
"@heroui/popover": "npm:2.3.10"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@internationalized/date": "npm:3.6.0"
"@react-aria/datepicker": "npm:3.12.0"
"@react-aria/i18n": "npm:3.12.4"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/datepicker": "npm:3.11.0"
"@react-stately/overlays": "npm:3.6.12"
"@react-stately/utils": "npm:3.10.5"
"@react-types/datepicker": "npm:3.9.0"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/f54cf4b498f400be7ac9df5253fd0800326d0627f74e217bc11df3a1b0f9ac701941222da233945c71d646340e27b09dea3bbd10572086d47d7ee1fa30b97d91
languageName: node
linkType: hard
"@heroui/divider@npm:2.2.6":
version: 2.2.6
resolution: "@heroui/divider@npm:2.2.6"
dependencies:
"@heroui/react-rsc-utils": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/system-rsc": "npm:2.3.6"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/baedad297b6098e462617acb8496e20da188ec6ee93a666d94459e1aeee87970f48e2cb6eb15536256f7da86e3344b0da2881a18286a732b60a0a24d3c67765d
languageName: node
linkType: hard
"@heroui/dom-animation@npm:2.1.2":
version: 2.1.2
resolution: "@heroui/dom-animation@npm:2.1.2"
peerDependencies:
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
checksum: 10c0/556fb0888e092554b5a1003d38a99179f866be024c2484fc1dcdb1552f30bdd8a2646452f3fb38028a676b740140118b2148d001d75d189250bdd2815751242a
languageName: node
linkType: hard
"@heroui/drawer@npm:2.2.8":
version: 2.2.8
resolution: "@heroui/drawer@npm:2.2.8"
dependencies:
"@heroui/framer-utils": "npm:2.1.7"
"@heroui/modal": "npm:2.2.8"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/88d1c1746c950be4275afe434224b848593965c1bd8f5682771dc2e3426a06e3e9c3a5f07ac8dbcf2b74fb7d5dab03bc2237313f9f1a327fd853ec49d4512699
languageName: node
linkType: hard
"@heroui/dropdown@npm:2.3.10":
version: 2.3.10
resolution: "@heroui/dropdown@npm:2.3.10"
dependencies:
"@heroui/aria-utils": "npm:2.2.8"
"@heroui/menu": "npm:2.2.10"
"@heroui/popover": "npm:2.3.10"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/menu": "npm:3.16.0"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/menu": "npm:3.9.0"
"@react-types/menu": "npm:3.9.13"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/1709241d8769e4a6e556369b93ecff0ae0f7fd57497d8641f88bd45ec298d2de3b586f6777e2db7694a8bf47d869dcbe15345826d5ed70d3a5e15c0cc8670aa0
languageName: node
linkType: hard
"@heroui/form@npm:2.1.9":
version: 2.1.9
resolution: "@heroui/form@npm:2.1.9"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/system": "npm:2.4.7"
"@heroui/theme": "npm:2.4.6"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/form": "npm:3.1.0"
"@react-types/form": "npm:3.7.8"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18"
react-dom: ">=18"
checksum: 10c0/a928c62557cc511eaf80c7794202d279aa9bd0461fb8d1634c9fd53002ec13344724ac1fccc2ca974bbb2f51cd5f31b74e8183d003d426cacb8e21092404dc03
languageName: node
linkType: hard
"@heroui/framer-utils@npm:2.1.7":
version: 2.1.7
resolution: "@heroui/framer-utils@npm:2.1.7"
dependencies:
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/system": "npm:2.4.7"
"@heroui/use-measure": "npm:2.1.2"
peerDependencies:
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/6b0820f3ac105f17e1cc78d1aad00a6979943287878da6f3b7f12ce4a744be6ff5ccaac58ecf3a251dfb782a977150453a356e5b813a5ccdc8d538a33ad6431a
languageName: node
linkType: hard
"@heroui/image@npm:2.2.6":
version: 2.2.6
resolution: "@heroui/image@npm:2.2.6"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-image": "npm:2.1.3"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/79caf2e1cddde8b3d050b16bcbfd21169d3b77c46ae76ef267d5ee60b184465aefb49db479f7d7fbf7d691694cebef0e7f8e841d2a38253540c5cf5f8a11abce
languageName: node
linkType: hard
"@heroui/input-otp@npm:2.1.9":
version: 2.1.9
resolution: "@heroui/input-otp@npm:2.1.9"
dependencies:
"@heroui/form": "npm:2.1.9"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/form": "npm:3.0.11"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/form": "npm:3.1.0"
"@react-stately/utils": "npm:3.10.5"
"@react-types/textfield": "npm:3.10.0"
input-otp: "npm:1.4.1"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18"
react-dom: ">=18"
checksum: 10c0/518919b50f751a8ab1f5446c4aa9ca73799741a04526bd93de85c2eb4edb08d21dd21ba9a345f59c7652bbc54cf612cfa81deaf990b7a9d8d3d2a942dcfa7b11
languageName: node
linkType: hard
"@heroui/input@npm:2.4.10":
version: 2.4.10
resolution: "@heroui/input@npm:2.4.10"
dependencies:
"@heroui/form": "npm:2.1.9"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-safe-layout-effect": "npm:2.1.2"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/textfield": "npm:3.15.0"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/utils": "npm:3.10.5"
"@react-types/shared": "npm:3.26.0"
"@react-types/textfield": "npm:3.10.0"
react-textarea-autosize: "npm:^8.5.3"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/bc85a193e90d998ecdd538fb438c0f1710965a80e73ce156c460a6039d6f46af658fd65a8b2c37564c7c4c6940bf5d8f4a54007cc4a0db848f77eee4bea23dd0
languageName: node
linkType: hard
"@heroui/kbd@npm:2.2.7":
version: 2.2.7
resolution: "@heroui/kbd@npm:2.2.7"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/system-rsc": "npm:2.3.6"
"@react-aria/utils": "npm:3.26.0"
peerDependencies:
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/258e5b0d27c782de260eed182cd573672e16826c562b0c981493e100c0e497f79ff3514fdc02866a172fd16fcfd9da893e71f2f88ac82594f82c91f856d19a59
languageName: node
linkType: hard
"@heroui/link@npm:2.2.8":
version: 2.2.8
resolution: "@heroui/link@npm:2.2.8"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-aria-link": "npm:2.2.6"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/link": "npm:3.7.7"
"@react-aria/utils": "npm:3.26.0"
"@react-types/link": "npm:3.5.9"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/59268bc218bd0e9f246b961569777c940d3746c2dd8a464d3d55dda9897fb45e416d5cd74ee9e024a800bd4d3bf0914a6356aba36da47c9a041d094d11f07f56
languageName: node
linkType: hard
"@heroui/listbox@npm:2.3.10":
version: 2.3.10
resolution: "@heroui/listbox@npm:2.3.10"
dependencies:
"@heroui/aria-utils": "npm:2.2.8"
"@heroui/divider": "npm:2.2.6"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-is-mobile": "npm:2.2.3"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/listbox": "npm:3.13.6"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/list": "npm:3.11.1"
"@react-types/menu": "npm:3.9.13"
"@react-types/shared": "npm:3.26.0"
"@tanstack/react-virtual": "npm:3.11.2"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/66fbab95435d0b94db1d0fe7c5e60c280c7945dacb5c7a65b904343450330270ea80a0528c721fa441365e8c78ecdfbc8bb0e47f7e66fed44515fcddec78e365
languageName: node
linkType: hard
"@heroui/menu@npm:2.2.10":
version: 2.2.10
resolution: "@heroui/menu@npm:2.2.10"
dependencies:
"@heroui/aria-utils": "npm:2.2.8"
"@heroui/divider": "npm:2.2.6"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-is-mobile": "npm:2.2.3"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/menu": "npm:3.16.0"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/menu": "npm:3.9.0"
"@react-stately/tree": "npm:3.8.6"
"@react-types/menu": "npm:3.9.13"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/b2e6378bac8b39c250647eb1eb17cc06f7bed38fddb22795f39ed5774c09a92f2160a54ebfe865e49d5439607e53d4358ecdf8c7e2d59caf3ded68e54a91d8bd
languageName: node
linkType: hard
"@heroui/modal@npm:2.2.8":
version: 2.2.8
resolution: "@heroui/modal@npm:2.2.8"
dependencies:
"@heroui/dom-animation": "npm:2.1.2"
"@heroui/framer-utils": "npm:2.1.7"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-aria-button": "npm:2.2.5"
"@heroui/use-aria-modal-overlay": "npm:2.2.4"
"@heroui/use-disclosure": "npm:2.2.3"
"@heroui/use-draggable": "npm:2.1.3"
"@react-aria/dialog": "npm:3.5.20"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/overlays": "npm:3.24.0"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/overlays": "npm:3.6.12"
"@react-types/overlays": "npm:3.8.11"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/d52fddcc8228121ab731f598a33c72e7b21d858f47787be65b1ae03173dcbeeff2d171b1b78dad68e33e51db1d84318062b5ad1a49306629516477b0f0dea1e0
languageName: node
linkType: hard
"@heroui/navbar@npm:2.2.9":
version: 2.2.9
resolution: "@heroui/navbar@npm:2.2.9"
dependencies:
"@heroui/dom-animation": "npm:2.1.2"
"@heroui/framer-utils": "npm:2.1.7"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-scroll-position": "npm:2.1.2"
"@react-aria/button": "npm:3.11.0"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/overlays": "npm:3.24.0"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/toggle": "npm:3.8.0"
"@react-stately/utils": "npm:3.10.5"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/387380b32ce58ae9fe8063b5465f909b71ccdbcf34ea02070b1af9eeebb9a99164e3643d134a9e4211e15498cebbb0e6d1a778c006c386e31fdd953cd6f9ca17
languageName: node
linkType: hard
"@heroui/pagination@npm:2.2.9":
version: 2.2.9
resolution: "@heroui/pagination@npm:2.2.9"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-icons": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-intersection-observer": "npm:2.2.3"
"@heroui/use-pagination": "npm:2.2.4"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/i18n": "npm:3.12.4"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/utils": "npm:3.26.0"
scroll-into-view-if-needed: "npm:3.0.10"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/6d7be7818f77dec1fa7bfe165f184d6f7571c98332322e5aabb8de04ac0314c170e18f91195f78ef7529814cc43f959055dee088604ee4f599ec95c6beb4e28c
languageName: node
linkType: hard
"@heroui/popover@npm:2.3.10":
version: 2.3.10
resolution: "@heroui/popover@npm:2.3.10"
dependencies:
"@heroui/aria-utils": "npm:2.2.8"
"@heroui/button": "npm:2.2.10"
"@heroui/dom-animation": "npm:2.1.2"
"@heroui/framer-utils": "npm:2.1.7"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-aria-button": "npm:2.2.5"
"@heroui/use-safe-layout-effect": "npm:2.1.2"
"@react-aria/dialog": "npm:3.5.20"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/overlays": "npm:3.24.0"
"@react-aria/utils": "npm:3.26.0"
"@react-stately/overlays": "npm:3.6.12"
"@react-types/button": "npm:3.10.1"
"@react-types/overlays": "npm:3.8.11"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
framer-motion: ">=11.5.6 || >=12.0.0-alpha.1"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/ad4a72dd9388112eef085d13cea03f829550abf2f9c86a6f58d52a92e813c7e3594584f2dbce1b74174db2b366fef239f8d3950d7c26864a2752ad74468cac14
languageName: node
linkType: hard
"@heroui/progress@npm:2.2.7":
version: 2.2.7
resolution: "@heroui/progress@npm:2.2.7"
dependencies:
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@heroui/use-is-mounted": "npm:2.1.2"
"@react-aria/i18n": "npm:3.12.4"
"@react-aria/progress": "npm:3.4.18"
"@react-aria/utils": "npm:3.26.0"
"@react-types/progress": "npm:3.5.8"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.0"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/1d3ec0bd3fb3f2df5adcd4ba6edd1d1b576fac7ce531e136bcb4ff63e230bf4d8a5c6827b0cc8dbd2649ce2a55c8ab9582e1c80d6ad0a7de76da57b54e2f930b
languageName: node
linkType: hard
"@heroui/radio@npm:2.3.9":
version: 2.3.9
resolution: "@heroui/radio@npm:2.3.9"
dependencies:
"@heroui/form": "npm:2.1.9"
"@heroui/react-utils": "npm:2.1.4"
"@heroui/shared-utils": "npm:2.1.3"
"@react-aria/focus": "npm:3.19.0"
"@react-aria/interactions": "npm:3.22.5"
"@react-aria/radio": "npm:3.10.10"
"@react-aria/utils": "npm:3.26.0"
"@react-aria/visually-hidden": "npm:3.8.18"
"@react-stately/radio": "npm:3.10.9"
"@react-types/radio": "npm:3.8.5"
"@react-types/shared": "npm:3.26.0"
peerDependencies:
"@heroui/system": ">=2.4.0"
"@heroui/theme": ">=2.4.3"
react: ">=18 || >=19.0.0-rc.0"
react-dom: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/606af5263ac964f0a7c96290c6459db26a0cc0101daedc19cf3f26fb0ebebb3ec5ca2c9f100c0248a1c081d78ee67437c181622640c30bcf91016e228f9552ce
languageName: node
linkType: hard
"@heroui/react-rsc-utils@npm:2.1.2":
version: 2.1.2
resolution: "@heroui/react-rsc-utils@npm:2.1.2"
peerDependencies:
react: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/f5339f2cd8a2a0b08d36f28cfeb6b17cf2033b646c508060681c2d3a295ae7ddccb9a3674f197727069a3463988d740a9f6870d55b905ac1f9e967f37886d083
languageName: node
linkType: hard
"@heroui/react-utils@npm:2.1.4":
version: 2.1.4
resolution: "@heroui/react-utils@npm:2.1.4"
dependencies:
"@heroui/react-rsc-utils": "npm:2.1.2"
"@heroui/shared-utils": "npm:2.1.3"
peerDependencies:
react: ">=18 || >=19.0.0-rc.0"
checksum: 10c0/9471a99405d540ef137b567f90b3054ff2a84052532323eca0f234100de7e4f3cd90a70fc198bcc8205774d925c836651a2bca5ee9998bc889cc279ec904e528
languageName: node
linkType: hard
"@heroui/react@npm:^2.6.14":
version: 2.6.14
resolution: "@heroui/react@npm:2.6.14"
dependencies:
"@heroui/accordion": "npm:2.2.8"
"@heroui/alert": "npm:2.2.10"
"@heroui/autocomplete": "npm:2.3.11"
"@heroui/avatar": "npm:2.2.7"