react-better-html 1.1.246 → 1.1.247
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/dist/index.js +7 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4423,11 +4423,13 @@ var TextareaElement = styled10.textarea.withConfig({
|
|
|
4423
4423
|
color: ${(props) => props.theme.colors.textSecondary}80;
|
|
4424
4424
|
}
|
|
4425
4425
|
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
|
|
4426
|
+
&:focus {
|
|
4427
|
+
${(props) => props.withNoBorder ? css3`
|
|
4428
|
+
filter: ${props.hoverStyle.filter ?? filterHover().z1};
|
|
4429
|
+
` : css3`
|
|
4430
|
+
border-color: ${props.theme.colors.primary};
|
|
4431
|
+
`}
|
|
4432
|
+
}
|
|
4431
4433
|
|
|
4432
4434
|
${(props) => props.style}
|
|
4433
4435
|
|