@uncinq/design-tokens 0.4.0 → 1.0.1

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 (68) hide show
  1. package/README.md +122 -53
  2. package/dist/css/primitive/blur.css +14 -0
  3. package/{tokens → dist/css}/primitive/color.css +53 -96
  4. package/dist/css/primitive/font.css +29 -0
  5. package/dist/css/primitive/shadow.css +16 -0
  6. package/{tokens → dist/css}/primitive/size.css +14 -17
  7. package/{tokens → dist/css}/primitive.css +0 -1
  8. package/{tokens → dist/css}/semantic/blur.css +4 -0
  9. package/dist/css/semantic/border.css +14 -0
  10. package/dist/css/semantic/color.css +99 -0
  11. package/dist/css/semantic/focus.css +13 -0
  12. package/dist/css/semantic/form.css +109 -0
  13. package/dist/css/semantic/grid.css +15 -0
  14. package/dist/css/semantic/icon.css +21 -0
  15. package/dist/css/semantic/motion.css +29 -0
  16. package/dist/css/semantic/opacity.css +15 -0
  17. package/dist/css/semantic/radius.css +20 -0
  18. package/dist/css/semantic/ratio.css +18 -0
  19. package/dist/css/semantic/shadow.css +12 -0
  20. package/dist/css/semantic/size.css +14 -0
  21. package/dist/css/semantic/spacing.css +30 -0
  22. package/dist/css/semantic/typography.css +48 -0
  23. package/dist/css/semantic/z-index.css +18 -0
  24. package/{tokens → dist/css}/semantic.css +0 -2
  25. package/package.json +22 -11
  26. package/tokens/primitive/blur.json +24 -0
  27. package/tokens/primitive/color.json +259 -0
  28. package/tokens/primitive/font.json +93 -0
  29. package/tokens/primitive/shadow.json +113 -0
  30. package/tokens/primitive/size.json +196 -0
  31. package/tokens/semantic/blur.json +8 -0
  32. package/tokens/semantic/border.json +28 -0
  33. package/tokens/semantic/color.json +343 -0
  34. package/tokens/semantic/focus.json +22 -0
  35. package/tokens/semantic/form.json +550 -0
  36. package/tokens/semantic/grid.json +28 -0
  37. package/tokens/semantic/icon.json +52 -0
  38. package/tokens/semantic/motion.json +90 -0
  39. package/tokens/semantic/opacity.json +28 -0
  40. package/tokens/semantic/radius.json +48 -0
  41. package/tokens/semantic/ratio.json +40 -0
  42. package/tokens/semantic/shadow.json +18 -0
  43. package/tokens/semantic/size.json +24 -0
  44. package/tokens/semantic/spacing.json +90 -0
  45. package/tokens/semantic/typography.json +174 -0
  46. package/tokens/semantic/z-index.json +40 -0
  47. package/tokens/primitive/blur.css +0 -10
  48. package/tokens/primitive/font.css +0 -32
  49. package/tokens/primitive/opacity.css +0 -12
  50. package/tokens/primitive/shadow.css +0 -16
  51. package/tokens/semantic/border.css +0 -15
  52. package/tokens/semantic/color.css +0 -119
  53. package/tokens/semantic/dark.css +0 -48
  54. package/tokens/semantic/focus.css +0 -10
  55. package/tokens/semantic/form.css +0 -107
  56. package/tokens/semantic/grid.css +0 -39
  57. package/tokens/semantic/icon.css +0 -19
  58. package/tokens/semantic/motion.css +0 -46
  59. package/tokens/semantic/opacity.css +0 -10
  60. package/tokens/semantic/radius.css +0 -19
  61. package/tokens/semantic/ratio.css +0 -23
  62. package/tokens/semantic/shadow.css +0 -14
  63. package/tokens/semantic/size.css +0 -20
  64. package/tokens/semantic/spacing.css +0 -42
  65. package/tokens/semantic/typography.css +0 -78
  66. package/tokens/semantic/z-index.css +0 -14
  67. /package/{tokens → dist/css}/index.css +0 -0
  68. /package/{tokens → dist/css}/semantic/mediaqueries.css +0 -0
