gradio/js/storybook/CHANGELOG.md
Gradio PR Bot 8e5b5a201e
chore: update versions (#9790)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-25 12:33:07 -07:00

5.4 KiB

@self/storybook

0.8.0

Features

0.7.0

Features

0.7.0-beta.1

Features

  • #9204 3c73f00 - 🔡 Update default core Gradio font. Thanks @hannahblair!

0.6.2

Fixes

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

0.6.1

Features

Fixes

  • #9116 ba6322e - Fix image height content fit. Thanks @hannahblair!

0.6.0

Features

  • #8131 bb504b4 - Gradio components in gr.Chatbot(). Thanks @dawoodkhan82!

0.5.0

Features

  • #8121 f5b710c - chore(deps): update dependency eslint to v9. Thanks @renovate!
  • #8209 b9afe93 - Rename eventSource_Factory and fetch_implementation. Thanks @hannahblair!

Fixes

  • #8179 6a218b4 - rework upload to be a class method + pass client into each component. Thanks @pngwn!

0.4.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!

0.3.1

Features

  • #7743 a2badf1 - Migrate to Storybook 8. Thanks @hannahblair!

0.3.0

Features

0.2.0

Features

0.1.0

Features

0.1.0-beta.0

Features

Fixes