@namiml/web-sdk 3.4.0-dev.202605141714 → 3.4.0-dev.202605182046
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/CHANGELOG.md +8 -0
- package/dist/components/Paywall.d.ts +5 -0
- package/dist/components/elements/Button.d.ts +5 -0
- package/dist/components/styles/modal.d.ts +2 -0
- package/dist/nami-web.cjs +144 -30
- package/dist/nami-web.d.ts +5 -0
- package/dist/nami-web.mjs +144 -30
- package/dist/nami-web.umd.js +144 -30
- package/dist/utils/tts.d.ts +83 -0
- package/package.json +2 -2
- package/dist/utils/vizio-tts.d.ts +0 -2
package/dist/nami-web.d.ts
CHANGED
|
@@ -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;
|