-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathUtilities.data.ts
More file actions
2718 lines (2715 loc) · 96.9 KB
/
Utilities.data.ts
File metadata and controls
2718 lines (2715 loc) · 96.9 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
import { PackageType, Resource, ResourceCategory } from './Ecosystem';
const utilities: Array<Resource> = [
{
link: 'https://github.com/solidjs/solid-styled-jsx',
title: 'solid-styled-jsx',
description: "Wrapper for using Solid with Vercel's Styled JSX.",
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['vercel', 'styled', 'jsx'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.Routers],
},
{
link: 'https://github.com/solidjs/solid-router',
title: 'solid-router',
description:
'Universal router for SolidJS, combining paradigms of React Router and Ember Router. Supports JSX or JSON routing, and nested routes. Part of Solid Start, making it the official router.',
author: 'Ryan Carniato and Ryan Turnquist',
author_url: 'https://github.com/ryansolid',
keywords: ['router'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.Routers],
},
{
link: 'https://github.com/solidjs/solid/blob/main/packages/solid-element',
title: 'solid-element',
description: 'Extensions to Solid.js that add a Web Component wrapper.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['web', 'components', 'web components', 'elements'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.Routers],
},
{
link: 'https://github.com/milahu/solidjs-treeview-component',
title: 'solidjs-treeview-component',
description: 'Interactive tree of nodes, expand/collapse, fetch child nodes on demand.',
author: 'milahu',
author_url: 'https://github.com/milahu',
keywords: ['tree', 'expand', 'collapse'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Routers],
},
{
link: 'https://github.com/mikeplus64/solid-typefu-router5',
title: 'solid-typefu-router5',
description:
'This package provides a router with integration with router5 and solid-js, and features type safe router and link creation.',
author: 'Mike Ledger',
author_url: 'https://github.com/mikeplus64',
keywords: ['router'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Routers],
maintained: false,
},
{
link: 'https://github.com/solidjs/solid-meta',
title: 'solid-meta',
description: 'Asynchronous SSR-ready Document Head management for Solid based on React Head.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['meta', 'document'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.Plugins],
},
{
link: 'https://github.com/solidjs/solid-refresh',
title: 'solid-refresh',
description: 'This project aims to provide HMR for Solid for various bundlers.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['hmr', 'refresh'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.Plugins],
},
{
link: 'https://github.com/solidjs/solid-jest',
title: 'solid-jest',
description:
'This library contains presets for SolidJS to easily get started testing with Jest for both browser and server rendering with Node.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['testing', 'jest'],
official: true,
type: PackageType.Library,
categories: [ResourceCategory.Testing],
maintained: false,
},
{
link: 'https://github.com/solidjs/solid-testing-library',
title: 'solid-testing-library',
description:
'Simple and complete Solid DOM testing utilities that encourage good testing practices.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['testing'],
official: true,
type: PackageType.Library,
categories: [ResourceCategory.Testing],
},
{
link: 'https://github.com/thetarnav/solid-devtools',
title: 'Solid Developer Tools',
description:
'Library of developer tools, reactivity debugger & Devtools Chrome extension for visualizing SolidJS reactivity graph.',
author: 'Damian Tarnawski',
author_url: 'https://github.com/thetarnav/solid-devtools',
keywords: ['debug', 'devtools'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.BuildUtilities],
},
{
link: 'https://github.com/solidjs/solid-playground',
title: 'solid-playground',
description: 'A playground and REPL for Solid.',
author: 'Alexandre Mouton Brady',
author_url: 'https://github.com/amoutonbrady',
keywords: ['playground', 'plugin'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.AddOn],
},
{
link: 'https://github.com/amoutonbrady/solid-heroicons',
title: 'solid-heroicons',
description: 'A convenient port of the Tailwind Heroicons.',
author: 'Alexandre Mouton Brady',
author_url: 'https://github.com/amoutonbrady',
keywords: ['icons', 'ui', 'hero'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.UI],
},
{
link: 'https://github.com/x64Bits/solid-icons',
title: 'solid-icons',
description: 'The simplest way to use icons in SolidJS',
author: 'Ignacio Zsabo',
author_url: 'https://github.com/x64Bits',
keywords: ['icons', 'svg', 'iconpack'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.UI],
},
{
link: 'https://github.com/unplugin/unplugin-icons',
title: 'unplugin-icons',
description: 'Access thousands of icons (via Iconify) as components on-demand universally',
author: 'Anthony Fu',
author_url: 'https://github.com/antfu',
keywords: ['icons', 'svg', 'iconpack'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.UI],
},
{
link: 'https://github.com/amoutonbrady/esbuild-plugin-solid',
title: 'esbuild-plugin-solid',
description: 'Plugin to compile solid-js jsx components with esbuild.',
author: 'Alexandre Mouton Brady',
author_url: 'https://github.com/amoutonbrady',
keywords: ['esbuild', 'tooling'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.BuildUtilities],
},
{
link: 'https://github.com/ryansolid/dom-expressions/tree/main/packages/lit-dom-expressions',
title: 'lit-dom-expressions',
description: 'Tagged Template Literal API for DOM Expressions.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['babel', 'expressions'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.BuildUtilities],
},
{
link: 'https://github.com/ryansolid/dom-expressions/tree/main/packages/babel-plugin-jsx-dom-expressions',
title: 'babel-plugin-jsx-dom-expressions',
description: 'Babel plugin that converts JSX to DOM Expressions.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['babel', 'expressions'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
},
{
link: 'https://github.com/solidjs/create-solid',
title: 'create-solid',
description: "Solid's port of Create React App.",
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['starter', 'cra'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
maintained: false,
},
{
link: 'https://github.com/ryansolid/dom-expressions',
title: 'dom-expressions',
description:
'The renderer behind Solid.js that enables lightning fast fine grained performance.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['dom', 'expressions'],
official: true,
type: PackageType.Library,
categories: [ResourceCategory.BuildUtilities],
},
{
link: 'https://github.com/high1/solid-typescript-rollup',
title: 'solid-typescript-rollup',
description: 'Solid and Rollup support starter.',
author: 'high1',
author_url: 'https://github.com/high1',
keywords: ['starter', 'rollup'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
maintained: false,
},
{
link: 'https://gitlab.com/enom/solid-parcel-starter',
title: 'solid-parcel-starter',
description: 'Solid starter with Tailwind and Parcel',
author: 'Jonathan Ginn',
author_url: 'https://gitlab.com/enom',
keywords: ['starter', 'typescript', 'parcel', 'tailwind'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
maintained: false,
},
{
link: 'https://github.com/amoutonbrady/solid-snowpack-starter',
title: 'solid-snowpack-starter',
description:
'Solid + snowpack + tailwindcss template You get HMR out of the box and full PWA compatible.',
author: 'Alexandre Mouton Brady',
author_url: 'https://github.com/amoutonbrady',
keywords: ['starter', 'typescript', 'snowpack'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
maintained: false,
},
{
link: 'https://github.com/builderio/jsx-lite',
title: 'jsx-lite',
description:
'Generalized JSX that transpiles into Solid, React, Angular, Vue, etc. They have plugins for Figma, VSCode, & Builder.io.',
author: 'Builder.io',
author_url: 'https://github.com/builderio',
keywords: ['jsx', 'jsx-lite', 'builder'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.BuildUtilities],
},
{
link: 'https://github.com/high1/solid-typescript-starter',
title: 'solid-typescript-starter',
description: 'Typescript start with Solid.',
author: 'high1',
author_url: 'https://github.com/high1',
keywords: ['starter', 'typescript'],
official: false,
type: PackageType.Library,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
maintained: false,
},
{
link: 'https://github.com/ryansolid/solid-ts-webpack',
title: 'solid-ts-webpack',
description: 'Typescript start with Webpack.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['starter', 'typescript', 'webpack'],
official: true,
type: PackageType.Library,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
},
{
link: 'https://github.com/solidjs/templates',
title: 'solidjs/templates',
description: 'This repository holds most of the official starter templates for vite.',
author: 'Alexandre Mouton Brady',
author_url: 'https://github.com/amoutonbrady',
keywords: ['starter', 'templates', 'vite', 'tailwind', 'bootstrap'],
official: false,
type: PackageType.Library,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
},
{
link: 'https://github.com/amoutonbrady/snowpack-solid',
title: 'snowpack-solid',
description:
'Solid + snowpack + tailwindcss template You get HMR out of the box and full PWA compatible.',
author: 'Alexandre Mouton Brady',
author_url: 'https://github.com/amoutonbrady',
keywords: ['snowpack', 'tooling'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Starters],
maintained: false,
},
{
link: 'https://github.com/amoutonbrady/parcel2-solid-ts-starter',
title: 'parcel2-solid-ts-starter',
description:
'Minimal Solid starter based on yarn 2 pnp resolution (zero-install) and parcel 2 for bundling.',
author: 'Alexandre Mouton Brady',
author_url: 'https://github.com/amoutonbrady',
keywords: ['parcel2', 'tooling', 'boilerplate'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
maintained: false,
},
{
link: 'https://github.com/MrFoxPro/solid-rollup-boilerplate',
title: 'solid-rollup-boilerplate',
description: 'Simple starter for Rollup + Solid.',
author: 'Dmitriy Nikiforov',
author_url: 'https://github.com/MrFoxPro',
keywords: ['boilerplate', 'rollup'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Starters, ResourceCategory.BuildUtilities],
maintained: false,
},
{
link: 'https://github.com/solidjs/solid-transition-group',
title: 'solid-transition-group',
description:
'Animation library influenced by React Transition Group and Vue Transitions for the SolidJS library.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['transitions', 'animations'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.AddOn],
},
{
link: 'https://github.com/solidjs/solid-start',
title: 'solid-start',
description:
'This is the home of the new official starter for Solid. This is still a work in progress.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['starter'],
official: true,
type: PackageType.Library,
categories: [ResourceCategory.AddOn],
},
{
link: 'https://github.com/solidjs/vite-plugin-solid',
title: 'vite-plugin-solid',
description: 'Plugin that allows SolidJS to run with Vite.',
author: 'Alexandre Mount Brady',
author_url: 'https://github.com/amoutonbrady',
keywords: ['vite', 'bundler'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.BuildUtilities, ResourceCategory.Plugins],
},
{
link: 'https://github.com/thisbeyond/solid-dnd',
title: 'solid-dnd',
description: 'A lightweight and extremely performant drag and drop toolkit for Solid.',
author: 'Martin Pengelly-Phillips',
author_url: 'https://github.com/martinpengellyphillips',
keywords: ['drag', 'drop', 'dnd'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.Primitives],
},
{
link: 'https://github.com/thedanchez/swapy-solid',
title: 'swapy-solid',
description: 'Solid components enabling drag and swap layouts via Swapy.',
author: 'Daniel Sanchez',
author_url: 'https://github.com/thedanchez',
keywords: ['drag', 'drop', 'swap', 'swapy', 'solid'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
},
{
link: 'https://github.com/solidjs/react-solid-state',
title: 'react-solid-state',
description: 'React Hooks API to use Solid.js paradigm in your existing React apps.',
author: 'Ryan Carniato',
author_url: 'https://github.com/MrFoxPro',
keywords: ['hooks'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn],
},
{
link: 'https://github.com/skrylnikov/reatom-solid',
title: 'reatom-solid',
description: 'Solid bindings for Reatom store.',
author: 'skrylnikov',
keywords: ['reatom'],
official: false,
author_url: 'https://github.com/skrylnikov',
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.Data],
maintained: false,
},
{
link: 'https://github.com/storeon/solidjs',
title: 'solid-storeon',
description:
'A package that helps to connect store with Solid.js to provide a better performance and developer experience while remaining so tiny.',
author: 'Storeon',
keywords: ['storeon', 'store'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.Data],
maintained: false,
},
{
link: 'https://github.com/effector/effector/tree/master/packages/effector-solid',
title: 'effector-solid',
description:
'A package that adapts effector units for perfect SolidJS performance with updates batching.',
author: 'effector',
keywords: ['effector', 'state', 'store', 'unit', 'effect', 'manager'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.Data],
},
{
link: 'https://github.com/solidjs/solid-styled-components',
title: 'solid-styled-components',
description:
'This library provides Styled Components and css helper found in popular JS in CSS libraries.',
author: 'Ryan Carniato',
author_url: 'https://github.com/ryansolid',
keywords: ['styled', 'components', 'goober'],
official: true,
type: PackageType.Package,
categories: [ResourceCategory.AddOn],
},
{
link: 'https://github.com/Acidic9/emotion-solid',
title: 'emotion-solid',
description: 'This library is an Emotion Styled port for Solid.',
author: 'Ari Seyhun',
author_url: 'https://github.com/Acidic9',
keywords: ['emotion', 'styled', 'components', 'css in js'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.UI],
},
{
link: 'https://github.com/andgate/solid-orbit',
title: 'solid-orbit',
description:
'This package provides Solid a provider and hooks for Orbit. Most notably, this provides a useQuery hook which is a query transform listener, updating component props with records as they are changed.',
author: 'Gabriel Anderson',
author_url: 'https://github.com/andgate',
keywords: ['orbit', 'store', 'data'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.Data],
},
{
link: 'https://github.com/lume/lume',
title: 'LUME',
description:
'Custom elements powered by Solid. LUME is a toolkit that creates 2D or 3D experiences for any device from mobile to desktop to AR/VR.',
author: 'Joe Pea',
author_url: 'https://github.com/trusktr',
keywords: ['graphics', '3d', 'ui'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.UI],
},
{
link: 'https://www.npmjs.com/package/phosphor-solid',
title: 'phosphor-solid',
description:
'Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really.',
author: 'Arturo Aguilera',
author_url: 'https://github.com/aguilera51284',
keywords: ['phosphor', 'ui', 'icon'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.UI],
},
{
link: 'https://github.com/tsparticles/solid',
title: '@tsparticles/solid',
description: 'Official tsParticles implementation for Solid.',
author: 'Matteo Bruni',
author_url: 'https://particles.js.org/',
keywords: ['particles', 'confetti', 'ui'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.UI],
},
{
link: 'https://github.com/mosheduminer/solid-form-action',
title: 'solid-form-action',
description:
'This package provides a function that accepts a definition of the initial state of your form, its validation, and submission.',
author: 'Moshe Uminer',
author_url: 'https://github.com/mosheduminer',
keywords: ['action', 'form', 'validation', 'ui'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.AddOn, ResourceCategory.UI],
maintained: false,
},
{
link: 'https://www.npmjs.com/package/solid-urql',
title: 'solid-urql',
description: 'A highly customizable and versatile GraphQL client for Solid.',
author: 'Ari Seyhun',
author_url: 'https://github.com/Acidic9',
keywords: ['graphql', 'url', 'url', 'formidable'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Data],
maintained: false,
},
{
link: 'https://github.com/pablo-abc/solid-reach',
title: 'solid-reach',
description:
'This is a port of ReachUI for Solid that (hopefully) will serve you as The Accessible Foundation for Solid Apps and Design Systems.',
author: 'Pablo Berganza',
author_url: 'https://github.com/pablo-abc',
keywords: ['accessibility', 'system', 'reach', 'ui'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
maintained: false,
},
{
link: 'https://github.com/pablo-abc/felte',
title: 'Felte',
description:
'An extensible form library that supports Solid. No Field or Form components are needed, just plain stores and actions.',
author: 'Pablo Berganza',
author_url: 'https://github.com/pablo-abc',
keywords: ['form', 'validator', 'validation', 'input'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
},
{
link: 'https://github.com/joshwilsonvu/eslint-plugin-solid',
title: 'eslint-plugin-solid',
description:
"It is not yet stable, and some rules may change, but it's well tested and should be helpful in Solid projects today.",
author: 'joshwilsonvu',
author_url: 'https://github.com/joshwilsonvu',
keywords: ['linter', 'eslint', 'plugin'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.BuildUtilities],
},
{
link: 'https://github.com/amoutonbrady/solid-i18n',
title: '@amoutonbrady/solid-i18n',
description: 'Tiny translation library for solid-js inspired by rosetta.',
author: 'Alexandre Mouton Brady',
author_url: 'https://github.com/amoutonbrady',
keywords: [
'i18n',
'localisation',
'localization',
'translate',
'translations',
'language',
'rosetta',
],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI, ResourceCategory.Data],
maintained: false,
},
{
link: 'https://github.com/davedbase/solid-slider',
title: 'solid-slider',
description: 'A carousel/slider implementation in TypeScript for Solid using KeenSlider.',
author: 'David Di Biase',
author_url: 'https://github.com/davedbase/solid-slider',
keywords: [
'slider',
'carouse',
'solid',
'keen',
'slider',
'carousel',
'caroussel',
'slideshow',
'gallery',
'plugin',
],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
},
{
link: 'https://github.com/minht11/solid-virtual-container',
title: 'solid-virtual-container',
description: 'Efficient, single direction virtual list/grid for Solid-js.',
author: 'Justinas Delinda',
author_url: 'https://github.com/minht11',
keywords: ['container', 'virtual', 'list', 'grid'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
},
{
link: 'https://github.com/uNmAnNeR/imaskjs/tree/master/packages/solid-imask',
title: 'solid-imask',
description: 'Official Solid.js implementation for imaskjs.',
author: 'Alexey Kryazhev',
author_url: 'https://github.com/uNmAnNeR',
keywords: ['input', 'mask', 'form', 'ui'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
},
{
link: 'https://github.com/wobsoriano/solid-zustand/',
title: 'solid-zustand',
description: 'Zustand state management for Solid.',
author: 'Robert Soriano',
author_url: 'https://github.com/wobsoriano',
keywords: ['container', 'state', 'zustand'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Data],
},
{
link: 'https://github.com/otonashixav/solid-flip',
title: 'solid-flip',
description: 'A lightweight transition library for solid-js.',
author: 'otonashixav',
author_url: 'https://github.com/otonashixav',
keywords: ['animation', 'transition'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
maintained: false,
},
{
link: 'https://github.com/lxsmnsyc/solid-uppy',
title: 'solid-uppy',
description: 'Sleek, modular open source JavaScript file uploader for Solid using Uppy.',
author: 'lxsmnsyc',
author_url: 'https://github.com/lxsmnsyc',
keywords: ['form', 'upload'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
},
{
link: 'https://github.com/LXSMNSYC/babel-plugin-solid-labels',
title: 'babel-plugin-solid-labels',
description: 'Compile-time reactive expressions for SolidJS.',
author: 'Alexis H. Munsayac',
author_url: 'https://github.com/LXSMNSYC',
keywords: ['labels', 'expessions', 'babel', ' compile-time'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.BuildUtilities, ResourceCategory.Plugins],
},
{
link: 'https://github.com/lxsmnsyc/terracotta',
title: 'terracotta',
description: 'Headless UI for SolidJS.',
author: 'Alexis H. Munsayac',
author_url: 'https://github.com/LXSMNSYC',
keywords: ['design', 'ui', 'components', 'headless'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
},
{
link: 'https://github.com/LXSMNSYC/solid-tiptap',
title: 'solid-tiptap',
description: 'Solid bindings for TipTap.',
author: 'Alexis H. Munsayac',
author_url: 'https://github.com/LXSMNSYC',
keywords: ['tiptap', 'ui', 'editor', 'wysiwyg'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
},
{
link: 'https://github.com/LXSMNSYC/solid-popper',
title: 'solid-popper',
description: 'Solid bindings for Popper.js.',
author: 'Alexis H. Munsayac',
author_url: 'https://github.com/LXSMNSYC',
keywords: ['popper', 'tooltip', 'positioning'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
},
{
link: 'https://aquaductape.github.io/solid-dismiss/',
title: 'solid-dismiss',
description: 'Handle "click outside" behavior to close dropdowns/popups for Solid.',
author: 'aquaductape',
author_url: 'https://github.com/aquaductape',
keywords: ['click', 'outside', 'dismiss'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
},
{
link: 'https://github.com/niliadu/solid-js-form',
title: 'solid-js-form',
description: 'Form library for Solid.JS that uses yup as the validation schema.',
author: 'niliadu',
author_url: 'https://github.com/niliadu',
keywords: ['input', 'form'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
},
{
link: 'https://github.com/odama626/solid-validation',
title: 'solid-validation',
description: 'simple & lightweight solidjs validation library',
author: 'odama626',
author_url: 'https://github.com/odama626',
keywords: ['input', 'form', 'validation'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
},
{
link: 'https://github.com/isaacHagoel/solid-dnd-directive',
title: 'solid-dnd-directive',
description:
'A feature-complete implementation of drag and drop for Solid JS using a custom directive.',
author: 'Isaac Hagoel',
author_url: 'https://github.com/isaacHagoel',
keywords: ['dnd', 'drag', 'drop'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
published_at: 1633118125000,
},
{
link: 'https://github.com/rturnq/solid-auth0',
title: 'solid-auth0',
description: 'Auth0 integration for solid-js which wraps @auth0/auth0-spa-js.',
author: 'Ryan Turnquist',
author_url: 'https://github.com/rturnq',
keywords: ['authentication', 'auth0', 'auth'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins],
published_at: 1633118125000,
maintained: false,
},
{
link: 'https://github.com/solidjs-community/solid-primitives',
title: 'solid-primitives',
description: "A library of high-quality primitives that extend Solid's reactivity.",
author: 'David Di Biase',
author_url: 'https://github.com/davedbase',
keywords: ['geolocation', 'timer', 'storage', 'debounce', 'throttle', 'primitives'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Primitives],
published_at: 1633118125000,
},
{
link: 'https://github.com/lxsmnsyc/solid-giphy',
title: 'solid-giphy',
description: 'Solid bindings for Giphy API service.',
author: 'Alexis H. Munsayac',
author_url: 'https://github.com/lxsmnsyc',
keywords: ['giphy', 'images'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.UI],
published_at: 1634917094000,
},
{
link: 'https://github.com/one-aalam/solid-starter-kit',
title: 'solid-starter-kit',
description:
'Solid Starter Kit is an opinionated boilerplate with Supabase, Tailwind, TS and Prettier.',
author: 'Aftab Alam',
author_url: 'https://github.com/one-aalam',
keywords: ['supabase', 'tailwind', 'tailwind'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Starters],
published_at: 1634917094000,
maintained: false,
},
{
link: 'https://github.com/andi23rosca/tiptap-solid',
title: 'tiptap-solid',
description: 'Solid components for tiptap v2.',
author: 'Andi Rosca',
author_url: 'https://github.com/andi23rosca',
keywords: ['tiptap', 'ui', 'editor', 'wysiwyg'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
published_at: 1634917094000,
},
{
link: 'https://github.com/swise0/solid-toast-notify',
title: 'solid-toast-notify',
description: 'Toast notify element.',
author: 'swise0',
author_url: 'https://github.com/swise0',
keywords: ['notify', 'toast'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
published_at: 1634672820000,
},
{
link: 'https://github.com/andi23rosca/solid-markdown',
title: 'solid-markdown',
description: 'Ported version of react-markdown for Solid markdown generation.',
author: 'Andi Rosca',
author_url: 'https://github.com/andi23rosca',
keywords: ['markdown', 'react-markdown', 'parser'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
published_at: 1633895338000,
},
{
link: 'https://github.com/aldy505/vite-plugin-pages-solid',
title: 'vite-plugin-pages-solid',
description: 'A fork of vite-plugin-pages for Vue adapted for Solid.',
author: 'Reinaldy Rafli',
author_url: 'https://github.com/aldy505',
keywords: ['vite', 'pages', 'build'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.BuildUtilities],
published_at: 1634931664000,
maintained: false,
},
{
link: 'https://github.com/atk/solid-register',
title: 'solid-register',
description: 'Allows running and testing Solid.js browser code in Node.js.',
author: 'Alex Lohr',
author_url: 'https://github.com/atk',
keywords: ['runner', 'testing'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Testing],
published_at: 1635095541000,
},
{
link: 'https://github.com/microsoft/playwright',
title: '@playwright/experimental-ct-solid',
description:
'Fast and reliable component testing in a real browser simular to solid-testing-library',
author: 'Microsoft',
author_url: 'https://github.com/Microsoft',
keywords: ['runner', 'testing'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Testing],
published_at: 1669633548145,
},
{
link: 'https://github.com/merged-js/solid-apollo',
title: 'solid-apollo',
description: 'An Apollo client for Solid.',
author: 'merged-js',
author_url: 'https://github.com/merged-js',
keywords: ['apollo', 'graphql'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.Data],
published_at: 1635523744000,
},
{
link: 'https://github.com/merged-js/react-solid',
title: 'react-solid',
description: 'A way to use Solid components inside React.',
author: 'merged-js',
author_url: 'https://github.com/merged-js',
keywords: ['react', 'binding'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.Data],
published_at: 1635523744000,
maintained: false,
},
{
link: 'https://inlang.com/c/solid',
title: 'ParaglideJS',
description:
'An ultra-efficient i18n library that scales to zero. Comes with first class integration with SolidStart',
author: 'Inlang',
author_url: 'https://inlang.com',
keywords: [
'i18n',
'localisation',
'localization',
'translate',
'translations',
'language',
'intl',
],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI, ResourceCategory.Data],
published_at: 1702989010000,
maintained: false,
},
{
link: 'https://github.com/SanichKotikov/solid-i18n',
title: 'solid-i18n',
description: 'Tiny translation library for solid-js inspired by Rosetta.',
author: 'SanichKotikov',
author_url: 'https://github.com/SanichKotikov',
keywords: [
'i18n',
'localisation',
'localization',
'translate',
'translations',
'language',
'rosetta',
],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
published_at: 1635697432000,
},
{
link: 'https://github.com/poudels14/slate-solid',
title: 'slate-solid',
description: 'Slate Solid is a solid-js wrapper for Slate rich text editor.',
author: 'Sagar Poudel',
author_url: 'https://github.com/poudels14',
keywords: ['slate', 'wysiwyg', 'editor', 'rich text'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
published_at: 1635697432000,
maintained: false,
},
{
link: 'https://solid-libs.github.io/solid-bootstrap/#/',
title: 'solid-bootstrap',
description: 'The most popular front-end framework rebuilt for SolidJS.',
author: 'Brendan-csel',
author_url: 'https://github.com/Brendan-csel',
keywords: ['bootstrap', 'design', 'ui', 'components'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.UI],
published_at: 1638514856000,
},
{
link: 'https://github.com/orenelbaum/babel-plugin-solid-undestructure',
title: 'babel-plugin-solid-undestructure',
description:
'This babel plugin allows you to destructure your props in your Solid components without losing reactivity.',
author: 'orenelbaum',
author_url: 'https://github.com/orenelbaum',
keywords: ['spread', 'props', 'babel', 'plugin'],
official: false,
type: PackageType.Package,
categories: [ResourceCategory.Plugins, ResourceCategory.BuildUtilities],
published_at: 1638514856000,
},
{
link: 'https://github.com/git-ced/solid-plyr',
title: 'solid-plyr',
description: 'A simple HTML5, YouTube and Vimeo player (Plyr) for SolidJS.',
author: 'Prince Neil Cedrick Castro (git-ced)',