mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-28 03:08:30 +00:00
added readOnly property and styles to textarea component
This commit is contained in:
parent
2eb6785b0d
commit
a94d949ad4
@ -57,6 +57,16 @@ const StyledTextarea = styled(Textarea)`
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&:read-only {
|
||||
background: ${colors.GRAY_LIGHT};
|
||||
color: ${colors.TEXT_SECONDARY};
|
||||
|
||||
&::placeholder {
|
||||
color: ${disabledColor};
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
pointer-events: none;
|
||||
background: ${colors.GRAY_LIGHT};
|
||||
@ -150,11 +160,13 @@ const TextArea = ({
|
||||
onFocus,
|
||||
onBlur,
|
||||
isDisabled,
|
||||
readOnly,
|
||||
name,
|
||||
onChange,
|
||||
topLabel,
|
||||
rows,
|
||||
maxRows,
|
||||
maxLength,
|
||||
autoSelect,
|
||||
state = '',
|
||||
bottomText = '',
|
||||
@ -169,6 +181,7 @@ const TextArea = ({
|
||||
autoCorrect="off"
|
||||
autoCapitalize="off"
|
||||
maxRows={maxRows}
|
||||
maxLength={maxLength}
|
||||
rows={rows}
|
||||
className={className}
|
||||
disabled={isDisabled}
|
||||
@ -177,6 +190,7 @@ const TextArea = ({
|
||||
onFocus={onFocus}
|
||||
onBlur={onBlur}
|
||||
value={value}
|
||||
readOnly={readOnly}
|
||||
onClick={autoSelect ? event => event.target.select() : null}
|
||||
placeholder={placeholder}
|
||||
onChange={onChange}
|
||||
@ -202,7 +216,9 @@ TextArea.propTypes = {
|
||||
customStyle: PropTypes.string,
|
||||
placeholder: PropTypes.string,
|
||||
value: PropTypes.string,
|
||||
readOnly: PropTypes.bool,
|
||||
maxRows: PropTypes.number,
|
||||
maxLength: PropTypes.number,
|
||||
rows: PropTypes.number,
|
||||
name: PropTypes.string,
|
||||
isDisabled: PropTypes.bool,
|
||||
|
Loading…
Reference in New Issue
Block a user