cloudmr-ux 1.9.2 → 1.9.3

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 CHANGED
@@ -885,12 +885,18 @@ function CmrConfirmation({
885
885
  extraButtons.map((btn, idx) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
886
886
  CmrButton_default,
887
887
  {
888
- variant: "contained",
888
+ variant: "outlined",
889
889
  color: btn.color || "primary",
890
890
  onClick: () => {
891
891
  btn.onClick();
892
892
  handleClose();
893
893
  },
894
+ sx: {
895
+ backgroundColor: "#f3e5f5",
896
+ "&:hover": {
897
+ backgroundColor: "#e1bee7"
898
+ }
899
+ },
894
900
  children: btn.text
895
901
  },
896
902
  idx
package/dist/index.mjs CHANGED
@@ -837,12 +837,18 @@ function CmrConfirmation({
837
837
  extraButtons.map((btn, idx) => /* @__PURE__ */ jsx12(
838
838
  CmrButton_default,
839
839
  {
840
- variant: "contained",
840
+ variant: "outlined",
841
841
  color: btn.color || "primary",
842
842
  onClick: () => {
843
843
  btn.onClick();
844
844
  handleClose();
845
845
  },
846
+ sx: {
847
+ backgroundColor: "#f3e5f5",
848
+ "&:hover": {
849
+ backgroundColor: "#e1bee7"
850
+ }
851
+ },
846
852
  children: btn.text
847
853
  },
848
854
  idx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudmr-ux",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
4
4
  "author": "erosmontin@gmail.com",
5
5
  "license": "MIT",
6
6
  "repository": "erosmontin/cloudmr-ux",