@24i/bigscreen-sdk 1.0.36-alpha.2638 → 1.0.37-alpha.2644

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": "@24i/bigscreen-sdk",
3
- "version": "1.0.36-alpha.2638",
3
+ "version": "1.0.37-alpha.2644",
4
4
  "description": "SmartApps BIGscreen SDK monorepo",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -41,7 +41,7 @@
41
41
  "@24i/appstage-shared-analytics": "1.0.20-alpha.70",
42
42
  "@24i/appstage-shared-events-manager": "1.0.11",
43
43
  "@24i/appstage-shared-perf-utils": "1.0.11",
44
- "@24i/bigscreen-players-engine-base": "4.0.2",
44
+ "@24i/bigscreen-players-engine-base": "4.0.4",
45
45
  "@24i/smartapps-datalayer": "3.0.15",
46
46
  "@sentry/browser": "7.35.0",
47
47
  "@sentry/types": "7.35.0",
@@ -18,6 +18,7 @@ const TO_PERCENT = 100;
18
18
 
19
19
  type Props = {
20
20
  ui: IPlayerUIWithSeeking;
21
+ children?: JSX.Element;
21
22
  } & PlayerUICommonProps;
22
23
 
23
24
  export class Seekbar extends Component<Props> implements IFocusable {
@@ -249,7 +250,7 @@ export class Seekbar extends Component<Props> implements IFocusable {
249
250
  }
250
251
 
251
252
  render() {
252
- const { className } = this.props;
253
+ const { children, className } = this.props;
253
254
  return (
254
255
  <div
255
256
  className={`seek-bar ${className}`}
@@ -260,6 +261,7 @@ export class Seekbar extends Component<Props> implements IFocusable {
260
261
  onClick={this.onMouseClick}
261
262
  onBlur={this.onBlur}
262
263
  >
264
+ {children}
263
265
  <div className="bar" ref={this.seekBarWrap}>
264
266
  <div className="bg" ref={this.seekBar} />
265
267
  </div>