-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathregistry.json
More file actions
1623 lines (1623 loc) · 48.4 KB
/
Copy pathregistry.json
File metadata and controls
1623 lines (1623 loc) · 48.4 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
{
"$schema": "https://shadcn-svelte.com/schema/registry.json",
"name": "Svelte Animations",
"homepage": "https://sv-animations.vercel.app",
"items": [
{
"name": "animated-gradient-text",
"type": "registry:block",
"title": "Animated Gradient Text",
"description": "An animated gradient background which transitions between colors for text.",
"files": [
{
"path": "./src/lib/components/magic/animated-gradient-text/animated-gradient-text.svelte",
"type": "registry:component",
"target": "magic/animated-gradient-text/animated-gradient-text.svelte"
},
{
"path": "./src/lib/components/magic/animated-gradient-text/index.ts",
"type": "registry:file",
"target": "magic/animated-gradient-text/index.ts"
}
],
"registryDependencies": [],
"cssVars": {
"theme": {
"animate-gradient": "gradient 8s linear infinite"
}
},
"css": {
"@keyframes gradient": {
"to": {
"background-position": "var(--bg-size, 300%) 0"
}
}
}
},
{
"name": "text-animate",
"type": "registry:block",
"title": "Text Animate",
"description": "Animate text with various effects like blur, slide, scale, and fade with granular control over words, characters, or lines.",
"files": [
{
"path": "./src/lib/components/magic/text-animate/text-animate.svelte",
"type": "registry:component",
"target": "magic/text-animate/text-animate.svelte"
},
{
"path": "./src/lib/components/magic/text-animate/index.ts",
"type": "registry:file",
"target": "magic/text-animate/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["runed", "motion-sv"]
},
{
"name": "animated-beam",
"type": "registry:block",
"title": "Animated Beam",
"description": "A component for creating animated beam effects between two elements with customizable gradients and paths.",
"files": [
{
"path": "./src/lib/components/magic/animated-beam/animated-beam.svelte",
"type": "registry:component",
"target": "magic/animated-beam/animated-beam.svelte"
},
{
"path": "./src/lib/components/magic/animated-beam/index.ts",
"type": "registry:file",
"target": "magic/animated-beam/index.ts"
},
{
"path": "./src/lib/components/magic/animated-beam/types.ts",
"type": "registry:file",
"target": "magic/animated-beam/types.ts"
},
{
"path": "./src/lib/components/magic/animated-beam/use-gradient-coordinates.svelte.ts",
"type": "registry:file",
"target": "magic/animated-beam/use-gradient-coordinates.svelte.ts"
},
{
"path": "./src/lib/components/magic/animated-beam/use-path-calculator.svelte.ts",
"type": "registry:file",
"target": "magic/animated-beam/use-path-calculator.svelte.ts"
},
{
"path": "./src/lib/components/magic/animated-beam/use-resize-observer.svelte.ts",
"type": "registry:file",
"target": "magic/animated-beam/use-resize-observer.svelte.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "animated-theme-toggler",
"type": "registry:block",
"title": "Animated Theme Toggler",
"description": "A smooth animated theme toggler that uses the View Transition API to create a circular reveal effect when switching between light and dark themes.",
"files": [
{
"path": "./src/lib/components/magic/animated-theme-toggler/animated-theme-toggler.svelte",
"type": "registry:component",
"target": "magic/animated-theme-toggler/animated-theme-toggler.svelte"
},
{
"path": "./src/lib/components/magic/animated-theme-toggler/index.ts",
"type": "registry:file",
"target": "magic/animated-theme-toggler/index.ts"
}
],
"registryDependencies": [],
"cssVars": {},
"css": {
"::view-transition-old(root), ::view-transition-new(root)": {
"animation": "none",
"mix-blend-mode": "normal"
}
}
},
{
"name": "arc-timeline",
"type": "registry:block",
"title": "Arc Timeline",
"description": "A curved timeline that rotates through milestone steps with clickable markers, icons, and configurable spacing.",
"files": [
{
"path": "./src/lib/components/magic/arc-timeline/arc-timeline.svelte",
"type": "registry:component",
"target": "magic/arc-timeline/arc-timeline.svelte"
},
{
"path": "./src/lib/components/magic/arc-timeline/index.ts",
"type": "registry:file",
"target": "magic/arc-timeline/index.ts"
},
{
"path": "./src/lib/components/magic/arc-timeline/types.ts",
"type": "registry:file",
"target": "magic/arc-timeline/types.ts"
}
],
"registryDependencies": []
},
{
"name": "animated-circular-progress-bar",
"type": "registry:block",
"title": "Animated Circular Progress Bar",
"description": "A circular progress bar component with animated transitions between primary and secondary colors.",
"files": [
{
"path": "./src/lib/components/magic/animated-circular-progress-bar/animated-circular-progress-bar.svelte",
"type": "registry:component",
"target": "magic/animated-circular-progress-bar/animated-circular-progress-bar.svelte"
},
{
"path": "./src/lib/components/magic/animated-circular-progress-bar/index.ts",
"type": "registry:file",
"target": "magic/animated-circular-progress-bar/index.ts"
}
],
"registryDependencies": []
},
{
"name": "animated-grid-pattern",
"type": "registry:block",
"title": "Animated Grid Pattern",
"description": "An animated grid pattern component that creates a dynamic background with moving squares that fade in and out.",
"files": [
{
"path": "./src/lib/components/magic/animated-grid-pattern/animated-grid-pattern.svelte",
"type": "registry:component",
"target": "magic/animated-grid-pattern/animated-grid-pattern.svelte"
},
{
"path": "./src/lib/components/magic/animated-grid-pattern/index.ts",
"type": "registry:file",
"target": "magic/animated-grid-pattern/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "blur-fade",
"type": "registry:block",
"title": "Blur Fade",
"description": "A component that animates content with blur and fade effects, supporting directional movement and intersection observer triggering.",
"files": [
{
"path": "./src/lib/components/magic/blur-fade/blur-fade.svelte",
"type": "registry:component",
"target": "magic/blur-fade/blur-fade.svelte"
},
{
"path": "./src/lib/components/magic/blur-fade/index.ts",
"type": "registry:file",
"target": "magic/blur-fade/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["runed", "motion-sv"]
},
{
"name": "border-beam",
"type": "registry:block",
"title": "Border Beam",
"description": "A component for creating animated border beam effects around elements with customizable gradients, duration, and direction.",
"files": [
{
"path": "./src/lib/components/magic/border-beam/border-beam.svelte",
"type": "registry:component",
"target": "magic/border-beam/border-beam.svelte"
},
{
"path": "./src/lib/components/magic/border-beam/index.ts",
"type": "registry:file",
"target": "magic/border-beam/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "file-tree",
"type": "registry:block",
"title": "File Tree",
"description": "An interactive file tree component with expandable folders, selectable files, and smooth animations.",
"files": [
{
"path": "./src/lib/components/magic/file-tree/file-tree.svelte",
"type": "registry:component",
"target": "magic/file-tree/file-tree.svelte"
},
{
"path": "./src/lib/components/magic/file-tree/folder.svelte",
"type": "registry:component",
"target": "magic/file-tree/folder.svelte"
},
{
"path": "./src/lib/components/magic/file-tree/file.svelte",
"type": "registry:component",
"target": "magic/file-tree/file.svelte"
},
{
"path": "./src/lib/components/magic/file-tree/collapse-button.svelte",
"type": "registry:component",
"target": "magic/file-tree/collapse-button.svelte"
},
{
"path": "./src/lib/components/magic/file-tree/index.ts",
"type": "registry:file",
"target": "magic/file-tree/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["@lucide/svelte", "motion-sv"]
},
{
"name": "dot-pattern",
"type": "registry:block",
"title": "Dot Pattern",
"description": "A customizable dot pattern background component with optional glow animations and mask effects.",
"files": [
{
"path": "./src/lib/components/magic/dot-pattern/dot-pattern.svelte",
"type": "registry:component",
"target": "magic/dot-pattern/dot-pattern.svelte"
},
{
"path": "./src/lib/components/magic/dot-pattern/index.ts",
"type": "registry:file",
"target": "magic/dot-pattern/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "dia-text-reveal",
"type": "registry:block",
"title": "Dia Text Reveal",
"description": "A sweeping gradient text reveal with viewport triggering and rotating text support.",
"files": [
{
"path": "./src/lib/components/magic/dia-text-reveal/dia-text-reveal.svelte",
"type": "registry:component",
"target": "magic/dia-text-reveal/dia-text-reveal.svelte"
},
{
"path": "./src/lib/components/magic/dia-text-reveal/index.ts",
"type": "registry:file",
"target": "magic/dia-text-reveal/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "cool-mode",
"type": "registry:block",
"title": "Cool Mode",
"description": "Add a fun particle effect that follows mouse interactions, with support for emojis, images, and custom shapes.",
"files": [
{
"path": "./src/lib/components/magic/cool-mode/cool-mode.svelte",
"type": "registry:component",
"target": "magic/cool-mode/cool-mode.svelte"
},
{
"path": "./src/lib/components/magic/cool-mode/index.ts",
"type": "registry:file",
"target": "magic/cool-mode/index.ts"
}
],
"registryDependencies": []
},
{
"name": "shine-border",
"type": "registry:block",
"title": "Shine Border",
"description": "A component that adds a shining animated border effect with customizable colors, duration, and border width.",
"files": [
{
"path": "./src/lib/components/magic/shine-border/shine-border.svelte",
"type": "registry:component",
"target": "magic/shine-border/shine-border.svelte"
},
{
"path": "./src/lib/components/magic/shine-border/index.ts",
"type": "registry:file",
"target": "magic/shine-border/index.ts"
}
],
"registryDependencies": [],
"cssVars": {
"theme": {
"animate-shine": "shine var(--duration) infinite linear"
}
},
"css": {
"@keyframes shine": {
"0%": {
"background-position": "0% 0%"
},
"50%": {
"background-position": "100% 100%"
},
"100%": {
"background-position": "0% 0%"
}
}
}
},
{
"name": "animated-list",
"type": "registry:block",
"title": "Animated List",
"description": "A component that animates list items with smooth layout transitions, revealing items one by one from top to bottom.",
"files": [
{
"path": "./src/lib/components/magic/animated-list/animated-list.svelte",
"type": "registry:component",
"target": "magic/animated-list/animated-list.svelte"
},
{
"path": "./src/lib/components/magic/animated-list/index.ts",
"type": "registry:file",
"target": "magic/animated-list/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "animated-shiny-text",
"type": "registry:block",
"title": "Animated Shiny Text",
"description": "A shimmering text effect component that creates a moving shine animation across text.",
"files": [
{
"path": "./src/lib/components/magic/animated-shiny-text/animated-shiny-text.svelte",
"type": "registry:component",
"target": "magic/animated-shiny-text/animated-shiny-text.svelte"
}
],
"registryDependencies": [],
"cssVars": {
"theme": {
"animate-shiny-text": "shiny-text 8s infinite"
}
},
"css": {
"@keyframes shiny-text": {
"0%, 90%, 100%": {
"background-position": "calc(-100% - var(--shiny-width)) 0"
},
"30%, 60%": {
"background-position": "calc(100% + var(--shiny-width)) 0"
}
}
}
},
{
"name": "aurora-text",
"type": "registry:block",
"title": "Aurora Text",
"description": "A text component with animated aurora gradient effect that smoothly transitions between customizable colors.",
"files": [
{
"path": "./src/lib/components/magic/aurora-text/aurora-text.svelte",
"type": "registry:component",
"target": "magic/aurora-text/aurora-text.svelte"
},
{
"path": "./src/lib/components/magic/aurora-text/index.ts",
"type": "registry:file",
"target": "magic/aurora-text/index.ts"
}
],
"registryDependencies": [],
"cssVars": {
"theme": {
"animate-aurora": "aurora 8s ease-in-out infinite alternate"
}
},
"css": {
"@keyframes aurora": {
"0%": {
"background-position": "0% 50%",
"transform": "rotate(-5deg) scale(0.9)"
},
"25%": {
"background-position": "50% 100%",
"transform": "rotate(5deg) scale(1.1)"
},
"50%": {
"background-position": "100% 50%",
"transform": "rotate(-3deg) scale(0.95)"
},
"75%": {
"background-position": "50% 0%",
"transform": "rotate(3deg) scale(1.05)"
},
"100%": {
"background-position": "0% 50%",
"transform": "rotate(-5deg) scale(0.9)"
}
}
}
},
{
"name": "backlight",
"type": "registry:block",
"title": "Backlight",
"description": "An SVG filter wrapper that adds a soft, saturated backlight glow around the content it wraps.",
"files": [
{
"path": "./src/lib/components/magic/backlight/backlight.svelte",
"type": "registry:component",
"target": "magic/backlight/backlight.svelte"
},
{
"path": "./src/lib/components/magic/backlight/index.ts",
"type": "registry:file",
"target": "magic/backlight/index.ts"
}
],
"registryDependencies": []
},
{
"name": "avatar-circles",
"type": "registry:block",
"title": "Avatar Circles",
"description": "A component that displays overlapping avatar circles with optional count indicator for showing team members or contributors.",
"files": [
{
"path": "./src/lib/components/magic/avatar-circles/avatar-circles.svelte",
"type": "registry:component",
"target": "magic/avatar-circles/avatar-circles.svelte"
},
{
"path": "./src/lib/components/magic/avatar-circles/index.ts",
"type": "registry:file",
"target": "magic/avatar-circles/index.ts"
}
],
"registryDependencies": []
},
{
"name": "dotted-map",
"type": "registry:block",
"title": "Dotted Map",
"description": "A world map component rendered with dots, supporting custom markers with staggered entrance animations.",
"files": [
{
"path": "./src/lib/components/magic/dotted-map/dotted-map.svelte",
"type": "registry:component",
"target": "magic/dotted-map/dotted-map.svelte"
},
{
"path": "./src/lib/components/magic/dotted-map/index.ts",
"type": "registry:file",
"target": "magic/dotted-map/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["piri"]
},
{
"name": "marquee",
"type": "registry:block",
"title": "Marquee",
"description": "A smooth scrolling marquee component with support for horizontal and vertical directions, pause on hover, and reverse animation.",
"files": [
{
"path": "./src/lib/components/magic/marquee/marquee.svelte",
"type": "registry:component",
"target": "magic/marquee/marquee.svelte"
},
{
"path": "./src/lib/components/magic/marquee/index.ts",
"type": "registry:file",
"target": "magic/marquee/index.ts"
}
],
"registryDependencies": [],
"cssVars": {
"theme": {
"animate-marquee": "marquee var(--duration) linear infinite",
"animate-marquee-vertical": "marquee-vertical var(--duration) linear infinite"
}
},
"css": {
"@keyframes marquee": {
"from": {
"transform": "translateX(0)"
},
"to": {
"transform": "translateX(calc(-100% - var(--gap)))"
}
},
"@keyframes marquee-vertical": {
"from": {
"transform": "translateY(0)"
},
"to": {
"transform": "translateY(calc(-100% - var(--gap)))"
}
}
}
},
{
"name": "meteors",
"type": "registry:block",
"title": "Meteors",
"description": "A meteor shower effect component with customizable number of meteors and animated falling effects.",
"files": [
{
"path": "./src/lib/components/magic/meteors/meteors.svelte",
"type": "registry:component",
"target": "magic/meteors/meteors.svelte"
},
{
"path": "./src/lib/components/magic/meteors/index.ts",
"type": "registry:file",
"target": "magic/meteors/index.ts"
}
],
"registryDependencies": [],
"cssVars": {
"theme": {
"animate-meteor": "meteor 5s linear infinite"
}
},
"css": {
"@keyframes meteor": {
"0%": {
"transform": "rotate(var(--angle)) translateX(0)",
"opacity": "1"
},
"70%": {
"opacity": "1"
},
"100%": {
"transform": "rotate(var(--angle)) translateX(-500px)",
"opacity": "0"
}
}
}
},
{
"name": "pixel-image",
"type": "registry:block",
"title": "Pixel Image",
"description": "An image component that reveals itself through a pixelated grid animation with optional grayscale to color transition.",
"files": [
{
"path": "./src/lib/components/magic/pixel-image/pixel-image.svelte",
"type": "registry:component",
"target": "magic/pixel-image/pixel-image.svelte"
},
{
"path": "./src/lib/components/magic/pixel-image/index.ts",
"type": "registry:file",
"target": "magic/pixel-image/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv", "runed"]
},
{
"name": "striped-pattern",
"type": "registry:block",
"title": "Striped Pattern",
"description": "An SVG-based striped pattern background component with configurable direction and stripe dimensions.",
"files": [
{
"path": "./src/lib/components/magic/striped-pattern/striped-pattern.svelte",
"type": "registry:component",
"target": "magic/striped-pattern/striped-pattern.svelte"
},
{
"path": "./src/lib/components/magic/striped-pattern/index.ts",
"type": "registry:file",
"target": "magic/striped-pattern/index.ts"
}
],
"registryDependencies": []
},
{
"name": "typing-animation",
"type": "registry:block",
"title": "Typing Animation",
"description": "A typewriter effect component that types out text with customizable speed, cursor styles, and support for cycling through multiple words.",
"files": [
{
"path": "./src/lib/components/magic/typing-animation/typing-animation.svelte",
"type": "registry:component",
"target": "magic/typing-animation/typing-animation.svelte"
},
{
"path": "./src/lib/components/magic/typing-animation/index.ts",
"type": "registry:file",
"target": "magic/typing-animation/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["runed", "motion-sv"]
},
{
"name": "flickering-grid",
"type": "registry:block",
"title": "Flickering Grid",
"description": "An animated flickering grid pattern component that creates a dynamic canvas-based background with randomly flickering squares.",
"files": [
{
"path": "./src/lib/components/magic/flickering-grid/flickering-grid.svelte",
"type": "registry:component",
"target": "magic/flickering-grid/flickering-grid.svelte"
},
{
"path": "./src/lib/components/magic/flickering-grid/index.ts",
"type": "registry:file",
"target": "magic/flickering-grid/index.ts"
}
],
"registryDependencies": []
},
{
"name": "grid-pattern",
"type": "registry:block",
"title": "Grid Pattern",
"description": "An SVG-based grid pattern background component with support for highlighted squares and customizable grid dimensions.",
"files": [
{
"path": "./src/lib/components/magic/grid-pattern/grid-pattern.svelte",
"type": "registry:component",
"target": "magic/grid-pattern/grid-pattern.svelte"
},
{
"path": "./src/lib/components/magic/grid-pattern/index.ts",
"type": "registry:file",
"target": "magic/grid-pattern/index.ts"
}
],
"registryDependencies": []
},
{
"name": "glare-hover",
"type": "registry:block",
"title": "Glare Hover",
"description": "A glare hover effect that adds a subtle shine to elements when hovered.",
"files": [
{
"path": "./src/lib/components/magic/glare-hover/glare-hover.svelte",
"type": "registry:component",
"target": "magic/glare-hover/glare-hover.svelte"
},
{
"path": "./src/lib/components/magic/glare-hover/index.ts",
"type": "registry:file",
"target": "magic/glare-hover/index.ts"
}
],
"registryDependencies": []
},
{
"name": "globe",
"type": "registry:block",
"title": "Globe",
"description": "An autorotating, interactive, and highly performant globe made using WebGL.",
"files": [
{
"path": "./src/lib/components/magic/globe/globe.svelte",
"type": "registry:component",
"target": "magic/globe/globe.svelte"
},
{
"path": "./src/lib/components/magic/globe/index.ts",
"type": "registry:file",
"target": "magic/globe/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["cobe"]
},
{
"name": "hero-video-dialog",
"type": "registry:block",
"title": "Hero Video Dialog",
"description": "A video dialog component with animated entrance effects, thumbnail support, and customizable animation styles.",
"files": [
{
"path": "./src/lib/components/magic/hero-video-dialog/hero-video-dialog.svelte",
"type": "registry:component",
"target": "magic/hero-video-dialog/hero-video-dialog.svelte"
},
{
"path": "./src/lib/components/magic/hero-video-dialog/index.ts",
"type": "registry:file",
"target": "magic/hero-video-dialog/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["@lucide/svelte", "motion-sv"]
},
{
"name": "hexagon-pattern",
"type": "registry:block",
"title": "Hexagon Pattern",
"description": "An SVG-based hexagon pattern background component with configurable radius, gap, direction, and highlighted cells.",
"files": [
{
"path": "./src/lib/components/magic/hexagon-pattern/hexagon-pattern.svelte",
"type": "registry:component",
"target": "magic/hexagon-pattern/hexagon-pattern.svelte"
},
{
"path": "./src/lib/components/magic/hexagon-pattern/index.ts",
"type": "registry:file",
"target": "magic/hexagon-pattern/index.ts"
}
],
"registryDependencies": []
},
{
"name": "hyper-text",
"type": "registry:block",
"title": "Hyper Text",
"description": "An animated text component that creates a glitch effect by cycling through random characters before revealing the final text.",
"files": [
{
"path": "./src/lib/components/magic/hyper-text/hyper-text.svelte",
"type": "registry:component",
"target": "magic/hyper-text/hyper-text.svelte"
},
{
"path": "./src/lib/components/magic/hyper-text/index.ts",
"type": "registry:file",
"target": "magic/hyper-text/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "icon-cloud",
"type": "registry:block",
"title": "Icon Cloud",
"description": "An interactive 3D tag cloud component that displays icons or images in a sphere formation with smooth rotation and drag interactions.",
"files": [
{
"path": "./src/lib/components/magic/icon-cloud/icon-cloud.svelte",
"type": "registry:component",
"target": "magic/icon-cloud/icon-cloud.svelte"
},
{
"path": "./src/lib/components/magic/icon-cloud/index.ts",
"type": "registry:file",
"target": "magic/icon-cloud/index.ts"
}
],
"registryDependencies": [],
"dependencies": []
},
{
"name": "interactive-hover-button",
"type": "registry:block",
"title": "Interactive Hover Button",
"description": "A button with an interactive hover effect featuring an expanding dot and sliding text animation with an arrow.",
"files": [
{
"path": "./src/lib/components/magic/interactive-hover-button/interactive-hover-button.svelte",
"type": "registry:component",
"target": "magic/interactive-hover-button/interactive-hover-button.svelte"
},
{
"path": "./src/lib/components/magic/interactive-hover-button/index.ts",
"type": "registry:file",
"target": "magic/interactive-hover-button/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["@lucide/svelte"]
},
{
"name": "light-rays",
"type": "registry:block",
"title": "Light Rays",
"description": "A component that creates animated light rays with customizable count, color, blur, speed, and length.",
"files": [
{
"path": "./src/lib/components/magic/light-rays/light-rays.svelte",
"type": "registry:component",
"target": "magic/light-rays/light-rays.svelte"
},
{
"path": "./src/lib/components/magic/light-rays/index.ts",
"type": "registry:file",
"target": "magic/light-rays/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "line-shadow-text",
"type": "registry:block",
"title": "Line Shadow Text",
"description": "A text component with an animated diagonal line shadow effect that moves across the text.",
"files": [
{
"path": "./src/lib/components/magic/line-shadow-text/line-shadow-text.svelte",
"type": "registry:component",
"target": "magic/line-shadow-text/line-shadow-text.svelte"
},
{
"path": "./src/lib/components/magic/line-shadow-text/index.ts",
"type": "registry:file",
"target": "magic/line-shadow-text/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"],
"cssVars": {
"theme": {
"animate-line-shadow": "line-shadow 15s linear infinite"
}
},
"css": {
"@keyframes line-shadow": {
"0%": {
"background-position": "0 0"
},
"100%": {
"background-position": "100% -100%"
}
}
}
},
{
"name": "motion-grid",
"type": "registry:block",
"title": "Motion Grid",
"description": "A frame-based 2D grid animation primitive with active/inactive cell states.",
"files": [
{
"path": "./src/lib/components/magic/motion-grid/motion-grid.svelte",
"type": "registry:component",
"target": "magic/motion-grid/motion-grid.svelte"
},
{
"path": "./src/lib/components/magic/motion-grid/motion-grid-cells.svelte",
"type": "registry:component",
"target": "magic/motion-grid/motion-grid-cells.svelte"
},
{
"path": "./src/lib/components/magic/motion-grid/index.ts",
"type": "registry:file",
"target": "magic/motion-grid/index.ts"
},
{
"path": "./src/lib/components/magic/motion-grid/types.ts",
"type": "registry:file",
"target": "magic/motion-grid/types.ts"
},
{
"path": "./src/lib/components/magic/motion-grid/use-motion-grid-context.svelte.ts",
"type": "registry:file",
"target": "magic/motion-grid/use-motion-grid-context.svelte.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "morphing-text",
"type": "registry:block",
"title": "Morphing Text",
"description": "A text component that smoothly morphs between multiple text strings with a blur transition effect.",
"files": [
{
"path": "./src/lib/components/magic/morphing-text/morphing-text.svelte",
"type": "registry:component",
"target": "magic/morphing-text/morphing-text.svelte"
},
{
"path": "./src/lib/components/magic/morphing-text/index.ts",
"type": "registry:file",
"target": "magic/morphing-text/index.ts"
}
],
"registryDependencies": []
},
{
"name": "neon-gradient-card",
"type": "registry:block",
"title": "Neon Gradient Card",
"description": "A card component with animated neon gradient borders and customizable colors, border size, and radius.",
"files": [
{
"path": "./src/lib/components/magic/neon-gradient-card/neon-gradient-card.svelte",
"type": "registry:component",
"target": "magic/neon-gradient-card/neon-gradient-card.svelte"
},
{
"path": "./src/lib/components/magic/neon-gradient-card/index.ts",
"type": "registry:file",
"target": "magic/neon-gradient-card/index.ts"
}
],
"registryDependencies": []
},
{
"name": "noise-texture",
"type": "registry:block",
"title": "Noise Texture",
"description": "An SVG fractal noise layer using feTurbulence for subtle texture overlays.",
"files": [
{
"path": "./src/lib/components/magic/noise-texture/noise-texture.svelte",
"type": "registry:component",
"target": "magic/noise-texture/noise-texture.svelte"
},
{
"path": "./src/lib/components/magic/noise-texture/index.ts",
"type": "registry:file",
"target": "magic/noise-texture/index.ts"
}
],
"registryDependencies": []
},
{
"name": "number-ticker",
"type": "registry:block",
"title": "Number Ticker",
"description": "An animated number counter component with spring physics that smoothly animates from a start value to an end value.",
"files": [
{
"path": "./src/lib/components/magic/number-ticker/number-ticker.svelte",
"type": "registry:component",
"target": "magic/number-ticker/number-ticker.svelte"
},
{
"path": "./src/lib/components/magic/number-ticker/index.ts",
"type": "registry:file",
"target": "magic/number-ticker/index.ts"
}
],
"registryDependencies": [],
"dependencies": ["motion-sv"]
},
{
"name": "pulsating-button",
"type": "registry:block",
"title": "Pulsating Button",
"description": "A button component with a pulsating ring effect that expands and fades around the button.",