@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,205 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "colorDuration": "var(--seed-duration-d4)",
6
+ "colorTimingFunction": "var(--seed-timing-function-easing)"
7
+ },
8
+ "label": {
9
+ "fontWeight": "var(--seed-font-weight-bold)"
10
+ }
11
+ }
12
+ },
13
+ "variantBrandSolid": {
14
+ "enabled": {
15
+ "root": {
16
+ "color": "var(--seed-color-bg-brand-solid)"
17
+ },
18
+ "label": {
19
+ "color": "var(--seed-color-palette-static-white)"
20
+ },
21
+ "prefixIcon": {
22
+ "color": "var(--seed-color-palette-static-white)"
23
+ },
24
+ "suffixIcon": {
25
+ "color": "var(--seed-color-palette-static-white)"
26
+ },
27
+ "progressCircle": {
28
+ "trackColor": "var(--seed-color-palette-static-white-alpha-200)",
29
+ "rangeColor": "var(--seed-color-palette-static-white)"
30
+ }
31
+ },
32
+ "pressed": {
33
+ "root": {
34
+ "color": "var(--seed-color-bg-brand-solid-pressed)"
35
+ }
36
+ },
37
+ "selected": {
38
+ "root": {
39
+ "color": "var(--seed-color-bg-neutral-weak)"
40
+ },
41
+ "label": {
42
+ "color": "var(--seed-color-fg-neutral)"
43
+ },
44
+ "prefixIcon": {
45
+ "color": "var(--seed-color-fg-neutral)"
46
+ },
47
+ "suffixIcon": {
48
+ "color": "var(--seed-color-fg-neutral)"
49
+ },
50
+ "progressCircle": {
51
+ "trackColor": "var(--seed-color-palette-gray-500)",
52
+ "rangeColor": "var(--seed-color-fg-neutral)"
53
+ }
54
+ },
55
+ "selectedPressed": {
56
+ "root": {
57
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
58
+ }
59
+ },
60
+ "disabled": {
61
+ "root": {
62
+ "color": "var(--seed-color-bg-disabled)"
63
+ },
64
+ "label": {
65
+ "color": "var(--seed-color-fg-disabled)"
66
+ },
67
+ "prefixIcon": {
68
+ "color": "var(--seed-color-fg-disabled)"
69
+ },
70
+ "suffixIcon": {
71
+ "color": "var(--seed-color-fg-disabled)"
72
+ }
73
+ },
74
+ "loading": {
75
+ "root": {
76
+ "color": "var(--seed-color-bg-brand-solid-pressed)"
77
+ }
78
+ },
79
+ "selectedLoading": {
80
+ "root": {
81
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
82
+ }
83
+ }
84
+ },
85
+ "variantNeutralWeak": {
86
+ "enabled": {
87
+ "root": {
88
+ "color": "var(--seed-color-bg-neutral-weak)"
89
+ },
90
+ "label": {
91
+ "color": "var(--seed-color-fg-neutral)"
92
+ },
93
+ "prefixIcon": {
94
+ "color": "var(--seed-color-fg-neutral)"
95
+ },
96
+ "suffixIcon": {
97
+ "color": "var(--seed-color-fg-neutral)"
98
+ },
99
+ "progressCircle": {
100
+ "trackColor": "var(--seed-color-palette-gray-500)",
101
+ "rangeColor": "var(--seed-color-fg-neutral)"
102
+ }
103
+ },
104
+ "pressed": {
105
+ "root": {
106
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
107
+ }
108
+ },
109
+ "selected": {
110
+ "root": {
111
+ "color": "var(--seed-color-bg-neutral-weak)"
112
+ },
113
+ "label": {
114
+ "color": "var(--seed-color-fg-neutral)"
115
+ },
116
+ "prefixIcon": {
117
+ "color": "var(--seed-color-fg-neutral)"
118
+ },
119
+ "suffixIcon": {
120
+ "color": "var(--seed-color-fg-neutral)"
121
+ },
122
+ "progressCircle": {
123
+ "trackColor": "var(--seed-color-palette-gray-500)",
124
+ "rangeColor": "var(--seed-color-fg-neutral)"
125
+ }
126
+ },
127
+ "selectedPressed": {
128
+ "root": {
129
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
130
+ }
131
+ },
132
+ "disabled": {
133
+ "root": {
134
+ "color": "var(--seed-color-bg-disabled)"
135
+ },
136
+ "label": {
137
+ "color": "var(--seed-color-fg-disabled)"
138
+ },
139
+ "prefixIcon": {
140
+ "color": "var(--seed-color-fg-disabled)"
141
+ },
142
+ "suffixIcon": {
143
+ "color": "var(--seed-color-fg-disabled)"
144
+ }
145
+ },
146
+ "loading": {
147
+ "root": {
148
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
149
+ }
150
+ },
151
+ "selectedLoading": {
152
+ "root": {
153
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
154
+ }
155
+ }
156
+ },
157
+ "sizeXsmall": {
158
+ "enabled": {
159
+ "root": {
160
+ "minHeight": "var(--seed-dimension-x8)",
161
+ "cornerRadius": "var(--seed-radius-full)",
162
+ "gap": "var(--seed-dimension-x1)",
163
+ "paddingX": "var(--seed-dimension-x3_5)",
164
+ "paddingY": "var(--seed-dimension-x1_5)"
165
+ },
166
+ "prefixIcon": {
167
+ "size": "var(--seed-dimension-x3_5)"
168
+ },
169
+ "suffixIcon": {
170
+ "size": "var(--seed-dimension-x3_5)"
171
+ },
172
+ "label": {
173
+ "fontSize": "var(--seed-font-size-t4)"
174
+ },
175
+ "progressCircle": {
176
+ "size": "14px",
177
+ "thickness": "2px"
178
+ }
179
+ }
180
+ },
181
+ "sizeSmall": {
182
+ "enabled": {
183
+ "root": {
184
+ "minHeight": "var(--seed-dimension-x9)",
185
+ "cornerRadius": "var(--seed-radius-full)",
186
+ "gap": "var(--seed-dimension-x1)",
187
+ "paddingX": "var(--seed-dimension-x4)",
188
+ "paddingY": "var(--seed-dimension-x2)"
189
+ },
190
+ "prefixIcon": {
191
+ "size": "var(--seed-dimension-x3_5)"
192
+ },
193
+ "suffixIcon": {
194
+ "size": "var(--seed-dimension-x3_5)"
195
+ },
196
+ "label": {
197
+ "fontSize": "var(--seed-font-size-t4)"
198
+ },
199
+ "progressCircle": {
200
+ "size": "14px",
201
+ "thickness": "2px"
202
+ }
203
+ }
204
+ }
205
+ }
@@ -0,0 +1,205 @@
1
+ export const vars = {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "colorDuration": "var(--seed-duration-d4)",
6
+ "colorTimingFunction": "var(--seed-timing-function-easing)"
7
+ },
8
+ "label": {
9
+ "fontWeight": "var(--seed-font-weight-bold)"
10
+ }
11
+ }
12
+ },
13
+ "variantBrandSolid": {
14
+ "enabled": {
15
+ "root": {
16
+ "color": "var(--seed-color-bg-brand-solid)"
17
+ },
18
+ "label": {
19
+ "color": "var(--seed-color-palette-static-white)"
20
+ },
21
+ "prefixIcon": {
22
+ "color": "var(--seed-color-palette-static-white)"
23
+ },
24
+ "suffixIcon": {
25
+ "color": "var(--seed-color-palette-static-white)"
26
+ },
27
+ "progressCircle": {
28
+ "trackColor": "var(--seed-color-palette-static-white-alpha-200)",
29
+ "rangeColor": "var(--seed-color-palette-static-white)"
30
+ }
31
+ },
32
+ "pressed": {
33
+ "root": {
34
+ "color": "var(--seed-color-bg-brand-solid-pressed)"
35
+ }
36
+ },
37
+ "selected": {
38
+ "root": {
39
+ "color": "var(--seed-color-bg-neutral-weak)"
40
+ },
41
+ "label": {
42
+ "color": "var(--seed-color-fg-neutral)"
43
+ },
44
+ "prefixIcon": {
45
+ "color": "var(--seed-color-fg-neutral)"
46
+ },
47
+ "suffixIcon": {
48
+ "color": "var(--seed-color-fg-neutral)"
49
+ },
50
+ "progressCircle": {
51
+ "trackColor": "var(--seed-color-palette-gray-500)",
52
+ "rangeColor": "var(--seed-color-fg-neutral)"
53
+ }
54
+ },
55
+ "selectedPressed": {
56
+ "root": {
57
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
58
+ }
59
+ },
60
+ "disabled": {
61
+ "root": {
62
+ "color": "var(--seed-color-bg-disabled)"
63
+ },
64
+ "label": {
65
+ "color": "var(--seed-color-fg-disabled)"
66
+ },
67
+ "prefixIcon": {
68
+ "color": "var(--seed-color-fg-disabled)"
69
+ },
70
+ "suffixIcon": {
71
+ "color": "var(--seed-color-fg-disabled)"
72
+ }
73
+ },
74
+ "loading": {
75
+ "root": {
76
+ "color": "var(--seed-color-bg-brand-solid-pressed)"
77
+ }
78
+ },
79
+ "selectedLoading": {
80
+ "root": {
81
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
82
+ }
83
+ }
84
+ },
85
+ "variantNeutralWeak": {
86
+ "enabled": {
87
+ "root": {
88
+ "color": "var(--seed-color-bg-neutral-weak)"
89
+ },
90
+ "label": {
91
+ "color": "var(--seed-color-fg-neutral)"
92
+ },
93
+ "prefixIcon": {
94
+ "color": "var(--seed-color-fg-neutral)"
95
+ },
96
+ "suffixIcon": {
97
+ "color": "var(--seed-color-fg-neutral)"
98
+ },
99
+ "progressCircle": {
100
+ "trackColor": "var(--seed-color-palette-gray-500)",
101
+ "rangeColor": "var(--seed-color-fg-neutral)"
102
+ }
103
+ },
104
+ "pressed": {
105
+ "root": {
106
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
107
+ }
108
+ },
109
+ "selected": {
110
+ "root": {
111
+ "color": "var(--seed-color-bg-neutral-weak)"
112
+ },
113
+ "label": {
114
+ "color": "var(--seed-color-fg-neutral)"
115
+ },
116
+ "prefixIcon": {
117
+ "color": "var(--seed-color-fg-neutral)"
118
+ },
119
+ "suffixIcon": {
120
+ "color": "var(--seed-color-fg-neutral)"
121
+ },
122
+ "progressCircle": {
123
+ "trackColor": "var(--seed-color-palette-gray-500)",
124
+ "rangeColor": "var(--seed-color-fg-neutral)"
125
+ }
126
+ },
127
+ "selectedPressed": {
128
+ "root": {
129
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
130
+ }
131
+ },
132
+ "disabled": {
133
+ "root": {
134
+ "color": "var(--seed-color-bg-disabled)"
135
+ },
136
+ "label": {
137
+ "color": "var(--seed-color-fg-disabled)"
138
+ },
139
+ "prefixIcon": {
140
+ "color": "var(--seed-color-fg-disabled)"
141
+ },
142
+ "suffixIcon": {
143
+ "color": "var(--seed-color-fg-disabled)"
144
+ }
145
+ },
146
+ "loading": {
147
+ "root": {
148
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
149
+ }
150
+ },
151
+ "selectedLoading": {
152
+ "root": {
153
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
154
+ }
155
+ }
156
+ },
157
+ "sizeXsmall": {
158
+ "enabled": {
159
+ "root": {
160
+ "minHeight": "var(--seed-dimension-x8)",
161
+ "cornerRadius": "var(--seed-radius-full)",
162
+ "gap": "var(--seed-dimension-x1)",
163
+ "paddingX": "var(--seed-dimension-x3_5)",
164
+ "paddingY": "var(--seed-dimension-x1_5)"
165
+ },
166
+ "prefixIcon": {
167
+ "size": "var(--seed-dimension-x3_5)"
168
+ },
169
+ "suffixIcon": {
170
+ "size": "var(--seed-dimension-x3_5)"
171
+ },
172
+ "label": {
173
+ "fontSize": "var(--seed-font-size-t4)"
174
+ },
175
+ "progressCircle": {
176
+ "size": "14px",
177
+ "thickness": "2px"
178
+ }
179
+ }
180
+ },
181
+ "sizeSmall": {
182
+ "enabled": {
183
+ "root": {
184
+ "minHeight": "var(--seed-dimension-x9)",
185
+ "cornerRadius": "var(--seed-radius-full)",
186
+ "gap": "var(--seed-dimension-x1)",
187
+ "paddingX": "var(--seed-dimension-x4)",
188
+ "paddingY": "var(--seed-dimension-x2)"
189
+ },
190
+ "prefixIcon": {
191
+ "size": "var(--seed-dimension-x3_5)"
192
+ },
193
+ "suffixIcon": {
194
+ "size": "var(--seed-dimension-x3_5)"
195
+ },
196
+ "label": {
197
+ "fontSize": "var(--seed-font-size-t4)"
198
+ },
199
+ "progressCircle": {
200
+ "size": "14px",
201
+ "thickness": "2px"
202
+ }
203
+ }
204
+ }
205
+ }
@@ -0,0 +1,86 @@
1
+ export declare const vars: {
2
+ "themeCupertino": {
3
+ "enabled": {
4
+ "root": {
5
+ "minHeight": "44px",
6
+ "paddingX": "var(--seed-dimension-x4)"
7
+ },
8
+ "icon": {
9
+ "size": "24px",
10
+ "targetSize": "40px"
11
+ }
12
+ }
13
+ },
14
+ "themeAndroid": {
15
+ "enabled": {
16
+ "root": {
17
+ "minHeight": "56px",
18
+ "paddingX": "var(--seed-dimension-x4)"
19
+ },
20
+ "icon": {
21
+ "size": "24px",
22
+ "targetSize": "40px"
23
+ }
24
+ }
25
+ },
26
+ "toneLayer": {
27
+ "enabled": {
28
+ "root": {
29
+ "color": "var(--seed-color-bg-layer-default)"
30
+ },
31
+ "title": {
32
+ "color": "var(--seed-color-fg-neutral)"
33
+ },
34
+ "subtitle": {
35
+ "color": "var(--seed-color-fg-neutral-muted)"
36
+ },
37
+ "icon": {
38
+ "color": "var(--seed-color-fg-neutral)"
39
+ }
40
+ }
41
+ },
42
+ "toneTransparent": {
43
+ "enabled": {
44
+ "root": {
45
+ "color": "#00000000"
46
+ },
47
+ "title": {
48
+ "color": "var(--seed-color-palette-static-white)"
49
+ },
50
+ "subtitle": {
51
+ "color": "var(--seed-color-palette-static-white)"
52
+ },
53
+ "icon": {
54
+ "color": "var(--seed-color-palette-static-white)"
55
+ }
56
+ }
57
+ },
58
+ "dividerTrue": {
59
+ "enabled": {
60
+ "root": {
61
+ "strokeColor": "var(--seed-color-stroke-neutral-muted)",
62
+ "strokeWidth": "1px"
63
+ }
64
+ }
65
+ },
66
+ "titleLayoutTitleOnly": {
67
+ "enabled": {
68
+ "title": {
69
+ "fontSize": "var(--seed-font-size-t6-static)",
70
+ "fontWeight": "var(--seed-font-weight-bold)"
71
+ }
72
+ }
73
+ },
74
+ "titleLayoutWithSubtitle": {
75
+ "enabled": {
76
+ "title": {
77
+ "fontSize": "var(--seed-font-size-t5-static)",
78
+ "fontWeight": "var(--seed-font-weight-bold)"
79
+ },
80
+ "subtitle": {
81
+ "fontSize": "var(--seed-font-size-t2-static)",
82
+ "fontWeight": "var(--seed-font-weight-regular)"
83
+ }
84
+ }
85
+ }
86
+ }
@@ -0,0 +1,86 @@
1
+ export const vars = {
2
+ "themeCupertino": {
3
+ "enabled": {
4
+ "root": {
5
+ "minHeight": "44px",
6
+ "paddingX": "var(--seed-dimension-x4)"
7
+ },
8
+ "icon": {
9
+ "size": "24px",
10
+ "targetSize": "40px"
11
+ }
12
+ }
13
+ },
14
+ "themeAndroid": {
15
+ "enabled": {
16
+ "root": {
17
+ "minHeight": "56px",
18
+ "paddingX": "var(--seed-dimension-x4)"
19
+ },
20
+ "icon": {
21
+ "size": "24px",
22
+ "targetSize": "40px"
23
+ }
24
+ }
25
+ },
26
+ "toneLayer": {
27
+ "enabled": {
28
+ "root": {
29
+ "color": "var(--seed-color-bg-layer-default)"
30
+ },
31
+ "title": {
32
+ "color": "var(--seed-color-fg-neutral)"
33
+ },
34
+ "subtitle": {
35
+ "color": "var(--seed-color-fg-neutral-muted)"
36
+ },
37
+ "icon": {
38
+ "color": "var(--seed-color-fg-neutral)"
39
+ }
40
+ }
41
+ },
42
+ "toneTransparent": {
43
+ "enabled": {
44
+ "root": {
45
+ "color": "#00000000"
46
+ },
47
+ "title": {
48
+ "color": "var(--seed-color-palette-static-white)"
49
+ },
50
+ "subtitle": {
51
+ "color": "var(--seed-color-palette-static-white)"
52
+ },
53
+ "icon": {
54
+ "color": "var(--seed-color-palette-static-white)"
55
+ }
56
+ }
57
+ },
58
+ "dividerTrue": {
59
+ "enabled": {
60
+ "root": {
61
+ "strokeColor": "var(--seed-color-stroke-neutral-muted)",
62
+ "strokeWidth": "1px"
63
+ }
64
+ }
65
+ },
66
+ "titleLayoutTitleOnly": {
67
+ "enabled": {
68
+ "title": {
69
+ "fontSize": "var(--seed-font-size-t6-static)",
70
+ "fontWeight": "var(--seed-font-weight-bold)"
71
+ }
72
+ }
73
+ },
74
+ "titleLayoutWithSubtitle": {
75
+ "enabled": {
76
+ "title": {
77
+ "fontSize": "var(--seed-font-size-t5-static)",
78
+ "fontWeight": "var(--seed-font-weight-bold)"
79
+ },
80
+ "subtitle": {
81
+ "fontSize": "var(--seed-font-size-t2-static)",
82
+ "fontWeight": "var(--seed-font-weight-regular)"
83
+ }
84
+ }
85
+ }
86
+ }