cloudmr-ux 1.9.3 → 1.9.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/dist/index.js +1 -7
- package/dist/index.mjs +1 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -886,17 +886,11 @@ function CmrConfirmation({
|
|
|
886
886
|
CmrButton_default,
|
|
887
887
|
{
|
|
888
888
|
variant: "outlined",
|
|
889
|
-
color: btn.color || "
|
|
889
|
+
color: btn.color || "warning",
|
|
890
890
|
onClick: () => {
|
|
891
891
|
btn.onClick();
|
|
892
892
|
handleClose();
|
|
893
893
|
},
|
|
894
|
-
sx: {
|
|
895
|
-
backgroundColor: "#f3e5f5",
|
|
896
|
-
"&:hover": {
|
|
897
|
-
backgroundColor: "#e1bee7"
|
|
898
|
-
}
|
|
899
|
-
},
|
|
900
894
|
children: btn.text
|
|
901
895
|
},
|
|
902
896
|
idx
|
package/dist/index.mjs
CHANGED
|
@@ -838,17 +838,11 @@ function CmrConfirmation({
|
|
|
838
838
|
CmrButton_default,
|
|
839
839
|
{
|
|
840
840
|
variant: "outlined",
|
|
841
|
-
color: btn.color || "
|
|
841
|
+
color: btn.color || "warning",
|
|
842
842
|
onClick: () => {
|
|
843
843
|
btn.onClick();
|
|
844
844
|
handleClose();
|
|
845
845
|
},
|
|
846
|
-
sx: {
|
|
847
|
-
backgroundColor: "#f3e5f5",
|
|
848
|
-
"&:hover": {
|
|
849
|
-
backgroundColor: "#e1bee7"
|
|
850
|
-
}
|
|
851
|
-
},
|
|
852
846
|
children: btn.text
|
|
853
847
|
},
|
|
854
848
|
idx
|