@@ -154,7 +154,6 @@ const button = style<ButtonRenderProps & ButtonStyleProps & {isStaticColor: bool
154
154
}
155
155
} ,
156
156
isDisabled : 'none' ,
157
- isPending : 'none' ,
158
157
forcedColors : 'none'
159
158
} ,
160
159
backgroundColor : {
@@ -179,7 +178,13 @@ const button = style<ButtonRenderProps & ButtonStyleProps & {isStaticColor: bool
179
178
isHovered : 'gray-100' ,
180
179
isPressed : 'gray-100' ,
181
180
isFocusVisible : 'gray-100' ,
182
- isDisabled : 'transparent'
181
+ isDisabled : {
182
+ default : 'transparent' ,
183
+ variant : {
184
+ premium : 'gray-100' ,
185
+ genai : 'gray-100'
186
+ }
187
+ }
183
188
}
184
189
} ,
185
190
isStaticColor : {
@@ -188,21 +193,27 @@ const button = style<ButtonRenderProps & ButtonStyleProps & {isStaticColor: bool
188
193
variant : {
189
194
primary : baseColor ( 'transparent-overlay-800' ) ,
190
195
secondary : baseColor ( 'transparent-overlay-100' ) ,
191
- premium : 'gray-800 ' ,
192
- genai : 'gray-800 '
196
+ premium : 'transparent-overlay-100 ' ,
197
+ genai : 'transparent-overlay-100 '
193
198
} ,
194
199
isDisabled : 'transparent-overlay-100'
195
200
} ,
196
201
outline : {
197
202
variant : {
198
- premium : 'gray-800 ' ,
199
- genai : 'gray-800 '
203
+ premium : 'transparent-overlay-100 ' ,
204
+ genai : 'transparent-overlay-100 '
200
205
} ,
201
206
default : 'transparent' ,
202
207
isHovered : 'transparent-overlay-100' ,
203
208
isPressed : 'transparent-overlay-100' ,
204
209
isFocusVisible : 'transparent-overlay-100' ,
205
- isDisabled : 'transparent'
210
+ isDisabled : {
211
+ default : 'transparent' ,
212
+ variant : {
213
+ premium : 'transparent-overlay-100' ,
214
+ genai : 'transparent-overlay-100'
215
+ }
216
+ }
206
217
}
207
218
}
208
219
} ,
0 commit comments