my_gradio / js /simpledropdown /CHANGELOG.md
xray918's picture
Upload folder using huggingface_hub
0ad74ed verified

A newer version of the Gradio SDK is available: 5.7.1

Upgrade

@gradio/simpledropdown

0.3.1

Dependency updates

0.3.0

Features

Dependencies

0.3.0-beta.5

Dependency updates

0.3.0-beta.4

Features

  • #9521 06ef22e - Allow info= to render markdown. Thanks @dawoodkhan82!

Dependency updates

0.2.13-beta.3

Dependency updates

0.2.13-beta.2

Dependency updates

0.2.13-beta.2

Dependency updates

0.2.13-beta.1

Dependency updates

0.2.13

Fixes

  • #9163 2b6cbf2 - fix exports and generate types. Thanks @pngwn!

Dependency updates

0.2.12

Features

  • #9118 e1c404d - setup npm-previews of all packages. Thanks @pngwn!

Dependency updates

0.2.11

Dependency updates

0.2.10

Dependency updates

0.2.9

Dependency updates

0.2.8

Dependency updates

0.2.7

Dependency updates

0.2.6

Dependency updates

0.2.6

Dependency updates

0.2.5

Dependency updates

0.2.4

Dependency updates

0.2.3

Dependency updates

0.2.2

Dependency updates

0.2.1

Dependency updates

0.2.0

Highlights

Setting File Upload Limits (#7909 2afca65)

We have added a max_file_size size parameter to launch() that limits to size of files uploaded to the server. This limit applies to each individual file. This parameter can be specified as a string or an integer (corresponding to the size in bytes).

The following code snippet sets a max file size of 5 megabytes.

import gradio as gr

demo = gr.Interface(lambda x: x, "image", "image")

demo.launch(max_file_size="5mb")
# or
demo.launch(max_file_size=5 * gr.FileSize.MB)

max_file_size_upload

Error states can now be cleared

When a component encounters an error, the error state shown in the UI can now be cleared by clicking on the x icon in the top right of the component. This applies to all types of errors, whether it's raised in the UI or the server.

error_modal_calculator

Thanks @freddyaboulton!

Fixes

  • #8066 624f9b9 - make gradio dev tools a local dependency rather than bundling. Thanks @pngwn!

Dependency updates

0.1.15

Dependency updates

0.1.14

Dependency updates

0.1.13

Dependency updates

0.1.12

Dependency updates

0.1.11

Patch Changes

0.1.10

Patch Changes

0.1.9

Patch Changes

0.1.8

Fixes

0.1.7

Patch Changes

0.1.6

Patch Changes

0.1.5

Patch Changes

0.1.4

Patch Changes

0.1.3

Patch Changes

0.1.2

Patch Changes

0.1.1

Patch Changes

0.1.0

Patch Changes

0.1.0-beta.3

Features

0.1.0-beta.2

Features