gradio/js/icons/CHANGELOG.md
Gradio PR Bot 5a2967e78a
chore: update versions (#9747)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-21 19:28:58 -07:00

11 KiB

@gradio/icons

0.8.1

Fixes

  • #9758 38701a9 - Fix icons not showing in Safari. Thanks @hannahblair!

0.8.0

Features

  • #8843 6f95286 - Built-in submit and stop buttons in gr.ChatInterface(multimodal=False), adding submit_btn and stop_btn props to gr.Textbox() and gr.MultimodalText()
  • #8843 6f95286 - Move buttons from chat_interface into Chatbot
  • #8843 6f95286 - Improve gr.Code
  • #8843 6f95286 - Open audio/image input stream only when queue is ready
  • #8843 6f95286 - Move icons into IconButtonWrapper
  • #8843 6f95286 - Chatbot autoscroll
  • #8843 6f95286 - Match style of textbox stop button to submit button

0.8.0-beta.4

Features

0.8.0-beta.3

Features

0.8.0-beta.2

Features

  • #9261 73647a0 - Move icons into IconButtonWrapper. Thanks @hannahblair!
  • #9280 7122420 - Match style of textbox stop button to submit button. Thanks @freddyaboulton!

0.8.0-beta.1

Features

  • #9235 f8b411f - Built-in submit and stop buttons in gr.ChatInterface(multimodal=False), adding submit_btn and stop_btn props to gr.Textbox() and gr.MultimodalText(). Thanks @whitphx!
  • #9201 5492e74 - Move buttons from chat_interface into Chatbot. Thanks @freddyaboulton!

0.8.0-beta.0

Features

  • #9149 3d7a9b8 - Open audio/image input stream only when queue is ready. Thanks @freddyaboulton!

0.7.2

Fixes

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

0.7.1

Features

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

0.7.0

Features

  • #8964 bf6bbd9 - Add min/max-imize button to gr.Image and gr.Gallery. Thanks @hannahblair!

0.6.1

Fixes

  • #8949 1e16f67 - Fix check icon in gr.JSON and gr.Code. Thanks @hannahblair!

0.6.0

Features

0.5.0

Features

  • #8590 65afffd - Fix multimodal chat look. Thanks @aliabid94!

Fixes

0.4.1

Features

  • #8236 bf909bd - Change upload icon for MultimodalTextbox. Thanks @dawoodkhan82!

0.4.0

Features

  • #8042 92139f3 - refresh the ImageEditor UI. Thanks @pngwn!
  • #8059 074ce38 - ensure the ImageEditor works correctly with layers and change events. Thanks @pngwn!

0.3.4

Fixes

  • #7848 8d7b3ca - Multimodal Textbox Loading + other fixes. Thanks @dawoodkhan82!

0.3.3

Fixes

0.3.2

Features

0.3.1

Fixes

0.3.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.2.1

Fixes

0.2.0

Features

0.2.0-beta.3

Features

0.2.0-beta.2

Features

0.2.0-beta.1

Features

0.2.0

Features

0.1.0

Highlights

Like/Dislike Button for Chatbot (#5391 abf1c57d)

Thanks @dawoodkhan82!