-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
1802 lines (1802 loc) · 69.8 KB
/
package-lock.json
File metadata and controls
1802 lines (1802 loc) · 69.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "go-tutorial",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"@chakra-ui/react": "^3.19.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@tanstack/react-query": "^5.77.2",
"framer-motion": "^12.14.0",
"next-themes": "^0.4.6",
"react-icons": "^5.5.0"
}
},
"node_modules/@ark-ui/react": {
"version": "5.9.1",
"resolved": "https://registry.npmjs.org/@ark-ui/react/-/react-5.9.1.tgz",
"integrity": "sha512-CPJtUy20x1kUAQ+8iPbgpq/RmqlF1Pfx91+8nHnYbR2dYI4mNKnxT8m7TGkoWT72W+P8YKYUehFJOPvspZqG2Q==",
"license": "MIT",
"dependencies": {
"@internationalized/date": "3.8.0",
"@zag-js/accordion": "1.12.2",
"@zag-js/anatomy": "1.12.2",
"@zag-js/angle-slider": "1.12.2",
"@zag-js/auto-resize": "1.12.2",
"@zag-js/avatar": "1.12.2",
"@zag-js/carousel": "1.12.2",
"@zag-js/checkbox": "1.12.2",
"@zag-js/clipboard": "1.12.2",
"@zag-js/collapsible": "1.12.2",
"@zag-js/collection": "1.12.2",
"@zag-js/color-picker": "1.12.2",
"@zag-js/color-utils": "1.12.2",
"@zag-js/combobox": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/date-picker": "1.12.2",
"@zag-js/date-utils": "1.12.2",
"@zag-js/dialog": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/editable": "1.12.2",
"@zag-js/file-upload": "1.12.2",
"@zag-js/file-utils": "1.12.2",
"@zag-js/floating-panel": "1.12.2",
"@zag-js/focus-trap": "1.12.2",
"@zag-js/highlight-word": "1.12.2",
"@zag-js/hover-card": "1.12.2",
"@zag-js/i18n-utils": "1.12.2",
"@zag-js/listbox": "1.12.2",
"@zag-js/menu": "1.12.2",
"@zag-js/number-input": "1.12.2",
"@zag-js/pagination": "1.12.2",
"@zag-js/pin-input": "1.12.2",
"@zag-js/popover": "1.12.2",
"@zag-js/presence": "1.12.2",
"@zag-js/progress": "1.12.2",
"@zag-js/qr-code": "1.12.2",
"@zag-js/radio-group": "1.12.2",
"@zag-js/rating-group": "1.12.2",
"@zag-js/react": "1.12.2",
"@zag-js/select": "1.12.2",
"@zag-js/signature-pad": "1.12.2",
"@zag-js/slider": "1.12.2",
"@zag-js/splitter": "1.12.2",
"@zag-js/steps": "1.12.2",
"@zag-js/switch": "1.12.2",
"@zag-js/tabs": "1.12.2",
"@zag-js/tags-input": "1.12.2",
"@zag-js/time-picker": "1.12.2",
"@zag-js/timer": "1.12.2",
"@zag-js/toast": "1.12.2",
"@zag-js/toggle": "1.12.2",
"@zag-js/toggle-group": "1.12.2",
"@zag-js/tooltip": "1.12.2",
"@zag-js/tour": "1.12.2",
"@zag-js/tree-view": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.27.1",
"js-tokens": "^4.0.0",
"picocolors": "^1.1.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/generator": {
"version": "7.27.3",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.3.tgz",
"integrity": "sha512-xnlJYj5zepml8NXtjkG0WquFUv8RskFqyFcVgTBp5k+NaA/8uw/K+OSVf8AMGw5e9HKP2ETd5xpK5MLZQD6b4Q==",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.27.3",
"@babel/types": "^7.27.3",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
"integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
"license": "MIT",
"dependencies": {
"@babel/traverse": "^7.27.1",
"@babel/types": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.27.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.3.tgz",
"integrity": "sha512-xyYxRj6+tLNDTWi0KCBcZ9V7yg3/lwL9DWh9Uwh/RIVlIfFidggcgxKX3GCXwCiswwcGRawBKbEg2LG/Y8eJhw==",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.27.3"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/runtime": {
"version": "7.27.3",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.3.tgz",
"integrity": "sha512-7EYtGezsdiDMyY80+65EzwiGmcJqpmcZCojSXaRgdrBaGtWTgDZKq69cPIVped6MkIM78cTQ2GOiEYjwOlG4xw==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
"version": "7.27.2",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@babel/parser": "^7.27.2",
"@babel/types": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.27.3",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.3.tgz",
"integrity": "sha512-lId/IfN/Ye1CIu8xG7oKBHXd2iNb2aW1ilPszzGcJug6M8RCKfVNcYhpI5+bMvFYjK7lXIM0R+a+6r8xhHp2FQ==",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@babel/generator": "^7.27.3",
"@babel/parser": "^7.27.3",
"@babel/template": "^7.27.2",
"@babel/types": "^7.27.3",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.27.3",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.3.tgz",
"integrity": "sha512-Y1GkI4ktrtvmawoSq+4FCVHNryea6uR+qUQy0AGxLSsjCX0nVmkYQMBLHDkXZuo5hGx7eYdnIaslsdBFm7zbUw==",
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.27.1",
"@babel/helper-validator-identifier": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@chakra-ui/react": {
"version": "3.19.1",
"resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-3.19.1.tgz",
"integrity": "sha512-NxmJUIxy9Uqs2/2WbMBQjU2TdK2AdCO1AfoMz/kI3ia4ig1FJ5NzXRGSEnTGrdOfrqL8GJp4ztbPfc4yspqWsQ==",
"license": "MIT",
"dependencies": {
"@ark-ui/react": "5.9.1",
"@emotion/is-prop-valid": "1.3.1",
"@emotion/serialize": "1.3.3",
"@emotion/use-insertion-effect-with-fallbacks": "1.2.0",
"@emotion/utils": "1.4.2",
"@pandacss/is-valid-prop": "0.53.6",
"csstype": "3.1.3",
"fast-safe-stringify": "2.1.1"
},
"peerDependencies": {
"@emotion/react": ">=11",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@emotion/babel-plugin": {
"version": "11.13.5",
"resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz",
"integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==",
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.16.7",
"@babel/runtime": "^7.18.3",
"@emotion/hash": "^0.9.2",
"@emotion/memoize": "^0.9.0",
"@emotion/serialize": "^1.3.3",
"babel-plugin-macros": "^3.1.0",
"convert-source-map": "^1.5.0",
"escape-string-regexp": "^4.0.0",
"find-root": "^1.1.0",
"source-map": "^0.5.7",
"stylis": "4.2.0"
}
},
"node_modules/@emotion/cache": {
"version": "11.14.0",
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz",
"integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==",
"license": "MIT",
"dependencies": {
"@emotion/memoize": "^0.9.0",
"@emotion/sheet": "^1.4.0",
"@emotion/utils": "^1.4.2",
"@emotion/weak-memoize": "^0.4.0",
"stylis": "4.2.0"
}
},
"node_modules/@emotion/hash": {
"version": "0.9.2",
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
"integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==",
"license": "MIT"
},
"node_modules/@emotion/is-prop-valid": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz",
"integrity": "sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==",
"license": "MIT",
"dependencies": {
"@emotion/memoize": "^0.9.0"
}
},
"node_modules/@emotion/memoize": {
"version": "0.9.0",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
"integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==",
"license": "MIT"
},
"node_modules/@emotion/react": {
"version": "11.14.0",
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
"integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.13.5",
"@emotion/cache": "^11.14.0",
"@emotion/serialize": "^1.3.3",
"@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
"@emotion/utils": "^1.4.2",
"@emotion/weak-memoize": "^0.4.0",
"hoist-non-react-statics": "^3.3.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/serialize": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz",
"integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==",
"license": "MIT",
"dependencies": {
"@emotion/hash": "^0.9.2",
"@emotion/memoize": "^0.9.0",
"@emotion/unitless": "^0.10.0",
"@emotion/utils": "^1.4.2",
"csstype": "^3.0.2"
}
},
"node_modules/@emotion/sheet": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
"integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==",
"license": "MIT"
},
"node_modules/@emotion/styled": {
"version": "11.14.0",
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.0.tgz",
"integrity": "sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.13.5",
"@emotion/is-prop-valid": "^1.3.0",
"@emotion/serialize": "^1.3.3",
"@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
"@emotion/utils": "^1.4.2"
},
"peerDependencies": {
"@emotion/react": "^11.0.0-rc.0",
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/unitless": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz",
"integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==",
"license": "MIT"
},
"node_modules/@emotion/use-insertion-effect-with-fallbacks": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz",
"integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0"
}
},
"node_modules/@emotion/utils": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz",
"integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==",
"license": "MIT"
},
"node_modules/@emotion/weak-memoize": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz",
"integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==",
"license": "MIT"
},
"node_modules/@floating-ui/core": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.0.tgz",
"integrity": "sha512-FRdBLykrPPA6P76GGGqlex/e7fbe0F1ykgxHYNXQsH/iTEtjMj/f9bpY5oQqbjt5VgZvgz/uKXbGuROijh3VLA==",
"license": "MIT",
"dependencies": {
"@floating-ui/utils": "^0.2.9"
}
},
"node_modules/@floating-ui/dom": {
"version": "1.6.13",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.13.tgz",
"integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==",
"license": "MIT",
"dependencies": {
"@floating-ui/core": "^1.6.0",
"@floating-ui/utils": "^0.2.9"
}
},
"node_modules/@floating-ui/utils": {
"version": "0.2.9",
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.9.tgz",
"integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==",
"license": "MIT"
},
"node_modules/@internationalized/date": {
"version": "3.8.0",
"resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.8.0.tgz",
"integrity": "sha512-J51AJ0fEL68hE4CwGPa6E0PO6JDaVLd8aln48xFCSy7CZkZc96dGEGmLs2OEEbBxcsVZtfrqkXJwI2/MSG8yKw==",
"license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/number": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.6.1.tgz",
"integrity": "sha512-UVsb4bCwbL944E0SX50CHFtWEeZ2uB5VozZ5yDXJdq6iPZsZO5p+bjVMZh2GxHf4Bs/7xtDCcPwEa2NU9DaG/g==",
"license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
"integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
"license": "MIT",
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/set-array": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.25",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"node_modules/@pandacss/is-valid-prop": {
"version": "0.53.6",
"resolved": "https://registry.npmjs.org/@pandacss/is-valid-prop/-/is-valid-prop-0.53.6.tgz",
"integrity": "sha512-TgWBQmz/5j/oAMjavqJAjQh1o+yxhYspKvepXPn4lFhAN3yBhilrw9HliAkvpUr0sB2CkJ2BYMpFXbAJYEocsA=="
},
"node_modules/@swc/helpers": {
"version": "0.5.17",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz",
"integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.8.0"
}
},
"node_modules/@tanstack/query-core": {
"version": "5.77.2",
"resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.77.2.tgz",
"integrity": "sha512-1lqJwPsR6GX6nZFw06erRt518O19tWU6Q+x0fJUygl4lxHCYF2nhzBPwLKk2NPjYOrpR0K567hxPc5K++xDe9Q==",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
}
},
"node_modules/@tanstack/react-query": {
"version": "5.77.2",
"resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.77.2.tgz",
"integrity": "sha512-BRHxWdy1mHmgAcYA/qy2IPLylT81oebLgkm9K85viN2Qol/Vq48t1dzDFeDIVQjTWDV96AmqsLNPlH5HjyKCxA==",
"license": "MIT",
"dependencies": {
"@tanstack/query-core": "5.77.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"peerDependencies": {
"react": "^18 || ^19"
}
},
"node_modules/@types/parse-json": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
"license": "MIT"
},
"node_modules/@zag-js/accordion": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/accordion/-/accordion-1.12.2.tgz",
"integrity": "sha512-EoTVa4Tppgp3bfaOhBrgSyOUeeGWFmXn2gGT9AuMq0x46sc4xw5IsRveYPHwBzifrTE3tAKVIZBA5rFoTaA43Q==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/anatomy": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/anatomy/-/anatomy-1.12.2.tgz",
"integrity": "sha512-avPmEivu4QFAICJ4rogt9ZFMp4trwva11jQfIAHXYDDL6YoF58z69129eLuyVSuSjEQ9EOzxg+fxMjXH2xm7yQ==",
"license": "MIT"
},
"node_modules/@zag-js/angle-slider": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/angle-slider/-/angle-slider-1.12.2.tgz",
"integrity": "sha512-pd62FEJZmnJAjrUcV5J+IayRGrUuMp90EPf5Sd2nwlBoxarmz6mSYr8jpeAPSjeT73rYkph8D+USM4qc3xHanQ==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/rect-utils": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/aria-hidden": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/aria-hidden/-/aria-hidden-1.12.2.tgz",
"integrity": "sha512-xhtgOYYzTztQNKmROpEjkbeVbbvqm70595kOVsQOPhaWKVBK4EySLhYEeTRCjLmK9jVwUWQAETISqyA2za9AfQ==",
"license": "MIT"
},
"node_modules/@zag-js/auto-resize": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/auto-resize/-/auto-resize-1.12.2.tgz",
"integrity": "sha512-LhkL85yuLsIS4t3+XjpJZmZb1hAG9pTf1JIRNQ5HtmoCiOf/wxX73SJdOeQBKfzm1w8Hz5C6skNSxgJuYo0Wzg==",
"license": "MIT",
"dependencies": {
"@zag-js/dom-query": "1.12.2"
}
},
"node_modules/@zag-js/avatar": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/avatar/-/avatar-1.12.2.tgz",
"integrity": "sha512-zAgxzx6dzH2Kds0hGgPBGm1wWjwurn3CojdID6V9awHq+u5aDf/HIKDOIdjaNlTPdXtBeWrzJaKQiqHmNGrong==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/carousel": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/carousel/-/carousel-1.12.2.tgz",
"integrity": "sha512-5nxNzar7wwGJIMV2As2/a2HLju8s7XahaLuq8BCiLQlhDN0N894Y2JazXm1gCthS7FdMlxa433G7bjYrxMYw9Q==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/scroll-snap": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/checkbox": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/checkbox/-/checkbox-1.12.2.tgz",
"integrity": "sha512-9kkmo9lz0eQcIkEmPCbevv6cl5fNRhMvyGKgsCENbaeU2VpntYlF8eRn81S2/7naE0JpXCGq+7jMgHHjKhNHeA==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/focus-visible": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/clipboard": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/clipboard/-/clipboard-1.12.2.tgz",
"integrity": "sha512-lANTh8XOPmEiFUgVfd8+ORdpHC7grPImB3X71Kj1a2hfvEDLI/INop379aNsncboCdJkWp0slRzyquHSOgfaTA==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/collapsible": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/collapsible/-/collapsible-1.12.2.tgz",
"integrity": "sha512-vmYHRhWex2LkcNRvg3oAzhmnF5gR+vBLfRpP8vu3hsX4zAn6GS2GggVeH3prBnNAIsErA4ech29BzqAhp5xeLA==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/collection": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/collection/-/collection-1.12.2.tgz",
"integrity": "sha512-IVEXMBguC/QljCT6L5DsrSYUWvi+SWacGweDm12fckMEwPBpGOxv+dR0yqcjaeNEDuTkT0WHeZaWI/0TNV533g==",
"license": "MIT",
"dependencies": {
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/color-picker": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/color-picker/-/color-picker-1.12.2.tgz",
"integrity": "sha512-HXE5iyQaM7KOyu1SXcVJdDqtuZ+GRpdP8CaJVTz4RkBqaFBd3jrMVr3eW/Hv5N3b7v3vsfGHXXLchte+tcVpnQ==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/color-utils": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dismissable": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/popper": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/color-utils": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/color-utils/-/color-utils-1.12.2.tgz",
"integrity": "sha512-ZfshXAqaHhgo8tieADVZ99AoUTn3IK+K8UZ2cYmiTHkrmXGkXQUGysdqsCYkPE/nzC3CmIXLK4LPj5tHYJVydQ==",
"license": "MIT",
"dependencies": {
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/combobox": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/combobox/-/combobox-1.12.2.tgz",
"integrity": "sha512-PaNSh27057I+kwrfyUWSo0K54hwWK6oP+d0NPez9mrQRABj1wVbPc8R5ouseZqI6LL0zRGc4oZB7Inq1o5usWw==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/aria-hidden": "1.12.2",
"@zag-js/collection": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dismissable": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/popper": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/core": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/core/-/core-1.12.2.tgz",
"integrity": "sha512-deECf4FGOSjmD+f3Y116D9dHYs4NP87GBtQgQQ9oCXP8SOCR3A9gSkUGcFU+cQq2tNA5I1F9KqUElc0fDYfh4w==",
"license": "MIT",
"dependencies": {
"@zag-js/dom-query": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/date-picker": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/date-picker/-/date-picker-1.12.2.tgz",
"integrity": "sha512-su741tKtQgGQ6KwTE2+oOIgGezOq/cQQyIWXUF0jkEyvsSPio06LRel/cvho3QO9oMzR6W7pus5fMOQPPO9Omw==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/date-utils": "1.12.2",
"@zag-js/dismissable": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/live-region": "1.12.2",
"@zag-js/popper": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
},
"peerDependencies": {
"@internationalized/date": ">=3.0.0"
}
},
"node_modules/@zag-js/date-utils": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/date-utils/-/date-utils-1.12.2.tgz",
"integrity": "sha512-FTpwgfk+xoHLQEHEVYO1yoXwgNdwTVlA4XX/IhSqj+3KOTXIu60SymX63fE/rqWzayXmH5m8doP7LGW758u1mg==",
"license": "MIT",
"peerDependencies": {
"@internationalized/date": ">=3.0.0"
}
},
"node_modules/@zag-js/dialog": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/dialog/-/dialog-1.12.2.tgz",
"integrity": "sha512-Eqs/fpFc9wzYQQne4VOh8qivxuJyEcUR+MO/onTSFVV/AaJfXXowsXk7kAzcQrNzbvLn+yuTOCYFlh4QsPlLXA==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/aria-hidden": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dismissable": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/focus-trap": "1.12.2",
"@zag-js/remove-scroll": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/dismissable": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/dismissable/-/dismissable-1.12.2.tgz",
"integrity": "sha512-YIuUx+9mzzf2x9gWayt6T2e2N6nyrlBqzkJfwXJ9R3wEz065AW5X1PeKGGrvYlojPok1yNAaDq6mFL6Rqb6IVg==",
"license": "MIT",
"dependencies": {
"@zag-js/dom-query": "1.12.2",
"@zag-js/interact-outside": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/dom-query": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/dom-query/-/dom-query-1.12.2.tgz",
"integrity": "sha512-UvFHQbkX6zscdYnMYc5TnrV/FkKlb4dMombXO2rD20NStU9gxb7uYtq91aPSO2x7aVCwNWuPWRb1nFAYGFBOvw==",
"license": "MIT",
"dependencies": {
"@zag-js/types": "1.12.2"
}
},
"node_modules/@zag-js/editable": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/editable/-/editable-1.12.2.tgz",
"integrity": "sha512-kL6LulJKFOU8riW4tzM5QhAm6I6+zjfw28FjhOny7r4Mtc0HRQUJfh6WzlBcq72fqxvvf8J2OuVq2yeWPE9XBw==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/interact-outside": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/file-upload": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/file-upload/-/file-upload-1.12.2.tgz",
"integrity": "sha512-JOjW4JGwRKVpDjZcLCU/qEAVNeUJbb9hYdmAvIAtBmf34VL3q17jsCKDvIZsxasSI0cOhuROhtWhnPXK0/lj6A==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/file-utils": "1.12.2",
"@zag-js/i18n-utils": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/file-utils": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/file-utils/-/file-utils-1.12.2.tgz",
"integrity": "sha512-E28mzjlG53RyApOGrc+gELXcrUpm6lIyWTo0ScJ7Nqlu5fe2Cy69bHyULECz3cI7/XK454yRA5Le7DifbyJQwQ==",
"license": "MIT",
"dependencies": {
"@zag-js/i18n-utils": "1.12.2"
}
},
"node_modules/@zag-js/floating-panel": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/floating-panel/-/floating-panel-1.12.2.tgz",
"integrity": "sha512-L7nxKWQEg4LB+FTwcqs5qlWaYJ8ZA3aDrZXtxqDtqltGeICAlV/0CkjwNhdX4DyGt4VLgLLYqE3Ciq0tJ1PO9g==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dismissable": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/popper": "1.12.2",
"@zag-js/rect-utils": "1.12.2",
"@zag-js/store": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/focus-trap": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/focus-trap/-/focus-trap-1.12.2.tgz",
"integrity": "sha512-YhlkuxvRcmVhWZa08GqGbqkbL2M0Ae72+NVjoFhlpourgERsatJjvQ8SCx5SEpPcVQQc86Zh+4QAHrdQ4//20g==",
"license": "MIT",
"dependencies": {
"@zag-js/dom-query": "1.12.2"
}
},
"node_modules/@zag-js/focus-visible": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/focus-visible/-/focus-visible-1.12.2.tgz",
"integrity": "sha512-rXr8+ngjbSYDZDzpP3ckCvaqodvlOuIjfKYUnTYM717l5rYCIrn2vFF+ncDdelcWRBRv5nq7o79vjsqKU+1Bww==",
"license": "MIT",
"dependencies": {
"@zag-js/dom-query": "1.12.2"
}
},
"node_modules/@zag-js/highlight-word": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/highlight-word/-/highlight-word-1.12.2.tgz",
"integrity": "sha512-M3bX0EeFZ5mh49B6IKTQKyPUZPMmO/7gImPr/1OmffUHUzr8EQT6M6WJBoDGB3dvGcPoahbNuGoZd3Jw48+1mA==",
"license": "MIT"
},
"node_modules/@zag-js/hover-card": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/hover-card/-/hover-card-1.12.2.tgz",
"integrity": "sha512-lxReLOp0kB6roMiZHz3yigKjqX541x9axIyWzwfeZmZ1Hqg46hoh5OYi0NclQ2zEFw6BMNLAc8ZVoWToBQSfTg==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dismissable": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/popper": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/i18n-utils": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/i18n-utils/-/i18n-utils-1.12.2.tgz",
"integrity": "sha512-P3wuPeFXWC8LW+ZzSdmaRLsSDlrQT0FU7Sx3z4IkZXr8mV+QMg5fh95dmXNIDkEcG6zL7PHwt2ho80m/KuFcfA==",
"license": "MIT",
"dependencies": {
"@zag-js/dom-query": "1.12.2"
}
},
"node_modules/@zag-js/interact-outside": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/interact-outside/-/interact-outside-1.12.2.tgz",
"integrity": "sha512-ii7ZKufyF+kDr2WcwVgGZZQXrd/GmNYeJ4heR/RO7q3PxYv9le+GFq3evbtBhhVQ/0P3IqZZ8bZL0f/7qQyKKg==",
"license": "MIT",
"dependencies": {
"@zag-js/dom-query": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/listbox": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/listbox/-/listbox-1.12.2.tgz",
"integrity": "sha512-EczE94iUzcKIqZhQ5SqaSiLkH88M+APrOp+xI+kHSDUt0SD4TQur6O/ALKFfBPT8Kip5iPK3Er5+t7PkC1wnvg==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/collection": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/focus-visible": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/live-region": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/live-region/-/live-region-1.12.2.tgz",
"integrity": "sha512-yu1a7jKoheMmeiU4cYRqod2u7JiD1o7Cgi9af1PSBcU9vFJTUpIDJErRCI79vuPSugFvpP38Cjtc3LlgE3uGyA==",
"license": "MIT"
},
"node_modules/@zag-js/menu": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/menu/-/menu-1.12.2.tgz",
"integrity": "sha512-Ja2RfNLHZOIBuSDRu7lS+0dfRfOov0xdA2RU8yZJBJupZBKT49tBEktJfWNr1YV3GDdlPoGSFVL2ogjNxtzDXQ==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dismissable": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/popper": "1.12.2",
"@zag-js/rect-utils": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/number-input": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/number-input/-/number-input-1.12.2.tgz",
"integrity": "sha512-YesH2jaFwjRxfqdXUfjGgaAcLjoPPCYkltdC7wEBCNgAqU8UKZ+tktVHnfzZoLZiKqkQ9TXXOC4Ic6cmjXC2UQ==",
"license": "MIT",
"dependencies": {
"@internationalized/number": "3.6.1",
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/pagination": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/pagination/-/pagination-1.12.2.tgz",
"integrity": "sha512-5ly8eQg/58RV0blov46oZ5vhudWMxH+9rZw0LA6Hci3lGrmDjEezOkKmN0Om8PV+xoYcrCl0nnptxALChHCNSQ==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/pin-input": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/pin-input/-/pin-input-1.12.2.tgz",
"integrity": "sha512-cRg4FOpL9wTGRztx+qk1Sx8aakXsGw7B8+AnboT12zcW64pYF72hqJUSrz13S2um7MhDJskPrdOetal4GBqWFw==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/popover": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/popover/-/popover-1.12.2.tgz",
"integrity": "sha512-wOYf4eNXWoZlBwNlF4EGYHsaGOrGsVIVVteCB/xSr9AXBrTF7CQiSwH445+m7u0KBZnDfsY61JweNx5U9FAmKA==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/aria-hidden": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dismissable": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/focus-trap": "1.12.2",
"@zag-js/popper": "1.12.2",
"@zag-js/remove-scroll": "1.12.2",
"@zag-js/types": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/popper": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/popper/-/popper-1.12.2.tgz",
"integrity": "sha512-FoUx39kjStc7CUEtxCfcIlrQ0Oq9HH2As9HKz9b4IMwBg3u39sVP2XtHUQdHqNzMoscSsRtAqaTHMmRBz++GIA==",
"license": "MIT",
"dependencies": {
"@floating-ui/dom": "1.6.13",
"@zag-js/dom-query": "1.12.2",
"@zag-js/utils": "1.12.2"
}
},
"node_modules/@zag-js/presence": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/presence/-/presence-1.12.2.tgz",
"integrity": "sha512-V2oNmwe3qYXxAi9Cx1y+RAdb75fexJA+m0VgmO2R5tL4DIFA/CcHB5lc4yPxUzYw2fNwVZGd6F6eUX0Ys0Sp3A==",
"license": "MIT",
"dependencies": {
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",
"@zag-js/types": "1.12.2"
}
},
"node_modules/@zag-js/progress": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@zag-js/progress/-/progress-1.12.2.tgz",
"integrity": "sha512-B1jgP7iKYV3CwI33bnXPG4Hg7dr/9xl3FkYoM7hk8m5gD4b3zW1eJN8vQejKbARbxki0w/sv3r2DHCF14S7yMQ==",
"license": "MIT",
"dependencies": {
"@zag-js/anatomy": "1.12.2",
"@zag-js/core": "1.12.2",
"@zag-js/dom-query": "1.12.2",