@xyd-js/gql 0.1.0-build.170

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.
Files changed (76) hide show
  1. package/CHANGELOG.md +1551 -0
  2. package/LICENSE +21 -0
  3. package/README.md +3 -0
  4. package/TODO.md +8 -0
  5. package/__fixtures__/-1.opendocs.docs-nested/input.graphql +66 -0
  6. package/__fixtures__/-1.opendocs.docs-nested/output.json +554 -0
  7. package/__fixtures__/-1.opendocs.flat/input.graphql +19 -0
  8. package/__fixtures__/-1.opendocs.flat/output.json +243 -0
  9. package/__fixtures__/-1.opendocs.scopes/input.graphql +33 -0
  10. package/__fixtures__/-1.opendocs.scopes/output.json +378 -0
  11. package/__fixtures__/-1.opendocs.sidebar/input.graphql +44 -0
  12. package/__fixtures__/-1.opendocs.sort/input.graphql +92 -0
  13. package/__fixtures__/-1.opendocs.sort/output.json +1078 -0
  14. package/__fixtures__/-1.opendocs.sort+group/input.graphql +111 -0
  15. package/__fixtures__/-1.opendocs.sort+group/output.json +1114 -0
  16. package/__fixtures__/-1.opendocs.sort+group+path/input.graphql +118 -0
  17. package/__fixtures__/-1.opendocs.sort+group+path/output.json +1114 -0
  18. package/__fixtures__/-2.complex.github/input.graphql +69424 -0
  19. package/__fixtures__/-2.complex.github/output.json +269874 -0
  20. package/__fixtures__/-2.complex.livesession/input.graphql +23 -0
  21. package/__fixtures__/-2.complex.livesession/output.json +302 -0
  22. package/__fixtures__/-2.complex.monday/input.graphql +6089 -0
  23. package/__fixtures__/-2.complex.monday/output.json +1 -0
  24. package/__fixtures__/-3.array-non-null-return/input.graphql +9 -0
  25. package/__fixtures__/-3.array-non-null-return/output.json +151 -0
  26. package/__fixtures__/1.basic/input.graphql +118 -0
  27. package/__fixtures__/1.basic/output.json +630 -0
  28. package/__fixtures__/2.circular/input.graphql +17 -0
  29. package/__fixtures__/2.circular/output.json +248 -0
  30. package/__fixtures__/3.opendocs/input.graphql +27 -0
  31. package/__fixtures__/3.opendocs/output.json +338 -0
  32. package/__fixtures__/4.union/input.graphql +19 -0
  33. package/__fixtures__/4.union/output.json +344 -0
  34. package/__fixtures__/5.flat/input.graphql +27 -0
  35. package/__fixtures__/5.flat/output.json +383 -0
  36. package/__fixtures__/6.default-values/input.graphql +47 -0
  37. package/__fixtures__/6.default-values/output.json +655 -0
  38. package/__fixtures__/7.type-args/input.graphql +19 -0
  39. package/__fixtures__/7.type-args/output.json +301 -0
  40. package/__fixtures__/8.default-sort/input.graphql +60 -0
  41. package/__fixtures__/8.default-sort/output.json +1078 -0
  42. package/__tests__/gqlSchemaToReferences.test.ts +109 -0
  43. package/__tests__/utils.ts +45 -0
  44. package/declarations.d.ts +4 -0
  45. package/dist/index.d.ts +21 -0
  46. package/dist/index.js +1503 -0
  47. package/dist/index.js.map +1 -0
  48. package/dist/opendocs.graphql +56 -0
  49. package/index.ts +3 -0
  50. package/package.json +29 -0
  51. package/src/context.ts +17 -0
  52. package/src/converters/gql-arg.ts +51 -0
  53. package/src/converters/gql-enum.ts +27 -0
  54. package/src/converters/gql-field.ts +164 -0
  55. package/src/converters/gql-input.ts +34 -0
  56. package/src/converters/gql-interface.ts +35 -0
  57. package/src/converters/gql-mutation.ts +36 -0
  58. package/src/converters/gql-object.ts +83 -0
  59. package/src/converters/gql-operation.ts +128 -0
  60. package/src/converters/gql-query.ts +36 -0
  61. package/src/converters/gql-sample.ts +159 -0
  62. package/src/converters/gql-scalar.ts +16 -0
  63. package/src/converters/gql-subscription.ts +36 -0
  64. package/src/converters/gql-types.ts +195 -0
  65. package/src/converters/gql-union.ts +40 -0
  66. package/src/gql-core.ts +362 -0
  67. package/src/index.ts +3 -0
  68. package/src/opendocs.graphql +56 -0
  69. package/src/opendocs.ts +253 -0
  70. package/src/schema.ts +293 -0
  71. package/src/types.ts +103 -0
  72. package/src/utils.ts +25 -0
  73. package/tsconfig.json +18 -0
  74. package/tsup.config.ts +33 -0
  75. package/tsup.examples-config.ts +30 -0
  76. package/vitest.config.ts +21 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1551 @@
