react-hook-form 8.0.0-alpha.0 → 8.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +387 -317
- package/dist/controller.d.ts +42 -0
- package/dist/controller.d.ts.map +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.mjs +694 -333
- package/dist/index.esm.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/logic/createFormControl.d.ts +1 -1
- package/dist/logic/createFormControl.d.ts.map +1 -1
- package/dist/logic/focusFieldBy.d.ts.map +1 -1
- package/dist/logic/getResolverOptions.d.ts +1 -1
- package/dist/logic/shouldRenderFormState.d.ts.map +1 -1
- package/dist/logic/updateFieldArrayRootError.d.ts +4 -0
- package/dist/logic/updateFieldArrayRootError.d.ts.map +1 -0
- package/dist/logic/validateField.d.ts +1 -1
- package/dist/logic/validateField.d.ts.map +1 -1
- package/dist/types/controller.d.ts +24 -3
- package/dist/types/controller.d.ts.map +1 -1
- package/dist/types/errors.d.ts +9 -2
- package/dist/types/errors.d.ts.map +1 -1
- package/dist/types/fieldArray.d.ts +173 -8
- package/dist/types/fieldArray.d.ts.map +1 -1
- package/dist/types/form.d.ts +395 -29
- package/dist/types/form.d.ts.map +1 -1
- package/dist/types/resolvers.d.ts +3 -3
- package/dist/types/resolvers.d.ts.map +1 -1
- package/dist/types/utils.d.ts +4 -5
- package/dist/types/utils.d.ts.map +1 -1
- package/dist/types/validator.d.ts +1 -1
- package/dist/types/validator.d.ts.map +1 -1
- package/dist/useController.d.ts +24 -0
- package/dist/useController.d.ts.map +1 -1
- package/dist/useFieldArray.d.ts +39 -2
- package/dist/useFieldArray.d.ts.map +1 -1
- package/dist/useForm.d.ts +30 -1
- package/dist/useForm.d.ts.map +1 -1
- package/dist/useFormContext.d.ts +62 -2
- package/dist/useFormContext.d.ts.map +1 -1
- package/dist/useFormState.d.ts +30 -0
- package/dist/useFormState.d.ts.map +1 -1
- package/dist/useWatch.d.ts +68 -4
- package/dist/useWatch.d.ts.map +1 -1
- package/dist/utils/compact.d.ts.map +1 -1
- package/dist/utils/unset.d.ts.map +1 -1
- package/package.json +21 -21
package/README.md
CHANGED
@@ -4,11 +4,8 @@
|
|
4
4
|
</a>
|
5
5
|
</div>
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
<img src="https://raw.githubusercontent.com/bluebill1049/react-hook-form/master/docs/v7_example.gif" alt="React Hook Form video - React custom hook for form validation" width="100%" />
|
10
|
-
</a>
|
11
|
-
</div>
|
7
|
+
|
8
|
+
https://user-images.githubusercontent.com/10513364/152621466-59a41c65-52b4-4518-9d79-ffa3fafa498a.mp4
|
12
9
|
|
13
10
|
<div align="center">
|
14
11
|
|
@@ -90,320 +87,393 @@ Thanks go to these kind and lovely sponsors (companies and individuals)!
|
|
90
87
|
<a href="https://marmelab.com/" target="_blank">
|
91
88
|
<img src="https://images.opencollective.com/marmelab/d7fd82f/logo/256.png" width="94" height="94" />
|
92
89
|
</a>
|
90
|
+
<a href="https://www.feathery.io/" target="_blank">
|
91
|
+
<img src="https://images.opencollective.com/feathery1/c29b0a1/logo/256.png" width="94" height="94" />
|
92
|
+
</a>
|
93
93
|
|
94
94
|
<p>
|
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
|
-
|
95
|
+
<a href="https://github.com/sayav">
|
96
|
+
<img
|
97
|
+
src="https://avatars1.githubusercontent.com/u/42376060?s=60&v=4"
|
98
|
+
width="45"
|
99
|
+
height="45"
|
100
|
+
alt="@sayav"
|
101
|
+
/>
|
102
|
+
</a>
|
103
|
+
<a href="https://github.com/lemcii">
|
104
|
+
<img
|
105
|
+
src="https://avatars1.githubusercontent.com/u/35668113?s=60&v=4"
|
106
|
+
width="45"
|
107
|
+
height="45"
|
108
|
+
alt="@lemcii"
|
109
|
+
/>
|
110
|
+
</a>
|
111
|
+
<a href="https://github.com/washingtonsoares">
|
112
|
+
<img
|
113
|
+
src="https://avatars.githubusercontent.com/u/5726140?v=4"
|
114
|
+
width="45"
|
115
|
+
height="45"
|
116
|
+
alt="@washingtonsoares"
|
117
|
+
/>
|
118
|
+
</a>
|
119
|
+
<a href="https://github.com/lixunn">
|
120
|
+
<img
|
121
|
+
src="https://avatars.githubusercontent.com/u/4017964?v=4"
|
122
|
+
width="45"
|
123
|
+
height="45"
|
124
|
+
alt="@lixunn"
|
125
|
+
/>
|
126
|
+
</a>
|
127
|
+
<a href="https://github.com/SamSamskies">
|
128
|
+
<img
|
129
|
+
src="https://avatars2.githubusercontent.com/u/3655410?s=60&v=4"
|
130
|
+
width="45"
|
131
|
+
height="45"
|
132
|
+
alt="@SamSamskies"
|
133
|
+
/>
|
134
|
+
</a>
|
135
|
+
<a href="https://github.com/peaonunes">
|
136
|
+
<img
|
137
|
+
src="https://avatars2.githubusercontent.com/u/3356720?s=60&v=4"
|
138
|
+
width="45"
|
139
|
+
height="45"
|
140
|
+
alt="@peaonunes"
|
141
|
+
/>
|
142
|
+
</a>
|
143
|
+
<a href="https://github.com/wilhelmeek">
|
144
|
+
<img
|
145
|
+
src="https://avatars2.githubusercontent.com/u/609452?s=60&v=4"
|
146
|
+
width="45"
|
147
|
+
height="45"
|
148
|
+
alt="@wilhelmeek"
|
149
|
+
/>
|
150
|
+
</a>
|
151
|
+
<a href="https://github.com/iwarner">
|
152
|
+
<img
|
153
|
+
src="https://avatars2.githubusercontent.com/u/279251?s=60&v=4"
|
154
|
+
width="45"
|
155
|
+
height="45"
|
156
|
+
alt="@iwarner"
|
157
|
+
/>
|
158
|
+
</a>
|
159
|
+
<a href="https://github.com/joejknowles">
|
160
|
+
<img
|
161
|
+
src="https://avatars2.githubusercontent.com/u/10728145?s=60&v=4"
|
162
|
+
width="45"
|
163
|
+
height="45"
|
164
|
+
alt="@joejknowles"
|
165
|
+
/>
|
166
|
+
</a>
|
167
|
+
<a href="https://github.com/chris-gunawardena">
|
168
|
+
<img
|
169
|
+
src="https://avatars0.githubusercontent.com/u/5763108?s=60&v=4"
|
170
|
+
width="45"
|
171
|
+
height="45"
|
172
|
+
alt="@chris-gunawardena"
|
173
|
+
/>
|
174
|
+
</a>
|
175
|
+
<a href="https://github.com/Tymek">
|
176
|
+
<img
|
177
|
+
src="https://avatars1.githubusercontent.com/u/2625371?s=60&v=4"
|
178
|
+
width="45"
|
179
|
+
height="45"
|
180
|
+
alt="@Tymek"
|
181
|
+
/>
|
182
|
+
</a>
|
183
|
+
<a href="https://github.com/Luchanso">
|
184
|
+
<img
|
185
|
+
src="https://avatars0.githubusercontent.com/u/2098777?s=60&v=4"
|
186
|
+
width="45"
|
187
|
+
height="45"
|
188
|
+
alt="@Luchanso"
|
189
|
+
/>
|
190
|
+
</a>
|
191
|
+
<a href="https://github.com/vcarel">
|
192
|
+
<img
|
193
|
+
src="https://avatars1.githubusercontent.com/u/1541093?s=60&v=4"
|
194
|
+
width="45"
|
195
|
+
height="45"
|
196
|
+
alt="@vcarel"
|
197
|
+
/>
|
198
|
+
</a>
|
199
|
+
<a href="https://github.com/gragland">
|
200
|
+
<img
|
201
|
+
src="https://avatars0.githubusercontent.com/u/1481077?s=60&v=4"
|
202
|
+
width="45"
|
203
|
+
height="45"
|
204
|
+
alt="@gragland"
|
205
|
+
/>
|
206
|
+
</a>
|
207
|
+
<a href="https://github.com/tjshipe">
|
208
|
+
<img
|
209
|
+
src="https://avatars2.githubusercontent.com/u/1254942?s=60&v=4"
|
210
|
+
width="45"
|
211
|
+
height="45"
|
212
|
+
alt="@tjshipe"
|
213
|
+
/>
|
214
|
+
</a>
|
215
|
+
<a href="https://github.com/krnlde">
|
216
|
+
<img
|
217
|
+
src="https://avatars1.githubusercontent.com/u/1087002?s=60&v=4"
|
218
|
+
width="45"
|
219
|
+
height="45"
|
220
|
+
alt="@krnlde"
|
221
|
+
/>
|
222
|
+
</a>
|
223
|
+
<a href="https://github.com/msutkowski">
|
224
|
+
<img
|
225
|
+
src="https://avatars2.githubusercontent.com/u/784953?s=60&v=4"
|
226
|
+
width="45"
|
227
|
+
height="45"
|
228
|
+
alt="@msutkowski"
|
229
|
+
/>
|
230
|
+
</a>
|
231
|
+
<a href="https://github.com/mlukaszczyk">
|
232
|
+
<img
|
233
|
+
src="https://avatars3.githubusercontent.com/u/599247?s=60&v=4"
|
234
|
+
width="45"
|
235
|
+
height="45"
|
236
|
+
alt="@mlukaszczyk"
|
237
|
+
/>
|
238
|
+
</a>
|
239
|
+
<a href="https://github.com/susshma">
|
240
|
+
<img
|
241
|
+
src="https://avatars0.githubusercontent.com/u/2566818?s=460&u=754ee26b96e321ff28dbc4a2744132015f534fe0&v=4"
|
242
|
+
width="45"
|
243
|
+
height="45"
|
244
|
+
/>
|
245
|
+
</a>
|
246
|
+
<a href="https://github.com/MatiasCiccone">
|
247
|
+
<img
|
248
|
+
src="https://avatars3.githubusercontent.com/u/32602795?s=460&u=6a0c4dbe23c4f9a5628dc8867842b75989ecc4aa&v=4"
|
249
|
+
width="45"
|
250
|
+
height="45"
|
251
|
+
/>
|
252
|
+
</a>
|
253
|
+
<a href="https://github.com/ghostwriternr">
|
254
|
+
<img
|
255
|
+
src="https://avatars0.githubusercontent.com/u/10023615?s=460&u=3ec1e4ba991699762fd22a9d9ef47a0599f937dc&v=4"
|
256
|
+
width="45"
|
257
|
+
height="45"
|
258
|
+
/>
|
259
|
+
</a>
|
260
|
+
<a href="https://github.com/neighborhood999">
|
261
|
+
<img
|
262
|
+
src="https://avatars3.githubusercontent.com/u/10325111?s=450&u=f60c932f81d95a60f77f5c7f2eab4590e07c29af&v=4"
|
263
|
+
width="45"
|
264
|
+
height="45"
|
265
|
+
/>
|
266
|
+
</a>
|
267
|
+
<a href="https://github.com/yjp20">
|
268
|
+
<img
|
269
|
+
src="https://avatars3.githubusercontent.com/u/44457064?s=460&u=a55119c84e0167f6a3f830dbad3133b28f0c0a8f&v=4"
|
270
|
+
width="45"
|
271
|
+
height="45"
|
272
|
+
/>
|
273
|
+
</a>
|
274
|
+
<a href="https://github.com/samantha-wong">
|
275
|
+
<img
|
276
|
+
src="https://avatars.githubusercontent.com/u/19571028?s=460&u=7421a02f600646b5836d5973359a257950cae8c4&v=4"
|
277
|
+
width="45"
|
278
|
+
height="45"
|
279
|
+
/>
|
280
|
+
</a>
|
281
|
+
<a href="https://github.com/msc-insure">
|
282
|
+
<img
|
283
|
+
src="https://avatars.githubusercontent.com/u/44406870?s=200&v=4"
|
284
|
+
width="45"
|
285
|
+
height="45"
|
286
|
+
/>
|
287
|
+
</a>
|
288
|
+
<a href="https://github.com/ccheney">
|
289
|
+
<img
|
290
|
+
src="https://avatars.githubusercontent.com/u/302437?v=4"
|
291
|
+
width="45"
|
292
|
+
height="45"
|
293
|
+
/>
|
294
|
+
</a>
|
295
|
+
<a href="https://github.com/artischockee">
|
296
|
+
<img
|
297
|
+
src="https://avatars.githubusercontent.com/u/22125223?v=4"
|
298
|
+
width="45"
|
299
|
+
height="45"
|
300
|
+
/>
|
301
|
+
</a>
|
302
|
+
<a href="https://github.com/tsongas">
|
303
|
+
<img
|
304
|
+
src="https://avatars.githubusercontent.com/u/2079598?v=4"
|
305
|
+
width="45"
|
306
|
+
height="45"
|
307
|
+
/>
|
308
|
+
</a>
|
309
|
+
<a href="https://github.com/knoefel">
|
310
|
+
<img
|
311
|
+
src="https://avatars.githubusercontent.com/u/2396344?v=4"
|
312
|
+
width="45"
|
313
|
+
height="45"
|
314
|
+
/>
|
315
|
+
</a>
|
316
|
+
<a href="https://github.com/JGibel">
|
317
|
+
<img
|
318
|
+
src="https://avatars.githubusercontent.com/u/1953965?v=4"
|
319
|
+
width="45"
|
320
|
+
height="45"
|
321
|
+
/>
|
322
|
+
</a>
|
323
|
+
<a href="https://github.com/gpalrepo">
|
324
|
+
<img
|
325
|
+
src="https://avatars.githubusercontent.com/u/41862257?v=4"
|
326
|
+
width="45"
|
327
|
+
height="45"
|
328
|
+
/>
|
329
|
+
</a>
|
330
|
+
<a href="https://github.com/pjsachdev">
|
331
|
+
<img
|
332
|
+
src="https://avatars.githubusercontent.com/u/43356139?v=4"
|
333
|
+
width="45"
|
334
|
+
height="45"
|
335
|
+
/>
|
336
|
+
</a>
|
337
|
+
<a href="https://github.com/svict4">
|
338
|
+
<img
|
339
|
+
src="https://avatars.githubusercontent.com/u/1137112?v=4"
|
340
|
+
width="45"
|
341
|
+
height="45"
|
342
|
+
/>
|
343
|
+
</a>
|
344
|
+
<a href="https://github.com/raisiqueira">
|
345
|
+
<img
|
346
|
+
src="https://avatars.githubusercontent.com/u/2914170?v=4"
|
347
|
+
width="45"
|
348
|
+
height="45"
|
349
|
+
/>
|
350
|
+
</a>
|
351
|
+
<a href="https://github.com/pashtet422">
|
352
|
+
<img
|
353
|
+
src="https://avatars.githubusercontent.com/u/45594821?v=4"
|
354
|
+
width="45"
|
355
|
+
height="45"
|
356
|
+
/>
|
357
|
+
</a>
|
358
|
+
<a href="https://github.com/ozywuli">
|
359
|
+
<img
|
360
|
+
src="https://avatars.githubusercontent.com/u/5769153?v=4"
|
361
|
+
width="45"
|
362
|
+
height="45"
|
363
|
+
/>
|
364
|
+
</a>
|
365
|
+
<a href="https://github.com/monkey0722">
|
366
|
+
<img
|
367
|
+
src="https://avatars.githubusercontent.com/u/12868063?v=4"
|
368
|
+
width="45"
|
369
|
+
height="45"
|
370
|
+
/>
|
371
|
+
</a>
|
372
|
+
<a href="https://github.com/KATT">
|
373
|
+
<img
|
374
|
+
src="https://avatars.githubusercontent.com/u/459267?v=4"
|
375
|
+
width="45"
|
376
|
+
height="45"
|
377
|
+
/>
|
378
|
+
</a>
|
379
|
+
<a href="https://github.com/jeroenvisser101">
|
380
|
+
<img
|
381
|
+
src="https://avatars.githubusercontent.com/u/1941348?v=4"
|
382
|
+
width="45"
|
383
|
+
height="45"
|
384
|
+
/>
|
385
|
+
</a>
|
386
|
+
<a href="https://github.com/sainu">
|
387
|
+
<img
|
388
|
+
src="https://avatars.githubusercontent.com/u/12888685?v=4"
|
389
|
+
width="45"
|
390
|
+
height="45"
|
391
|
+
/>
|
392
|
+
</a>
|
393
|
+
<a href="https://github.com/bkincart">
|
394
|
+
<img
|
395
|
+
src="https://avatars.githubusercontent.com/u/22803185?v=4"
|
396
|
+
width="45"
|
397
|
+
height="45"
|
398
|
+
/>
|
399
|
+
</a>
|
400
|
+
<a href="https://github.com/37108">
|
401
|
+
<img
|
402
|
+
src="https://avatars.githubusercontent.com/u/36793907?v=4"
|
403
|
+
width="45"
|
404
|
+
height="45"
|
405
|
+
/>
|
406
|
+
</a>
|
407
|
+
<a href="https://github.com/TadejPolajnar">
|
408
|
+
<img
|
409
|
+
src="https://avatars.githubusercontent.com/u/40028548?v=4"
|
410
|
+
width="45"
|
411
|
+
height="45"
|
412
|
+
/>
|
413
|
+
</a>
|
414
|
+
<a href="https://github.com/hahnlee">
|
415
|
+
<img
|
416
|
+
src="https://avatars.githubusercontent.com/u/16930958?v=4"
|
417
|
+
width="45"
|
418
|
+
height="45"
|
419
|
+
/>
|
420
|
+
</a>
|
421
|
+
<a href="https://github.com/ACPK">
|
422
|
+
<img
|
423
|
+
src="https://avatars.githubusercontent.com/u/2019893?v=4"
|
424
|
+
width="45"
|
425
|
+
height="45"
|
426
|
+
/>
|
427
|
+
</a>
|
428
|
+
<a href="https://github.com/alex-semenyuk">
|
429
|
+
<img
|
430
|
+
src="https://avatars.githubusercontent.com/u/5480441?v=4"
|
431
|
+
width="45"
|
432
|
+
height="45"
|
433
|
+
/>
|
434
|
+
</a>
|
435
|
+
<a href="https://github.com/Peter-AMD">
|
436
|
+
<img
|
437
|
+
src="https://avatars.githubusercontent.com/u/28400709?v=4"
|
438
|
+
width="45"
|
439
|
+
height="45"
|
440
|
+
/>
|
441
|
+
</a>
|
442
|
+
<a href="https://github.com/hjaber">
|
443
|
+
<img
|
444
|
+
src="https://avatars.githubusercontent.com/u/41503068?v=4"
|
445
|
+
width="45"
|
446
|
+
height="45"
|
447
|
+
/>
|
448
|
+
</a>
|
449
|
+
<a href="https://github.com/jprosevear">
|
450
|
+
<img
|
451
|
+
src="https://avatars.githubusercontent.com/u/699616?v=4"
|
452
|
+
width="45"
|
453
|
+
height="45"
|
454
|
+
/>
|
455
|
+
</a>
|
456
|
+
<a href="https://github.com/weisisheng">
|
457
|
+
<img
|
458
|
+
src="https://avatars.githubusercontent.com/u/47701145?v=4"
|
459
|
+
width="45"
|
460
|
+
height="45"
|
461
|
+
/>
|
462
|
+
</a>
|
463
|
+
<a href="https://github.com/IanVS">
|
464
|
+
<img
|
465
|
+
src="https://avatars.githubusercontent.com/u/4616705?v=4"
|
466
|
+
width="45"
|
467
|
+
height="45"
|
468
|
+
/>
|
469
|
+
</a>
|
470
|
+
<a href="https://github.com/anymaniax">
|
471
|
+
<img
|
472
|
+
src="https://avatars.githubusercontent.com/u/10516382?v=4"
|
473
|
+
width="45"
|
474
|
+
height="45"
|
475
|
+
/>
|
476
|
+
</a>
|
407
477
|
</p>
|
408
478
|
|
409
479
|
### Backers
|