updated PyPi version

This commit is contained in:
root 2021-08-05 18:56:23 +00:00
parent 51ee878ef5
commit 73da52fecd
5 changed files with 7 additions and 5 deletions

View File

@ -22,13 +22,15 @@ class TextboxInput extends React.Component {
} else if (this.props.lines > 1) {
return (
<div className="input_text">
<textarea value={this.props.value || ""} rows={this.props.lines} onChange={this.handleChange}>
<textarea value={this.props.value || ""} rows={this.props.lines}
onChange={this.handleChange} placeholder={this.props.placeholder || ""}>
</textarea>
</div>
)
} else {
return (<div className="input_text">
<input type="text" onChange={this.handleChange} value={this.props.value || ""}></input>
<input type="text" onChange={this.handleChange} value={this.props.value || ""}
placeholder={this.props.placeholder || ""}></input>
</div>)
}
}

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: gradio
Version: 2.2.6
Version: 2.2.7
Summary: Python library for easily interacting with trained machine learning models
Home-page: https://github.com/gradio-app/gradio-UI
Author: Abubakar Abid

View File

@ -1 +1 @@
2.2.6
2.2.7

View File

@ -5,7 +5,7 @@ except ImportError:
setup(
name='gradio',
version='2.2.6',
version='2.2.7',
include_package_data=True,
description='Python library for easily interacting with trained machine learning models',
author='Abubakar Abid',

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 21 KiB