@sinco/react 1.0.10-rc.4 → 1.0.10-rc.6
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 +30 -30
- package/package.json +1 -1
- package/src/lib/Components/Drawer.d.ts +2 -2
package/index.js
CHANGED
@@ -15888,41 +15888,41 @@ var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("p
|
|
15888
15888
|
default_1 = Close.default = _default;
|
15889
15889
|
|
15890
15890
|
const stylesDrawerContainer = {
|
15891
|
-
display:
|
15892
|
-
flexDirection:
|
15893
|
-
alignContent:
|
15894
|
-
justifyContent:
|
15895
|
-
width:
|
15896
|
-
height:
|
15897
|
-
overflow:
|
15891
|
+
display: "flex",
|
15892
|
+
flexDirection: "column",
|
15893
|
+
alignContent: "flex-start",
|
15894
|
+
justifyContent: "space-between",
|
15895
|
+
width: "530px",
|
15896
|
+
height: "100%",
|
15897
|
+
overflow: "hidden"
|
15898
15898
|
};
|
15899
15899
|
const stylesEncabezado = {
|
15900
|
-
display:
|
15901
|
-
alignContent:
|
15902
|
-
justifyContent:
|
15903
|
-
backgroundColor:
|
15904
|
-
py:
|
15905
|
-
px:
|
15900
|
+
display: "flex",
|
15901
|
+
alignContent: "center",
|
15902
|
+
justifyContent: "space-between",
|
15903
|
+
backgroundColor: "secondary.light",
|
15904
|
+
py: "12px",
|
15905
|
+
px: "8px"
|
15906
15906
|
};
|
15907
15907
|
const stylesContenido = {
|
15908
|
-
display:
|
15909
|
-
overflow:
|
15910
|
-
alignItems:
|
15911
|
-
flexDirection:
|
15912
|
-
height:
|
15913
|
-
py:
|
15914
|
-
px:
|
15908
|
+
display: "flex",
|
15909
|
+
overflow: "auto",
|
15910
|
+
alignItems: "flex-start",
|
15911
|
+
flexDirection: "column",
|
15912
|
+
height: "-webkit-fill-available",
|
15913
|
+
py: "12px",
|
15914
|
+
px: "8px"
|
15915
15915
|
};
|
15916
15916
|
const stylesAcciones = {
|
15917
|
-
display:
|
15918
|
-
alignContent:
|
15919
|
-
justifyContent:
|
15920
|
-
borderTop:
|
15921
|
-
backgroundColor:
|
15922
|
-
mt:
|
15923
|
-
gap:
|
15924
|
-
py:
|
15925
|
-
px:
|
15917
|
+
display: "flex",
|
15918
|
+
alignContent: "center",
|
15919
|
+
justifyContent: "flex-end",
|
15920
|
+
borderTop: "1px solid rgba(16, 24, 64, 0.23)",
|
15921
|
+
backgroundColor: "#F1F0EE",
|
15922
|
+
mt: "4px",
|
15923
|
+
gap: "8px",
|
15924
|
+
py: "12px",
|
15925
|
+
px: "8px"
|
15926
15926
|
};
|
15927
15927
|
const DrawerComponent = ({
|
15928
15928
|
open,
|
@@ -15942,7 +15942,7 @@ const DrawerComponent = ({
|
|
15942
15942
|
onClose: onClose,
|
15943
15943
|
PaperProps: {
|
15944
15944
|
style: {
|
15945
|
-
borderRadius:
|
15945
|
+
borderRadius: "8px 0px 0px 0px"
|
15946
15946
|
}
|
15947
15947
|
},
|
15948
15948
|
children: jsxs(Box$2, {
|
package/package.json
CHANGED