@namiml/web-sdk 3.4.0-dev.202605141520 → 3.4.0-dev.202605180118

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.
@@ -6,6 +6,11 @@ export declare class NamiButton extends NamiElement {
6
6
  inFocusedState: boolean;
7
7
  scaleFactor: number;
8
8
  minSDKVersion: TSemverObj;
9
+ /** Tracks which nami-button most recently received focus so `_handleFocus`
10
+ * can dedupe `cancelSpeech()` calls — only cancelling when focus actually
11
+ * moves to a different button, not when the same button re-fires focus
12
+ * during re-renders (e.g. product buttons after SKU data resolves). */
13
+ private static _lastFocusedButton;
9
14
  constructor();
10
15
  firstTextValue(): string | undefined;
11
16
  connectedCallback(): void;