gradio/js/statustracker/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

16 KiB

@gradio/statustracker

0.9.3

Dependency updates

  • @gradio/atoms@0.10.1

0.9.2

Dependency updates

  • @gradio/atoms@0.10.0
  • @gradio/icons@0.8.1

0.9.1

Dependency updates

  • @gradio/atoms@0.9.2

0.9.0

Features

  • #9681 2ed2361 - Allow setting title in gr.Info/Warning/Error. Thanks @ABucket!

Dependency updates

  • @gradio/atoms@0.9.1

0.8.1

Features

  • #9617 c163182 - Fix dark mode detection and container height. Thanks @pngwn!

0.8.0

Features

Dependencies

  • @gradio/atoms@0.9.0
  • @gradio/icons@0.8.0
  • @gradio/utils@0.7.0

0.8.0-beta.5

Dependency updates

  • @gradio/icons@0.8.0-beta.4
  • @gradio/atoms@0.9.0-beta.5

0.8.0-beta.4

Dependency updates

  • @gradio/atoms@0.9.0-beta.4

0.8.0-beta.3

Dependency updates

  • @gradio/icons@0.8.0-beta.3
  • @gradio/atoms@0.9.0-beta.3

0.8.0-beta.2

Features

Dependency updates

  • @gradio/atoms@0.9.0-beta.2
  • @gradio/icons@0.8.0-beta.2
  • @gradio/utils@0.7.0-beta.2

0.8.0-beta.1

Features

  • #9201 5492e74 - Move buttons from chat_interface into Chatbot. Thanks @freddyaboulton!

Dependency updates

  • @gradio/atoms@0.8.1-beta.1
  • @gradio/icons@0.8.0-beta.1
  • @gradio/utils@0.7.0-beta.1

0.8.0-beta.0

Features

  • #8941 97a7bf6 - Streaming inputs for 5.0. Thanks @freddyaboulton!

0.7.6

Fixes

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

Dependency updates

  • @gradio/utils@0.6.1
  • @gradio/atoms@0.8.1
  • @gradio/icons@0.7.2

0.7.5

Features

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

Dependency updates

  • @gradio/utils@0.6.0
  • @gradio/atoms@0.8.0
  • @gradio/icons@0.7.1

0.7.4

Dependency updates

  • @gradio/atoms@0.7.9
  • @gradio/icons@0.7.0

0.7.3

Dependency updates

  • @gradio/atoms@0.7.8
  • @gradio/icons@0.6.1
  • @gradio/utils@0.5.2

0.7.2

Features

  • #8817 34510db - Allow HTML in alert modals. Thanks @abidlabs!
  • #8821 cea3bf9 - Fix dependency loop with statustracker and markdown. Thanks @aliabd!

Dependency updates

  • @gradio/atoms@0.7.7

0.7.1

Fixes

  • #8748 a9307c6 - Chatbot generating scroll and click fix. Thanks @freddyaboulton!

Dependency updates

  • @gradio/atoms@0.7.6
  • @gradio/utils@0.5.1
  • @gradio/icons@0.6.0

0.7.0

Features

  • #8489 c2a0d05 - Control Display of Error, Info, Warning. Thanks @freddyaboulton!

Fixes

  • #8543 a4433be - Ability to disable orange progress animation for generators by setting show_progress='minimal' or show_progress='hidden' in the event definition. This is a small visual breaking change but it aligns better with the expected behavior of the show_progress parameter. Also added show_progress to gr.Interface and gr.ChatInterface. Thanks @freddyaboulton!

Dependency updates

  • @gradio/atoms@0.7.5
  • @gradio/utils@0.5.0
  • @gradio/icons@0.5.0

0.6.0

Features

  • #8398 945ac83 - Improve rendering. Thanks @aliabid94!
  • #8409 8028c33 - Render decorator documentation. Thanks @aliabid94!

Fixes

  • #8372 89d6a17 - Change z-index of status tracker. Thanks @hannahblair!

0.5.5

Dependency updates

  • @gradio/utils@0.4.2
  • @gradio/atoms@0.7.4

0.5.4

Features

  • #8279 4350215 - Link to troubleshooting guide in the custom component loading status. Thanks @freddyaboulton!

0.5.3

Fixes

  • #8261 719d596 - Fix bug where status tracker was the target of pointer events. Thanks @freddyaboulton!

0.5.2

Dependency updates

  • @gradio/atoms@0.7.3
  • @gradio/icons@0.4.1

0.5.1

Dependency updates

  • @gradio/atoms@0.7.2
  • @gradio/utils@0.4.1
  • @gradio/column@0.1.1

0.5.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

  • @gradio/atoms@0.7.1
  • @gradio/column@0.1.1
  • @gradio/utils@0.4.0

0.4.12

