videomail-client 11.0.8 → 11.1.1
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 +434 -450
- package/dist/esm/client.d.ts +1 -1
- package/dist/esm/index.d.ts +10 -17
- package/dist/esm/index.js +301 -313
- package/dist/esm/resource.d.ts +1 -1
- package/dist/esm/types/Videomail.d.ts +2 -2
- package/dist/esm/types/events/index.d.ts +1 -1
- package/dist/esm/wrappers/container.d.ts +1 -1
- package/dist/esm/wrappers/form.d.ts +1 -1
- package/dist/esm/wrappers/visuals/replay.d.ts +1 -1
- package/dist/umd/index.js +172 -186
- package/package.json +16 -16
package/dist/esm/index.js
CHANGED
|
@@ -13,158 +13,6 @@ import websocket_stream from "websocket-stream";
|
|
|
13
13
|
import audio_sample from "audio-sample";
|
|
14
14
|
import is_power_of_two from "is-power-of-two";
|
|
15
15
|
var __webpack_modules__ = {
|
|
16
|
-
"./node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[12].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[12].use[2]!./node_modules/stylus-loader/dist/cjs.js??ruleSet[1].rules[12].use[3]!./src/styles/main.styl": function(module, __webpack_exports__, __webpack_require__) {
|
|
17
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
18
|
-
A: ()=>__WEBPACK_DEFAULT_EXPORT__
|
|
19
|
-
});
|
|
20
|
-
var _node_modules_rsbuild_core_compiled_css_loader_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("./node_modules/@rsbuild/core/compiled/css-loader/noSourceMaps.js");
|
|
21
|
-
var _node_modules_rsbuild_core_compiled_css_loader_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/ __webpack_require__.n(_node_modules_rsbuild_core_compiled_css_loader_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
22
|
-
var _node_modules_rsbuild_core_compiled_css_loader_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("./node_modules/@rsbuild/core/compiled/css-loader/api.js");
|
|
23
|
-
var _node_modules_rsbuild_core_compiled_css_loader_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(_node_modules_rsbuild_core_compiled_css_loader_api_js__WEBPACK_IMPORTED_MODULE_1__);
|
|
24
|
-
var ___CSS_LOADER_EXPORT___ = _node_modules_rsbuild_core_compiled_css_loader_api_js__WEBPACK_IMPORTED_MODULE_1___default()(_node_modules_rsbuild_core_compiled_css_loader_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());
|
|
25
|
-
___CSS_LOADER_EXPORT___.push([
|
|
26
|
-
module.id,
|
|
27
|
-
`@keyframes blink {
|
|
28
|
-
0% {
|
|
29
|
-
opacity: .9;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
35% {
|
|
33
|
-
opacity: .9;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
50% {
|
|
37
|
-
opacity: .1;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
85% {
|
|
41
|
-
opacity: .1;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
100% {
|
|
45
|
-
opacity: .9;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.videomail .visuals {
|
|
50
|
-
position: relative;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.videomail .visuals video.replay {
|
|
54
|
-
width: 100%;
|
|
55
|
-
height: 100%;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.videomail .countdown, .videomail .recordTimer, .videomail .recordNote, .videomail .pausedHeader, .videomail .pausedHint {
|
|
59
|
-
height: auto;
|
|
60
|
-
margin: 0;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.videomail .countdown, .videomail .recordTimer, .videomail .recordNote, .videomail .paused, .videomail .facingMode, .videomail noscript {
|
|
64
|
-
z-index: 100;
|
|
65
|
-
position: absolute;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.videomail .countdown, .videomail .recordTimer, .videomail .recordNote, .videomail .pausedHeader, .videomail .pausedHint, .videomail noscript {
|
|
69
|
-
font-weight: bold;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.videomail .countdown, .videomail .paused, .videomail noscript {
|
|
73
|
-
width: 100%;
|
|
74
|
-
top: 50%;
|
|
75
|
-
transform: translateY(-50%);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.videomail .pausedHeader, .videomail .pausedHint, .videomail .countdown {
|
|
79
|
-
text-align: center;
|
|
80
|
-
letter-spacing: 4px;
|
|
81
|
-
text-shadow: -2px 0 #fff, 0 2px #fff, 2px 0 #fff, 0 -2px #fff;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.videomail .pausedHeader, .videomail .countdown {
|
|
85
|
-
opacity: .9;
|
|
86
|
-
font-size: 460%;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.videomail .pausedHint {
|
|
90
|
-
font-size: 150%;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.videomail .facingMode {
|
|
94
|
-
color: #f5f5f5e6;
|
|
95
|
-
z-index: 10;
|
|
96
|
-
background: #1e1e1e80;
|
|
97
|
-
border: none;
|
|
98
|
-
outline: none;
|
|
99
|
-
padding: .1em .3em;
|
|
100
|
-
font-family: monospace;
|
|
101
|
-
font-size: 1.2em;
|
|
102
|
-
transition: all .2s;
|
|
103
|
-
bottom: .6em;
|
|
104
|
-
right: .7em;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.videomail .facingMode:hover {
|
|
108
|
-
cursor: pointer;
|
|
109
|
-
background: #323232b3;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.videomail .recordTimer, .videomail .recordNote {
|
|
113
|
-
color: #00d814;
|
|
114
|
-
opacity: .9;
|
|
115
|
-
background: #0a0a0acc;
|
|
116
|
-
padding: .3em .4em;
|
|
117
|
-
font-family: monospace;
|
|
118
|
-
transition: all 1s;
|
|
119
|
-
right: .7em;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.videomail .recordTimer.near, .videomail .recordNote.near {
|
|
123
|
-
color: #eb9369;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.videomail .recordTimer.nigh, .videomail .recordNote.nigh {
|
|
127
|
-
color: #ea4b2a;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.videomail .recordTimer {
|
|
131
|
-
top: .7em;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.videomail .recordNote {
|
|
135
|
-
top: 3.6em;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.videomail .recordNote:before {
|
|
139
|
-
content: "REC";
|
|
140
|
-
animation: 1s infinite blink;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.videomail .notifier {
|
|
144
|
-
box-sizing: border-box;
|
|
145
|
-
overflow: hidden;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.videomail .radioGroup {
|
|
149
|
-
display: block;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.videomail .radioGroup label {
|
|
153
|
-
cursor: pointer;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.videomail video {
|
|
157
|
-
margin-bottom: 0;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.videomail video.userMedia {
|
|
161
|
-
background-color: #3232321a;
|
|
162
|
-
}
|
|
163
|
-
`,
|
|
164
|
-
""
|
|
165
|
-
]);
|
|
166
|
-
const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
|
|
167
|
-
},
|
|
168
16
|
"./node_modules/base64-js/index.js": function(__unused_webpack_module, exports) {
|
|
169
17
|
exports.byteLength = byteLength;
|
|
170
18
|
exports.toByteArray = toByteArray;
|
|
@@ -1336,62 +1184,62 @@ var __webpack_modules__ = {
|
|
|
1336
1184
|
return table;
|
|
1337
1185
|
}();
|
|
1338
1186
|
},
|
|
1339
|
-
"./node_modules/call-bind-apply-helpers/actualApply.js": function(
|
|
1187
|
+
"./node_modules/call-bind-apply-helpers/actualApply.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1340
1188
|
var bind = __webpack_require__("./node_modules/function-bind/index.js");
|
|
1341
1189
|
var $apply = __webpack_require__("./node_modules/call-bind-apply-helpers/functionApply.js");
|
|
1342
1190
|
var $call = __webpack_require__("./node_modules/call-bind-apply-helpers/functionCall.js");
|
|
1343
1191
|
var $reflectApply = __webpack_require__("./node_modules/call-bind-apply-helpers/reflectApply.js");
|
|
1344
|
-
|
|
1192
|
+
module1.exports = $reflectApply || bind.call($call, $apply);
|
|
1345
1193
|
},
|
|
1346
|
-
"./node_modules/call-bind-apply-helpers/applyBind.js": function(
|
|
1194
|
+
"./node_modules/call-bind-apply-helpers/applyBind.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1347
1195
|
var bind = __webpack_require__("./node_modules/function-bind/index.js");
|
|
1348
1196
|
var $apply = __webpack_require__("./node_modules/call-bind-apply-helpers/functionApply.js");
|
|
1349
1197
|
var actualApply = __webpack_require__("./node_modules/call-bind-apply-helpers/actualApply.js");
|
|
1350
|
-
|
|
1198
|
+
module1.exports = function() {
|
|
1351
1199
|
return actualApply(bind, $apply, arguments);
|
|
1352
1200
|
};
|
|
1353
1201
|
},
|
|
1354
|
-
"./node_modules/call-bind-apply-helpers/functionApply.js": function(
|
|
1355
|
-
|
|
1202
|
+
"./node_modules/call-bind-apply-helpers/functionApply.js": function(module1) {
|
|
1203
|
+
module1.exports = Function.prototype.apply;
|
|
1356
1204
|
},
|
|
1357
|
-
"./node_modules/call-bind-apply-helpers/functionCall.js": function(
|
|
1358
|
-
|
|
1205
|
+
"./node_modules/call-bind-apply-helpers/functionCall.js": function(module1) {
|
|
1206
|
+
module1.exports = Function.prototype.call;
|
|
1359
1207
|
},
|
|
1360
|
-
"./node_modules/call-bind-apply-helpers/index.js": function(
|
|
1208
|
+
"./node_modules/call-bind-apply-helpers/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1361
1209
|
var bind = __webpack_require__("./node_modules/function-bind/index.js");
|
|
1362
1210
|
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
1363
1211
|
var $call = __webpack_require__("./node_modules/call-bind-apply-helpers/functionCall.js");
|
|
1364
1212
|
var $actualApply = __webpack_require__("./node_modules/call-bind-apply-helpers/actualApply.js");
|
|
1365
|
-
|
|
1213
|
+
module1.exports = function(args) {
|
|
1366
1214
|
if (args.length < 1 || 'function' != typeof args[0]) throw new $TypeError('a function is required');
|
|
1367
1215
|
return $actualApply(bind, $call, args);
|
|
1368
1216
|
};
|
|
1369
1217
|
},
|
|
1370
|
-
"./node_modules/call-bind-apply-helpers/reflectApply.js": function(
|
|
1371
|
-
|
|
1218
|
+
"./node_modules/call-bind-apply-helpers/reflectApply.js": function(module1) {
|
|
1219
|
+
module1.exports = 'undefined' != typeof Reflect && Reflect && Reflect.apply;
|
|
1372
1220
|
},
|
|
1373
|
-
"./node_modules/call-bind/index.js": function(
|
|
1221
|
+
"./node_modules/call-bind/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1374
1222
|
var setFunctionLength = __webpack_require__("./node_modules/set-function-length/index.js");
|
|
1375
1223
|
var $defineProperty = __webpack_require__("./node_modules/es-define-property/index.js");
|
|
1376
1224
|
var callBindBasic = __webpack_require__("./node_modules/call-bind-apply-helpers/index.js");
|
|
1377
1225
|
var applyBind = __webpack_require__("./node_modules/call-bind-apply-helpers/applyBind.js");
|
|
1378
|
-
|
|
1226
|
+
module1.exports = function(originalFunction) {
|
|
1379
1227
|
var func = callBindBasic(arguments);
|
|
1380
1228
|
var adjustedLength = originalFunction.length - (arguments.length - 1);
|
|
1381
1229
|
return setFunctionLength(func, 1 + (adjustedLength > 0 ? adjustedLength : 0), true);
|
|
1382
1230
|
};
|
|
1383
|
-
if ($defineProperty) $defineProperty(
|
|
1231
|
+
if ($defineProperty) $defineProperty(module1.exports, 'apply', {
|
|
1384
1232
|
value: applyBind
|
|
1385
1233
|
});
|
|
1386
|
-
else
|
|
1234
|
+
else module1.exports.apply = applyBind;
|
|
1387
1235
|
},
|
|
1388
|
-
"./node_modules/call-bound/index.js": function(
|
|
1236
|
+
"./node_modules/call-bound/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1389
1237
|
var GetIntrinsic = __webpack_require__("./node_modules/get-intrinsic/index.js");
|
|
1390
1238
|
var callBindBasic = __webpack_require__("./node_modules/call-bind-apply-helpers/index.js");
|
|
1391
1239
|
var $indexOf = callBindBasic([
|
|
1392
1240
|
GetIntrinsic('%String.prototype.indexOf%')
|
|
1393
1241
|
]);
|
|
1394
|
-
|
|
1242
|
+
module1.exports = function(name, allowMissing) {
|
|
1395
1243
|
var intrinsic = GetIntrinsic(name, !!allowMissing);
|
|
1396
1244
|
if ('function' == typeof intrinsic && $indexOf(name, '.prototype.') > -1) return callBindBasic([
|
|
1397
1245
|
intrinsic
|
|
@@ -1399,12 +1247,12 @@ var __webpack_modules__ = {
|
|
|
1399
1247
|
return intrinsic;
|
|
1400
1248
|
};
|
|
1401
1249
|
},
|
|
1402
|
-
"./node_modules/define-data-property/index.js": function(
|
|
1250
|
+
"./node_modules/define-data-property/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1403
1251
|
var $defineProperty = __webpack_require__("./node_modules/es-define-property/index.js");
|
|
1404
1252
|
var $SyntaxError = __webpack_require__("./node_modules/es-errors/syntax.js");
|
|
1405
1253
|
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
1406
1254
|
var gopd = __webpack_require__("./node_modules/gopd/index.js");
|
|
1407
|
-
|
|
1255
|
+
module1.exports = function(obj, property, value) {
|
|
1408
1256
|
if (!obj || 'object' != typeof obj && 'function' != typeof obj) throw new $TypeError('`obj` must be an object or a function`');
|
|
1409
1257
|
if ('string' != typeof property && 'symbol' != typeof property) throw new $TypeError('`property` must be a string or a symbol`');
|
|
1410
1258
|
if (arguments.length > 3 && 'boolean' != typeof arguments[3] && null !== arguments[3]) throw new $TypeError('`nonEnumerable`, if provided, must be a boolean or null');
|
|
@@ -1426,7 +1274,7 @@ var __webpack_modules__ = {
|
|
|
1426
1274
|
else obj[property] = value;
|
|
1427
1275
|
};
|
|
1428
1276
|
},
|
|
1429
|
-
"./node_modules/dunder-proto/get.js": function(
|
|
1277
|
+
"./node_modules/dunder-proto/get.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1430
1278
|
var callBind = __webpack_require__("./node_modules/call-bind-apply-helpers/index.js");
|
|
1431
1279
|
var gOPD = __webpack_require__("./node_modules/gopd/index.js");
|
|
1432
1280
|
var hasProtoAccessor;
|
|
@@ -1438,13 +1286,13 @@ var __webpack_modules__ = {
|
|
|
1438
1286
|
var desc = !!hasProtoAccessor && gOPD && gOPD(Object.prototype, '__proto__');
|
|
1439
1287
|
var $Object = Object;
|
|
1440
1288
|
var $getPrototypeOf = $Object.getPrototypeOf;
|
|
1441
|
-
|
|
1289
|
+
module1.exports = desc && 'function' == typeof desc.get ? callBind([
|
|
1442
1290
|
desc.get
|
|
1443
1291
|
]) : 'function' == typeof $getPrototypeOf ? function(value) {
|
|
1444
1292
|
return $getPrototypeOf(null == value ? value : $Object(value));
|
|
1445
1293
|
} : false;
|
|
1446
1294
|
},
|
|
1447
|
-
"./node_modules/es-define-property/index.js": function(
|
|
1295
|
+
"./node_modules/es-define-property/index.js": function(module1) {
|
|
1448
1296
|
var $defineProperty = Object.defineProperty || false;
|
|
1449
1297
|
if ($defineProperty) try {
|
|
1450
1298
|
$defineProperty({}, 'a', {
|
|
@@ -1453,33 +1301,33 @@ var __webpack_modules__ = {
|
|
|
1453
1301
|
} catch (e) {
|
|
1454
1302
|
$defineProperty = false;
|
|
1455
1303
|
}
|
|
1456
|
-
|
|
1304
|
+
module1.exports = $defineProperty;
|
|
1457
1305
|
},
|
|
1458
|
-
"./node_modules/es-errors/eval.js": function(
|
|
1459
|
-
|
|
1306
|
+
"./node_modules/es-errors/eval.js": function(module1) {
|
|
1307
|
+
module1.exports = EvalError;
|
|
1460
1308
|
},
|
|
1461
|
-
"./node_modules/es-errors/index.js": function(
|
|
1462
|
-
|
|
1309
|
+
"./node_modules/es-errors/index.js": function(module1) {
|
|
1310
|
+
module1.exports = Error;
|
|
1463
1311
|
},
|
|
1464
|
-
"./node_modules/es-errors/range.js": function(
|
|
1465
|
-
|
|
1312
|
+
"./node_modules/es-errors/range.js": function(module1) {
|
|
1313
|
+
module1.exports = RangeError;
|
|
1466
1314
|
},
|
|
1467
|
-
"./node_modules/es-errors/ref.js": function(
|
|
1468
|
-
|
|
1315
|
+
"./node_modules/es-errors/ref.js": function(module1) {
|
|
1316
|
+
module1.exports = ReferenceError;
|
|
1469
1317
|
},
|
|
1470
|
-
"./node_modules/es-errors/syntax.js": function(
|
|
1471
|
-
|
|
1318
|
+
"./node_modules/es-errors/syntax.js": function(module1) {
|
|
1319
|
+
module1.exports = SyntaxError;
|
|
1472
1320
|
},
|
|
1473
|
-
"./node_modules/es-errors/type.js": function(
|
|
1474
|
-
|
|
1321
|
+
"./node_modules/es-errors/type.js": function(module1) {
|
|
1322
|
+
module1.exports = TypeError;
|
|
1475
1323
|
},
|
|
1476
|
-
"./node_modules/es-errors/uri.js": function(
|
|
1477
|
-
|
|
1324
|
+
"./node_modules/es-errors/uri.js": function(module1) {
|
|
1325
|
+
module1.exports = URIError;
|
|
1478
1326
|
},
|
|
1479
|
-
"./node_modules/es-object-atoms/index.js": function(
|
|
1480
|
-
|
|
1327
|
+
"./node_modules/es-object-atoms/index.js": function(module1) {
|
|
1328
|
+
module1.exports = Object;
|
|
1481
1329
|
},
|
|
1482
|
-
"./node_modules/for-each/index.js": function(
|
|
1330
|
+
"./node_modules/for-each/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1483
1331
|
var isCallable = __webpack_require__("./node_modules/is-callable/index.js");
|
|
1484
1332
|
var toStr = Object.prototype.toString;
|
|
1485
1333
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -1498,7 +1346,7 @@ var __webpack_modules__ = {
|
|
|
1498
1346
|
function isArray(x) {
|
|
1499
1347
|
return '[object Array]' === toStr.call(x);
|
|
1500
1348
|
}
|
|
1501
|
-
|
|
1349
|
+
module1.exports = function(list, iterator, thisArg) {
|
|
1502
1350
|
if (!isCallable(iterator)) throw new TypeError('iterator must be a function');
|
|
1503
1351
|
var receiver;
|
|
1504
1352
|
if (arguments.length >= 3) receiver = thisArg;
|
|
@@ -1507,7 +1355,7 @@ var __webpack_modules__ = {
|
|
|
1507
1355
|
else forEachObject(list, iterator, receiver);
|
|
1508
1356
|
};
|
|
1509
1357
|
},
|
|
1510
|
-
"./node_modules/function-bind/implementation.js": function(
|
|
1358
|
+
"./node_modules/function-bind/implementation.js": function(module1) {
|
|
1511
1359
|
var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
|
|
1512
1360
|
var toStr = Object.prototype.toString;
|
|
1513
1361
|
var max = Math.max;
|
|
@@ -1531,7 +1379,7 @@ var __webpack_modules__ = {
|
|
|
1531
1379
|
}
|
|
1532
1380
|
return str;
|
|
1533
1381
|
};
|
|
1534
|
-
|
|
1382
|
+
module1.exports = function(that) {
|
|
1535
1383
|
var target = this;
|
|
1536
1384
|
if ('function' != typeof target || toStr.apply(target) !== funcType) throw new TypeError(ERROR_MESSAGE + target);
|
|
1537
1385
|
var args = slicy(arguments, 1);
|
|
@@ -1557,11 +1405,11 @@ var __webpack_modules__ = {
|
|
|
1557
1405
|
return bound;
|
|
1558
1406
|
};
|
|
1559
1407
|
},
|
|
1560
|
-
"./node_modules/function-bind/index.js": function(
|
|
1408
|
+
"./node_modules/function-bind/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1561
1409
|
var implementation = __webpack_require__("./node_modules/function-bind/implementation.js");
|
|
1562
|
-
|
|
1410
|
+
module1.exports = Function.prototype.bind || implementation;
|
|
1563
1411
|
},
|
|
1564
|
-
"./node_modules/get-intrinsic/index.js": function(
|
|
1412
|
+
"./node_modules/get-intrinsic/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
1565
1413
|
var undefined;
|
|
1566
1414
|
var $Object = __webpack_require__("./node_modules/es-object-atoms/index.js");
|
|
1567
1415
|
var $Error = __webpack_require__("./node_modules/es-errors/index.js");
|
|
@@ -1968,7 +1816,7 @@ var __webpack_modules__ = {
|
|
|
1968
1816
|
}
|
|
1969
1817
|
throw new $SyntaxError('intrinsic ' + name + ' does not exist!');
|
|
1970
1818
|
};
|
|
1971
|
-
|
|
1819
|
+
module1.exports = function(name, allowMissing) {
|
|
1972
1820
|
if ('string' != typeof name || 0 === name.length) throw new $TypeError('intrinsic name must be a non-empty string');
|
|
1973
1821
|
if (arguments.length > 1 && 'boolean' != typeof allowMissing) throw new $TypeError('"allowMissing" argument must be a boolean');
|
|
1974
1822
|
if (null === $exec(/^%?[^%]*%?$/, name)) throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');
|
|
@@ -2014,18 +1862,18 @@ var __webpack_modules__ = {
|
|
|
2014
1862
|
return value;
|
|
2015
1863
|
};
|
|
2016
1864
|
},
|
|
2017
|
-
"./node_modules/get-proto/Object.getPrototypeOf.js": function(
|
|
1865
|
+
"./node_modules/get-proto/Object.getPrototypeOf.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2018
1866
|
var $Object = __webpack_require__("./node_modules/es-object-atoms/index.js");
|
|
2019
|
-
|
|
1867
|
+
module1.exports = $Object.getPrototypeOf || null;
|
|
2020
1868
|
},
|
|
2021
|
-
"./node_modules/get-proto/Reflect.getPrototypeOf.js": function(
|
|
2022
|
-
|
|
1869
|
+
"./node_modules/get-proto/Reflect.getPrototypeOf.js": function(module1) {
|
|
1870
|
+
module1.exports = 'undefined' != typeof Reflect && Reflect.getPrototypeOf || null;
|
|
2023
1871
|
},
|
|
2024
|
-
"./node_modules/get-proto/index.js": function(
|
|
1872
|
+
"./node_modules/get-proto/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2025
1873
|
var reflectGetProto = __webpack_require__("./node_modules/get-proto/Reflect.getPrototypeOf.js");
|
|
2026
1874
|
var originalGetProto = __webpack_require__("./node_modules/get-proto/Object.getPrototypeOf.js");
|
|
2027
1875
|
var getDunderProto = __webpack_require__("./node_modules/dunder-proto/get.js");
|
|
2028
|
-
|
|
1876
|
+
module1.exports = reflectGetProto ? function(O) {
|
|
2029
1877
|
return reflectGetProto(O);
|
|
2030
1878
|
} : originalGetProto ? function(O) {
|
|
2031
1879
|
if (!O || 'object' != typeof O && 'function' != typeof O) throw new TypeError('getProto: not an object');
|
|
@@ -2034,19 +1882,19 @@ var __webpack_modules__ = {
|
|
|
2034
1882
|
return getDunderProto(O);
|
|
2035
1883
|
} : null;
|
|
2036
1884
|
},
|
|
2037
|
-
"./node_modules/gopd/gOPD.js": function(
|
|
2038
|
-
|
|
1885
|
+
"./node_modules/gopd/gOPD.js": function(module1) {
|
|
1886
|
+
module1.exports = Object.getOwnPropertyDescriptor;
|
|
2039
1887
|
},
|
|
2040
|
-
"./node_modules/gopd/index.js": function(
|
|
1888
|
+
"./node_modules/gopd/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2041
1889
|
var $gOPD = __webpack_require__("./node_modules/gopd/gOPD.js");
|
|
2042
1890
|
if ($gOPD) try {
|
|
2043
1891
|
$gOPD([], 'length');
|
|
2044
1892
|
} catch (e) {
|
|
2045
1893
|
$gOPD = null;
|
|
2046
1894
|
}
|
|
2047
|
-
|
|
1895
|
+
module1.exports = $gOPD;
|
|
2048
1896
|
},
|
|
2049
|
-
"./node_modules/has-property-descriptors/index.js": function(
|
|
1897
|
+
"./node_modules/has-property-descriptors/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2050
1898
|
var $defineProperty = __webpack_require__("./node_modules/es-define-property/index.js");
|
|
2051
1899
|
var hasPropertyDescriptors = function() {
|
|
2052
1900
|
return !!$defineProperty;
|
|
@@ -2061,12 +1909,12 @@ var __webpack_modules__ = {
|
|
|
2061
1909
|
return true;
|
|
2062
1910
|
}
|
|
2063
1911
|
};
|
|
2064
|
-
|
|
1912
|
+
module1.exports = hasPropertyDescriptors;
|
|
2065
1913
|
},
|
|
2066
|
-
"./node_modules/has-symbols/index.js": function(
|
|
1914
|
+
"./node_modules/has-symbols/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2067
1915
|
var origSymbol = 'undefined' != typeof Symbol && Symbol;
|
|
2068
1916
|
var hasSymbolSham = __webpack_require__("./node_modules/has-symbols/shams.js");
|
|
2069
|
-
|
|
1917
|
+
module1.exports = function() {
|
|
2070
1918
|
if ('function' != typeof origSymbol) return false;
|
|
2071
1919
|
if ('function' != typeof Symbol) return false;
|
|
2072
1920
|
if ('symbol' != typeof origSymbol('foo')) return false;
|
|
@@ -2074,8 +1922,8 @@ var __webpack_modules__ = {
|
|
|
2074
1922
|
return hasSymbolSham();
|
|
2075
1923
|
};
|
|
2076
1924
|
},
|
|
2077
|
-
"./node_modules/has-symbols/shams.js": function(
|
|
2078
|
-
|
|
1925
|
+
"./node_modules/has-symbols/shams.js": function(module1) {
|
|
1926
|
+
module1.exports = function() {
|
|
2079
1927
|
if ('function' != typeof Symbol || 'function' != typeof Object.getOwnPropertySymbols) return false;
|
|
2080
1928
|
if ('symbol' == typeof Symbol.iterator) return true;
|
|
2081
1929
|
var obj = {};
|
|
@@ -2099,17 +1947,17 @@ var __webpack_modules__ = {
|
|
|
2099
1947
|
return true;
|
|
2100
1948
|
};
|
|
2101
1949
|
},
|
|
2102
|
-
"./node_modules/has-tostringtag/shams.js": function(
|
|
1950
|
+
"./node_modules/has-tostringtag/shams.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2103
1951
|
var hasSymbols = __webpack_require__("./node_modules/has-symbols/shams.js");
|
|
2104
|
-
|
|
1952
|
+
module1.exports = function() {
|
|
2105
1953
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
2106
1954
|
};
|
|
2107
1955
|
},
|
|
2108
|
-
"./node_modules/hasown/index.js": function(
|
|
1956
|
+
"./node_modules/hasown/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2109
1957
|
var call = Function.prototype.call;
|
|
2110
1958
|
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
2111
1959
|
var bind = __webpack_require__("./node_modules/function-bind/index.js");
|
|
2112
|
-
|
|
1960
|
+
module1.exports = bind.call(call, $hasOwn);
|
|
2113
1961
|
},
|
|
2114
1962
|
"./node_modules/ieee754/index.js": function(__unused_webpack_module, exports) {
|
|
2115
1963
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */ exports.read = function(buffer, offset, isLE, mLen, nBytes) {
|
|
@@ -2181,8 +2029,8 @@ var __webpack_modules__ = {
|
|
|
2181
2029
|
buffer[offset + i - d] |= 128 * s;
|
|
2182
2030
|
};
|
|
2183
2031
|
},
|
|
2184
|
-
"./node_modules/inherits/inherits_browser.js": function(
|
|
2185
|
-
if ('function' == typeof Object.create)
|
|
2032
|
+
"./node_modules/inherits/inherits_browser.js": function(module1) {
|
|
2033
|
+
if ('function' == typeof Object.create) module1.exports = function(ctor, superCtor) {
|
|
2186
2034
|
if (superCtor) {
|
|
2187
2035
|
ctor.super_ = superCtor;
|
|
2188
2036
|
ctor.prototype = Object.create(superCtor.prototype, {
|
|
@@ -2195,7 +2043,7 @@ var __webpack_modules__ = {
|
|
|
2195
2043
|
});
|
|
2196
2044
|
}
|
|
2197
2045
|
};
|
|
2198
|
-
else
|
|
2046
|
+
else module1.exports = function(ctor, superCtor) {
|
|
2199
2047
|
if (superCtor) {
|
|
2200
2048
|
ctor.super_ = superCtor;
|
|
2201
2049
|
var TempCtor = function() {};
|
|
@@ -2205,7 +2053,7 @@ var __webpack_modules__ = {
|
|
|
2205
2053
|
}
|
|
2206
2054
|
};
|
|
2207
2055
|
},
|
|
2208
|
-
"./node_modules/is-arguments/index.js": function(
|
|
2056
|
+
"./node_modules/is-arguments/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2209
2057
|
var hasToStringTag = __webpack_require__("./node_modules/has-tostringtag/shams.js")();
|
|
2210
2058
|
var callBound = __webpack_require__("./node_modules/call-bound/index.js");
|
|
2211
2059
|
var $toString = callBound('Object.prototype.toString');
|
|
@@ -2221,9 +2069,9 @@ var __webpack_modules__ = {
|
|
|
2221
2069
|
return isStandardArguments(arguments);
|
|
2222
2070
|
}();
|
|
2223
2071
|
isStandardArguments.isLegacyArguments = isLegacyArguments;
|
|
2224
|
-
|
|
2072
|
+
module1.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
2225
2073
|
},
|
|
2226
|
-
"./node_modules/is-callable/index.js": function(
|
|
2074
|
+
"./node_modules/is-callable/index.js": function(module1) {
|
|
2227
2075
|
var fnToStr = Function.prototype.toString;
|
|
2228
2076
|
var reflectApply = 'object' == typeof Reflect && null !== Reflect && Reflect.apply;
|
|
2229
2077
|
var badArrayLike;
|
|
@@ -2284,7 +2132,7 @@ var __webpack_modules__ = {
|
|
|
2284
2132
|
return false;
|
|
2285
2133
|
};
|
|
2286
2134
|
}
|
|
2287
|
-
|
|
2135
|
+
module1.exports = reflectApply ? function(value) {
|
|
2288
2136
|
if (isDDA(value)) return true;
|
|
2289
2137
|
if (!value) return false;
|
|
2290
2138
|
if ('function' != typeof value && 'object' != typeof value) return false;
|
|
@@ -2305,7 +2153,7 @@ var __webpack_modules__ = {
|
|
|
2305
2153
|
return tryFunctionObject(value);
|
|
2306
2154
|
};
|
|
2307
2155
|
},
|
|
2308
|
-
"./node_modules/is-generator-function/index.js": function(
|
|
2156
|
+
"./node_modules/is-generator-function/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2309
2157
|
var callBound = __webpack_require__("./node_modules/call-bound/index.js");
|
|
2310
2158
|
var safeRegexTest = __webpack_require__("./node_modules/safe-regex-test/index.js");
|
|
2311
2159
|
var isFnRegex = safeRegexTest(/^\s*(?:function)?\*/);
|
|
@@ -2320,7 +2168,7 @@ var __webpack_modules__ = {
|
|
|
2320
2168
|
} catch (e) {}
|
|
2321
2169
|
};
|
|
2322
2170
|
var GeneratorFunction;
|
|
2323
|
-
|
|
2171
|
+
module1.exports = function(fn) {
|
|
2324
2172
|
if ('function' != typeof fn) return false;
|
|
2325
2173
|
if (isFnRegex(fnToStr(fn))) return true;
|
|
2326
2174
|
if (!hasToStringTag) {
|
|
@@ -2335,7 +2183,7 @@ var __webpack_modules__ = {
|
|
|
2335
2183
|
return getProto(fn) === GeneratorFunction;
|
|
2336
2184
|
};
|
|
2337
2185
|
},
|
|
2338
|
-
"./node_modules/is-regex/index.js": function(
|
|
2186
|
+
"./node_modules/is-regex/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2339
2187
|
var callBound = __webpack_require__("./node_modules/call-bound/index.js");
|
|
2340
2188
|
var hasToStringTag = __webpack_require__("./node_modules/has-tostringtag/shams.js")();
|
|
2341
2189
|
var hasOwn = __webpack_require__("./node_modules/hasown/index.js");
|
|
@@ -2371,46 +2219,46 @@ var __webpack_modules__ = {
|
|
|
2371
2219
|
return $toString(value) === regexClass;
|
|
2372
2220
|
};
|
|
2373
2221
|
}
|
|
2374
|
-
|
|
2222
|
+
module1.exports = fn;
|
|
2375
2223
|
},
|
|
2376
|
-
"./node_modules/is-typed-array/index.js": function(
|
|
2224
|
+
"./node_modules/is-typed-array/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2377
2225
|
var whichTypedArray = __webpack_require__("./node_modules/which-typed-array/index.js");
|
|
2378
|
-
|
|
2226
|
+
module1.exports = function(value) {
|
|
2379
2227
|
return !!whichTypedArray(value);
|
|
2380
2228
|
};
|
|
2381
2229
|
},
|
|
2382
|
-
"./node_modules/math-intrinsics/abs.js": function(
|
|
2383
|
-
|
|
2230
|
+
"./node_modules/math-intrinsics/abs.js": function(module1) {
|
|
2231
|
+
module1.exports = Math.abs;
|
|
2384
2232
|
},
|
|
2385
|
-
"./node_modules/math-intrinsics/floor.js": function(
|
|
2386
|
-
|
|
2233
|
+
"./node_modules/math-intrinsics/floor.js": function(module1) {
|
|
2234
|
+
module1.exports = Math.floor;
|
|
2387
2235
|
},
|
|
2388
|
-
"./node_modules/math-intrinsics/isNaN.js": function(
|
|
2389
|
-
|
|
2236
|
+
"./node_modules/math-intrinsics/isNaN.js": function(module1) {
|
|
2237
|
+
module1.exports = Number.isNaN || function(a) {
|
|
2390
2238
|
return a !== a;
|
|
2391
2239
|
};
|
|
2392
2240
|
},
|
|
2393
|
-
"./node_modules/math-intrinsics/max.js": function(
|
|
2394
|
-
|
|
2241
|
+
"./node_modules/math-intrinsics/max.js": function(module1) {
|
|
2242
|
+
module1.exports = Math.max;
|
|
2395
2243
|
},
|
|
2396
|
-
"./node_modules/math-intrinsics/min.js": function(
|
|
2397
|
-
|
|
2244
|
+
"./node_modules/math-intrinsics/min.js": function(module1) {
|
|
2245
|
+
module1.exports = Math.min;
|
|
2398
2246
|
},
|
|
2399
|
-
"./node_modules/math-intrinsics/pow.js": function(
|
|
2400
|
-
|
|
2247
|
+
"./node_modules/math-intrinsics/pow.js": function(module1) {
|
|
2248
|
+
module1.exports = Math.pow;
|
|
2401
2249
|
},
|
|
2402
|
-
"./node_modules/math-intrinsics/round.js": function(
|
|
2403
|
-
|
|
2250
|
+
"./node_modules/math-intrinsics/round.js": function(module1) {
|
|
2251
|
+
module1.exports = Math.round;
|
|
2404
2252
|
},
|
|
2405
|
-
"./node_modules/math-intrinsics/sign.js": function(
|
|
2253
|
+
"./node_modules/math-intrinsics/sign.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2406
2254
|
var $isNaN = __webpack_require__("./node_modules/math-intrinsics/isNaN.js");
|
|
2407
|
-
|
|
2255
|
+
module1.exports = function(number) {
|
|
2408
2256
|
if ($isNaN(number) || 0 === number) return number;
|
|
2409
2257
|
return number < 0 ? -1 : 1;
|
|
2410
2258
|
};
|
|
2411
2259
|
},
|
|
2412
|
-
"./node_modules/possible-typed-array-names/index.js": function(
|
|
2413
|
-
|
|
2260
|
+
"./node_modules/possible-typed-array-names/index.js": function(module1) {
|
|
2261
|
+
module1.exports = [
|
|
2414
2262
|
'Float16Array',
|
|
2415
2263
|
'Float32Array',
|
|
2416
2264
|
'Float64Array',
|
|
@@ -2425,8 +2273,8 @@ var __webpack_modules__ = {
|
|
|
2425
2273
|
'BigUint64Array'
|
|
2426
2274
|
];
|
|
2427
2275
|
},
|
|
2428
|
-
"./node_modules/process/browser.js": function(
|
|
2429
|
-
var process =
|
|
2276
|
+
"./node_modules/process/browser.js": function(module1) {
|
|
2277
|
+
var process = module1.exports = {};
|
|
2430
2278
|
var cachedSetTimeout;
|
|
2431
2279
|
var cachedClearTimeout;
|
|
2432
2280
|
function defaultSetTimout() {
|
|
@@ -2551,26 +2399,26 @@ var __webpack_modules__ = {
|
|
|
2551
2399
|
return 0;
|
|
2552
2400
|
};
|
|
2553
2401
|
},
|
|
2554
|
-
"./node_modules/safe-regex-test/index.js": function(
|
|
2402
|
+
"./node_modules/safe-regex-test/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2555
2403
|
var callBound = __webpack_require__("./node_modules/call-bound/index.js");
|
|
2556
2404
|
var isRegex = __webpack_require__("./node_modules/is-regex/index.js");
|
|
2557
2405
|
var $exec = callBound('RegExp.prototype.exec');
|
|
2558
2406
|
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
2559
|
-
|
|
2407
|
+
module1.exports = function(regex) {
|
|
2560
2408
|
if (!isRegex(regex)) throw new $TypeError('`regex` must be a RegExp');
|
|
2561
2409
|
return function(s) {
|
|
2562
2410
|
return null !== $exec(regex, s);
|
|
2563
2411
|
};
|
|
2564
2412
|
};
|
|
2565
2413
|
},
|
|
2566
|
-
"./node_modules/set-function-length/index.js": function(
|
|
2414
|
+
"./node_modules/set-function-length/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
2567
2415
|
var GetIntrinsic = __webpack_require__("./node_modules/get-intrinsic/index.js");
|
|
2568
2416
|
var define = __webpack_require__("./node_modules/define-data-property/index.js");
|
|
2569
2417
|
var hasDescriptors = __webpack_require__("./node_modules/has-property-descriptors/index.js")();
|
|
2570
2418
|
var gOPD = __webpack_require__("./node_modules/gopd/index.js");
|
|
2571
2419
|
var $TypeError = __webpack_require__("./node_modules/es-errors/type.js");
|
|
2572
2420
|
var $floor = GetIntrinsic('%Math.floor%');
|
|
2573
|
-
|
|
2421
|
+
module1.exports = function(fn, length) {
|
|
2574
2422
|
if ('function' != typeof fn) throw new $TypeError('`fn` is not a function');
|
|
2575
2423
|
if ('number' != typeof length || length < 0 || length > 0xFFFFFFFF || $floor(length) !== length) throw new $TypeError('`length` must be a positive 32-bit integer');
|
|
2576
2424
|
var loose = arguments.length > 2 && !!arguments[2];
|
|
@@ -2585,8 +2433,8 @@ var __webpack_modules__ = {
|
|
|
2585
2433
|
return fn;
|
|
2586
2434
|
};
|
|
2587
2435
|
},
|
|
2588
|
-
"./node_modules/util/support/isBufferBrowser.js": function(
|
|
2589
|
-
|
|
2436
|
+
"./node_modules/util/support/isBufferBrowser.js": function(module1) {
|
|
2437
|
+
module1.exports = function(arg) {
|
|
2590
2438
|
return arg && 'object' == typeof arg && 'function' == typeof arg.copy && 'function' == typeof arg.fill && 'function' == typeof arg.readUInt8;
|
|
2591
2439
|
};
|
|
2592
2440
|
},
|
|
@@ -3259,7 +3107,7 @@ var __webpack_modules__ = {
|
|
|
3259
3107
|
}
|
|
3260
3108
|
exports.callbackify = callbackify;
|
|
3261
3109
|
},
|
|
3262
|
-
"./node_modules/which-typed-array/index.js": function(
|
|
3110
|
+
"./node_modules/which-typed-array/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
3263
3111
|
var forEach = __webpack_require__("./node_modules/for-each/index.js");
|
|
3264
3112
|
var availableTypedArrays = __webpack_require__("./node_modules/available-typed-arrays/index.js");
|
|
3265
3113
|
var callBind = __webpack_require__("./node_modules/call-bind/index.js");
|
|
@@ -3313,7 +3161,7 @@ var __webpack_modules__ = {
|
|
|
3313
3161
|
});
|
|
3314
3162
|
return found;
|
|
3315
3163
|
};
|
|
3316
|
-
|
|
3164
|
+
module1.exports = function(value) {
|
|
3317
3165
|
if (!value || 'object' != typeof value) return false;
|
|
3318
3166
|
if (!hasToStringTag) {
|
|
3319
3167
|
var tag = $slice($toString(value), 8, -1);
|
|
@@ -3325,8 +3173,8 @@ var __webpack_modules__ = {
|
|
|
3325
3173
|
return tryTypedArrays(value);
|
|
3326
3174
|
};
|
|
3327
3175
|
},
|
|
3328
|
-
"./node_modules/@rsbuild/core/compiled/css-loader/api.js": function(
|
|
3329
|
-
|
|
3176
|
+
"./node_modules/@rsbuild/core/compiled/css-loader/api.js": function(module1) {
|
|
3177
|
+
module1.exports = function(cssWithMappingToString) {
|
|
3330
3178
|
var list = [];
|
|
3331
3179
|
list.toString = function() {
|
|
3332
3180
|
return this.map(function(item) {
|
|
@@ -3378,12 +3226,12 @@ var __webpack_modules__ = {
|
|
|
3378
3226
|
return list;
|
|
3379
3227
|
};
|
|
3380
3228
|
},
|
|
3381
|
-
"./node_modules/@rsbuild/core/compiled/css-loader/noSourceMaps.js": function(
|
|
3382
|
-
|
|
3229
|
+
"./node_modules/@rsbuild/core/compiled/css-loader/noSourceMaps.js": function(module1) {
|
|
3230
|
+
module1.exports = function(i) {
|
|
3383
3231
|
return i[1];
|
|
3384
3232
|
};
|
|
3385
3233
|
},
|
|
3386
|
-
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/injectStylesIntoStyleTag.js": function(
|
|
3234
|
+
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/injectStylesIntoStyleTag.js": function(module1) {
|
|
3387
3235
|
var stylesInDOM = [];
|
|
3388
3236
|
function getIndexByIdentifier(identifier) {
|
|
3389
3237
|
var result = -1;
|
|
@@ -3437,7 +3285,7 @@ var __webpack_modules__ = {
|
|
|
3437
3285
|
};
|
|
3438
3286
|
return updater;
|
|
3439
3287
|
}
|
|
3440
|
-
|
|
3288
|
+
module1.exports = function(list, options) {
|
|
3441
3289
|
options = options || {};
|
|
3442
3290
|
list = list || [];
|
|
3443
3291
|
var lastIdentifiers = modulesToDom(list, options);
|
|
@@ -3461,7 +3309,7 @@ var __webpack_modules__ = {
|
|
|
3461
3309
|
};
|
|
3462
3310
|
};
|
|
3463
3311
|
},
|
|
3464
|
-
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/insertBySelector.js": function(
|
|
3312
|
+
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/insertBySelector.js": function(module1) {
|
|
3465
3313
|
var memo = {};
|
|
3466
3314
|
function getTarget(target) {
|
|
3467
3315
|
if (void 0 === memo[target]) {
|
|
@@ -3480,25 +3328,25 @@ var __webpack_modules__ = {
|
|
|
3480
3328
|
if (!target) throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");
|
|
3481
3329
|
target.appendChild(style);
|
|
3482
3330
|
}
|
|
3483
|
-
|
|
3331
|
+
module1.exports = insertBySelector;
|
|
3484
3332
|
},
|
|
3485
|
-
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/insertStyleElement.js": function(
|
|
3333
|
+
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/insertStyleElement.js": function(module1) {
|
|
3486
3334
|
function insertStyleElement(options) {
|
|
3487
3335
|
var element = document.createElement("style");
|
|
3488
3336
|
options.setAttributes(element, options.attributes);
|
|
3489
3337
|
options.insert(element, options.options);
|
|
3490
3338
|
return element;
|
|
3491
3339
|
}
|
|
3492
|
-
|
|
3340
|
+
module1.exports = insertStyleElement;
|
|
3493
3341
|
},
|
|
3494
|
-
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/setAttributesWithoutAttributes.js": function(
|
|
3342
|
+
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/setAttributesWithoutAttributes.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
3495
3343
|
function setAttributesWithoutAttributes(styleElement) {
|
|
3496
3344
|
var nonce = __webpack_require__.nc;
|
|
3497
3345
|
if (nonce) styleElement.setAttribute("nonce", nonce);
|
|
3498
3346
|
}
|
|
3499
|
-
|
|
3347
|
+
module1.exports = setAttributesWithoutAttributes;
|
|
3500
3348
|
},
|
|
3501
|
-
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/styleDomAPI.js": function(
|
|
3349
|
+
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/styleDomAPI.js": function(module1) {
|
|
3502
3350
|
function apply(styleElement, options, obj) {
|
|
3503
3351
|
var css = "";
|
|
3504
3352
|
if (obj.supports) css += "@supports (".concat(obj.supports, ") {");
|
|
@@ -3532,9 +3380,9 @@ var __webpack_modules__ = {
|
|
|
3532
3380
|
}
|
|
3533
3381
|
};
|
|
3534
3382
|
}
|
|
3535
|
-
|
|
3383
|
+
module1.exports = domAPI;
|
|
3536
3384
|
},
|
|
3537
|
-
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/styleTagTransform.js": function(
|
|
3385
|
+
"./node_modules/@rsbuild/core/compiled/style-loader/runtime/styleTagTransform.js": function(module1) {
|
|
3538
3386
|
function styleTagTransform(css, styleElement) {
|
|
3539
3387
|
if (styleElement.styleSheet) styleElement.styleSheet.cssText = css;
|
|
3540
3388
|
else {
|
|
@@ -3542,12 +3390,12 @@ var __webpack_modules__ = {
|
|
|
3542
3390
|
styleElement.appendChild(document.createTextNode(css));
|
|
3543
3391
|
}
|
|
3544
3392
|
}
|
|
3545
|
-
|
|
3393
|
+
module1.exports = styleTagTransform;
|
|
3546
3394
|
},
|
|
3547
|
-
"./node_modules/available-typed-arrays/index.js": function(
|
|
3395
|
+
"./node_modules/available-typed-arrays/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
|
|
3548
3396
|
var possibleNames = __webpack_require__("./node_modules/possible-typed-array-names/index.js");
|
|
3549
3397
|
var g = 'undefined' == typeof globalThis ? __webpack_require__.g : globalThis;
|
|
3550
|
-
|
|
3398
|
+
module1.exports = function() {
|
|
3551
3399
|
var out = [];
|
|
3552
3400
|
for(var i = 0; i < possibleNames.length; i++)if ('function' == typeof g[possibleNames[i]]) out[out.length] = possibleNames[i];
|
|
3553
3401
|
return out;
|
|
@@ -3558,16 +3406,15 @@ var __webpack_module_cache__ = {};
|
|
|
3558
3406
|
function __webpack_require__(moduleId) {
|
|
3559
3407
|
var cachedModule = __webpack_module_cache__[moduleId];
|
|
3560
3408
|
if (void 0 !== cachedModule) return cachedModule.exports;
|
|
3561
|
-
var
|
|
3562
|
-
id: moduleId,
|
|
3409
|
+
var module1 = __webpack_module_cache__[moduleId] = {
|
|
3563
3410
|
exports: {}
|
|
3564
3411
|
};
|
|
3565
|
-
__webpack_modules__[moduleId](
|
|
3566
|
-
return
|
|
3412
|
+
__webpack_modules__[moduleId](module1, module1.exports, __webpack_require__);
|
|
3413
|
+
return module1.exports;
|
|
3567
3414
|
}
|
|
3568
3415
|
(()=>{
|
|
3569
|
-
__webpack_require__.n = (
|
|
3570
|
-
var getter =
|
|
3416
|
+
__webpack_require__.n = (module1)=>{
|
|
3417
|
+
var getter = module1 && module1.__esModule ? ()=>module1['default'] : ()=>module1;
|
|
3571
3418
|
__webpack_require__.d(getter, {
|
|
3572
3419
|
a: getter
|
|
3573
3420
|
});
|
|
@@ -3607,20 +3454,15 @@ const constants = {
|
|
|
3607
3454
|
}
|
|
3608
3455
|
};
|
|
3609
3456
|
var package_namespaceObject = {
|
|
3610
|
-
rE: "11.
|
|
3457
|
+
rE: "11.1.1"
|
|
3611
3458
|
};
|
|
3612
|
-
var VideoType_VideoType = /*#__PURE__*/ function(VideoType) {
|
|
3613
|
-
VideoType["WebM"] = "webm";
|
|
3614
|
-
VideoType["MP4"] = "mp4";
|
|
3615
|
-
return VideoType;
|
|
3616
|
-
}({});
|
|
3617
3459
|
function canPlayType_canPlayType(video, type) {
|
|
3618
3460
|
const canPlayType = video.canPlayType(`video/${type}`);
|
|
3619
3461
|
if ("" === canPlayType) return false;
|
|
3620
3462
|
return canPlayType;
|
|
3621
3463
|
}
|
|
3622
3464
|
const media_canPlayType = canPlayType_canPlayType;
|
|
3623
|
-
const FALLBACK_VIDEO_TYPE =
|
|
3465
|
+
const FALLBACK_VIDEO_TYPE = "mp4";
|
|
3624
3466
|
class Browser {
|
|
3625
3467
|
options;
|
|
3626
3468
|
result;
|
|
@@ -3667,10 +3509,10 @@ class Browser {
|
|
|
3667
3509
|
}
|
|
3668
3510
|
getVideoType(video) {
|
|
3669
3511
|
if (!this.videoType) {
|
|
3670
|
-
if (media_canPlayType(video,
|
|
3671
|
-
else if (media_canPlayType(video,
|
|
3512
|
+
if (media_canPlayType(video, "mp4")) this.videoType = "mp4";
|
|
3513
|
+
else if (media_canPlayType(video, "webm")) this.videoType = "webm";
|
|
3672
3514
|
}
|
|
3673
|
-
if (
|
|
3515
|
+
if ("webm" !== this.videoType && "mp4" !== this.videoType) this.videoType = FALLBACK_VIDEO_TYPE;
|
|
3674
3516
|
if ("" === this.videoType.trim()) this.videoType = FALLBACK_VIDEO_TYPE;
|
|
3675
3517
|
return this.videoType;
|
|
3676
3518
|
}
|
|
@@ -3786,7 +3628,7 @@ class VideomailError extends HTTPVideomailError {
|
|
|
3786
3628
|
screen.width,
|
|
3787
3629
|
screen.height,
|
|
3788
3630
|
screen.colorDepth
|
|
3789
|
-
].join("
|
|
3631
|
+
].join("×");
|
|
3790
3632
|
if (screen.orientation) this.orientation = screen.orientation.type;
|
|
3791
3633
|
this.err = errData?.err;
|
|
3792
3634
|
const stackTarget = errData?.cause ?? errData?.err;
|
|
@@ -4612,15 +4454,161 @@ var insertStyleElement = __webpack_require__("./node_modules/@rsbuild/core/compi
|
|
|
4612
4454
|
var insertStyleElement_default = /*#__PURE__*/ __webpack_require__.n(insertStyleElement);
|
|
4613
4455
|
var styleTagTransform = __webpack_require__("./node_modules/@rsbuild/core/compiled/style-loader/runtime/styleTagTransform.js");
|
|
4614
4456
|
var styleTagTransform_default = /*#__PURE__*/ __webpack_require__.n(styleTagTransform);
|
|
4615
|
-
var
|
|
4457
|
+
var noSourceMaps = __webpack_require__("./node_modules/@rsbuild/core/compiled/css-loader/noSourceMaps.js");
|
|
4458
|
+
var noSourceMaps_default = /*#__PURE__*/ __webpack_require__.n(noSourceMaps);
|
|
4459
|
+
var api = __webpack_require__("./node_modules/@rsbuild/core/compiled/css-loader/api.js");
|
|
4460
|
+
var api_default = /*#__PURE__*/ __webpack_require__.n(api);
|
|
4461
|
+
var ___CSS_LOADER_EXPORT___ = api_default()(noSourceMaps_default());
|
|
4462
|
+
___CSS_LOADER_EXPORT___.push([
|
|
4463
|
+
module.id,
|
|
4464
|
+
`@keyframes blink {
|
|
4465
|
+
0% {
|
|
4466
|
+
opacity: .9;
|
|
4467
|
+
}
|
|
4468
|
+
|
|
4469
|
+
35% {
|
|
4470
|
+
opacity: .9;
|
|
4471
|
+
}
|
|
4472
|
+
|
|
4473
|
+
50% {
|
|
4474
|
+
opacity: .1;
|
|
4475
|
+
}
|
|
4476
|
+
|
|
4477
|
+
85% {
|
|
4478
|
+
opacity: .1;
|
|
4479
|
+
}
|
|
4480
|
+
|
|
4481
|
+
100% {
|
|
4482
|
+
opacity: .9;
|
|
4483
|
+
}
|
|
4484
|
+
}
|
|
4485
|
+
|
|
4486
|
+
.videomail .visuals {
|
|
4487
|
+
position: relative;
|
|
4488
|
+
}
|
|
4489
|
+
|
|
4490
|
+
.videomail .visuals video.replay {
|
|
4491
|
+
width: 100%;
|
|
4492
|
+
height: 100%;
|
|
4493
|
+
}
|
|
4494
|
+
|
|
4495
|
+
.videomail .countdown, .videomail .recordTimer, .videomail .recordNote, .videomail .pausedHeader, .videomail .pausedHint {
|
|
4496
|
+
height: auto;
|
|
4497
|
+
margin: 0;
|
|
4498
|
+
}
|
|
4499
|
+
|
|
4500
|
+
.videomail .countdown, .videomail .recordTimer, .videomail .recordNote, .videomail .paused, .videomail .facingMode, .videomail noscript {
|
|
4501
|
+
z-index: 100;
|
|
4502
|
+
position: absolute;
|
|
4503
|
+
}
|
|
4504
|
+
|
|
4505
|
+
.videomail .countdown, .videomail .recordTimer, .videomail .recordNote, .videomail .pausedHeader, .videomail .pausedHint, .videomail noscript {
|
|
4506
|
+
font-weight: bold;
|
|
4507
|
+
}
|
|
4508
|
+
|
|
4509
|
+
.videomail .countdown, .videomail .paused, .videomail noscript {
|
|
4510
|
+
width: 100%;
|
|
4511
|
+
top: 50%;
|
|
4512
|
+
transform: translateY(-50%);
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4515
|
+
.videomail .pausedHeader, .videomail .pausedHint, .videomail .countdown {
|
|
4516
|
+
text-align: center;
|
|
4517
|
+
letter-spacing: 4px;
|
|
4518
|
+
text-shadow: -2px 0 #fff, 0 2px #fff, 2px 0 #fff, 0 -2px #fff;
|
|
4519
|
+
}
|
|
4520
|
+
|
|
4521
|
+
.videomail .pausedHeader, .videomail .countdown {
|
|
4522
|
+
opacity: .9;
|
|
4523
|
+
font-size: 460%;
|
|
4524
|
+
}
|
|
4525
|
+
|
|
4526
|
+
.videomail .pausedHint {
|
|
4527
|
+
font-size: 150%;
|
|
4528
|
+
}
|
|
4529
|
+
|
|
4530
|
+
.videomail .facingMode {
|
|
4531
|
+
color: #f5f5f5e6;
|
|
4532
|
+
z-index: 10;
|
|
4533
|
+
background: #1e1e1e80;
|
|
4534
|
+
border: none;
|
|
4535
|
+
outline: none;
|
|
4536
|
+
padding: .1em .3em;
|
|
4537
|
+
font-family: monospace;
|
|
4538
|
+
font-size: 1.2em;
|
|
4539
|
+
transition: all .2s;
|
|
4540
|
+
bottom: .6em;
|
|
4541
|
+
right: .7em;
|
|
4542
|
+
}
|
|
4543
|
+
|
|
4544
|
+
.videomail .facingMode:hover {
|
|
4545
|
+
cursor: pointer;
|
|
4546
|
+
background: #323232b3;
|
|
4547
|
+
}
|
|
4548
|
+
|
|
4549
|
+
.videomail .recordTimer, .videomail .recordNote {
|
|
4550
|
+
color: #00d814;
|
|
4551
|
+
opacity: .9;
|
|
4552
|
+
background: #0a0a0acc;
|
|
4553
|
+
padding: .3em .4em;
|
|
4554
|
+
font-family: monospace;
|
|
4555
|
+
transition: all 1s;
|
|
4556
|
+
right: .7em;
|
|
4557
|
+
}
|
|
4558
|
+
|
|
4559
|
+
.videomail .recordTimer.near, .videomail .recordNote.near {
|
|
4560
|
+
color: #eb9369;
|
|
4561
|
+
}
|
|
4562
|
+
|
|
4563
|
+
.videomail .recordTimer.nigh, .videomail .recordNote.nigh {
|
|
4564
|
+
color: #ea4b2a;
|
|
4565
|
+
}
|
|
4566
|
+
|
|
4567
|
+
.videomail .recordTimer {
|
|
4568
|
+
top: .7em;
|
|
4569
|
+
}
|
|
4570
|
+
|
|
4571
|
+
.videomail .recordNote {
|
|
4572
|
+
top: 3.6em;
|
|
4573
|
+
}
|
|
4574
|
+
|
|
4575
|
+
.videomail .recordNote:before {
|
|
4576
|
+
content: "REC";
|
|
4577
|
+
animation: 1s infinite blink;
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4580
|
+
.videomail .notifier {
|
|
4581
|
+
box-sizing: border-box;
|
|
4582
|
+
overflow: hidden;
|
|
4583
|
+
}
|
|
4584
|
+
|
|
4585
|
+
.videomail .radioGroup {
|
|
4586
|
+
display: block;
|
|
4587
|
+
}
|
|
4588
|
+
|
|
4589
|
+
.videomail .radioGroup label {
|
|
4590
|
+
cursor: pointer;
|
|
4591
|
+
}
|
|
4592
|
+
|
|
4593
|
+
.videomail video {
|
|
4594
|
+
margin-bottom: 0;
|
|
4595
|
+
}
|
|
4596
|
+
|
|
4597
|
+
.videomail video.userMedia {
|
|
4598
|
+
background-color: #3232321a;
|
|
4599
|
+
}
|
|
4600
|
+
`,
|
|
4601
|
+
""
|
|
4602
|
+
]);
|
|
4603
|
+
const main = ___CSS_LOADER_EXPORT___;
|
|
4616
4604
|
var main_options = {};
|
|
4617
4605
|
main_options.styleTagTransform = styleTagTransform_default();
|
|
4618
4606
|
main_options.setAttributes = setAttributesWithoutAttributes_default();
|
|
4619
4607
|
main_options.insert = insertBySelector_default().bind(null, "head");
|
|
4620
4608
|
main_options.domAPI = styleDomAPI_default();
|
|
4621
4609
|
main_options.insertStyleElement = insertStyleElement_default();
|
|
4622
|
-
injectStylesIntoStyleTag_default()(main
|
|
4623
|
-
main
|
|
4610
|
+
injectStylesIntoStyleTag_default()(main, main_options);
|
|
4611
|
+
main && main.locals && main.locals;
|
|
4624
4612
|
function limitHeight(height, options, calledFrom) {
|
|
4625
4613
|
let limitedHeight = document.documentElement.clientHeight;
|
|
4626
4614
|
if (height) limitedHeight = Math.min(height, limitedHeight);
|
|
@@ -5167,7 +5155,7 @@ class FacingMode extends util_Despot {
|
|
|
5167
5155
|
else {
|
|
5168
5156
|
this.facingModeElement = document.createElement("button");
|
|
5169
5157
|
this.facingModeElement.classList.add("facingMode");
|
|
5170
|
-
this.facingModeElement.innerHTML = "
|
|
5158
|
+
this.facingModeElement.innerHTML = "⤾";
|
|
5171
5159
|
this.facingModeElement.onclick = (e)=>{
|
|
5172
5160
|
e?.preventDefault();
|
|
5173
5161
|
try {
|
|
@@ -5514,17 +5502,17 @@ class Notifier extends util_Despot {
|
|
|
5514
5502
|
this.options.logger.debug("Limit reached");
|
|
5515
5503
|
lead += `${this.options.text.limitReached}.<br/>`;
|
|
5516
5504
|
}
|
|
5517
|
-
lead += `${this.options.text.sending}
|
|
5505
|
+
lead += `${this.options.text.sending} …`;
|
|
5518
5506
|
this.notify(lead, void 0, {
|
|
5519
5507
|
stillWait: true,
|
|
5520
5508
|
entertain: this.options.notifier.entertain
|
|
5521
5509
|
});
|
|
5522
5510
|
}
|
|
5523
5511
|
onConnecting() {
|
|
5524
|
-
this.notify("Connecting
|
|
5512
|
+
this.notify("Connecting …");
|
|
5525
5513
|
}
|
|
5526
5514
|
onLoadingUserMedia() {
|
|
5527
|
-
this.notify("Loading webcam
|
|
5515
|
+
this.notify("Loading webcam …");
|
|
5528
5516
|
}
|
|
5529
5517
|
onProgress(frameProgress, sampleProgress) {
|
|
5530
5518
|
let overallProgress;
|
|
@@ -5536,7 +5524,7 @@ class Notifier extends util_Despot {
|
|
|
5536
5524
|
}
|
|
5537
5525
|
onBeginVideoEncoding() {
|
|
5538
5526
|
this.visuals.beginWaiting();
|
|
5539
|
-
const lead = `${this.options.text.encoding}
|
|
5527
|
+
const lead = `${this.options.text.encoding} …`;
|
|
5540
5528
|
this.notify(lead, void 0, {
|
|
5541
5529
|
stillWait: true,
|
|
5542
5530
|
entertain: this.options.notifier.entertain
|
|
@@ -5568,7 +5556,7 @@ class Notifier extends util_Despot {
|
|
|
5568
5556
|
this.onBeginVideoEncoding();
|
|
5569
5557
|
});
|
|
5570
5558
|
this.on("UNLOADING", ()=>{
|
|
5571
|
-
this.notify("Unloading
|
|
5559
|
+
this.notify("Unloading …");
|
|
5572
5560
|
});
|
|
5573
5561
|
this.on("DISCONNECTED", ()=>{
|
|
5574
5562
|
this.notify("Disconnected");
|
|
@@ -5889,7 +5877,7 @@ const MEDIA_EVENTS = [
|
|
|
5889
5877
|
"volumechange"
|
|
5890
5878
|
];
|
|
5891
5879
|
const mediaEvents = MEDIA_EVENTS;
|
|
5892
|
-
const EVENT_ASCII = "
|
|
5880
|
+
const EVENT_ASCII = "|—O—|";
|
|
5893
5881
|
class UserMedia extends util_Despot {
|
|
5894
5882
|
recorder;
|
|
5895
5883
|
rawVisualUserMedia;
|
|
@@ -6179,7 +6167,7 @@ class UserMedia extends util_Despot {
|
|
|
6179
6167
|
}
|
|
6180
6168
|
const visuals_userMedia = UserMedia;
|
|
6181
6169
|
var Buffer = __webpack_require__("./node_modules/buffer/index.js")["Buffer"];
|
|
6182
|
-
const PIPE_SYMBOL = "
|
|
6170
|
+
const PIPE_SYMBOL = "°º¤ø,¸¸,ø¤º°`°º¤ø,¸,ø¤°º¤ø,¸¸,ø¤º°`°º¤ø,¸ ";
|
|
6183
6171
|
class Recorder extends util_Despot {
|
|
6184
6172
|
visuals;
|
|
6185
6173
|
replay;
|
|
@@ -6679,7 +6667,7 @@ class Recorder extends util_Despot {
|
|
|
6679
6667
|
}, 0);
|
|
6680
6668
|
}
|
|
6681
6669
|
} else {
|
|
6682
|
-
this.options.logger.debug(`Reconnecting for the command ${command}
|
|
6670
|
+
this.options.logger.debug(`Reconnecting for the command ${command} …`);
|
|
6683
6671
|
this.initSocket(()=>{
|
|
6684
6672
|
this.writeCommand(command, args);
|
|
6685
6673
|
cb?.();
|
|
@@ -7315,10 +7303,10 @@ class Replay extends util_Despot {
|
|
|
7315
7303
|
}
|
|
7316
7304
|
}
|
|
7317
7305
|
setMp4Source(src, bustCache) {
|
|
7318
|
-
this.setVideoSource(
|
|
7306
|
+
this.setVideoSource("mp4", src, bustCache);
|
|
7319
7307
|
}
|
|
7320
7308
|
setWebMSource(src, bustCache) {
|
|
7321
|
-
this.setVideoSource(
|
|
7309
|
+
this.setVideoSource("webm", src, bustCache);
|
|
7322
7310
|
}
|
|
7323
7311
|
getVideoType() {
|
|
7324
7312
|
if (!this.replayElement) return;
|
|
@@ -7954,7 +7942,7 @@ class Container extends util_Despot {
|
|
|
7954
7942
|
const name = invalidInput.getAttribute("name");
|
|
7955
7943
|
valid = false;
|
|
7956
7944
|
if (name) {
|
|
7957
|
-
whyInvalid = `Input "${name}" seems wrong
|
|
7945
|
+
whyInvalid = `Input "${name}" seems wrong 🤔`;
|
|
7958
7946
|
invalidData = {
|
|
7959
7947
|
[name]: invalidInput.getAttribute("value")
|
|
7960
7948
|
};
|
|
@@ -7962,7 +7950,7 @@ class Container extends util_Despot {
|
|
|
7962
7950
|
} else if (!this.areVisualsHidden() && !visualsValid) {
|
|
7963
7951
|
if (this.buttonsAreReady() || this.isRecording() || this.isPaused() || this.isCountingDown()) {
|
|
7964
7952
|
valid = false;
|
|
7965
|
-
whyInvalid = "Don't forget to record a video
|
|
7953
|
+
whyInvalid = "Don't forget to record a video 😉";
|
|
7966
7954
|
invalidData = {
|
|
7967
7955
|
key: void 0
|
|
7968
7956
|
};
|
|
@@ -8206,4 +8194,4 @@ class VideomailClient extends util_Despot {
|
|
|
8206
8194
|
}
|
|
8207
8195
|
}
|
|
8208
8196
|
const client = VideomailClient;
|
|
8209
|
-
export {
|
|
8197
|
+
export { client as VideomailClient };
|