@artooi/ag-ui-web-component 0.8.0 → 0.8.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 +12 -1
- package/dist/ag-ui-web-component.bundle.js +15 -1
- package/dist/ag-ui-web-component.bundle.js.map +2 -2
- package/dist/index.js +15 -1
- 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 +14 -0
- package/src/version.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -3633,6 +3633,20 @@ var STYLES = `
|
|
|
3633
3633
|
padding-inline: max(12px, calc((100% - var(--ag-ui-content-max-width)) / 2));
|
|
3634
3634
|
}
|
|
3635
3635
|
|
|
3636
|
+
/* The rows between the message list and the composer (skill chips, the
|
|
3637
|
+
/-command palette, the missing-placeholder hint, the upload tray) line up
|
|
3638
|
+
with the column too \u2014 chips are padding-based, the palette/hint/tray are
|
|
3639
|
+
margin-based, so each gets its own inline axis nudged by the same gutter. */
|
|
3640
|
+
:host([placement="page"]) .skill-chips,
|
|
3641
|
+
:host([placement="page"]) .attachment-tray {
|
|
3642
|
+
padding-inline: max(12px, calc((100% - var(--ag-ui-content-max-width)) / 2));
|
|
3643
|
+
}
|
|
3644
|
+
|
|
3645
|
+
:host([placement="page"]) .skill-palette,
|
|
3646
|
+
:host([placement="page"]) .skill-hint {
|
|
3647
|
+
margin-inline: max(12px, calc((100% - var(--ag-ui-content-max-width)) / 2));
|
|
3648
|
+
}
|
|
3649
|
+
|
|
3636
3650
|
/* In the reading column the assistant well uses the full width; the user
|
|
3637
3651
|
message stays a right-aligned pill (its default align-self + max-width). */
|
|
3638
3652
|
:host([placement="page"]) .message--assistant {
|
|
@@ -6662,7 +6676,7 @@ function setControlValue(el, value) {
|
|
|
6662
6676
|
}
|
|
6663
6677
|
|
|
6664
6678
|
// src/version.ts
|
|
6665
|
-
var VERSION = "0.8.
|
|
6679
|
+
var VERSION = "0.8.1";
|
|
6666
6680
|
export {
|
|
6667
6681
|
AgUiChat,
|
|
6668
6682
|
AgUiClient,
|