@seed-design/css 0.2.1 → 0.2.4
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.
- package/all.css +381 -212
- package/all.min.css +1 -1
- package/base.css +2 -2
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/badge.css +1 -1
- package/recipes/checkbox.css +7 -114
- package/recipes/checkbox.d.ts +3 -7
- package/recipes/checkbox.mjs +4 -34
- package/recipes/checkmark.css +108 -0
- package/recipes/checkmark.d.ts +32 -0
- package/recipes/checkmark.mjs +86 -0
- package/recipes/chip-tabs.css +42 -10
- package/recipes/chip-tabs.d.ts +5 -1
- package/recipes/chip-tabs.mjs +6 -0
- package/recipes/list-item.css +102 -0
- package/recipes/list-item.d.ts +24 -0
- package/recipes/list-item.mjs +59 -0
- package/recipes/page-banner.css +5 -5
- package/recipes/radio.css +29 -50
- package/recipes/radio.d.ts +5 -1
- package/recipes/radio.mjs +8 -3
- package/recipes/radiomark.css +80 -0
- package/recipes/radiomark.d.ts +28 -0
- package/recipes/radiomark.mjs +48 -0
- package/recipes/select-box.css +0 -68
- package/recipes/select-box.d.ts +1 -1
- package/recipes/select-box.mjs +0 -16
- package/recipes/switch.css +15 -7
- package/recipes/switch.d.ts +4 -0
- package/recipes/switch.mjs +5 -0
- package/recipes/text-field.css +8 -9
- package/vars/component/badge.d.ts +1 -1
- package/vars/component/badge.mjs +1 -1
- package/vars/component/checkbox.d.ts +7 -125
- package/vars/component/checkbox.mjs +7 -125
- package/vars/component/checkmark.d.ts +155 -0
- package/vars/component/checkmark.mjs +155 -0
- package/vars/component/chip-tab.d.ts +70 -10
- package/vars/component/chip-tab.mjs +70 -10
- package/vars/component/chip-tablist.d.ts +10 -2
- package/vars/component/chip-tablist.mjs +10 -2
- package/vars/component/index.d.ts +3 -0
- package/vars/component/index.mjs +3 -0
- package/vars/component/list-item.d.ts +72 -0
- package/vars/component/list-item.mjs +72 -0
- package/vars/component/page-banner.d.ts +5 -5
- package/vars/component/page-banner.mjs +5 -5
- package/vars/component/radio.d.ts +28 -52
- package/vars/component/radio.mjs +28 -52
- package/vars/component/radiomark.d.ts +98 -0
- package/vars/component/radiomark.mjs +98 -0
- package/vars/component/select-box.d.ts +0 -47
- package/vars/component/select-box.mjs +0 -47
- package/vars/component/switch.d.ts +28 -10
- package/vars/component/switch.mjs +28 -10
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
export declare const vars: {
|
|
2
|
+
"variantSquare": {
|
|
3
|
+
"enabled": {
|
|
4
|
+
"root": {
|
|
5
|
+
"strokeWidth": "1px",
|
|
6
|
+
"strokeColor": "var(--seed-color-stroke-neutral-weak)"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
"pressed": {
|
|
10
|
+
"root": {
|
|
11
|
+
"color": "var(--seed-color-bg-layer-default-pressed)"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"enabledSelected": {
|
|
15
|
+
"root": {
|
|
16
|
+
"strokeWidth": "0px",
|
|
17
|
+
"strokeColor": "#00000000"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"disabled": {
|
|
21
|
+
"root": {
|
|
22
|
+
"color": "var(--seed-color-bg-disabled)",
|
|
23
|
+
"strokeColor": "var(--seed-color-stroke-neutral-muted)"
|
|
24
|
+
},
|
|
25
|
+
"icon": {
|
|
26
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"disabledSelected": {
|
|
30
|
+
"icon": {
|
|
31
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"variantSquareToneBrand": {
|
|
36
|
+
"enabledSelected": {
|
|
37
|
+
"root": {
|
|
38
|
+
"color": "var(--seed-color-bg-brand-solid)"
|
|
39
|
+
},
|
|
40
|
+
"icon": {
|
|
41
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"pressedSelected": {
|
|
45
|
+
"root": {
|
|
46
|
+
"color": "var(--seed-color-bg-brand-solid-pressed)"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"variantSquareToneNeutral": {
|
|
51
|
+
"enabledSelected": {
|
|
52
|
+
"root": {
|
|
53
|
+
"color": "var(--seed-color-bg-neutral-inverted)"
|
|
54
|
+
},
|
|
55
|
+
"icon": {
|
|
56
|
+
"color": "var(--seed-color-fg-neutral-inverted)"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"pressedSelected": {
|
|
60
|
+
"root": {
|
|
61
|
+
"color": "var(--seed-color-bg-neutral-inverted-pressed)"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"variantGhost": {
|
|
66
|
+
"enabled": {
|
|
67
|
+
"icon": {
|
|
68
|
+
"color": "var(--seed-color-fg-placeholder)"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"pressed": {
|
|
72
|
+
"root": {
|
|
73
|
+
"color": "var(--seed-color-bg-layer-default-pressed)"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"disabled": {
|
|
77
|
+
"icon": {
|
|
78
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"disabledSelected": {
|
|
82
|
+
"icon": {
|
|
83
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"variantGhostToneBrand": {
|
|
88
|
+
"enabledSelected": {
|
|
89
|
+
"icon": {
|
|
90
|
+
"color": "var(--seed-color-fg-brand)"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"pressedSelected": {
|
|
94
|
+
"root": {
|
|
95
|
+
"color": "var(--seed-color-palette-carrot-200)"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"variantGhostToneNeutral": {
|
|
100
|
+
"enabledSelected": {
|
|
101
|
+
"icon": {
|
|
102
|
+
"color": "var(--seed-color-fg-neutral-muted)"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"pressedSelected": {
|
|
106
|
+
"root": {
|
|
107
|
+
"color": "var(--seed-color-palette-gray-200)"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"sizeMedium": {
|
|
112
|
+
"enabled": {
|
|
113
|
+
"root": {
|
|
114
|
+
"size": "var(--seed-dimension-x5)",
|
|
115
|
+
"cornerRadius": "var(--seed-radius-r1)"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"sizeLarge": {
|
|
120
|
+
"enabled": {
|
|
121
|
+
"root": {
|
|
122
|
+
"size": "var(--seed-dimension-x6)",
|
|
123
|
+
"cornerRadius": "var(--seed-radius-r1)"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"variantSquareSizeMedium": {
|
|
128
|
+
"enabled": {
|
|
129
|
+
"icon": {
|
|
130
|
+
"size": "12px"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"variantSquareSizeLarge": {
|
|
135
|
+
"enabled": {
|
|
136
|
+
"icon": {
|
|
137
|
+
"size": "14px"
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"variantGhostSizeMedium": {
|
|
142
|
+
"enabled": {
|
|
143
|
+
"icon": {
|
|
144
|
+
"size": "14px"
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"variantGhostSizeLarge": {
|
|
149
|
+
"enabled": {
|
|
150
|
+
"icon": {
|
|
151
|
+
"size": "18px"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
export const vars = {
|
|
2
|
+
"variantSquare": {
|
|
3
|
+
"enabled": {
|
|
4
|
+
"root": {
|
|
5
|
+
"strokeWidth": "1px",
|
|
6
|
+
"strokeColor": "var(--seed-color-stroke-neutral-weak)"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
"pressed": {
|
|
10
|
+
"root": {
|
|
11
|
+
"color": "var(--seed-color-bg-layer-default-pressed)"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"enabledSelected": {
|
|
15
|
+
"root": {
|
|
16
|
+
"strokeWidth": "0px",
|
|
17
|
+
"strokeColor": "#00000000"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"disabled": {
|
|
21
|
+
"root": {
|
|
22
|
+
"color": "var(--seed-color-bg-disabled)",
|
|
23
|
+
"strokeColor": "var(--seed-color-stroke-neutral-muted)"
|
|
24
|
+
},
|
|
25
|
+
"icon": {
|
|
26
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"disabledSelected": {
|
|
30
|
+
"icon": {
|
|
31
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"variantSquareToneBrand": {
|
|
36
|
+
"enabledSelected": {
|
|
37
|
+
"root": {
|
|
38
|
+
"color": "var(--seed-color-bg-brand-solid)"
|
|
39
|
+
},
|
|
40
|
+
"icon": {
|
|
41
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"pressedSelected": {
|
|
45
|
+
"root": {
|
|
46
|
+
"color": "var(--seed-color-bg-brand-solid-pressed)"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"variantSquareToneNeutral": {
|
|
51
|
+
"enabledSelected": {
|
|
52
|
+
"root": {
|
|
53
|
+
"color": "var(--seed-color-bg-neutral-inverted)"
|
|
54
|
+
},
|
|
55
|
+
"icon": {
|
|
56
|
+
"color": "var(--seed-color-fg-neutral-inverted)"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"pressedSelected": {
|
|
60
|
+
"root": {
|
|
61
|
+
"color": "var(--seed-color-bg-neutral-inverted-pressed)"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"variantGhost": {
|
|
66
|
+
"enabled": {
|
|
67
|
+
"icon": {
|
|
68
|
+
"color": "var(--seed-color-fg-placeholder)"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"pressed": {
|
|
72
|
+
"root": {
|
|
73
|
+
"color": "var(--seed-color-bg-layer-default-pressed)"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"disabled": {
|
|
77
|
+
"icon": {
|
|
78
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"disabledSelected": {
|
|
82
|
+
"icon": {
|
|
83
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"variantGhostToneBrand": {
|
|
88
|
+
"enabledSelected": {
|
|
89
|
+
"icon": {
|
|
90
|
+
"color": "var(--seed-color-fg-brand)"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"pressedSelected": {
|
|
94
|
+
"root": {
|
|
95
|
+
"color": "var(--seed-color-palette-carrot-200)"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"variantGhostToneNeutral": {
|
|
100
|
+
"enabledSelected": {
|
|
101
|
+
"icon": {
|
|
102
|
+
"color": "var(--seed-color-fg-neutral-muted)"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"pressedSelected": {
|
|
106
|
+
"root": {
|
|
107
|
+
"color": "var(--seed-color-palette-gray-200)"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"sizeMedium": {
|
|
112
|
+
"enabled": {
|
|
113
|
+
"root": {
|
|
114
|
+
"size": "var(--seed-dimension-x5)",
|
|
115
|
+
"cornerRadius": "var(--seed-radius-r1)"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"sizeLarge": {
|
|
120
|
+
"enabled": {
|
|
121
|
+
"root": {
|
|
122
|
+
"size": "var(--seed-dimension-x6)",
|
|
123
|
+
"cornerRadius": "var(--seed-radius-r1)"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"variantSquareSizeMedium": {
|
|
128
|
+
"enabled": {
|
|
129
|
+
"icon": {
|
|
130
|
+
"size": "12px"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"variantSquareSizeLarge": {
|
|
135
|
+
"enabled": {
|
|
136
|
+
"icon": {
|
|
137
|
+
"size": "14px"
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"variantGhostSizeMedium": {
|
|
142
|
+
"enabled": {
|
|
143
|
+
"icon": {
|
|
144
|
+
"size": "14px"
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"variantGhostSizeLarge": {
|
|
149
|
+
"enabled": {
|
|
150
|
+
"icon": {
|
|
151
|
+
"size": "18px"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
@@ -2,22 +2,84 @@ export declare const vars: {
|
|
|
2
2
|
"base": {
|
|
3
3
|
"enabled": {
|
|
4
4
|
"root": {
|
|
5
|
-
"paddingX": "var(--seed-dimension-x3_5)",
|
|
6
5
|
"paddingY": "var(--seed-dimension-x2)",
|
|
7
|
-
"cornerRadius": "var(--seed-radius-full)"
|
|
6
|
+
"cornerRadius": "var(--seed-radius-full)"
|
|
7
|
+
},
|
|
8
|
+
"label": {
|
|
9
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"sizeMedium": {
|
|
14
|
+
"enabled": {
|
|
15
|
+
"root": {
|
|
16
|
+
"paddingX": "var(--seed-dimension-x3_5)",
|
|
8
17
|
"minHeight": "36px"
|
|
9
18
|
},
|
|
10
19
|
"label": {
|
|
11
|
-
"fontSize": "var(--seed-font-size-t4)"
|
|
12
|
-
|
|
20
|
+
"fontSize": "var(--seed-font-size-t4)"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"sizeLarge": {
|
|
25
|
+
"enabled": {
|
|
26
|
+
"root": {
|
|
27
|
+
"paddingX": "var(--seed-dimension-x4)",
|
|
28
|
+
"minHeight": "40px"
|
|
29
|
+
},
|
|
30
|
+
"label": {
|
|
31
|
+
"fontSize": "var(--seed-font-size-t4)"
|
|
13
32
|
}
|
|
14
33
|
}
|
|
15
34
|
},
|
|
16
35
|
"variantNeutralSolid": {
|
|
17
36
|
"enabled": {
|
|
37
|
+
"root": {
|
|
38
|
+
"color": "var(--seed-color-bg-neutral-weak)"
|
|
39
|
+
},
|
|
18
40
|
"label": {
|
|
19
|
-
"color": "var(--seed-color-fg-neutral)"
|
|
20
|
-
|
|
41
|
+
"color": "var(--seed-color-fg-neutral)"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"enabledPressed": {
|
|
45
|
+
"root": {
|
|
46
|
+
"color": "var(--seed-color-bg-layer-default-pressed)"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"selected": {
|
|
50
|
+
"root": {
|
|
51
|
+
"color": "var(--seed-color-bg-neutral-inverted)"
|
|
52
|
+
},
|
|
53
|
+
"label": {
|
|
54
|
+
"color": "var(--seed-color-fg-neutral-inverted)"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"selectedPressed": {
|
|
58
|
+
"root": {
|
|
59
|
+
"color": "var(--seed-color-bg-neutral-inverted-pressed)"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"disabled": {
|
|
63
|
+
"label": {
|
|
64
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"selectedDisabled": {
|
|
68
|
+
"root": {
|
|
69
|
+
"color": "var(--seed-color-bg-disabled)"
|
|
70
|
+
},
|
|
71
|
+
"label": {
|
|
72
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"variantNeutralOutline": {
|
|
77
|
+
"enabled": {
|
|
78
|
+
"root": {
|
|
79
|
+
"stroke": "var(--seed-color-stroke-neutral-muted)"
|
|
80
|
+
},
|
|
81
|
+
"label": {
|
|
82
|
+
"color": "var(--seed-color-fg-neutral)"
|
|
21
83
|
}
|
|
22
84
|
},
|
|
23
85
|
"enabledPressed": {
|
|
@@ -58,8 +120,7 @@ export declare const vars: {
|
|
|
58
120
|
"color": "var(--seed-color-bg-neutral-weak)"
|
|
59
121
|
},
|
|
60
122
|
"label": {
|
|
61
|
-
"color": "var(--seed-color-fg-neutral-muted)"
|
|
62
|
-
"fontWeight": "var(--seed-font-weight-medium)"
|
|
123
|
+
"color": "var(--seed-color-fg-neutral-muted)"
|
|
63
124
|
}
|
|
64
125
|
},
|
|
65
126
|
"enabledPressed": {
|
|
@@ -72,8 +133,7 @@ export declare const vars: {
|
|
|
72
133
|
"color": "var(--seed-color-bg-brand-solid)"
|
|
73
134
|
},
|
|
74
135
|
"label": {
|
|
75
|
-
"color": "var(--seed-color-palette-static-white)"
|
|
76
|
-
"fontWeight": "var(--seed-font-weight-bold)"
|
|
136
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
77
137
|
}
|
|
78
138
|
},
|
|
79
139
|
"selectedPressed": {
|
|
@@ -2,22 +2,84 @@ export const vars = {
|
|
|
2
2
|
"base": {
|
|
3
3
|
"enabled": {
|
|
4
4
|
"root": {
|
|
5
|
-
"paddingX": "var(--seed-dimension-x3_5)",
|
|
6
5
|
"paddingY": "var(--seed-dimension-x2)",
|
|
7
|
-
"cornerRadius": "var(--seed-radius-full)"
|
|
6
|
+
"cornerRadius": "var(--seed-radius-full)"
|
|
7
|
+
},
|
|
8
|
+
"label": {
|
|
9
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"sizeMedium": {
|
|
14
|
+
"enabled": {
|
|
15
|
+
"root": {
|
|
16
|
+
"paddingX": "var(--seed-dimension-x3_5)",
|
|
8
17
|
"minHeight": "36px"
|
|
9
18
|
},
|
|
10
19
|
"label": {
|
|
11
|
-
"fontSize": "var(--seed-font-size-t4)"
|
|
12
|
-
|
|
20
|
+
"fontSize": "var(--seed-font-size-t4)"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"sizeLarge": {
|
|
25
|
+
"enabled": {
|
|
26
|
+
"root": {
|
|
27
|
+
"paddingX": "var(--seed-dimension-x4)",
|
|
28
|
+
"minHeight": "40px"
|
|
29
|
+
},
|
|
30
|
+
"label": {
|
|
31
|
+
"fontSize": "var(--seed-font-size-t4)"
|
|
13
32
|
}
|
|
14
33
|
}
|
|
15
34
|
},
|
|
16
35
|
"variantNeutralSolid": {
|
|
17
36
|
"enabled": {
|
|
37
|
+
"root": {
|
|
38
|
+
"color": "var(--seed-color-bg-neutral-weak)"
|
|
39
|
+
},
|
|
18
40
|
"label": {
|
|
19
|
-
"color": "var(--seed-color-fg-neutral)"
|
|
20
|
-
|
|
41
|
+
"color": "var(--seed-color-fg-neutral)"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"enabledPressed": {
|
|
45
|
+
"root": {
|
|
46
|
+
"color": "var(--seed-color-bg-layer-default-pressed)"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"selected": {
|
|
50
|
+
"root": {
|
|
51
|
+
"color": "var(--seed-color-bg-neutral-inverted)"
|
|
52
|
+
},
|
|
53
|
+
"label": {
|
|
54
|
+
"color": "var(--seed-color-fg-neutral-inverted)"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"selectedPressed": {
|
|
58
|
+
"root": {
|
|
59
|
+
"color": "var(--seed-color-bg-neutral-inverted-pressed)"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"disabled": {
|
|
63
|
+
"label": {
|
|
64
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"selectedDisabled": {
|
|
68
|
+
"root": {
|
|
69
|
+
"color": "var(--seed-color-bg-disabled)"
|
|
70
|
+
},
|
|
71
|
+
"label": {
|
|
72
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"variantNeutralOutline": {
|
|
77
|
+
"enabled": {
|
|
78
|
+
"root": {
|
|
79
|
+
"stroke": "var(--seed-color-stroke-neutral-muted)"
|
|
80
|
+
},
|
|
81
|
+
"label": {
|
|
82
|
+
"color": "var(--seed-color-fg-neutral)"
|
|
21
83
|
}
|
|
22
84
|
},
|
|
23
85
|
"enabledPressed": {
|
|
@@ -58,8 +120,7 @@ export const vars = {
|
|
|
58
120
|
"color": "var(--seed-color-bg-neutral-weak)"
|
|
59
121
|
},
|
|
60
122
|
"label": {
|
|
61
|
-
"color": "var(--seed-color-fg-neutral-muted)"
|
|
62
|
-
"fontWeight": "var(--seed-font-weight-medium)"
|
|
123
|
+
"color": "var(--seed-color-fg-neutral-muted)"
|
|
63
124
|
}
|
|
64
125
|
},
|
|
65
126
|
"enabledPressed": {
|
|
@@ -72,8 +133,7 @@ export const vars = {
|
|
|
72
133
|
"color": "var(--seed-color-bg-brand-solid)"
|
|
73
134
|
},
|
|
74
135
|
"label": {
|
|
75
|
-
"color": "var(--seed-color-palette-static-white)"
|
|
76
|
-
"fontWeight": "var(--seed-font-weight-bold)"
|
|
136
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
77
137
|
}
|
|
78
138
|
},
|
|
79
139
|
"selectedPressed": {
|
|
@@ -2,14 +2,22 @@ export declare const vars: {
|
|
|
2
2
|
"base": {
|
|
3
3
|
"enabled": {
|
|
4
4
|
"root": {
|
|
5
|
-
"paddingX": "var(--seed-dimension-x4)"
|
|
5
|
+
"paddingX": "var(--seed-dimension-x4)",
|
|
6
|
+
"gap": "8px"
|
|
6
7
|
}
|
|
7
8
|
}
|
|
8
9
|
},
|
|
9
10
|
"variantNeutralSolid": {
|
|
10
11
|
"enabled": {
|
|
11
12
|
"root": {
|
|
12
|
-
"gap": "
|
|
13
|
+
"gap": "8px"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"variantNeutralOutline": {
|
|
18
|
+
"enabled": {
|
|
19
|
+
"root": {
|
|
20
|
+
"gap": "8px"
|
|
13
21
|
}
|
|
14
22
|
}
|
|
15
23
|
},
|
|
@@ -2,14 +2,22 @@ export const vars = {
|
|
|
2
2
|
"base": {
|
|
3
3
|
"enabled": {
|
|
4
4
|
"root": {
|
|
5
|
-
"paddingX": "var(--seed-dimension-x4)"
|
|
5
|
+
"paddingX": "var(--seed-dimension-x4)",
|
|
6
|
+
"gap": "8px"
|
|
6
7
|
}
|
|
7
8
|
}
|
|
8
9
|
},
|
|
9
10
|
"variantNeutralSolid": {
|
|
10
11
|
"enabled": {
|
|
11
12
|
"root": {
|
|
12
|
-
"gap": "
|
|
13
|
+
"gap": "8px"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"variantNeutralOutline": {
|
|
18
|
+
"enabled": {
|
|
19
|
+
"root": {
|
|
20
|
+
"gap": "8px"
|
|
13
21
|
}
|
|
14
22
|
}
|
|
15
23
|
},
|
|
@@ -10,6 +10,7 @@ export { vars as bottomSheetCloseButton } from "./bottom-sheet-close-button";
|
|
|
10
10
|
export { vars as bottomSheet } from "./bottom-sheet";
|
|
11
11
|
export { vars as callout } from "./callout";
|
|
12
12
|
export { vars as checkbox } from "./checkbox";
|
|
13
|
+
export { vars as checkmark } from "./checkmark";
|
|
13
14
|
export { vars as chipTab } from "./chip-tab";
|
|
14
15
|
export { vars as chipTablist } from "./chip-tablist";
|
|
15
16
|
export { vars as chip } from "./chip";
|
|
@@ -27,6 +28,7 @@ export { vars as helpBubble } from "./help-bubble";
|
|
|
27
28
|
export { vars as identityPlaceholder } from "./identity-placeholder";
|
|
28
29
|
export { vars as inlineBanner } from "./inline-banner";
|
|
29
30
|
export { vars as linkContent } from "./link-content";
|
|
31
|
+
export { vars as listItem } from "./list-item";
|
|
30
32
|
export { vars as mannerTempBadge } from "./manner-temp-badge";
|
|
31
33
|
export { vars as mannerTemp } from "./manner-temp";
|
|
32
34
|
export { vars as menuSheetCloseButton } from "./menu-sheet-close-button";
|
|
@@ -36,6 +38,7 @@ export { vars as notificationBadge } from "./notification-badge";
|
|
|
36
38
|
export { vars as pageBanner } from "./page-banner";
|
|
37
39
|
export { vars as progressCircle } from "./progress-circle";
|
|
38
40
|
export { vars as radio } from "./radio";
|
|
41
|
+
export { vars as radiomark } from "./radiomark";
|
|
39
42
|
export { vars as reactionButton } from "./reaction-button";
|
|
40
43
|
export { vars as segmentedControlItem } from "./segmented-control-item";
|
|
41
44
|
export { vars as segmentedControl } from "./segmented-control";
|
package/vars/component/index.mjs
CHANGED
|
@@ -10,6 +10,7 @@ export { vars as bottomSheetCloseButton } from "./bottom-sheet-close-button.mjs"
|
|
|
10
10
|
export { vars as bottomSheet } from "./bottom-sheet.mjs";
|
|
11
11
|
export { vars as callout } from "./callout.mjs";
|
|
12
12
|
export { vars as checkbox } from "./checkbox.mjs";
|
|
13
|
+
export { vars as checkmark } from "./checkmark.mjs";
|
|
13
14
|
export { vars as chipTab } from "./chip-tab.mjs";
|
|
14
15
|
export { vars as chipTablist } from "./chip-tablist.mjs";
|
|
15
16
|
export { vars as chip } from "./chip.mjs";
|
|
@@ -27,6 +28,7 @@ export { vars as helpBubble } from "./help-bubble.mjs";
|
|
|
27
28
|
export { vars as identityPlaceholder } from "./identity-placeholder.mjs";
|
|
28
29
|
export { vars as inlineBanner } from "./inline-banner.mjs";
|
|
29
30
|
export { vars as linkContent } from "./link-content.mjs";
|
|
31
|
+
export { vars as listItem } from "./list-item.mjs";
|
|
30
32
|
export { vars as mannerTempBadge } from "./manner-temp-badge.mjs";
|
|
31
33
|
export { vars as mannerTemp } from "./manner-temp.mjs";
|
|
32
34
|
export { vars as menuSheetCloseButton } from "./menu-sheet-close-button.mjs";
|
|
@@ -36,6 +38,7 @@ export { vars as notificationBadge } from "./notification-badge.mjs";
|
|
|
36
38
|
export { vars as pageBanner } from "./page-banner.mjs";
|
|
37
39
|
export { vars as progressCircle } from "./progress-circle.mjs";
|
|
38
40
|
export { vars as radio } from "./radio.mjs";
|
|
41
|
+
export { vars as radiomark } from "./radiomark.mjs";
|
|
39
42
|
export { vars as reactionButton } from "./reaction-button.mjs";
|
|
40
43
|
export { vars as segmentedControlItem } from "./segmented-control-item.mjs";
|
|
41
44
|
export { vars as segmentedControl } from "./segmented-control.mjs";
|