bump: version

Signed-off-by: Avior <f.bouillon@aptatio.com>
This commit is contained in:
2023-02-07 13:10:50 +01:00
parent e65c7e4a1a
commit eaf509262d
3 changed files with 4 additions and 5 deletions

View File

@ -155,7 +155,6 @@ export default class Input extends React.Component<Props, States> {
prevStates.valueUpdate !== this.state.valueUpdate ||
!objectEqual(prevProps.choices ?? [], this.props.choices ?? [])
) {
console.log('list updated')
this.setState({list: this.buildList()})
}
}
@ -169,7 +168,7 @@ export default class Input extends React.Component<Props, States> {
}
public render() {
const props: Props = objectOmit(this.props, 'iconLeft', 'iconRight', 'inputRed', 'helper', 'choices', 'onValue', 'block', 'defaultValue', 'label')
const props: Props = objectOmit(this.props, 'iconLeft', 'iconRight', 'inputRed', 'helper', 'choices', 'onValue', 'block', 'defaultValue', 'label', 'strictChoices')
const baseProps: React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> = {
ref: this.props.inputRef || this.inputRef,