@xyd-js/atlas 0.1.0-xyd.4 → 0.1.0-xyd.57

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 (87) hide show
  1. package/.storybook/index.css +1 -27
  2. package/.storybook/preview.ts +1 -2
  3. package/CHANGELOG.md +554 -0
  4. package/LICENSE +21 -0
  5. package/dist/Update-48mkPPHi-COLbZvRj.js +4 -0
  6. package/dist/Update-48mkPPHi-COLbZvRj.js.map +1 -0
  7. package/dist/Update-6IvrCbUn-COLbZvRj.js +4 -0
  8. package/dist/Update-6IvrCbUn-COLbZvRj.js.map +1 -0
  9. package/dist/Update-B31SkKLO-COLbZvRj.js +4 -0
  10. package/dist/Update-B31SkKLO-COLbZvRj.js.map +1 -0
  11. package/dist/Update-BDC6jF5Q-COLbZvRj.js +4 -0
  12. package/dist/Update-BDC6jF5Q-COLbZvRj.js.map +1 -0
  13. package/dist/Update-BdhhXj2D-COLbZvRj.js +4 -0
  14. package/dist/Update-BdhhXj2D-COLbZvRj.js.map +1 -0
  15. package/dist/Update-BzuP6PUF-COLbZvRj.js +4 -0
  16. package/dist/Update-BzuP6PUF-COLbZvRj.js.map +1 -0
  17. package/dist/Update-C-w0Og8S-COLbZvRj.js +4 -0
  18. package/dist/Update-C-w0Og8S-COLbZvRj.js.map +1 -0
  19. package/dist/Update-CRZyUhwE-COLbZvRj.js +4 -0
  20. package/dist/Update-CRZyUhwE-COLbZvRj.js.map +1 -0
  21. package/dist/Update-Cmw6WVrs-COLbZvRj.js +4 -0
  22. package/dist/Update-Cmw6WVrs-COLbZvRj.js.map +1 -0
  23. package/dist/Update-D5pUmk9V-COLbZvRj.js +4 -0
  24. package/dist/Update-D5pUmk9V-COLbZvRj.js.map +1 -0
  25. package/dist/Update-D7tzid9y-COLbZvRj.js +4 -0
  26. package/dist/Update-D7tzid9y-COLbZvRj.js.map +1 -0
  27. package/dist/Update-DDQewhuu-COLbZvRj.js +4 -0
  28. package/dist/Update-DDQewhuu-COLbZvRj.js.map +1 -0
  29. package/dist/Update-DPeHa_01-COLbZvRj.js +4 -0
  30. package/dist/Update-DPeHa_01-COLbZvRj.js.map +1 -0
  31. package/dist/Update-DUFcLP3--COLbZvRj.js +4 -0
  32. package/dist/Update-DUFcLP3--COLbZvRj.js.map +1 -0
  33. package/dist/Update-DbvzJGdB-COLbZvRj.js +4 -0
  34. package/dist/Update-DbvzJGdB-COLbZvRj.js.map +1 -0
  35. package/dist/Update-SFXhorqS-COLbZvRj.js +4 -0
  36. package/dist/Update-SFXhorqS-COLbZvRj.js.map +1 -0
  37. package/dist/Update-b8FT7xsG-COLbZvRj.js +4 -0
  38. package/dist/Update-b8FT7xsG-COLbZvRj.js.map +1 -0
  39. package/dist/index.css +43 -53
  40. package/dist/index.d.ts +30 -10
  41. package/dist/index.js +2 -1
  42. package/dist/index.js.map +1 -0
  43. package/dist/styles.css +89 -0
  44. package/dist/tokens.css +60 -0
  45. package/dist/xydPlugin.d.ts +5 -0
  46. package/dist/xydPlugin.js +2 -0
  47. package/dist/xydPlugin.js.map +1 -0
  48. package/index.ts +1 -2
  49. package/package.json +27 -21
  50. package/packages/xyd-plugin/SidebarItem.tsx +27 -0
  51. package/packages/xyd-plugin/index.ts +20 -0
  52. package/rollup.config.js +66 -21
  53. package/src/components/ApiRef/ApiRefItem/ApiRefItem.styles.tsx +95 -63
  54. package/src/components/ApiRef/ApiRefItem/ApiRefItem.tsx +512 -52
  55. package/src/components/ApiRef/ApiRefProperties/ApiRefProperties.styles.tsx +186 -138
  56. package/src/components/ApiRef/ApiRefProperties/ApiRefProperties.tsx +590 -59
  57. package/src/components/ApiRef/ApiRefSamples/ApiRefSamples.styles.tsx +19 -23
  58. package/src/components/ApiRef/ApiRefSamples/ApiRefSamples.tsx +39 -24
  59. package/src/components/Atlas/Atlas.styles.tsx +3 -5
  60. package/src/components/Atlas/Atlas.tsx +35 -17
  61. package/src/components/Atlas/AtlasContext.tsx +47 -0
  62. package/src/components/Atlas/AtlasDecorator.styles.ts +22 -0
  63. package/src/components/Atlas/AtlasDecorator.tsx +15 -0
  64. package/src/components/Atlas/AtlasLazy/AtlasLazy.styles.tsx +7 -8
  65. package/src/components/Atlas/AtlasLazy/AtlasLazy.tsx +5 -8
  66. package/src/components/Atlas/AtlasPrimary.tsx +21 -0
  67. package/src/components/Atlas/AtlasSecondary.tsx +148 -0
  68. package/src/components/Atlas/index.ts +6 -2
  69. package/src/components/Atlas/types.ts +11 -0
  70. package/src/components/Code/CodeSampleButtons/CodeSampleButtons.styles.tsx +56 -65
  71. package/src/components/Code/CodeSampleButtons/CodeSampleButtons.tsx +20 -29
  72. package/src/components/Code/index.ts +0 -4
  73. package/src/components/Icon/index.tsx +384 -0
  74. package/src/docs/AtlasExample/todo-app.uniform.json +1 -1
  75. package/src/styles/styles.css +89 -0
  76. package/src/styles/tokens.css +60 -0
  77. package/src/utils/mdx.ts +0 -29
  78. package/tsconfig.json +9 -2
  79. package/types.d.ts +22 -0
  80. package/src/components/Code/CodeCopy/CodeCopy.style.tsx +0 -21
  81. package/src/components/Code/CodeCopy/CodeCopy.tsx +0 -32
  82. package/src/components/Code/CodeCopy/index.ts +0 -7
  83. package/src/components/Code/CodeSample/CodeSample.styles.tsx +0 -134
  84. package/src/components/Code/CodeSample/CodeSample.tsx +0 -149
  85. package/src/components/Code/CodeSample/index.ts +0 -8
  86. package/src/components/Code/CodeSample/withLocalStored.tsx +0 -52
  87. package/src/components/Code/default-theme.ts +0 -266
