@wscsports/blaze-web-sdk 0.28.5 → 0.29.0

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.28.5",
3
+ "version": "0.29.0",
4
4
  "main": "publish/index",
5
5
  "types": "publish/index",
6
6
  "files": [
@@ -173,6 +173,7 @@ export type BlazeButtonDeviceStyle = {
173
173
  color: string;
174
174
  padding: string;
175
175
  isVisible: boolean;
176
+ isEmbeddedVisible?: boolean;
176
177
  borderRadius: string;
177
178
  backgroundColor: string;
178
179
  };
@@ -200,6 +201,7 @@ export type BlazeVideosPlayerButtonsStyle = {
200
201
  like_unlike: BlazeButtonStyle;
201
202
  closed_captions: BlazeButtonStyle;
202
203
  play_pause: BlazeButtonStyle;
204
+ replay: BlazeButtonStyle;
203
205
  prev_next: BlazeButtonStyle;
204
206
  fullscreen: BlazeButtonStyle;
205
207
  };
@@ -694,6 +696,7 @@ export type BlazeMomentIconsStyle = BaseBlazeIcons & {
694
696
  };
695
697
  };
696
698
  export type BlazeVideoIconsStyle = BaseBlazeIcons & {
699
+ replay: string;
697
700
  exit: string;
698
701
  like: string;
699
702
  unlike: string;
@@ -786,6 +789,7 @@ export declare function Initialize(apiKey: string, userOptions?: Partial<IBlazeS
786
789
  export declare function WidgetRowView(containerId: string, options: IWidgetViewOptions): IWidgetView;
787
790
  export declare function WidgetGridView(containerId: string, options: IWidgetViewOptions): IWidgetView;
788
791
  export declare function WidgetEmbeddedStory(containerId: string, options: IWidgetViewOptions): IWidgetView;
792
+ export declare function WidgetEmbeddedVideo(containerId: string, options: IWidgetViewOptions): IWidgetView;
789
793
  export declare function WidgetCustomView(containerId: string, options: ICustomWidgetOptionsWithDataSource): ICustomWidgetView;
790
794
  export declare function Theme(theme: ThemeType, contentType: "moment"): IWidgetTheme<MomentPlayerStyle>;
791
795
  export declare function Theme(theme: ThemeType, contentType: "story"): IWidgetTheme<StoryPlayerStyle>;
@@ -830,6 +834,7 @@ declare const _default: {
830
834
  WidgetGridView: typeof WidgetGridView;
831
835
  WidgetRowView: typeof WidgetRowView;
832
836
  WidgetEmbeddedStory: typeof WidgetEmbeddedStory;
837
+ WidgetEmbeddedVideo: typeof WidgetEmbeddedVideo;
833
838
  WidgetCustomView: typeof WidgetCustomView;
834
839
  Theme: typeof Theme;
835
840
  addDelegateListener: typeof addDelegateListener;