@veracity/vui 0.0.15 → 0.2.0

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 (195) hide show
  1. package/avatar/avatar.js +2 -2
  2. package/box/box.js +1 -1
  3. package/button/button.d.ts +7 -1
  4. package/button/button.js +56 -23
  5. package/button/button.types.d.ts +8 -6
  6. package/button/buttonIcon.d.ts +3 -0
  7. package/{alert/alertText.js → button/buttonIcon.js} +9 -9
  8. package/button/buttonText.d.ts +3 -0
  9. package/button/buttonText.js +30 -0
  10. package/button/buttons.d.ts +4 -3
  11. package/button/buttons.js +4 -3
  12. package/button/consts.js +3 -2
  13. package/button/context.d.ts +2 -2
  14. package/button/context.js +4 -4
  15. package/button/index.d.ts +2 -2
  16. package/button/index.js +2 -2
  17. package/button/theme.d.ts +79 -41
  18. package/button/theme.js +85 -46
  19. package/{button → buttonGroup}/buttonGroup.d.ts +3 -1
  20. package/{button → buttonGroup}/buttonGroup.js +4 -2
  21. package/buttonGroup/context.d.ts +4 -0
  22. package/buttonGroup/context.js +23 -0
  23. package/buttonGroup/helpers.d.ts +3 -0
  24. package/buttonGroup/helpers.js +10 -0
  25. package/buttonGroup/index.d.ts +4 -0
  26. package/{alert → buttonGroup}/index.js +4 -8
  27. package/card/card.d.ts +3 -0
  28. package/{tile/tile.js → card/card.js} +8 -7
  29. package/{tile/tile.types.d.ts → card/card.types.d.ts} +1 -1
  30. package/card/index.d.ts +3 -0
  31. package/{tile → card}/index.js +4 -4
  32. package/card/theme.d.ts +6 -0
  33. package/card/theme.js +10 -0
  34. package/checkbox/checkbox.js +4 -4
  35. package/checkbox/checkbox.types.d.ts +1 -1
  36. package/checkbox/checkboxGroup.types.d.ts +1 -1
  37. package/core/globalStyle.d.ts +4 -1
  38. package/core/globalStyle.js +7 -3
  39. package/core/index.d.ts +2 -0
  40. package/core/index.js +5 -1
  41. package/core/styled.d.ts +4 -0
  42. package/core/styled.js +80 -0
  43. package/core/types/component.d.ts +12 -12
  44. package/core/types/index.d.ts +1 -0
  45. package/core/types/index.js +1 -0
  46. package/core/types/styled.d.ts +11 -0
  47. package/core/utils.d.ts +2 -2
  48. package/core/utils.js +7 -7
  49. package/core/v.d.ts +182 -0
  50. package/core/v.js +6 -0
  51. package/core/vuiProvider.d.ts +13 -2
  52. package/core/vuiProvider.js +1 -1
  53. package/divider/divider.types.d.ts +1 -1
  54. package/heading/heading.types.d.ts +2 -1
  55. package/icon/helpers.d.ts +2 -3
  56. package/icon/helpers.js +6 -8
  57. package/icon/icon.js +3 -2
  58. package/icon/icon.types.d.ts +4 -2
  59. package/icons/library.js +1 -1
  60. package/icons/types.d.ts +1 -1
  61. package/image/image.d.ts +3 -0
  62. package/image/image.js +38 -0
  63. package/image/image.types.d.ts +5 -0
  64. package/image/index.d.ts +3 -0
  65. package/{label → image}/index.js +4 -4
  66. package/image/theme.d.ts +6 -0
  67. package/image/theme.js +10 -0
  68. package/index.d.ts +6 -3
  69. package/index.js +6 -3
  70. package/input/context.d.ts +4 -0
  71. package/{alert → input}/context.js +4 -4
  72. package/input/index.d.ts +2 -0
  73. package/input/index.js +2 -0
  74. package/input/input.d.ts +7 -2
  75. package/input/input.js +33 -22
  76. package/input/input.types.d.ts +7 -3
  77. package/input/inputIcon.d.ts +3 -0
  78. package/input/inputIcon.js +30 -0
  79. package/input/inputInput.d.ts +5 -0
  80. package/input/inputInput.js +36 -0
  81. package/input/theme.d.ts +40 -15
  82. package/input/theme.js +40 -16
  83. package/list/index.d.ts +3 -1
  84. package/list/index.js +3 -1
  85. package/list/list.d.ts +2 -0
  86. package/list/list.js +3 -1
  87. package/list/list.types.d.ts +19 -1
  88. package/list/listHeading.d.ts +2 -2
  89. package/list/listHeading.js +2 -2
  90. package/list/listIcon.js +1 -1
  91. package/list/listItem.d.ts +1 -1
  92. package/list/listItem.js +8 -5
  93. package/list/listText.d.ts +3 -0
  94. package/list/listText.js +30 -0
  95. package/list/theme.d.ts +20 -6
  96. package/list/theme.js +26 -12
  97. package/notification/consts.d.ts +2 -0
  98. package/{alert → notification}/consts.js +7 -7
  99. package/notification/context.d.ts +4 -0
  100. package/notification/context.js +23 -0
  101. package/notification/index.d.ts +8 -0
  102. package/notification/index.js +25 -0
  103. package/notification/notification.d.ts +13 -0
  104. package/{alert/alert.js → notification/notification.js} +25 -25
  105. package/notification/notification.types.d.ts +20 -0
  106. package/notification/notificationButton.d.ts +3 -0
  107. package/{alert/alertButton.js → notification/notificationButton.js} +8 -8
  108. package/notification/notificationIcon.d.ts +3 -0
  109. package/{alert/alertIcon.js → notification/notificationIcon.js} +9 -9
  110. package/notification/notificationText.d.ts +3 -0
  111. package/notification/notificationText.js +30 -0
  112. package/notification/notificationTitle.d.ts +3 -0
  113. package/notification/notificationTitle.js +30 -0
  114. package/{alert → notification}/theme.d.ts +0 -15
  115. package/{alert → notification}/theme.js +1 -22
  116. package/package.json +2 -3
  117. package/panel/index.d.ts +3 -0
  118. package/panel/index.js +20 -0
  119. package/panel/panel.d.ts +3 -0
  120. package/panel/panel.js +39 -0
  121. package/panel/panel.types.d.ts +4 -0
  122. package/{tile → panel}/theme.d.ts +1 -8
  123. package/{tile → panel}/theme.js +4 -11
  124. package/radio/radio.js +4 -4
  125. package/radio/radio.types.d.ts +1 -1
  126. package/radio/radioGroup.types.d.ts +1 -1
  127. package/skeleton/skeleton.types.d.ts +1 -0
  128. package/spinner/spinner.types.d.ts +1 -0
  129. package/svg/cache.js +1 -5
  130. package/svg/svg.js +2 -3
  131. package/switch/index.d.ts +0 -1
  132. package/switch/index.js +0 -1
  133. package/switch/switch.js +6 -6
  134. package/switch/switch.types.d.ts +19 -4
  135. package/switch/switchButton.d.ts +2 -2
  136. package/switch/switchButton.js +18 -19
  137. package/switch/theme.d.ts +41 -46
  138. package/switch/theme.js +50 -72
  139. package/system/borders.d.ts +3 -1
  140. package/system/custom.d.ts +24 -7
  141. package/system/custom.js +33 -13
  142. package/system/system.d.ts +2 -2
  143. package/system/system.js +1 -1
  144. package/t/t.types.d.ts +2 -1
  145. package/tag/context.d.ts +4 -0
  146. package/tag/context.js +23 -0
  147. package/tag/index.d.ts +6 -0
  148. package/tag/index.js +23 -0
  149. package/tag/tag.d.ts +11 -0
  150. package/tag/tag.js +99 -0
  151. package/{label/label.types.d.ts → tag/tag.types.d.ts} +6 -7
  152. package/tag/tag.types.js +2 -0
  153. package/tag/tagIcon.d.ts +3 -0
  154. package/{alert/alertTitle.js → tag/tagIcon.js} +9 -9
  155. package/tag/tagText.d.ts +3 -0
  156. package/tag/tagText.js +30 -0
  157. package/tag/theme.d.ts +65 -0
  158. package/tag/theme.js +78 -0
  159. package/textarea/textarea.js +2 -1
  160. package/textarea/textarea.types.d.ts +1 -0
  161. package/theme/components.d.ts +291 -223
  162. package/theme/components.js +32 -28
  163. package/theme/defaultTheme.d.ts +291 -223
  164. package/utils/assertion.d.ts +14 -0
  165. package/utils/assertion.js +34 -0
  166. package/utils/index.d.ts +1 -0
  167. package/utils/index.js +1 -0
  168. package/utils/object.d.ts +5 -18
  169. package/utils/object.js +17 -50
  170. package/utils/types.d.ts +2 -0
  171. package/alert/alert.d.ts +0 -13
  172. package/alert/alert.types.d.ts +0 -20
  173. package/alert/alertButton.d.ts +0 -3
  174. package/alert/alertIcon.d.ts +0 -3
  175. package/alert/alertText.d.ts +0 -3
  176. package/alert/alertTitle.d.ts +0 -3
  177. package/alert/consts.d.ts +0 -2
  178. package/alert/context.d.ts +0 -4
  179. package/alert/index.d.ts +0 -8
  180. package/label/index.d.ts +0 -3
  181. package/label/label.d.ts +0 -5
  182. package/label/label.js +0 -71
  183. package/label/theme.d.ts +0 -61
  184. package/label/theme.js +0 -107
  185. package/list/listItem.types.d.ts +0 -16
  186. package/switch/switchButton.types.d.ts +0 -19
  187. package/tile/index.d.ts +0 -3
  188. package/tile/tile.d.ts +0 -3
  189. /package/{button → buttonGroup}/buttonGroup.types.d.ts +0 -0
  190. /package/{button → buttonGroup}/buttonGroup.types.js +0 -0
  191. /package/{alert/alert.types.js → card/card.types.js} +0 -0
  192. /package/{label/label.types.js → core/types/styled.js} +0 -0
  193. /package/{list/listItem.types.js → image/image.types.js} +0 -0
  194. /package/{switch/switchButton.types.js → notification/notification.types.js} +0 -0
  195. /package/{tile/tile.types.js → panel/panel.types.js} +0 -0
