-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
4488 lines (4488 loc) · 166 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "aurora",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "aurora",
"version": "0.1.0",
"dependencies": {
"@ark-ui/react": "^0.6.0",
"@types/node": "20.2.3",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"classnames": "^2.3.2",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"next": "13.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"remixicon": "^3.3.0",
"typescript": "5.0.4"
},
"devDependencies": {
"sass": "^1.62.1"
}
},
"node_modules/@ark-ui/react": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@ark-ui/react/-/react-0.6.0.tgz",
"integrity": "sha512-9LqN0fnFgaTc0Slp6tRZvkLverp0/O/Ps3Ffq5x1KvH46DMi5KMs7EGGULXgjzZCln3RVzVjIEK/jzm5aSmyKg==",
"dependencies": {
"@zag-js/accordion": "0.10.2",
"@zag-js/anatomy": "0.10.2",
"@zag-js/avatar": "0.10.2",
"@zag-js/carousel": "0.10.2",
"@zag-js/checkbox": "0.10.2",
"@zag-js/color-picker": "0.10.2",
"@zag-js/combobox": "0.10.2",
"@zag-js/date-picker": "0.10.2",
"@zag-js/dialog": "0.10.2",
"@zag-js/editable": "0.10.2",
"@zag-js/hover-card": "0.10.2",
"@zag-js/menu": "0.10.2",
"@zag-js/number-input": "0.10.2",
"@zag-js/pagination": "0.10.2",
"@zag-js/pin-input": "0.10.2",
"@zag-js/popover": "0.10.2",
"@zag-js/pressable": "0.10.2",
"@zag-js/radio-group": "0.10.2",
"@zag-js/range-slider": "0.10.2",
"@zag-js/rating-group": "0.10.2",
"@zag-js/react": "0.10.2",
"@zag-js/select": "0.10.2",
"@zag-js/slider": "0.10.2",
"@zag-js/splitter": "0.10.2",
"@zag-js/switch": "0.10.2",
"@zag-js/tabs": "0.10.2",
"@zag-js/tags-input": "0.10.2",
"@zag-js/toast": "0.10.2",
"@zag-js/tooltip": "0.10.2",
"@zag-js/transition": "0.10.2",
"@zag-js/types": "0.10.2"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
},
"node_modules/@babel/runtime": {
"version": "7.21.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz",
"integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==",
"dependencies": {
"regenerator-runtime": "^0.13.11"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.5.1",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz",
"integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz",
"integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.5.2",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "8.41.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.41.0.tgz",
"integrity": "sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@floating-ui/core": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.3.0.tgz",
"integrity": "sha512-vX1WVAdPjZg9DkDkC+zEx/tKtnST6/qcNpwcjeBgco3XRNHz5PUA+ivi/yr6G3o0kMR60uKBJcfOdfzOFI7PMQ=="
},
"node_modules/@floating-ui/dom": {
"version": "1.2.9",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.2.9.tgz",
"integrity": "sha512-sosQxsqgxMNkV3C+3UqTS6LxP7isRLwX8WMepp843Rb3/b0Wz8+MdUkxJksByip3C2WwLugLHN1b4ibn//zKwQ==",
"dependencies": {
"@floating-ui/core": "^1.2.6"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.8",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
"integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
},
"node_modules/@internationalized/date": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.2.0.tgz",
"integrity": "sha512-VDMHN1m33L4eqPs5BaihzgQJXyaORbMoHOtrapFxx179J8ucY5CRIHYsq5RRLKPHZWgjNfa5v6amWWDkkMFywA==",
"dependencies": {
"@swc/helpers": "^0.4.14"
}
},
"node_modules/@internationalized/date/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@next/env": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/env/-/env-13.3.4.tgz",
"integrity": "sha512-oTK/wRV2qga86m/4VdrR1+/56UA6U1Qv3sIgowB+bZjahniZLEG5BmmQjfoGv7ZuLXBZ8Eec6hkL9BqJcrEL2g=="
},
"node_modules/@next/eslint-plugin-next": {
"version": "13.4.3",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.3.tgz",
"integrity": "sha512-5B0uOnh7wyUY9vNNdIA6NUvWozhrZaTMZOzdirYAefqD0ZBK5C/h3+KMYdCKrR7JrXGvVpWnHtv54b3dCzwICA==",
"dependencies": {
"glob": "7.1.7"
}
},
"node_modules/@next/swc-darwin-arm64": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.3.4.tgz",
"integrity": "sha512-vux7RWfzxy1lD21CMwZsy9Ej+0+LZdIIj1gEhVmzOQqQZ5N56h8JamrjIVCfDL+Lpj8KwOmFZbPHE8qaYnL2pg==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-darwin-x64": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.3.4.tgz",
"integrity": "sha512-1tb+6JT98+t7UIhVQpKL7zegKnCs9RKU6cKNyj+DYKuC/NVl49/JaIlmwCwK8Ibl+RXxJrK7uSXSIO71feXsgw==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.3.4.tgz",
"integrity": "sha512-UqcKkYTKslf5YAJNtZ5XV1D5MQJIkVtDHL8OehDZERHzqOe7jvy41HFto33IDPPU8gJiP5eJb3V9U26uifqHjw==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-musl": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.3.4.tgz",
"integrity": "sha512-HE/FmE8VvstAfehyo/XsrhGgz97cEr7uf9IfkgJ/unqSXE0CDshDn/4as6rRid74eDR8/exi7c2tdo49Tuqxrw==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-gnu": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.3.4.tgz",
"integrity": "sha512-xU+ugaupGA4SL5aK1ZYEqVHrW3TPOhxVcpaJLfpANm2443J4GfxCmOacu9XcSgy5c51Mq7C9uZ1LODKHfZosRQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-musl": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.3.4.tgz",
"integrity": "sha512-cZvmf5KcYeTfIK6bCypfmxGUjme53Ep7hx94JJtGrYgCA1VwEuYdh+KouubJaQCH3aqnNE7+zGnVEupEKfoaaA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.3.4.tgz",
"integrity": "sha512-7dL+CAUAjmgnVbjXPIpdj7/AQKFqEUL3bKtaOIE1JzJ5UMHHAXCPwzQtibrsvQpf9MwcAmiv8aburD3xH1xf8w==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.3.4.tgz",
"integrity": "sha512-qplTyzEl1vPkS+/DRK3pKSL0HeXrPHkYsV7U6gboHYpfqoHY+bcLUj3gwVUa9PEHRIoq4vXvPzx/WtzE6q52ng==",
"cpu": [
"ia32"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-x64-msvc": {
"version": "13.3.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.3.4.tgz",
"integrity": "sha512-usdvZT7JHrTuXC+4OKN5mCzUkviFkCyJJTkEz8jhBpucg+T7s83e7owm3oNFzmj5iKfvxU2St6VkcnSgpFvEYA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@pkgr/utils": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz",
"integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==",
"dependencies": {
"cross-spawn": "^7.0.3",
"fast-glob": "^3.2.12",
"is-glob": "^4.0.3",
"open": "^9.1.0",
"picocolors": "^1.0.0",
"tslib": "^2.5.0"
},
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/unts"
}
},
"node_modules/@rushstack/eslint-patch": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.0.tgz",
"integrity": "sha512-IthPJsJR85GhOkp3Hvp8zFOPK5ynKn6STyHa/WZpioK7E1aYDiBzpqQPrngc14DszIUkIrdd3k9Iu0XSzlP/1w=="
},
"node_modules/@swc/helpers": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz",
"integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@types/json5": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
"integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
},
"node_modules/@types/node": {
"version": "20.2.3",
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.2.3.tgz",
"integrity": "sha512-pg9d0yC4rVNWQzX8U7xb4olIOFuuVL9za3bzMT2pu2SU0SNEi66i2qrvhE2qt0HvkhuCaWJu7pLNOt/Pj8BIrw=="
},
"node_modules/@types/prop-types": {
"version": "15.7.5",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
"integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
},
"node_modules/@types/react": {
"version": "18.2.7",
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.7.tgz",
"integrity": "sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw==",
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
"csstype": "^3.0.2"
}
},
"node_modules/@types/react-dom": {
"version": "18.2.4",
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.4.tgz",
"integrity": "sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==",
"dependencies": {
"@types/react": "*"
}
},
"node_modules/@types/scheduler": {
"version": "0.16.3",
"resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz",
"integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ=="
},
"node_modules/@typescript-eslint/parser": {
"version": "5.59.7",
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.7.tgz",
"integrity": "sha512-VhpsIEuq/8i5SF+mPg9jSdIwgMBBp0z9XqjiEay+81PYLJuroN+ET1hM5IhkiYMJd9MkTz8iJLt7aaGAgzWUbQ==",
"dependencies": {
"@typescript-eslint/scope-manager": "5.59.7",
"@typescript-eslint/types": "5.59.7",
"@typescript-eslint/typescript-estree": "5.59.7",
"debug": "^4.3.4"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
},
"node_modules/@typescript-eslint/scope-manager": {
"version": "5.59.7",
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz",
"integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==",
"dependencies": {
"@typescript-eslint/types": "5.59.7",
"@typescript-eslint/visitor-keys": "5.59.7"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@typescript-eslint/types": {
"version": "5.59.7",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz",
"integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@typescript-eslint/typescript-estree": {
"version": "5.59.7",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz",
"integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==",
"dependencies": {
"@typescript-eslint/types": "5.59.7",
"@typescript-eslint/visitor-keys": "5.59.7",
"debug": "^4.3.4",
"globby": "^11.1.0",
"is-glob": "^4.0.3",
"semver": "^7.3.7",
"tsutils": "^3.21.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
},
"node_modules/@typescript-eslint/visitor-keys": {
"version": "5.59.7",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz",
"integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==",
"dependencies": {
"@typescript-eslint/types": "5.59.7",
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@zag-js/accordion": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/accordion/-/accordion-0.10.2.tgz",
"integrity": "sha512-iOAS7v+UFQZPgvknZkIgEKnWJfONNro3KRH8JtqiLnRftHofPvOhsLD1L2gE6MNXf8Gfz/N7BKBeiuKrfjplUQ==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/anatomy": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/anatomy/-/anatomy-0.10.2.tgz",
"integrity": "sha512-hXJO047Bx1ilIQIlY4yk4f7QM7hFWg5p6DC4zZBsQf2A/FmDikGcOvqYhM4NM5Zuw8Rp4RF8aSU2qWONqAo8kA=="
},
"node_modules/@zag-js/aria-hidden": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/aria-hidden/-/aria-hidden-0.10.2.tgz",
"integrity": "sha512-2e7ITwdxpsH4+TKgib0GLv1HGWx8k9MJbzpv03MknQvQUOgZVyXsFUh0BQWoTpOLcZTlifD+NX7Dle4PCaAiSg==",
"dependencies": {
"@zag-js/dom-query": "0.10.2"
}
},
"node_modules/@zag-js/auto-resize": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/auto-resize/-/auto-resize-0.10.2.tgz",
"integrity": "sha512-Xht+ewhx3C29bX+crescDfaJPjMTNRJAZ5oHNbW/SUXAVW+B5OxQiaIA7uAuqDflkgQKye65lXz8H/CsrPMgag==",
"dependencies": {
"@zag-js/dom-query": "0.10.2"
}
},
"node_modules/@zag-js/avatar": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/avatar/-/avatar-0.10.2.tgz",
"integrity": "sha512-WHHABOmMOHhk4+eLUw0wb5MQ4SqYMCHIvTVwCstILHvT+FbuMhss3QJIWmNuZR9cF9hftVHJDm/2duLsefjkrw==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/mutation-observer": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/carousel": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/carousel/-/carousel-0.10.2.tgz",
"integrity": "sha512-VHdSYwP1mTRwvpQtfZLUygH/lLjv8iDrxYXhcI3IwXyW7AQ+jYXE5jYYk0HiSmkOKnGUMthL1SVz802jgKctpg==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/checkbox": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/checkbox/-/checkbox-0.10.2.tgz",
"integrity": "sha512-lPPTmBVln76BeYY+u9wEcdjmhjVt/udddRwHO7AqfdNnBOnkQ+ITsngic480IIM5ZVAtBf+ApwSpI/w0vUmirw==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/form-utils": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2",
"@zag-js/visually-hidden": "0.10.2"
}
},
"node_modules/@zag-js/color-picker": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/color-picker/-/color-picker-0.10.2.tgz",
"integrity": "sha512-VdnmjfevCDQp8o0zgSGY+kIJjDrs7tllHecCyzpTUj3vbZ1CCesVfIBfS1kB3/8VZ1ykvC5Kw5HbNP7qB7A7cg==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/color-utils": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/numeric-range": "0.10.2",
"@zag-js/text-selection": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/color-utils": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/color-utils/-/color-utils-0.10.2.tgz",
"integrity": "sha512-0RelI8RijMy6O6E8ijjEDTv9pyfiaTkmDLOlrx3rMhbOW8Yg90ZQAOReVMkqUWPjdssJuMj+NgrL4Gi0yFs1MA=="
},
"node_modules/@zag-js/combobox": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/combobox/-/combobox-0.10.2.tgz",
"integrity": "sha512-gRikh2aMhM8rj8+3X219ynLOJ4SFtw6zdHiYVPlNpCzKrSDmNJdEKM3U5z6sVls+EDMBq0If8l7PRUw/Oqsw+g==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/aria-hidden": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/interact-outside": "0.10.2",
"@zag-js/live-region": "0.10.2",
"@zag-js/mutation-observer": "0.10.2",
"@zag-js/popper": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/core": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/core/-/core-0.10.2.tgz",
"integrity": "sha512-p9ctX27Dik2PYUPE66O2sJwesGsmlV6FbMSbGfc/lteZiQHkFxulOTs1kiFxUDfjFgbsHDu4a0QwBmNrHH25Uw==",
"dependencies": {
"@zag-js/store": "0.10.2",
"klona": "2.0.6"
}
},
"node_modules/@zag-js/date-picker": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/date-picker/-/date-picker-0.10.2.tgz",
"integrity": "sha512-XxqroNGoWM/Fdca/P0Ul98HsOUOck/+tQIQ4janMogYmlg7+BURpuyVmctDPH7/kUGDBpd0E6kWpnTPxQjuoXQ==",
"dependencies": {
"@internationalized/date": "^3.2.0",
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/date-utils": "0.10.2",
"@zag-js/dismissable": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/form-utils": "0.10.2",
"@zag-js/live-region": "0.10.2",
"@zag-js/text-selection": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/date-utils": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/date-utils/-/date-utils-0.10.2.tgz",
"integrity": "sha512-FdRnBTcbAdrVmijUmUjW6JQUftCoy7zkhMuWYgEFDDn+w+uYIWFRe728dnrITGG1ScdnBKIEzSyhp/55MmPKbg==",
"peerDependencies": {
"@internationalized/date": ">=3.0.0"
}
},
"node_modules/@zag-js/dialog": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/dialog/-/dialog-0.10.2.tgz",
"integrity": "sha512-HQafVppC4Erz/Y4Sz0Qrc+Z15QcngvMQT6uI4abu434f1FRzvqv12m5zWwH5ALcXEWu1KCUx/Hmg13cTkplJ0w==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/aria-hidden": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dismissable": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/remove-scroll": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2",
"focus-trap": "7.4.3"
}
},
"node_modules/@zag-js/dismissable": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/dismissable/-/dismissable-0.10.2.tgz",
"integrity": "sha512-PLucaqXBCyner2CIfOaFLYPd/PeHCpIcbmdahg/ZNHClGo3+J8pQLJzOJpJ6q8VxpBbNdGb+VJ7WTbw9ZDZyRA==",
"dependencies": {
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/interact-outside": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/dom-event": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/dom-event/-/dom-event-0.10.2.tgz",
"integrity": "sha512-W44npN40fufpser5SBGLhXo+0AyDSEX+ySP2gBX2uIaPxRa/GZJGt8lWJf/tVRx6XOCa8eZtLvHrYRcJ6mWqWg==",
"dependencies": {
"@zag-js/text-selection": "0.10.2",
"@zag-js/types": "0.10.2"
}
},
"node_modules/@zag-js/dom-query": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/dom-query/-/dom-query-0.10.2.tgz",
"integrity": "sha512-gsQztWG54tkxzFvteUxWa017oDz4qJj1okCMMQ1s0mGkK4N7HY5AzAx8zMJoVYwZPmlBKOgCwJTbGB/1mUBaqg=="
},
"node_modules/@zag-js/editable": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/editable/-/editable-0.10.2.tgz",
"integrity": "sha512-u3GjA0RaQaETTQ0CbW6BxUh+5kUrhNvfa0FK2jiHszKzwirdyxqBufuT1qss7V2fLy45c+QNsIrAnPqnotaIpQ==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/form-utils": "0.10.2",
"@zag-js/interact-outside": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/element-rect": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/element-rect/-/element-rect-0.10.2.tgz",
"integrity": "sha512-7r7tFqH04JbshAaYExn3RjW0+uScImNpWBa87s3vfohar6lfCPLX7MvUZ+WiaA2KgLFGVnE4rrYXCnDkOeW5/A=="
},
"node_modules/@zag-js/element-size": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.10.2.tgz",
"integrity": "sha512-HeGbw0gPKC0S+hg9BjgHpgBdTt/o+nk7ydswbBqElP/VBMSVias8mzMlxX6dBmaUrvjox//wQBWLnZQRf5U/zw=="
},
"node_modules/@zag-js/form-utils": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/form-utils/-/form-utils-0.10.2.tgz",
"integrity": "sha512-lMce2u8EXpAQWzEsfIgIdHhbygYvWZQy/5Vwv6tRt7hQd076iJX+DWXTkawlwPREwNm/pn7Dy7SETyX7qeAkRw==",
"dependencies": {
"@zag-js/mutation-observer": "0.10.2"
}
},
"node_modules/@zag-js/hover-card": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/hover-card/-/hover-card-0.10.2.tgz",
"integrity": "sha512-myiq3y+WFMTxkAtr0jqjmbqS7g9PGD/+FvA+fduCcqv7+3xutrpAOzLG524Me2Wcc+yXtTndiTjZMNpvaCkOPA==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dismissable": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/popper": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/interact-outside": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/interact-outside/-/interact-outside-0.10.2.tgz",
"integrity": "sha512-j+5lFvWlp0tm/oKcN4Vxe0jQogp27IkkMVzt1aVseH/LzA0qqUiKyZ2bQyzehTh8cEsc9cgP9TLZD897WatTCw==",
"dependencies": {
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/tabbable": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/live-region": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/live-region/-/live-region-0.10.2.tgz",
"integrity": "sha512-rULwxLqPAyiJPaEpqDyh6T45GF/D/eQWHNHJSpPzCk+Dkn6qAnMAEMT4HalazgUSsViURVhyDXaPBt7dsT5Lkw==",
"dependencies": {
"@zag-js/visually-hidden": "0.10.2"
}
},
"node_modules/@zag-js/menu": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/menu/-/menu-0.10.2.tgz",
"integrity": "sha512-ypj05A+DhvgCUldifeVrpwxP4lTz8BYaqUmQAHfNzYjRiLAxPZU4cHZaxaLTZPyr90Bh8JaSQwB0GlbC2AhAKA==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dismissable": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/popper": "0.10.2",
"@zag-js/rect-utils": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/mutation-observer": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/mutation-observer/-/mutation-observer-0.10.2.tgz",
"integrity": "sha512-D2nCn8m7LexaPjVLLvlKzGLxJidH6LlMrhEyQt8BmUtpQf/u9dF21c+L72SrrLleiDv1Ke7us6HYj4xhSA/aTg=="
},
"node_modules/@zag-js/number-input": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/number-input/-/number-input-0.10.2.tgz",
"integrity": "sha512-Vl/aWemrdjTvyRxhsl40oUTxgnS0jrNyTKQRSkyhqI2Bp1afXrmoexReKQ2HrhtZMEE6Q9hAMzUISDYBAl7n8Q==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/form-utils": "0.10.2",
"@zag-js/mutation-observer": "0.10.2",
"@zag-js/number-utils": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/number-utils": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/number-utils/-/number-utils-0.10.2.tgz",
"integrity": "sha512-a18LQlteigmlirYh8xRDO732U5r5cbJHspPwSmWQEVeQVwXmeGtJXlCWULvg2Zm2u4Zpdzdoo4o3kX7+yWZIHg=="
},
"node_modules/@zag-js/numeric-range": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/numeric-range/-/numeric-range-0.10.2.tgz",
"integrity": "sha512-zeFjzF/+QYVpJ07kYWgYfmfrXB/0GUVofSM3SEv+dBGLtdCAShl5o+/JQlvOFIqyAiydhftdo9hAwl6DoO/0og=="
},
"node_modules/@zag-js/pagination": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/pagination/-/pagination-0.10.2.tgz",
"integrity": "sha512-rTDcTpGXQXc7KPoA9rRdgNG2F9ZWDQ7IgkKpdeYV41sdg2XL/1F08o/jvVDnqt2NE3u5krCLrRzMTZxdvBgRkg==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/pin-input": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/pin-input/-/pin-input-0.10.2.tgz",
"integrity": "sha512-vzW1i4bewJ10sWwOzemMAiwwV/I9irOADiGxpNtnu1Pwlc9rh6JjrD1UkaFrQhKQlr5nGPoVTxxbelZy1IKgTw==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/form-utils": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2",
"@zag-js/visually-hidden": "0.10.2"
}
},
"node_modules/@zag-js/popover": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/popover/-/popover-0.10.2.tgz",
"integrity": "sha512-xAjARtlFFCApFANi7Ti3yKBaecNVgjoxA4Uya0kPYgBrfOQcxAFxYaM14Adigi4gsrz8+7n34MOqHJZHdTNBQA==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/aria-hidden": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dismissable": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/popper": "0.10.2",
"@zag-js/remove-scroll": "0.10.2",
"@zag-js/tabbable": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2",
"focus-trap": "7.4.3"
}
},
"node_modules/@zag-js/popper": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/popper/-/popper-0.10.2.tgz",
"integrity": "sha512-UckgTCwa+fNv3VQNKImO8EhkPoJBB5gQz2K4CQ5CEyFuiubQQpQRL/p/QGvivaIKmZ5kfQnl2SVechoiiMSpTg==",
"dependencies": {
"@floating-ui/dom": "1.2.9",
"@zag-js/dom-query": "0.10.2",
"@zag-js/element-rect": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/pressable": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/pressable/-/pressable-0.10.2.tgz",
"integrity": "sha512-ZZv1HoMMLXkbcff/3Skmo+disJ1MyvWsQdWhdmfs0rpy5QoQ9AEtV3h4yiASD5HE01cxh8gLCOge5XwoHOyD3g==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/text-selection": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/radio-group": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/radio-group/-/radio-group-0.10.2.tgz",
"integrity": "sha512-3FyHWFG55v7kmhvoIV2K6QPVhePi7yBfl0F+mCESKJxJxEq/hYeN/4sLuzW2lBb7WNi+2vytopmcBKBCqLK4kw==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/element-rect": "0.10.2",
"@zag-js/form-utils": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2",
"@zag-js/visually-hidden": "0.10.2"
}
},
"node_modules/@zag-js/range-slider": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/range-slider/-/range-slider-0.10.2.tgz",
"integrity": "sha512-xjugLcu+1l0vG57Z+rTXE8iToeHiL8hs0Chth94NTBy4b6xh5c4sgxyaWd3S4lD7ZVejIIqYJq4XCL+IBFqzpA==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/element-size": "0.10.2",
"@zag-js/form-utils": "0.10.2",
"@zag-js/numeric-range": "0.10.2",
"@zag-js/slider": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/rating-group": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/rating-group/-/rating-group-0.10.2.tgz",
"integrity": "sha512-nAW6zDBgduc6m1PGsttWg6xVCWHg6FiJc/6lNRustG7ncx9qcboWxFaePxPDMTMZ6qaxX8r/QIVwagtTHcG5PQ==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/form-utils": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2"
}
},
"node_modules/@zag-js/react": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/react/-/react-0.10.2.tgz",
"integrity": "sha512-D4kjnYg897C7kA7uhXZMyMGQM7iWDiddmnyeLnZUFTDILX6uEYx7epQgeAQ0gmeRw2Un1ZNaKylM8IqlvqXzhg==",
"dependencies": {
"@zag-js/core": "0.10.2",
"@zag-js/store": "0.10.2",
"@zag-js/types": "0.10.2",
"proxy-compare": "2.5.1"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
},
"node_modules/@zag-js/rect-utils": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/rect-utils/-/rect-utils-0.10.2.tgz",
"integrity": "sha512-rie7sO39T0bsTRO6CWL5bFpKbhoTEd+8apVuQIBDRof2GGU7RGePKV3BQA5q5gQ4nIG6zXIZ9k6HD+syQ4ivOA=="
},
"node_modules/@zag-js/remove-scroll": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/remove-scroll/-/remove-scroll-0.10.2.tgz",
"integrity": "sha512-PJispN7PmzbOqmhd6VFQXprLDUd5QHx9X4o8TJF0vvD1D7oNSLVzwhGUZc5QeSB1xNuIisjGs0clNoZF8z8FUA==",
"dependencies": {
"@zag-js/dom-query": "0.10.2"
}
},
"node_modules/@zag-js/select": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/@zag-js/select/-/select-0.10.2.tgz",
"integrity": "sha512-Sbd11o2wv30FN9hCDD6W//9VRGwHsUI+sv1vwBhQBVd9tF9Fmj1yP/L6TV5wT+Ctsls+Vy9Js/eczPx771p9kg==",
"dependencies": {
"@zag-js/anatomy": "0.10.2",
"@zag-js/core": "0.10.2",
"@zag-js/dismissable": "0.10.2",
"@zag-js/dom-event": "0.10.2",
"@zag-js/dom-query": "0.10.2",
"@zag-js/form-utils": "0.10.2",
"@zag-js/mutation-observer": "0.10.2",
"@zag-js/popper": "0.10.2",
"@zag-js/tabbable": "0.10.2",
"@zag-js/types": "0.10.2",
"@zag-js/utils": "0.10.2",
"@zag-js/visually-hidden": "0.10.2"