Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 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
6 changes: 4 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@
"cwd": "examples/verdure/client",
"request": "launch",
"type": "dart",
"args": ["--dart-define=GEMINI_API_KEY=${env:GEMINI_API_KEY}"]
"args": [
"--dart-define=GEMINI_API_KEY=${env:GEMINI_API_KEY}"
]
},
{
"name": "catalog_gallery",
"cwd": "examples/catalog_gallery",
"cwd": "dev_tools/catalog_gallery",
"request": "launch",
"type": "dart"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/a2ui_agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# [a2ui_agent](https://pub.dev/packages/a2ui_agent) Changelog

## 0.0.1-wip

- Initial version.
2 changes: 1 addition & 1 deletion packages/a2ui_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `a2ui_core` Changelog
# [a2ui_core](https://pub.dev/packages/a2ui_core) Changelog

## 0.1.0

Expand Down
2 changes: 1 addition & 1 deletion packages/genai_primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `genai_primitives` Changelog
# [genai_primitives](https://pub.dev/packages/genai_primitives) Changelog

## 0.2.4

Expand Down
13 changes: 12 additions & 1 deletion packages/genui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
# `genui` Changelog
# [genui](https://pub.dev/packages/genui) Changelog

## 0.10.2

- Fixed `A2uiTransportAdapter.incomingText` trimming every streamed chunk, which
made words run together when chunks were concatenated.

- Added examples of how to use TextField.

- Fixed `TextField` variants: `longText` now grows to fit multiple lines,
`number` now rejects non-numeric input, and the `obscured`
example now sets `variant` so that it is actually obscured.

- `TextField.validationRegexp` is now enforced: the value has to match the
pattern in full, an empty field is exempt, and a value that does not match
shows an error and blocks `onSubmittedAction`. It was previously accepted and
ignored.

## 0.10.1

- Depend on `a2ui_core` 0.1.0, its first non-pre-release version.
Expand Down
Loading
Loading