Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/dist/shinychat.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/dist/shinychat.css.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/src/chat/chat.scss
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ shiny-chat-container {
.shiny-chat-messages-wrapper {
position: relative;
min-height: 0; // Allow grid child to shrink
min-width: 0; // Allow grid child to shrink below content size (e.g. suggestion cards in a narrow sidebar)
overflow: clip; // Clip the absolutely-positioned button without creating a scroll container
}

Expand Down
4 changes: 4 additions & 0 deletions pkg-py/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* File attachment support: users can upload images, PDFs, and text files alongside chat messages via a file picker button, drag-and-drop, or clipboard paste. Enable with `chat_ui(allow_attachments=True)` or pass a list of MIME types to restrict accepted file types. When using `client=`, attachments are enabled automatically and converted to the appropriate chatlas content types. For manual wiring, declare a second `list[Attachment]` parameter on your `@chat.on_user_submit` handler and use `attachment_to_content()` to convert each attachment. The maximum combined attachment size defaults to approximately 30 MB and can be configured via the `SHINYCHAT_MAX_ATTACHMENT_SIZE` environment variable.

### Bug fixes

* Fixed suggestion cards and the greeting overflowing the chat container in narrow spaces such as sidebars. (#255)

## [0.5.1] - 2026-06-15

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion pkg-py/src/shinychat/www/GIT_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1d87b2928bc62de01717ae6d92a59c88c22b8780
7fca3b7bca87f9c476fbb2ac7e557830f50940b1
2 changes: 1 addition & 1 deletion pkg-py/src/shinychat/www/shinychat.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pkg-py/src/shinychat/www/shinychat.css.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions pkg-r/NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

## Bug fixes

* Fixed suggestion cards and the greeting overflowing the chat container in narrow spaces such as sidebars. (#255)

* Fixed the copy button on code blocks not working in some embedded contexts. (@thisisnic, #247)

# shinychat 0.4.0
Expand Down
2 changes: 1 addition & 1 deletion pkg-r/inst/lib/shiny/GIT_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1d87b2928bc62de01717ae6d92a59c88c22b8780
7fca3b7bca87f9c476fbb2ac7e557830f50940b1
2 changes: 1 addition & 1 deletion pkg-r/inst/lib/shiny/shinychat.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pkg-r/inst/lib/shiny/shinychat.css.map

Large diffs are not rendered by default.

Loading