@wscsports/blaze-web-sdk 0.4.0 → 0.4.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 +31 -32
- package/publish/index.js +1 -1
package/package.json
CHANGED
package/publish/index.d.ts
CHANGED
|
@@ -655,7 +655,7 @@ export declare class BlazeButton extends BaseWidget {
|
|
|
655
655
|
isAnimationOnDesktopInitialized: boolean;
|
|
656
656
|
get refElement(): ShadowRoot | this;
|
|
657
657
|
constructor();
|
|
658
|
-
static get observedAttributes(): ("height" | "order" | "width" | "icon-color" | "blaze-btn-visible" | "
|
|
658
|
+
static get observedAttributes(): ("height" | "order" | "width" | "icon-color" | "disabled" | "blaze-btn-visible" | "blaze-btn-hidden" | "button-desktop-animation")[];
|
|
659
659
|
private onMouseEnter;
|
|
660
660
|
private onMouseLeave;
|
|
661
661
|
private onClick;
|
|
@@ -1488,49 +1488,48 @@ export interface IHttpResponse<T = any> extends IResponse<T> {
|
|
|
1488
1488
|
httpStatus?: number;
|
|
1489
1489
|
}
|
|
1490
1490
|
|
|
1491
|
-
export type SvgIconData = `data:image/svg+xml;base64,${string}`;
|
|
1492
1491
|
export type BaseBlazeIcons = {
|
|
1493
|
-
play:
|
|
1494
|
-
pause:
|
|
1495
|
-
mute:
|
|
1496
|
-
unmute:
|
|
1497
|
-
share:
|
|
1498
|
-
closedCaptionsOn:
|
|
1499
|
-
closedCaptionsOff:
|
|
1492
|
+
play: string;
|
|
1493
|
+
pause: string;
|
|
1494
|
+
mute: string;
|
|
1495
|
+
unmute: string;
|
|
1496
|
+
share: string;
|
|
1497
|
+
closedCaptionsOn: string;
|
|
1498
|
+
closedCaptionsOff: string;
|
|
1500
1499
|
};
|
|
1501
1500
|
export type BlazeStoryIcons = BaseBlazeIcons & {
|
|
1502
|
-
fullscreen:
|
|
1503
|
-
exitMobileTablet:
|
|
1504
|
-
exitDesktop:
|
|
1505
|
-
customActionButtonOne?:
|
|
1506
|
-
customActionButtonTwo?:
|
|
1501
|
+
fullscreen: string;
|
|
1502
|
+
exitMobileTablet: string;
|
|
1503
|
+
exitDesktop: string;
|
|
1504
|
+
customActionButtonOne?: string;
|
|
1505
|
+
customActionButtonTwo?: string;
|
|
1507
1506
|
navigation: {
|
|
1508
|
-
nextPage:
|
|
1509
|
-
prevPage:
|
|
1510
|
-
nextStory:
|
|
1511
|
-
prevStory:
|
|
1507
|
+
nextPage: string;
|
|
1508
|
+
prevPage: string;
|
|
1509
|
+
nextStory: string;
|
|
1510
|
+
prevStory: string;
|
|
1512
1511
|
};
|
|
1513
1512
|
};
|
|
1514
1513
|
export type BlazeMomentIconsStyle = BaseBlazeIcons & {
|
|
1515
|
-
exit:
|
|
1516
|
-
like:
|
|
1517
|
-
unlike:
|
|
1518
|
-
customActionButtonOne?:
|
|
1519
|
-
customActionButtonTwo?:
|
|
1514
|
+
exit: string;
|
|
1515
|
+
like: string;
|
|
1516
|
+
unlike: string;
|
|
1517
|
+
customActionButtonOne?: string;
|
|
1518
|
+
customActionButtonTwo?: string;
|
|
1520
1519
|
navigation: {
|
|
1521
|
-
nextMoment:
|
|
1522
|
-
prevMoment:
|
|
1520
|
+
nextMoment: string;
|
|
1521
|
+
prevMoment: string;
|
|
1523
1522
|
};
|
|
1524
1523
|
};
|
|
1525
1524
|
export type BlazeVideoIconsStyle = BaseBlazeIcons & {
|
|
1526
|
-
exit:
|
|
1527
|
-
like:
|
|
1528
|
-
unlike:
|
|
1529
|
-
fullscreenEnter:
|
|
1530
|
-
fullscreenExit:
|
|
1525
|
+
exit: string;
|
|
1526
|
+
like: string;
|
|
1527
|
+
unlike: string;
|
|
1528
|
+
fullscreenEnter: string;
|
|
1529
|
+
fullscreenExit: string;
|
|
1531
1530
|
navigation: {
|
|
1532
|
-
prevVideo:
|
|
1533
|
-
nextVideo:
|
|
1531
|
+
prevVideo: string;
|
|
1532
|
+
nextVideo: string;
|
|
1534
1533
|
};
|
|
1535
1534
|
};
|
|
1536
1535
|
|