@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wscsports/blaze-web-sdk",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "main": "publish/index",
5
5
  "types": "publish/index",
6
6
  "files": [
@@ -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" | "disabled" | "blaze-btn-hidden" | "button-desktop-animation")[];
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: SvgIconData;
1494
- pause: SvgIconData;
1495
- mute: SvgIconData;
1496
- unmute: SvgIconData;
1497
- share: SvgIconData;
1498
- closedCaptionsOn: SvgIconData;
1499
- closedCaptionsOff: SvgIconData;
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: SvgIconData;
1503
- exitMobileTablet: SvgIconData;
1504
- exitDesktop: SvgIconData;
1505
- customActionButtonOne?: SvgIconData;
1506
- customActionButtonTwo?: SvgIconData;
1501
+ fullscreen: string;
1502
+ exitMobileTablet: string;
1503
+ exitDesktop: string;
1504
+ customActionButtonOne?: string;
1505
+ customActionButtonTwo?: string;
1507
1506
  navigation: {
1508
- nextPage: SvgIconData;
1509
- prevPage: SvgIconData;
1510
- nextStory: SvgIconData;
1511
- prevStory: SvgIconData;
1507
+ nextPage: string;
1508
+ prevPage: string;
1509
+ nextStory: string;
1510
+ prevStory: string;
1512
1511
  };
1513
1512
  };
1514
1513
  export type BlazeMomentIconsStyle = BaseBlazeIcons & {
1515
- exit: SvgIconData;
1516
- like: SvgIconData;
1517
- unlike: SvgIconData;
1518
- customActionButtonOne?: SvgIconData;
1519
- customActionButtonTwo?: SvgIconData;
1514
+ exit: string;
1515
+ like: string;
1516
+ unlike: string;
1517
+ customActionButtonOne?: string;
1518
+ customActionButtonTwo?: string;
1520
1519
  navigation: {
1521
- nextMoment: SvgIconData;
1522
- prevMoment: SvgIconData;
1520
+ nextMoment: string;
1521
+ prevMoment: string;
1523
1522
  };
1524
1523
  };
1525
1524
  export type BlazeVideoIconsStyle = BaseBlazeIcons & {
1526
- exit: SvgIconData;
1527
- like: SvgIconData;
1528
- unlike: SvgIconData;
1529
- fullscreenEnter: SvgIconData;
1530
- fullscreenExit: SvgIconData;
1525
+ exit: string;
1526
+ like: string;
1527
+ unlike: string;
1528
+ fullscreenEnter: string;
1529
+ fullscreenExit: string;
1531
1530
  navigation: {
1532
- prevVideo: SvgIconData;
1533
- nextVideo: SvgIconData;
1531
+ prevVideo: string;
1532
+ nextVideo: string;
1534
1533
  };
1535
1534
  };
1536
1535