@wscsports/blaze-web-sdk 0.0.102 → 0.0.104
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/README.md +1 -1
- package/package.json +1 -1
- package/publish/index.d.ts +2 -5
- package/publish/index.js +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/publish/index.d.ts
CHANGED
|
@@ -640,11 +640,6 @@ export interface IBlazeSDKOptions {
|
|
|
640
640
|
previewUrl: string;
|
|
641
641
|
previewMomentUrl: string;
|
|
642
642
|
}
|
|
643
|
-
export interface IBlazeSDK {
|
|
644
|
-
Initialize: (apiKey: string) => Promise<void>;
|
|
645
|
-
CreateWidgetView: (id: string, options: IWidgetViewOptions) => any;
|
|
646
|
-
Theme: () => IWidgetTheme;
|
|
647
|
-
}
|
|
648
643
|
|
|
649
644
|
export interface IDatabase {
|
|
650
645
|
dbInstance: IDBDatabase;
|
|
@@ -1946,6 +1941,7 @@ export declare class BlazeWidgetStory extends HTMLElement {
|
|
|
1946
1941
|
referring: ReferringEventInfo | undefined;
|
|
1947
1942
|
resumeAfterUnfocus: boolean;
|
|
1948
1943
|
onFocusCallback: () => void;
|
|
1944
|
+
onBlurCallback: () => void;
|
|
1949
1945
|
totalPlayStopwatch: Stopwatch;
|
|
1950
1946
|
playerStyle: StoryPlayerStyle;
|
|
1951
1947
|
listeners: EventsListener;
|
|
@@ -1969,6 +1965,7 @@ export declare class BlazeWidgetStory extends HTMLElement {
|
|
|
1969
1965
|
event(action: StoryAction, data: Partial<StoryEvent>, label?: string | undefined): void;
|
|
1970
1966
|
connectedCallback(): void;
|
|
1971
1967
|
onFocus(): void;
|
|
1968
|
+
onBlur(): void;
|
|
1972
1969
|
close(): void;
|
|
1973
1970
|
pause(): void;
|
|
1974
1971
|
resume(): void;
|