升级 react-transition-group

This commit is contained in:
2betop 2020-06-12 14:39:21 +08:00
parent 6ec378589d
commit a30570d2d3
3 changed files with 16 additions and 2 deletions

View File

@ -66,7 +66,7 @@
"react-progress-2": "^4.4.2",
"react-select": "1.2.1",
"react-textarea-autosize": "5.1.0",
"react-transition-group": "2.2.1",
"react-transition-group": "4.4.1",
"react-visibility-sensor": "3.11.0",
"redux": "^3.7.2",
"setimmediate": "1.0.5",

View File

@ -19,6 +19,19 @@
}
}
&.is-clickable {
cursor: pointer;
&:hover {
border-color: $Form-input-onFocused-borderColor;
box-shadow: $Form-input-boxShadow;
@if $Form-input-onFocused-bg !=$Form-input-bg {
background-color: $Form-input-onFocused-bg;
}
}
}
&.is-error.is-focused {
border-color: $Form-input-onError-borderColor;
}

View File

@ -124,7 +124,8 @@ export class ResultBox extends React.Component<ResultBoxProps> {
className,
isFocused ? 'is-focused' : '',
disabled ? 'is-disabled' : '',
hasError ? 'is-error' : ''
hasError ? 'is-error' : '',
onResultClick ? 'is-clickable' : ''
)}
onClick={onResultClick}
tabIndex={!allowInput && onFocus ? 0 : -1}