@@ -1,46 +1,4 @@
1
1
  declare const _default: {
2
- Alert: {
3
- defaultProps: {
4
- colorScheme: string;
5
- variant: string;
6
- };
7
- parts: string[];
8
- sizes: {};
9
- variants: {
10
- solid: (props: import("..").Dict<any>) => {
11
- container: {
12
- bg: string;
13
- color: string;
14
- };
15
- button: {
16
- bg: string;
17
- hoverBg: string;
18
- };
19
- icon: {};
20
- message: {};
21
- text: {};
22
- title: {};
23
- };
24
- subtle: (props: import("..").Dict<any>) => {
25
- container: {
26
- bg: string;
27
- borderColor: string;
28
- borderWidth: number;
29
- color: string;
30
- };
31
- button: {
32
- color: string;
33
- hoverBg: string;
34
- activeBg: string;
35
- variant: string;
36
- };
37
- icon: {};
38
- message: {};
39
- text: {};
40
- title: {};
41
- };
42
- };
43
- };
44
2
  Avatar: {
45
3
  defaultProps: {
46
4
  colorScheme: string;
@@ -103,66 +61,109 @@ declare const _default: {
103
61
  size: string;
104
62
  variant: string;
105
63
  };
64
+ parts: string[];
106
65
  sizes: {
107
66
  xs: {
108
- fontSize: string;
109
- h: number;
110
- iconSize: string;
111
- minW: number;
112
- spaceX: number;
67
+ container: {
68
+ fontSize: string;
69
+ h: number;
70
+ minW: number;
71
+ spaceX: number;
72
+ };
73
+ icon: {
74
+ size: string;
75
+ };
76
+ text: {};
113
77
  };
114
78
  sm: {
115
- fontSize: string;
116
- h: number;
117
- iconSize: string;
118
- minW: number;
119
- spaceX: number;
79
+ container: {
80
+ fontSize: string;
81
+ h: number;
82
+ minW: number;
83
+ spaceX: number;
84
+ };
85
+ icon: {
86
+ size: string;
87
+ };
88
+ text: {};
120
89
  };
121
90
  md: {
122
- fontSize: string;
123
- h: number;
124
- iconSize: string;
125
- minW: number;
126
- spaceX: number;
91
+ container: {
92
+ fontSize: string;
93
+ h: number;
94
+ minW: number;
95
+ spaceX: number;
96
+ };
97
+ icon: {
98
+ size: string;
99
+ };
100
+ text: {};
127
101
  };
128
102
  lg: {
129
- fontSize: string;
130
- h: number;
131
- iconSize: string;
132
- minW: number;
133
- spaceX: number;
103
+ container: {
104
+ fontSize: string;
105
+ h: number;
106
+ minW: number;
107
+ spaceX: number;
108
+ };
109
+ icon: {
110
+ size: string;
111
+ };
112
+ text: {};
134
113
  };
135
114
  };
136
115
  variants: {
137
116
  outlined: (props: import("..").Dict<any>) => {
138
- hoverBg: string;
139
- activeBg: string;
140
- bg: string;
141
- color: string;
142
- borderColor: string;
143
- borderWidth: number;
117
+ container: {
118
+ borderColor: string;
119
+ hoverBorderColor: string;
120
+ hoverBg: string;
121
+ activeBg: string;
122
+ bg: string;
123
+ borderWidth: number;
124
+ color: string;
125
+ };
144
126
  };
145
127
  solid: (props: import("..").Dict<any>) => {
146
- borderColor: string;
147
- hoverBg: string;
148
- activeBg: string;
149
- bg: string;
150
- color: string;
128
+ container: {
129
+ hoverBg: string;
130
+ hoverBorderColor: string;
131
+ activeBg: string;
132
+ bg: string;
133
+ borderColor: string;
134
+ borderWidth: number;
135
+ color: string;
136
+ };
151
137
  };
152
138
  subtle: (props: import("..").Dict<any>) => {
153
- hoverBg: string;
154
- activeBg: string;
155
- bg: string;
156
- color: string;
139
+ container: {
140
+ hoverBg: string;
141
+ hoverBorderColor: string;
142
+ activeBg: string;
143
+ bg: string;
144
+ borderColor: string;
145
+ borderWidth: number;
146
+ color: string;
147
+ };
157
148
  };
158
149
  text: (props: import("..").Dict<any>) => {
159
- hoverBg: string;
160
- activeBg: string;
161
- bg: string;
162
- color: string;
150
+ container: {
151
+ hoverBg: string;
152
+ hoverBorderColor: string;
153
+ activeBg: string;
154
+ bg: string;
155
+ borderColor: string;
156
+ borderWidth: number;
157
+ color: string;
158
+ };
163
159
  };
164
160
  };
165
161
  };
162
+ Card: {
163
+ defaultProps: {};
164
+ sizes: {};
165
+ variants: {};
166
+ };
166
167
  Checkbox: {
167
168
  defaultProps: {
168
169
  colorScheme: string;
@@ -275,94 +276,69 @@ declare const _default: {
275
276
  };
276
277
  variants: {};
277
278
  };
279
+ Image: {
280
+ defaultProps: {};
281
+ sizes: {};
282
+ variants: {};
283
+ };
278
284
  Input: {
279
285
  defaultProps: {
280
286
  colorScheme: string;
281
287
  size: string;
282
288
  variant: string;
283
289
  };
290
+ parts: string[];
284
291
  sizes: {
285
292
  xs: {
286
- fontSize: string;
287
- h: number;
288
- iconSize: string;
293
+ container: {
294
+ fontSize: string;
295
+ h: number;
296
+ };
297
+ icon: {
298
+ size: string;
299
+ };
300
+ input: {};
289
301
  };
290
302
  sm: {
291
- fontSize: string;
292
- h: number;
293
- iconSize: string;
303
+ container: {
304
+ fontSize: string;
305
+ h: number;
306
+ };
307
+ icon: {
308
+ size: string;
309
+ };
310
+ input: {};
294
311
  };
295
312
  md: {
296
- fontSize: string;
297
- h: number;
298
- iconSize: string;
313
+ container: {
314
+ fontSize: string;
315
+ h: number;
316
+ };
317
+ icon: {
318
+ size: string;
319
+ };
320
+ input: {};
299
321
  };
300
322
  lg: {
301
- fontSize: string;
302
- h: number;
303
- iconSize: string;
323
+ container: {
324
+ fontSize: string;
325
+ h: number;
326
+ };
327
+ icon: {
328
+ size: string;
329
+ };
330
+ input: {};
304
331
  };
305
332
  };
306
333
  variants: {
307
334
  default: (props: import("..").Dict<any>) => {
308
- borderColor: string;
309
- focusWithinRing: number;
310
- focusWithinRingColor: string;
311
- };
312
- };
313
- };
314
- Label: {
315
- defaultProps: {
316
- colorScheme: string;
317
- size: string;
318
- variant: string;
319
- };
320
- sizes: {
321
- sm: {
322
- fontSize: string;
323
- h: number;
324
- iconSize: string;
325
- spaceX: number;
326
- };
327
- md: {
328
- fontSize: string;
329
- h: number;
330
- iconSize: string;
331
- spaceX: number;
332
- };
333
- lg: {
334
- fontSize: string;
335
- h: number;
336
- iconSize: string;
337
- spaceX: number;
338
- };
339
- };
340
- variants: {
341
- outlined: (props: import("..").Dict<any>) => {
342
- hoverBg: string;
343
- activeBg: string;
344
- bg: string;
345
- color: string;
346
- borderColor: string;
347
- borderWidth: number;
348
- };
349
- solid: (props: import("..").Dict<any>) => {
350
- hoverBg: string;
351
- activeBg: string;
352
- bg: string;
353
- color: string;
354
- };
355
- subtle: (props: import("..").Dict<any>) => {
356
- hoverBg: string;
357
- activeBg: string;
358
- bg: string;
359
- color: string;
360
- };
361
- text: (props: import("..").Dict<any>) => {
362
- hoverBg: string;
363
- activeBg: string;
364
- bg: string;
365
- color: string;
335
+ container: {
336
+ borderColor: string;
337
+ focusWithinRing: number;
338
+ focusWithinRingColor: string;
339
+ };
340
+ icon: {};
341
+ input: {};
366
342
  };
367
343
  };
368
344
  };
@@ -406,6 +382,8 @@ declare const _default: {
406
382
  parts: string[];
407
383
  sizes: {
408
384
  sm: {
385
+ container: {};
386
+ heading: {};
409
387
  icon: {
410
388
  size: string;
411
389
  };
@@ -413,8 +391,11 @@ declare const _default: {
413
391
  fontSize: string;
414
392
  h: number;
415
393
  };
394
+ text: {};
416
395
  };
417
396
  md: {
397
+ container: {};
398
+ heading: {};
418
399
  icon: {
419
400
  size: string;
420
401
  };
@@ -422,31 +403,40 @@ declare const _default: {
422
403
  fontSize: string;
423
404
  h: number;
424
405
  };
406
+ text: {};
425
407
  };
426
408
  lg: {
427
- icon: {
428
- size: string;
429
- };
409
+ container: {};
410
+ heading: {};
430
411
  item: {
431
412
  fontSize: string;
432
413
  h: number;
433
414
  };
434
- };
435
- xl: {
436
415
  icon: {
437
- scale: number;
416
+ size: string;
438
417
  };
418
+ text: {};
419
+ };
420
+ xl: {
421
+ container: {};
422
+ heading: {};
439
423
  item: {
440
424
  fontSize: string;
441
425
  h: number;
442
426
  };
427
+ icon: {
428
+ scale: number;
429
+ };
430
+ text: {};
443
431
  };
444
432
  };
445
433
  variants: {
446
434
  default: (props: import("..").Dict<any>) => {
447
435
  container: {};
436
+ heading: {};
448
437
  icon: {};
449
438
  item: import("..").Dict<any>;
439
+ text: {};
450
440
  };
451
441
  ordered: {
452
442
  container: {
@@ -474,6 +464,34 @@ declare const _default: {
474
464
  };
475
465
  };
476
466
  };
467
+ Notification: {
468
+ defaultProps: {
469
+ colorScheme: string;
470
+ variant: string;
471
+ };
472
+ parts: string[];
473
+ sizes: {};
474
+ variants: {
475
+ subtle: (props: import("..").Dict<any>) => {
476
+ container: {
477
+ bg: string;
478
+ borderColor: string;
479
+ borderWidth: number;
480
+ color: string;
481
+ };
482
+ button: {
483
+ color: string;
484
+ hoverBg: string;
485
+ activeBg: string;
486
+ variant: string;
487
+ };
488
+ icon: {};
489
+ message: {};
490
+ text: {};
491
+ title: {};
492
+ };
493
+ };
494
+ };
477
495
  P: {
478
496
  defaultProps: {
479
497
  size: string;
@@ -502,6 +520,21 @@ declare const _default: {
502
520
  };
503
521
  variants: {};
504
522
  };
523
+ Panel: {
524
+ defaultProps: {
525
+ variant: string;
526
+ };
527
+ sizes: {};
528
+ variants: {
529
+ elevated: {
530
+ shadow: string;
531
+ };
532
+ outlined: {
533
+ border: number;
534
+ borderColor: string;
535
+ };
536
+ };
537
+ };
505
538
  Radio: {
506
539
  defaultProps: {
507
540
  colorScheme: string;
@@ -651,75 +684,71 @@ declare const _default: {
651
684
  };
652
685
  parts: string[];
653
686
  sizes: {
654
- sm: (props: import("..").Dict<any>) => {
687
+ sm: () => {
688
+ container: {};
655
689
  button: {
656
690
  fontSize: string;
691
+ minW: number;
692
+ thumb: {
693
+ h: number;
694
+ w: number;
695
+ };
696
+ track: {
697
+ h: number;
698
+ };
657
699
  };
658
700
  label: {
659
701
  size: string;
660
702
  };
661
- thumb: {
662
- h: number;
663
- w: number;
664
- };
665
- track: {
666
- h: number;
667
- minW: number;
668
- };
669
703
  };
670
- md: (props: import("..").Dict<any>) => {
704
+ md: () => {
705
+ container: {};
671
706
  button: {
672
707
  fontSize: string;
708
+ minW: number;
709
+ thumb: {
710
+ h: number;
711
+ w: number;
712
+ };
713
+ track: {
714
+ h: number;
715
+ };
673
716
  };
674
717
  label: {
675
718
  size: string;
676
719
  };
677
- thumb: {
678
- h: number;
679
- w: number;
680
- };
681
- track: {
682
- h: number;
683
- minW: number;
684
- };
685
720
  };
686
- lg: (props: import("..").Dict<any>) => {
721
+ lg: () => {
722
+ container: {};
687
723
  button: {
688
724
  fontSize: string;
725
+ minW: number;
726
+ thumb: {
727
+ h: number;
728
+ w: number;
729
+ };
730
+ track: {
731
+ h: number;
732
+ };
689
733
  };
690
734
  label: {
691
735
  size: string;
692
736
  };
693
- thumb: {
694
- h: number;
695
- w: number;
696
- };
697
- track: {
698
- h: number;
699
- minW: number;
700
- };
701
737
  };
702
738
  };
703
739
  variants: {
704
740
  contained: (props: import("..").Dict<any>) => {
705
- thumb: {
706
- bg: string;
707
- };
708
- track: {
709
- bg: string;
710
- ring: number;
711
- };
712
- };
713
- thin: (props: import("..").Dict<any>) => {
714
- thumb: {
715
- bg: string;
716
- borderColor: string;
717
- borderWidth: number;
718
- ring: number;
719
- };
720
- track: {
721
- bg: string;
741
+ container: {};
742
+ button: {
743
+ thumb: {
744
+ bg: string;
745
+ };
746
+ track: {
747
+ bg: string;
748
+ ring: number;
749
+ };
722
750
  };
751
+ label: {};
723
752
  };
724
753
  };
725
754
  };
@@ -743,43 +772,82 @@ declare const _default: {
743
772
  };
744
773
  variants: {};
745
774
  };
746
- Textarea: {
775
+ Tag: {
747
776
  defaultProps: {
748
777
  colorScheme: string;
778
+ size: string;
749
779
  variant: string;
750
780
  };
751
781
  parts: string[];
752
- sizes: {};
782
+ sizes: {
783
+ sm: {
784
+ container: {
785
+ fontSize: string;
786
+ h: number;
787
+ spaceX: number;
788
+ };
789
+ icon: {
790
+ size: string;
791
+ };
792
+ text: {};
793
+ };
794
+ md: {
795
+ container: {
796
+ fontSize: string;
797
+ h: number;
798
+ spaceX: number;
799
+ };
800
+ icon: {
801
+ size: string;
802
+ };
803
+ text: {};
804
+ };
805
+ lg: {
806
+ container: {
807
+ fontSize: string;
808
+ h: number;
809
+ spaceX: number;
810
+ };
811
+ icon: {
812
+ size: string;
813
+ };
814
+ text: {};
815
+ };
816
+ };
753
817
  variants: {
754
- default: (props: import("..").Dict<any>) => {
755
- container: {};
756
- textarea: {
757
- borderColor: string;
758
- focusRing: number;
759
- focusRingColor: string;
818
+ solid: (props: import("..").Dict<any>) => {
819
+ container: {
820
+ hoverBg: string;
821
+ activeBg: string;
822
+ bg: string;
823
+ color: string;
824
+ };
825
+ };
826
+ subtle: (props: import("..").Dict<any>) => {
827
+ container: {
828
+ hoverBg: string;
829
+ activeBg: string;
830
+ bg: string;
831
+ color: string;
760
832
  };
761
833
  };
762
834
  };
763
835
  };
764
- Tile: {
836
+ Textarea: {
765
837
  defaultProps: {
838
+ colorScheme: string;
766
839
  variant: string;
767
840
  };
841
+ parts: string[];
768
842
  sizes: {};
769
843
  variants: {
770
- default: {
771
- bg: string;
772
- borderRadius: string;
773
- shadow: string;
774
- hoverShadow: string;
775
- p: number;
776
- };
777
- outlined: {
778
- bg: string;
779
- border: number;
780
- borderColor: string;
781
- borderRadius: string;
782
- p: number;
844
+ default: (props: import("..").Dict<any>) => {
845
+ container: {};
846
+ textarea: {
847
+ borderColor: string;
848
+ focusRing: number;
849
+ focusRingColor: string;
850
+ };
783
851
  };
784
852
  };
785
853
  };