mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
2c39174343
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
5.5 KiB
5.5 KiB
@gradio/fileexplorer
0.3.8
Patch Changes
- Updated dependencies [
71f1a1f99
,f94db6b73
]:- @gradio/client@0.8.2
- @gradio/file@0.3.0
- @gradio/upload@0.5.1
0.3.7
Patch Changes
- Updated dependencies [
9caddc17b
]:- @gradio/atoms@0.3.0
- @gradio/icons@0.3.0
- @gradio/statustracker@0.4.0
- @gradio/upload@0.5.0
- @gradio/checkbox@0.2.3
- @gradio/file@0.2.7
0.3.6
Patch Changes
- Updated dependencies [
2f805a7dd
,f816136a0
]:- @gradio/upload@0.4.2
- @gradio/atoms@0.2.2
- @gradio/icons@0.2.1
- @gradio/file@0.2.6
- @gradio/checkbox@0.2.2
- @gradio/statustracker@0.3.2
0.3.5
Patch Changes
- Updated dependencies [
324867f63
]:- @gradio/client@0.8.1
- @gradio/file@0.2.5
- @gradio/upload@0.4.1
0.3.4
Patch Changes
- Updated dependencies [
854b482f5
,f1409f95e
]:- @gradio/upload@0.4.0
- @gradio/client@0.8.0
- @gradio/file@0.2.4
0.3.3
Patch Changes
- Updated dependencies [
bca6c2c80
,3cdeabc68
,fad92c29d
]:- @gradio/client@0.7.2
- @gradio/atoms@0.2.1
- @gradio/upload@0.3.3
- @gradio/file@0.2.3
- @gradio/checkbox@0.2.1
- @gradio/statustracker@0.3.1
0.3.2
Fixes
- #5876
d7a1a6559
- Fix file overflow and add keyboard navigation toFileExplorer
. Thanks @hannahblair!
0.3.1
Patch Changes
- Updated dependencies [
2ba14b284
]:- @gradio/client@0.7.1
- @gradio/file@0.2.1
- @gradio/upload@0.3.1
0.3.0
Features
0.3.0-beta.2
Features
- #6143
e4f7b4b40
- fix circular dependency with client + upload. Thanks @pngwn! - #6149
90318b1dd
- swapmode
on the frontned tointeractive
to match the backend. Thanks @pngwn!
0.3.0-beta.1
Features
- #6016
83e947676
- Format js in v4 branch. Thanks @freddyaboulton!
0.3.0-beta.0
Features
0.2.2
Patch Changes
- Updated dependencies [
4e62b8493
,e70805d54
]:- @gradio/client@0.5.2
- @gradio/atoms@0.2.0
- @gradio/file@0.2.2
- @gradio/checkbox@0.2.3
- @gradio/statustracker@0.2.3
- @gradio/upload@0.3.3
0.2.1
Patch Changes
- Updated dependencies [
796145e2c
]:- @gradio/client@0.5.1
- @gradio/file@0.2.1
0.2.0
Highlights
new FileExplorer
component (#5672 e4a307ed6
)
Thanks to a new capability that allows components to communicate directly with the server without passing data via the value, we have created a new FileExplorer
component.
This component allows you to populate the explorer by passing a glob, but only provides the selected file(s) in your prediction function.
Users can then navigate the virtual filesystem and select files which will be accessible in your predict function. This component will allow developers to build more complex spaces, with more flexible input options.
For more information check the FileExplorer
documentation.
Thanks @aliabid94!