@arcblock/ux 2.9.87 → 2.9.89
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/es/Theme/theme.js +17 -7
- package/lib/Theme/theme.js +17 -6
- package/package.json +5 -5
- package/src/Theme/theme.js +17 -7
package/es/Theme/theme.js
CHANGED
|
@@ -80,13 +80,23 @@ export const create = ({
|
|
|
80
80
|
},
|
|
81
81
|
MuiTableCell: {
|
|
82
82
|
styleOverrides: {
|
|
83
|
-
root: {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
83
|
+
root: ({
|
|
84
|
+
ownerState
|
|
85
|
+
}) => ({
|
|
86
|
+
...(ownerState.size === 'small' ? {
|
|
87
|
+
borderBottomWidth: '0',
|
|
88
|
+
paddingTop: '8px',
|
|
89
|
+
paddingBottom: '8px',
|
|
90
|
+
paddingLeft: 0,
|
|
91
|
+
paddingRight: '20px'
|
|
92
|
+
} : {
|
|
93
|
+
borderBottomWidth: '0',
|
|
94
|
+
paddingTop: '14px',
|
|
95
|
+
paddingBottom: '14px',
|
|
96
|
+
paddingLeft: 0,
|
|
97
|
+
paddingRight: '30px'
|
|
98
|
+
})
|
|
99
|
+
}),
|
|
90
100
|
head: {
|
|
91
101
|
textTransform: 'uppercase',
|
|
92
102
|
color: mode === 'light' ? colors.grey[900] : colors.grey[300]
|
package/lib/Theme/theme.js
CHANGED
|
@@ -94,12 +94,23 @@ const create = exports.create = function create() {
|
|
|
94
94
|
},
|
|
95
95
|
MuiTableCell: {
|
|
96
96
|
styleOverrides: {
|
|
97
|
-
root: {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
97
|
+
root: _ref2 => {
|
|
98
|
+
let {
|
|
99
|
+
ownerState
|
|
100
|
+
} = _ref2;
|
|
101
|
+
return _objectSpread({}, ownerState.size === 'small' ? {
|
|
102
|
+
borderBottomWidth: '0',
|
|
103
|
+
paddingTop: '8px',
|
|
104
|
+
paddingBottom: '8px',
|
|
105
|
+
paddingLeft: 0,
|
|
106
|
+
paddingRight: '20px'
|
|
107
|
+
} : {
|
|
108
|
+
borderBottomWidth: '0',
|
|
109
|
+
paddingTop: '14px',
|
|
110
|
+
paddingBottom: '14px',
|
|
111
|
+
paddingLeft: 0,
|
|
112
|
+
paddingRight: '30px'
|
|
113
|
+
});
|
|
103
114
|
},
|
|
104
115
|
head: {
|
|
105
116
|
textTransform: 'uppercase',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcblock/ux",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.89",
|
|
4
4
|
"description": "Common used react components for arcblock products",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -361,12 +361,12 @@
|
|
|
361
361
|
"react": ">=18.2.0",
|
|
362
362
|
"react-router-dom": ">=6.22.3"
|
|
363
363
|
},
|
|
364
|
-
"gitHead": "
|
|
364
|
+
"gitHead": "7d5bde7a8901858ab0580f9b8527c8c4c10263b2",
|
|
365
365
|
"dependencies": {
|
|
366
366
|
"@arcblock/did-motif": "^1.1.13",
|
|
367
|
-
"@arcblock/icons": "^2.9.
|
|
368
|
-
"@arcblock/nft-display": "^2.9.
|
|
369
|
-
"@arcblock/react-hooks": "^2.9.
|
|
367
|
+
"@arcblock/icons": "^2.9.89",
|
|
368
|
+
"@arcblock/nft-display": "^2.9.89",
|
|
369
|
+
"@arcblock/react-hooks": "^2.9.89",
|
|
370
370
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
371
371
|
"@fontsource/inter": "^5.0.16",
|
|
372
372
|
"@fontsource/ubuntu-mono": "^5.0.18",
|
package/src/Theme/theme.js
CHANGED
|
@@ -97,13 +97,23 @@ export const create = ({ mode = 'light', pageWidth = 'md', palette, typography,
|
|
|
97
97
|
},
|
|
98
98
|
MuiTableCell: {
|
|
99
99
|
styleOverrides: {
|
|
100
|
-
root: {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
100
|
+
root: ({ ownerState }) => ({
|
|
101
|
+
...(ownerState.size === 'small'
|
|
102
|
+
? {
|
|
103
|
+
borderBottomWidth: '0',
|
|
104
|
+
paddingTop: '8px',
|
|
105
|
+
paddingBottom: '8px',
|
|
106
|
+
paddingLeft: 0,
|
|
107
|
+
paddingRight: '20px',
|
|
108
|
+
}
|
|
109
|
+
: {
|
|
110
|
+
borderBottomWidth: '0',
|
|
111
|
+
paddingTop: '14px',
|
|
112
|
+
paddingBottom: '14px',
|
|
113
|
+
paddingLeft: 0,
|
|
114
|
+
paddingRight: '30px',
|
|
115
|
+
}),
|
|
116
|
+
}),
|
|
107
117
|
head: {
|
|
108
118
|
textTransform: 'uppercase',
|
|
109
119
|
color: mode === 'light' ? colors.grey[900] : colors.grey[300],
|