@@ -0,0 +1,550 @@
1
+ {
2
+ "form": {
3
+ "border": {
4
+ "radius": {
5
+ "$value": "{radius.xs}",
6
+ "$type": "dimension"
7
+ },
8
+ "width": {
9
+ "$value": "{border.width.sm}",
10
+ "$type": "dimension"
11
+ }
12
+ },
13
+ "color": {
14
+ "accent": {
15
+ "$value": "{color.black}",
16
+ "$type": "color"
17
+ },
18
+ "background": {
19
+ "$value": "{color.white}",
20
+ "$type": "color",
21
+ "$mods": { "dark": "{color.gray.900}" }
22
+ },
23
+ "border": {
24
+ "default": {
25
+ "$value": "{color.border.default}",
26
+ "$type": "color"
27
+ },
28
+ "hover": {
29
+ "$value": "{color.border.hover}",
30
+ "$type": "color"
31
+ }
32
+ },
33
+ "text": {
34
+ "$value": "{color.text.default}",
35
+ "$type": "color"
36
+ }
37
+ },
38
+ "padding": {
39
+ "$value": "{spacing.control}",
40
+ "$type": "dimension"
41
+ },
42
+ "shadow": {
43
+ "default": {
44
+ "$value": "{shadow.control.default}",
45
+ "$type": "shadow"
46
+ },
47
+ "hover": {
48
+ "$value": "{shadow.control.hover}",
49
+ "$type": "shadow"
50
+ }
51
+ },
52
+ "transition": {
53
+ "$value": "{transition.normal}",
54
+ "$type": "string"
55
+ }
56
+ },
57
+
58
+ "input": {
59
+ "border": {
60
+ "radius": {
61
+ "$value": "{form.border.radius}",
62
+ "$type": "dimension"
63
+ },
64
+ "width": {
65
+ "$value": "{form.border.width}",
66
+ "$type": "dimension"
67
+ }
68
+ },
69
+
70
+ "color": {
71
+ "background": {
72
+ "$value": "{form.color.background}",
73
+ "$type": "color"
74
+ },
75
+
76
+ "border": {
77
+ "default": {
78
+ "$value": "{form.color.border.default}",
79
+ "$type": "color"
80
+ },
81
+ "hover": {
82
+ "$value": "{form.color.border.hover}",
83
+ "$type": "color"
84
+ }
85
+ },
86
+
87
+ "placeholder": {
88
+ "$value": "{color.text.muted}",
89
+ "$type": "color"
90
+ },
91
+
92
+ "text": {
93
+ "$value": "{form.color.text}",
94
+ "$type": "color"
95
+ }
96
+ },
97
+
98
+ "padding": {
99
+ "$value": "{form.padding}",
100
+ "$type": "dimension"
101
+ }
102
+ },
103
+
104
+ "file": {
105
+ "button": {
106
+ "margin": {
107
+ "inlineEnd": {
108
+ "$value": "{size.12}",
109
+ "$type": "dimension"
110
+ }
111
+ },
112
+
113
+ "padding": {
114
+ "$value": "{size.8} {size.12}",
115
+ "$type": "string"
116
+ }
117
+ }
118
+ },
119
+
120
+ "textarea": {
121
+ "border": {
122
+ "radius": {
123
+ "$value": "{form.border.radius}",
124
+ "$type": "dimension"
125
+ },
126
+
127
+ "width": {
128
+ "$value": "{form.border.width}",
129
+ "$type": "dimension"
130
+ }
131
+ },
132
+
133
+ "color": {
134
+ "background": {
135
+ "$value": "{form.color.background}",
136
+ "$type": "color"
137
+ },
138
+
139
+ "border": {
140
+ "default": {
141
+ "$value": "{form.color.border.default}",
142
+ "$type": "color"
143
+ },
144
+ "hover": {
145
+ "$value": "{form.color.border.hover}",
146
+ "$type": "color"
147
+ }
148
+ },
149
+
150
+ "placeholder": {
151
+ "$value": "{color.text.muted}",
152
+ "$type": "color"
153
+ },
154
+
155
+ "text": {
156
+ "$value": "{form.color.text}",
157
+ "$type": "color"
158
+ }
159
+ },
160
+
161
+ "minHeight": {
162
+ "$value": "5lh",
163
+ "$type": "dimension"
164
+ },
165
+
166
+ "padding": {
167
+ "$value": "{form.padding}",
168
+ "$type": "dimension"
169
+ }
170
+ },
171
+
172
+ "select": {
173
+ "border": {
174
+ "radius": {
175
+ "$value": "{form.border.radius}",
176
+ "$type": "dimension"
177
+ },
178
+
179
+ "width": {
180
+ "$value": "{form.border.width}",
181
+ "$type": "dimension"
182
+ }
183
+ },
184
+
185
+ "color": {
186
+ "background": {
187
+ "$value": "{form.color.background}",
188
+ "$type": "color"
189
+ },
190
+
191
+ "border": {
192
+ "default": {
193
+ "$value": "{form.color.border.default}",
194
+ "$type": "color"
195
+ },
196
+ "hover": {
197
+ "$value": "{form.color.border.hover}",
198
+ "$type": "color"
199
+ }
200
+ },
201
+
202
+ "optgroup": {
203
+ "$value": "{color.text.muted}",
204
+ "$type": "color"
205
+ },
206
+
207
+ "text": {
208
+ "$value": "{form.color.text}",
209
+ "$type": "color"
210
+ }
211
+ },
212
+
213
+ "icon": {
214
+ "$value": "{icon.chevron}",
215
+ "$type": "string"
216
+ },
217
+
218
+ "iconSize": {
219
+ "$value": "{icon.size}",
220
+ "$type": "dimension"
221
+ },
222
+
223
+ "padding": {
224
+ "$value": "{form.padding}",
225
+ "$type": "dimension"
226
+ },
227
+
228
+ "paddingEnd": {
229
+ "$value": "2rem",
230
+ "$type": "dimension"
231
+ }
232
+ },
233
+
234
+ "label": {
235
+ "color": {
236
+ "text": {
237
+ "$value": "{form.color.text}",
238
+ "$type": "color"
239
+ }
240
+ },
241
+
242
+ "fontSize": {
243
+ "$value": "{fontSize.xs}",
244
+ "$type": "dimension"
245
+ },
246
+
247
+ "fontWeight": {
248
+ "$value": "{fontWeight.medium}",
249
+ "$type": "fontWeight"
250
+ },
251
+
252
+ "padding": {
253
+ "inline": {
254
+ "$value": "0",
255
+ "$type": "dimension"
256
+ },
257
+ "block": {
258
+ "$value": "{spacing.2xs}",
259
+ "$type": "dimension"
260
+ }
261
+ },
262
+
263
+ "textTransform": {
264
+ "$value": "uppercase",
265
+ "$type": "string"
266
+ }
267
+ },
268
+
269
+ "help": {
270
+ "color": {
271
+ "text": {
272
+ "$value": "{color.text.muted}",
273
+ "$type": "color"
274
+ }
275
+ },
276
+
277
+ "fontSize": {
278
+ "$value": "{fontSize.xs}",
279
+ "$type": "dimension"
280
+ },
281
+
282
+ "fontWeight": {
283
+ "$value": "{fontWeight.normal}",
284
+ "$type": "fontWeight"
285
+ },
286
+
287
+ "margin": {
288
+ "$value": "0",
289
+ "$type": "dimension"
290
+ }
291
+ },
292
+
293
+ "checkable": {
294
+ "color": {
295
+ "$value": "{form.color.accent}",
296
+ "$type": "color"
297
+ },
298
+
299
+ "size": {
300
+ "$value": "1.25em",
301
+ "$type": "dimension"
302
+ }
303
+ },
304
+
305
+ "checkbox": {
306
+ "border": {
307
+ "radius": {
308
+ "$value": "0",
309
+ "$type": "dimension"
310
+ },
311
+
312
+ "width": {
313
+ "$value": "{form.border.width}",
314
+ "$type": "dimension"
315
+ }
316
+ },
317
+
318
+ "color": {
319
+ "background": {
320
+ "default": {
321
+ "$value": "{form.color.background}",
322
+ "$type": "color"
323
+ },
324
+ "checked": {
325
+ "$value": "{form.color.background}",
326
+ "$type": "color"
327
+ },
328
+ "hover": {
329
+ "$value": "{form.color.background}",
330
+ "$type": "color"
331
+ }
332
+ },
333
+
334
+ "border": {
335
+ "default": {
336
+ "$value": "{form.color.border.default}",
337
+ "$type": "color"
338
+ },
339
+ "checked": {
340
+ "$value": "{checkable.color}",
341
+ "$type": "color"
342
+ },
343
+ "hover": {
344
+ "$value": "{form.color.border.hover}",
345
+ "$type": "color"
346
+ }
347
+ }
348
+ },
349
+
350
+ "label": {
351
+ "padding": {
352
+ "$value": "0 0 0 .3125rem",
353
+ "$type": "string"
354
+ }
355
+ },
356
+
357
+ "mask": {
358
+ "checked": {
359
+ "$value": "{icon.tick} center no-repeat",
360
+ "$type": "string"
361
+ },
362
+
363
+ "indeterminate": {
364
+ "$value": "{icon.dash} center no-repeat",
365
+ "$type": "string"
366
+ }
367
+ },
368
+
369
+ "scale": {
370
+ "checked": {
371
+ "$value": "0.7",
372
+ "$type": "number"
373
+ }
374
+ }
375
+ },
376
+
377
+ "radio": {
378
+ "border": {
379
+ "radius": {
380
+ "$value": "{radius.pill}",
381
+ "$type": "dimension"
382
+ },
383
+
384
+ "width": {
385
+ "$value": "{form.border.width}",
386
+ "$type": "dimension"
387
+ },
388
+
389
+ "widthChecked": {
390
+ "$value": "{border.width.md}",
391
+ "$type": "dimension"
392
+ }
393
+ },
394
+
395
+ "color": {
396
+ "background": {
397
+ "default": {
398
+ "$value": "{form.color.background}",
399
+ "$type": "color"
400
+ },
401
+ "checked": {
402
+ "$value": "{checkable.color}",
403
+ "$type": "color"
404
+ },
405
+ "hover": {
406
+ "$value": "{form.color.background}",
407
+ "$type": "color"
408
+ }
409
+ },
410
+
411
+ "border": {
412
+ "default": {
413
+ "$value": "{form.color.border.default}",
414
+ "$type": "color"
415
+ },
416
+ "checked": {
417
+ "$value": "{checkable.color}",
418
+ "$type": "color"
419
+ },
420
+ "hover": {
421
+ "$value": "{form.color.border.hover}",
422
+ "$type": "color"
423
+ }
424
+ }
425
+ },
426
+
427
+ "label": {
428
+ "padding": {
429
+ "$value": "0 0 0 .3125rem",
430
+ "$type": "string"
431
+ }
432
+ },
433
+
434
+ "scale": {
435
+ "checked": {
436
+ "$value": "0.5",
437
+ "$type": "number"
438
+ }
439
+ }
440
+ },
441
+
442
+ "range": {
443
+ "thumb": {
444
+ "border": {
445
+ "width": {
446
+ "$value": "{size.4}",
447
+ "$type": "dimension"
448
+ },
449
+
450
+ "color": {
451
+ "$value": "{color.white}",
452
+ "$type": "color"
453
+ }
454
+ },
455
+
456
+ "color": {
457
+ "$value": "{form.color.accent}",
458
+ "$type": "color"
459
+ },
460
+
461
+ "size": {
462
+ "$value": "{size.24}",
463
+ "$type": "dimension"
464
+ }
465
+ },
466
+
467
+ "track": {
468
+ "color": {
469
+ "$value": "{form.color.border.default}",
470
+ "$type": "color"
471
+ },
472
+
473
+ "height": {
474
+ "$value": "calc({border.width.sm} + 2px)",
475
+ "$type": "string"
476
+ }
477
+ }
478
+ },
479
+
480
+ "switch": {
481
+ "border": {
482
+ "radius": {
483
+ "$value": "{radius.pill}",
484
+ "$type": "dimension"
485
+ },
486
+
487
+ "width": {
488
+ "$value": "{form.border.width}",
489
+ "$type": "dimension"
490
+ }
491
+ },
492
+
493
+ "color": {
494
+ "background": {
495
+ "default": {
496
+ "$value": "{form.color.background}",
497
+ "$type": "color"
498
+ },
499
+ "checked": {
500
+ "$value": "{form.color.background}",
501
+ "$type": "color"
502
+ },
503
+ "hover": {
504
+ "$value": "{form.color.background}",
505
+ "$type": "color"
506
+ }
507
+ },
508
+ "border": {
509
+ "$value": "{form.color.border.default}",
510
+ "$type": "color"
511
+ }
512
+ },
513
+
514
+ "thumb": {
515
+ "color": {
516
+ "default": {
517
+ "$value": "{form.color.accent}",
518
+ "$type": "color"
519
+ },
520
+ "checked": {
521
+ "$value": "{form.color.background}",
522
+ "$type": "color"
523
+ }
524
+ },
525
+
526
+ "scale": {
527
+ "$value": "0.6",
528
+ "$type": "number"
529
+ }
530
+ },
531
+
532
+ "track": {
533
+ "color": {
534
+ "default": {
535
+ "$value": "{form.color.background}",
536
+ "$type": "color"
537
+ },
538
+ "checked": {
539
+ "$value": "{form.color.accent}",
540
+ "$type": "color"
541
+ }
542
+ }
543
+ },
544
+
545
+ "width": {
546
+ "$value": "{size.40}",
547
+ "$type": "dimension"
548
+ }
549
+ }
550
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "columns": {
3
+ "$value": "12",
4
+ "$type": "number"
5
+ },
6
+ "gap": {
7
+ "$value": "{spacing.md}",
8
+ "$type": "string"
9
+ },
10
+ "span": {
11
+ "full": {
12
+ "$value": "1 / -1",
13
+ "$type": "string"
14
+ },
15
+ "half": {
16
+ "$value": "span calc({columns} / 2)",
17
+ "$type": "string"
18
+ },
19
+ "quarter": {
20
+ "$value": "span calc({columns} / 4)",
21
+ "$type": "string"
22
+ },
23
+ "third": {
24
+ "$value": "span calc({columns} / 3)",
25
+ "$type": "string"
26
+ }
27
+ }
28
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "icon": {
3
+ "size": {
4
+ "$value": "{size.16}",
5
+ "$type": "dimension"
6
+ },
7
+ "arrow": {
8
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 fill=%22none%22 stroke=%22%23000000%22 stroke-width=%221%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><line x1=%222%22 y1=%228%22 x2=%2212%22 y2=%228%22/><polyline points=%228 4 12 8 8 12%22/></svg>')",
9
+ "$type": "string"
10
+ },
11
+ "arrowSkip": {
12
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 fill=%22none%22 stroke=%22%23000000%22 stroke-width=%221%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><line x1=%222%22 y1=%228%22 x2=%2210%22 y2=%228%22/><polyline points=%226 4 10 8 6 12%22/><line x1=%2214%22 y1=%223%22 x2=%2214%22 y2=%2213%22/></svg>')",
13
+ "$type": "string"
14
+ },
15
+ "chevron": {
16
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 fill=%22none%22 stroke=%22%23000000%22 stroke-width=%221%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><polyline points=%222 5 8 11 14 5%22/></svg>')",
17
+ "$type": "string"
18
+ },
19
+ "close": {
20
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 fill=%22none%22 stroke=%22%23000000%22 stroke-width=%221%22 stroke-linecap=%22round%22><line x1=%223%22 y1=%223%22 x2=%2213%22 y2=%2213%22/><line x1=%2213%22 y1=%223%22 x2=%223%22 y2=%2213%22/></svg>')",
21
+ "$type": "string"
22
+ },
23
+ "dash": {
24
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 height=%2216%22 width=%2214%22 viewBox=%220 0 448 512%22><path d=%22M431 256c0 17.7-14.3 32-32 32H49c-17.7 0-32-14.3-32-32s14.3-32 32-32h350c17.7 0 32 14.3 32 32z%22/></svg>')",
25
+ "$type": "string"
26
+ },
27
+ "filter": {
28
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 fill=%22none%22 stroke=%22%23000000%22 stroke-width=%221%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><path d=%22M1.3 3.3h13.4%22/><path d=%22M4 8h8%22/><path d=%22M6 12.7h4%22/></svg>')",
29
+ "$type": "string"
30
+ },
31
+ "menu": {
32
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 fill=%22none%22 stroke=%22%23000000%22 stroke-width=%221%22 stroke-linecap=%22round%22><line x1=%222%22 y1=%224%22 x2=%2214%22 y2=%224%22/><line x1=%222%22 y1=%228%22 x2=%2214%22 y2=%228%22/><line x1=%222%22 y1=%2212%22 x2=%2214%22 y2=%2212%22/></svg>')",
33
+ "$type": "string"
34
+ },
35
+ "plus": {
36
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 fill=%22none%22 stroke=%22%23000000%22 stroke-width=%221%22 stroke-linecap=%22round%22><line x1=%228%22 y1=%223%22 x2=%228%22 y2=%2213%22/><line x1=%223%22 y1=%228%22 x2=%2213%22 y2=%228%22/></svg>')",
37
+ "$type": "string"
38
+ },
39
+ "share": {
40
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 fill=%22none%22 stroke=%22%23000000%22 stroke-width=%221%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><path d=%22M8 1.3v8.7%22/><path d=%22m10.7 4-2.7-2.7-2.7 2.7%22/><path d=%22M2.7 8v5.3a1.3 1.3 0 0 0 1.3 1.3h8a1.3 1.3 0 0 0 1.3-1.3v-5.3%22/></svg>')",
41
+ "$type": "string"
42
+ },
43
+ "tick": {
44
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 height=%2216%22 width=%2214%22 viewBox=%220 0 448 512%22><path d=%22M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z%22/></svg>')",
45
+ "$type": "string"
46
+ },
47
+ "toc": {
48
+ "$value": "url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 fill=%22none%22 stroke=%22%23000000%22 stroke-width=%221%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><path d=%22M10.7 3.3H2%22/><path d=%22M10.7 8H2%22/><path d=%22M10.7 12.7H2%22/><path d=%22M14 3.3h.01%22/><path d=%22M14 8h.01%22/><path d=%22M14 12.7h.01%22/></svg>')",
49
+ "$type": "string"
50
+ }
51
+ }
52
+ }