@everymatrix/player-panic-button 1.34.0 → 1.34.2
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/dist/player-panic-button.js +25 -71
- package/dist/player-panic-button.js.map +1 -1
- package/package.json +2 -2
- package/dist/panic-button.js +0 -6965
- package/dist/panic-button.js.map +0 -1
|
@@ -1080,21 +1080,32 @@
|
|
|
1080
1080
|
***************************************************************************** */
|
|
1081
1081
|
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
1082
1082
|
|
|
1083
|
-
var extendStatics
|
|
1084
|
-
extendStatics
|
|
1083
|
+
var extendStatics = function(d, b) {
|
|
1084
|
+
extendStatics = 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
|
|
1087
|
+
return extendStatics(d, b);
|
|
1088
1088
|
};
|
|
1089
1089
|
|
|
1090
|
-
function __extends
|
|
1090
|
+
function __extends(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
|
|
1093
|
+
extendStatics(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
|
+
|
|
1098
1109
|
function __values(o) {
|
|
1099
1110
|
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
1100
1111
|
if (m) return m.call(o);
|
|
@@ -1124,7 +1135,7 @@
|
|
|
1124
1135
|
return ar;
|
|
1125
1136
|
}
|
|
1126
1137
|
|
|
1127
|
-
function __spreadArray
|
|
1138
|
+
function __spreadArray(to, from, pack) {
|
|
1128
1139
|
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
1129
1140
|
if (ar || !(i in from)) {
|
|
1130
1141
|
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
@@ -1227,7 +1238,7 @@
|
|
|
1227
1238
|
catch (err) {
|
|
1228
1239
|
errors = errors !== null && errors !== void 0 ? errors : [];
|
|
1229
1240
|
if (err instanceof UnsubscriptionError) {
|
|
1230
|
-
errors = __spreadArray
|
|
1241
|
+
errors = __spreadArray(__spreadArray([], __read(errors)), __read(err.errors));
|
|
1231
1242
|
}
|
|
1232
1243
|
else {
|
|
1233
1244
|
errors.push(err);
|
|
@@ -1326,9 +1337,9 @@
|
|
|
1326
1337
|
}
|
|
1327
1338
|
var delegate = timeoutProvider.delegate;
|
|
1328
1339
|
if (delegate === null || delegate === void 0 ? void 0 : delegate.setTimeout) {
|
|
1329
|
-
return delegate.setTimeout.apply(delegate, __spreadArray
|
|
1340
|
+
return delegate.setTimeout.apply(delegate, __spreadArray([handler, timeout], __read(args)));
|
|
1330
1341
|
}
|
|
1331
|
-
return setTimeout.apply(void 0, __spreadArray
|
|
1342
|
+
return setTimeout.apply(void 0, __spreadArray([handler, timeout], __read(args)));
|
|
1332
1343
|
},
|
|
1333
1344
|
clearTimeout: function (handle) {
|
|
1334
1345
|
var delegate = timeoutProvider.delegate;
|
|
@@ -1369,7 +1380,7 @@
|
|
|
1369
1380
|
}
|
|
1370
1381
|
|
|
1371
1382
|
var Subscriber = (function (_super) {
|
|
1372
|
-
__extends
|
|
1383
|
+
__extends(Subscriber, _super);
|
|
1373
1384
|
function Subscriber(destination) {
|
|
1374
1385
|
var _this = _super.call(this) || this;
|
|
1375
1386
|
_this.isStopped = false;
|
|
@@ -1482,7 +1493,7 @@
|
|
|
1482
1493
|
return ConsumerObserver;
|
|
1483
1494
|
}());
|
|
1484
1495
|
var SafeSubscriber = (function (_super) {
|
|
1485
|
-
__extends
|
|
1496
|
+
__extends(SafeSubscriber, _super);
|
|
1486
1497
|
function SafeSubscriber(observerOrNext, error, complete) {
|
|
1487
1498
|
var _this = _super.call(this) || this;
|
|
1488
1499
|
var partialObserver;
|
|
@@ -1649,7 +1660,7 @@
|
|
|
1649
1660
|
});
|
|
1650
1661
|
|
|
1651
1662
|
var Subject = (function (_super) {
|
|
1652
|
-
__extends
|
|
1663
|
+
__extends(Subject, _super);
|
|
1653
1664
|
function Subject() {
|
|
1654
1665
|
var _this = _super.call(this) || this;
|
|
1655
1666
|
_this.closed = false;
|
|
@@ -1776,7 +1787,7 @@
|
|
|
1776
1787
|
return Subject;
|
|
1777
1788
|
}(Observable));
|
|
1778
1789
|
var AnonymousSubject = (function (_super) {
|
|
1779
|
-
__extends
|
|
1790
|
+
__extends(AnonymousSubject, _super);
|
|
1780
1791
|
function AnonymousSubject(destination, source) {
|
|
1781
1792
|
var _this = _super.call(this) || this;
|
|
1782
1793
|
_this.destination = destination;
|
|
@@ -1810,7 +1821,7 @@
|
|
|
1810
1821
|
};
|
|
1811
1822
|
|
|
1812
1823
|
var ReplaySubject = (function (_super) {
|
|
1813
|
-
__extends
|
|
1824
|
+
__extends(ReplaySubject, _super);
|
|
1814
1825
|
function ReplaySubject(_bufferSize, _windowTime, _timestampProvider) {
|
|
1815
1826
|
if (_bufferSize === void 0) { _bufferSize = Infinity; }
|
|
1816
1827
|
if (_windowTime === void 0) { _windowTime = Infinity; }
|
|
@@ -2121,63 +2132,6 @@
|
|
|
2121
2132
|
|
|
2122
2133
|
var cjs = deepmerge_1;
|
|
2123
2134
|
|
|
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
|
-
|
|
2181
2135
|
var ErrorKind;
|
|
2182
2136
|
(function (ErrorKind) {
|
|
2183
2137
|
/** Argument is unclosed (e.g. `{0`) */
|