1
+ # @xyd-js/gql
2
+
3
+ ## 0.1.0-build.170
4
+
5
+ ### Patch Changes
6
+
7
+ - update all packages
8
+ - Updated dependencies
9
+ - @xyd-js/core@0.1.0-build.170
10
+ - @xyd-js/uniform@0.1.0-build.172
11
+
12
+ ## 0.1.0-build.169
13
+
14
+ ### Patch Changes
15
+
16
+ - update all packages
17
+ - Updated dependencies
18
+ - @xyd-js/core@0.1.0-build.169
19
+ - @xyd-js/uniform@0.1.0-build.171
20
+
21
+ ## 0.1.0-build.168
22
+
23
+ ### Patch Changes
24
+
25
+ - update all packages
26
+ - Updated dependencies
27
+ - @xyd-js/core@0.1.0-build.168
28
+ - @xyd-js/uniform@0.1.0-build.170
29
+
30
+ ## 0.1.0-build.167
31
+
32
+ ### Patch Changes
33
+
34
+ - update all packages
35
+ - Updated dependencies
36
+ - @xyd-js/core@0.1.0-build.167
37
+ - @xyd-js/uniform@0.1.0-build.169
38
+
39
+ ## 0.1.0-build.166
40
+
41
+ ### Patch Changes
42
+
43
+ - update all packages
44
+ - Updated dependencies
45
+ - @xyd-js/core@0.1.0-build.166
46
+ - @xyd-js/uniform@0.1.0-build.168
47
+
48
+ ## 0.1.0-build.165
49
+
50
+ ### Patch Changes
51
+
52
+ - update all packages
53
+ - Updated dependencies
54
+ - @xyd-js/core@0.1.0-build.165
55
+ - @xyd-js/uniform@0.1.0-build.167
56
+
57
+ ## 0.1.0-build.164
58
+
59
+ ### Patch Changes
60
+
61
+ - update all packages
62
+ - Updated dependencies
63
+ - @xyd-js/core@0.1.0-build.164
64
+ - @xyd-js/uniform@0.1.0-build.166
65
+
66
+ ## 0.1.0-build.163
67
+
68
+ ### Patch Changes
69
+
70
+ - update all packages
71
+ - Updated dependencies
72
+ - @xyd-js/core@0.1.0-build.163
73
+ - @xyd-js/uniform@0.1.0-build.165
74
+
75
+ ## 0.1.0-build.162
76
+
77
+ ### Patch Changes
78
+
79
+ - update all packages
80
+ - Updated dependencies
81
+ - @xyd-js/core@0.1.0-build.162
82
+ - @xyd-js/uniform@0.1.0-build.164
83
+
84
+ ## 0.1.0-build.161
85
+
86
+ ### Patch Changes
87
+
88
+ - update all packages
89
+ - Updated dependencies
90
+ - @xyd-js/core@0.1.0-build.161
91
+ - @xyd-js/uniform@0.1.0-build.163
92
+
93
+ ## 0.1.0-build.160
94
+
95
+ ### Patch Changes
96
+
97
+ - update all packages
98
+ - Updated dependencies
99
+ - @xyd-js/core@0.1.0-build.160
100
+ - @xyd-js/uniform@0.1.0-build.162
101
+
102
+ ## 0.1.0-build.159
103
+
104
+ ### Patch Changes
105
+
106
+ - update all packages
107
+ - Updated dependencies
108
+ - @xyd-js/core@0.1.0-build.159
109
+ - @xyd-js/uniform@0.1.0-build.161
110
+
111
+ ## 0.1.0-build.158
112
+
113
+ ### Patch Changes
114
+
115
+ - update all packages
116
+ - Updated dependencies
117
+ - @xyd-js/core@0.1.0-build.158
118
+ - @xyd-js/uniform@0.1.0-build.160
119
+
120
+ ## 0.1.0-build.157
121
+
122
+ ### Patch Changes
123
+
124
+ - update all packages
125
+ - Updated dependencies
126
+ - @xyd-js/core@0.1.0-build.157
127
+ - @xyd-js/uniform@0.1.0-build.159
128
+
129
+ ## 0.1.0-build.156
130
+
131
+ ### Patch Changes
132
+
133
+ - update all packages
134
+ - Updated dependencies
135
+ - @xyd-js/core@0.1.0-build.156
136
+ - @xyd-js/uniform@0.1.0-build.158
137
+
138
+ ## 0.1.0-build.155
139
+
140
+ ### Patch Changes
141
+
142
+ - 98583f0: update all packages
143
+ - 98583f0: update all packages
144
+ - update all packages
145
+ - Updated dependencies [98583f0]
146
+ - Updated dependencies [98583f0]
147
+ - Updated dependencies
148
+ - @xyd-js/core@0.1.0-build.155
149
+ - @xyd-js/uniform@0.1.0-build.157
150
+
151
+ ## 0.1.0-build.154
152
+
153
+ ### Patch Changes
154
+
155
+ - update all packages
156
+ - Updated dependencies
157
+ - @xyd-js/core@0.1.0-build.154
158
+ - @xyd-js/uniform@0.1.0-build.156
159
+
160
+ ## 0.1.0-build.153
161
+
162
+ ### Patch Changes
163
+
164
+ - update all packages
165
+ - Updated dependencies
166
+ - @xyd-js/core@0.1.0-build.153
167
+ - @xyd-js/uniform@0.1.0-build.155
168
+
169
+ ## 0.1.0-build.152
170
+
171
+ ### Patch Changes
172
+
173
+ - update all packages
174
+ - Updated dependencies
175
+ - @xyd-js/core@0.1.0-build.152
176
+ - @xyd-js/uniform@0.1.0-build.154
177
+
178
+ ## 0.1.0-build.151
179
+
180
+ ### Patch Changes
181
+
182
+ - update all packages
183
+ - Updated dependencies
184
+ - @xyd-js/core@0.1.0-build.151
185
+ - @xyd-js/uniform@0.1.0-build.153
186
+
187
+ ## 0.1.0-build.150
188
+
189
+ ### Patch Changes
190
+
191
+ - update all packages
192
+ - Updated dependencies
193
+ - @xyd-js/core@0.1.0-build.150
194
+ - @xyd-js/uniform@0.1.0-build.152
195
+
196
+ ## 0.1.0-build.149
197
+
198
+ ### Patch Changes
199
+
200
+ - update all packages
201
+ - Updated dependencies
202
+ - @xyd-js/core@0.1.0-build.149
203
+ - @xyd-js/uniform@0.1.0-build.151
204
+
205
+ ## 0.1.0-build.148
206
+
207
+ ### Patch Changes
208
+
209
+ - update all packages
210
+ - Updated dependencies
211
+ - @xyd-js/core@0.1.0-build.148
212
+ - @xyd-js/uniform@0.1.0-build.150
213
+
214
+ ## 0.1.0-build.147
215
+
216
+ ### Patch Changes
217
+
218
+ - update all packages
219
+ - Updated dependencies
220
+ - @xyd-js/core@0.1.0-build.147
221
+ - @xyd-js/uniform@0.1.0-build.149
222
+
223
+ ## 0.1.0-build.146
224
+
225
+ ### Patch Changes
226
+
227
+ - update all packages
228
+ - Updated dependencies
229
+ - @xyd-js/core@0.1.0-build.146
230
+ - @xyd-js/uniform@0.1.0-build.148
231
+
232
+ ## 0.1.0-build.145
233
+
234
+ ### Patch Changes
235
+
236
+ - update all packages
237
+ - Updated dependencies
238
+ - @xyd-js/core@0.1.0-build.145
239
+ - @xyd-js/uniform@0.1.0-build.147
240
+
241
+ ## 0.1.0-build.144
242
+
243
+ ### Patch Changes
244
+
245
+ - update all packages
246
+ - Updated dependencies
247
+ - @xyd-js/core@0.1.0-build.144
248
+ - @xyd-js/uniform@0.1.0-build.146
249
+
250
+ ## 0.1.0-build.143
251
+
252
+ ### Patch Changes
253
+
254
+ - update all packages
255
+ - Updated dependencies
256
+ - @xyd-js/core@0.1.0-build.143
257
+ - @xyd-js/uniform@0.1.0-build.145
258
+
259
+ ## 0.1.0-build.142
260
+
261
+ ### Patch Changes
262
+
263
+ - update all packages
264
+ - Updated dependencies
265
+ - @xyd-js/core@0.1.0-build.142
266
+ - @xyd-js/uniform@0.1.0-build.144
267
+
268
+ ## 0.1.0-build.141
269
+
270
+ ### Patch Changes
271
+
272
+ - update all packages
273
+ - Updated dependencies
274
+ - @xyd-js/core@0.1.0-build.141
275
+ - @xyd-js/uniform@0.1.0-build.143
276
+
277
+ ## 0.1.0-build.140
278
+
279
+ ### Patch Changes
280
+
281
+ - update all packages
282
+ - Updated dependencies
283
+ - @xyd-js/core@0.1.0-build.140
284
+ - @xyd-js/uniform@0.1.0-build.142
285
+
286
+ ## 0.1.0-build.139
287
+
288
+ ### Patch Changes
289
+
290
+ - update all packages
291
+ - Updated dependencies
292
+ - @xyd-js/core@0.1.0-build.139
293
+ - @xyd-js/uniform@0.1.0-build.141
294
+
295
+ ## 0.1.0-build.138
296
+
297
+ ### Patch Changes
298
+
299
+ - update all packages
300
+ - Updated dependencies
301
+ - @xyd-js/core@0.1.0-build.138
302
+ - @xyd-js/uniform@0.1.0-build.140
303
+
304
+ ## 0.1.0-build.137
305
+
306
+ ### Patch Changes
307
+
308
+ - update all packages
309
+ - Updated dependencies
310
+ - @xyd-js/core@0.1.0-build.137
311
+ - @xyd-js/uniform@0.1.0-build.139
312
+
313
+ ## 0.1.0-build.136
314
+
315
+ ### Patch Changes
316
+
317
+ - update all packages
318
+ - Updated dependencies
319
+ - @xyd-js/core@0.1.0-build.136
320
+ - @xyd-js/uniform@0.1.0-build.138
321
+
322
+ ## 0.1.0-build.135
323
+
324
+ ### Patch Changes
325
+
326
+ - update all packages
327
+ - Updated dependencies
328
+ - @xyd-js/core@0.1.0-build.135
329
+ - @xyd-js/uniform@0.1.0-build.137
330
+
331
+ ## 0.1.0-build.134
332
+
333
+ ### Patch Changes
334
+
335
+ - update all packages
336
+ - Updated dependencies
337
+ - @xyd-js/core@0.1.0-build.134
338
+ - @xyd-js/uniform@0.1.0-build.136
339
+
340
+ ## 0.1.0-build.133
341
+
342
+ ### Patch Changes
343
+
344
+ - update all packages
345
+ - Updated dependencies
346
+ - @xyd-js/core@0.1.0-build.133
347
+ - @xyd-js/uniform@0.1.0-build.135
348
+
349
+ ## 0.1.0-build.132
350
+
351
+ ### Patch Changes
352
+
353
+ - update all packages
354
+ - Updated dependencies
355
+ - @xyd-js/core@0.1.0-build.132
356
+ - @xyd-js/uniform@0.1.0-build.134
357
+
358
+ ## 0.1.0-build.131
359
+
360
+ ### Patch Changes
361
+
362
+ - update all packages
363
+ - Updated dependencies
364
+ - @xyd-js/core@0.1.0-build.131
365
+ - @xyd-js/uniform@0.1.0-build.133
366
+
367
+ ## 0.1.0-build.130
368
+
369
+ ### Patch Changes
370
+
371
+ - update all packages
372
+ - Updated dependencies
373
+ - @xyd-js/core@0.1.0-build.130
374
+ - @xyd-js/uniform@0.1.0-build.132
375
+
376
+ ## 0.1.0-build.129
377
+
378
+ ### Patch Changes
379
+
380
+ - update all packages
381
+ - Updated dependencies
382
+ - @xyd-js/core@0.1.0-build.129
383
+ - @xyd-js/uniform@0.1.0-build.131
384
+
385
+ ## 0.1.0-build.128
386
+
387
+ ### Patch Changes
388
+
389
+ - update all packages
390
+ - Updated dependencies
391
+ - @xyd-js/core@0.1.0-build.128
392
+ - @xyd-js/uniform@0.1.0-build.130
393
+
394
+ ## 0.1.0-build.127
395
+
396
+ ### Patch Changes
397
+
398
+ - update all packages
399
+ - Updated dependencies
400
+ - @xyd-js/core@0.1.0-build.127
401
+ - @xyd-js/uniform@0.1.0-build.129
402
+
403
+ ## 0.1.0-build.126
404
+
405
+ ### Patch Changes
406
+
407
+ - update all packages
408
+ - Updated dependencies
409
+ - @xyd-js/core@0.1.0-build.126
410
+ - @xyd-js/uniform@0.1.0-build.128
411
+
412
+ ## 0.1.0-build.125
413
+
414
+ ### Patch Changes
415
+
416
+ - update all packages
417
+ - Updated dependencies
418
+ - @xyd-js/core@0.1.0-build.125
419
+ - @xyd-js/uniform@0.1.0-build.127
420
+
421
+ ## 0.1.0-build.124
422
+
423
+ ### Patch Changes
424
+
425
+ - update all packages
426
+ - Updated dependencies
427
+ - @xyd-js/core@0.1.0-build.124
428
+ - @xyd-js/uniform@0.1.0-build.126
429
+
430
+ ## 0.1.0-build.123
431
+
432
+ ### Patch Changes
433
+
434
+ - update all packages
435
+ - Updated dependencies
436
+ - @xyd-js/core@0.1.0-build.123
437
+ - @xyd-js/uniform@0.1.0-build.125
438
+
439
+ ## 0.1.0-xyd.122
440
+
441
+ ### Patch Changes
442
+
443
+ - update all packages
444
+ - Updated dependencies
445
+ - @xyd-js/core@0.1.0-xyd.122
446
+ - @xyd-js/uniform@0.1.0-xyd.124
447
+
448
+ ## 0.1.0-xyd.121
449
+
450
+ ### Patch Changes
451
+
452
+ - update all packages
453
+ - Updated dependencies
454
+ - @xyd-js/core@0.1.0-xyd.121
455
+ - @xyd-js/uniform@0.1.0-xyd.123
456
+
457
+ ## 0.1.0-xyd.120
458
+
459
+ ### Patch Changes
460
+
461
+ - update all packages
462
+ - Updated dependencies
463
+ - @xyd-js/core@0.1.0-xyd.120
464
+ - @xyd-js/uniform@0.1.0-xyd.122
465
+
466
+ ## 0.1.0-xyd.119
467
+
468
+ ### Patch Changes
469
+
470
+ - update all packages
471
+ - Updated dependencies
472
+ - @xyd-js/core@0.1.0-xyd.119
473
+ - @xyd-js/uniform@0.1.0-xyd.121
474
+
475
+ ## 0.1.0-xyd.118
476
+
477
+ ### Patch Changes
478
+
479
+ - update all packages
480
+ - Updated dependencies
481
+ - @xyd-js/core@0.1.0-xyd.118
482
+ - @xyd-js/uniform@0.1.0-xyd.120
483
+
484
+ ## 0.1.0-xyd.117
485
+
486
+ ### Patch Changes
487
+
488
+ - update all packages
489
+ - Updated dependencies
490
+ - @xyd-js/core@0.1.0-xyd.117
491
+ - @xyd-js/uniform@0.1.0-xyd.119
492
+
493
+ ## 0.1.0-xyd.116
494
+
495
+ ### Patch Changes
496
+
497
+ - update all packages
498
+ - Updated dependencies
499
+ - @xyd-js/core@0.1.0-xyd.116
500
+ - @xyd-js/uniform@0.1.0-xyd.118
501
+
502
+ ## 0.1.0-xyd.115
503
+
504
+ ### Patch Changes
505
+
506
+ - update all packages
507
+ - Updated dependencies
508
+ - @xyd-js/core@0.1.0-xyd.115
509
+ - @xyd-js/uniform@0.1.0-xyd.117
510
+
511
+ ## 0.1.0-xyd.114
512
+
513
+ ### Patch Changes
514
+
515
+ - update all packages
516
+ - Updated dependencies
517
+ - @xyd-js/core@0.1.0-xyd.114
518
+ - @xyd-js/uniform@0.1.0-xyd.116
519
+
520
+ ## 0.1.0-xyd.113
521
+
522
+ ### Patch Changes
523
+
524
+ - update all packages
525
+ - Updated dependencies
526
+ - @xyd-js/core@0.1.0-xyd.113
527
+ - @xyd-js/uniform@0.1.0-xyd.115
528
+
529
+ ## 0.1.0-xyd.112
530
+
531
+ ### Patch Changes
532
+
533
+ - update all packages
534
+ - Updated dependencies
535
+ - @xyd-js/core@0.1.0-xyd.112
536
+ - @xyd-js/uniform@0.1.0-xyd.114
537
+
538
+ ## 0.1.0-xyd.111
539
+
540
+ ### Patch Changes
541
+
542
+ - update all packages
543
+ - Updated dependencies
544
+ - @xyd-js/core@0.1.0-xyd.111
545
+ - @xyd-js/uniform@0.1.0-xyd.113
546
+
547
+ ## 0.1.0-xyd.110
548
+
549
+ ### Patch Changes
550
+
551
+ - update all packages
552
+ - Updated dependencies
553
+ - @xyd-js/core@0.1.0-xyd.110
554
+ - @xyd-js/uniform@0.1.0-xyd.112
555
+
556
+ ## 0.1.0-xyd.109
557
+
558
+ ### Patch Changes
559
+
560
+ - update all packages
561
+ - Updated dependencies
562
+ - @xyd-js/core@0.1.0-xyd.109
563
+ - @xyd-js/uniform@0.1.0-xyd.111
564
+
565
+ ## 0.1.0-xyd.108
566
+
567
+ ### Patch Changes
568
+
569
+ - 94cdf70: update all packages
570
+ - 94cdf70: update all packages
571
+ - 94cdf70: update all packages
572
+ - 94cdf70: update all packages
573
+ - 94cdf70: update all packages
574
+ - update all packages
575
+ - update all packages
576
+ - update all packages
577
+ - Updated dependencies [94cdf70]
578
+ - Updated dependencies [94cdf70]
579
+ - Updated dependencies [94cdf70]
580
+ - Updated dependencies [94cdf70]
581
+ - Updated dependencies [94cdf70]
582
+ - Updated dependencies
583
+ - Updated dependencies
584
+ - Updated dependencies
585
+ - @xyd-js/core@0.1.0-xyd.108
586
+ - @xyd-js/uniform@0.1.0-xyd.110
587
+
588
+ ## 0.1.0-xyd.107
589
+
590
+ ### Patch Changes
591
+
592
+ - update all packages
593
+ - update all packages
594
+ - update all packages
595
+ - Updated dependencies
596
+ - Updated dependencies
597
+ - Updated dependencies
598
+ - @xyd-js/core@0.1.0-xyd.107
599
+ - @xyd-js/uniform@0.1.0-xyd.109
600
+
601
+ ## 0.1.0-xyd.106
602
+
603
+ ### Patch Changes
604
+
605
+ - update all packages
606
+ - Updated dependencies
607
+ - @xyd-js/core@0.1.0-xyd.106
608
+ - @xyd-js/uniform@0.1.0-xyd.108
609
+
610
+ ## 0.1.0-xyd.105
611
+
612
+ ### Patch Changes
613
+
614
+ - update all packages
615
+ - Updated dependencies
616
+ - @xyd-js/core@0.1.0-xyd.105
617
+ - @xyd-js/uniform@0.1.0-xyd.107
618
+
619
+ ## 0.1.0-xyd.104
620
+
621
+ ### Patch Changes
622
+
623
+ - update all packages
624
+ - Updated dependencies
625
+ - @xyd-js/core@0.1.0-xyd.104
626
+ - @xyd-js/uniform@0.1.0-xyd.106
627
+
628
+ ## 0.1.0-xyd.103
629
+
630
+ ### Patch Changes
631
+
632
+ - update all packages
633
+ - Updated dependencies
634
+ - @xyd-js/core@0.1.0-xyd.103
635
+ - @xyd-js/uniform@0.1.0-xyd.105
636
+
637
+ ## 0.1.0-xyd.102
638
+
639
+ ### Patch Changes
640
+
641
+ - update all packages
642
+ - Updated dependencies
643
+ - @xyd-js/core@0.1.0-xyd.102
644
+ - @xyd-js/uniform@0.1.0-xyd.104
645
+
646
+ ## 0.1.0-xyd.101
647
+
648
+ ### Patch Changes
649
+
650
+ - update all packages
651
+ - Updated dependencies
652
+ - @xyd-js/core@0.1.0-xyd.101
653
+ - @xyd-js/uniform@0.1.0-xyd.103
654
+
655
+ ## 0.1.0-xyd.100
656
+
657
+ ### Patch Changes
658
+
659
+ - update all packages
660
+ - Updated dependencies
661
+ - @xyd-js/core@0.1.0-xyd.100
662
+ - @xyd-js/uniform@0.1.0-xyd.102
663
+
664
+ ## 0.1.0-xyd.99
665
+
666
+ ### Patch Changes
667
+
668
+ - update all packages
669
+ - Updated dependencies
670
+ - @xyd-js/core@0.1.0-xyd.99
671
+ - @xyd-js/uniform@0.1.0-xyd.101
672
+
673
+ ## 0.1.0-xyd.98
674
+
675
+ ### Patch Changes
676
+
677
+ - update all packages
678
+ - Updated dependencies
679
+ - @xyd-js/core@0.1.0-xyd.98
680
+ - @xyd-js/uniform@0.1.0-xyd.100
681
+
682
+ ## 0.1.0-xyd.97
683
+
684
+ ### Patch Changes
685
+
686
+ - update all packages
687
+ - Updated dependencies
688
+ - @xyd-js/core@0.1.0-xyd.97
689
+ - @xyd-js/uniform@0.1.0-xyd.99
690
+
691
+ ## 0.1.0-xyd.96
692
+
693
+ ### Patch Changes
694
+
695
+ - update all packages
696
+ - Updated dependencies
697
+ - @xyd-js/core@0.1.0-xyd.96
698
+ - @xyd-js/uniform@0.1.0-xyd.98
699
+
700
+ ## 0.1.0-xyd.95
701
+
702
+ ### Patch Changes
703
+
704
+ - update all packages
705
+ - Updated dependencies
706
+ - @xyd-js/core@0.1.0-xyd.95
707
+ - @xyd-js/uniform@0.1.0-xyd.97
708
+
709
+ ## 0.1.0-xyd.94
710
+
711
+ ### Patch Changes
712
+
713
+ - update all packages
714
+ - Updated dependencies
715
+ - @xyd-js/core@0.1.0-xyd.94
716
+ - @xyd-js/uniform@0.1.0-xyd.96
717
+
718
+ ## 0.1.0-xyd.93
719
+
720
+ ### Patch Changes
721
+
722
+ - update all packages
723
+ - Updated dependencies
724
+ - @xyd-js/core@0.1.0-xyd.93
725
+ - @xyd-js/uniform@0.1.0-xyd.95
726
+
727
+ ## 0.1.0-xyd.92
728
+
729
+ ### Patch Changes
730
+
731
+ - update all packages
732
+ - Updated dependencies
733
+ - @xyd-js/core@0.1.0-xyd.92
734
+ - @xyd-js/uniform@0.1.0-xyd.94
735
+
736
+ ## 0.1.0-xyd.91
737
+
738
+ ### Patch Changes
739
+
740
+ - update all packages
741
+ - Updated dependencies
742
+ - @xyd-js/core@0.1.0-xyd.91
743
+ - @xyd-js/uniform@0.1.0-xyd.93
744
+
745
+ ## 0.1.0-xyd.90
746
+
747
+ ### Patch Changes
748
+
749
+ - update all packages
750
+ - Updated dependencies
751
+ - @xyd-js/core@0.1.0-xyd.90
752
+ - @xyd-js/uniform@0.1.0-xyd.92
753
+
754
+ ## 0.1.0-xyd.89
755
+
756
+ ### Patch Changes
757
+
758
+ - update all packages
759
+ - Updated dependencies
760
+ - @xyd-js/core@0.1.0-xyd.89
761
+ - @xyd-js/uniform@0.1.0-xyd.91
762
+
763
+ ## 0.1.0-xyd.88
764
+
765
+ ### Patch Changes
766
+
767
+ - update all packages
768
+ - Updated dependencies
769
+ - @xyd-js/core@0.1.0-xyd.88
770
+ - @xyd-js/uniform@0.1.0-xyd.90
771
+
772
+ ## 0.1.0-xyd.87
773
+
774
+ ### Patch Changes
775
+
776
+ - update all packages
777
+ - Updated dependencies
778
+ - @xyd-js/core@0.1.0-xyd.87
779
+ - @xyd-js/uniform@0.1.0-xyd.89
780
+
781
+ ## 0.1.0-xyd.86
782
+
783
+ ### Patch Changes
784
+
785
+ - update all packages
786
+ - Updated dependencies
787
+ - @xyd-js/core@0.1.0-xyd.86
788
+ - @xyd-js/uniform@0.1.0-xyd.88
789
+
790
+ ## 0.1.0-xyd.85
791
+
792
+ ### Patch Changes
793
+
794
+ - update all packages
795
+ - Updated dependencies
796
+ - @xyd-js/core@0.1.0-xyd.85
797
+ - @xyd-js/uniform@0.1.0-xyd.87
798
+
799
+ ## 0.1.0-xyd.84
800
+
801
+ ### Patch Changes
802
+
803
+ - update all packages
804
+ - Updated dependencies
805
+ - @xyd-js/core@0.1.0-xyd.84
806
+ - @xyd-js/uniform@0.1.0-xyd.86
807
+
808
+ ## 0.1.0-xyd.83
809
+
810
+ ### Patch Changes
811
+
812
+ - update all packages
813
+ - Updated dependencies
814
+ - @xyd-js/core@0.1.0-xyd.83
815
+ - @xyd-js/uniform@0.1.0-xyd.85
816
+
817
+ ## 0.1.0-xyd.82
818
+
819
+ ### Patch Changes
820
+
821
+ - update all packages
822
+ - Updated dependencies
823
+ - @xyd-js/core@0.1.0-xyd.82
824
+ - @xyd-js/uniform@0.1.0-xyd.84
825
+
826
+ ## 0.1.0-xyd.81
827
+
828
+ ### Patch Changes
829
+
830
+ - update all packages
831
+ - Updated dependencies
832
+ - @xyd-js/core@0.1.0-xyd.81
833
+ - @xyd-js/uniform@0.1.0-xyd.83
834
+
835
+ ## 0.1.0-xyd.80
836
+
837
+ ### Patch Changes
838
+
839
+ - update all packages
840
+ - Updated dependencies
841
+ - @xyd-js/core@0.1.0-xyd.80
842
+ - @xyd-js/uniform@0.1.0-xyd.82
843
+
844
+ ## 0.1.0-xyd.79
845
+
846
+ ### Patch Changes
847
+
848
+ - update all packages
849
+ - update all packages
850
+ - Updated dependencies
851
+ - Updated dependencies
852
+ - @xyd-js/core@0.1.0-xyd.79
853
+ - @xyd-js/uniform@0.1.0-xyd.81
854
+
855
+ ## 0.1.0-xyd.78
856
+
857
+ ### Patch Changes
858
+
859
+ - update all packages
860
+ - Updated dependencies
861
+ - @xyd-js/core@0.1.0-xyd.78
862
+ - @xyd-js/uniform@0.1.0-xyd.80
863
+
864
+ ## 0.1.0-xyd.77
865
+
866
+ ### Patch Changes
867
+
868
+ - update all packages
869
+ - Updated dependencies
870
+ - @xyd-js/core@0.1.0-xyd.77
871
+ - @xyd-js/uniform@0.1.0-xyd.79
872
+
873
+ ## 0.1.0-xyd.76
874
+
875
+ ### Patch Changes
876
+
877
+ - update all packages
878
+ - Updated dependencies
879
+ - @xyd-js/core@0.1.0-xyd.76
880
+ - @xyd-js/uniform@0.1.0-xyd.78
881
+
882
+ ## 0.1.0-xyd.75
883
+
884
+ ### Patch Changes
885
+
886
+ - update all packages
887
+ - Updated dependencies
888
+ - @xyd-js/core@0.1.0-xyd.75
889
+ - @xyd-js/uniform@0.1.0-xyd.77
890
+
891
+ ## 0.1.0-xyd.74
892
+
893
+ ### Patch Changes
894
+
895
+ - update all packages
896
+ - Updated dependencies
897
+ - @xyd-js/core@0.1.0-xyd.74
898
+ - @xyd-js/uniform@0.1.0-xyd.76
899
+
900
+ ## 0.1.0-xyd.73
901
+
902
+ ### Patch Changes
903
+
904
+ - update all packages
905
+ - Updated dependencies
906
+ - @xyd-js/core@0.1.0-xyd.73
907
+ - @xyd-js/uniform@0.1.0-xyd.75
908
+
909
+ ## 0.1.0-xyd.72
910
+
911
+ ### Patch Changes
912
+
913
+ - update all packages
914
+ - update all packages
915
+ - Updated dependencies
916
+ - Updated dependencies
917
+ - @xyd-js/core@0.1.0-xyd.72
918
+ - @xyd-js/uniform@0.1.0-xyd.74
919
+
920
+ ## 0.1.0-xyd.71
921
+
922
+ ### Patch Changes
923
+
924
+ - update all packages
925
+ - Updated dependencies
926
+ - @xyd-js/core@0.1.0-xyd.71
927
+ - @xyd-js/uniform@0.1.0-xyd.73
928
+
929
+ ## 0.1.0-xyd.70
930
+
931
+ ### Patch Changes
932
+
933
+ - update all packages
934
+ - Updated dependencies
935
+ - @xyd-js/core@0.1.0-xyd.70
936
+ - @xyd-js/uniform@0.1.0-xyd.72
937
+
938
+ ## 0.1.0-xyd.69
939
+
940
+ ### Patch Changes
941
+
942
+ - update all packages
943
+ - Updated dependencies
944
+ - @xyd-js/core@0.1.0-xyd.69
945
+ - @xyd-js/uniform@0.1.0-xyd.71
946
+
947
+ ## 0.1.0-xyd.68
948
+
949
+ ### Patch Changes
950
+
951
+ - update all packages
952
+ - Updated dependencies
953
+ - @xyd-js/core@0.1.0-xyd.68
954
+ - @xyd-js/uniform@0.1.0-xyd.70
955
+
956
+ ## 0.1.0-xyd.67
957
+
958
+ ### Patch Changes
959
+
960
+ - update all packages
961
+ - Updated dependencies
962
+ - @xyd-js/core@0.1.0-xyd.67
963
+ - @xyd-js/uniform@0.1.0-xyd.69
964
+
965
+ ## 0.1.0-xyd.66
966
+
967
+ ### Patch Changes
968
+
969
+ - update all packages
970
+ - update all packages
971
+ - Updated dependencies
972
+ - Updated dependencies
973
+ - @xyd-js/core@0.1.0-xyd.66
974
+ - @xyd-js/uniform@0.1.0-xyd.68
975
+
976
+ ## 0.1.0-xyd.65
977
+
978
+ ### Patch Changes
979
+
980
+ - update all packages
981
+ - Updated dependencies
982
+ - @xyd-js/core@0.1.0-xyd.65
983
+ - @xyd-js/uniform@0.1.0-xyd.67
984
+
985
+ ## 0.1.0-xyd.64
986
+
987
+ ### Patch Changes
988
+
989
+ - update all packages
990
+ - Updated dependencies
991
+ - @xyd-js/core@0.1.0-xyd.64
992
+ - @xyd-js/uniform@0.1.0-xyd.66
993
+
994
+ ## 0.1.0-xyd.63
995
+
996
+ ### Patch Changes
997
+
998
+ - update all packages
999
+ - Updated dependencies
1000
+ - @xyd-js/core@0.1.0-xyd.63
1001
+ - @xyd-js/uniform@0.1.0-xyd.65
1002
+
1003
+ ## 0.1.0-xyd.62
1004
+
1005
+ ### Patch Changes
1006
+
1007
+ - update all packages
1008
+ - Updated dependencies
1009
+ - @xyd-js/core@0.1.0-xyd.62
1010
+ - @xyd-js/uniform@0.1.0-xyd.64
1011
+
1012
+ ## 0.1.0-xyd.61
1013
+
1014
+ ### Patch Changes
1015
+
1016
+ - update all packages
1017
+ - Updated dependencies
1018
+ - @xyd-js/core@0.1.0-xyd.61
1019
+ - @xyd-js/uniform@0.1.0-xyd.63
1020
+
1021
+ ## 0.1.0-xyd.60
1022
+
1023
+ ### Patch Changes
1024
+
1025
+ - update all packages
1026
+ - Updated dependencies
1027
+ - @xyd-js/core@0.1.0-xyd.60
1028
+ - @xyd-js/uniform@0.1.0-xyd.62
1029
+
1030
+ ## 0.1.0-xyd.59
1031
+
1032
+ ### Patch Changes
1033
+
1034
+ - update all packages
1035
+ - Updated dependencies
1036
+ - @xyd-js/core@0.1.0-xyd.59
1037
+ - @xyd-js/uniform@0.1.0-xyd.61
1038
+
1039
+ ## 0.1.0-xyd.58
1040
+
1041
+ ### Patch Changes
1042
+
1043
+ - update all packages
1044
+ - Updated dependencies
1045
+ - @xyd-js/core@0.1.0-xyd.58
1046
+ - @xyd-js/uniform@0.1.0-xyd.60
1047
+
1048
+ ## 0.1.0-xyd.57
1049
+
1050
+ ### Patch Changes
1051
+
1052
+ - update all packages
1053
+ - Updated dependencies
1054
+ - @xyd-js/core@0.1.0-xyd.57
1055
+ - @xyd-js/uniform@0.1.0-xyd.59
1056
+
1057
+ ## 0.1.0-xyd.56
1058
+
1059
+ ### Patch Changes
1060
+
1061
+ - update all packages
1062
+ - Updated dependencies
1063
+ - @xyd-js/core@0.1.0-xyd.56
1064
+ - @xyd-js/uniform@0.1.0-xyd.58
1065
+
1066
+ ## 0.1.0-xyd.55
1067
+
1068
+ ### Patch Changes
1069
+
1070
+ - update all packages
1071
+ - update all packages
1072
+ - update all packages
1073
+ - update all packages
1074
+ - update all packages
1075
+ - update all packages
1076
+ - Updated dependencies
1077
+ - Updated dependencies
1078
+ - Updated dependencies
1079
+ - Updated dependencies
1080
+ - Updated dependencies
1081
+ - Updated dependencies
1082
+ - @xyd-js/core@0.1.0-xyd.55
1083
+ - @xyd-js/uniform@0.1.0-xyd.57
1084
+
1085
+ ## 0.1.0-xyd.54
1086
+
1087
+ ### Patch Changes
1088
+
1089
+ - update all packages
1090
+ - Updated dependencies
1091
+ - @xyd-js/core@0.1.0-xyd.54
1092
+ - @xyd-js/uniform@0.1.0-xyd.56
1093
+
1094
+ ## 0.1.0-xyd.53
1095
+
1096
+ ### Patch Changes
1097
+
1098
+ - update all packages
1099
+ - Updated dependencies
1100
+ - @xyd-js/core@0.1.0-xyd.53
1101
+ - @xyd-js/uniform@0.1.0-xyd.55
1102
+
1103
+ ## 0.1.0-xyd.52
1104
+
1105
+ ### Patch Changes
1106
+
1107
+ - update all packages
1108
+ - Updated dependencies
1109
+ - @xyd-js/core@0.1.0-xyd.52
1110
+ - @xyd-js/uniform@0.1.0-xyd.54
1111
+
1112
+ ## 0.1.0-xyd.51
1113
+
1114
+ ### Patch Changes
1115
+
1116
+ - update all packages
1117
+ - Updated dependencies
1118
+ - @xyd-js/core@0.1.0-xyd.51
1119
+ - @xyd-js/uniform@0.1.0-xyd.53
1120
+
1121
+ ## 0.1.0-xyd.50
1122
+
1123
+ ### Patch Changes
1124
+
1125
+ - update all packages
1126
+ - Updated dependencies
1127
+ - @xyd-js/core@0.1.0-xyd.50
1128
+ - @xyd-js/uniform@0.1.0-xyd.52
1129
+
1130
+ ## 0.1.0-xyd.49
1131
+
1132
+ ### Patch Changes
1133
+
1134
+ - update all packages
1135
+ - Updated dependencies
1136
+ - @xyd-js/core@0.1.0-xyd.49
1137
+ - @xyd-js/uniform@0.1.0-xyd.51
1138
+
1139
+ ## 0.1.0-xyd.48
1140
+
1141
+ ### Patch Changes
1142
+
1143
+ - update all packages
1144
+ - Updated dependencies
1145
+ - @xyd-js/core@0.1.0-xyd.48
1146
+ - @xyd-js/uniform@0.1.0-xyd.50
1147
+
1148
+ ## 0.1.0-xyd.47
1149
+
1150
+ ### Patch Changes
1151
+
1152
+ - update all packages
1153
+ - Updated dependencies
1154
+ - @xyd-js/core@0.1.0-xyd.47
1155
+ - @xyd-js/uniform@0.1.0-xyd.49
1156
+
1157
+ ## 0.1.0-xyd.46
1158
+
1159
+ ### Patch Changes
1160
+
1161
+ - update all packages
1162
+ - Updated dependencies
1163
+ - @xyd-js/core@0.1.0-xyd.46
1164
+ - @xyd-js/uniform@0.1.0-xyd.48
1165
+
1166
+ ## 0.1.0-xyd.45
1167
+
1168
+ ### Patch Changes
1169
+
1170
+ - update all packages
1171
+ - Updated dependencies
1172
+ - @xyd-js/core@0.1.0-xyd.45
1173
+ - @xyd-js/uniform@0.1.0-xyd.47
1174
+
1175
+ ## 0.1.0-xyd.44
1176
+
1177
+ ### Patch Changes
1178
+
1179
+ - update all packages
1180
+ - Updated dependencies
1181
+ - @xyd-js/core@0.1.0-xyd.44
1182
+ - @xyd-js/uniform@0.1.0-xyd.46
1183
+
1184
+ ## 0.1.0-xyd.43
1185
+
1186
+ ### Patch Changes
1187
+
1188
+ - update all packages
1189
+ - Updated dependencies
1190
+ - @xyd-js/core@0.1.0-xyd.43
1191
+ - @xyd-js/uniform@0.1.0-xyd.45
1192
+
1193
+ ## 0.1.0-xyd.42
1194
+
1195
+ ### Patch Changes
1196
+
1197
+ - update all packages
1198
+ - Updated dependencies
1199
+ - @xyd-js/core@0.1.0-xyd.42
1200
+ - @xyd-js/uniform@0.1.0-xyd.44
1201
+
1202
+ ## 0.1.0-xyd.41
1203
+
1204
+ ### Patch Changes
1205
+
1206
+ - update all packages
1207
+ - Updated dependencies
1208
+ - @xyd-js/core@0.1.0-xyd.41
1209
+ - @xyd-js/uniform@0.1.0-xyd.43
1210
+
1211
+ ## 0.1.0-xyd.40
1212
+
1213
+ ### Patch Changes
1214
+
1215
+ - update all packages
1216
+ - Updated dependencies
1217
+ - @xyd-js/core@0.1.0-xyd.40
1218
+ - @xyd-js/uniform@0.1.0-xyd.42
1219
+
1220
+ ## 0.1.0-xyd.39
1221
+
1222
+ ### Patch Changes
1223
+
1224
+ - update all packages
1225
+ - Updated dependencies
1226
+ - @xyd-js/core@0.1.0-xyd.39
1227
+ - @xyd-js/uniform@0.1.0-xyd.41
1228
+
1229
+ ## 0.1.0-xyd.38
1230
+
1231
+ ### Patch Changes
1232
+
1233
+ - update all packages
1234
+ - Updated dependencies
1235
+ - @xyd-js/core@0.1.0-xyd.38
1236
+ - @xyd-js/uniform@0.1.0-xyd.40
1237
+
1238
+ ## 0.1.0-xyd.37
1239
+
1240
+ ### Patch Changes
1241
+
1242
+ - update all packages
1243
+ - Updated dependencies
1244
+ - @xyd-js/core@0.1.0-xyd.37
1245
+ - @xyd-js/uniform@0.1.0-xyd.39
1246
+
1247
+ ## 0.1.0-xyd.36
1248
+
1249
+ ### Patch Changes
1250
+
1251
+ - update all packages
1252
+ - Updated dependencies
1253
+ - @xyd-js/core@0.1.0-xyd.36
1254
+ - @xyd-js/uniform@0.1.0-xyd.38
1255
+
1256
+ ## 0.1.0-xyd.35
1257
+
1258
+ ### Patch Changes
1259
+
1260
+ - update all packages
1261
+ - Updated dependencies
1262
+ - @xyd-js/core@0.1.0-xyd.35
1263
+ - @xyd-js/uniform@0.1.0-xyd.37
1264
+
1265
+ ## 0.1.0-xyd.34
1266
+
1267
+ ### Patch Changes
1268
+
1269
+ - update all packages
1270
+ - Updated dependencies
1271
+ - @xyd-js/core@0.1.0-xyd.34
1272
+ - @xyd-js/uniform@0.1.0-xyd.36
1273
+
1274
+ ## 0.1.0-xyd.33
1275
+
1276
+ ### Patch Changes
1277
+
1278
+ - update all packages
1279
+ - Updated dependencies
1280
+ - @xyd-js/core@0.1.0-xyd.33
1281
+ - @xyd-js/uniform@0.1.0-xyd.35
1282
+
1283
+ ## 0.1.0-xyd.32
1284
+
1285
+ ### Patch Changes
1286
+
1287
+ - update all packages
1288
+ - Updated dependencies
1289
+ - @xyd-js/core@0.1.0-xyd.32
1290
+ - @xyd-js/uniform@0.1.0-xyd.34
1291
+
1292
+ ## 0.1.0-xyd.31
1293
+
1294
+ ### Patch Changes
1295
+
1296
+ - update all packages
1297
+ - update all packages
1298
+ - Updated dependencies
1299
+ - Updated dependencies
1300
+ - @xyd-js/core@0.1.0-xyd.31
1301
+ - @xyd-js/uniform@0.1.0-xyd.33
1302
+
1303
+ ## 0.1.0-xyd.30
1304
+
1305
+ ### Patch Changes
1306
+
1307
+ - update all packages
1308
+ - Updated dependencies
1309
+ - @xyd-js/core@0.1.0-xyd.30
1310
+ - @xyd-js/uniform@0.1.0-xyd.32
1311
+
1312
+ ## 0.1.0-xyd.29
1313
+
1314
+ ### Patch Changes
1315
+
1316
+ - update all packages
1317
+ - update all packages
1318
+ - Updated dependencies
1319
+ - Updated dependencies
1320
+ - @xyd-js/core@0.1.0-xyd.29
1321
+ - @xyd-js/uniform@0.1.0-xyd.31
1322
+
1323
+ ## 0.1.0-xyd.28
1324
+
1325
+ ### Patch Changes
1326
+
1327
+ - update all packages
1328
+ - update all packages
1329
+ - Updated dependencies
1330
+ - Updated dependencies
1331
+ - @xyd-js/core@0.1.0-xyd.28
1332
+ - @xyd-js/uniform@0.1.0-xyd.30
1333
+
1334
+ ## 0.1.0-xyd.27
1335
+
1336
+ ### Patch Changes
1337
+
1338
+ - update all packages
1339
+ - update all packages
1340
+ - Updated dependencies
1341
+ - Updated dependencies
1342
+ - @xyd-js/core@0.1.0-xyd.27
1343
+ - @xyd-js/uniform@0.1.0-xyd.29
1344
+
1345
+ ## 0.1.0-xyd.26
1346
+
1347
+ ### Patch Changes
1348
+
1349
+ - update all packages
1350
+ - update all packages
1351
+ - Updated dependencies
1352
+ - Updated dependencies
1353
+ - @xyd-js/core@0.1.0-xyd.26
1354
+ - @xyd-js/uniform@0.1.0-xyd.28
1355
+
1356
+ ## 0.1.0-xyd.25
1357
+
1358
+ ### Patch Changes
1359
+
1360
+ - update all packages
1361
+ - update all packages
1362
+ - Updated dependencies
1363
+ - Updated dependencies
1364
+ - @xyd-js/core@0.1.0-xyd.25
1365
+ - @xyd-js/uniform@0.1.0-xyd.27
1366
+
1367
+ ## 0.1.0-xyd.24
1368
+
1369
+ ### Patch Changes
1370
+
1371
+ - update all packages
1372
+ - update all packages
1373
+ - Updated dependencies
1374
+ - Updated dependencies
1375
+ - @xyd-js/core@0.1.0-xyd.24
1376
+ - @xyd-js/uniform@0.1.0-xyd.26
1377
+
1378
+ ## 0.1.0-xyd.23
1379
+
1380
+ ### Patch Changes
1381
+
1382
+ - update all packages
1383
+ - Updated dependencies
1384
+ - @xyd-js/core@0.1.0-xyd.23
1385
+ - @xyd-js/uniform@0.1.0-xyd.25
1386
+
1387
+ ## 0.1.0-xyd.22
1388
+
1389
+ ### Patch Changes
1390
+
1391
+ - update all packages
1392
+ - Updated dependencies
1393
+ - @xyd-js/core@0.1.0-xyd.22
1394
+ - @xyd-js/uniform@0.1.0-xyd.24
1395
+
1396
+ ## 0.1.0-xyd.21
1397
+
1398
+ ### Patch Changes
1399
+
1400
+ - update all packages
1401
+ - Updated dependencies
1402
+ - @xyd-js/core@0.1.0-xyd.21
1403
+ - @xyd-js/uniform@0.1.0-xyd.23
1404
+
1405
+ ## 0.1.0-xyd.20
1406
+
1407
+ ### Patch Changes
1408
+
1409
+ - update
1410
+ - Updated dependencies
1411
+ - @xyd-js/core@0.1.0-xyd.20
1412
+ - @xyd-js/uniform@0.1.0-xyd.22
1413
+
1414
+ ## 0.1.0-xyd.19
1415
+
1416
+ ### Patch Changes
1417
+
1418
+ - update
1419
+ - Updated dependencies
1420
+ - @xyd-js/core@0.1.0-xyd.19
1421
+ - @xyd-js/uniform@0.1.0-xyd.21
1422
+
1423
+ ## 0.1.0-xyd.18
1424
+
1425
+ ### Patch Changes
1426
+
1427
+ - update
1428
+ - Updated dependencies
1429
+ - @xyd-js/core@0.1.0-xyd.18
1430
+ - @xyd-js/uniform@0.1.0-xyd.20
1431
+
1432
+ ## 0.1.0-xyd.17
1433
+
1434
+ ### Patch Changes
1435
+
1436
+ - update
1437
+ - Updated dependencies
1438
+ - @xyd-js/core@0.1.0-xyd.17
1439
+ - @xyd-js/uniform@0.1.0-xyd.19
1440
+
1441
+ ## 0.1.0-xyd.16
1442
+
1443
+ ### Patch Changes
1444
+
1445
+ - update
1446
+ - Updated dependencies
1447
+ - @xyd-js/core@0.1.0-xyd.16
1448
+ - @xyd-js/uniform@0.1.0-xyd.18
1449
+
1450
+ ## 0.1.0-xyd.15
1451
+
1452
+ ### Patch Changes
1453
+
1454
+ - test
1455
+ - Updated dependencies
1456
+ - @xyd-js/core@0.1.0-xyd.15
1457
+ - @xyd-js/uniform@0.1.0-xyd.17
1458
+
1459
+ ## 0.1.0-xyd.14
1460
+
1461
+ ### Patch Changes
1462
+
1463
+ - update packages
1464
+ - Updated dependencies
1465
+ - @xyd-js/core@0.1.0-xyd.14
1466
+ - @xyd-js/uniform@0.1.0-xyd.16
1467
+
1468
+ ## 0.1.0-xyd.13
1469
+
1470
+ ### Patch Changes
1471
+
1472
+ - version
1473
+ - Updated dependencies
1474
+ - @xyd-js/core@0.1.0-xyd.13
1475
+ - @xyd-js/uniform@0.1.0-xyd.15
1476
+
1477
+ ## 0.1.0-xyd.12
1478
+
1479
+ ### Patch Changes
1480
+
1481
+ - Updated dependencies
1482
+ - @xyd-js/core@0.1.0-xyd.12
1483
+ - @xyd-js/uniform@0.1.0-xyd.14
1484
+
1485
+ ## 0.1.0-xyd.11
1486
+
1487
+ ### Patch Changes
1488
+
1489
+ - Updated dependencies
1490
+ - @xyd-js/core@0.1.0-xyd.11
1491
+ - @xyd-js/uniform@0.1.0-xyd.13
1492
+
1493
+ ## 0.1.0-xyd.10
1494
+
1495
+ ### Patch Changes
1496
+
1497
+ - Updated dependencies
1498
+ - @xyd-js/core@0.1.0-xyd.10
1499
+ - @xyd-js/uniform@0.1.0-xyd.12
1500
+
1501
+ ## 0.1.0-xyd.9
1502
+
1503
+ ### Patch Changes
1504
+
1505
+ - refactor, tweaks and ui changes
1506
+ - Updated dependencies
1507
+ - @xyd-js/core@0.1.0-xyd.9
1508
+ - @xyd-js/uniform@0.1.0-xyd.11
1509
+
1510
+ ## 0.1.0-xyd.8
1511
+
1512
+ ### Patch Changes
1513
+
1514
+ - Updated dependencies
1515
+ - @xyd-js/core@0.1.0-xyd.8
1516
+ - @xyd-js/uniform@0.1.0-xyd.10
1517
+
1518
+ ## 0.1.0-xyd.7
1519
+
1520
+ ### Patch Changes
1521
+
1522
+ - Updated dependencies
1523
+ - @xyd-js/core@0.1.0-xyd.7
1524
+ - @xyd-js/uniform@0.1.0-xyd.9
1525
+
1526
+ ## 0.1.0-xyd.6
1527
+
1528
+ ### Patch Changes
1529
+
1530
+ - use react-router 7.1.1
1531
+ - Updated dependencies
1532
+ - @xyd-js/core@0.1.0-xyd.6
1533
+ - @xyd-js/uniform@0.1.0-xyd.8
1534
+
1535
+ ## 0.1.0-xyd.5
1536
+
1537
+ ### Patch Changes
1538
+
1539
+ - another update
1540
+ - Updated dependencies
1541
+ - @xyd-js/core@0.1.0-xyd.5
1542
+ - @xyd-js/uniform@0.1.0-xyd.7
1543
+
1544
+ ## 0.1.0-xyd.4
1545
+
1546
+ ### Patch Changes
1547
+
1548
+ - initial changeset bump
1549
+ - Updated dependencies
1550
+ - @xyd-js/core@0.1.0-xyd.4
1551
+ - @xyd-js/uniform@0.1.0-xyd.6