@seed-design/css 0.0.1-rc.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 (219) hide show
  1. package/README.md +1 -0
  2. package/package.json +42 -0
  3. package/recipes/action-button.d.ts +32 -0
  4. package/recipes/action-button.mjs +87 -0
  5. package/recipes/action-chip.d.ts +28 -0
  6. package/recipes/action-chip.mjs +60 -0
  7. package/recipes/action-sheet-item.d.ts +24 -0
  8. package/recipes/action-sheet-item.mjs +38 -0
  9. package/recipes/action-sheet.d.ts +21 -0
  10. package/recipes/action-sheet.mjs +59 -0
  11. package/recipes/app-bar-main.d.ts +36 -0
  12. package/recipes/app-bar-main.mjs +61 -0
  13. package/recipes/app-bar.d.ts +36 -0
  14. package/recipes/app-bar.mjs +68 -0
  15. package/recipes/app-screen.d.ts +36 -0
  16. package/recipes/app-screen.mjs +66 -0
  17. package/recipes/avatar-stack.d.ts +24 -0
  18. package/recipes/avatar-stack.mjs +45 -0
  19. package/recipes/avatar.d.ts +24 -0
  20. package/recipes/avatar.mjs +55 -0
  21. package/recipes/badge.d.ts +36 -0
  22. package/recipes/badge.mjs +126 -0
  23. package/recipes/bottom-sheet.d.ts +21 -0
  24. package/recipes/bottom-sheet.mjs +63 -0
  25. package/recipes/callout.d.ts +24 -0
  26. package/recipes/callout.mjs +61 -0
  27. package/recipes/checkbox.d.ts +32 -0
  28. package/recipes/checkbox.mjs +77 -0
  29. package/recipes/chip-tabs.d.ts +32 -0
  30. package/recipes/chip-tabs.mjs +68 -0
  31. package/recipes/className.mjs +25 -0
  32. package/recipes/control-chip.d.ts +28 -0
  33. package/recipes/control-chip.mjs +60 -0
  34. package/recipes/dialog.d.ts +21 -0
  35. package/recipes/dialog.mjs +59 -0
  36. package/recipes/extended-action-sheet-item.d.ts +24 -0
  37. package/recipes/extended-action-sheet-item.mjs +38 -0
  38. package/recipes/extended-action-sheet.d.ts +21 -0
  39. package/recipes/extended-action-sheet.mjs +63 -0
  40. package/recipes/extended-fab.d.ts +28 -0
  41. package/recipes/extended-fab.mjs +43 -0
  42. package/recipes/fab.d.ts +21 -0
  43. package/recipes/fab.mjs +31 -0
  44. package/recipes/help-bubble.d.ts +21 -0
  45. package/recipes/help-bubble.mjs +55 -0
  46. package/recipes/identity-placeholder.d.ts +24 -0
  47. package/recipes/identity-placeholder.mjs +41 -0
  48. package/recipes/inline-banner.d.ts +24 -0
  49. package/recipes/inline-banner.mjs +63 -0
  50. package/recipes/link-with-icon.d.ts +24 -0
  51. package/recipes/link-with-icon.mjs +39 -0
  52. package/recipes/manner-temp-badge.d.ts +24 -0
  53. package/recipes/manner-temp-badge.mjs +42 -0
  54. package/recipes/mergeVariants.mjs +9 -0
  55. package/recipes/progress-circle.d.ts +28 -0
  56. package/recipes/progress-circle.mjs +54 -0
  57. package/recipes/pull-to-refresh.d.ts +21 -0
  58. package/recipes/pull-to-refresh.mjs +35 -0
  59. package/recipes/radio.d.ts +24 -0
  60. package/recipes/radio.mjs +42 -0
  61. package/recipes/reaction-button.d.ts +24 -0
  62. package/recipes/reaction-button.mjs +38 -0
  63. package/recipes/segmented-control.d.ts +21 -0
  64. package/recipes/segmented-control.mjs +39 -0
  65. package/recipes/select-box-group.d.ts +21 -0
  66. package/recipes/select-box-group.mjs +31 -0
  67. package/recipes/select-box.d.ts +21 -0
  68. package/recipes/select-box.mjs +59 -0
  69. package/recipes/skeleton.d.ts +24 -0
  70. package/recipes/skeleton.mjs +40 -0
  71. package/recipes/snackbar-region.d.ts +21 -0
  72. package/recipes/snackbar-region.mjs +31 -0
  73. package/recipes/snackbar.d.ts +24 -0
  74. package/recipes/snackbar.mjs +51 -0
  75. package/recipes/splitVariantProps.mjs +12 -0
  76. package/recipes/switch.d.ts +24 -0
  77. package/recipes/switch.mjs +50 -0
  78. package/recipes/tabs.d.ts +36 -0
  79. package/recipes/tabs.mjs +81 -0
  80. package/recipes/text-field.d.ts +24 -0
  81. package/recipes/text-field.mjs +103 -0
  82. package/recipes/text.d.ts +28 -0
  83. package/recipes/text.mjs +64 -0
  84. package/recipes/toggle-button.d.ts +28 -0
  85. package/recipes/toggle-button.mjs +43 -0
  86. package/recipes/visually-hidden.d.ts +21 -0
  87. package/recipes/visually-hidden.mjs +31 -0
  88. package/seed.css +5017 -0
  89. package/seed.min.css +1 -0
  90. package/vars/color/bg.d.ts +37 -0
  91. package/vars/color/bg.mjs +37 -0
  92. package/vars/color/fg.d.ts +16 -0
  93. package/vars/color/fg.mjs +16 -0
  94. package/vars/color/index.d.ts +5 -0
  95. package/vars/color/index.mjs +5 -0
  96. package/vars/color/manner-temp/index.d.ts +6 -0
  97. package/vars/color/manner-temp/index.mjs +6 -0
  98. package/vars/color/manner-temp/l1.d.ts +2 -0
  99. package/vars/color/manner-temp/l1.mjs +2 -0
  100. package/vars/color/manner-temp/l2.d.ts +2 -0
  101. package/vars/color/manner-temp/l2.mjs +2 -0
  102. package/vars/color/manner-temp/l3.d.ts +2 -0
  103. package/vars/color/manner-temp/l3.mjs +2 -0
  104. package/vars/color/manner-temp/l4.d.ts +2 -0
  105. package/vars/color/manner-temp/l4.mjs +2 -0
  106. package/vars/color/manner-temp/l5.d.ts +2 -0
  107. package/vars/color/manner-temp/l5.mjs +2 -0
  108. package/vars/color/manner-temp/l6.d.ts +2 -0
  109. package/vars/color/manner-temp/l6.mjs +2 -0
  110. package/vars/color/palette.d.ts +78 -0
  111. package/vars/color/palette.mjs +78 -0
  112. package/vars/color/stroke.d.ts +10 -0
  113. package/vars/color/stroke.mjs +10 -0
  114. package/vars/component/action-button.d.ts +491 -0
  115. package/vars/component/action-button.mjs +491 -0
  116. package/vars/component/action-chip.d.ts +128 -0
  117. package/vars/component/action-chip.mjs +128 -0
  118. package/vars/component/action-sheet-close-button.d.ts +23 -0
  119. package/vars/component/action-sheet-close-button.mjs +23 -0
  120. package/vars/component/action-sheet-item.d.ts +36 -0
  121. package/vars/component/action-sheet-item.mjs +36 -0
  122. package/vars/component/action-sheet.d.ts +45 -0
  123. package/vars/component/action-sheet.mjs +45 -0
  124. package/vars/component/avatar-stack.d.ts +60 -0
  125. package/vars/component/avatar-stack.mjs +60 -0
  126. package/vars/component/avatar.d.ts +83 -0
  127. package/vars/component/avatar.mjs +83 -0
  128. package/vars/component/badge.d.ts +223 -0
  129. package/vars/component/badge.mjs +223 -0
  130. package/vars/component/bottom-sheet.d.ts +61 -0
  131. package/vars/component/bottom-sheet.mjs +61 -0
  132. package/vars/component/callout.d.ts +173 -0
  133. package/vars/component/callout.mjs +173 -0
  134. package/vars/component/checkbox.d.ts +171 -0
  135. package/vars/component/checkbox.mjs +171 -0
  136. package/vars/component/chip-tab.d.ts +98 -0
  137. package/vars/component/chip-tab.mjs +98 -0
  138. package/vars/component/chip-tablist.d.ts +23 -0
  139. package/vars/component/chip-tablist.mjs +23 -0
  140. package/vars/component/control-chip.d.ts +156 -0
  141. package/vars/component/control-chip.mjs +156 -0
  142. package/vars/component/dialog.d.ts +49 -0
  143. package/vars/component/dialog.mjs +49 -0
  144. package/vars/component/extended-action-sheet-close-button.d.ts +25 -0
  145. package/vars/component/extended-action-sheet-close-button.mjs +25 -0
  146. package/vars/component/extended-action-sheet-item.d.ts +46 -0
  147. package/vars/component/extended-action-sheet-item.mjs +46 -0
  148. package/vars/component/extended-action-sheet.d.ts +48 -0
  149. package/vars/component/extended-action-sheet.mjs +48 -0
  150. package/vars/component/extended-fab.d.ts +82 -0
  151. package/vars/component/extended-fab.mjs +82 -0
  152. package/vars/component/fab.d.ts +21 -0
  153. package/vars/component/fab.mjs +21 -0
  154. package/vars/component/help-bubble.d.ts +36 -0
  155. package/vars/component/help-bubble.mjs +36 -0
  156. package/vars/component/identity-placeholder.d.ts +12 -0
  157. package/vars/component/identity-placeholder.mjs +12 -0
  158. package/vars/component/index.d.ts +40 -0
  159. package/vars/component/index.mjs +40 -0
  160. package/vars/component/inline-banner.d.ts +191 -0
  161. package/vars/component/inline-banner.mjs +191 -0
  162. package/vars/component/link-with-icon.d.ts +46 -0
  163. package/vars/component/link-with-icon.mjs +46 -0
  164. package/vars/component/manner-temp-badge.d.ts +77 -0
  165. package/vars/component/manner-temp-badge.mjs +77 -0
  166. package/vars/component/progress-circle.d.ts +67 -0
  167. package/vars/component/progress-circle.mjs +67 -0
  168. package/vars/component/radio.d.ts +77 -0
  169. package/vars/component/radio.mjs +77 -0
  170. package/vars/component/reaction-button.d.ts +134 -0
  171. package/vars/component/reaction-button.mjs +134 -0
  172. package/vars/component/segmented-control-item.d.ts +34 -0
  173. package/vars/component/segmented-control-item.mjs +34 -0
  174. package/vars/component/segmented-control.d.ts +18 -0
  175. package/vars/component/segmented-control.mjs +18 -0
  176. package/vars/component/select-box.d.ts +92 -0
  177. package/vars/component/select-box.mjs +92 -0
  178. package/vars/component/skeleton.d.ts +42 -0
  179. package/vars/component/skeleton.mjs +42 -0
  180. package/vars/component/snackbar.d.ts +58 -0
  181. package/vars/component/snackbar.mjs +58 -0
  182. package/vars/component/switch.d.ts +65 -0
  183. package/vars/component/switch.mjs +65 -0
  184. package/vars/component/tab.d.ts +53 -0
  185. package/vars/component/tab.mjs +53 -0
  186. package/vars/component/tablist.d.ts +51 -0
  187. package/vars/component/tablist.mjs +51 -0
  188. package/vars/component/text-field.d.ts +295 -0
  189. package/vars/component/text-field.mjs +295 -0
  190. package/vars/component/toggle-button.d.ts +205 -0
  191. package/vars/component/toggle-button.mjs +205 -0
  192. package/vars/component/top-navigation.d.ts +86 -0
  193. package/vars/component/top-navigation.mjs +86 -0
  194. package/vars/component/typography.d.ts +200 -0
  195. package/vars/component/typography.mjs +200 -0
  196. package/vars/dimension/index.d.ts +22 -0
  197. package/vars/dimension/index.mjs +22 -0
  198. package/vars/dimension/spacing-x.d.ts +2 -0
  199. package/vars/dimension/spacing-x.mjs +2 -0
  200. package/vars/dimension/spacing-y.d.ts +2 -0
  201. package/vars/dimension/spacing-y.mjs +2 -0
  202. package/vars/duration.d.ts +6 -0
  203. package/vars/duration.mjs +6 -0
  204. package/vars/font-size.d.ts +13 -0
  205. package/vars/font-size.mjs +13 -0
  206. package/vars/font-weight.d.ts +3 -0
  207. package/vars/font-weight.mjs +3 -0
  208. package/vars/gradient.d.ts +1 -0
  209. package/vars/gradient.mjs +1 -0
  210. package/vars/index.d.ts +32 -0
  211. package/vars/index.mjs +1 -0
  212. package/vars/line-height.d.ts +10 -0
  213. package/vars/line-height.mjs +10 -0
  214. package/vars/radius.d.ts +11 -0
  215. package/vars/radius.mjs +11 -0
  216. package/vars/timing-function.d.ts +6 -0
  217. package/vars/timing-function.mjs +6 -0
  218. package/vars/vars.d.ts +9 -0
  219. package/vars/vars.mjs +9 -0