@@ -1,30 +1,4 @@
1
- @font-face {
2
- font-family: 'Fustat';
3
- src: url('./public/fonts/fustat-regular.woff2') format('woff2');
4
- font-weight: normal;
5
- font-style: normal;
6
- }
7
-
8
- @font-face {
9
- font-family: 'Fustat';
10
- src: url('./public/fonts/fustat-ext-500.woff2') format('woff2');
11
- font-weight: 500;
12
- font-style: normal;
13
- }
14
-
15
- @font-face {
16
- font-family: 'Fustat';
17
- src: url('./public/fonts/fustat-ext-600.woff2') format('woff2');
18
- font-weight: 600;
19
- font-style: normal;
20
- }
21
-
22
- @font-face {
23
- font-family: 'Fustat';
24
- src: url('./public/fonts/fustat-ext-700.woff2') format('woff2');
25
- font-weight: 700;
26
- font-style: normal;
27
- }
1
+ @import url('https://fonts.googleapis.com/css2?family=Fustat:wght@400;500;600;700&display=swap');
28
2
 
29
3
  /* Example usage */
30
4
  body {
@@ -1,5 +1,4 @@
1
- import "@xyd-js/fable-wiki/atlas.css"
2
-
1
+ // TODO: import base theme / some theme css
3
2
  import './index.css'
4
3
  import '../dist/index.css'
5
4
 
package/CHANGELOG.md ADDED
@@ -0,0 +1,554 @@
1
+ # @xyd-js/atlas
2
+
3
+ ## 0.1.0-xyd.57
4
+
5
+ ### Patch Changes
6
+
7
+ - update all packages
8
+ - Updated dependencies
9
+ - @xyd-js/components@0.1.0-xyd.52
10
+ - @xyd-js/core@0.1.0-xyd.54
11
+ - @xyd-js/framework@0.1.0-xyd.73
12
+ - @xyd-js/plugins@0.1.0-xyd.41
13
+ - @xyd-js/uniform@0.1.0-xyd.56
14
+
15
+ ## 0.1.0-xyd.56
16
+
17
+ ### Patch Changes
18
+
19
+ - update all packages
20
+ - Updated dependencies
21
+ - @xyd-js/components@0.1.0-xyd.51
22
+ - @xyd-js/core@0.1.0-xyd.53
23
+ - @xyd-js/framework@0.1.0-xyd.72
24
+ - @xyd-js/plugins@0.1.0-xyd.40
25
+ - @xyd-js/uniform@0.1.0-xyd.55
26
+
27
+ ## 0.1.0-xyd.55
28
+
29
+ ### Patch Changes
30
+
31
+ - update all packages
32
+ - Updated dependencies
33
+ - @xyd-js/components@0.1.0-xyd.50
34
+ - @xyd-js/core@0.1.0-xyd.52
35
+ - @xyd-js/framework@0.1.0-xyd.71
36
+ - @xyd-js/plugins@0.1.0-xyd.39
37
+ - @xyd-js/uniform@0.1.0-xyd.54
38
+
39
+ ## 0.1.0-xyd.54
40
+
41
+ ### Patch Changes
42
+
43
+ - update all packages
44
+ - Updated dependencies
45
+ - @xyd-js/components@0.1.0-xyd.49
46
+ - @xyd-js/core@0.1.0-xyd.51
47
+ - @xyd-js/framework@0.1.0-xyd.70
48
+ - @xyd-js/plugins@0.1.0-xyd.38
49
+ - @xyd-js/uniform@0.1.0-xyd.53
50
+
51
+ ## 0.1.0-xyd.53
52
+
53
+ ### Patch Changes
54
+
55
+ - update all packages
56
+ - Updated dependencies
57
+ - @xyd-js/components@0.1.0-xyd.48
58
+ - @xyd-js/core@0.1.0-xyd.50
59
+ - @xyd-js/framework@0.1.0-xyd.69
60
+ - @xyd-js/plugins@0.1.0-xyd.37
61
+ - @xyd-js/uniform@0.1.0-xyd.52
62
+
63
+ ## 0.1.0-xyd.52
64
+
65
+ ### Patch Changes
66
+
67
+ - update all packages
68
+ - Updated dependencies
69
+ - @xyd-js/components@0.1.0-xyd.47
70
+ - @xyd-js/core@0.1.0-xyd.49
71
+ - @xyd-js/framework@0.1.0-xyd.68
72
+ - @xyd-js/plugins@0.1.0-xyd.36
73
+ - @xyd-js/uniform@0.1.0-xyd.51
74
+
75
+ ## 0.1.0-xyd.51
76
+
77
+ ### Patch Changes
78
+
79
+ - update all packages
80
+ - Updated dependencies
81
+ - @xyd-js/components@0.1.0-xyd.46
82
+ - @xyd-js/core@0.1.0-xyd.48
83
+ - @xyd-js/framework@0.1.0-xyd.67
84
+ - @xyd-js/plugins@0.1.0-xyd.35
85
+ - @xyd-js/uniform@0.1.0-xyd.50
86
+
87
+ ## 0.1.0-xyd.50
88
+
89
+ ### Patch Changes
90
+
91
+ - update all packages
92
+ - Updated dependencies
93
+ - @xyd-js/components@0.1.0-xyd.45
94
+ - @xyd-js/core@0.1.0-xyd.47
95
+ - @xyd-js/framework@0.1.0-xyd.66
96
+ - @xyd-js/plugins@0.1.0-xyd.34
97
+ - @xyd-js/uniform@0.1.0-xyd.49
98
+
99
+ ## 0.1.0-xyd.49
100
+
101
+ ### Patch Changes
102
+
103
+ - update all packages
104
+ - Updated dependencies
105
+ - @xyd-js/components@0.1.0-xyd.44
106
+ - @xyd-js/core@0.1.0-xyd.46
107
+ - @xyd-js/framework@0.1.0-xyd.65
108
+ - @xyd-js/plugins@0.1.0-xyd.33
109
+ - @xyd-js/uniform@0.1.0-xyd.48
110
+
111
+ ## 0.1.0-xyd.48
112
+
113
+ ### Patch Changes
114
+
115
+ - update all packages
116
+ - Updated dependencies
117
+ - @xyd-js/components@0.1.0-xyd.43
118
+ - @xyd-js/core@0.1.0-xyd.45
119
+ - @xyd-js/framework@0.1.0-xyd.64
120
+ - @xyd-js/plugins@0.1.0-xyd.32
121
+ - @xyd-js/uniform@0.1.0-xyd.47
122
+
123
+ ## 0.1.0-xyd.47
124
+
125
+ ### Patch Changes
126
+
127
+ - update all packages
128
+ - Updated dependencies
129
+ - @xyd-js/components@0.1.0-xyd.42
130
+ - @xyd-js/core@0.1.0-xyd.44
131
+ - @xyd-js/framework@0.1.0-xyd.63
132
+ - @xyd-js/plugins@0.1.0-xyd.31
133
+ - @xyd-js/uniform@0.1.0-xyd.46
134
+
135
+ ## 0.1.0-xyd.46
136
+
137
+ ### Patch Changes
138
+
139
+ - update all packages
140
+ - Updated dependencies
141
+ - @xyd-js/components@0.1.0-xyd.41
142
+ - @xyd-js/core@0.1.0-xyd.43
143
+ - @xyd-js/framework@0.1.0-xyd.62
144
+ - @xyd-js/plugins@0.1.0-xyd.30
145
+ - @xyd-js/uniform@0.1.0-xyd.45
146
+
147
+ ## 0.1.0-xyd.45
148
+
149
+ ### Patch Changes
150
+
151
+ - update all packages
152
+ - Updated dependencies
153
+ - @xyd-js/components@0.1.0-xyd.40
154
+ - @xyd-js/framework@0.1.0-xyd.61
155
+ - @xyd-js/plugins@0.1.0-xyd.29
156
+ - @xyd-js/uniform@0.1.0-xyd.44
157
+
158
+ ## 0.1.0-xyd.44
159
+
160
+ ### Patch Changes
161
+
162
+ - update all packages
163
+ - Updated dependencies
164
+ - @xyd-js/components@0.1.0-xyd.39
165
+ - @xyd-js/framework@0.1.0-xyd.60
166
+ - @xyd-js/plugins@0.1.0-xyd.28
167
+ - @xyd-js/uniform@0.1.0-xyd.43
168
+
169
+ ## 0.1.0-xyd.43
170
+
171
+ ### Patch Changes
172
+
173
+ - update all packages
174
+ - Updated dependencies
175
+ - @xyd-js/components@0.1.0-xyd.38
176
+ - @xyd-js/framework@0.1.0-xyd.59
177
+ - @xyd-js/plugins@0.1.0-xyd.27
178
+ - @xyd-js/uniform@0.1.0-xyd.42
179
+
180
+ ## 0.1.0-xyd.42
181
+
182
+ ### Patch Changes
183
+
184
+ - update all packages
185
+ - Updated dependencies
186
+ - @xyd-js/components@0.1.0-xyd.37
187
+ - @xyd-js/framework@0.1.0-xyd.58
188
+ - @xyd-js/plugins@0.1.0-xyd.26
189
+ - @xyd-js/uniform@0.1.0-xyd.41
190
+
191
+ ## 0.1.0-xyd.41
192
+
193
+ ### Patch Changes
194
+
195
+ - update all packages
196
+ - Updated dependencies
197
+ - @xyd-js/components@0.1.0-xyd.36
198
+ - @xyd-js/framework@0.1.0-xyd.57
199
+ - @xyd-js/plugins@0.1.0-xyd.25
200
+ - @xyd-js/uniform@0.1.0-xyd.40
201
+
202
+ ## 0.1.0-xyd.40
203
+
204
+ ### Patch Changes
205
+
206
+ - update all packages
207
+ - Updated dependencies
208
+ - @xyd-js/components@0.1.0-xyd.35
209
+ - @xyd-js/framework@0.1.0-xyd.56
210
+ - @xyd-js/plugins@0.1.0-xyd.24
211
+ - @xyd-js/uniform@0.1.0-xyd.39
212
+
213
+ ## 0.1.0-xyd.39
214
+
215
+ ### Patch Changes
216
+
217
+ - update all packages
218
+ - Updated dependencies
219
+ - @xyd-js/components@0.1.0-xyd.34
220
+ - @xyd-js/framework@0.1.0-xyd.55
221
+ - @xyd-js/plugins@0.1.0-xyd.23
222
+ - @xyd-js/uniform@0.1.0-xyd.38
223
+
224
+ ## 0.1.0-xyd.38
225
+
226
+ ### Patch Changes
227
+
228
+ - update all packages
229
+ - Updated dependencies
230
+ - @xyd-js/components@0.1.0-xyd.33
231
+ - @xyd-js/framework@0.1.0-xyd.54
232
+ - @xyd-js/plugins@0.1.0-xyd.22
233
+ - @xyd-js/uniform@0.1.0-xyd.37
234
+
235
+ ## 0.1.0-xyd.37
236
+
237
+ ### Patch Changes
238
+
239
+ - update all packages
240
+ - Updated dependencies
241
+ - @xyd-js/components@0.1.0-xyd.32
242
+ - @xyd-js/framework@0.1.0-xyd.53
243
+ - @xyd-js/plugins@0.1.0-xyd.21
244
+ - @xyd-js/uniform@0.1.0-xyd.36
245
+
246
+ ## 0.1.0-xyd.36
247
+
248
+ ### Patch Changes
249
+
250
+ - update all packages
251
+ - Updated dependencies
252
+ - @xyd-js/components@0.1.0-xyd.31
253
+ - @xyd-js/framework@0.1.0-xyd.52
254
+ - @xyd-js/plugins@0.1.0-xyd.20
255
+ - @xyd-js/uniform@0.1.0-xyd.35
256
+
257
+ ## 0.1.0-xyd.35
258
+
259
+ ### Patch Changes
260
+
261
+ - update all packages
262
+ - Updated dependencies
263
+ - @xyd-js/components@0.1.0-xyd.30
264
+ - @xyd-js/framework@0.1.0-xyd.51
265
+ - @xyd-js/plugins@0.1.0-xyd.19
266
+ - @xyd-js/uniform@0.1.0-xyd.34
267
+
268
+ ## 0.1.0-xyd.34
269
+
270
+ ### Patch Changes
271
+
272
+ - update all packages
273
+ - update all packages
274
+ - Updated dependencies
275
+ - Updated dependencies
276
+ - @xyd-js/components@0.1.0-xyd.29
277
+ - @xyd-js/framework@0.1.0-xyd.50
278
+ - @xyd-js/plugins@0.1.0-xyd.18
279
+ - @xyd-js/uniform@0.1.0-xyd.33
280
+
281
+ ## 0.1.0-xyd.33
282
+
283
+ ### Patch Changes
284
+
285
+ - update all packages
286
+ - Updated dependencies
287
+ - @xyd-js/components@0.1.0-xyd.28
288
+ - @xyd-js/framework@0.1.0-xyd.49
289
+ - @xyd-js/plugins@0.1.0-xyd.17
290
+ - @xyd-js/uniform@0.1.0-xyd.32
291
+
292
+ ## 0.1.0-xyd.32
293
+
294
+ ### Patch Changes
295
+
296
+ - update all packages
297
+ - update all packages
298
+ - Updated dependencies
299
+ - Updated dependencies
300
+ - @xyd-js/components@0.1.0-xyd.27
301
+ - @xyd-js/framework@0.1.0-xyd.48
302
+ - @xyd-js/plugins@0.1.0-xyd.16
303
+ - @xyd-js/uniform@0.1.0-xyd.31
304
+
305
+ ## 0.1.0-xyd.31
306
+
307
+ ### Patch Changes
308
+
309
+ - update all packages
310
+ - update all packages
311
+ - Updated dependencies
312
+ - Updated dependencies
313
+ - @xyd-js/components@0.1.0-xyd.26
314
+ - @xyd-js/framework@0.1.0-xyd.47
315
+ - @xyd-js/plugins@0.1.0-xyd.15
316
+ - @xyd-js/uniform@0.1.0-xyd.30
317
+
318
+ ## 0.1.0-xyd.30
319
+
320
+ ### Patch Changes
321
+
322
+ - update all packages
323
+ - update all packages
324
+ - Updated dependencies
325
+ - Updated dependencies
326
+ - @xyd-js/components@0.1.0-xyd.25
327
+ - @xyd-js/framework@0.1.0-xyd.46
328
+ - @xyd-js/plugins@0.1.0-xyd.14
329
+ - @xyd-js/uniform@0.1.0-xyd.29
330
+
331
+ ## 0.1.0-xyd.29
332
+
333
+ ### Patch Changes
334
+
335
+ - update all packages
336
+ - update all packages
337
+ - Updated dependencies
338
+ - Updated dependencies
339
+ - @xyd-js/components@0.1.0-xyd.24
340
+ - @xyd-js/framework@0.1.0-xyd.45
341
+ - @xyd-js/plugins@0.1.0-xyd.13
342
+ - @xyd-js/uniform@0.1.0-xyd.28
343
+
344
+ ## 0.1.0-xyd.28
345
+
346
+ ### Patch Changes
347
+
348
+ - update all packages
349
+ - update all packages
350
+ - Updated dependencies
351
+ - Updated dependencies
352
+ - @xyd-js/components@0.1.0-xyd.23
353
+ - @xyd-js/framework@0.1.0-xyd.44
354
+ - @xyd-js/plugins@0.1.0-xyd.12
355
+ - @xyd-js/uniform@0.1.0-xyd.27
356
+
357
+ ## 0.1.0-xyd.27
358
+
359
+ ### Patch Changes
360
+
361
+ - update all packages
362
+ - update all packages
363
+ - Updated dependencies
364
+ - Updated dependencies
365
+ - @xyd-js/components@0.1.0-xyd.22
366
+ - @xyd-js/framework@0.1.0-xyd.43
367
+ - @xyd-js/plugins@0.1.0-xyd.11
368
+ - @xyd-js/uniform@0.1.0-xyd.26
369
+
370
+ ## 0.1.0-xyd.26
371
+
372
+ ### Patch Changes
373
+
374
+ - update all packages
375
+ - Updated dependencies
376
+ - @xyd-js/components@0.1.0-xyd.21
377
+ - @xyd-js/framework@0.1.0-xyd.42
378
+ - @xyd-js/plugins@0.1.0-xyd.10
379
+ - @xyd-js/uniform@0.1.0-xyd.25
380
+
381
+ ## 0.1.0-xyd.25
382
+
383
+ ### Patch Changes
384
+
385
+ - update all packages
386
+ - Updated dependencies
387
+ - @xyd-js/components@0.1.0-xyd.20
388
+ - @xyd-js/framework@0.1.0-xyd.41
389
+ - @xyd-js/plugins@0.1.0-xyd.9
390
+ - @xyd-js/uniform@0.1.0-xyd.24
391
+
392
+ ## 0.1.0-xyd.24
393
+
394
+ ### Patch Changes
395
+
396
+ - update all packages
397
+ - Updated dependencies
398
+ - @xyd-js/components@0.1.0-xyd.19
399
+ - @xyd-js/framework@0.1.0-xyd.40
400
+ - @xyd-js/plugins@0.1.0-xyd.8
401
+ - @xyd-js/uniform@0.1.0-xyd.23
402
+
403
+ ## 0.1.0-xyd.23
404
+
405
+ ### Patch Changes
406
+
407
+ - update
408
+ - Updated dependencies
409
+ - @xyd-js/components@0.1.0-xyd.18
410
+ - @xyd-js/framework@0.1.0-xyd.39
411
+ - @xyd-js/plugins@0.1.0-xyd.7
412
+ - @xyd-js/uniform@0.1.0-xyd.22
413
+
414
+ ## 0.1.0-xyd.22
415
+
416
+ ### Patch Changes
417
+
418
+ - update
419
+ - Updated dependencies
420
+ - @xyd-js/components@0.1.0-xyd.17
421
+ - @xyd-js/framework@0.1.0-xyd.38
422
+ - @xyd-js/plugins@0.1.0-xyd.6
423
+ - @xyd-js/uniform@0.1.0-xyd.21
424
+
425
+ ## 0.1.0-xyd.21
426
+
427
+ ### Patch Changes
428
+
429
+ - update
430
+ - Updated dependencies
431
+ - @xyd-js/components@0.1.0-xyd.16
432
+ - @xyd-js/framework@0.1.0-xyd.37
433
+ - @xyd-js/plugins@0.1.0-xyd.5
434
+ - @xyd-js/uniform@0.1.0-xyd.20
435
+
436
+ ## 0.1.0-xyd.20
437
+
438
+ ### Patch Changes
439
+
440
+ - update
441
+ - Updated dependencies
442
+ - @xyd-js/components@0.1.0-xyd.15
443
+ - @xyd-js/framework@0.1.0-xyd.36
444
+ - @xyd-js/plugins@0.1.0-xyd.4
445
+ - @xyd-js/uniform@0.1.0-xyd.19
446
+
447
+ ## 0.1.0-xyd.19
448
+
449
+ ### Patch Changes
450
+
451
+ - update
452
+ - Updated dependencies
453
+ - @xyd-js/components@0.1.0-xyd.14
454
+ - @xyd-js/framework@0.1.0-xyd.35
455
+ - @xyd-js/plugins@0.1.0-xyd.3
456
+ - @xyd-js/uniform@0.1.0-xyd.18
457
+
458
+ ## 0.1.0-xyd.18
459
+
460
+ ### Patch Changes
461
+
462
+ - test
463
+ - Updated dependencies
464
+ - @xyd-js/components@0.1.0-xyd.13
465
+ - @xyd-js/framework@0.1.0-xyd.34
466
+ - @xyd-js/plugins@0.1.0-xyd.2
467
+ - @xyd-js/uniform@0.1.0-xyd.17
468
+
469
+ ## 0.1.0-xyd.17
470
+
471
+ ### Patch Changes
472
+
473
+ - update packages
474
+ - Updated dependencies
475
+ - @xyd-js/components@0.1.0-xyd.12
476
+ - @xyd-js/framework@0.1.0-xyd.33
477
+ - @xyd-js/plugins@0.1.0-xyd.1
478
+ - @xyd-js/uniform@0.1.0-xyd.16
479
+
480
+ ## 0.1.0-xyd.16
481
+
482
+ ### Patch Changes
483
+
484
+ - version
485
+ - Updated dependencies
486
+ - @xyd-js/components@0.1.0-xyd.11
487
+ - @xyd-js/uniform@0.1.0-xyd.15
488
+
489
+ ## 0.1.0-xyd.15
490
+
491
+ ### Patch Changes
492
+
493
+ - fix again
494
+ - @xyd-js/uniform@0.1.0-xyd.14
495
+
496
+ ## 0.1.0-xyd.14
497
+
498
+ ### Patch Changes
499
+
500
+ - fix for theme
501
+ - @xyd-js/uniform@0.1.0-xyd.13
502
+
503
+ ## 0.1.0-xyd.13
504
+
505
+ ### Patch Changes
506
+
507
+ - refactor, ui tweaks
508
+ - @xyd-js/uniform@0.1.0-xyd.12
509
+
510
+ ## 0.1.0-xyd.12
511
+
512
+ ### Patch Changes
513
+
514
+ - refactor, tweaks and ui changes
515
+ - Updated dependencies
516
+ - @xyd-js/uniform@0.1.0-xyd.11
517
+
518
+ ## 0.1.0-xyd.11
519
+
520
+ ### Patch Changes
521
+
522
+ - ui tweaks
523
+ - @xyd-js/uniform@0.1.0-xyd.10
524
+
525
+ ## 0.1.0-xyd.10
526
+
527
+ ### Patch Changes
528
+
529
+ - ui tweaks, and some code refactor
530
+ - @xyd-js/uniform@0.1.0-xyd.9
531
+
532
+ ## 0.1.0-xyd.9
533
+
534
+ ### Patch Changes
535
+
536
+ - use react-router 7.1.1
537
+ - Updated dependencies
538
+ - @xyd-js/uniform@0.1.0-xyd.8
539
+
540
+ ## 0.1.0-xyd.8
541
+
542
+ ### Patch Changes
543
+
544
+ - another update
545
+ - Updated dependencies
546
+ - @xyd-js/uniform@0.1.0-xyd.7
547
+
548
+ ## 0.1.0-xyd.7
549
+
550
+ ### Patch Changes
551
+
552
+ - initial changeset bump
553
+ - Updated dependencies
554
+ - @xyd-js/uniform@0.1.0-xyd.6
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 xyd
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.