videomail-client 10.2.30 → 10.2.32
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/cjs/index.cjs +337 -84
- package/dist/esm/index.js +164 -51
- package/dist/umd/index.js +337 -84
- package/package.json +7 -7
package/dist/cjs/index.cjs
CHANGED
|
@@ -1106,7 +1106,7 @@ var __webpack_modules__ = {
|
|
|
1106
1106
|
this[offset] = 0xFF & value;
|
|
1107
1107
|
while(++i < byteLength && (mul *= 0x100)){
|
|
1108
1108
|
if (value < 0 && 0 === sub && 0 !== this[offset + i - 1]) sub = 1;
|
|
1109
|
-
this[offset + i] = (value / mul
|
|
1109
|
+
this[offset + i] = (value / mul | 0) - sub & 0xFF;
|
|
1110
1110
|
}
|
|
1111
1111
|
return offset + byteLength;
|
|
1112
1112
|
};
|
|
@@ -1123,7 +1123,7 @@ var __webpack_modules__ = {
|
|
|
1123
1123
|
this[offset + i] = 0xFF & value;
|
|
1124
1124
|
while(--i >= 0 && (mul *= 0x100)){
|
|
1125
1125
|
if (value < 0 && 0 === sub && 0 !== this[offset + i + 1]) sub = 1;
|
|
1126
|
-
this[offset + i] = (value / mul
|
|
1126
|
+
this[offset + i] = (value / mul | 0) - sub & 0xFF;
|
|
1127
1127
|
}
|
|
1128
1128
|
return offset + byteLength;
|
|
1129
1129
|
};
|
|
@@ -1353,6 +1353,37 @@ var __webpack_modules__ = {
|
|
|
1353
1353
|
return table;
|
|
1354
1354
|
}();
|
|
1355
1355
|
},
|
|
1356
|
+
"./node_modules/call-bind-apply-helpers/actualApply.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1357
|
+
"use strict";
|
|
1358
|
+
var bind = __webpack_require__("./node_modules/function-bind/index.js");
|
|
1359
|
+
var $apply = __webpack_require__("./node_modules/call-bind-apply-helpers/functionApply.js");
|
|
1360
|
+
var $call = __webpack_require__("./node_modules/call-bind-apply-helpers/functionCall.js");
|
|
1361
|
+
var $reflectApply = __webpack_require__("./node_modules/call-bind-apply-helpers/reflectApply.js");
|
|
1362
|
+
module.exports = $reflectApply || bind.call($call, $apply);
|
|
1363
|
+
},
|
|
1364
|
+
"./node_modules/call-bind-apply-helpers/functionApply.js": function(module) {
|
|
1365
|
+
"use strict";
|
|
1366
|
+
module.exports = Function.prototype.apply;
|
|
1367
|
+
},
|
|
1368
|
+
"./node_modules/call-bind-apply-helpers/functionCall.js": function(module) {
|
|
1369
|
+
"use strict";
|
|
1370
|
+
module.exports = Function.prototype.call;
|
|
1371
|
+
},
|
|
1372
|
+
"./node_modules/call-bind-apply-helpers/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1373
|
+
"use strict";
|
|
1374
|
+
var bind = __webpack_require__("./node_modules/function-bind/index.js");
|
|
1375
|
+
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
1376
|
+
var $call = __webpack_require__("./node_modules/call-bind-apply-helpers/functionCall.js");
|
|
1377
|
+
var $actualApply = __webpack_require__("./node_modules/call-bind-apply-helpers/actualApply.js");
|
|
1378
|
+
module.exports = function(args) {
|
|
1379
|
+
if (args.length < 1 || 'function' != typeof args[0]) throw new $TypeError('a function is required');
|
|
1380
|
+
return $actualApply(bind, $call, args);
|
|
1381
|
+
};
|
|
1382
|
+
},
|
|
1383
|
+
"./node_modules/call-bind-apply-helpers/reflectApply.js": function(module) {
|
|
1384
|
+
"use strict";
|
|
1385
|
+
module.exports = 'undefined' != typeof Reflect && Reflect && Reflect.apply;
|
|
1386
|
+
},
|
|
1356
1387
|
"./node_modules/call-bind/callBound.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1357
1388
|
"use strict";
|
|
1358
1389
|
var GetIntrinsic = __webpack_require__("./node_modules/get-intrinsic/index.js");
|
|
@@ -1388,6 +1419,21 @@ var __webpack_modules__ = {
|
|
|
1388
1419
|
});
|
|
1389
1420
|
else module.exports.apply = applyBind;
|
|
1390
1421
|
},
|
|
1422
|
+
"./node_modules/call-bound/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1423
|
+
"use strict";
|
|
1424
|
+
var GetIntrinsic = __webpack_require__("./node_modules/get-intrinsic/index.js");
|
|
1425
|
+
var callBindBasic = __webpack_require__("./node_modules/call-bind-apply-helpers/index.js");
|
|
1426
|
+
var $indexOf = callBindBasic([
|
|
1427
|
+
GetIntrinsic('%String.prototype.indexOf%')
|
|
1428
|
+
]);
|
|
1429
|
+
module.exports = function(name, allowMissing) {
|
|
1430
|
+
var intrinsic = GetIntrinsic(name, !!allowMissing);
|
|
1431
|
+
if ('function' == typeof intrinsic && $indexOf(name, '.prototype.') > -1) return callBindBasic([
|
|
1432
|
+
intrinsic
|
|
1433
|
+
]);
|
|
1434
|
+
return intrinsic;
|
|
1435
|
+
};
|
|
1436
|
+
},
|
|
1391
1437
|
"./node_modules/component-emitter/index.js": function(module) {
|
|
1392
1438
|
module.exports = Emitter;
|
|
1393
1439
|
function Emitter(obj) {
|
|
@@ -1695,6 +1741,25 @@ var __webpack_modules__ = {
|
|
|
1695
1741
|
return string.substring(0, 1).toLowerCase() + string.substring(1);
|
|
1696
1742
|
}
|
|
1697
1743
|
},
|
|
1744
|
+
"./node_modules/dunder-proto/get.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1745
|
+
"use strict";
|
|
1746
|
+
var callBind = __webpack_require__("./node_modules/call-bind-apply-helpers/index.js");
|
|
1747
|
+
var gOPD = __webpack_require__("./node_modules/gopd/index.js");
|
|
1748
|
+
var hasProtoAccessor;
|
|
1749
|
+
try {
|
|
1750
|
+
hasProtoAccessor = [].__proto__ === Array.prototype;
|
|
1751
|
+
} catch (e) {
|
|
1752
|
+
if (!e || 'object' != typeof e || !('code' in e) || 'ERR_PROTO_ACCESS' !== e.code) throw e;
|
|
1753
|
+
}
|
|
1754
|
+
var desc = !!hasProtoAccessor && gOPD && gOPD(Object.prototype, '__proto__');
|
|
1755
|
+
var $Object = Object;
|
|
1756
|
+
var $getPrototypeOf = $Object.getPrototypeOf;
|
|
1757
|
+
module.exports = desc && 'function' == typeof desc.get ? callBind([
|
|
1758
|
+
desc.get
|
|
1759
|
+
]) : 'function' == typeof $getPrototypeOf ? function(value) {
|
|
1760
|
+
return $getPrototypeOf(null == value ? value : $Object(value));
|
|
1761
|
+
} : false;
|
|
1762
|
+
},
|
|
1698
1763
|
"./node_modules/duplexify/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1699
1764
|
var Buffer = __webpack_require__("./node_modules/buffer/index.js")["Buffer"];
|
|
1700
1765
|
var process = __webpack_require__("./node_modules/process/browser.js");
|
|
@@ -3590,10 +3655,9 @@ var __webpack_modules__ = {
|
|
|
3590
3655
|
};
|
|
3591
3656
|
module.exports = eos;
|
|
3592
3657
|
},
|
|
3593
|
-
"./node_modules/es-define-property/index.js": function(module
|
|
3658
|
+
"./node_modules/es-define-property/index.js": function(module) {
|
|
3594
3659
|
"use strict";
|
|
3595
|
-
var
|
|
3596
|
-
var $defineProperty = GetIntrinsic('%Object.defineProperty%', true) || false;
|
|
3660
|
+
var $defineProperty = Object.defineProperty || false;
|
|
3597
3661
|
if ($defineProperty) try {
|
|
3598
3662
|
$defineProperty({}, 'a', {
|
|
3599
3663
|
value: 1
|
|
@@ -3631,6 +3695,10 @@ var __webpack_modules__ = {
|
|
|
3631
3695
|
"use strict";
|
|
3632
3696
|
module.exports = URIError;
|
|
3633
3697
|
},
|
|
3698
|
+
"./node_modules/es-object-atoms/index.js": function(module) {
|
|
3699
|
+
"use strict";
|
|
3700
|
+
module.exports = Object;
|
|
3701
|
+
},
|
|
3634
3702
|
"./node_modules/events/events.js": function(module) {
|
|
3635
3703
|
"use strict";
|
|
3636
3704
|
var R = 'object' == typeof Reflect ? Reflect : null;
|
|
@@ -4168,6 +4236,7 @@ var __webpack_modules__ = {
|
|
|
4168
4236
|
"./node_modules/get-intrinsic/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4169
4237
|
"use strict";
|
|
4170
4238
|
var undefined;
|
|
4239
|
+
var $Object = __webpack_require__("./node_modules/es-object-atoms/index.js");
|
|
4171
4240
|
var $Error = __webpack_require__("./node_modules/es-errors/index.js");
|
|
4172
4241
|
var $EvalError = __webpack_require__("./node_modules/es-errors/eval.js");
|
|
4173
4242
|
var $RangeError = __webpack_require__("./node_modules/es-errors/range.js");
|
|
@@ -4175,18 +4244,21 @@ var __webpack_modules__ = {
|
|
|
4175
4244
|
var $SyntaxError = __webpack_require__("./node_modules/es-errors/syntax.js");
|
|
4176
4245
|
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
4177
4246
|
var $URIError = __webpack_require__("./node_modules/es-errors/uri.js");
|
|
4247
|
+
var abs = __webpack_require__("./node_modules/math-intrinsics/abs.js");
|
|
4248
|
+
var floor = __webpack_require__("./node_modules/math-intrinsics/floor.js");
|
|
4249
|
+
var max = __webpack_require__("./node_modules/math-intrinsics/max.js");
|
|
4250
|
+
var min = __webpack_require__("./node_modules/math-intrinsics/min.js");
|
|
4251
|
+
var pow = __webpack_require__("./node_modules/math-intrinsics/pow.js");
|
|
4252
|
+
var round = __webpack_require__("./node_modules/math-intrinsics/round.js");
|
|
4253
|
+
var sign = __webpack_require__("./node_modules/math-intrinsics/sign.js");
|
|
4178
4254
|
var $Function = Function;
|
|
4179
4255
|
var getEvalledConstructor = function(expressionSyntax) {
|
|
4180
4256
|
try {
|
|
4181
4257
|
return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')();
|
|
4182
4258
|
} catch (e) {}
|
|
4183
4259
|
};
|
|
4184
|
-
var $gOPD =
|
|
4185
|
-
|
|
4186
|
-
$gOPD({}, '');
|
|
4187
|
-
} catch (e) {
|
|
4188
|
-
$gOPD = null;
|
|
4189
|
-
}
|
|
4260
|
+
var $gOPD = __webpack_require__("./node_modules/gopd/index.js");
|
|
4261
|
+
var $defineProperty = __webpack_require__("./node_modules/es-define-property/index.js");
|
|
4190
4262
|
var throwTypeError = function() {
|
|
4191
4263
|
throw new $TypeError();
|
|
4192
4264
|
};
|
|
@@ -4203,10 +4275,11 @@ var __webpack_modules__ = {
|
|
|
4203
4275
|
}
|
|
4204
4276
|
}() : throwTypeError;
|
|
4205
4277
|
var hasSymbols = __webpack_require__("./node_modules/has-symbols/index.js")();
|
|
4206
|
-
var
|
|
4207
|
-
var
|
|
4208
|
-
|
|
4209
|
-
|
|
4278
|
+
var getProto = __webpack_require__("./node_modules/get-proto/index.js");
|
|
4279
|
+
var $ObjectGPO = __webpack_require__("./node_modules/get-proto/Object.getPrototypeOf.js");
|
|
4280
|
+
var $ReflectGPO = __webpack_require__("./node_modules/get-proto/Reflect.getPrototypeOf.js");
|
|
4281
|
+
var $apply = __webpack_require__("./node_modules/call-bind-apply-helpers/functionApply.js");
|
|
4282
|
+
var $call = __webpack_require__("./node_modules/call-bind-apply-helpers/functionCall.js");
|
|
4210
4283
|
var needsEval = {};
|
|
4211
4284
|
var TypedArray = 'undefined' != typeof Uint8Array && getProto ? getProto(Uint8Array) : undefined;
|
|
4212
4285
|
var INTRINSICS = {
|
|
@@ -4234,6 +4307,7 @@ var __webpack_modules__ = {
|
|
|
4234
4307
|
'%Error%': $Error,
|
|
4235
4308
|
'%eval%': eval,
|
|
4236
4309
|
'%EvalError%': $EvalError,
|
|
4310
|
+
'%Float16Array%': 'undefined' == typeof Float16Array ? undefined : Float16Array,
|
|
4237
4311
|
'%Float32Array%': 'undefined' == typeof Float32Array ? undefined : Float32Array,
|
|
4238
4312
|
'%Float64Array%': 'undefined' == typeof Float64Array ? undefined : Float64Array,
|
|
4239
4313
|
'%FinalizationRegistry%': 'undefined' == typeof FinalizationRegistry ? undefined : FinalizationRegistry,
|
|
@@ -4250,7 +4324,8 @@ var __webpack_modules__ = {
|
|
|
4250
4324
|
'%MapIteratorPrototype%': 'undefined' != typeof Map && hasSymbols && getProto ? getProto(new Map()[Symbol.iterator]()) : undefined,
|
|
4251
4325
|
'%Math%': Math,
|
|
4252
4326
|
'%Number%': Number,
|
|
4253
|
-
'%Object%': Object,
|
|
4327
|
+
'%Object%': $Object,
|
|
4328
|
+
"%Object.getOwnPropertyDescriptor%": $gOPD,
|
|
4254
4329
|
'%parseFloat%': parseFloat,
|
|
4255
4330
|
'%parseInt%': parseInt,
|
|
4256
4331
|
'%Promise%': 'undefined' == typeof Promise ? undefined : Promise,
|
|
@@ -4276,7 +4351,19 @@ var __webpack_modules__ = {
|
|
|
4276
4351
|
'%URIError%': $URIError,
|
|
4277
4352
|
'%WeakMap%': 'undefined' == typeof WeakMap ? undefined : WeakMap,
|
|
4278
4353
|
'%WeakRef%': 'undefined' == typeof WeakRef ? undefined : WeakRef,
|
|
4279
|
-
'%WeakSet%': 'undefined' == typeof WeakSet ? undefined : WeakSet
|
|
4354
|
+
'%WeakSet%': 'undefined' == typeof WeakSet ? undefined : WeakSet,
|
|
4355
|
+
'%Function.prototype.call%': $call,
|
|
4356
|
+
'%Function.prototype.apply%': $apply,
|
|
4357
|
+
'%Object.defineProperty%': $defineProperty,
|
|
4358
|
+
'%Object.getPrototypeOf%': $ObjectGPO,
|
|
4359
|
+
'%Math.abs%': abs,
|
|
4360
|
+
'%Math.floor%': floor,
|
|
4361
|
+
'%Math.max%': max,
|
|
4362
|
+
'%Math.min%': min,
|
|
4363
|
+
'%Math.pow%': pow,
|
|
4364
|
+
'%Math.round%': round,
|
|
4365
|
+
'%Math.sign%': sign,
|
|
4366
|
+
'%Reflect.getPrototypeOf%': $ReflectGPO
|
|
4280
4367
|
};
|
|
4281
4368
|
if (getProto) try {
|
|
4282
4369
|
null.error;
|
|
@@ -4517,11 +4604,11 @@ var __webpack_modules__ = {
|
|
|
4517
4604
|
};
|
|
4518
4605
|
var bind = __webpack_require__("./node_modules/function-bind/index.js");
|
|
4519
4606
|
var hasOwn = __webpack_require__("./node_modules/hasown/index.js");
|
|
4520
|
-
var $concat = bind.call(
|
|
4521
|
-
var $spliceApply = bind.call(
|
|
4522
|
-
var $replace = bind.call(
|
|
4523
|
-
var $strSlice = bind.call(
|
|
4524
|
-
var $exec = bind.call(
|
|
4607
|
+
var $concat = bind.call($call, Array.prototype.concat);
|
|
4608
|
+
var $spliceApply = bind.call($apply, Array.prototype.splice);
|
|
4609
|
+
var $replace = bind.call($call, String.prototype.replace);
|
|
4610
|
+
var $strSlice = bind.call($call, String.prototype.slice);
|
|
4611
|
+
var $exec = bind.call($call, RegExp.prototype.exec);
|
|
4525
4612
|
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
|
|
4526
4613
|
var reEscapeChar = /\\(\\)?/g;
|
|
4527
4614
|
var stringToPath = function(string) {
|
|
@@ -4600,6 +4687,29 @@ var __webpack_modules__ = {
|
|
|
4600
4687
|
return value;
|
|
4601
4688
|
};
|
|
4602
4689
|
},
|
|
4690
|
+
"./node_modules/get-proto/Object.getPrototypeOf.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4691
|
+
"use strict";
|
|
4692
|
+
var $Object = __webpack_require__("./node_modules/es-object-atoms/index.js");
|
|
4693
|
+
module.exports = $Object.getPrototypeOf || null;
|
|
4694
|
+
},
|
|
4695
|
+
"./node_modules/get-proto/Reflect.getPrototypeOf.js": function(module) {
|
|
4696
|
+
"use strict";
|
|
4697
|
+
module.exports = 'undefined' != typeof Reflect && Reflect.getPrototypeOf || null;
|
|
4698
|
+
},
|
|
4699
|
+
"./node_modules/get-proto/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4700
|
+
"use strict";
|
|
4701
|
+
var reflectGetProto = __webpack_require__("./node_modules/get-proto/Reflect.getPrototypeOf.js");
|
|
4702
|
+
var originalGetProto = __webpack_require__("./node_modules/get-proto/Object.getPrototypeOf.js");
|
|
4703
|
+
var getDunderProto = __webpack_require__("./node_modules/dunder-proto/get.js");
|
|
4704
|
+
module.exports = reflectGetProto ? function(O) {
|
|
4705
|
+
return reflectGetProto(O);
|
|
4706
|
+
} : originalGetProto ? function(O) {
|
|
4707
|
+
if (!O || 'object' != typeof O && 'function' != typeof O) throw new TypeError('getProto: not an object');
|
|
4708
|
+
return originalGetProto(O);
|
|
4709
|
+
} : getDunderProto ? function(O) {
|
|
4710
|
+
return getDunderProto(O);
|
|
4711
|
+
} : null;
|
|
4712
|
+
},
|
|
4603
4713
|
"./node_modules/geval/event.js": function(module) {
|
|
4604
4714
|
module.exports = Event1;
|
|
4605
4715
|
function Event1() {
|
|
@@ -4641,10 +4751,13 @@ var __webpack_modules__ = {
|
|
|
4641
4751
|
}
|
|
4642
4752
|
module.exports = doccy;
|
|
4643
4753
|
},
|
|
4754
|
+
"./node_modules/gopd/gOPD.js": function(module) {
|
|
4755
|
+
"use strict";
|
|
4756
|
+
module.exports = Object.getOwnPropertyDescriptor;
|
|
4757
|
+
},
|
|
4644
4758
|
"./node_modules/gopd/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4645
4759
|
"use strict";
|
|
4646
|
-
var
|
|
4647
|
-
var $gOPD = GetIntrinsic("%Object.getOwnPropertyDescriptor%", true);
|
|
4760
|
+
var $gOPD = __webpack_require__("./node_modules/gopd/gOPD.js");
|
|
4648
4761
|
if ($gOPD) try {
|
|
4649
4762
|
$gOPD([], 'length');
|
|
4650
4763
|
} catch (e) {
|
|
@@ -4670,19 +4783,6 @@ var __webpack_modules__ = {
|
|
|
4670
4783
|
};
|
|
4671
4784
|
module.exports = hasPropertyDescriptors;
|
|
4672
4785
|
},
|
|
4673
|
-
"./node_modules/has-proto/index.js": function(module) {
|
|
4674
|
-
"use strict";
|
|
4675
|
-
var test = {
|
|
4676
|
-
__proto__: null,
|
|
4677
|
-
foo: {}
|
|
4678
|
-
};
|
|
4679
|
-
var $Object = Object;
|
|
4680
|
-
module.exports = function() {
|
|
4681
|
-
return ({
|
|
4682
|
-
__proto__: test
|
|
4683
|
-
}).foo === test.foo && !(test instanceof $Object);
|
|
4684
|
-
};
|
|
4685
|
-
},
|
|
4686
4786
|
"./node_modules/has-symbols/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4687
4787
|
"use strict";
|
|
4688
4788
|
var origSymbol = 'undefined' != typeof Symbol && Symbol;
|
|
@@ -4708,7 +4808,7 @@ var __webpack_modules__ = {
|
|
|
4708
4808
|
if ('[object Symbol]' !== Object.prototype.toString.call(symObj)) return false;
|
|
4709
4809
|
var symVal = 42;
|
|
4710
4810
|
obj[sym] = symVal;
|
|
4711
|
-
for(
|
|
4811
|
+
for(var _ in obj)return false;
|
|
4712
4812
|
if ('function' == typeof Object.keys && 0 !== Object.keys(obj).length) return false;
|
|
4713
4813
|
if ('function' == typeof Object.getOwnPropertyNames && 0 !== Object.getOwnPropertyNames(obj).length) return false;
|
|
4714
4814
|
var syms = Object.getOwnPropertySymbols(obj);
|
|
@@ -4986,6 +5086,44 @@ var __webpack_modules__ = {
|
|
|
4986
5086
|
return '[object Array]' == toString.call(arr);
|
|
4987
5087
|
};
|
|
4988
5088
|
},
|
|
5089
|
+
"./node_modules/math-intrinsics/abs.js": function(module) {
|
|
5090
|
+
"use strict";
|
|
5091
|
+
module.exports = Math.abs;
|
|
5092
|
+
},
|
|
5093
|
+
"./node_modules/math-intrinsics/floor.js": function(module) {
|
|
5094
|
+
"use strict";
|
|
5095
|
+
module.exports = Math.floor;
|
|
5096
|
+
},
|
|
5097
|
+
"./node_modules/math-intrinsics/isNaN.js": function(module) {
|
|
5098
|
+
"use strict";
|
|
5099
|
+
module.exports = Number.isNaN || function(a) {
|
|
5100
|
+
return a !== a;
|
|
5101
|
+
};
|
|
5102
|
+
},
|
|
5103
|
+
"./node_modules/math-intrinsics/max.js": function(module) {
|
|
5104
|
+
"use strict";
|
|
5105
|
+
module.exports = Math.max;
|
|
5106
|
+
},
|
|
5107
|
+
"./node_modules/math-intrinsics/min.js": function(module) {
|
|
5108
|
+
"use strict";
|
|
5109
|
+
module.exports = Math.min;
|
|
5110
|
+
},
|
|
5111
|
+
"./node_modules/math-intrinsics/pow.js": function(module) {
|
|
5112
|
+
"use strict";
|
|
5113
|
+
module.exports = Math.pow;
|
|
5114
|
+
},
|
|
5115
|
+
"./node_modules/math-intrinsics/round.js": function(module) {
|
|
5116
|
+
"use strict";
|
|
5117
|
+
module.exports = Math.round;
|
|
5118
|
+
},
|
|
5119
|
+
"./node_modules/math-intrinsics/sign.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
5120
|
+
"use strict";
|
|
5121
|
+
var $isNaN = __webpack_require__("./node_modules/math-intrinsics/isNaN.js");
|
|
5122
|
+
module.exports = function(number) {
|
|
5123
|
+
if ($isNaN(number) || 0 === number) return number;
|
|
5124
|
+
return number < 0 ? -1 : 1;
|
|
5125
|
+
};
|
|
5126
|
+
},
|
|
4989
5127
|
"./node_modules/object-inspect/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4990
5128
|
var hasMap = 'function' == typeof Map && Map.prototype;
|
|
4991
5129
|
var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;
|
|
@@ -6272,31 +6410,24 @@ var __webpack_modules__ = {
|
|
|
6272
6410
|
return fn;
|
|
6273
6411
|
};
|
|
6274
6412
|
},
|
|
6275
|
-
"./node_modules/side-channel/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
6413
|
+
"./node_modules/side-channel-list/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
6276
6414
|
"use strict";
|
|
6277
|
-
var GetIntrinsic = __webpack_require__("./node_modules/get-intrinsic/index.js");
|
|
6278
|
-
var callBound = __webpack_require__("./node_modules/call-bind/callBound.js");
|
|
6279
6415
|
var inspect = __webpack_require__("./node_modules/object-inspect/index.js");
|
|
6280
6416
|
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
6281
|
-
var
|
|
6282
|
-
var $Map = GetIntrinsic('%Map%', true);
|
|
6283
|
-
var $weakMapGet = callBound('WeakMap.prototype.get', true);
|
|
6284
|
-
var $weakMapSet = callBound('WeakMap.prototype.set', true);
|
|
6285
|
-
var $weakMapHas = callBound('WeakMap.prototype.has', true);
|
|
6286
|
-
var $mapGet = callBound('Map.prototype.get', true);
|
|
6287
|
-
var $mapSet = callBound('Map.prototype.set', true);
|
|
6288
|
-
var $mapHas = callBound('Map.prototype.has', true);
|
|
6289
|
-
var listGetNode = function(list, key) {
|
|
6417
|
+
var listGetNode = function(list, key, isDelete) {
|
|
6290
6418
|
var prev = list;
|
|
6291
6419
|
var curr;
|
|
6292
|
-
for(; null
|
|
6420
|
+
for(; null != (curr = prev.next); prev = curr)if (curr.key === key) {
|
|
6293
6421
|
prev.next = curr.next;
|
|
6294
|
-
|
|
6295
|
-
|
|
6422
|
+
if (!isDelete) {
|
|
6423
|
+
curr.next = list.next;
|
|
6424
|
+
list.next = curr;
|
|
6425
|
+
}
|
|
6296
6426
|
return curr;
|
|
6297
6427
|
}
|
|
6298
6428
|
};
|
|
6299
6429
|
var listGet = function(objects, key) {
|
|
6430
|
+
if (!objects) return;
|
|
6300
6431
|
var node = listGetNode(objects, key);
|
|
6301
6432
|
return node && node.value;
|
|
6302
6433
|
};
|
|
@@ -6310,48 +6441,162 @@ var __webpack_modules__ = {
|
|
|
6310
6441
|
};
|
|
6311
6442
|
};
|
|
6312
6443
|
var listHas = function(objects, key) {
|
|
6444
|
+
if (!objects) return false;
|
|
6313
6445
|
return !!listGetNode(objects, key);
|
|
6314
6446
|
};
|
|
6447
|
+
var listDelete = function(objects, key) {
|
|
6448
|
+
if (objects) return listGetNode(objects, key, true);
|
|
6449
|
+
};
|
|
6315
6450
|
module.exports = function() {
|
|
6451
|
+
var $o;
|
|
6452
|
+
var channel = {
|
|
6453
|
+
assert: function(key) {
|
|
6454
|
+
if (!channel.has(key)) throw new $TypeError('Side channel does not contain ' + inspect(key));
|
|
6455
|
+
},
|
|
6456
|
+
delete: function(key) {
|
|
6457
|
+
var root = $o && $o.next;
|
|
6458
|
+
var deletedNode = listDelete($o, key);
|
|
6459
|
+
if (deletedNode && root && root === deletedNode) $o = void 0;
|
|
6460
|
+
return !!deletedNode;
|
|
6461
|
+
},
|
|
6462
|
+
get: function(key) {
|
|
6463
|
+
return listGet($o, key);
|
|
6464
|
+
},
|
|
6465
|
+
has: function(key) {
|
|
6466
|
+
return listHas($o, key);
|
|
6467
|
+
},
|
|
6468
|
+
set: function(key, value) {
|
|
6469
|
+
if (!$o) $o = {
|
|
6470
|
+
next: void 0
|
|
6471
|
+
};
|
|
6472
|
+
listSet($o, key, value);
|
|
6473
|
+
}
|
|
6474
|
+
};
|
|
6475
|
+
return channel;
|
|
6476
|
+
};
|
|
6477
|
+
},
|
|
6478
|
+
"./node_modules/side-channel-map/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
6479
|
+
"use strict";
|
|
6480
|
+
var GetIntrinsic = __webpack_require__("./node_modules/get-intrinsic/index.js");
|
|
6481
|
+
var callBound = __webpack_require__("./node_modules/call-bound/index.js");
|
|
6482
|
+
var inspect = __webpack_require__("./node_modules/object-inspect/index.js");
|
|
6483
|
+
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
6484
|
+
var $Map = GetIntrinsic('%Map%', true);
|
|
6485
|
+
var $mapGet = callBound('Map.prototype.get', true);
|
|
6486
|
+
var $mapSet = callBound('Map.prototype.set', true);
|
|
6487
|
+
var $mapHas = callBound('Map.prototype.has', true);
|
|
6488
|
+
var $mapDelete = callBound('Map.prototype.delete', true);
|
|
6489
|
+
var $mapSize = callBound('Map.prototype.size', true);
|
|
6490
|
+
module.exports = !!$Map && function() {
|
|
6491
|
+
var $m;
|
|
6492
|
+
var channel = {
|
|
6493
|
+
assert: function(key) {
|
|
6494
|
+
if (!channel.has(key)) throw new $TypeError('Side channel does not contain ' + inspect(key));
|
|
6495
|
+
},
|
|
6496
|
+
delete: function(key) {
|
|
6497
|
+
if ($m) {
|
|
6498
|
+
var result = $mapDelete($m, key);
|
|
6499
|
+
if (0 === $mapSize($m)) $m = void 0;
|
|
6500
|
+
return result;
|
|
6501
|
+
}
|
|
6502
|
+
return false;
|
|
6503
|
+
},
|
|
6504
|
+
get: function(key) {
|
|
6505
|
+
if ($m) return $mapGet($m, key);
|
|
6506
|
+
},
|
|
6507
|
+
has: function(key) {
|
|
6508
|
+
if ($m) return $mapHas($m, key);
|
|
6509
|
+
return false;
|
|
6510
|
+
},
|
|
6511
|
+
set: function(key, value) {
|
|
6512
|
+
if (!$m) $m = new $Map();
|
|
6513
|
+
$mapSet($m, key, value);
|
|
6514
|
+
}
|
|
6515
|
+
};
|
|
6516
|
+
return channel;
|
|
6517
|
+
};
|
|
6518
|
+
},
|
|
6519
|
+
"./node_modules/side-channel-weakmap/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
6520
|
+
"use strict";
|
|
6521
|
+
var GetIntrinsic = __webpack_require__("./node_modules/get-intrinsic/index.js");
|
|
6522
|
+
var callBound = __webpack_require__("./node_modules/call-bound/index.js");
|
|
6523
|
+
var inspect = __webpack_require__("./node_modules/object-inspect/index.js");
|
|
6524
|
+
var getSideChannelMap = __webpack_require__("./node_modules/side-channel-map/index.js");
|
|
6525
|
+
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
6526
|
+
var $WeakMap = GetIntrinsic('%WeakMap%', true);
|
|
6527
|
+
var $weakMapGet = callBound('WeakMap.prototype.get', true);
|
|
6528
|
+
var $weakMapSet = callBound('WeakMap.prototype.set', true);
|
|
6529
|
+
var $weakMapHas = callBound('WeakMap.prototype.has', true);
|
|
6530
|
+
var $weakMapDelete = callBound('WeakMap.prototype.delete', true);
|
|
6531
|
+
module.exports = $WeakMap ? function() {
|
|
6316
6532
|
var $wm;
|
|
6317
6533
|
var $m;
|
|
6318
|
-
var $o;
|
|
6319
6534
|
var channel = {
|
|
6320
6535
|
assert: function(key) {
|
|
6321
6536
|
if (!channel.has(key)) throw new $TypeError('Side channel does not contain ' + inspect(key));
|
|
6322
6537
|
},
|
|
6538
|
+
delete: function(key) {
|
|
6539
|
+
if ($WeakMap && key && ('object' == typeof key || 'function' == typeof key)) {
|
|
6540
|
+
if ($wm) return $weakMapDelete($wm, key);
|
|
6541
|
+
} else if (getSideChannelMap) {
|
|
6542
|
+
if ($m) return $m['delete'](key);
|
|
6543
|
+
}
|
|
6544
|
+
return false;
|
|
6545
|
+
},
|
|
6323
6546
|
get: function(key) {
|
|
6324
6547
|
if ($WeakMap && key && ('object' == typeof key || 'function' == typeof key)) {
|
|
6325
6548
|
if ($wm) return $weakMapGet($wm, key);
|
|
6326
|
-
}
|
|
6327
|
-
|
|
6328
|
-
} else if ($o) return listGet($o, key);
|
|
6549
|
+
}
|
|
6550
|
+
return $m && $m.get(key);
|
|
6329
6551
|
},
|
|
6330
6552
|
has: function(key) {
|
|
6331
6553
|
if ($WeakMap && key && ('object' == typeof key || 'function' == typeof key)) {
|
|
6332
6554
|
if ($wm) return $weakMapHas($wm, key);
|
|
6333
|
-
}
|
|
6334
|
-
|
|
6335
|
-
} else if ($o) return listHas($o, key);
|
|
6336
|
-
return false;
|
|
6555
|
+
}
|
|
6556
|
+
return !!$m && $m.has(key);
|
|
6337
6557
|
},
|
|
6338
6558
|
set: function(key, value) {
|
|
6339
6559
|
if ($WeakMap && key && ('object' == typeof key || 'function' == typeof key)) {
|
|
6340
6560
|
if (!$wm) $wm = new $WeakMap();
|
|
6341
6561
|
$weakMapSet($wm, key, value);
|
|
6342
|
-
} else if (
|
|
6343
|
-
if (!$m) $m =
|
|
6344
|
-
$
|
|
6345
|
-
} else {
|
|
6346
|
-
if (!$o) $o = {
|
|
6347
|
-
key: {},
|
|
6348
|
-
next: null
|
|
6349
|
-
};
|
|
6350
|
-
listSet($o, key, value);
|
|
6562
|
+
} else if (getSideChannelMap) {
|
|
6563
|
+
if (!$m) $m = getSideChannelMap();
|
|
6564
|
+
$m.set(key, value);
|
|
6351
6565
|
}
|
|
6352
6566
|
}
|
|
6353
6567
|
};
|
|
6354
6568
|
return channel;
|
|
6569
|
+
} : getSideChannelMap;
|
|
6570
|
+
},
|
|
6571
|
+
"./node_modules/side-channel/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
6572
|
+
"use strict";
|
|
6573
|
+
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
6574
|
+
var inspect = __webpack_require__("./node_modules/object-inspect/index.js");
|
|
6575
|
+
var getSideChannelList = __webpack_require__("./node_modules/side-channel-list/index.js");
|
|
6576
|
+
var getSideChannelMap = __webpack_require__("./node_modules/side-channel-map/index.js");
|
|
6577
|
+
var getSideChannelWeakMap = __webpack_require__("./node_modules/side-channel-weakmap/index.js");
|
|
6578
|
+
var makeChannel = getSideChannelWeakMap || getSideChannelMap || getSideChannelList;
|
|
6579
|
+
module.exports = function() {
|
|
6580
|
+
var $channelData;
|
|
6581
|
+
var channel = {
|
|
6582
|
+
assert: function(key) {
|
|
6583
|
+
if (!channel.has(key)) throw new $TypeError('Side channel does not contain ' + inspect(key));
|
|
6584
|
+
},
|
|
6585
|
+
delete: function(key) {
|
|
6586
|
+
return !!$channelData && $channelData['delete'](key);
|
|
6587
|
+
},
|
|
6588
|
+
get: function(key) {
|
|
6589
|
+
return $channelData && $channelData.get(key);
|
|
6590
|
+
},
|
|
6591
|
+
has: function(key) {
|
|
6592
|
+
return !!$channelData && $channelData.has(key);
|
|
6593
|
+
},
|
|
6594
|
+
set: function(key, value) {
|
|
6595
|
+
if (!$channelData) $channelData = makeChannel();
|
|
6596
|
+
$channelData.set(key, value);
|
|
6597
|
+
}
|
|
6598
|
+
};
|
|
6599
|
+
return channel;
|
|
6355
6600
|
};
|
|
6356
6601
|
},
|
|
6357
6602
|
"./node_modules/stream-shift/index.js": function(module) {
|
|
@@ -13524,7 +13769,7 @@ var __webpack_exports__ = {};
|
|
|
13524
13769
|
screen.width,
|
|
13525
13770
|
screen.height,
|
|
13526
13771
|
screen.colorDepth
|
|
13527
|
-
].join("
|
|
13772
|
+
].join("\xd7");
|
|
13528
13773
|
if (screen.orientation) this.orientation = screen.orientation.type.toString();
|
|
13529
13774
|
this.err = null == errData ? void 0 : errData.err;
|
|
13530
13775
|
var _errData_cause;
|
|
@@ -14128,7 +14373,7 @@ var __webpack_exports__ = {};
|
|
|
14128
14373
|
}
|
|
14129
14374
|
const wrappers_form = Form;
|
|
14130
14375
|
var package_namespaceObject = {
|
|
14131
|
-
i8: "10.2.
|
|
14376
|
+
i8: "10.2.32"
|
|
14132
14377
|
};
|
|
14133
14378
|
function resource_define_property(obj, key, value) {
|
|
14134
14379
|
if (key in obj) Object.defineProperty(obj, key, {
|
|
@@ -14367,7 +14612,10 @@ var __webpack_exports__ = {};
|
|
|
14367
14612
|
makeRadioButtonPair(options) {
|
|
14368
14613
|
let radioButtonElement;
|
|
14369
14614
|
let radioButtonGroup;
|
|
14370
|
-
if (options.id)
|
|
14615
|
+
if (options.id) {
|
|
14616
|
+
radioButtonElement = document.querySelector(`#${options.id}`);
|
|
14617
|
+
if (!options.show) html_hideElement(radioButtonElement);
|
|
14618
|
+
}
|
|
14371
14619
|
if (!radioButtonElement) {
|
|
14372
14620
|
radioButtonElement = document.createElement("input");
|
|
14373
14621
|
radioButtonElement.id = options.id;
|
|
@@ -14382,6 +14630,7 @@ var __webpack_exports__ = {};
|
|
|
14382
14630
|
radioLabel.htmlFor = options.id;
|
|
14383
14631
|
radioLabel.textContent = options.label;
|
|
14384
14632
|
radioButtonGroup.appendChild(radioLabel);
|
|
14633
|
+
if (!options.show) html_hideElement(radioButtonGroup);
|
|
14385
14634
|
if (this.submitButton && contains_default()(this.buttonsElement, this.submitButton)) {
|
|
14386
14635
|
var _this_buttonsElement;
|
|
14387
14636
|
null == (_this_buttonsElement = this.buttonsElement) || _this_buttonsElement.insertBefore(radioButtonGroup, this.submitButton);
|
|
@@ -14439,6 +14688,7 @@ var __webpack_exports__ = {};
|
|
|
14439
14688
|
value: "off",
|
|
14440
14689
|
label: this.options.text.audioOff,
|
|
14441
14690
|
checked: !isAudioEnabled(this.options),
|
|
14691
|
+
show: false,
|
|
14442
14692
|
changeHandler: ()=>{
|
|
14443
14693
|
this.container.disableAudio();
|
|
14444
14694
|
}
|
|
@@ -14449,6 +14699,7 @@ var __webpack_exports__ = {};
|
|
|
14449
14699
|
value: "on",
|
|
14450
14700
|
label: this.options.text.audioOn,
|
|
14451
14701
|
checked: isAudioEnabled(this.options),
|
|
14702
|
+
show: false,
|
|
14452
14703
|
changeHandler: ()=>{
|
|
14453
14704
|
this.container.enableAudio();
|
|
14454
14705
|
}
|
|
@@ -14456,6 +14707,8 @@ var __webpack_exports__ = {};
|
|
|
14456
14707
|
}
|
|
14457
14708
|
}
|
|
14458
14709
|
onFormReady(params) {
|
|
14710
|
+
showElement(this.audioOnRadioPair);
|
|
14711
|
+
showElement(this.audioOffRadioPair);
|
|
14459
14712
|
if (!html_isShown(this.recordAgainButton)) {
|
|
14460
14713
|
if (!(null == params ? void 0 : params.paused)) showElement(this.recordButton);
|
|
14461
14714
|
}
|
|
@@ -14853,7 +15106,7 @@ var __webpack_exports__ = {};
|
|
|
14853
15106
|
else {
|
|
14854
15107
|
this.facingModeElement = document.createElement("button");
|
|
14855
15108
|
this.facingModeElement.classList.add("facingMode");
|
|
14856
|
-
this.facingModeElement.innerHTML = "
|
|
15109
|
+
this.facingModeElement.innerHTML = "\u293E";
|
|
14857
15110
|
this.facingModeElement.onclick = (e)=>{
|
|
14858
15111
|
null == e || e.preventDefault();
|
|
14859
15112
|
try {
|
|
@@ -15258,17 +15511,17 @@ var __webpack_exports__ = {};
|
|
|
15258
15511
|
this.options.logger.debug("Limit reached");
|
|
15259
15512
|
lead += `${this.options.text.limitReached}.<br/>`;
|
|
15260
15513
|
}
|
|
15261
|
-
lead += `${this.options.text.sending}
|
|
15514
|
+
lead += `${this.options.text.sending} \u{2026}`;
|
|
15262
15515
|
this.notify(lead, void 0, {
|
|
15263
15516
|
stillWait: true,
|
|
15264
15517
|
entertain: this.options.notifier.entertain
|
|
15265
15518
|
});
|
|
15266
15519
|
}
|
|
15267
15520
|
onConnecting() {
|
|
15268
|
-
this.notify("Connecting
|
|
15521
|
+
this.notify("Connecting \u2026");
|
|
15269
15522
|
}
|
|
15270
15523
|
onLoadingUserMedia() {
|
|
15271
|
-
this.notify("Loading webcam
|
|
15524
|
+
this.notify("Loading webcam \u2026");
|
|
15272
15525
|
}
|
|
15273
15526
|
onProgress(frameProgress, sampleProgress) {
|
|
15274
15527
|
let overallProgress;
|
|
@@ -15280,7 +15533,7 @@ var __webpack_exports__ = {};
|
|
|
15280
15533
|
}
|
|
15281
15534
|
onBeginVideoEncoding() {
|
|
15282
15535
|
this.visuals.beginWaiting();
|
|
15283
|
-
const lead = `${this.options.text.encoding}
|
|
15536
|
+
const lead = `${this.options.text.encoding} \u{2026}`;
|
|
15284
15537
|
this.notify(lead, void 0, {
|
|
15285
15538
|
stillWait: true,
|
|
15286
15539
|
entertain: this.options.notifier.entertain
|
|
@@ -15312,7 +15565,7 @@ var __webpack_exports__ = {};
|
|
|
15312
15565
|
this.onBeginVideoEncoding();
|
|
15313
15566
|
});
|
|
15314
15567
|
this.on("UNLOADING", ()=>{
|
|
15315
|
-
this.notify("Unloading
|
|
15568
|
+
this.notify("Unloading \u2026");
|
|
15316
15569
|
});
|
|
15317
15570
|
this.on("DISCONNECTED", ()=>{
|
|
15318
15571
|
this.notify("Disconnected");
|
|
@@ -15820,7 +16073,7 @@ var __webpack_exports__ = {};
|
|
|
15820
16073
|
else obj[key] = value;
|
|
15821
16074
|
return obj;
|
|
15822
16075
|
}
|
|
15823
|
-
const EVENT_ASCII = "
|
|
16076
|
+
const EVENT_ASCII = "|\u2014O\u2014|";
|
|
15824
16077
|
class UserMedia extends util_Despot {
|
|
15825
16078
|
attachMediaStream(stream) {
|
|
15826
16079
|
this.currentVisualStream = stream;
|
|
@@ -16217,7 +16470,7 @@ var __webpack_exports__ = {};
|
|
|
16217
16470
|
else obj[key] = value;
|
|
16218
16471
|
return obj;
|
|
16219
16472
|
}
|
|
16220
|
-
const PIPE_SYMBOL = "
|
|
16473
|
+
const PIPE_SYMBOL = "\xb0\xba\xa4\xf8,\xb8\xb8,\xf8\xa4\xba\xb0`\xb0\xba\xa4\xf8,\xb8,\xf8\xa4\xb0\xba\xa4\xf8,\xb8\xb8,\xf8\xa4\xba\xb0`\xb0\xba\xa4\xf8,\xb8 ";
|
|
16221
16474
|
class Recorder extends util_Despot {
|
|
16222
16475
|
writeStream(buffer, opts) {
|
|
16223
16476
|
if (this.stream) if (this.stream.destroyed) {
|
|
@@ -16681,7 +16934,7 @@ var __webpack_exports__ = {};
|
|
|
16681
16934
|
}, 0);
|
|
16682
16935
|
}
|
|
16683
16936
|
} else {
|
|
16684
|
-
this.options.logger.debug(`Reconnecting for the command ${command}
|
|
16937
|
+
this.options.logger.debug(`Reconnecting for the command ${command} \u{2026}`);
|
|
16685
16938
|
this.initSocket(()=>{
|
|
16686
16939
|
this.writeCommand(command, args);
|
|
16687
16940
|
null == cb || cb();
|
|
@@ -18030,7 +18283,7 @@ var __webpack_exports__ = {};
|
|
|
18030
18283
|
const name = invalidInput.getAttribute("name");
|
|
18031
18284
|
valid = false;
|
|
18032
18285
|
if (name) {
|
|
18033
|
-
whyInvalid = `Input "${name}" seems wrong
|
|
18286
|
+
whyInvalid = `Input "${name}" seems wrong \u{1F914}`;
|
|
18034
18287
|
invalidData = {
|
|
18035
18288
|
[name]: invalidInput.getAttribute("value")
|
|
18036
18289
|
};
|
|
@@ -18038,7 +18291,7 @@ var __webpack_exports__ = {};
|
|
|
18038
18291
|
} else if (!this.areVisualsHidden() && !visualsValid) {
|
|
18039
18292
|
if (this.buttonsAreReady() || this.isRecording() || this.isPaused() || this.isCountingDown()) {
|
|
18040
18293
|
valid = false;
|
|
18041
|
-
whyInvalid = "Don't forget to record a video
|
|
18294
|
+
whyInvalid = "Don't forget to record a video \uD83D\uDE09";
|
|
18042
18295
|
invalidData = {
|
|
18043
18296
|
key: void 0
|
|
18044
18297
|
};
|