@@ -0,0 +1,295 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "label": {
5
+ "color": "var(--seed-color-fg-neutral)",
6
+ "fontWeight": "var(--seed-font-weight-bold)"
7
+ },
8
+ "indicator": {
9
+ "color": "var(--seed-color-fg-neutral)",
10
+ "fontWeight": "var(--seed-font-weight-regular)"
11
+ },
12
+ "field": {
13
+ "color": "var(--seed-color-bg-layer-default)",
14
+ "strokeWidth": "1px",
15
+ "strokeColor": "var(--seed-color-stroke-field)"
16
+ },
17
+ "value": {
18
+ "color": "var(--seed-color-fg-neutral)"
19
+ },
20
+ "placeholder": {
21
+ "color": "var(--seed-color-fg-placeholder)"
22
+ },
23
+ "prefixText": {
24
+ "color": "var(--seed-color-fg-neutral)"
25
+ },
26
+ "prefixIcon": {
27
+ "color": "var(--seed-color-fg-neutral)"
28
+ },
29
+ "suffixText": {
30
+ "color": "var(--seed-color-fg-neutral)"
31
+ },
32
+ "suffixIcon": {
33
+ "color": "var(--seed-color-fg-neutral)"
34
+ },
35
+ "description": {
36
+ "color": "var(--seed-color-fg-neutral-subtle)",
37
+ "fontWeight": "var(--seed-font-weight-regular)"
38
+ },
39
+ "errorMessage": {
40
+ "color": "var(--seed-color-fg-critical)",
41
+ "fontWeight": "var(--seed-font-weight-regular)"
42
+ },
43
+ "characterCount": {
44
+ "color": "var(--seed-color-fg-neutral)",
45
+ "fontWeight": "var(--seed-font-weight-regular)"
46
+ },
47
+ "maxCharacterCount": {
48
+ "color": "var(--seed-color-fg-neutral-subtle)",
49
+ "fontWeight": "var(--seed-font-weight-regular)"
50
+ }
51
+ },
52
+ "focused": {
53
+ "field": {
54
+ "strokeColor": "var(--seed-color-stroke-field-focused)"
55
+ }
56
+ },
57
+ "invalid": {
58
+ "field": {
59
+ "color": "var(--seed-color-bg-critical-weak)",
60
+ "strokeColor": "var(--seed-color-stroke-critical)"
61
+ }
62
+ },
63
+ "invalidFocused": {
64
+ "field": {
65
+ "color": "var(--seed-color-bg-layer-default)",
66
+ "strokeColor": "var(--seed-color-stroke-field)"
67
+ }
68
+ },
69
+ "readonly": {
70
+ "field": {
71
+ "color": "var(--seed-color-bg-disabled)"
72
+ }
73
+ },
74
+ "disabled": {
75
+ "field": {
76
+ "color": "var(--seed-color-bg-disabled)"
77
+ },
78
+ "value": {
79
+ "color": "var(--seed-color-fg-disabled)"
80
+ },
81
+ "placeholder": {
82
+ "color": "var(--seed-color-fg-disabled)"
83
+ },
84
+ "prefixText": {
85
+ "color": "var(--seed-color-fg-disabled)"
86
+ },
87
+ "prefixIcon": {
88
+ "color": "var(--seed-color-fg-disabled)"
89
+ },
90
+ "suffixText": {
91
+ "color": "var(--seed-color-fg-disabled)"
92
+ },
93
+ "suffixIcon": {
94
+ "color": "var(--seed-color-fg-disabled)"
95
+ }
96
+ }
97
+ },
98
+ "sizeXlarge": {
99
+ "enabled": {
100
+ "header": {
101
+ "paddingBottom": "var(--seed-dimension-x3)",
102
+ "gap": "var(--seed-dimension-x1_5)"
103
+ },
104
+ "label": {
105
+ "fontSize": "var(--seed-font-size-t5)",
106
+ "lineHeight": "var(--seed-line-height-t5)"
107
+ },
108
+ "indicator": {
109
+ "fontSize": "var(--seed-font-size-t5)",
110
+ "lineHeight": "var(--seed-line-height-t5)"
111
+ },
112
+ "field": {
113
+ "minHeight": "56px",
114
+ "cornerRadius": "var(--seed-radius-r2_5)",
115
+ "gap": "var(--seed-dimension-x2)",
116
+ "paddingX": "var(--seed-dimension-x4)",
117
+ "paddingY": "var(--seed-dimension-x3)"
118
+ },
119
+ "value": {
120
+ "fontSize": "var(--seed-font-size-t6)",
121
+ "lineHeight": "var(--seed-line-height-t6)"
122
+ },
123
+ "prefixText": {
124
+ "fontSize": "var(--seed-font-size-t6)",
125
+ "lineHeight": "var(--seed-line-height-t6)"
126
+ },
127
+ "prefixIcon": {
128
+ "size": "var(--seed-dimension-x5)"
129
+ },
130
+ "suffixText": {
131
+ "fontSize": "var(--seed-font-size-t6)",
132
+ "lineHeight": "var(--seed-line-height-t6)"
133
+ },
134
+ "suffixIcon": {
135
+ "size": "var(--seed-dimension-x5)"
136
+ },
137
+ "footer": {
138
+ "gap": "var(--seed-dimension-x3_5)",
139
+ "paddingTop": "var(--seed-dimension-x2)",
140
+ "minHeight": "20px"
141
+ },
142
+ "description": {
143
+ "fontSize": "var(--seed-font-size-t4)",
144
+ "lineHeight": "var(--seed-line-height-t4)"
145
+ },
146
+ "errorMessage": {
147
+ "fontSize": "var(--seed-font-size-t4)",
148
+ "lineHeight": "var(--seed-line-height-t4)"
149
+ },
150
+ "errorIcon": {
151
+ "size": "var(--seed-dimension-x4)",
152
+ "marginRight": "var(--seed-dimension-x1)"
153
+ },
154
+ "characterCount": {
155
+ "fontSize": "var(--seed-font-size-t2)",
156
+ "lineHeight": "var(--seed-line-height-t2)"
157
+ },
158
+ "maxCharacterCount": {
159
+ "fontSize": "var(--seed-font-size-t2)",
160
+ "lineHeight": "var(--seed-line-height-t2)"
161
+ }
162
+ }
163
+ },
164
+ "sizeLarge": {
165
+ "enabled": {
166
+ "header": {
167
+ "paddingBottom": "var(--seed-dimension-x3)",
168
+ "gap": "var(--seed-dimension-x1_5)"
169
+ },
170
+ "label": {
171
+ "fontSize": "var(--seed-font-size-t5)",
172
+ "lineHeight": "var(--seed-line-height-t5)"
173
+ },
174
+ "indicator": {
175
+ "fontSize": "var(--seed-font-size-t5)",
176
+ "lineHeight": "var(--seed-line-height-t5)"
177
+ },
178
+ "field": {
179
+ "minHeight": "52px",
180
+ "cornerRadius": "var(--seed-radius-r2_5)",
181
+ "gap": "var(--seed-dimension-x2)",
182
+ "paddingX": "var(--seed-dimension-x4)",
183
+ "paddingY": "var(--seed-dimension-x3)"
184
+ },
185
+ "value": {
186
+ "fontSize": "var(--seed-font-size-t5)",
187
+ "lineHeight": "var(--seed-line-height-t5)"
188
+ },
189
+ "prefixText": {
190
+ "fontSize": "var(--seed-font-size-t5)",
191
+ "lineHeight": "var(--seed-line-height-t5)"
192
+ },
193
+ "prefixIcon": {
194
+ "size": "var(--seed-dimension-x5)"
195
+ },
196
+ "suffixText": {
197
+ "fontSize": "var(--seed-font-size-t5)",
198
+ "lineHeight": "var(--seed-line-height-t5)"
199
+ },
200
+ "suffixIcon": {
201
+ "size": "var(--seed-dimension-x5)"
202
+ },
203
+ "footer": {
204
+ "gap": "var(--seed-dimension-x3_5)",
205
+ "paddingTop": "var(--seed-dimension-x2)",
206
+ "minHeight": "20px"
207
+ },
208
+ "description": {
209
+ "fontSize": "var(--seed-font-size-t4)",
210
+ "lineHeight": "var(--seed-line-height-t4)"
211
+ },
212
+ "errorMessage": {
213
+ "fontSize": "var(--seed-font-size-t4)",
214
+ "lineHeight": "var(--seed-line-height-t4)"
215
+ },
216
+ "errorIcon": {
217
+ "size": "var(--seed-dimension-x4)",
218
+ "marginRight": "var(--seed-dimension-x1)"
219
+ },
220
+ "characterCount": {
221
+ "fontSize": "var(--seed-font-size-t2)",
222
+ "lineHeight": "var(--seed-line-height-t2)"
223
+ },
224
+ "maxCharacterCount": {
225
+ "fontSize": "var(--seed-font-size-t2)",
226
+ "lineHeight": "var(--seed-line-height-t2)"
227
+ }
228
+ }
229
+ },
230
+ "sizeMedium": {
231
+ "enabled": {
232
+ "header": {
233
+ "paddingBottom": "var(--seed-dimension-x3)"
234
+ },
235
+ "label": {
236
+ "fontSize": "var(--seed-font-size-t4)",
237
+ "lineHeight": "var(--seed-line-height-t4)"
238
+ },
239
+ "indicator": {
240
+ "fontSize": "var(--seed-font-size-t4)",
241
+ "lineHeight": "var(--seed-line-height-t4)"
242
+ },
243
+ "field": {
244
+ "minHeight": "40px",
245
+ "cornerRadius": "var(--seed-radius-r2)",
246
+ "gap": "var(--seed-dimension-x1_5)",
247
+ "paddingX": "var(--seed-dimension-x3_5)",
248
+ "paddingY": "var(--seed-dimension-x2_5)"
249
+ },
250
+ "value": {
251
+ "fontSize": "var(--seed-font-size-t4)",
252
+ "lineHeight": "var(--seed-line-height-t4)"
253
+ },
254
+ "prefixText": {
255
+ "fontSize": "var(--seed-font-size-t4)",
256
+ "lineHeight": "var(--seed-line-height-t4)"
257
+ },
258
+ "prefixIcon": {
259
+ "size": "var(--seed-dimension-x4)"
260
+ },
261
+ "suffixText": {
262
+ "fontSize": "var(--seed-font-size-t4)",
263
+ "lineHeight": "var(--seed-line-height-t4)"
264
+ },
265
+ "suffixIcon": {
266
+ "size": "var(--seed-dimension-x4)"
267
+ },
268
+ "footer": {
269
+ "gap": "var(--seed-dimension-x3_5)",
270
+ "paddingTop": "var(--seed-dimension-x2)",
271
+ "minHeight": "var(--seed-dimension-x4)"
272
+ },
273
+ "description": {
274
+ "fontSize": "var(--seed-font-size-t2)",
275
+ "lineHeight": "var(--seed-line-height-t2)"
276
+ },
277
+ "errorMessage": {
278
+ "fontSize": "var(--seed-font-size-t2)",
279
+ "lineHeight": "var(--seed-line-height-t2)"
280
+ },
281
+ "errorIcon": {
282
+ "size": "var(--seed-dimension-x3_5)",
283
+ "marginRight": "var(--seed-dimension-x1)"
284
+ },
285
+ "characterCount": {
286
+ "fontSize": "var(--seed-font-size-t2)",
287
+ "lineHeight": "var(--seed-line-height-t2)"
288
+ },
289
+ "maxCharacterCount": {
290
+ "fontSize": "var(--seed-font-size-t2)",
291
+ "lineHeight": "var(--seed-line-height-t2)"
292
+ }
293
+ }
294
+ }
295
+ }
@@ -0,0 +1,295 @@
1
+ export const vars = {
2
+ "base": {
3
+ "enabled": {
4
+ "label": {
5
+ "color": "var(--seed-color-fg-neutral)",
6
+ "fontWeight": "var(--seed-font-weight-bold)"
7
+ },
8
+ "indicator": {
9
+ "color": "var(--seed-color-fg-neutral)",
10
+ "fontWeight": "var(--seed-font-weight-regular)"
11
+ },
12
+ "field": {
13
+ "color": "var(--seed-color-bg-layer-default)",
14
+ "strokeWidth": "1px",
15
+ "strokeColor": "var(--seed-color-stroke-field)"
16
+ },
17
+ "value": {
18
+ "color": "var(--seed-color-fg-neutral)"
19
+ },
20
+ "placeholder": {
21
+ "color": "var(--seed-color-fg-placeholder)"
22
+ },
23
+ "prefixText": {
24
+ "color": "var(--seed-color-fg-neutral)"
25
+ },
26
+ "prefixIcon": {
27
+ "color": "var(--seed-color-fg-neutral)"
28
+ },
29
+ "suffixText": {
30
+ "color": "var(--seed-color-fg-neutral)"
31
+ },
32
+ "suffixIcon": {
33
+ "color": "var(--seed-color-fg-neutral)"
34
+ },
35
+ "description": {
36
+ "color": "var(--seed-color-fg-neutral-subtle)",
37
+ "fontWeight": "var(--seed-font-weight-regular)"
38
+ },
39
+ "errorMessage": {
40
+ "color": "var(--seed-color-fg-critical)",
41
+ "fontWeight": "var(--seed-font-weight-regular)"
42
+ },
43
+ "characterCount": {
44
+ "color": "var(--seed-color-fg-neutral)",
45
+ "fontWeight": "var(--seed-font-weight-regular)"
46
+ },
47
+ "maxCharacterCount": {
48
+ "color": "var(--seed-color-fg-neutral-subtle)",
49
+ "fontWeight": "var(--seed-font-weight-regular)"
50
+ }
51
+ },
52
+ "focused": {
53
+ "field": {
54
+ "strokeColor": "var(--seed-color-stroke-field-focused)"
55
+ }
56
+ },
57
+ "invalid": {
58
+ "field": {
59
+ "color": "var(--seed-color-bg-critical-weak)",
60
+ "strokeColor": "var(--seed-color-stroke-critical)"
61
+ }
62
+ },
63
+ "invalidFocused": {
64
+ "field": {
65
+ "color": "var(--seed-color-bg-layer-default)",
66
+ "strokeColor": "var(--seed-color-stroke-field)"
67
+ }
68
+ },
69
+ "readonly": {
70
+ "field": {
71
+ "color": "var(--seed-color-bg-disabled)"
72
+ }
73
+ },
74
+ "disabled": {
75
+ "field": {
76
+ "color": "var(--seed-color-bg-disabled)"
77
+ },
78
+ "value": {
79
+ "color": "var(--seed-color-fg-disabled)"
80
+ },
81
+ "placeholder": {
82
+ "color": "var(--seed-color-fg-disabled)"
83
+ },
84
+ "prefixText": {
85
+ "color": "var(--seed-color-fg-disabled)"
86
+ },
87
+ "prefixIcon": {
88
+ "color": "var(--seed-color-fg-disabled)"
89
+ },
90
+ "suffixText": {
91
+ "color": "var(--seed-color-fg-disabled)"
92
+ },
93
+ "suffixIcon": {
94
+ "color": "var(--seed-color-fg-disabled)"
95
+ }
96
+ }
97
+ },
98
+ "sizeXlarge": {
99
+ "enabled": {
100
+ "header": {
101
+ "paddingBottom": "var(--seed-dimension-x3)",
102
+ "gap": "var(--seed-dimension-x1_5)"
103
+ },
104
+ "label": {
105
+ "fontSize": "var(--seed-font-size-t5)",
106
+ "lineHeight": "var(--seed-line-height-t5)"
107
+ },
108
+ "indicator": {
109
+ "fontSize": "var(--seed-font-size-t5)",
110
+ "lineHeight": "var(--seed-line-height-t5)"
111
+ },
112
+ "field": {
113
+ "minHeight": "56px",
114
+ "cornerRadius": "var(--seed-radius-r2_5)",
115
+ "gap": "var(--seed-dimension-x2)",
116
+ "paddingX": "var(--seed-dimension-x4)",
117
+ "paddingY": "var(--seed-dimension-x3)"
118
+ },
119
+ "value": {
120
+ "fontSize": "var(--seed-font-size-t6)",
121
+ "lineHeight": "var(--seed-line-height-t6)"
122
+ },
123
+ "prefixText": {
124
+ "fontSize": "var(--seed-font-size-t6)",
125
+ "lineHeight": "var(--seed-line-height-t6)"
126
+ },
127
+ "prefixIcon": {
128
+ "size": "var(--seed-dimension-x5)"
129
+ },
130
+ "suffixText": {
131
+ "fontSize": "var(--seed-font-size-t6)",
132
+ "lineHeight": "var(--seed-line-height-t6)"
133
+ },
134
+ "suffixIcon": {
135
+ "size": "var(--seed-dimension-x5)"
136
+ },
137
+ "footer": {
138
+ "gap": "var(--seed-dimension-x3_5)",
139
+ "paddingTop": "var(--seed-dimension-x2)",
140
+ "minHeight": "20px"
141
+ },
142
+ "description": {
143
+ "fontSize": "var(--seed-font-size-t4)",
144
+ "lineHeight": "var(--seed-line-height-t4)"
145
+ },
146
+ "errorMessage": {
147
+ "fontSize": "var(--seed-font-size-t4)",
148
+ "lineHeight": "var(--seed-line-height-t4)"
149
+ },
150
+ "errorIcon": {
151
+ "size": "var(--seed-dimension-x4)",
152
+ "marginRight": "var(--seed-dimension-x1)"
153
+ },
154
+ "characterCount": {
155
+ "fontSize": "var(--seed-font-size-t2)",
156
+ "lineHeight": "var(--seed-line-height-t2)"
157
+ },
158
+ "maxCharacterCount": {
159
+ "fontSize": "var(--seed-font-size-t2)",
160
+ "lineHeight": "var(--seed-line-height-t2)"
161
+ }
162
+ }
163
+ },
164
+ "sizeLarge": {
165
+ "enabled": {
166
+ "header": {
167
+ "paddingBottom": "var(--seed-dimension-x3)",
168
+ "gap": "var(--seed-dimension-x1_5)"
169
+ },
170
+ "label": {
171
+ "fontSize": "var(--seed-font-size-t5)",
172
+ "lineHeight": "var(--seed-line-height-t5)"
173
+ },
174
+ "indicator": {
175
+ "fontSize": "var(--seed-font-size-t5)",
176
+ "lineHeight": "var(--seed-line-height-t5)"
177
+ },
178
+ "field": {
179
+ "minHeight": "52px",
180
+ "cornerRadius": "var(--seed-radius-r2_5)",
181
+ "gap": "var(--seed-dimension-x2)",
182
+ "paddingX": "var(--seed-dimension-x4)",
183
+ "paddingY": "var(--seed-dimension-x3)"
184
+ },
185
+ "value": {
186
+ "fontSize": "var(--seed-font-size-t5)",
187
+ "lineHeight": "var(--seed-line-height-t5)"
188
+ },
189
+ "prefixText": {
190
+ "fontSize": "var(--seed-font-size-t5)",
191
+ "lineHeight": "var(--seed-line-height-t5)"
192
+ },
193
+ "prefixIcon": {
194
+ "size": "var(--seed-dimension-x5)"
195
+ },
196
+ "suffixText": {
197
+ "fontSize": "var(--seed-font-size-t5)",
198
+ "lineHeight": "var(--seed-line-height-t5)"
199
+ },
200
+ "suffixIcon": {
201
+ "size": "var(--seed-dimension-x5)"
202
+ },
203
+ "footer": {
204
+ "gap": "var(--seed-dimension-x3_5)",
205
+ "paddingTop": "var(--seed-dimension-x2)",
206
+ "minHeight": "20px"
207
+ },
208
+ "description": {
209
+ "fontSize": "var(--seed-font-size-t4)",
210
+ "lineHeight": "var(--seed-line-height-t4)"
211
+ },
212
+ "errorMessage": {
213
+ "fontSize": "var(--seed-font-size-t4)",
214
+ "lineHeight": "var(--seed-line-height-t4)"
215
+ },
216
+ "errorIcon": {
217
+ "size": "var(--seed-dimension-x4)",
218
+ "marginRight": "var(--seed-dimension-x1)"
219
+ },
220
+ "characterCount": {
221
+ "fontSize": "var(--seed-font-size-t2)",
222
+ "lineHeight": "var(--seed-line-height-t2)"
223
+ },
224
+ "maxCharacterCount": {
225
+ "fontSize": "var(--seed-font-size-t2)",
226
+ "lineHeight": "var(--seed-line-height-t2)"
227
+ }
228
+ }
229
+ },
230
+ "sizeMedium": {
231
+ "enabled": {
232
+ "header": {
233
+ "paddingBottom": "var(--seed-dimension-x3)"
234
+ },
235
+ "label": {
236
+ "fontSize": "var(--seed-font-size-t4)",
237
+ "lineHeight": "var(--seed-line-height-t4)"
238
+ },
239
+ "indicator": {
240
+ "fontSize": "var(--seed-font-size-t4)",
241
+ "lineHeight": "var(--seed-line-height-t4)"
242
+ },
243
+ "field": {
244
+ "minHeight": "40px",
245
+ "cornerRadius": "var(--seed-radius-r2)",
246
+ "gap": "var(--seed-dimension-x1_5)",
247
+ "paddingX": "var(--seed-dimension-x3_5)",
248
+ "paddingY": "var(--seed-dimension-x2_5)"
249
+ },
250
+ "value": {
251
+ "fontSize": "var(--seed-font-size-t4)",
252
+ "lineHeight": "var(--seed-line-height-t4)"
253
+ },
254
+ "prefixText": {
255
+ "fontSize": "var(--seed-font-size-t4)",
256
+ "lineHeight": "var(--seed-line-height-t4)"
257
+ },
258
+ "prefixIcon": {
259
+ "size": "var(--seed-dimension-x4)"
260
+ },
261
+ "suffixText": {
262
+ "fontSize": "var(--seed-font-size-t4)",
263
+ "lineHeight": "var(--seed-line-height-t4)"
264
+ },
265
+ "suffixIcon": {
266
+ "size": "var(--seed-dimension-x4)"
267
+ },
268
+ "footer": {
269
+ "gap": "var(--seed-dimension-x3_5)",
270
+ "paddingTop": "var(--seed-dimension-x2)",
271
+ "minHeight": "var(--seed-dimension-x4)"
272
+ },
273
+ "description": {
274
+ "fontSize": "var(--seed-font-size-t2)",
275
+ "lineHeight": "var(--seed-line-height-t2)"
276
+ },
277
+ "errorMessage": {
278
+ "fontSize": "var(--seed-font-size-t2)",
279
+ "lineHeight": "var(--seed-line-height-t2)"
280
+ },
281
+ "errorIcon": {
282
+ "size": "var(--seed-dimension-x3_5)",
283
+ "marginRight": "var(--seed-dimension-x1)"
284
+ },
285
+ "characterCount": {
286
+ "fontSize": "var(--seed-font-size-t2)",
287
+ "lineHeight": "var(--seed-line-height-t2)"
288
+ },
289
+ "maxCharacterCount": {
290
+ "fontSize": "var(--seed-font-size-t2)",
291
+ "lineHeight": "var(--seed-line-height-t2)"
292
+ }
293
+ }
294
+ }
295
+ }