-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
5117 lines (4594 loc) · 202 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'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@headlessui/react':
specifier: ^1.7.17
version: 1.7.17(react-dom@18.2.0)(react@18.2.0)
'@heroicons/react':
specifier: ^2.0.18
version: 2.0.18(react@18.2.0)
'@nextui-org/react':
specifier: ^2.2.9
version: 2.2.9(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)(tailwindcss@3.3.6)
framer-motion:
specifier: ^10.16.16
version: 10.16.16(react-dom@18.2.0)(react@18.2.0)
next:
specifier: 14.0.4
version: 14.0.4(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18
version: 18.2.0
react-dom:
specifier: ^18
version: 18.2.0(react@18.2.0)
devDependencies:
'@types/node':
specifier: ^20
version: 20.10.4
'@types/react':
specifier: ^18
version: 18.2.43
'@types/react-dom':
specifier: ^18
version: 18.2.17
autoprefixer:
specifier: ^10.0.1
version: 10.4.16(postcss@8.4.32)
eslint:
specifier: ^8
version: 8.55.0
eslint-config-next:
specifier: 14.0.4
version: 14.0.4(eslint@8.55.0)(typescript@5.3.3)
postcss:
specifier: ^8
version: 8.4.32
tailwindcss:
specifier: ^3.3.0
version: 3.3.6
typescript:
specifier: ^5
version: 5.3.3
packages:
/@aashutoshrathi/word-wrap@1.2.6:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
dev: true
/@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
/@babel/runtime@7.23.6:
resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.0
/@emotion/is-prop-valid@0.8.8:
resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
requiresBuild: true
dependencies:
'@emotion/memoize': 0.7.4
dev: false
optional: true
/@emotion/memoize@0.7.4:
resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
requiresBuild: true
dev: false
optional: true
/@eslint-community/eslint-utils@4.4.0(eslint@8.55.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: 8.55.0
eslint-visitor-keys: 3.4.3
dev: true
/@eslint-community/regexpp@4.10.0:
resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
/@eslint/eslintrc@2.1.4:
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
espree: 9.6.1
globals: 13.24.0
ignore: 5.3.0
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
dev: true
/@eslint/js@8.55.0:
resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
/@formatjs/ecma402-abstract@1.18.0:
resolution: {integrity: sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==}
dependencies:
'@formatjs/intl-localematcher': 0.5.2
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.3:
resolution: {integrity: sha512-X/jy10V9S/vW+qlplqhMUxR8wErQ0mmIYSq4mrjpjDl9mbuGcCILcI1SUYkL5nlM4PJqpc0KOS0bFkkJNPxYRw==}
dependencies:
'@formatjs/ecma402-abstract': 1.18.0
'@formatjs/icu-skeleton-parser': 1.7.0
tslib: 2.6.2
dev: false
/@formatjs/icu-skeleton-parser@1.7.0:
resolution: {integrity: sha512-Cfdo/fgbZzpN/jlN/ptQVe0lRHora+8ezrEeg2RfrNjyp+YStwBy7cqDY8k5/z2LzXg6O0AdzAV91XS0zIWv+A==}
dependencies:
'@formatjs/ecma402-abstract': 1.18.0
tslib: 2.6.2
dev: false
/@formatjs/intl-localematcher@0.5.2:
resolution: {integrity: sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==}
dependencies:
tslib: 2.6.2
dev: false
/@headlessui/react@1.7.17(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==}
engines: {node: '>=10'}
peerDependencies:
react: ^16 || ^17 || ^18
react-dom: ^16 || ^17 || ^18
dependencies:
client-only: 0.0.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@heroicons/react@2.0.18(react@18.2.0):
resolution: {integrity: sha512-7TyMjRrZZMBPa+/5Y8lN0iyvUU/01PeMGX2+RE7cQWpEUIcb4QotzUObFkJDejj/HUH4qjP/eQ0gzzKs2f+6Yw==}
peerDependencies:
react: '>= 16'
dependencies:
react: 18.2.0
dev: false
/@humanwhocodes/config-array@0.11.13:
resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 2.0.1
debug: 4.3.4
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
dev: true
/@humanwhocodes/module-importer@1.0.1:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
dev: true
/@humanwhocodes/object-schema@2.0.1:
resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==}
dev: true
/@internationalized/date@3.5.0:
resolution: {integrity: sha512-nw0Q+oRkizBWMioseI8+2TeUPEyopJVz5YxoYVzR0W1v+2YytiYah7s/ot35F149q/xAg4F1gT/6eTd+tsUpFQ==}
dependencies:
'@swc/helpers': 0.5.2
dev: false
/@internationalized/message@3.1.1:
resolution: {integrity: sha512-ZgHxf5HAPIaR0th+w0RUD62yF6vxitjlprSxmLJ1tam7FOekqRSDELMg4Cr/DdszG5YLsp5BG3FgHgqquQZbqw==}
dependencies:
'@swc/helpers': 0.5.2
intl-messageformat: 10.5.8
dev: false
/@internationalized/number@3.4.0:
resolution: {integrity: sha512-8TvotW3qVDHC4uv/BVoN6Qx0Dm8clHY1/vpH+dh+XRiPW/9NVpKn1P8d1A+WLphWrMwyqyWXI7uWehJPviaeIw==}
dependencies:
'@swc/helpers': 0.5.2
dev: false
/@internationalized/string@3.1.1:
resolution: {integrity: sha512-fvSr6YRoVPgONiVIUhgCmIAlifMVCeej/snPZVzbzRPxGpHl3o1GRe+d/qh92D8KhgOciruDUH8I5mjdfdjzfA==}
dependencies:
'@swc/helpers': 0.5.2
dev: false
/@jridgewell/gen-mapping@0.3.3:
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.20
/@jridgewell/resolve-uri@3.1.1:
resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
engines: {node: '>=6.0.0'}
/@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
/@jridgewell/trace-mapping@0.3.20:
resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
dependencies:
'@jridgewell/resolve-uri': 3.1.1
'@jridgewell/sourcemap-codec': 1.4.15
/@next/env@14.0.4:
resolution: {integrity: sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==}
dev: false
/@next/eslint-plugin-next@14.0.4:
resolution: {integrity: sha512-U3qMNHmEZoVmHA0j/57nRfi3AscXNvkOnxDmle/69Jz/G0o/gWjXTDdlgILZdrxQ0Lw/jv2mPW8PGy0EGIHXhQ==}
dependencies:
glob: 7.1.7
dev: true
/@next/swc-darwin-arm64@14.0.4:
resolution: {integrity: sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
/@next/swc-darwin-x64@14.0.4:
resolution: {integrity: sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-arm64-gnu@14.0.4:
resolution: {integrity: sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-arm64-musl@14.0.4:
resolution: {integrity: sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-x64-gnu@14.0.4:
resolution: {integrity: sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-x64-musl@14.0.4:
resolution: {integrity: sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-win32-arm64-msvc@14.0.4:
resolution: {integrity: sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: false
optional: true
/@next/swc-win32-ia32-msvc@14.0.4:
resolution: {integrity: sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: false
optional: true
/@next/swc-win32-x64-msvc@14.0.4:
resolution: {integrity: sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: false
optional: true
/@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-WzD7sscL+4K0TFyUutTn1AhU0wcS68TqNCTNv7KgON6ODdwieydilMxAyXvwo3RgXeWG+8BbdxJC/6W+/iLBTg==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-accordion': 2.0.2(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/use-aria-press': 2.0.1(react@18.2.0)
'@react-aria/button': 3.9.0(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/tree': 3.7.4(react@18.2.0)
'@react-types/accordion': 3.0.0-alpha.17(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
framer-motion: 10.16.16(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/aria-utils@2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-4M4jeJ/ghGaia9064yS+mEZ3sFPH80onmjNGWJZkkZDmUV4R88lNkqe/XYBK1tbxfl4Kxa8jc/ALsZkUkkvR5w==}
peerDependencies:
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-rsc-utils': 2.0.10
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/collections': 3.10.3(react@18.2.0)
'@react-types/overlays': 3.8.4(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@nextui-org/theme'
- tailwind-variants
dev: false
/@nextui-org/autocomplete@2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-ViPXrZnP35k7LF+TBA4w8nqu0OEj9p1z9Rt7rwrACmY2VmDGY6h6a6nDCMjhuTVXptftRvzxfIPsIyzBYqxb0g==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@react-aria/combobox': 3.8.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/i18n': 3.9.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-aria/visually-hidden': 3.8.7(react@18.2.0)
'@react-stately/combobox': 3.8.0(react@18.2.0)
'@react-types/combobox': 3.9.0(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
framer-motion: 10.16.16(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/avatar@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-3QUn8v61iNvAYogUbEDVnhDjBK6WBxxFYLp95a0H52zN0p2LHXe+UNwdGZYFo5QNWx6CHGH3vh2AHlLLy3WFSQ==}
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.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-image': 2.0.4(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/badge@2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-FA3XgqEbyKWepMXqMZg7D+1IRf7flrb2LzFvTbkmsbvWQ4yYz1LqJXZ/HDmoCydvh2pOnc+1zPK3BpB7vGrrwA==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/breadcrumbs@2.0.4(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-SAE0+QRgA7vxUHPL65TKz3MRj7u2mbSwk8Eifkwo6hPcF0d34zv2QDupTGyphIjoGCSrQHFIq/CPAkXyaOXZxw==}
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.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@react-aria/breadcrumbs': 3.5.8(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-types/breadcrumbs': 3.7.2(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/button@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-mDrSII1oneY4omwDdxUhl5oLa3AhoWCchwV/jt7egunnAFie32HbTqfFYGpLGiJw3JMMh3WDUthrI1islVTRKA==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@react-aria/button': 3.9.0(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-types/button': 3.9.1(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
framer-motion: 10.16.16(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@react-aria/button': 3.9.0(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
framer-motion: 10.16.16(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/checkbox@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-X6WkwPbZlDvioEcXF6HhKH21wD6OK+3+FSroKkzMPQLJrj2KYUIYGbiuw9rT9aCtdjbT+6HUCv+FA8/cBQr7cA==}
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.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-press': 2.0.1(react@18.2.0)
'@react-aria/checkbox': 3.12.0(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-aria/visually-hidden': 3.8.7(react@18.2.0)
'@react-stately/checkbox': 3.6.0(react@18.2.0)
'@react-stately/toggle': 3.7.0(react@18.2.0)
'@react-types/checkbox': 3.6.0(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/chip@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-hfVSaq5JWzGn97s3K2Ac/xOopHWelaUW3eus0O0wns/6+NCI0QUjgwNt2bAQSNvnE6vjvYLJTqGG/jFHyFJjOg==}
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.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-press': 2.0.1(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-types/checkbox': 3.6.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/code@2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-Kw/uOQtdytRWY99zMQuGHqMAAGXWBAxHlyMMge1OCckpadCDfX6plPjqoS18SGM0orJ4fox+a1FM8VhnRQ2kQw==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/divider@2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-yEvHqYlhNBwmF68pfjJKdzC8gVQtL+txxD5COBGF9uFyfxA5hVw2D6GmYgOH514bxrFBuWOLcQX6gyljgcN3bA==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-rsc-utils': 2.0.10
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@react-types/shared': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/dropdown@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-3KINNvC7Cz+deQltCM8gaB7iJCfU4Qsp1fwnoy1wUEjeZhEtPOPR59oTyqT+gPaPIisP1+LLOfcqRl4jNQoVXw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/menu': 3.11.2(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/menu': 3.5.7(react@18.2.0)
'@react-types/menu': 3.9.6(react@18.2.0)
framer-motion: 10.16.16(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-UlWMCAFdrq8wKrYFGwc+O4kFhKCkL4L9ZadBkP0PqjmfyAC2gA3ygRbNqtKhFMWeKbBAiC8qQ9aTBEA/+0r/EA==}
peerDependencies:
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
framer-motion: 10.16.16(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@nextui-org/theme'
- tailwind-variants
dev: false
/@nextui-org/image@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-bps5D5ki7PoLldb8wcJEf6C4EUFZm3PocLytNaGa7dNxFfaCOD78So+kq+K+0IRusK3yn94K8r31qMvpI3Gg2Q==}
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.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-image': 2.0.4(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/input@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-nUTlAvsXj5t88ycvQdICxf78/pko6Wznx2OomvYjb3E45eb77twQcWUDhydkJCWIh3b4AhGHSMM6GYxwWUgMDA==}
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.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/textfield': 3.13.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/utils': 3.9.0(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
'@react-types/textfield': 3.9.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-textarea-autosize: 8.5.3(@types/react@18.2.43)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
dev: false
/@nextui-org/kbd@2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-cYwbEjp/+/tjtOdmiRy2UHjfBhP3bqd5e+JFTa5sY1HotckUZrCintATyBcg9bPa3iSPUI44M6Cb9e0oAUUeMA==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@react-aria/utils': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/link@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-X8zX3U5MWfiStOCd45oIZ2YKZG0GoUio6PcMFYjpOPsEG7wV58CuhUSxpyx3QTF8JavVSO/p/cl4Pc9pukVDUg==}
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.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-link': 2.0.15(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/link': 3.6.2(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-types/link': 3.5.2(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/listbox@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-5PmUCoHFgAr+1nAU3IlqPFTgyHo7zsTcNeja4wcErD/KseCF2h7Uk5OqUX5hQDN9B9fZuGjPrkG4yoK/6pqcUQ==}
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.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-press': 2.0.1(react@18.2.0)
'@nextui-org/use-is-mobile': 2.0.6(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/listbox': 3.11.2(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/list': 3.10.1(react@18.2.0)
'@react-types/menu': 3.9.6(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/menu@2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-qr/BPDbBvg5tpAZZLkLx8eNnvYwJYM3Q72fmRYbzwmG3upNtdjln0QYxSwPXUz7RYqTKEFWc9JPxq2pgPM15Wg==}
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.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-press': 2.0.1(react@18.2.0)
'@nextui-org/use-is-mobile': 2.0.6(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/menu': 3.11.2(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/menu': 3.5.7(react@18.2.0)
'@react-stately/tree': 3.7.4(react@18.2.0)
'@react-types/menu': 3.9.6(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/modal@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-unfP0EMF3FDg5CkRqou03s4/BopWbaBTeVIMZeA2A1WF5teHUOmpLdp44Z1KOoWB1RVMDVd4JeoauNHNhJMp0g==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@nextui-org/use-aria-modal-overlay': 2.0.6(react-dom@18.2.0)(react@18.2.0)
'@nextui-org/use-disclosure': 2.0.6(react@18.2.0)
'@react-aria/dialog': 3.5.8(react-dom@18.2.0)(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/overlays': 3.6.4(react@18.2.0)
'@react-types/overlays': 3.8.4(react@18.2.0)
framer-motion: 10.16.16(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.7(@types/react@18.2.43)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-iP4Pn4ItQkAW1nbu1Jmrh5l9pMVG43lDxq9rbx6DbLjLnnZOOrE6fURb8uN5NVy3ooV5dF02zKAoxlkE5fN/xw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-toggle-button': 2.0.6(react@18.2.0)
'@nextui-org/use-scroll-position': 2.0.4(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/toggle': 3.7.0(react@18.2.0)
'@react-stately/utils': 3.9.0(react@18.2.0)
framer-motion: 10.16.16(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.7(@types/react@18.2.43)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/pagination@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-OVpkpXqUKRuMRIcYESBAL95d3pqZ17SKAyNINMiJ/DwWnrzJu/LXGmFwTuYRoBdqHFlm7guGqZbHmAkcS/Fgow==}
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.10(react@18.2.0)
'@nextui-org/shared-icons': 2.0.6(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-press': 2.0.1(react@18.2.0)
'@nextui-org/use-pagination': 2.0.4(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
scroll-into-view-if-needed: 3.0.10
dev: false
/@nextui-org/popover@2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18):
resolution: {integrity: sha512-fqqktFQ/chIBS9Y3MghL6KX6qAy3hodtXUDchnxLa1GL+oi6TCBLUjo+wgI5EMJrTTbqo/eFLui/Ks00JfCj+A==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/react-utils': 2.0.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-button': 2.0.6(react@18.2.0)
'@react-aria/dialog': 3.5.8(react-dom@18.2.0)(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-stately/overlays': 3.6.4(react@18.2.0)
'@react-types/button': 3.9.1(react@18.2.0)
'@react-types/overlays': 3.8.4(react@18.2.0)
framer-motion: 10.16.16(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.7(@types/react@18.2.43)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/progress@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-RPVsFCF8COFClS/8PqEepzryhDFtIcJGQLu/P+qAr7jIDlXizXaBDrp0X34GVtQsapNeE9ExxX9Kt+QIspuHHQ==}
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.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-is-mounted': 2.0.4(react@18.2.0)
'@react-aria/i18n': 3.9.0(react@18.2.0)
'@react-aria/progress': 3.4.8(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-types/progress': 3.5.1(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/radio@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-vRX0ppM5Tlzu0HoqTG6LdmQnMjk8RRl66BH1+QaosvZRXA1iIdA3BduqQYqn5ZZHBBlJ2u9QzaD3lTAlWIHvNg==}
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.10(react@18.2.0)
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.6)
'@nextui-org/use-aria-press': 2.0.1(react@18.2.0)
'@react-aria/focus': 3.15.0(react@18.2.0)
'@react-aria/interactions': 3.20.0(react@18.2.0)
'@react-aria/radio': 3.9.0(react@18.2.0)
'@react-aria/utils': 3.22.0(react@18.2.0)
'@react-aria/visually-hidden': 3.8.7(react@18.2.0)
'@react-stately/radio': 3.10.0(react@18.2.0)
'@react-types/radio': 3.6.0(react@18.2.0)
'@react-types/shared': 3.22.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@nextui-org/react-rsc-utils@2.0.10:
resolution: {integrity: sha512-LNePDEThUF9PAbJW4T8k7EgSfqwlvGku5fIqJ1IA9+OpVy5LqhrUQehjvgXe63N1RupC7Pt+XvaaxkGu9U2FiQ==}
dev: false
/@nextui-org/react-utils@2.0.10(react@18.2.0):
resolution: {integrity: sha512-bcA+k7ZdcgcK+r/8nrCtbdgHo0SD6jicbazWIokknFwjb97JQ7ooaMwxnLt5E5sswCAv0XeLwybOmrgm7JA5TA==}
peerDependencies:
react: '>=18'
dependencies:
'@nextui-org/react-rsc-utils': 2.0.10
'@nextui-org/shared-utils': 2.0.4(react@18.2.0)
react: 18.2.0
dev: false
/@nextui-org/react@2.2.9(@types/react@18.2.43)(framer-motion@10.16.16)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.18)(tailwindcss@3.3.6):