@phillips/seldon 1.201.0 → 1.202.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.
|
@@ -16,7 +16,9 @@ declare const meta: {
|
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
18
|
export default meta;
|
|
19
|
+
export declare const ButtonDisabled: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
20
|
export declare const ButtonWithIcon: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export declare const ButtonWithIconDisabled: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
22
|
export declare const ButtonAsLink: {
|
|
21
23
|
(props: ButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
22
24
|
args: {
|
|
@@ -104,6 +104,10 @@
|
|
|
104
104
|
&:hover {
|
|
105
105
|
background-color: transparent;
|
|
106
106
|
box-shadow: 0 0 0 1px rgba($pure-black, 1);
|
|
107
|
+
|
|
108
|
+
&:disabled {
|
|
109
|
+
box-shadow: none;
|
|
110
|
+
}
|
|
107
111
|
}
|
|
108
112
|
}
|
|
109
113
|
|
|
@@ -170,9 +174,9 @@
|
|
|
170
174
|
}
|
|
171
175
|
|
|
172
176
|
&:disabled {
|
|
173
|
-
background-color: $
|
|
174
|
-
border: 1px solid $
|
|
175
|
-
color: $
|
|
177
|
+
background-color: $grey-50;
|
|
178
|
+
border: 1px solid $grey-50;
|
|
179
|
+
color: $grey-75;
|
|
176
180
|
cursor: default;
|
|
177
181
|
|
|
178
182
|
&:hover {
|
|
@@ -182,10 +186,10 @@
|
|
|
182
186
|
}
|
|
183
187
|
|
|
184
188
|
svg {
|
|
185
|
-
fill: $
|
|
189
|
+
fill: $grey-75;
|
|
186
190
|
|
|
187
191
|
path {
|
|
188
|
-
fill: $
|
|
192
|
+
fill: $grey-75;
|
|
189
193
|
}
|
|
190
194
|
}
|
|
191
195
|
}
|