-
Notifications
You must be signed in to change notification settings - Fork 0
/
pnpm-lock.yaml
4740 lines (4220 loc) · 171 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: '6.0'
dependencies:
'@nextui-org/button':
specifier: 2.0.37
version: 2.0.37(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/card':
specifier: ^2.0.33
version: 2.0.33(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/code':
specifier: 2.0.32
version: 2.0.32(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/divider':
specifier: ^2.0.31
version: 2.0.31(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/image':
specifier: ^2.0.31
version: 2.0.31(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/input':
specifier: 2.2.4
version: 2.2.4(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/kbd':
specifier: 2.0.33
version: 2.0.33(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/link':
specifier: 2.0.34
version: 2.0.34(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/navbar':
specifier: 2.0.36
version: 2.0.36(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(@types/react@18.3.3)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/select':
specifier: ^2.2.5
version: 2.2.5(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(@types/react@18.3.3)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/snippet':
specifier: 2.0.41
version: 2.0.41(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/switch':
specifier: 2.0.33
version: 2.0.33(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/system':
specifier: 2.2.5
version: 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme':
specifier: 2.2.9
version: 2.2.9(tailwindcss@3.4.7)
'@react-aria/ssr':
specifier: ^3.9.5
version: 3.9.5(react@18.3.1)
'@react-aria/visually-hidden':
specifier: ^3.8.14
version: 3.8.14(react@18.3.1)
'@types/node':
specifier: 22.1.0
version: 22.1.0
'@types/react':
specifier: 18.3.3
version: 18.3.3
'@types/react-dom':
specifier: 18.3.0
version: 18.3.0
'@vercel/analytics':
specifier: ^1.3.1
version: 1.3.1(next@14.2.5)(react@18.3.1)
'@vercel/speed-insights':
specifier: ^1.0.12
version: 1.0.12(next@14.2.5)(react@18.3.1)
autoprefixer:
specifier: 10.4.20
version: 10.4.20(postcss@8.4.40)
cheerio:
specifier: 1.0.0-rc.12
version: 1.0.0-rc.12
clsx:
specifier: ^2.1.1
version: 2.1.1
date-fns:
specifier: ^3.6.0
version: 3.6.0
eslint:
specifier: 9.8.0
version: 9.8.0
eslint-config-next:
specifier: 14.2.5
version: 14.2.5(eslint@9.8.0)(typescript@5.5.4)
formik:
specifier: ^2.4.6
version: 2.4.6(react@18.3.1)
framer-motion:
specifier: ^11.3.21
version: 11.3.21(react-dom@18.3.1)(react@18.3.1)
intl-messageformat:
specifier: ^10.5.14
version: 10.5.14
next:
specifier: 14.2.5
version: 14.2.5(react-dom@18.3.1)(react@18.3.1)
next-themes:
specifier: ^0.3.0
version: 0.3.0(react-dom@18.3.1)(react@18.3.1)
postcss:
specifier: 8.4.40
version: 8.4.40
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
tailwind-variants:
specifier: ^0.2.1
version: 0.2.1(tailwindcss@3.4.7)
tailwindcss:
specifier: 3.4.7
version: 3.4.7
typescript:
specifier: 5.5.4
version: 5.5.4
usehooks-ts:
specifier: ^3.1.0
version: 3.1.0(react@18.3.1)
yup:
specifier: ^1.4.0
version: 1.4.0
packages:
/@aashutoshrathi/word-wrap@1.2.6:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
dev: false
/@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
dev: false
/@babel/runtime@7.24.0:
resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
dev: false
/@eslint-community/eslint-utils@4.4.0(eslint@9.8.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: 9.8.0
eslint-visitor-keys: 3.4.3
dev: false
/@eslint-community/regexpp@4.11.0:
resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: false
/@eslint/config-array@0.17.1:
resolution: {integrity: sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dependencies:
'@eslint/object-schema': 2.1.4
debug: 4.3.4
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
dev: false
/@eslint/eslintrc@3.1.0:
resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
espree: 10.1.0
globals: 14.0.0
ignore: 5.3.1
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
dev: false
/@eslint/js@9.8.0:
resolution: {integrity: sha512-MfluB7EUfxXtv3i/++oh89uzAr4PDI4nn201hsp+qaXqsjAWzinlZEHEfPgAX4doIlKvPG/i0A9dpKxOLII8yA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dev: false
/@eslint/object-schema@2.1.4:
resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dev: false
/@formatjs/ecma402-abstract@2.0.0:
resolution: {integrity: sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g==}
dependencies:
'@formatjs/intl-localematcher': 0.5.4
tslib: 2.6.2
dev: false
/@formatjs/fast-memoize@2.2.0:
resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==}
dependencies:
tslib: 2.6.2
dev: false
/@formatjs/icu-messageformat-parser@2.7.8:
resolution: {integrity: sha512-nBZJYmhpcSX0WeJ5SDYUkZ42AgR3xiyhNCsQweFx3cz/ULJjym8bHAzWKvG5e2+1XO98dBYC0fWeeAECAVSwLA==}
dependencies:
'@formatjs/ecma402-abstract': 2.0.0
'@formatjs/icu-skeleton-parser': 1.8.2
tslib: 2.6.2
dev: false
/@formatjs/icu-skeleton-parser@1.8.2:
resolution: {integrity: sha512-k4ERKgw7aKGWJZgTarIcNEmvyTVD9FYh0mTrrBMHZ1b8hUu6iOJ4SzsZlo3UNAvHYa+PnvntIwRPt1/vy4nA9Q==}
dependencies:
'@formatjs/ecma402-abstract': 2.0.0
tslib: 2.6.2
dev: false
/@formatjs/intl-localematcher@0.5.4:
resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==}
dependencies:
tslib: 2.6.2
dev: false
/@humanwhocodes/module-importer@1.0.1:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
dev: false
/@humanwhocodes/retry@0.3.0:
resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
engines: {node: '>=18.18'}
dev: false
/@internationalized/date@3.5.5:
resolution: {integrity: sha512-H+CfYvOZ0LTJeeLOqm19E3uj/4YjrmOFtBufDHPfvtI80hFAMqtrp7oCACpe4Cil5l8S0Qu/9dYfZc/5lY8WQQ==}
dependencies:
'@swc/helpers': 0.5.6
dev: false
/@internationalized/message@3.1.4:
resolution: {integrity: sha512-Dygi9hH1s7V9nha07pggCkvmRfDd3q2lWnMGvrJyrOwYMe1yj4D2T9BoH9I6MGR7xz0biQrtLPsqUkqXzIrBOw==}
dependencies:
'@swc/helpers': 0.5.6
intl-messageformat: 10.5.14
dev: false
/@internationalized/number@3.5.3:
resolution: {integrity: sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==}
dependencies:
'@swc/helpers': 0.5.6
dev: false
/@internationalized/string@3.2.3:
resolution: {integrity: sha512-9kpfLoA8HegiWTeCbR2livhdVeKobCnVv8tlJ6M2jF+4tcMqDo94ezwlnrUANBWPgd8U7OXIHCk2Ov2qhk4KXw==}
dependencies:
'@swc/helpers': 0.5.6
dev: false
/@isaacs/cliui@8.0.2:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
dependencies:
string-width: 5.1.2
string-width-cjs: /string-width@4.2.3
strip-ansi: 7.1.0
strip-ansi-cjs: /strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: /wrap-ansi@7.0.0
dev: false
/@jridgewell/gen-mapping@0.3.5:
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.25
dev: false
/@jridgewell/resolve-uri@3.1.2:
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
dev: false
/@jridgewell/set-array@1.2.1:
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
dev: false
/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
dev: false
/@jridgewell/trace-mapping@0.3.25:
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
dependencies:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
dev: false
/@next/env@14.2.5:
resolution: {integrity: sha512-/zZGkrTOsraVfYjGP8uM0p6r0BDT6xWpkjdVbcz66PJVSpwXX3yNiRycxAuDfBKGWBrZBXRuK/YVlkNgxHGwmA==}
dev: false
/@next/eslint-plugin-next@14.2.5:
resolution: {integrity: sha512-LY3btOpPh+OTIpviNojDpUdIbHW9j0JBYBjsIp8IxtDFfYFyORvw3yNq6N231FVqQA7n7lwaf7xHbVJlA1ED7g==}
dependencies:
glob: 10.3.10
dev: false
/@next/swc-darwin-arm64@14.2.5:
resolution: {integrity: sha512-/9zVxJ+K9lrzSGli1///ujyRfon/ZneeZ+v4ptpiPoOU+GKZnm8Wj8ELWU1Pm7GHltYRBklmXMTUqM/DqQ99FQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
/@next/swc-darwin-x64@14.2.5:
resolution: {integrity: sha512-vXHOPCwfDe9qLDuq7U1OYM2wUY+KQ4Ex6ozwsKxp26BlJ6XXbHleOUldenM67JRyBfVjv371oneEvYd3H2gNSA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-arm64-gnu@14.2.5:
resolution: {integrity: sha512-vlhB8wI+lj8q1ExFW8lbWutA4M2ZazQNvMWuEDqZcuJJc78iUnLdPPunBPX8rC4IgT6lIx/adB+Cwrl99MzNaA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-arm64-musl@14.2.5:
resolution: {integrity: sha512-NpDB9NUR2t0hXzJJwQSGu1IAOYybsfeB+LxpGsXrRIb7QOrYmidJz3shzY8cM6+rO4Aojuef0N/PEaX18pi9OA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-x64-gnu@14.2.5:
resolution: {integrity: sha512-8XFikMSxWleYNryWIjiCX+gU201YS+erTUidKdyOVYi5qUQo/gRxv/3N1oZFCgqpesN6FPeqGM72Zve+nReVXQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-x64-musl@14.2.5:
resolution: {integrity: sha512-6QLwi7RaYiQDcRDSU/os40r5o06b5ue7Jsk5JgdRBGGp8l37RZEh9JsLSM8QF0YDsgcosSeHjglgqi25+m04IQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-win32-arm64-msvc@14.2.5:
resolution: {integrity: sha512-1GpG2VhbspO+aYoMOQPQiqc/tG3LzmsdBH0LhnDS3JrtDx2QmzXe0B6mSZZiN3Bq7IOMXxv1nlsjzoS1+9mzZw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: false
optional: true
/@next/swc-win32-ia32-msvc@14.2.5:
resolution: {integrity: sha512-Igh9ZlxwvCDsu6438FXlQTHlRno4gFpJzqPjSIBZooD22tKeI4fE/YMRoHVJHmrQ2P5YL1DoZ0qaOKkbeFWeMg==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: false
optional: true
/@next/swc-win32-x64-msvc@14.2.5:
resolution: {integrity: sha512-tEQ7oinq1/CjSG9uSTerca3v4AZ+dFa+4Yu6ihaG8Ud8ddqLQgFGcnwYls13H5X5CPDPZJdYxyeMui6muOLd4g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: false
optional: true
/@nextui-org/aria-utils@2.0.24(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-YD+YvT01zFqN1Ey137OeFl9SEhAYf2BoZz+ykWiIJlMjl/LY1d5WE0nkzsjMHh6MV3HgS6CExxlf7TuApN6Piw==}
peerDependencies:
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-rsc-utils': 2.0.13
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-stately/collections': 3.10.7(react@18.3.1)
'@react-stately/overlays': 3.6.7(react@18.3.1)
'@react-types/overlays': 3.8.7(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@nextui-org/theme'
- framer-motion
dev: false
/@nextui-org/button@2.0.37(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-dBtdO30qfu+K4YYLNmmpUy16Q82H1ucY8A4NjP4iEAJ1sPunoAYvba7h9xabrpUKW9IOyItOThSesxsfpaXYug==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/ripple': 2.0.32(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/spinner': 2.0.33(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-aria-button': 2.0.10(react@18.3.1)
'@react-aria/button': 3.9.5(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-types/button': 3.9.4(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/card@2.0.33(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-iO/ThbUz75YlcFrWO9EssMhOxbc9LN0SSk181+2QnPDbKls9wbkUEfGjq/d9k3h6jb9FaR5N5XwVpT4aUt2Usw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/ripple': 2.0.32(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-aria-button': 2.0.10(react@18.3.1)
'@react-aria/button': 3.9.5(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/code@2.0.32(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-YBLCWDgR+ebWIr+noN02/ls+PsQV9leLskgPLFUfpRzHoXdGeUUhE8IjTv14KFP3XlW3Cf9ALFy3IgPuIZ+yuQ==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system-rsc': 2.1.5(@nextui-org/theme@2.2.9)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/divider@2.0.31(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-z9GhrpmhXhJGuW0GSO1OP01mwDTSItuIRIz0VGpKOPVTqOzOMHkXN978wgNXqJ+knWZcaiF7WHvd83O05jmbkg==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-rsc-utils': 2.0.13
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system-rsc': 2.1.5(@nextui-org/theme@2.2.9)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@react-types/shared': 3.23.1(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/framer-utils@2.0.24(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-Fc5ugVaLsXhd3bgJg+hvw20uaaz9gAxYY2ouS/3leN7QBSRAwpy3Dl+tX8BbLeyx3ZosVrHIJ3w4bhDMzFVk9Q==}
peerDependencies:
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/use-measure': 2.0.2(react@18.3.1)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@nextui-org/theme'
dev: false
/@nextui-org/image@2.0.31(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-HxWaGUBtNaT9pLGvDo5Q2ruGxdhXYrdNcLvRhtoohiZeIKo1Y8jTbBUCVGxdxklTZAF3H7klrTcsdSwHTGfk0g==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-image': 2.0.6(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/input@2.2.4(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-CVeTwwUJn9pEJC+kq3Jg0nAFeYVGBbIU7U2YFSG8XJK2X75odj8RSQdVd3Dt2U/b5Mtwt5sBh9gMzCedtjffWg==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-icons': 2.0.9(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/textfield': 3.14.5(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-stately/utils': 3.10.1(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
'@react-types/textfield': 3.9.3(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-textarea-autosize: 8.5.3(@types/react@18.3.3)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
dev: false
/@nextui-org/kbd@2.0.33(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-1Q7vKKJjfn5RPMsySQEljo2clf03Ta4V4ZA4O92ktJ8YzbdNnDfUiWtfFxF64R183ZVfe869RBSpuOdzZLNuKQ==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system-rsc': 2.1.5(@nextui-org/theme@2.2.9)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@react-aria/utils': 3.24.1(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/link@2.0.34(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-497AvjzckEB/TE1eJEziS2QkxwCY81RPsWoApNSeHGdYrMO1tfgUFKATgadfBQjoba6FdCcLc2QaUapOetqFaA==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-icons': 2.0.9(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-aria-link': 2.0.19(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/link': 3.7.1(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-types/link': 3.5.5(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/listbox@2.1.25(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-WJqxhzPxADLIsenREaaoQ44bs3gQx5yqOvK86Jkiv/m9nXr0YuxZOJEsVa5GenkmyJBrEd6LkBV5cZ1TGNzbJw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.24(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/divider': 2.0.31(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-is-mobile': 2.0.9(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/listbox': 3.12.1(react-dom@18.3.1)(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-stately/list': 3.10.5(react@18.3.1)
'@react-types/menu': 3.9.9(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- framer-motion
dev: false
/@nextui-org/navbar@2.0.36(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(@types/react@18.3.3)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-uobdPsh4TSPm2Us74/Vey43z0/oRqWb6x4+eHIJf9VhYP9pY733N2n17v2mvU7SvcNhkold/PWfXPYiA8kMlug==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/framer-utils': 2.0.24(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-aria-toggle-button': 2.0.10(react@18.3.1)
'@nextui-org/use-scroll-position': 2.0.8(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/overlays': 3.22.1(react-dom@18.3.1)(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-stately/toggle': 3.7.4(react@18.3.1)
'@react-stately/utils': 3.10.1(react@18.3.1)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
dev: false
/@nextui-org/popover@2.1.27(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(@types/react@18.3.3)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-UV42nqvUR9IOy7Hgc5S2Xo+2YWzBAHCcU+C/9O9SchXL0DyU/ol+IPqxuBxdJDi5fiFYr9mTBoPZgAEGDoJjDg==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.24(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/button': 2.0.37(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/framer-utils': 2.0.24(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-aria-button': 2.0.10(react@18.3.1)
'@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1)
'@react-aria/dialog': 3.5.14(react-dom@18.3.1)(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/overlays': 3.22.1(react-dom@18.3.1)(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-stately/overlays': 3.6.7(react@18.3.1)
'@react-types/button': 3.9.4(react@18.3.1)
'@react-types/overlays': 3.8.7(react@18.3.1)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
dev: false
/@nextui-org/react-rsc-utils@2.0.13:
resolution: {integrity: sha512-QewsXtoQlMsR9stThdazKEImg9oyZkPLs7wsymhrzh6/HdQCl9bTdb6tJcROg4vg5LRYKGG11USSQO2nKlfCcQ==}
dev: false
/@nextui-org/react-utils@2.0.16(react@18.3.1):
resolution: {integrity: sha512-QdDoqzhx+4t9cDTVmtw5iOrfyLvpqyKsq8PARHUniCiQQDQd1ao7FCpzHgvU9poYcEdRk+Lsna66zbeMkFBB6w==}
peerDependencies:
react: '>=18'
dependencies:
'@nextui-org/react-rsc-utils': 2.0.13
'@nextui-org/shared-utils': 2.0.7
react: 18.3.1
dev: false
/@nextui-org/ripple@2.0.32(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-xOqoHWzpvv5KRh7P8pXt3aZEmI1tyhiTNhrwjJaRME0d5xSA0gNzYhrjP5g0+Dxy4nKRDIZ1znJcd87KI07JFA==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/scroll-shadow@2.1.19(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-od5AnhX6iO0sHoTAVReWv1O1dbNCEeOBOFdnyzFins6ZC5EnAl/oBPR/KLd8glHtgM3Jt8dvIVlBXPEPZKZwaw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-data-scroll-overflow': 2.1.6(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/select@2.2.5(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(@types/react@18.3.3)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-Il1eigjSXOBgJ745nhn6TDPD1jj1avrnvk9WV/DCjOsFRwfstRnDzsS1aNpZKHqJgHhFRQZ1ivz8hA4x3Zgasg==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.24(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/listbox': 2.1.25(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/popover': 2.1.27(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(@types/react@18.3.3)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/scroll-shadow': 2.1.19(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/shared-icons': 2.0.9(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/spinner': 2.0.33(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-aria-button': 2.0.10(react@18.3.1)
'@nextui-org/use-aria-multiselect': 2.2.3(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/form': 3.0.5(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-aria/visually-hidden': 3.8.12(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
dev: false
/@nextui-org/shared-icons@2.0.9(react@18.3.1):
resolution: {integrity: sha512-WG3yinVY7Tk9VqJgcdF4V8Ok9+fcm5ey7S1els7kujrfqLYxtqoKywgiY/7QHwZlfQkzpykAfy+NAlHkTP5hMg==}
peerDependencies:
react: '>=18'
dependencies:
react: 18.3.1
dev: false
/@nextui-org/shared-utils@2.0.7:
resolution: {integrity: sha512-FxY3N0i1Al7Oz3yOQN0dSpG8UUrLIP3iYh3ubD7BhdQoZLl5xbG6++q1gqOzZXV+ZWeUFMY/or0ofzWxGHiOow==}
dev: false
/@nextui-org/snippet@2.0.41(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-ZZopaecAZbKJIdabwGVF3ahL2MM7L0zZII61SO3LDPAwqXOuta9ixMYk1XVCI0V2PVqTkabQgdpt1ZLgmFH+Kw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/button': 2.0.37(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-icons': 2.0.9(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/tooltip': 2.0.39(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/use-clipboard': 2.0.6(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/spinner@2.0.33(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-c1wW4YEbzdn0t1MJAXhJ2W0PuNxrxtZg2DVqJeqh3180y4iQPYDzEy7oFoU0FpK53LcBPxjfsKHNL6v1pn+60A==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system-rsc': 2.1.5(@nextui-org/theme@2.2.9)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/switch@2.0.33(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-T7w+8+ex7Pey9HVGXkNft4D11mO5J9iPfmemfLbSOYqbSydcOuINuGRQ1QWy7X+lLYhhZBHb9Ykcf4QtR4dqTQ==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1)
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/switch': 3.6.4(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-aria/visually-hidden': 3.8.12(react@18.3.1)
'@react-stately/toggle': 3.7.4(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/system-rsc@2.1.5(@nextui-org/theme@2.2.9)(react@18.3.1):
resolution: {integrity: sha512-tkJLAyJu34Rr5KUMMqoB7cZjOVXB+7a/7N4ushZfuiLdoYijgmcXFMzLxjm+tbt9zA5AV+ivsfbHvscg77dJ6w==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
dependencies:
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@react-types/shared': 3.23.1(react@18.3.1)
clsx: 1.2.1
react: 18.3.1
dev: false
/@nextui-org/system@2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-nrX6768aiyWtpxX3OTFBIVWR+v9nlMsC3KaBinNfek97sNm7gAfTHi7q5kylE3L5yIMpNG+DclAKpuxgDQEmvw==}
peerDependencies:
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@internationalized/date': 3.5.5
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/system-rsc': 2.1.5(@nextui-org/theme@2.2.9)(react@18.3.1)
'@react-aria/i18n': 3.11.1(react@18.3.1)
'@react-aria/overlays': 3.22.1(react-dom@18.3.1)(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-stately/utils': 3.10.1(react@18.3.1)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@nextui-org/theme'
dev: false
/@nextui-org/theme@2.2.9(tailwindcss@3.4.7):
resolution: {integrity: sha512-TN2I9sMriLaj00pXsIMlg19+UHeOdjzS2JV0u4gjL14mSbQl5BYNxgbvU3gbMqkZZQ6OpwT4RnT8RS+ks6TXCw==}
peerDependencies:
tailwindcss: '>=3.4.0'
dependencies:
clsx: 1.2.1
color: 4.2.3
color2k: 2.0.3
deepmerge: 4.3.1
flat: 5.0.2
lodash.foreach: 4.5.0
lodash.get: 4.4.2
lodash.kebabcase: 4.1.1
lodash.mapkeys: 4.6.0
lodash.omit: 4.5.0
tailwind-merge: 1.14.0
tailwind-variants: 0.1.20(tailwindcss@3.4.7)
tailwindcss: 3.4.7
dev: false
/@nextui-org/tooltip@2.0.39(@nextui-org/system@2.2.5)(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-DWP3XAmVb/SlcdI4SQodtT8ZyMzYMuvRbq4+JQwm+qq1+FGs55z15+8h9DRFQEseEEaDs0hCs6+kgbieZlUitw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=10.17.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.24(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/framer-utils': 2.0.24(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/react-utils': 2.0.16(react@18.3.1)
'@nextui-org/shared-utils': 2.0.7
'@nextui-org/system': 2.2.5(@nextui-org/theme@2.2.9)(framer-motion@11.3.21)(react-dom@18.3.1)(react@18.3.1)
'@nextui-org/theme': 2.2.9(tailwindcss@3.4.7)
'@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/overlays': 3.22.1(react-dom@18.3.1)(react@18.3.1)
'@react-aria/tooltip': 3.7.4(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-stately/tooltip': 3.4.9(react@18.3.1)
'@react-types/overlays': 3.8.7(react@18.3.1)
'@react-types/tooltip': 3.4.9(react@18.3.1)
framer-motion: 11.3.21(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/use-aria-button@2.0.10(react@18.3.1):
resolution: {integrity: sha512-tUpp4QMr1zugKPevyToeRHIufTuc/g+67/r/oQLRTG0mMo3yGVmggykQuYn22fqqZPpW6nHcB9VYc+XtZZ27TQ==}
peerDependencies:
react: '>=18'
dependencies:
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-types/button': 3.9.4(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
react: 18.3.1
dev: false
/@nextui-org/use-aria-link@2.0.19(react@18.3.1):
resolution: {integrity: sha512-ef61cJLlwcR4zBWiaeHZy4K18juFjUup2SslfLIAiZz3kVosBCGKmkJkw1SASYY8+D/oUc2B6BFIk25YEsRKRw==}
peerDependencies:
react: '>=18'
dependencies:
'@react-aria/focus': 3.17.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-types/link': 3.5.5(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
react: 18.3.1
dev: false
/@nextui-org/use-aria-multiselect@2.2.3(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-VeRoyyUUVgJ7DrdfzU6onjohHxJfG7bmwpIfQyurMzvTZcmcVUGTnddAnRPVEoOro68tTAj4IuPs/4xkf1aXxg==}
peerDependencies:
react: '>=18'
react-dom: '>=18'
dependencies:
'@react-aria/i18n': 3.11.1(react@18.3.1)
'@react-aria/interactions': 3.21.3(react@18.3.1)
'@react-aria/label': 3.7.8(react@18.3.1)
'@react-aria/listbox': 3.12.1(react-dom@18.3.1)(react@18.3.1)
'@react-aria/menu': 3.14.1(react-dom@18.3.1)(react@18.3.1)
'@react-aria/selection': 3.18.1(react-dom@18.3.1)(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-stately/form': 3.0.3(react@18.3.1)
'@react-stately/list': 3.10.5(react@18.3.1)
'@react-stately/menu': 3.7.1(react@18.3.1)
'@react-types/button': 3.9.4(react@18.3.1)
'@react-types/overlays': 3.8.7(react@18.3.1)
'@react-types/select': 3.9.4(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
dev: false
/@nextui-org/use-aria-toggle-button@2.0.10(react@18.3.1):
resolution: {integrity: sha512-U5jOmEO+nMIgYvBF0+gJtdq8C6dynGMjzAboPG4FhuHOzDoNiC12G5FIbGnRe8K1hMsKVuaI72p9986NhfqNgw==}
peerDependencies:
react: '>=18'
dependencies:
'@nextui-org/use-aria-button': 2.0.10(react@18.3.1)
'@react-aria/utils': 3.24.1(react@18.3.1)
'@react-stately/toggle': 3.7.4(react@18.3.1)
'@react-types/button': 3.9.4(react@18.3.1)
'@react-types/shared': 3.23.1(react@18.3.1)
react: 18.3.1
dev: false
/@nextui-org/use-clipboard@2.0.6(react@18.3.1):
resolution: {integrity: sha512-UQbCoAX1vqEKYeMF8Xp2RdTqbDD8Or16+7W4f8OQc5+uaJeKaAL6LPITi5M5ipgruTvzM845XooHdiAStH322Q==}
peerDependencies: