@wscsports/blaze-web-sdk 0.1.812 → 0.1.815
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 +11 -4
- package/publish/index.js +1 -1
package/package.json
CHANGED
package/publish/index.d.ts
CHANGED
|
@@ -503,6 +503,7 @@ export interface WidgetsTagNameMap {
|
|
|
503
503
|
'blaze-widget-image': BlazeWidgetStoryImage;
|
|
504
504
|
'blaze-widget-video': BlazeWidgetStoryVideo;
|
|
505
505
|
'blaze-widget-moment-video': BlazeWidgetMomentVideo;
|
|
506
|
+
'blaze-widget-interaction': BlazeWidgetInteraction;
|
|
506
507
|
'blaze-loader': BlazeLoader;
|
|
507
508
|
'blaze-skeleton': BlazeSkeleton;
|
|
508
509
|
'blaze-chip': BlazeChip;
|
|
@@ -532,6 +533,7 @@ interface WidgetsTagNameOptionsMap {
|
|
|
532
533
|
'blaze-widget-image': {};
|
|
533
534
|
'blaze-widget-video': {};
|
|
534
535
|
'blaze-widget-moment-video': {};
|
|
536
|
+
'blaze-widget-interaction': {};
|
|
535
537
|
'blaze-loader': {};
|
|
536
538
|
'blaze-skeleton': {};
|
|
537
539
|
'blaze-chip': {};
|
|
@@ -1802,6 +1804,14 @@ export declare class BlazeWidgetStoryAd extends BlazeWidgetStoryBase {
|
|
|
1802
1804
|
private initStyles;
|
|
1803
1805
|
}
|
|
1804
1806
|
|
|
1807
|
+
export declare class BlazeWidgetInteraction extends BaseWidget {
|
|
1808
|
+
private iframe;
|
|
1809
|
+
loadInteraction(interactionData: Interaction): void;
|
|
1810
|
+
showInteraction(): void;
|
|
1811
|
+
hideInteraction(): void;
|
|
1812
|
+
unloadInteraction(): void;
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1805
1815
|
export interface BlazeWidgetItemOptions {
|
|
1806
1816
|
theme: IWidgetTheme;
|
|
1807
1817
|
content: IStory;
|
|
@@ -2364,7 +2374,7 @@ export declare class BlazeWidgetStoryVideo extends BlazeWidgetStoryBase {
|
|
|
2364
2374
|
video: HTMLVideoElement;
|
|
2365
2375
|
loader: HTMLElement;
|
|
2366
2376
|
source: HTMLElement;
|
|
2367
|
-
|
|
2377
|
+
interactionElement: BlazeWidgetInteraction;
|
|
2368
2378
|
videoUrl: string | undefined;
|
|
2369
2379
|
videoFrameCallback?: any;
|
|
2370
2380
|
eventRenderBackgroundPercentageTriggered: Array<boolean>;
|
|
@@ -2420,9 +2430,6 @@ export declare class BlazeWidgetStoryVideo extends BlazeWidgetStoryBase {
|
|
|
2420
2430
|
onContentResumeRequested(): void;
|
|
2421
2431
|
removeAdLoader(): void;
|
|
2422
2432
|
loadInteraction(): void;
|
|
2423
|
-
showInteraction(): void;
|
|
2424
|
-
hideInteraction(): void;
|
|
2425
|
-
unloadInteraction(): void;
|
|
2426
2433
|
}
|
|
2427
2434
|
|
|
2428
2435
|
export declare class BlazeWidgetStory extends HTMLElement {
|