rx-player 3.29.0-dev.2022110200 → 3.29.0-dev.2022111000

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## v3.29.0-dev.2022110200 (2022-11-02)
3
+ ## v3.29.0 (XXXX-XX-XX)
4
4
 
5
5
  ### Features
6
6
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.29.0-dev.2022110200
1
+ 3.29.0-dev.2022111000
@@ -37,9 +37,9 @@ var isTizen = !isNode &&
37
37
  var isWebOs = !isNode &&
38
38
  /Web0S/.test(navigator.userAgent);
39
39
  var isWebOs2021 = !isNode &&
40
- /WebOS.TV-2021/.test(navigator.userAgent);
40
+ /(W|w)eb(O|0)S.TV-2021/.test(navigator.userAgent);
41
41
  var isWebOs2022 = !isNode &&
42
- /WebOS.TV-2022/.test(navigator.userAgent);
42
+ /(W|w)eb(O|0)S.TV-2022/.test(navigator.userAgent);
43
43
  /** `true` on Safari on a PC platform (i.e. not iPhone / iPad etc.) */
44
44
  var isSafariDesktop = !isNode && (Object.prototype.toString.call(window.HTMLElement).indexOf("Constructor") >= 0 ||
45
45
  ((_b = (_a = window.safari) === null || _a === void 0 ? void 0 : _a.pushNotification) === null || _b === void 0 ? void 0 : _b.toString()) ===
@@ -87,7 +87,7 @@ var Player = /** @class */ (function (_super) {
87
87
  // Workaround to support Firefox autoplay on FF 42.
88
88
  // See: https://bugzilla.mozilla.org/show_bug.cgi?id=1194624
89
89
  videoElement.preload = "auto";
90
- _this.version = /* PLAYER_VERSION */ "3.29.0-dev.2022110200";
90
+ _this.version = /* PLAYER_VERSION */ "3.29.0-dev.2022111000";
91
91
  _this.log = log;
92
92
  _this.state = "STOPPED";
93
93
  _this.videoElement = videoElement;
@@ -2312,5 +2312,5 @@ var Player = /** @class */ (function (_super) {
2312
2312
  };
2313
2313
  return Player;
2314
2314
  }(EventEmitter));
2315
- Player.version = /* PLAYER_VERSION */ "3.29.0-dev.2022110200";
2315
+ Player.version = /* PLAYER_VERSION */ "3.29.0-dev.2022111000";
2316
2316
  export default Player;
package/dist/rx-player.js CHANGED
@@ -98,8 +98,8 @@ var isFirefox = !_is_node__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z && na
98
98
  var isSamsungBrowser = !_is_node__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z && /SamsungBrowser/.test(navigator.userAgent);
99
99
  var isTizen = !_is_node__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z && /Tizen/.test(navigator.userAgent);
100
100
  var isWebOs = !_is_node__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z && /Web0S/.test(navigator.userAgent);
101
- var isWebOs2021 = !_is_node__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z && /WebOS.TV-2021/.test(navigator.userAgent);
102
- var isWebOs2022 = !_is_node__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z && /WebOS.TV-2022/.test(navigator.userAgent);
101
+ var isWebOs2021 = !_is_node__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z && /(W|w)eb(O|0)S.TV-2021/.test(navigator.userAgent);
102
+ var isWebOs2022 = !_is_node__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z && /(W|w)eb(O|0)S.TV-2022/.test(navigator.userAgent);
103
103
  /** `true` on Safari on a PC platform (i.e. not iPhone / iPad etc.) */
104
104
  var isSafariDesktop = !_is_node__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z && (Object.prototype.toString.call(window.HTMLElement).indexOf("Constructor") >= 0 || ((_b = (_a = window.safari) === null || _a === void 0 ? void 0 : _a.pushNotification) === null || _b === void 0 ? void 0 : _b.toString()) === "[object SafariRemoteNotification]");
105
105
  /** `true` on Safari on an iPhone, iPad & iPod platform */
@@ -387,8 +387,8 @@ var IE11CustomMediaKeys = /*#__PURE__*/function () {
387
387
  return this._videoElement.msSetMediaKeys(this._mediaKeys);
388
388
  }
389
389
  };
390
- _proto2.createSession = function /* sessionType */
391
- createSession() {
390
+ _proto2.createSession = function createSession( /* sessionType */
391
+ ) {
392
392
  if (this._videoElement === undefined || this._mediaKeys === undefined) {
393
393
  throw new Error("Video not attached to the MediaKeys");
394
394
  }
@@ -623,8 +623,8 @@ var OldWebKitCustomMediaKeys = /*#__PURE__*/function () {
623
623
  }
624
624
  this._videoElement = videoElement;
625
625
  };
626
- _proto2.createSession = function /* sessionType */
627
- createSession() {
626
+ _proto2.createSession = function createSession( /* sessionType */
627
+ ) {
628
628
  if (this._videoElement == null) {
629
629
  throw new Error("Video not attached to the MediaKeys");
630
630
  }
@@ -924,8 +924,8 @@ var WebKitCustomMediaKeys = /*#__PURE__*/function () {
924
924
  }
925
925
  return setWebKitMediaKeys(this._videoElement, this._mediaKeys);
926
926
  };
927
- _proto2.createSession = function /* sessionType */
928
- createSession() {
927
+ _proto2.createSession = function createSession( /* sessionType */
928
+ ) {
929
929
  if (this._videoElement === undefined || this._mediaKeys === undefined) {
930
930
  throw new Error("Video not attached to the MediaKeys");
931
931
  }
@@ -55269,7 +55269,7 @@ var Player = /*#__PURE__*/function (_EventEmitter) {
55269
55269
  // Workaround to support Firefox autoplay on FF 42.
55270
55270
  // See: https://bugzilla.mozilla.org/show_bug.cgi?id=1194624
55271
55271
  videoElement.preload = "auto";
55272
- _this.version = /* PLAYER_VERSION */"3.29.0-dev.2022110200";
55272
+ _this.version = /* PLAYER_VERSION */"3.29.0-dev.2022111000";
55273
55273
  _this.log = log/* default */.Z;
55274
55274
  _this.state = "STOPPED";
55275
55275
  _this.videoElement = videoElement;
@@ -57566,7 +57566,7 @@ var Player = /*#__PURE__*/function (_EventEmitter) {
57566
57566
  }]);
57567
57567
  return Player;
57568
57568
  }(event_emitter/* default */.Z);
57569
- Player.version = /* PLAYER_VERSION */"3.29.0-dev.2022110200";
57569
+ Player.version = /* PLAYER_VERSION */"3.29.0-dev.2022111000";
57570
57570
  /* harmony default export */ var public_api = (Player);
57571
57571
  ;// CONCATENATED MODULE: ./src/core/api/index.ts
57572
57572
  /**