@atelier-ui/angular 0.2.36 → 0.2.38

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atelier-ui/angular",
3
- "version": "0.2.36",
3
+ "version": "0.2.38",
4
4
  "description": "Atelier component library for Angular — LLM-optimised, accessible, design-token-driven",
5
5
  "keywords": [
6
6
  "angular",
@@ -1836,6 +1836,15 @@ declare class AtlStepper implements AtlStepperContext {
1836
1836
  unregisterStep(id: string): void;
1837
1837
  /** @internal — called by AtlStep effect when inputs change */
1838
1838
  updateStep(id: string, info: Partial<StepInfo>): void;
1839
+ /**
1840
+ * Whether step `index` can be activated right now: not itself disabled, and —
1841
+ * in linear mode — either at or behind the active step, or ahead of it with
1842
+ * every step before it completed or optional. Drives both `goTo()`'s guard
1843
+ * and the header button's native `disabled` state, so a step that cannot be
1844
+ * activated is also not focusable (no roving-tabindex bookkeeping needed —
1845
+ * the header is a list, not a tab widget).
1846
+ */
1847
+ protected isReachable(index: number): boolean;
1839
1848
  /** Navigate to a specific step index. Respects linear mode. */
1840
1849
  goTo(index: number): void;
1841
1850
  /** Advance to the next step. */
@@ -1966,6 +1975,17 @@ declare class AtlChatHeader {
1966
1975
  * `atl-chat-typing`, or `atl-chat-suggestion` children inside. Auto-scrolls
1967
1976
  * to the bottom whenever children are added or content changes — important
1968
1977
  * for streaming responses where new tokens are appended live.
1978
+ *
1979
+ * Renders `role="log"` (named, `aria-label="Conversation"`) with
1980
+ * `aria-live="polite"` on the host — the live region that announces new
1981
+ * messages without interrupting whatever the user is doing. `log` is not
1982
+ * `list`: an element carries exactly one role, so the projected
1983
+ * `atl-chat-message` `listitem`s get their required list parent from a
1984
+ * second, nested element (`.messages-list`, `role="list"`) rather than from
1985
+ * the log host itself. That wrapper is `display: contents` so it never
1986
+ * affects the flex/gap layout of the messages — verified (Chromium, Firefox,
1987
+ * WebKit): the gap between messages is unchanged, and Chromium's native
1988
+ * accessibility tree shows `log "Conversation" > list "Messages" > listitem, listitem`.
1969
1989
  */
1970
1990
  declare class AtlChatMessages {
1971
1991
  private readonly host;