@dartech/arsenal-ui 1.3.29 → 1.3.30
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/index.js +4 -4
- package/package.json +1 -1
package/index.js
CHANGED
@@ -191,16 +191,16 @@ const AlertDialog = ({
|
|
191
191
|
}), jsxs(DialogActions, {
|
192
192
|
children: [jsx(Button, Object.assign({
|
193
193
|
onClick: onClose,
|
194
|
-
|
195
|
-
variant: "contained"
|
194
|
+
variant: "outlined"
|
196
195
|
}, {
|
197
196
|
children: _closeButtonTitle
|
198
197
|
})), _confirmButtonTitle && onConfirm ? jsx(Button, Object.assign({
|
199
198
|
onClick: onConfirm,
|
200
|
-
color: "
|
199
|
+
color: "primary",
|
201
200
|
variant: "contained",
|
202
201
|
autoFocus: true,
|
203
|
-
disabled: _confirmButtonDisabled
|
202
|
+
disabled: _confirmButtonDisabled,
|
203
|
+
disableElevation: true
|
204
204
|
}, {
|
205
205
|
children: _confirmButtonTitle
|
206
206
|
})) : null]
|