@namiml/web-sdk 3.4.0-dev.202605141714 → 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.
@@ -145,6 +145,11 @@ declare class NamiButton extends NamiElement {
145
145
  inFocusedState: boolean;
146
146
  scaleFactor: number;
147
147
  minSDKVersion: TSemverObj;
148
+ /** Tracks which nami-button most recently received focus so `_handleFocus`
149
+ * can dedupe `cancelSpeech()` calls — only cancelling when focus actually
150
+ * moves to a different button, not when the same button re-fires focus
151
+ * during re-renders (e.g. product buttons after SKU data resolves). */
152
+ private static _lastFocusedButton;
148
153
  constructor();
149
154
  firstTextValue(): string | undefined;
150
155
  connectedCallback(): void;