mirror of
https://github.com/maputnik/editor.git
synced 2026-08-25 06:27:25 +00:00
Exposed onInput in <UrlInput/>
This commit is contained in:
@@ -42,6 +42,10 @@ class UrlInput extends React.Component {
|
|||||||
required: PropTypes.bool,
|
required: PropTypes.bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static defaultProps = {
|
||||||
|
onInput: () => {},
|
||||||
|
}
|
||||||
|
|
||||||
constructor (props) {
|
constructor (props) {
|
||||||
super(props);
|
super(props);
|
||||||
this.state = {
|
this.state = {
|
||||||
@@ -53,6 +57,7 @@ class UrlInput extends React.Component {
|
|||||||
this.setState({
|
this.setState({
|
||||||
error: validate(url)
|
error: validate(url)
|
||||||
});
|
});
|
||||||
|
this.props.onInput(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
|
|||||||
Reference in New Issue
Block a user