mesauth-angular 1.21.0 → 1.23.0
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/README.md +5 -0
- package/fesm2022/mesauth-angular.mjs +1585 -979
- package/fesm2022/mesauth-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/types/mesauth-angular.d.ts +148 -5
package/README.md
CHANGED
|
@@ -4,6 +4,11 @@ Angular helper library to connect to a backend API and SignalR hub to surface th
|
|
|
4
4
|
|
|
5
5
|
## Changelog
|
|
6
6
|
|
|
7
|
+
### v1.22.0 (2026-05-16) — **AI panel push-layout mode**
|
|
8
|
+
- **AI chat panel now pushes the host layout by default.** When the panel opens, `<body>` gets `padding-inline-end: var(--ma-ai-panel-width)` so the host app reflows to make room — wide content (tables, charts) is no longer hidden under the drawer. The library self-injects the global stylesheet on first construction; **zero changes required in consumer apps**.
|
|
9
|
+
- New config flag `panelMode: 'static' | 'floating'` on `provideMesAuthAi()`. Default is `'static'` (push-layout). Pass `'floating'` to keep the v1.21 overlay behaviour for hosts whose layout can't reflow safely.
|
|
10
|
+
- CSS variable `--ma-ai-panel-width` is set live during drag-resize, so the host reflows smoothly as the user widens/narrows the panel.
|
|
11
|
+
|
|
7
12
|
### v1.21.0 (2026-05-16) — **AI Assistant integration docs**
|
|
8
13
|
- Documentation only: full integration guide for the AI Assistant module added below ([jump](#ai-assistant)). CHANGELOG backfilled for v1.19.0 + v1.20.0 entries.
|
|
9
14
|
|