@loomhq/lens 11.20.0 → 11.20.1
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3920,7 +3920,7 @@ var TextareaWrapper = styled22.textarea`
|
|
|
3920
3920
|
&:focus {
|
|
3921
3921
|
outline: 1px solid
|
|
3922
3922
|
${(props) => props.error ? "var(--lns-color-orangeLight)" : "transparent"};
|
|
3923
|
-
box-shadow: ${(props) => props.error
|
|
3923
|
+
box-shadow: ${(props) => props.error ? "var(--lns-formFieldBorderShadowError)" : "var(--lns-formFieldBorderShadowFocus)"};
|
|
3924
3924
|
}
|
|
3925
3925
|
|
|
3926
3926
|
&:disabled {
|
|
@@ -3947,7 +3947,7 @@ var Textarea = React28.forwardRef(
|
|
|
3947
3947
|
placeholder,
|
|
3948
3948
|
size = "medium",
|
|
3949
3949
|
resize = "both",
|
|
3950
|
-
error =
|
|
3950
|
+
error = null
|
|
3951
3951
|
} = _b, props = __objRest(_b, [
|
|
3952
3952
|
"onChange",
|
|
3953
3953
|
"value",
|