@onesy/ui-react 1.0.81 → 1.0.82
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/TextField/TextField.js +1 -1
- package/esm/TextField/TextField.js +1 -0
- package/esm/index.js +1 -1
- package/package.json +1 -1
package/TextField/TextField.js
CHANGED
@@ -187,7 +187,7 @@ const useStyle = (0, style_react_1.style)(theme => {
|
|
187
187
|
insetInlineStart: '15px',
|
188
188
|
transform: 'translate(0, 6px) scale(0.667)'
|
189
189
|
},
|
190
|
-
background: Object.assign(Object.assign({}, other), { background: 'currentColor', borderRadius: `${theme.shape.radius.unit}px ${theme.shape.radius.unit}px 0 0`, opacity: theme.palette.light ? theme.palette.visual_contrast.default.opacity.hover : theme.palette.visual_contrast.default.opacity.selected, transition: theme.methods.transitions.make(['opacity']) }),
|
190
|
+
background: Object.assign(Object.assign({}, other), { background: 'currentColor', borderRadius: `${theme.shape.radius.unit}px ${theme.shape.radius.unit}px 0 0`, opacity: theme.palette.light ? theme.palette.visual_contrast.default.opacity.hover : theme.palette.visual_contrast.default.opacity.selected, zIndex: '-1', transition: theme.methods.transitions.make(['opacity']) }),
|
191
191
|
background_hover: {
|
192
192
|
opacity: theme.palette.visual_contrast.default.opacity.focus
|
193
193
|
},
|
@@ -233,6 +233,7 @@ const useStyle = styleMethod(theme => {
|
|
233
233
|
background: 'currentColor',
|
234
234
|
borderRadius: `${theme.shape.radius.unit}px ${theme.shape.radius.unit}px 0 0`,
|
235
235
|
opacity: theme.palette.light ? theme.palette.visual_contrast.default.opacity.hover : theme.palette.visual_contrast.default.opacity.selected,
|
236
|
+
zIndex: '-1',
|
236
237
|
transition: theme.methods.transitions.make(['opacity'])
|
237
238
|
}),
|
238
239
|
background_hover: {
|
package/esm/index.js
CHANGED