From eaf509262dbd0d5066c8401a502ef7f6824c59ff Mon Sep 17 00:00:00 2001 From: Avior Date: Tue, 7 Feb 2023 13:10:50 +0100 Subject: [PATCH] bump: version Signed-off-by: Avior --- package-lock.json | 4 ++-- package.json | 2 +- src/Input/index.tsx | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 13af974..c9be8f5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@dzeio/components", - "version": "1.0.0-beta.14", + "version": "1.0.0-beta.15", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@dzeio/components", - "version": "1.0.0-beta.14", + "version": "1.0.0-beta.15", "license": "MIT", "dependencies": { "@dzeio/object-util": "^1", diff --git a/package.json b/package.json index 69009dc..b68980a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dzeio/components", - "version": "1.0.0-beta.14", + "version": "1.0.0-beta.15", "license": "MIT", "main": "./index.umd.js", "module": "./index.es.js", diff --git a/src/Input/index.tsx b/src/Input/index.tsx index 0a45533..2db0c64 100644 --- a/src/Input/index.tsx +++ b/src/Input/index.tsx @@ -155,7 +155,6 @@ export default class Input extends React.Component { 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 { } 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, HTMLInputElement> = { ref: this.props.inputRef || this.inputRef,