diff --git a/package.json b/package.json index 1c9062ca..dfe10a85 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@statisticsnorway/ssb-component-library", - "version": "2.0.86", + "version": "2.0.87", "description": "Component library for SSB (Statistics Norway)", "main": "lib/bundle.js", "scripts": { diff --git a/src/components/Input/README.md b/src/components/Input/README.md index 402702aa..659b9ebb 100644 --- a/src/components/Input/README.md +++ b/src/components/Input/README.md @@ -97,7 +97,6 @@ Available props: | submitCallback | func | Callback for onSubmit | | type | string | Changes input type. Optional parameters like 'url', 'email' etc. | | value | string | Input value. Can be initiated with a value | -| ref | instanceof element | Reference to an instance of the input element wrapper | __Dependencies__ - [InputError](../InputError) diff --git a/src/components/Input/index.jsx b/src/components/Input/index.jsx index aff2b6ff..d7fdbdf1 100644 --- a/src/components/Input/index.jsx +++ b/src/components/Input/index.jsx @@ -90,7 +90,6 @@ Input.propTypes = { submitCallback: PropTypes.func, type: PropTypes.string, value: PropTypes.string, - ref: PropTypes.shape({ current: PropTypes.instanceOf(Element) }), }; export default Input;