Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ No changes to highlight.
No changes to highlight.

## Full Changelog:
No changes to highlight.
* Allow `gr.Templates` to accept parameters to override the defaults by [@abidlabs](https://github.com/abidlabs) in [PR 2600](https://github.com/gradio-app/gradio/pull/2600)

## Contributors Shoutout:
No changes to highlight.
Expand Down Expand Up @@ -57,6 +57,7 @@ No changes to highlight.
## Full Changelog:
* Add `api_name` to `Blocks.__call__` by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 2593](https://github.com/gradio-app/gradio/pull/2593)


## Contributors Shoutout:
No changes to highlight.

Expand Down
4 changes: 2 additions & 2 deletions gradio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
Dropdown,
File,
Gallery,
Highlight,
Highlightedtext,
HighlightedText,
Image,
Expand All @@ -37,6 +38,7 @@
Slider,
State,
StatusTracker,
Text,
Textbox,
TimeSeries,
Timeseries,
Expand All @@ -60,7 +62,6 @@
from gradio.routes import mount_gradio_app
from gradio.templates import (
Files,
Highlight,
ImageMask,
ImagePaint,
List,
Expand All @@ -72,7 +73,6 @@
Pil,
PlayableVideo,
Sketchpad,
Text,
TextArea,
Webcam,
)
Expand Down
2 changes: 2 additions & 0 deletions gradio/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -3980,8 +3980,10 @@ def get_component_instance(comp: str | dict | Component, render=True) -> Compone
)


Text = Textbox
DataFrame = Dataframe
Highlightedtext = HighlightedText
Highlight = HighlightedText
Checkboxgroup = CheckboxGroup
TimeSeries = Timeseries
Json = JSON
Loading