@wscsports/blaze-web-sdk 0.16.0 → 0.17.1
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 +1 -1
- package/publish/index.d.ts +8 -0
- package/publish/index.js +1 -1
package/package.json
CHANGED
package/publish/index.d.ts
CHANGED
|
@@ -987,6 +987,7 @@ export declare class BlazeButton extends BaseWidget {
|
|
|
987
987
|
private setIsDisabled;
|
|
988
988
|
private setHeight;
|
|
989
989
|
private setWidth;
|
|
990
|
+
setDataTestId(value: string): void;
|
|
990
991
|
}
|
|
991
992
|
|
|
992
993
|
export declare const CTA_BUTTON_ATTRIBUTES: {
|
|
@@ -1857,11 +1858,18 @@ export declare const linkIconSvg = "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaH
|
|
|
1857
1858
|
export declare const checkMarkSvg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPG1hc2sgaWQ9Im1hc2swXzUxMl8xMDY4IiBzdHlsZT0ibWFzay10eXBlOmFscGhhIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiPgo8cmVjdCB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9IiNEOUQ5RDkiLz4KPC9tYXNrPgo8ZyBtYXNrPSJ1cmwoI21hc2swXzUxMl8xMDY4KSI+CjxwYXRoIGQ9Ik05LjU1MDEgMThMMy44NTAxIDEyLjNMNS4yNzUxIDEwLjg3NUw5LjU1MDEgMTUuMTVMMTguNzI1MSA1Ljk3NDk4TDIwLjE1MDEgNy4zOTk5OEw5LjU1MDEgMThaIiBmaWxsPSIjRjBGMEYwIi8+CjwvZz4KPC9zdmc+Cg==";
|
|
1858
1859
|
|
|
1859
1860
|
export interface AccessibilityContext {
|
|
1861
|
+
trigger: 'user' | 'auto' | 'navigation' | 'modal';
|
|
1860
1862
|
navigationType?: string;
|
|
1863
|
+
previousPosition?: number;
|
|
1864
|
+
}
|
|
1861
1865
|
export interface ModalContext extends AccessibilityContext {
|
|
1866
|
+
position: number;
|
|
1862
1867
|
total: number;
|
|
1868
|
+
title?: string;
|
|
1863
1869
|
isPlaying?: boolean;
|
|
1870
|
+
isMuted?: boolean;
|
|
1864
1871
|
hasClosedCaptions?: boolean;
|
|
1872
|
+
pagePosition?: number;
|
|
1865
1873
|
totalPages?: number;
|
|
1866
1874
|
}
|
|
1867
1875
|
export interface UserActionContext extends AccessibilityContext {
|