@atelier-ui/angular 0.0.29 → 0.0.30

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.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "Atelier UI component library for Angular — LLM-optimised, accessible, design-token-driven",
5
5
  "keywords": [
6
6
  "angular",
@@ -1731,12 +1731,23 @@ declare class LlmChatMessage {
1731
1731
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<LlmChatMessage, "llm-chat-message", never, { "role": { "alias": "role"; "required": false; "isSignal": true; }; "failed": { "alias": "failed"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
1732
1732
  }
1733
1733
  /**
1734
- * Typing indicator (three animated dots). Render at the end of the message
1735
- * list while the assistant is streaming a response.
1734
+ * Typing indicator (three animated dots).
1735
+ *
1736
+ * Two display modes:
1737
+ * - **Standalone bubble** (default) — render as the last child of
1738
+ * `LlmChatMessages` to show "the assistant is starting to respond"
1739
+ * before any tokens arrive.
1740
+ * - **Inline cursor** (`inline`) — render as the LAST child INSIDE
1741
+ * `LlmChatMessage role="assistant"` to show the dots after the
1742
+ * currently-streaming text. The bubble background is dropped so the
1743
+ * dots read as a typing caret at the end of the partial response.
1736
1744
  */
1737
1745
  declare class LlmChatTyping {
1746
+ /** When true, renders as an inline cursor without bubble chrome. */
1747
+ readonly inline: _angular_core.InputSignal<boolean>;
1748
+ protected readonly hostClasses: _angular_core.Signal<"" | "is-inline">;
1738
1749
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<LlmChatTyping, never>;
1739
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<LlmChatTyping, "llm-chat-typing", never, {}, {}, never, never, true, never>;
1750
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<LlmChatTyping, "llm-chat-typing", never, { "inline": { "alias": "inline"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1740
1751
  }
1741
1752
  /**
1742
1753
  * Tappable suggestion chip used in the empty state to seed a conversation.