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.js
CHANGED
|
@@ -4472,11 +4472,13 @@ var TextareaElement = import_styled_components11.default.textarea.withConfig({
|
|
|
4472
4472
|
color: ${(props) => props.theme.colors.textSecondary}80;
|
|
4473
4473
|
}
|
|
4474
4474
|
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4475
|
+
&:focus {
|
|
4476
|
+
${(props) => props.withNoBorder ? import_styled_components11.css`
|
|
4477
|
+
filter: ${props.hoverStyle.filter ?? filterHover().z1};
|
|
4478
|
+
` : import_styled_components11.css`
|
|
4479
|
+
border-color: ${props.theme.colors.primary};
|
|
4480
|
+
`}
|
|
4481
|
+
}
|
|
4480
4482
|
|
|
4481
4483
|
${(props) => props.style}
|
|
4482
4484
|
|