tek-wallet 0.0.291 → 0.0.293
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.
|
@@ -27,6 +27,6 @@ var material_1 = require("@mui/material");
|
|
|
27
27
|
function DialogContentLayout(props) {
|
|
28
28
|
var content = props.content, actions = props.actions, sx = props.sx, rest = __rest(props, ["content", "actions", "sx"]);
|
|
29
29
|
var theme = (0, material_1.useTheme)();
|
|
30
|
-
return ((0, jsx_runtime_1.jsxs)(material_1.Box, __assign({ sx: __assign(__assign(__assign(__assign({}, theme.mixins.column), { gap: theme.mixins.gaps.g12, padding: theme.mixins.customPadding.p12, borderRadius: theme.mixins.theBorderRadius.r12, backgroundColor: theme.palette.background.black, boxShadow: theme.shadows[
|
|
30
|
+
return ((0, jsx_runtime_1.jsxs)(material_1.Box, __assign({ sx: __assign(__assign(__assign(__assign({}, theme.mixins.column), { gap: theme.mixins.gaps.g12, padding: theme.mixins.customPadding.p12, borderRadius: theme.mixins.theBorderRadius.r12, backgroundColor: theme.palette.background.black, boxShadow: theme.shadows[1] }), theme.mixins.dialogContent), sx) }, rest, { children: [content, !!actions && (0, jsx_runtime_1.jsx)(material_1.Divider, {}), actions] })));
|
|
31
31
|
}
|
|
32
32
|
exports.default = DialogContentLayout;
|
package/dist/theme/mui/theme.js
CHANGED
|
@@ -118,7 +118,7 @@ var theBorderRadius = {
|
|
|
118
118
|
var shadows = [
|
|
119
119
|
"none",
|
|
120
120
|
"inset 0px 0px 50px 8px rgba(255, 255, 255, 0.1)", // 0
|
|
121
|
-
"0px
|
|
121
|
+
"0px 0px 50px 8px rgba(255, 255, 255, 0.1)", // 1
|
|
122
122
|
"0px 5px 15px rgba(255, 255, 255, 0.1)", // 2
|
|
123
123
|
"0px 5px 15px rgba(255, 255, 255, 0.2)", // 3
|
|
124
124
|
"0px 6px 24px rgba(255, 255, 255, 0.1)", // 4
|