@everymatrix/player-panic-button 1.34.2 → 1.34.3

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.
@@ -1080,32 +1080,21 @@
1080
1080
  ***************************************************************************** */
1081
1081
  /* global Reflect, Promise, SuppressedError, Symbol */
1082
1082
 
1083
- var extendStatics = function(d, b) {
1084
- extendStatics = Object.setPrototypeOf ||
1083
+ var extendStatics$1 = function(d, b) {
1084
+ extendStatics$1 = Object.setPrototypeOf ||
1085
1085
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
1086
1086
  function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
1087
- return extendStatics(d, b);
1087
+ return extendStatics$1(d, b);
1088
1088
  };
1089
1089
 
1090
- function __extends(d, b) {
1090
+ function __extends$1(d, b) {
1091
1091
  if (typeof b !== "function" && b !== null)
1092
1092
  throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
1093
- extendStatics(d, b);
1093
+ extendStatics$1(d, b);
1094
1094
  function __() { this.constructor = d; }
1095
1095
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
1096
1096
  }
1097
1097
 
1098
- var __assign = function() {
1099
- __assign = Object.assign || function __assign(t) {
1100
- for (var s, i = 1, n = arguments.length; i < n; i++) {
1101
- s = arguments[i];
1102
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
1103
- }
1104
- return t;
1105
- };
1106
- return __assign.apply(this, arguments);
1107
- };
1108
-
1109
1098
  function __values(o) {
1110
1099
  var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
1111
1100
  if (m) return m.call(o);
@@ -1135,7 +1124,7 @@
1135
1124
  return ar;
1136
1125
  }
1137
1126
 
1138
- function __spreadArray(to, from, pack) {
1127
+ function __spreadArray$1(to, from, pack) {
1139
1128
  if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
1140
1129
  if (ar || !(i in from)) {
1141
1130
  if (!ar) ar = Array.prototype.slice.call(from, 0, i);
@@ -1238,7 +1227,7 @@
1238
1227
  catch (err) {
1239
1228
  errors = errors !== null && errors !== void 0 ? errors : [];
1240
1229
  if (err instanceof UnsubscriptionError) {
1241
- errors = __spreadArray(__spreadArray([], __read(errors)), __read(err.errors));
1230
+ errors = __spreadArray$1(__spreadArray$1([], __read(errors)), __read(err.errors));
1242
1231
  }
1243
1232
  else {
1244
1233
  errors.push(err);
@@ -1337,9 +1326,9 @@
1337
1326
  }
1338
1327
  var delegate = timeoutProvider.delegate;
1339
1328
  if (delegate === null || delegate === void 0 ? void 0 : delegate.setTimeout) {
1340
- return delegate.setTimeout.apply(delegate, __spreadArray([handler, timeout], __read(args)));
1329
+ return delegate.setTimeout.apply(delegate, __spreadArray$1([handler, timeout], __read(args)));
1341
1330
  }
1342
- return setTimeout.apply(void 0, __spreadArray([handler, timeout], __read(args)));
1331
+ return setTimeout.apply(void 0, __spreadArray$1([handler, timeout], __read(args)));
1343
1332
  },
1344
1333
  clearTimeout: function (handle) {
1345
1334
  var delegate = timeoutProvider.delegate;
@@ -1380,7 +1369,7 @@
1380
1369
  }
1381
1370
 
1382
1371
  var Subscriber = (function (_super) {
1383
- __extends(Subscriber, _super);
1372
+ __extends$1(Subscriber, _super);
1384
1373
  function Subscriber(destination) {
1385
1374
  var _this = _super.call(this) || this;
1386
1375
  _this.isStopped = false;
@@ -1493,7 +1482,7 @@
1493
1482
  return ConsumerObserver;
1494
1483
  }());
1495
1484
  var SafeSubscriber = (function (_super) {
1496
- __extends(SafeSubscriber, _super);
1485
+ __extends$1(SafeSubscriber, _super);
1497
1486
  function SafeSubscriber(observerOrNext, error, complete) {
1498
1487
  var _this = _super.call(this) || this;
1499
1488
  var partialObserver;
@@ -1660,7 +1649,7 @@
1660
1649
  });
1661
1650
 
1662
1651
  var Subject = (function (_super) {
1663
- __extends(Subject, _super);
1652
+ __extends$1(Subject, _super);
1664
1653
  function Subject() {
1665
1654
  var _this = _super.call(this) || this;
1666
1655
  _this.closed = false;
@@ -1787,7 +1776,7 @@
1787
1776
  return Subject;
1788
1777
  }(Observable));
1789
1778
  var AnonymousSubject = (function (_super) {
1790
- __extends(AnonymousSubject, _super);
1779
+ __extends$1(AnonymousSubject, _super);
1791
1780
  function AnonymousSubject(destination, source) {
1792
1781
  var _this = _super.call(this) || this;
1793
1782
  _this.destination = destination;
@@ -1821,7 +1810,7 @@
1821
1810
  };
1822
1811
 
1823
1812
  var ReplaySubject = (function (_super) {
1824
- __extends(ReplaySubject, _super);
1813
+ __extends$1(ReplaySubject, _super);
1825
1814
  function ReplaySubject(_bufferSize, _windowTime, _timestampProvider) {
1826
1815
  if (_bufferSize === void 0) { _bufferSize = Infinity; }
1827
1816
  if (_windowTime === void 0) { _windowTime = Infinity; }
@@ -2132,6 +2121,63 @@
2132
2121
 
2133
2122
  var cjs = deepmerge_1;
2134
2123
 
2124
+ /******************************************************************************
2125
+ Copyright (c) Microsoft Corporation.
2126
+
2127
+ Permission to use, copy, modify, and/or distribute this software for any
2128
+ purpose with or without fee is hereby granted.
2129
+
2130
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
2131
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
2132
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
2133
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
2134
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
2135
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
2136
+ PERFORMANCE OF THIS SOFTWARE.
2137
+ ***************************************************************************** */
2138
+ /* global Reflect, Promise, SuppressedError, Symbol */
2139
+
2140
+ var extendStatics = function(d, b) {
2141
+ extendStatics = Object.setPrototypeOf ||
2142
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2143
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
2144
+ return extendStatics(d, b);
2145
+ };
2146
+
2147
+ function __extends(d, b) {
2148
+ if (typeof b !== "function" && b !== null)
2149
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
2150
+ extendStatics(d, b);
2151
+ function __() { this.constructor = d; }
2152
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2153
+ }
2154
+
2155
+ var __assign = function() {
2156
+ __assign = Object.assign || function __assign(t) {
2157
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
2158
+ s = arguments[i];
2159
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
2160
+ }
2161
+ return t;
2162
+ };
2163
+ return __assign.apply(this, arguments);
2164
+ };
2165
+
2166
+ function __spreadArray(to, from, pack) {
2167
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
2168
+ if (ar || !(i in from)) {
2169
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
2170
+ ar[i] = from[i];
2171
+ }
2172
+ }
2173
+ return to.concat(ar || Array.prototype.slice.call(from));
2174
+ }
2175
+
2176
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
2177
+ var e = new Error(message);
2178
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
2179
+ };
2180
+
2135
2181
  var ErrorKind;
2136
2182
  (function (ErrorKind) {
2137
2183
  /** Argument is unclosed (e.g. `{0`) */