Dependency updates

  • @gradio/utils@0.3.2
  • @gradio/atoms@0.7.0
  • @gradio/icons@0.4.0

0.4.11

Dependency updates

  • @gradio/utils@0.3.1
  • @gradio/atoms@0.6.2

0.4.10

Dependency updates

  • @gradio/atoms@0.6.1
  • @gradio/icons@0.3.4

0.4.9

Dependency updates

  • @gradio/atoms@0.6.0

0.4.8

Fixes

0.4.7

Patch Changes

  • Updated dependencies [f191786]:
    • @gradio/icons@0.3.3
    • @gradio/atoms@0.5.3

0.4.6

Patch Changes

  • Updated dependencies [065c5b1]:
    • @gradio/utils@0.3.0
    • @gradio/atoms@0.5.2

0.4.5

Patch Changes

  • Updated dependencies [fdd1521]:
    • @gradio/utils@0.2.2
    • @gradio/atoms@0.5.1

0.4.4

Patch Changes

  • Updated dependencies [5727b92, c60ad4d]:
    • @gradio/utils@0.2.1
    • @gradio/atoms@0.5.0

0.4.3

Features

  • #6814 828fb9e - Refactor queue so that there are separate queues for each concurrency id. Thanks @aliabid94!

0.4.2

Patch Changes

  • Updated dependencies [053bec9, 4d1cbbc]:
    • @gradio/icons@0.3.2
    • @gradio/atoms@0.4.0

0.4.1

Patch Changes

  • Updated dependencies [206af31]:
    • @gradio/icons@0.3.1
    • @gradio/atoms@0.3.1

0.4.0

Highlights

New ImageEditor component (#6169 9caddc17b)

A brand new component, completely separate from Image that provides simple editing capabilities.

  • Set background images from file uploads, webcam, or just paste!
  • Crop images with an improved cropping UI. App authors can event set specific crop size, or crop ratios (1:1, etc)
  • Paint on top of any image (or no image) and erase any mistakes!
  • The ImageEditor supports layers, confining draw and erase actions to that layer.
  • More flexible access to data. The image component returns a composite image representing the final state of the canvas as well as providing the background and all layers as individual images.
  • Fully customisable. All features can be enabled and disabled. Even the brush color swatches can be customised.


def fn(im):
    im["composite"] # the full canvas
    im["background"] # the background image
    im["layers"] # a list of individual layers


im = gr.ImageEditor(
    # decide which sources you'd like to accept
    sources=["upload", "webcam", "clipboard"],
    # set a cropsize constraint, can either be a ratio or a concrete [width, height]
    crop_size="1:1",
    # enable crop (or disable it)
    transforms=["crop"],
    # customise the brush
    brush=Brush(
      default_size="25", # or leave it as 'auto'
      color_mode="fixed", # 'fixed' hides the user swatches and colorpicker, 'defaults' shows it
      default_color="hotpink", # html names are supported
      colors=[
        "rgba(0, 150, 150, 1)", # rgb(a)
        "#fff", # hex rgb
        "hsl(360, 120, 120)" # in fact any valid colorstring
      ]
    ),
    brush=Eraser(default_size="25")
)

Thanks @pngwn!

0.3.2

Patch Changes

  • Updated dependencies [f816136a0]:
    • @gradio/atoms@0.2.2
    • @gradio/icons@0.2.1

0.3.1

Patch Changes

0.3.0

Features

0.3.0-beta.8

Features

0.3.0-beta.7

Patch Changes

  • Updated dependencies [83e947676, 9cad2127b, dbb7de5e0]:
    • @gradio/column@0.1.0-beta.3
    • @gradio/icons@0.2.0-beta.2
    • @gradio/utils@0.2.0-beta.5
    • @gradio/atoms@0.2.0-beta.5

0.3.0-beta.6

Features

0.2.3

Patch Changes

  • Updated dependencies [e70805d54]:
    • @gradio/atoms@0.2.0

0.2.2

Patch Changes

  • Updated dependencies []:
    • @gradio/atoms@0.1.4

0.2.1

Patch Changes

  • Updated dependencies [8f0fed857]:
    • @gradio/icons@0.2.0
    • @gradio/atoms@0.1.3

0.2.0

Features

  • #5342 afac0006 - significantly improve the performance of gr.Dataframe for large datasets. Thanks @pngwn!

0.1.1

Patch Changes

  • Updated dependencies [abf1c57d]:
    • @gradio/icons@0.1.0
    • @gradio/atoms@0.1.1

0.1.0

Features

  • #5215 fbdad78a - Lazy load interactive or static variants of a component individually, rather than loading both variants regardless. This change will improve performance for many applications. Thanks @pngwn!
  • #5216 4b58ea6d - Update i18n tokens and locale files. Thanks @hannahblair!