mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
updated PyPi version
This commit is contained in:
parent
51ee878ef5
commit
73da52fecd
@ -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>)
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -1 +1 @@
|
||||
2.2.6
|
||||
2.2.7
|
||||
|
2
setup.py
2
setup.py
@ -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 |
Loading…
Reference in New Issue
Block a user