@arcblock/ux 1.16.49 → 1.16.50
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/lib/Dialog/dialog.js +1 -1
- package/package.json +4 -4
- package/src/Dialog/dialog.js +1 -1
package/lib/Dialog/dialog.js
CHANGED
|
@@ -126,7 +126,7 @@ Dialog.defaultProps = {
|
|
|
126
126
|
const StyledMuiDialog = (0, _styledComponents.default)(_Dialog.default).withConfig({
|
|
127
127
|
displayName: "dialog__StyledMuiDialog",
|
|
128
128
|
componentId: "sc-kt5gv0-0"
|
|
129
|
-
})([".MuiDialog-paper{
|
|
129
|
+
})([".MuiDialog-paper{", ";}.MuiDialogContent-root{padding:16px 24px;}.MuiDialogActions-root{padding:8px 24px 16px 24px;}.MuiDialogActions-root.ux-dialog_actions--left{justify-content:flex-start;}.MuiDialogActions-root.ux-dialog_actions--right{justify-content:flex-end;}.MuiDialogActions-root.ux-dialog_actions--center{justify-content:center;}"], props => props.fullScreen ? 'border-radius: 0;' : '');
|
|
130
130
|
|
|
131
131
|
const Header = _styledComponents.default.div.withConfig({
|
|
132
132
|
displayName: "dialog__Header",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcblock/ux",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.50",
|
|
4
4
|
"description": "Common used react components for arcblock products",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"react": ">=16.12.0",
|
|
54
54
|
"react-ga": "^2.7.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "a3925cd4600002e3546f6e8e184797be4f434b79",
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@arcblock/icons": "^1.16.
|
|
59
|
-
"@arcblock/react-hooks": "^1.16.
|
|
58
|
+
"@arcblock/icons": "^1.16.50",
|
|
59
|
+
"@arcblock/react-hooks": "^1.16.50",
|
|
60
60
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
61
61
|
"@fontsource/lato": "^4.5.3",
|
|
62
62
|
"@material-ui/core": "^4.12.3",
|
package/src/Dialog/dialog.js
CHANGED
|
@@ -106,7 +106,7 @@ Dialog.defaultProps = {
|
|
|
106
106
|
|
|
107
107
|
const StyledMuiDialog = styled(MuiDialog)`
|
|
108
108
|
.MuiDialog-paper {
|
|
109
|
-
|
|
109
|
+
${props => (props.fullScreen ? 'border-radius: 0;' : '')};
|
|
110
110
|
}
|
|
111
111
|
.MuiDialogContent-root {
|
|
112
112
|
padding: 16px 24px;
|