@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.
- package/dist/components/elements/Button.d.ts +5 -0
- package/dist/nami-web.cjs +25 -25
- package/dist/nami-web.d.ts +5 -0
- package/dist/nami-web.mjs +26 -26
- package/dist/nami-web.umd.js +26 -26
- package/dist/utils/tts.d.ts +83 -0
- package/package.json +2 -2
- package/dist/utils/vizio-tts.d.ts +0 -2
|
@@ -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;
|