@wscsports/blaze-web-sdk 0.1.54 → 0.1.56
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 +6 -3
- package/publish/index.js +1 -1
package/package.json
CHANGED
package/publish/index.d.ts
CHANGED
|
@@ -1012,6 +1012,7 @@ export interface LayoutStyle {
|
|
|
1012
1012
|
rows: number;
|
|
1013
1013
|
columns: number;
|
|
1014
1014
|
itemRatio: number;
|
|
1015
|
+
skeleton: boolean;
|
|
1015
1016
|
labelStyle: LabelStyle;
|
|
1016
1017
|
lines: number;
|
|
1017
1018
|
horizontalItemsSpacing: number;
|
|
@@ -1542,13 +1543,16 @@ export declare class BlazeWidgetItem extends BaseWidget {
|
|
|
1542
1543
|
newChip: HTMLElement | undefined;
|
|
1543
1544
|
state: itemStateType;
|
|
1544
1545
|
isLive: boolean | undefined;
|
|
1545
|
-
|
|
1546
|
-
|
|
1546
|
+
isDisplaySkeleton: boolean;
|
|
1547
|
+
blazeSkeletonThumbnail: BlazeSkeleton | undefined;
|
|
1548
|
+
blazeSkeletonLabel: BlazeSkeleton | undefined;
|
|
1547
1549
|
statusIndicatorSettings: IndicatorStyle;
|
|
1548
1550
|
constructor(options: BlazeWidgetItemOptions);
|
|
1549
1551
|
setTheme(theme: IWidgetTheme): void;
|
|
1550
1552
|
setLive(): void;
|
|
1551
1553
|
setData(data: IStory): void;
|
|
1554
|
+
updateLabel(): void;
|
|
1555
|
+
updateThumbnail(thumbnailUrl: string): void;
|
|
1552
1556
|
analyticsCalls: any;
|
|
1553
1557
|
event(action: WidgetAction, data: Partial<WidgetEvent>, label?: string | undefined): void;
|
|
1554
1558
|
get chipDimenssions(): {
|
|
@@ -1587,7 +1591,6 @@ export declare class BlazeWidgetLayout extends BlazeWidgetScrollable implements
|
|
|
1587
1591
|
reloadTimeout: NodeJS.Timeout | undefined;
|
|
1588
1592
|
analyticsStack: Record<WidgetAction, boolean>;
|
|
1589
1593
|
intersectionObserver: IntersectionObserver;
|
|
1590
|
-
isVisibleEventSent: boolean;
|
|
1591
1594
|
onResizeEvent: (this: Window, ev: UIEvent) => void;
|
|
1592
1595
|
constructor();
|
|
1593
1596
|
connectedCallback(): void;
|