@artooi/ag-ui-web-component 0.33.0 → 0.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -1
- package/dist/ag-ui-web-component.bundle.js +37 -22
- package/dist/ag-ui-web-component.bundle.js.map +2 -2
- package/dist/index.js +17 -2
- package/dist/index.js.map +2 -2
- package/dist/ui/styles.d.ts +1 -1
- package/dist/ui/styles.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/ui/styles.ts +16 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.33.1] — 2026-09-03
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **A markdown table in an answer scrolled, at last.** The stylesheet has always
|
|
15
|
+
said a wide table should scroll inside its own box, and it never could:
|
|
16
|
+
`.message` set `word-break: break-word`, which is the legacy spelling of
|
|
17
|
+
"break anywhere", and breaking anywhere drops the **min-content width** of
|
|
18
|
+
every descendant to a single character. A table's column algorithm takes
|
|
19
|
+
min-content as an input, so the table always fitted `max-width: 100%`, the
|
|
20
|
+
`overflow-x: auto` beneath it never had anything to scroll, and the columns
|
|
21
|
+
absorbed the pressure by rendering one letter per line instead. A seven-column
|
|
22
|
+
header row came out **162px tall**.
|
|
23
|
+
|
|
24
|
+
It is now `overflow-wrap: break-word`, which breaks a word only when it would
|
|
25
|
+
otherwise overflow its line and leaves min-content alone. Same protection
|
|
26
|
+
against a long unbroken token blowing out a bubble -- which is all the
|
|
27
|
+
declaration was ever for -- and the table is free to be wider than the panel
|
|
28
|
+
and scroll. Measured at the default 380px panel: the header row drops from
|
|
29
|
+
162px to 50px, the table from 524px to 189px, the narrowest column from 36px
|
|
30
|
+
to 63px, and `scrollWidth` finally exceeds `clientWidth` (563 against 266).
|
|
31
|
+
|
|
32
|
+
Reported against 0.32.0 and present at least as far back as 0.27.0, so this is
|
|
33
|
+
not a recent regression. Thanks to the TrustPoint team for the measurements
|
|
34
|
+
and the revert control, which is what pinned the cause to one declaration.
|
|
35
|
+
|
|
36
|
+
The three other `word-break: break-word` declarations are untouched: they are
|
|
37
|
+
on `.thoughts-body`, `.tool-call-result` and `.confirm-args`, all of which are
|
|
38
|
+
filled with `textContent` and so cannot contain a table.
|
|
39
|
+
|
|
40
|
+
|
|
10
41
|
## [0.33.0] — 2026-09-02
|
|
11
42
|
|
|
12
43
|
### Added
|
|
@@ -2809,7 +2840,8 @@ hosts that both arrange the page the way it expects.
|
|
|
2809
2840
|
### Notes
|
|
2810
2841
|
- First release — exercising the automated npm OIDC publish pipeline end-to-end.
|
|
2811
2842
|
|
|
2812
|
-
[Unreleased]: https://github.com/Artui/ag-ui-web-component/compare/v0.33.
|
|
2843
|
+
[Unreleased]: https://github.com/Artui/ag-ui-web-component/compare/v0.33.1...HEAD
|
|
2844
|
+
[0.33.1]: https://github.com/Artui/ag-ui-web-component/compare/v0.33.0...v0.33.1
|
|
2813
2845
|
[0.33.0]: https://github.com/Artui/ag-ui-web-component/compare/v0.32.0...v0.33.0
|
|
2814
2846
|
[0.32.0]: https://github.com/Artui/ag-ui-web-component/compare/v0.31.1...v0.32.0
|
|
2815
2847
|
[0.31.1]: https://github.com/Artui/ag-ui-web-component/compare/v0.31.0...v0.31.1
|