-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
1517 lines (1517 loc) · 52.3 KB
/
Copy pathregistry.json
File metadata and controls
1517 lines (1517 loc) · 52.3 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://ui.shadcn.com/schema/registry.json",
"name": "reactomega",
"version": "1.2.0",
"homepage": "https://github.com/Edwson/ReactOmega",
"base": "https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r",
"items": [
{
"name": "utils",
"type": "registry:lib",
"title": "cn() utility",
"description": "Tailwind class merge helper used by every component.",
"dependencies": [
"clsx",
"tailwind-merge"
],
"registryDependencies": [],
"files": [
{
"path": "lib/utils.ts",
"type": "registry:lib",
"target": "lib/utils.ts"
}
]
},
{
"name": "use-prefers-reduced-motion",
"type": "registry:hook",
"title": "usePrefersReducedMotion()",
"description": "React hook that tracks the user's reduced-motion preference; motion components degrade gracefully when it is true.",
"dependencies": [],
"registryDependencies": [],
"files": [
{
"path": "hooks/use-prefers-reduced-motion.ts",
"type": "registry:hook",
"target": "hooks/use-prefers-reduced-motion.ts"
}
]
},
{
"name": "use-shader",
"type": "registry:hook",
"title": "useShader()",
"description": "A dependency-free raw WebGL2 runtime for full-screen fragment shaders: DPR-clamped sizing, suspension while off-screen, context-loss recovery, eased pointer input, auto-generated uniform declarations, and a single still frame for reduced-motion users.",
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "hooks/use-shader.ts",
"type": "registry:hook",
"target": "hooks/use-shader.ts"
}
]
},
{
"name": "split-text",
"type": "registry:component",
"title": "Split Text",
"description": "Reveals text per character or word on scroll into view with a staggered spring rise. Screen-reader safe via aria-label.",
"category": "text",
"tags": [
"text",
"reveal",
"scroll",
"stagger"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/split-text.tsx",
"type": "registry:component",
"target": "components/reactomega/split-text.tsx"
}
]
},
{
"name": "shiny-text",
"type": "registry:component",
"title": "Shiny Text",
"description": "A soft highlight sweeps across text on a loop. Pure CSS, zero dependencies.",
"category": "text",
"tags": [
"text",
"shine",
"css"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json"
],
"files": [
{
"path": "components/reactomega/shiny-text.tsx",
"type": "registry:component",
"target": "components/reactomega/shiny-text.tsx"
}
]
},
{
"name": "gradient-text",
"type": "registry:component",
"title": "Gradient Text",
"description": "An animated multi-stop gradient flows through the text. Pure CSS.",
"category": "text",
"tags": [
"text",
"gradient",
"css"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json"
],
"files": [
{
"path": "components/reactomega/gradient-text.tsx",
"type": "registry:component",
"target": "components/reactomega/gradient-text.tsx"
}
]
},
{
"name": "count-up",
"type": "registry:component",
"title": "Count Up",
"description": "Rolls a number from a start to a target with ease-out, optionally when scrolled into view. tabular-nums prevents width jitter.",
"category": "text",
"tags": [
"text",
"number",
"counter",
"scroll"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/count-up.tsx",
"type": "registry:component",
"target": "components/reactomega/count-up.tsx"
}
]
},
{
"name": "magnetic",
"type": "registry:component",
"title": "Magnetic",
"description": "Wraps any element so it drifts toward the pointer and springs back on leave. Mouse-only, reduced-motion safe.",
"category": "interaction",
"tags": [
"interaction",
"pointer",
"magnetic",
"hover"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/magnetic.tsx",
"type": "registry:component",
"target": "components/reactomega/magnetic.tsx"
}
]
},
{
"name": "spotlight-card",
"type": "registry:component",
"title": "Spotlight Card",
"description": "A card with a soft radial spotlight that tracks the pointer and fades on enter/leave.",
"category": "interaction",
"tags": [
"interaction",
"card",
"spotlight",
"pointer"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/spotlight-card.tsx",
"type": "registry:component",
"target": "components/reactomega/spotlight-card.tsx"
}
]
},
{
"name": "tilt-card",
"type": "registry:component",
"title": "Tilt Card",
"description": "A 3D card that tilts toward the pointer with an optional moving glare. Flat and static for reduced-motion users.",
"category": "interaction",
"tags": [
"interaction",
"card",
"3d",
"tilt",
"glare"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/tilt-card.tsx",
"type": "registry:component",
"target": "components/reactomega/tilt-card.tsx"
}
]
},
{
"name": "click-spark",
"type": "registry:component",
"title": "Click Spark",
"description": "Emits a radial spark burst from the exact click point on a self-clearing canvas overlay.",
"category": "interaction",
"tags": [
"interaction",
"click",
"spark",
"canvas"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/click-spark.tsx",
"type": "registry:component",
"target": "components/reactomega/click-spark.tsx"
}
]
},
{
"name": "dot-grid",
"type": "registry:component",
"title": "Dot Grid",
"description": "An interactive dot field that lights up and swells around the pointer. A modern, non-cosmic backdrop.",
"category": "interaction",
"tags": [
"interaction",
"background",
"canvas",
"pointer"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/dot-grid.tsx",
"type": "registry:component",
"target": "components/reactomega/dot-grid.tsx"
}
]
},
{
"name": "star-border",
"type": "registry:component",
"title": "Star Border",
"description": "Two soft glints travel continuously around the border of any element. Pure CSS.",
"category": "components",
"tags": [
"components",
"button",
"border",
"css"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json"
],
"files": [
{
"path": "components/reactomega/star-border.tsx",
"type": "registry:component",
"target": "components/reactomega/star-border.tsx"
}
]
},
{
"name": "dock",
"type": "registry:component",
"title": "Dock",
"description": "A macOS-style magnifying dock; items swell based on pointer distance. Renders as a toolbar.",
"category": "components",
"tags": [
"components",
"dock",
"magnify",
"nav"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/dock.tsx",
"type": "registry:component",
"target": "components/reactomega/dock.tsx"
}
]
},
{
"name": "marquee",
"type": "registry:component",
"title": "Marquee",
"description": "A seamless infinite scroller (horizontal or vertical) with edge fade and pause-on-hover.",
"category": "components",
"tags": [
"components",
"marquee",
"scroll",
"css"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json"
],
"files": [
{
"path": "components/reactomega/marquee.tsx",
"type": "registry:component",
"target": "components/reactomega/marquee.tsx"
}
]
},
{
"name": "variable-proximity",
"type": "registry:component",
"title": "Variable Proximity",
"description": "Every letter's variable-font axes (weight, width, optical size, slant, or any custom axis) interpolate based on pointer distance. Fully configurable axes, radius, and falloff curve. Needs a variable font.",
"category": "text",
"tags": [
"text",
"variable-font",
"proximity",
"pointer",
"customizable"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/variable-proximity.tsx",
"type": "registry:component",
"target": "components/reactomega/variable-proximity.tsx"
}
]
},
{
"name": "magnetic-text",
"type": "registry:component",
"title": "Magnetic Text",
"description": "Every letter is independently magnetic, springing toward the pointer and easing back with real spring physics. Configurable strength, radius, stiffness, damping.",
"category": "text",
"tags": [
"text",
"magnetic",
"spring",
"pointer",
"physics"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/magnetic-text.tsx",
"type": "registry:component",
"target": "components/reactomega/magnetic-text.tsx"
}
]
},
{
"name": "gravity-text",
"type": "registry:component",
"title": "Gravity Text",
"description": "Letters detach and fall under real gravity, bounce off the floor with friction, then reassemble. Configurable gravity, bounce, friction, scatter, and trigger.",
"category": "text",
"tags": [
"text",
"gravity",
"physics",
"bounce",
"interactive"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/gravity-text.tsx",
"type": "registry:component",
"target": "components/reactomega/gravity-text.tsx"
}
]
},
{
"name": "elastic-text",
"type": "registry:component",
"title": "Elastic Text",
"description": "Letters swell and lift with a springy, overshooting jelly squash-and-stretch as the pointer passes. Configurable stiffness, damping, scale, lift, radius.",
"category": "text",
"tags": [
"text",
"elastic",
"jelly",
"spring",
"physics"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/elastic-text.tsx",
"type": "registry:component",
"target": "components/reactomega/elastic-text.tsx"
}
]
},
{
"name": "scramble-text",
"type": "registry:component",
"title": "Scramble Text",
"description": "Letters churn through random glyphs and lock in left-to-right like a decoding terminal. Configurable charset, speed, reveal wipe, and trigger.",
"category": "text",
"tags": [
"text",
"scramble",
"decode",
"terminal",
"customizable"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/scramble-text.tsx",
"type": "registry:component",
"target": "components/reactomega/scramble-text.tsx"
}
]
},
{
"name": "spring-mesh",
"type": "registry:component",
"title": "Spring Mesh",
"description": "An elastic lattice: every node is sprung to rest and coupled to its neighbors, so pressing the pointer sends real waves rippling outward that settle naturally.",
"category": "physics",
"tags": [
"physics",
"spring",
"mesh",
"canvas",
"interactive"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/spring-mesh.tsx",
"type": "registry:component",
"target": "components/reactomega/spring-mesh.tsx"
}
]
},
{
"name": "cloth",
"type": "registry:component",
"title": "Cloth",
"description": "A real verlet-integrated fabric hanging from a pinned top edge under gravity. Grab any point and it folds, swings, and settles like cloth.",
"category": "physics",
"tags": [
"physics",
"verlet",
"cloth",
"drag",
"canvas"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/cloth.tsx",
"type": "registry:component",
"target": "components/reactomega/cloth.tsx"
}
]
},
{
"name": "metaballs",
"type": "registry:component",
"title": "Metaballs",
"description": "A gooey fluid that flows toward the pointer and merges with surface-tension feel via an SVG goo filter. Configurable count, color, size, and viscosity.",
"category": "physics",
"tags": [
"physics",
"fluid",
"gooey",
"metaballs",
"pointer"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/metaballs.tsx",
"type": "registry:component",
"target": "components/reactomega/metaballs.tsx"
}
]
},
{
"name": "holographic-card",
"type": "registry:component",
"title": "Holographic Card",
"description": "An iridescent holo-foil card: a rainbow sheen and bright glare track the pointer with a color-dodge blend, over a subtle 3D tilt. Configurable tilt, intensity, and foil colors.",
"category": "interaction",
"tags": [
"interaction",
"card",
"holographic",
"foil",
"3d"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/holographic-card.tsx",
"type": "registry:component",
"target": "components/reactomega/holographic-card.tsx"
}
]
},
{
"name": "text-reveal",
"type": "registry:component",
"title": "Text Reveal",
"description": "Words brighten one after another as the block scrolls through the viewport — a scroll-linked reading spotlight. Configurable dim/lit colors and edge softness.",
"category": "text",
"tags": [
"text",
"scroll",
"reveal",
"reading"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/text-reveal.tsx",
"type": "registry:component",
"target": "components/reactomega/text-reveal.tsx"
}
]
},
{
"name": "rope",
"type": "registry:component",
"title": "Rope",
"description": "A verlet-integrated rope hangs from a fixed anchor — grab it, drag it, and watch it swing and settle under gravity.",
"category": "physics",
"tags": [
"physics",
"verlet",
"canvas",
"drag"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/rope.tsx",
"type": "registry:component",
"target": "components/reactomega/rope.tsx"
}
]
},
{
"name": "pendulum-wave",
"type": "registry:component",
"title": "Pendulum Wave",
"description": "A row of pendulums with subtly increasing lengths drift in and out of phase to form the classic traveling pendulum-wave pattern.",
"category": "physics",
"tags": [
"physics",
"pendulum",
"wave",
"canvas"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/pendulum-wave.tsx",
"type": "registry:component",
"target": "components/reactomega/pendulum-wave.tsx"
}
]
},
{
"name": "newtons-cradle",
"type": "registry:component",
"title": "Newton's Cradle",
"description": "An interactive Newton's cradle — pull an end ball back, release, and momentum transfers through the row to fling the far ball out.",
"category": "physics",
"tags": [
"physics",
"collision",
"momentum",
"canvas"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/newtons-cradle.tsx",
"type": "registry:component",
"target": "components/reactomega/newtons-cradle.tsx"
}
]
},
{
"name": "water-ripple",
"type": "registry:component",
"title": "Water Ripple",
"description": "A height-field water surface where pointer input spawns ripples that spread, reflect off edges, and shade from the local height gradient.",
"category": "physics",
"tags": [
"physics",
"water",
"ripple",
"canvas"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/water-ripple.tsx",
"type": "registry:component",
"target": "components/reactomega/water-ripple.tsx"
}
]
},
{
"name": "gravity-wells",
"type": "registry:component",
"title": "Gravity Wells",
"description": "Hundreds of particles orbit the pointer as a 1/dist^2 gravity well, leaving luminous trails via per-frame translucent fade.",
"category": "physics",
"tags": [
"physics",
"particles",
"gravity",
"trails"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/gravity-wells.tsx",
"type": "registry:component",
"target": "components/reactomega/gravity-wells.tsx"
}
]
},
{
"name": "magnetic-field",
"type": "registry:component",
"title": "Magnetic Field",
"description": "A grid of iron-filing segments that re-orient along a dipole field anchored at the pointer, with length and brightness scaling by proximity.",
"category": "physics",
"tags": [
"physics",
"magnetism",
"field",
"filings"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/magnetic-field.tsx",
"type": "registry:component",
"target": "components/reactomega/magnetic-field.tsx"
}
]
},
{
"name": "soft-body",
"type": "registry:component",
"title": "Soft Body",
"description": "A poke-able jelly blob held in a circle by perimeter, radius, and pressure springs that wobbles and recovers when you squish it with the pointer.",
"category": "physics",
"tags": [
"physics",
"soft-body",
"springs",
"canvas"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/soft-body.tsx",
"type": "registry:component",
"target": "components/reactomega/soft-body.tsx"
}
]
},
{
"name": "plucked-string",
"type": "registry:component",
"title": "Plucked String",
"description": "A string pinned at both ends that you grab and pluck, then watch vibrate with a realistic decaying wave driven by neighbor-averaging physics.",
"category": "physics",
"tags": [
"physics",
"string",
"wave",
"canvas"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/plucked-string.tsx",
"type": "registry:component",
"target": "components/reactomega/plucked-string.tsx"
}
]
},
{
"name": "falling-sand",
"type": "registry:component",
"title": "Falling Sand",
"description": "A falling-sand cellular automaton where dragging the pointer pours colored grains that fall and slide diagonally into realistic piling mounds.",
"category": "physics",
"tags": [
"physics",
"cellular-automaton",
"sand",
"canvas"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-prefers-reduced-motion.json"
],
"files": [
{
"path": "components/reactomega/falling-sand.tsx",
"type": "registry:component",
"target": "components/reactomega/falling-sand.tsx"
}
]
},
{
"name": "liquid-metal",
"type": "registry:component",
"title": "Liquid Metal",
"description": "A molten chrome surface that flows, catches light and dents away from the pointer. Two rounds of domain-warped FBM drive a height field; the normal is taken from finite differences each frame and lit with diffuse, specular and swept polish bands.",
"category": "shader",
"tags": [
"shader",
"webgl",
"metal",
"background",
"pointer"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-shader.json"
],
"files": [
{
"path": "components/reactomega/liquid-metal.tsx",
"type": "registry:component",
"target": "components/reactomega/liquid-metal.tsx"
}
]
},
{
"name": "thin-film",
"type": "registry:component",
"title": "Thin Film",
"description": "Iridescent soap-film sheen computed from real thin-film interference: phase is evaluated at three representative RGB wavelengths over a wobbling thickness field, so the fringe order is physical rather than a hue rotation. The pointer thins the film and shifts the bands.",
"category": "shader",
"tags": [
"shader",
"webgl",
"iridescent",
"interference",
"background"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-shader.json"
],
"files": [
{
"path": "components/reactomega/thin-film.tsx",
"type": "registry:component",
"target": "components/reactomega/thin-film.tsx"
}
]
},
{
"name": "caustics",
"type": "registry:component",
"title": "Caustics",
"description": "Underwater light caustics: a coordinate folded back on itself several times, each pass accumulating reciprocal distance, then gamma-crushed so only the focus filaments survive. The pointer disturbs the water above.",
"category": "shader",
"tags": [
"shader",
"webgl",
"water",
"caustics",
"background"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-shader.json"
],
"files": [
{
"path": "components/reactomega/caustics.tsx",
"type": "registry:component",
"target": "components/reactomega/caustics.tsx"
}
]
},
{
"name": "halftone-gradient",
"type": "registry:component",
"title": "Halftone Gradient",
"description": "A drifting multi-stop gradient rendered through a print screen — either angled per-channel dots with radius proportional to the square root of tone, or a computed 4x4 ordered Bayer matrix. The screen opens up under the pointer.",
"category": "shader",
"tags": [
"shader",
"webgl",
"halftone",
"dither",
"print",
"background"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-shader.json"
],
"files": [
{
"path": "components/reactomega/halftone-gradient.tsx",
"type": "registry:component",
"target": "components/reactomega/halftone-gradient.tsx"
}
]
},
{
"name": "volumetric-rays",
"type": "registry:component",
"title": "Volumetric Rays",
"description": "God rays from a pointer-driven light source, integrated the classic way: march back toward the light sampling a drifting haze field and attenuating each step, with decay normalised by sample count so quality and brightness stay independent.",
"category": "shader",
"tags": [
"shader",
"webgl",
"light",
"rays",
"background"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-shader.json"
],
"files": [
{
"path": "components/reactomega/volumetric-rays.tsx",
"type": "registry:component",
"target": "components/reactomega/volumetric-rays.tsx"
}
]
},
{
"name": "curl-flow",
"type": "registry:component",
"title": "Curl Flow",
"description": "Silk-like flowing bands from a curl-noise field. FBM acts as a stream function and the velocity is the perpendicular of its gradient, so the field is divergence-free by construction; coordinates advect along it and shade as anisotropic streamlines. The pointer injects a vortex.",
"category": "shader",
"tags": [
"shader",
"webgl",
"curl-noise",
"flow",
"silk",
"background"
],
"dependencies": [],
"registryDependencies": [
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/utils.json",
"https://cdn.jsdelivr.net/gh/Edwson/ReactOmega@main/public/r/use-shader.json"
],
"files": [
{
"path": "components/reactomega/curl-flow.tsx",
"type": "registry:component",
"target": "components/reactomega/curl-flow.tsx"
}
]
},
{
"name": "inertia-cursor",
"type": "registry:component",
"title": "Inertia Cursor",
"description": "Replaces the native cursor with an exact dot plus a ring that lags on a spring, growing over anything matching a selector. Hover is delegated from the document so late-mounted elements work, and difference blending keeps it visible on any background.",
"category": "cursor",