@sinco/react 1.2.4-rc.1 → 1.2.4-rc.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/index.esm.js +20 -19
- package/package.json +1 -1
package/index.esm.js
CHANGED
@@ -7351,14 +7351,6 @@ const styled = createStyled({
|
|
7351
7351
|
});
|
7352
7352
|
|
7353
7353
|
var components = {
|
7354
|
-
MuiBackdrop: {
|
7355
|
-
styleOverrides: {
|
7356
|
-
root: {
|
7357
|
-
backgroundColor: "#000000",
|
7358
|
-
opacity: "28%"
|
7359
|
-
}
|
7360
|
-
}
|
7361
|
-
},
|
7362
7354
|
MuiSelect: {
|
7363
7355
|
styleOverrides: {
|
7364
7356
|
outlined: {
|
@@ -7718,8 +7710,7 @@ var components = {
|
|
7718
7710
|
}), ".MuiPaper-elevation", {
|
7719
7711
|
boxShadow: "0px 1px 5px rgba(24, 39, 75, 0.12), 0px 2px 2px rgba(24, 39, 75, 0.14), 0px 3px 1px -2px rgba(24, 39, 75, 0.2) "
|
7720
7712
|
}), ".MuiBackdrop-root", {
|
7721
|
-
backgroundColor: "#
|
7722
|
-
backdropFilter: "blur(2px) !important"
|
7713
|
+
backgroundColor: "#00000047"
|
7723
7714
|
});
|
7724
7715
|
}
|
7725
7716
|
}
|
@@ -8405,6 +8396,17 @@ var components = {
|
|
8405
8396
|
},
|
8406
8397
|
MuiIconButton: {
|
8407
8398
|
styleOverrides: {
|
8399
|
+
root: function root(_ref11) {
|
8400
|
+
var theme = _ref11.theme;
|
8401
|
+
return {
|
8402
|
+
"&:hover": {
|
8403
|
+
backgroundColor: "rgba(16, 24, 64, 0.04)"
|
8404
|
+
},
|
8405
|
+
"&>.MuiSvgIcon-root": {
|
8406
|
+
color: theme.palette.action.active
|
8407
|
+
}
|
8408
|
+
};
|
8409
|
+
},
|
8408
8410
|
sizeSmall: {
|
8409
8411
|
padding: 3
|
8410
8412
|
},
|
@@ -8483,8 +8485,8 @@ var components = {
|
|
8483
8485
|
},
|
8484
8486
|
MuiInputLabel: {
|
8485
8487
|
styleOverrides: {
|
8486
|
-
asterisk: function asterisk(
|
8487
|
-
var theme =
|
8488
|
+
asterisk: function asterisk(_ref12) {
|
8489
|
+
var theme = _ref12.theme;
|
8488
8490
|
return {
|
8489
8491
|
color: theme.palette.error.main
|
8490
8492
|
};
|
@@ -16807,9 +16809,9 @@ var DrawerComponent = function DrawerComponent(_ref) {
|
|
16807
16809
|
sxActions = _ref.sxActions,
|
16808
16810
|
color = _ref.color,
|
16809
16811
|
backgroundColor = _ref.backgroundColor,
|
16810
|
-
closeIconColor = _ref.closeIconColor
|
16811
|
-
|
16812
|
-
_ref$anchor = _ref.anchor,
|
16812
|
+
closeIconColor = _ref.closeIconColor;
|
16813
|
+
_ref.headerColor;
|
16814
|
+
var _ref$anchor = _ref.anchor,
|
16813
16815
|
anchor = _ref$anchor === void 0 ? "left" : _ref$anchor,
|
16814
16816
|
_ref$anchorActions = _ref.anchorActions,
|
16815
16817
|
anchorActions = _ref$anchorActions === void 0 ? "flex-end" : _ref$anchorActions,
|
@@ -16829,8 +16831,7 @@ var DrawerComponent = function DrawerComponent(_ref) {
|
|
16829
16831
|
onClose: onClose,
|
16830
16832
|
sx: _objectSpread2({
|
16831
16833
|
"& .MuiBackdrop-root": {
|
16832
|
-
|
16833
|
-
// backdropFilter: "blur(4px)",
|
16834
|
+
backgroundColor: "#00000047"
|
16834
16835
|
},
|
16835
16836
|
"& .MuiDrawer-paper": _objectSpread2({
|
16836
16837
|
width: width
|
@@ -16845,7 +16846,7 @@ var DrawerComponent = function DrawerComponent(_ref) {
|
|
16845
16846
|
py: 1.5,
|
16846
16847
|
px: 1,
|
16847
16848
|
sx: _objectSpread2({
|
16848
|
-
backgroundColor: "
|
16849
|
+
backgroundColor: "secondary.main"
|
16849
16850
|
}, sxHeader)
|
16850
16851
|
}, React__default.createElement(Typography, {
|
16851
16852
|
color: color || "background.paper",
|
@@ -17118,7 +17119,7 @@ var ProgressSinco = function ProgressSinco(_ref) {
|
|
17118
17119
|
_ref$progressBar = _ref.progressBar,
|
17119
17120
|
progressBar = _ref$progressBar === void 0 ? true : _ref$progressBar,
|
17120
17121
|
_ref$textPorcent = _ref.textPorcent,
|
17121
|
-
textPorcent = _ref$textPorcent === void 0 ? "Procesando
|
17122
|
+
textPorcent = _ref$textPorcent === void 0 ? "Procesando" : _ref$textPorcent,
|
17122
17123
|
_ref$ilustration = _ref.ilustration,
|
17123
17124
|
ilustration = _ref$ilustration === void 0 ? true : _ref$ilustration;
|
17124
17125
|
var timeProgress = time || 10;
|